diff --git a/package-lock.json b/package-lock.json index 1e6793de..77bc7da8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13062,4 +13062,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/autocomplete/clickhouse/clickHouseAutocomplete.ts b/src/autocomplete/clickhouse/clickHouseAutocomplete.ts index 35f52a03..2cf7b60f 100644 --- a/src/autocomplete/clickhouse/clickHouseAutocomplete.ts +++ b/src/autocomplete/clickhouse/clickHouseAutocomplete.ts @@ -11,7 +11,7 @@ import { import {ClickHouseLexer} from './generated/ClickHouseLexer.js'; import { ClickHouseParser, - TableExprAliasContext, + TableExpressionAliasContext, TableIdentifierContext, } from './generated/ClickHouseParser.js'; import {ClickHouseParserVisitor} from './generated/ClickHouseParserVisitor.js'; @@ -112,12 +112,12 @@ class ClickHouseSymbolTableVisitor return this.visitChildren(context) as {}; }; - visitTableExprAlias = (context: TableExprAliasContext): {} => { + visitTableExpressionAlias = (context: TableExpressionAliasContext): {} => { try { this.symbolTable.addNewSymbolOfType( TableSymbol, this.scope, - context.tableExpr()?.getText(), + context.tableExpression()?.getText(), context.alias()?.getText() || context.identifier()?.getText() || undefined, ); } catch (error) { @@ -146,8 +146,8 @@ function generateSuggestionsFromRules( case ClickHouseParser.RULE_tableIdentifier: { if ( cursorTokenIndex === ruleData.startTokenIndex && - !ruleData.ruleList.includes(ClickHouseParser.RULE_createStmt) && - !ruleData.ruleList.includes(ClickHouseParser.RULE_columnsExpr) + !ruleData.ruleList.includes(ClickHouseParser.RULE_createStatement) && + !ruleData.ruleList.includes(ClickHouseParser.RULE_columnsExpression) ) { if ( hasPreviousToken( @@ -174,7 +174,7 @@ function generateSuggestionsFromRules( break; } case ClickHouseParser.RULE_identifier: { - if (ruleData.ruleList.includes(ClickHouseParser.RULE_columnExpr)) { + if (ruleData.ruleList.includes(ClickHouseParser.RULE_columnExpression)) { suggestFunctions = true; // TODO Not sure yet how to specifically find aggregate functions suggestAggregateFunctions = true; @@ -217,10 +217,10 @@ function getParseTree(parser: ClickHouseParser, type?: TableQueryPosition['type' case 'from': return parser.fromClause(); case 'alter': - return parser.alterStmt(); + return parser.alterStatement(); case 'insert': // INSERT doesn't work for now: for some reason any INSERT statement throws error - return parser.insertStmt(); + return parser.insertStatement(); } } diff --git a/src/autocomplete/clickhouse/generated/ClickHouseParser.interp b/src/autocomplete/clickhouse/generated/ClickHouseParser.interp index 7943e678..7ac34035 100644 --- a/src/autocomplete/clickhouse/generated/ClickHouseParser.interp +++ b/src/autocomplete/clickhouse/generated/ClickHouseParser.interp @@ -479,17 +479,17 @@ root statements statement notInsertStatement -ctes +commonTableExpressionStatement namedQuery columnAliases -alterStmt +alterStatement alterTableClause -assignmentExprList -assignmentExpr +assignmentExpressionList +assignmentExpression tableColumnPropertyType partitionClause -attachStmt -checkStmt +attachStatement +checkStatement deleteStatement createTableStatement createDatabaseStatement @@ -497,12 +497,12 @@ createDictionaryStatement createLiveViewStatement createMaterializedViewStatement createViewStatement -createStmt +createStatement dictionarySchemaClause -dictionaryAttrDfnt +dictionaryAttributeDefinition dictionaryEngineClause dictionaryPrimaryKeyClause -dictionaryArgExpr +dictionaryArgumentExpression sourceClause lifetimeClause layoutClause @@ -518,30 +518,30 @@ partitionByClause primaryKeyClause sampleByClause ttlClause -engineExpr -tableElementExpr -tableColumnDfnt -tableColumnPropertyExpr -tableIndexDfnt -tableProjectionDfnt -codecExpr -codecArgExpr -ttlExpr -describeStmt -dropStmt -existsStmt -explainStmt -insertStmt +engineExpression +tableElementExpression +tableColumnDefinition +tableColumnPropertyExpression +tableIndexDefinition +tableProjectionDefinition +codecExpression +codecArgExpression +ttlExpression +describeStatement +dropStatement +existsStatement +explainStatement +insertStatement columnsClause dataClause valuesStatement -killStmt -optimizeStmt -renameStmt -projectionSelectStmt -selectUnionStmt -selectStmtWithParens -selectStmt +killStatement +optimizeStatement +renameStatement +projectionSelectStatement +selectUnionStatement +selectStatementWithParentheses +selectStatement withClause topClause fromClause @@ -556,42 +556,42 @@ projectionOrderByClause limitByClause limitClause settingsClause -joinExpr -joinOp -joinOpCross +joinExpression +joinOperator +joinOperatorCross joinConstraintClause sampleClause -limitExpr -orderExprList -orderExpr -ratioExpr -settingExprList -settingExpr -windowExpr -winPartitionByClause -winOrderByClause -winFrameClause -winFrameExtend -winFrameBound -setStmt -showStmt -systemStmt -truncateStmt -useStmt -watchStmt -columnTypeExpr -columnExprList -columnsExpr -columnExpr -columnArgList -columnArgExpr -columnLambdaExpr +limitExpression +orderExpressionList +orderExpression +ratioExpression +settingExpressionList +settingExpression +windowExpression +windowPartitionByClause +windowOrderByClause +windowFrameClause +windowFrameExtend +windowFrameBound +setStatement +showStatement +systemStatement +truncateStatement +useStatement +watchStatement +columnTypeExpression +columnExpressionList +columnsExpression +columnExpression +columnArgumentList +columnArgumentExpression +columnLambdaExpression columnIdentifier -tableExpr -tableFunctionExpr +tableExpression +tableFunctionExpression tableIdentifier tableArgList -tableArgExpr +tableArgExpression databaseIdentifier floatingLiteral numberLiteral diff --git a/src/autocomplete/clickhouse/generated/ClickHouseParser.ts b/src/autocomplete/clickhouse/generated/ClickHouseParser.ts index 3bf22ba0..8ccd08e2 100644 --- a/src/autocomplete/clickhouse/generated/ClickHouseParser.ts +++ b/src/autocomplete/clickhouse/generated/ClickHouseParser.ts @@ -259,17 +259,17 @@ export class ClickHouseParser extends antlr.Parser { public static readonly RULE_statements = 1; public static readonly RULE_statement = 2; public static readonly RULE_notInsertStatement = 3; - public static readonly RULE_ctes = 4; + public static readonly RULE_commonTableExpressionStatement = 4; public static readonly RULE_namedQuery = 5; public static readonly RULE_columnAliases = 6; - public static readonly RULE_alterStmt = 7; + public static readonly RULE_alterStatement = 7; public static readonly RULE_alterTableClause = 8; - public static readonly RULE_assignmentExprList = 9; - public static readonly RULE_assignmentExpr = 10; + public static readonly RULE_assignmentExpressionList = 9; + public static readonly RULE_assignmentExpression = 10; public static readonly RULE_tableColumnPropertyType = 11; public static readonly RULE_partitionClause = 12; - public static readonly RULE_attachStmt = 13; - public static readonly RULE_checkStmt = 14; + public static readonly RULE_attachStatement = 13; + public static readonly RULE_checkStatement = 14; public static readonly RULE_deleteStatement = 15; public static readonly RULE_createTableStatement = 16; public static readonly RULE_createDatabaseStatement = 17; @@ -277,12 +277,12 @@ export class ClickHouseParser extends antlr.Parser { public static readonly RULE_createLiveViewStatement = 19; public static readonly RULE_createMaterializedViewStatement = 20; public static readonly RULE_createViewStatement = 21; - public static readonly RULE_createStmt = 22; + public static readonly RULE_createStatement = 22; public static readonly RULE_dictionarySchemaClause = 23; - public static readonly RULE_dictionaryAttrDfnt = 24; + public static readonly RULE_dictionaryAttributeDefinition = 24; public static readonly RULE_dictionaryEngineClause = 25; public static readonly RULE_dictionaryPrimaryKeyClause = 26; - public static readonly RULE_dictionaryArgExpr = 27; + public static readonly RULE_dictionaryArgumentExpression = 27; public static readonly RULE_sourceClause = 28; public static readonly RULE_lifetimeClause = 29; public static readonly RULE_layoutClause = 30; @@ -298,30 +298,30 @@ export class ClickHouseParser extends antlr.Parser { public static readonly RULE_primaryKeyClause = 40; public static readonly RULE_sampleByClause = 41; public static readonly RULE_ttlClause = 42; - public static readonly RULE_engineExpr = 43; - public static readonly RULE_tableElementExpr = 44; - public static readonly RULE_tableColumnDfnt = 45; - public static readonly RULE_tableColumnPropertyExpr = 46; - public static readonly RULE_tableIndexDfnt = 47; - public static readonly RULE_tableProjectionDfnt = 48; - public static readonly RULE_codecExpr = 49; - public static readonly RULE_codecArgExpr = 50; - public static readonly RULE_ttlExpr = 51; - public static readonly RULE_describeStmt = 52; - public static readonly RULE_dropStmt = 53; - public static readonly RULE_existsStmt = 54; - public static readonly RULE_explainStmt = 55; - public static readonly RULE_insertStmt = 56; + public static readonly RULE_engineExpression = 43; + public static readonly RULE_tableElementExpression = 44; + public static readonly RULE_tableColumnDefinition = 45; + public static readonly RULE_tableColumnPropertyExpression = 46; + public static readonly RULE_tableIndexDefinition = 47; + public static readonly RULE_tableProjectionDefinition = 48; + public static readonly RULE_codecExpression = 49; + public static readonly RULE_codecArgExpression = 50; + public static readonly RULE_ttlExpression = 51; + public static readonly RULE_describeStatement = 52; + public static readonly RULE_dropStatement = 53; + public static readonly RULE_existsStatement = 54; + public static readonly RULE_explainStatement = 55; + public static readonly RULE_insertStatement = 56; public static readonly RULE_columnsClause = 57; public static readonly RULE_dataClause = 58; public static readonly RULE_valuesStatement = 59; - public static readonly RULE_killStmt = 60; - public static readonly RULE_optimizeStmt = 61; - public static readonly RULE_renameStmt = 62; - public static readonly RULE_projectionSelectStmt = 63; - public static readonly RULE_selectUnionStmt = 64; - public static readonly RULE_selectStmtWithParens = 65; - public static readonly RULE_selectStmt = 66; + public static readonly RULE_killStatement = 60; + public static readonly RULE_optimizeStatement = 61; + public static readonly RULE_renameStatement = 62; + public static readonly RULE_projectionSelectStatement = 63; + public static readonly RULE_selectUnionStatement = 64; + public static readonly RULE_selectStatementWithParentheses = 65; + public static readonly RULE_selectStatement = 66; public static readonly RULE_withClause = 67; public static readonly RULE_topClause = 68; public static readonly RULE_fromClause = 69; @@ -336,42 +336,42 @@ export class ClickHouseParser extends antlr.Parser { public static readonly RULE_limitByClause = 78; public static readonly RULE_limitClause = 79; public static readonly RULE_settingsClause = 80; - public static readonly RULE_joinExpr = 81; - public static readonly RULE_joinOp = 82; - public static readonly RULE_joinOpCross = 83; + public static readonly RULE_joinExpression = 81; + public static readonly RULE_joinOperator = 82; + public static readonly RULE_joinOperatorCross = 83; public static readonly RULE_joinConstraintClause = 84; public static readonly RULE_sampleClause = 85; - public static readonly RULE_limitExpr = 86; - public static readonly RULE_orderExprList = 87; - public static readonly RULE_orderExpr = 88; - public static readonly RULE_ratioExpr = 89; - public static readonly RULE_settingExprList = 90; - public static readonly RULE_settingExpr = 91; - public static readonly RULE_windowExpr = 92; - public static readonly RULE_winPartitionByClause = 93; - public static readonly RULE_winOrderByClause = 94; - public static readonly RULE_winFrameClause = 95; - public static readonly RULE_winFrameExtend = 96; - public static readonly RULE_winFrameBound = 97; - public static readonly RULE_setStmt = 98; - public static readonly RULE_showStmt = 99; - public static readonly RULE_systemStmt = 100; - public static readonly RULE_truncateStmt = 101; - public static readonly RULE_useStmt = 102; - public static readonly RULE_watchStmt = 103; - public static readonly RULE_columnTypeExpr = 104; - public static readonly RULE_columnExprList = 105; - public static readonly RULE_columnsExpr = 106; - public static readonly RULE_columnExpr = 107; - public static readonly RULE_columnArgList = 108; - public static readonly RULE_columnArgExpr = 109; - public static readonly RULE_columnLambdaExpr = 110; + public static readonly RULE_limitExpression = 86; + public static readonly RULE_orderExpressionList = 87; + public static readonly RULE_orderExpression = 88; + public static readonly RULE_ratioExpression = 89; + public static readonly RULE_settingExpressionList = 90; + public static readonly RULE_settingExpression = 91; + public static readonly RULE_windowExpression = 92; + public static readonly RULE_windowPartitionByClause = 93; + public static readonly RULE_windowOrderByClause = 94; + public static readonly RULE_windowFrameClause = 95; + public static readonly RULE_windowFrameExtend = 96; + public static readonly RULE_windowFrameBound = 97; + public static readonly RULE_setStatement = 98; + public static readonly RULE_showStatement = 99; + public static readonly RULE_systemStatement = 100; + public static readonly RULE_truncateStatement = 101; + public static readonly RULE_useStatement = 102; + public static readonly RULE_watchStatement = 103; + public static readonly RULE_columnTypeExpression = 104; + public static readonly RULE_columnExpressionList = 105; + public static readonly RULE_columnsExpression = 106; + public static readonly RULE_columnExpression = 107; + public static readonly RULE_columnArgumentList = 108; + public static readonly RULE_columnArgumentExpression = 109; + public static readonly RULE_columnLambdaExpression = 110; public static readonly RULE_columnIdentifier = 111; - public static readonly RULE_tableExpr = 112; - public static readonly RULE_tableFunctionExpr = 113; + public static readonly RULE_tableExpression = 112; + public static readonly RULE_tableFunctionExpression = 113; public static readonly RULE_tableIdentifier = 114; public static readonly RULE_tableArgList = 115; - public static readonly RULE_tableArgExpr = 116; + public static readonly RULE_tableArgExpression = 116; public static readonly RULE_databaseIdentifier = 117; public static readonly RULE_floatingLiteral = 118; public static readonly RULE_numberLiteral = 119; @@ -447,37 +447,41 @@ export class ClickHouseParser extends antlr.Parser { "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ]; public static readonly ruleNames = [ - "root", "statements", "statement", "notInsertStatement", "ctes", - "namedQuery", "columnAliases", "alterStmt", "alterTableClause", - "assignmentExprList", "assignmentExpr", "tableColumnPropertyType", - "partitionClause", "attachStmt", "checkStmt", "deleteStatement", + "root", "statements", "statement", "notInsertStatement", "commonTableExpressionStatement", + "namedQuery", "columnAliases", "alterStatement", "alterTableClause", + "assignmentExpressionList", "assignmentExpression", "tableColumnPropertyType", + "partitionClause", "attachStatement", "checkStatement", "deleteStatement", "createTableStatement", "createDatabaseStatement", "createDictionaryStatement", "createLiveViewStatement", "createMaterializedViewStatement", "createViewStatement", - "createStmt", "dictionarySchemaClause", "dictionaryAttrDfnt", "dictionaryEngineClause", - "dictionaryPrimaryKeyClause", "dictionaryArgExpr", "sourceClause", - "lifetimeClause", "layoutClause", "rangeClause", "dictionarySettingsClause", - "clusterClause", "uuidClause", "destinationClause", "subqueryClause", - "tableSchemaClause", "engineClause", "partitionByClause", "primaryKeyClause", - "sampleByClause", "ttlClause", "engineExpr", "tableElementExpr", - "tableColumnDfnt", "tableColumnPropertyExpr", "tableIndexDfnt", - "tableProjectionDfnt", "codecExpr", "codecArgExpr", "ttlExpr", "describeStmt", - "dropStmt", "existsStmt", "explainStmt", "insertStmt", "columnsClause", - "dataClause", "valuesStatement", "killStmt", "optimizeStmt", "renameStmt", - "projectionSelectStmt", "selectUnionStmt", "selectStmtWithParens", - "selectStmt", "withClause", "topClause", "fromClause", "arrayJoinClause", - "windowClause", "prewhereClause", "whereClause", "groupByClause", - "havingClause", "orderByClause", "projectionOrderByClause", "limitByClause", - "limitClause", "settingsClause", "joinExpr", "joinOp", "joinOpCross", - "joinConstraintClause", "sampleClause", "limitExpr", "orderExprList", - "orderExpr", "ratioExpr", "settingExprList", "settingExpr", "windowExpr", - "winPartitionByClause", "winOrderByClause", "winFrameClause", "winFrameExtend", - "winFrameBound", "setStmt", "showStmt", "systemStmt", "truncateStmt", - "useStmt", "watchStmt", "columnTypeExpr", "columnExprList", "columnsExpr", - "columnExpr", "columnArgList", "columnArgExpr", "columnLambdaExpr", - "columnIdentifier", "tableExpr", "tableFunctionExpr", "tableIdentifier", - "tableArgList", "tableArgExpr", "databaseIdentifier", "floatingLiteral", - "numberLiteral", "literal", "interval", "keyword", "keywordForAlias", - "alias", "identifier", "identifierOrNull", "enumValue", + "createStatement", "dictionarySchemaClause", "dictionaryAttributeDefinition", + "dictionaryEngineClause", "dictionaryPrimaryKeyClause", "dictionaryArgumentExpression", + "sourceClause", "lifetimeClause", "layoutClause", "rangeClause", + "dictionarySettingsClause", "clusterClause", "uuidClause", "destinationClause", + "subqueryClause", "tableSchemaClause", "engineClause", "partitionByClause", + "primaryKeyClause", "sampleByClause", "ttlClause", "engineExpression", + "tableElementExpression", "tableColumnDefinition", "tableColumnPropertyExpression", + "tableIndexDefinition", "tableProjectionDefinition", "codecExpression", + "codecArgExpression", "ttlExpression", "describeStatement", "dropStatement", + "existsStatement", "explainStatement", "insertStatement", "columnsClause", + "dataClause", "valuesStatement", "killStatement", "optimizeStatement", + "renameStatement", "projectionSelectStatement", "selectUnionStatement", + "selectStatementWithParentheses", "selectStatement", "withClause", + "topClause", "fromClause", "arrayJoinClause", "windowClause", "prewhereClause", + "whereClause", "groupByClause", "havingClause", "orderByClause", + "projectionOrderByClause", "limitByClause", "limitClause", "settingsClause", + "joinExpression", "joinOperator", "joinOperatorCross", "joinConstraintClause", + "sampleClause", "limitExpression", "orderExpressionList", "orderExpression", + "ratioExpression", "settingExpressionList", "settingExpression", + "windowExpression", "windowPartitionByClause", "windowOrderByClause", + "windowFrameClause", "windowFrameExtend", "windowFrameBound", "setStatement", + "showStatement", "systemStatement", "truncateStatement", "useStatement", + "watchStatement", "columnTypeExpression", "columnExpressionList", + "columnsExpression", "columnExpression", "columnArgumentList", "columnArgumentExpression", + "columnLambdaExpression", "columnIdentifier", "tableExpression", + "tableFunctionExpression", "tableIdentifier", "tableArgList", "tableArgExpression", + "databaseIdentifier", "floatingLiteral", "numberLiteral", "literal", + "interval", "keyword", "keywordForAlias", "alias", "identifier", + "identifierOrNull", "enumValue", ]; public get grammarFileName(): string { return "ClickHouseParser.g4"; } @@ -659,7 +663,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { this.state = 284; - this.insertStmt(); + this.insertStatement(); } break; default: @@ -691,35 +695,35 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 287; - this.alterStmt(); + this.alterStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { this.state = 288; - this.attachStmt(); + this.attachStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { this.state = 289; - this.checkStmt(); + this.checkStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { this.state = 290; - this.createStmt(); + this.createStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { this.state = 291; - this.describeStmt(); + this.describeStatement(); } break; case 6: @@ -733,91 +737,91 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 7); { this.state = 293; - this.dropStmt(); + this.dropStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { this.state = 294; - this.existsStmt(); + this.existsStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { this.state = 295; - this.explainStmt(); + this.explainStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { this.state = 296; - this.killStmt(); + this.killStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { this.state = 297; - this.optimizeStmt(); + this.optimizeStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { this.state = 298; - this.renameStmt(); + this.renameStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { this.state = 299; - this.selectUnionStmt(); + this.selectUnionStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { this.state = 300; - this.setStmt(); + this.setStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { this.state = 301; - this.showStmt(); + this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { this.state = 302; - this.systemStmt(); + this.systemStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { this.state = 303; - this.truncateStmt(); + this.truncateStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { this.state = 304; - this.useStmt(); + this.useStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { this.state = 305; - this.watchStmt(); + this.watchStatement(); } break; case 20: @@ -829,12 +833,12 @@ export class ClickHouseParser extends antlr.Parser { case 1: { this.state = 306; - this.ctes(); + this.commonTableExpressionStatement(); } break; } this.state = 309; - this.selectStmt(); + this.selectStatement(); } break; } @@ -853,9 +857,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public ctes(): CtesContext { - let localContext = new CtesContext(this.context, this.state); - this.enterRule(localContext, 8, ClickHouseParser.RULE_ctes); + public commonTableExpressionStatement(): CommonTableExpressionStatementContext { + let localContext = new CommonTableExpressionStatementContext(this.context, this.state); + this.enterRule(localContext, 8, ClickHouseParser.RULE_commonTableExpressionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -984,12 +988,12 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public alterStmt(): AlterStmtContext { - let localContext = new AlterStmtContext(this.context, this.state); - this.enterRule(localContext, 14, ClickHouseParser.RULE_alterStmt); + public alterStatement(): AlterStatementContext { + let localContext = new AlterStatementContext(this.context, this.state); + this.enterRule(localContext, 14, ClickHouseParser.RULE_alterStatement); let _la: number; try { - localContext = new AlterTableStmtContext(localContext); + localContext = new AlterTableStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 341; @@ -1073,7 +1077,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 362; - this.tableColumnDfnt(); + this.tableColumnDefinition(); this.state = 365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -1111,7 +1115,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 374; - this.tableIndexDfnt(); + this.tableIndexDefinition(); this.state = 377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -1149,7 +1153,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 386; - this.tableProjectionDfnt(); + this.tableProjectionDefinition(); this.state = 389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -1329,7 +1333,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 440; this.match(ClickHouseParser.WHERE); this.state = 441; - this.columnExpr(0); + this.columnExpression(0); } break; case 10: @@ -1537,7 +1541,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 499; this.columnIdentifier(); this.state = 500; - this.codecExpr(); + this.codecExpression(); } break; case 19: @@ -1617,7 +1621,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 528; - this.tableColumnDfnt(); + this.tableColumnDefinition(); } break; case 22: @@ -1631,7 +1635,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 531; this.match(ClickHouseParser.BY); this.state = 532; - this.columnExpr(0); + this.columnExpression(0); } break; case 23: @@ -1747,7 +1751,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 565; this.match(ClickHouseParser.UPDATE); this.state = 566; - this.assignmentExprList(); + this.assignmentExpressionList(); this.state = 567; this.whereClause(); } @@ -1768,15 +1772,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public assignmentExprList(): AssignmentExprListContext { - let localContext = new AssignmentExprListContext(this.context, this.state); - this.enterRule(localContext, 18, ClickHouseParser.RULE_assignmentExprList); + public assignmentExpressionList(): AssignmentExpressionListContext { + let localContext = new AssignmentExpressionListContext(this.context, this.state); + this.enterRule(localContext, 18, ClickHouseParser.RULE_assignmentExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 571; - this.assignmentExpr(); + this.assignmentExpression(); this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -1786,7 +1790,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 572; this.match(ClickHouseParser.COMMA); this.state = 573; - this.assignmentExpr(); + this.assignmentExpression(); } } this.state = 578; @@ -1809,9 +1813,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public assignmentExpr(): AssignmentExprContext { - let localContext = new AssignmentExprContext(this.context, this.state); - this.enterRule(localContext, 20, ClickHouseParser.RULE_assignmentExpr); + public assignmentExpression(): AssignmentExpressionContext { + let localContext = new AssignmentExpressionContext(this.context, this.state); + this.enterRule(localContext, 20, ClickHouseParser.RULE_assignmentExpression); try { this.enterOuterAlt(localContext, 1); { @@ -1820,7 +1824,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 580; this.match(ClickHouseParser.EQ_SINGLE); this.state = 581; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -1882,7 +1886,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 585; this.match(ClickHouseParser.PARTITION); this.state = 586; - this.columnExpr(0); + this.columnExpression(0); } break; case 2: @@ -1912,12 +1916,12 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public attachStmt(): AttachStmtContext { - let localContext = new AttachStmtContext(this.context, this.state); - this.enterRule(localContext, 26, ClickHouseParser.RULE_attachStmt); + public attachStatement(): AttachStatementContext { + let localContext = new AttachStatementContext(this.context, this.state); + this.enterRule(localContext, 26, ClickHouseParser.RULE_attachStatement); let _la: number; try { - localContext = new AttachDictionaryStmtContext(localContext); + localContext = new AttachDictionaryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 592; @@ -1952,9 +1956,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public checkStmt(): CheckStmtContext { - let localContext = new CheckStmtContext(this.context, this.state); - this.enterRule(localContext, 28, ClickHouseParser.RULE_checkStmt); + public checkStatement(): CheckStatementContext { + let localContext = new CheckStatementContext(this.context, this.state); + this.enterRule(localContext, 28, ClickHouseParser.RULE_checkStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -2222,7 +2226,7 @@ export class ClickHouseParser extends antlr.Parser { } this.state = 658; - this.engineExpr(); + this.engineExpression(); } } catch (re) { @@ -2662,9 +2666,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public createStmt(): CreateStmtContext { - let localContext = new CreateStmtContext(this.context, this.state); - this.enterRule(localContext, 44, ClickHouseParser.RULE_createStmt); + public createStatement(): CreateStatementContext { + let localContext = new CreateStatementContext(this.context, this.state); + this.enterRule(localContext, 44, ClickHouseParser.RULE_createStatement); try { this.state = 771; this.errorHandler.sync(this); @@ -2737,7 +2741,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 773; this.match(ClickHouseParser.LPAREN); this.state = 774; - this.dictionaryAttrDfnt(); + this.dictionaryAttributeDefinition(); this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -2747,7 +2751,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 775; this.match(ClickHouseParser.COMMA); this.state = 776; - this.dictionaryAttrDfnt(); + this.dictionaryAttributeDefinition(); } } this.state = 781; @@ -2772,9 +2776,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public dictionaryAttrDfnt(): DictionaryAttrDfntContext { - let localContext = new DictionaryAttrDfntContext(this.context, this.state); - this.enterRule(localContext, 48, ClickHouseParser.RULE_dictionaryAttrDfnt); + public dictionaryAttributeDefinition(): DictionaryAttributeDefinitionContext { + let localContext = new DictionaryAttributeDefinitionContext(this.context, this.state); + this.enterRule(localContext, 48, ClickHouseParser.RULE_dictionaryAttributeDefinition); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -2782,7 +2786,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 784; this.identifier(); this.state = 785; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 807; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 86, this.context); @@ -2814,7 +2818,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 792; this.match(ClickHouseParser.EXPRESSION); this.state = 793; - this.columnExpr(0); + this.columnExpression(0); localContext.attrs.add("expression"); } break; @@ -2989,7 +2993,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 839; this.match(ClickHouseParser.KEY); this.state = 840; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -3006,9 +3010,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public dictionaryArgExpr(): DictionaryArgExprContext { - let localContext = new DictionaryArgExprContext(this.context, this.state); - this.enterRule(localContext, 54, ClickHouseParser.RULE_dictionaryArgExpr); + public dictionaryArgumentExpression(): DictionaryArgumentExpressionContext { + let localContext = new DictionaryArgumentExpressionContext(this.context, this.state); + this.enterRule(localContext, 54, ClickHouseParser.RULE_dictionaryArgumentExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -3279,7 +3283,7 @@ export class ClickHouseParser extends antlr.Parser { { { this.state = 855; - this.dictionaryArgExpr(); + this.dictionaryArgumentExpression(); } } this.state = 860; @@ -3392,7 +3396,7 @@ export class ClickHouseParser extends antlr.Parser { { { this.state = 883; - this.dictionaryArgExpr(); + this.dictionaryArgumentExpression(); } } this.state = 888; @@ -3488,7 +3492,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 909; this.match(ClickHouseParser.LPAREN); this.state = 910; - this.settingExprList(); + this.settingExpressionList(); this.state = 911; this.match(ClickHouseParser.RPAREN); } @@ -3798,7 +3802,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 925; this.match(ClickHouseParser.AS); this.state = 926; - this.selectUnionStmt(); + this.selectUnionStatement(); } } catch (re) { @@ -3830,7 +3834,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 928; this.match(ClickHouseParser.LPAREN); this.state = 929; - this.tableElementExpr(); + this.tableElementExpression(); this.state = 934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -3840,7 +3844,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 930; this.match(ClickHouseParser.COMMA); this.state = 931; - this.tableElementExpr(); + this.tableElementExpression(); } } this.state = 936; @@ -3868,7 +3872,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 941; this.match(ClickHouseParser.AS); this.state = 942; - this.tableFunctionExpr(); + this.tableFunctionExpression(); } break; } @@ -3895,7 +3899,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 945; - this.engineExpr(); + this.engineExpression(); this.state = 972; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 100, this.context); @@ -4007,7 +4011,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 976; this.match(ClickHouseParser.BY); this.state = 977; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -4035,7 +4039,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 980; this.match(ClickHouseParser.KEY); this.state = 981; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -4063,7 +4067,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 984; this.match(ClickHouseParser.BY); this.state = 985; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -4090,7 +4094,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 987; this.match(ClickHouseParser.TTL); this.state = 988; - this.ttlExpr(); + this.ttlExpression(); this.state = 993; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 101, this.context); @@ -4101,7 +4105,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 989; this.match(ClickHouseParser.COMMA); this.state = 990; - this.ttlExpr(); + this.ttlExpression(); } } } @@ -4125,9 +4129,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public engineExpr(): EngineExprContext { - let localContext = new EngineExprContext(this.context, this.state); - this.enterRule(localContext, 86, ClickHouseParser.RULE_engineExpr); + public engineExpression(): EngineExpressionContext { + let localContext = new EngineExpressionContext(this.context, this.state); + this.enterRule(localContext, 86, ClickHouseParser.RULE_engineExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4159,7 +4163,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1002; - this.columnExprList(); + this.columnExpressionList(); } } @@ -4184,23 +4188,23 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableElementExpr(): TableElementExprContext { - let localContext = new TableElementExprContext(this.context, this.state); - this.enterRule(localContext, 88, ClickHouseParser.RULE_tableElementExpr); + public tableElementExpression(): TableElementExpressionContext { + let localContext = new TableElementExpressionContext(this.context, this.state); + this.enterRule(localContext, 88, ClickHouseParser.RULE_tableElementExpression); try { this.state = 1018; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: - localContext = new TableElementExprColumnContext(localContext); + localContext = new TableElementExpressionColumnContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1008; - this.tableColumnDfnt(); + this.tableColumnDefinition(); } break; case 2: - localContext = new TableElementExprConstraintContext(localContext); + localContext = new TableElementExpressionConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1009; @@ -4210,27 +4214,27 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1011; this.match(ClickHouseParser.CHECK); this.state = 1012; - this.columnExpr(0); + this.columnExpression(0); } break; case 3: - localContext = new TableElementExprIndexContext(localContext); + localContext = new TableElementExpressionIndexContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 1014; this.match(ClickHouseParser.INDEX); this.state = 1015; - this.tableIndexDfnt(); + this.tableIndexDefinition(); } break; case 4: - localContext = new TableElementExprProjectionContext(localContext); + localContext = new TableElementExpressionProjectionContext(localContext); this.enterOuterAlt(localContext, 4); { this.state = 1016; this.match(ClickHouseParser.PROJECTION); this.state = 1017; - this.tableProjectionDfnt(); + this.tableProjectionDefinition(); } break; } @@ -4249,9 +4253,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableColumnDfnt(): TableColumnDfntContext { - let localContext = new TableColumnDfntContext(this.context, this.state); - this.enterRule(localContext, 90, ClickHouseParser.RULE_tableColumnDfnt); + public tableColumnDefinition(): TableColumnDefinitionContext { + let localContext = new TableColumnDefinitionContext(this.context, this.state); + this.enterRule(localContext, 90, ClickHouseParser.RULE_tableColumnDefinition); let _la: number; try { this.state = 1052; @@ -4263,14 +4267,14 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1020; this.columnIdentifier(); this.state = 1021; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 38 || _la === 104) { { this.state = 1022; - this.tableColumnPropertyExpr(); + this.tableColumnPropertyExpression(); } } @@ -4292,7 +4296,7 @@ export class ClickHouseParser extends antlr.Parser { if (_la === 24) { { this.state = 1029; - this.codecExpr(); + this.codecExpression(); } } @@ -4304,7 +4308,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1032; this.match(ClickHouseParser.TTL); this.state = 1033; - this.columnExpr(0); + this.columnExpression(0); } } @@ -4321,12 +4325,12 @@ export class ClickHouseParser extends antlr.Parser { case 1: { this.state = 1037; - this.columnTypeExpr(); + this.columnTypeExpression(); } break; } this.state = 1040; - this.tableColumnPropertyExpr(); + this.tableColumnPropertyExpression(); this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -4345,7 +4349,7 @@ export class ClickHouseParser extends antlr.Parser { if (_la === 24) { { this.state = 1045; - this.codecExpr(); + this.codecExpression(); } } @@ -4357,7 +4361,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1048; this.match(ClickHouseParser.TTL); this.state = 1049; - this.columnExpr(0); + this.columnExpression(0); } } @@ -4379,9 +4383,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableColumnPropertyExpr(): TableColumnPropertyExprContext { - let localContext = new TableColumnPropertyExprContext(this.context, this.state); - this.enterRule(localContext, 92, ClickHouseParser.RULE_tableColumnPropertyExpr); + public tableColumnPropertyExpression(): TableColumnPropertyExpressionContext { + let localContext = new TableColumnPropertyExpressionContext(this.context, this.state); + this.enterRule(localContext, 92, ClickHouseParser.RULE_tableColumnPropertyExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4396,7 +4400,7 @@ export class ClickHouseParser extends antlr.Parser { this.consume(); } this.state = 1055; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -4413,20 +4417,20 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableIndexDfnt(): TableIndexDfntContext { - let localContext = new TableIndexDfntContext(this.context, this.state); - this.enterRule(localContext, 94, ClickHouseParser.RULE_tableIndexDfnt); + public tableIndexDefinition(): TableIndexDefinitionContext { + let localContext = new TableIndexDefinitionContext(this.context, this.state); + this.enterRule(localContext, 94, ClickHouseParser.RULE_tableIndexDefinition); try { this.enterOuterAlt(localContext, 1); { this.state = 1057; this.columnIdentifier(); this.state = 1058; - this.columnExpr(0); + this.columnExpression(0); this.state = 1059; this.match(ClickHouseParser.TYPE); this.state = 1060; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 1061; this.match(ClickHouseParser.GRANULARITY); this.state = 1062; @@ -4447,16 +4451,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableProjectionDfnt(): TableProjectionDfntContext { - let localContext = new TableProjectionDfntContext(this.context, this.state); - this.enterRule(localContext, 96, ClickHouseParser.RULE_tableProjectionDfnt); + public tableProjectionDefinition(): TableProjectionDefinitionContext { + let localContext = new TableProjectionDefinitionContext(this.context, this.state); + this.enterRule(localContext, 96, ClickHouseParser.RULE_tableProjectionDefinition); try { this.enterOuterAlt(localContext, 1); { this.state = 1064; this.columnIdentifier(); this.state = 1065; - this.projectionSelectStmt(); + this.projectionSelectStatement(); } } catch (re) { @@ -4473,9 +4477,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public codecExpr(): CodecExprContext { - let localContext = new CodecExprContext(this.context, this.state); - this.enterRule(localContext, 98, ClickHouseParser.RULE_codecExpr); + public codecExpression(): CodecExpressionContext { + let localContext = new CodecExpressionContext(this.context, this.state); + this.enterRule(localContext, 98, ClickHouseParser.RULE_codecExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4485,7 +4489,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1068; this.match(ClickHouseParser.LPAREN); this.state = 1069; - this.codecArgExpr(); + this.codecArgExpression(); this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -4495,7 +4499,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1070; this.match(ClickHouseParser.COMMA); this.state = 1071; - this.codecArgExpr(); + this.codecArgExpression(); } } this.state = 1076; @@ -4520,9 +4524,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public codecArgExpr(): CodecArgExprContext { - let localContext = new CodecArgExprContext(this.context, this.state); - this.enterRule(localContext, 100, ClickHouseParser.RULE_codecArgExpr); + public codecArgExpression(): CodecArgExpressionContext { + let localContext = new CodecArgExpressionContext(this.context, this.state); + this.enterRule(localContext, 100, ClickHouseParser.RULE_codecArgExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4542,7 +4546,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1081; - this.columnExprList(); + this.columnExpressionList(); } } @@ -4567,14 +4571,14 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public ttlExpr(): TtlExprContext { - let localContext = new TtlExprContext(this.context, this.state); - this.enterRule(localContext, 102, ClickHouseParser.RULE_ttlExpr); + public ttlExpression(): TtlExpressionContext { + let localContext = new TtlExpressionContext(this.context, this.state); + this.enterRule(localContext, 102, ClickHouseParser.RULE_ttlExpression); try { this.enterOuterAlt(localContext, 1); { this.state = 1087; - this.columnExpr(0); + this.columnExpression(0); this.state = 1095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { @@ -4621,9 +4625,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public describeStmt(): DescribeStmtContext { - let localContext = new DescribeStmtContext(this.context, this.state); - this.enterRule(localContext, 104, ClickHouseParser.RULE_describeStmt); + public describeStatement(): DescribeStatementContext { + let localContext = new DescribeStatementContext(this.context, this.state); + this.enterRule(localContext, 104, ClickHouseParser.RULE_describeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -4648,7 +4652,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 1101; - this.tableExpr(0); + this.tableExpression(0); } } catch (re) { @@ -4665,16 +4669,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public dropStmt(): DropStmtContext { - let localContext = new DropStmtContext(this.context, this.state); - this.enterRule(localContext, 106, ClickHouseParser.RULE_dropStmt); + public dropStatement(): DropStatementContext { + let localContext = new DropStatementContext(this.context, this.state); + this.enterRule(localContext, 106, ClickHouseParser.RULE_dropStatement); let _la: number; try { this.state = 1134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: - localContext = new DropDatabaseStmtContext(localContext); + localContext = new DropDatabaseStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1103; @@ -4715,7 +4719,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new DropTableStmtContext(localContext); + localContext = new DropTableStatementContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1113; @@ -4816,16 +4820,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public existsStmt(): ExistsStmtContext { - let localContext = new ExistsStmtContext(this.context, this.state); - this.enterRule(localContext, 108, ClickHouseParser.RULE_existsStmt); + public existsStatement(): ExistsStatementContext { + let localContext = new ExistsStatementContext(this.context, this.state); + this.enterRule(localContext, 108, ClickHouseParser.RULE_existsStatement); let _la: number; try { this.state = 1149; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: - localContext = new ExistsDatabaseStmtContext(localContext); + localContext = new ExistsDatabaseStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1136; @@ -4837,7 +4841,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new ExistsTableStmtContext(localContext); + localContext = new ExistsTableStatementContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1139; @@ -4894,15 +4898,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public explainStmt(): ExplainStmtContext { - let localContext = new ExplainStmtContext(this.context, this.state); - this.enterRule(localContext, 110, ClickHouseParser.RULE_explainStmt); + public explainStatement(): ExplainStatementContext { + let localContext = new ExplainStatementContext(this.context, this.state); + this.enterRule(localContext, 110, ClickHouseParser.RULE_explainStatement); try { this.state = 1172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: - localContext = new ExplainDefaultStmtContext(localContext); + localContext = new ExplainDefaultStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1151; @@ -4912,7 +4916,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new ExplainASTStmtContext(localContext); + localContext = new ExplainASTStatementContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1153; @@ -4924,7 +4928,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 3: - localContext = new ExplainSyntaxStmtContext(localContext); + localContext = new ExplainSyntaxStatementContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 1156; @@ -4936,7 +4940,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 4: - localContext = new ExplainPipelineStmtContext(localContext); + localContext = new ExplainPipelineStatementContext(localContext); this.enterOuterAlt(localContext, 4); { this.state = 1159; @@ -4948,7 +4952,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 5: - localContext = new ExplainPlanStmtContext(localContext); + localContext = new ExplainPlanStatementContext(localContext); this.enterOuterAlt(localContext, 5); { this.state = 1162; @@ -4960,7 +4964,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 6: - localContext = new ExplainQueryTreeStmtContext(localContext); + localContext = new ExplainQueryTreeStatementContext(localContext); this.enterOuterAlt(localContext, 6); { this.state = 1165; @@ -4974,7 +4978,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 7: - localContext = new ExplainEstimateStmtContext(localContext); + localContext = new ExplainEstimateStatementContext(localContext); this.enterOuterAlt(localContext, 7); { this.state = 1169; @@ -5001,9 +5005,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public insertStmt(): InsertStmtContext { - let localContext = new InsertStmtContext(this.context, this.state); - this.enterRule(localContext, 112, ClickHouseParser.RULE_insertStmt); + public insertStatement(): InsertStatementContext { + let localContext = new InsertStatementContext(this.context, this.state); + this.enterRule(localContext, 112, ClickHouseParser.RULE_insertStatement); try { this.enterOuterAlt(localContext, 1); { @@ -5035,7 +5039,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1180; this.match(ClickHouseParser.FUNCTION); this.state = 1181; - this.tableFunctionExpr(); + this.tableFunctionExpression(); } break; } @@ -5145,7 +5149,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { this.state = 1203; - this.selectUnionStmt(); + this.selectUnionStatement(); this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -5245,12 +5249,12 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public killStmt(): KillStmtContext { - let localContext = new KillStmtContext(this.context, this.state); - this.enterRule(localContext, 120, ClickHouseParser.RULE_killStmt); + public killStatement(): KillStatementContext { + let localContext = new KillStatementContext(this.context, this.state); + this.enterRule(localContext, 120, ClickHouseParser.RULE_killStatement); let _la: number; try { - localContext = new KillMutationStmtContext(localContext); + localContext = new KillMutationStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1228; @@ -5302,9 +5306,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public optimizeStmt(): OptimizeStmtContext { - let localContext = new OptimizeStmtContext(this.context, this.state); - this.enterRule(localContext, 122, ClickHouseParser.RULE_optimizeStmt); + public optimizeStatement(): OptimizeStatementContext { + let localContext = new OptimizeStatementContext(this.context, this.state); + this.enterRule(localContext, 122, ClickHouseParser.RULE_optimizeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5371,9 +5375,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public renameStmt(): RenameStmtContext { - let localContext = new RenameStmtContext(this.context, this.state); - this.enterRule(localContext, 124, ClickHouseParser.RULE_renameStmt); + public renameStatement(): RenameStatementContext { + let localContext = new RenameStatementContext(this.context, this.state); + this.enterRule(localContext, 124, ClickHouseParser.RULE_renameStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5434,9 +5438,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public projectionSelectStmt(): ProjectionSelectStmtContext { - let localContext = new ProjectionSelectStmtContext(this.context, this.state); - this.enterRule(localContext, 126, ClickHouseParser.RULE_projectionSelectStmt); + public projectionSelectStatement(): ProjectionSelectStatementContext { + let localContext = new ProjectionSelectStatementContext(this.context, this.state); + this.enterRule(localContext, 126, ClickHouseParser.RULE_projectionSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5456,7 +5460,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1274; this.match(ClickHouseParser.SELECT); this.state = 1275; - this.columnExprList(); + this.columnExpressionList(); this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -5495,15 +5499,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public selectUnionStmt(): SelectUnionStmtContext { - let localContext = new SelectUnionStmtContext(this.context, this.state); - this.enterRule(localContext, 128, ClickHouseParser.RULE_selectUnionStmt); + public selectUnionStatement(): SelectUnionStatementContext { + let localContext = new SelectUnionStatementContext(this.context, this.state); + this.enterRule(localContext, 128, ClickHouseParser.RULE_selectUnionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 1284; - this.selectStmtWithParens(); + this.selectStatementWithParentheses(); this.state = 1290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -5515,7 +5519,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1286; this.match(ClickHouseParser.ALL); this.state = 1287; - this.selectStmtWithParens(); + this.selectStatementWithParentheses(); } } this.state = 1292; @@ -5538,9 +5542,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public selectStmtWithParens(): SelectStmtWithParensContext { - let localContext = new SelectStmtWithParensContext(this.context, this.state); - this.enterRule(localContext, 130, ClickHouseParser.RULE_selectStmtWithParens); + public selectStatementWithParentheses(): SelectStatementWithParenthesesContext { + let localContext = new SelectStatementWithParenthesesContext(this.context, this.state); + this.enterRule(localContext, 130, ClickHouseParser.RULE_selectStatementWithParentheses); try { this.state = 1298; this.errorHandler.sync(this); @@ -5550,7 +5554,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 1293; - this.selectStmt(); + this.selectStatement(); } break; case ClickHouseParser.LPAREN: @@ -5559,7 +5563,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1294; this.match(ClickHouseParser.LPAREN); this.state = 1295; - this.selectUnionStmt(); + this.selectUnionStatement(); this.state = 1296; this.match(ClickHouseParser.RPAREN); } @@ -5582,9 +5586,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public selectStmt(): SelectStmtContext { - let localContext = new SelectStmtContext(this.context, this.state); - this.enterRule(localContext, 132, ClickHouseParser.RULE_selectStmt); + public selectStatement(): SelectStatementContext { + let localContext = new SelectStatementContext(this.context, this.state); + this.enterRule(localContext, 132, ClickHouseParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -5622,7 +5626,7 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 1310; - this.columnExprList(); + this.columnExpressionList(); this.state = 1312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -5789,7 +5793,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1352; this.match(ClickHouseParser.WITH); this.state = 1353; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -5853,7 +5857,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1361; this.match(ClickHouseParser.FROM); this.state = 1362; - this.joinExpr(0); + this.joinExpression(0); } } catch (re) { @@ -5899,7 +5903,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1368; this.match(ClickHouseParser.JOIN); this.state = 1369; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -5931,7 +5935,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1374; this.match(ClickHouseParser.LPAREN); this.state = 1375; - this.windowExpr(); + this.windowExpression(); this.state = 1376; this.match(ClickHouseParser.RPAREN); } @@ -5959,7 +5963,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1378; this.match(ClickHouseParser.PREWHERE); this.state = 1379; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -5985,7 +5989,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1381; this.match(ClickHouseParser.WHERE); this.state = 1382; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -6030,7 +6034,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1387; this.match(ClickHouseParser.LPAREN); this.state = 1388; - this.columnExprList(); + this.columnExpressionList(); this.state = 1389; this.match(ClickHouseParser.RPAREN); } @@ -6038,7 +6042,7 @@ export class ClickHouseParser extends antlr.Parser { case 2: { this.state = 1391; - this.columnExprList(); + this.columnExpressionList(); } break; } @@ -6067,7 +6071,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1394; this.match(ClickHouseParser.HAVING); this.state = 1395; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -6095,7 +6099,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1398; this.match(ClickHouseParser.BY); this.state = 1399; - this.orderExprList(); + this.orderExpressionList(); } } catch (re) { @@ -6123,7 +6127,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1402; this.match(ClickHouseParser.BY); this.state = 1403; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -6149,11 +6153,11 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1405; this.match(ClickHouseParser.LIMIT); this.state = 1406; - this.limitExpr(); + this.limitExpression(); this.state = 1407; this.match(ClickHouseParser.BY); this.state = 1408; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -6180,7 +6184,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1410; this.match(ClickHouseParser.LIMIT); this.state = 1411; - this.limitExpr(); + this.limitExpression(); this.state = 1414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -6218,7 +6222,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1416; this.match(ClickHouseParser.SETTINGS); this.state = 1417; - this.settingExprList(); + this.settingExpressionList(); } } catch (re) { @@ -6236,19 +6240,19 @@ export class ClickHouseParser extends antlr.Parser { return localContext; } - public joinExpr(): JoinExprContext; - public joinExpr(_p: number): JoinExprContext; - public joinExpr(_p?: number): JoinExprContext { + public joinExpression(): JoinExpressionContext; + public joinExpression(_p: number): JoinExpressionContext; + public joinExpression(_p?: number): JoinExpressionContext { if (_p === undefined) { _p = 0; } let parentContext = this.context; let parentState = this.state; - let localContext = new JoinExprContext(this.context, parentState); + let localContext = new JoinExpressionContext(this.context, parentState); let previousContext = localContext; let _startState = 162; - this.enterRecursionRule(localContext, 162, ClickHouseParser.RULE_joinExpr, _p); + this.enterRecursionRule(localContext, 162, ClickHouseParser.RULE_joinExpression, _p); let _la: number; try { let alternative: number; @@ -6259,12 +6263,12 @@ export class ClickHouseParser extends antlr.Parser { switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - localContext = new JoinExprTableContext(localContext); + localContext = new JoinExpressionTableContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1420; - this.tableExpr(0); + this.tableExpression(0); this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { @@ -6289,13 +6293,13 @@ export class ClickHouseParser extends antlr.Parser { break; case 2: { - localContext = new JoinExprParensContext(localContext); + localContext = new JoinExpressionParensContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1427; this.match(ClickHouseParser.LPAREN); this.state = 1428; - this.joinExpr(0); + this.joinExpression(0); this.state = 1429; this.match(ClickHouseParser.RPAREN); } @@ -6317,22 +6321,22 @@ export class ClickHouseParser extends antlr.Parser { switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - localContext = new JoinExprCrossOpContext(new JoinExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_joinExpr); + localContext = new JoinExpressionCrossOpContext(new JoinExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_joinExpression); this.state = 1433; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } this.state = 1434; - this.joinOpCross(); + this.joinOperatorCross(); this.state = 1435; - this.joinExpr(4); + this.joinExpression(4); } break; case 2: { - localContext = new JoinExprOpContext(new JoinExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_joinExpr); + localContext = new JoinExpressionOpContext(new JoinExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_joinExpression); this.state = 1437; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); @@ -6360,14 +6364,14 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4496) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 134250497) !== 0) || _la === 143 || _la === 150) { { this.state = 1441; - this.joinOp(); + this.joinOperator(); } } this.state = 1444; this.match(ClickHouseParser.JOIN); this.state = 1445; - this.joinExpr(0); + this.joinExpression(0); this.state = 1446; this.joinConstraintClause(); } @@ -6395,9 +6399,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public joinOp(): JoinOpContext { - let localContext = new JoinOpContext(this.context, this.state); - this.enterRule(localContext, 164, ClickHouseParser.RULE_joinOp); + public joinOperator(): JoinOperatorContext { + let localContext = new JoinOperatorContext(this.context, this.state); + this.enterRule(localContext, 164, ClickHouseParser.RULE_joinOperator); let _la: number; try { this.state = 1496; @@ -6654,9 +6658,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public joinOpCross(): JoinOpCrossContext { - let localContext = new JoinOpCrossContext(this.context, this.state); - this.enterRule(localContext, 166, ClickHouseParser.RULE_joinOpCross); + public joinOperatorCross(): JoinOperatorCrossContext { + let localContext = new JoinOperatorCrossContext(this.context, this.state); + this.enterRule(localContext, 166, ClickHouseParser.RULE_joinOperatorCross); let _la: number; try { this.state = 1504; @@ -6728,7 +6732,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1506; this.match(ClickHouseParser.ON); this.state = 1507; - this.columnExprList(); + this.columnExpressionList(); } break; case 2: @@ -6739,7 +6743,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1509; this.match(ClickHouseParser.LPAREN); this.state = 1510; - this.columnExprList(); + this.columnExpressionList(); this.state = 1511; this.match(ClickHouseParser.RPAREN); } @@ -6750,7 +6754,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1513; this.match(ClickHouseParser.USING); this.state = 1514; - this.columnExprList(); + this.columnExpressionList(); } break; } @@ -6778,7 +6782,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1517; this.match(ClickHouseParser.SAMPLE); this.state = 1518; - this.ratioExpr(); + this.ratioExpression(); this.state = 1521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { @@ -6787,7 +6791,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1519; this.match(ClickHouseParser.OFFSET); this.state = 1520; - this.ratioExpr(); + this.ratioExpression(); } break; } @@ -6807,15 +6811,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public limitExpr(): LimitExprContext { - let localContext = new LimitExprContext(this.context, this.state); - this.enterRule(localContext, 172, ClickHouseParser.RULE_limitExpr); + public limitExpression(): LimitExpressionContext { + let localContext = new LimitExpressionContext(this.context, this.state); + this.enterRule(localContext, 172, ClickHouseParser.RULE_limitExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 1523; - this.columnExpr(0); + this.columnExpression(0); this.state = 1526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -6831,7 +6835,7 @@ export class ClickHouseParser extends antlr.Parser { this.consume(); } this.state = 1525; - this.columnExpr(0); + this.columnExpression(0); } } @@ -6851,15 +6855,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public orderExprList(): OrderExprListContext { - let localContext = new OrderExprListContext(this.context, this.state); - this.enterRule(localContext, 174, ClickHouseParser.RULE_orderExprList); + public orderExpressionList(): OrderExpressionListContext { + let localContext = new OrderExpressionListContext(this.context, this.state); + this.enterRule(localContext, 174, ClickHouseParser.RULE_orderExpressionList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { this.state = 1528; - this.orderExpr(); + this.orderExpression(); this.state = 1533; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 200, this.context); @@ -6870,7 +6874,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1529; this.match(ClickHouseParser.COMMA); this.state = 1530; - this.orderExpr(); + this.orderExpression(); } } } @@ -6894,15 +6898,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public orderExpr(): OrderExprContext { - let localContext = new OrderExprContext(this.context, this.state); - this.enterRule(localContext, 176, ClickHouseParser.RULE_orderExpr); + public orderExpression(): OrderExpressionContext { + let localContext = new OrderExpressionContext(this.context, this.state); + this.enterRule(localContext, 176, ClickHouseParser.RULE_orderExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 1536; - this.columnExpr(0); + this.columnExpression(0); this.state = 1538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { @@ -6967,9 +6971,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public ratioExpr(): RatioExprContext { - let localContext = new RatioExprContext(this.context, this.state); - this.enterRule(localContext, 178, ClickHouseParser.RULE_ratioExpr); + public ratioExpression(): RatioExpressionContext { + let localContext = new RatioExpressionContext(this.context, this.state); + this.enterRule(localContext, 178, ClickHouseParser.RULE_ratioExpression); try { this.enterOuterAlt(localContext, 1); { @@ -7003,15 +7007,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public settingExprList(): SettingExprListContext { - let localContext = new SettingExprListContext(this.context, this.state); - this.enterRule(localContext, 180, ClickHouseParser.RULE_settingExprList); + public settingExpressionList(): SettingExpressionListContext { + let localContext = new SettingExpressionListContext(this.context, this.state); + this.enterRule(localContext, 180, ClickHouseParser.RULE_settingExpressionList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { this.state = 1553; - this.settingExpr(); + this.settingExpression(); this.state = 1558; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 205, this.context); @@ -7022,7 +7026,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1554; this.match(ClickHouseParser.COMMA); this.state = 1555; - this.settingExpr(); + this.settingExpression(); } } } @@ -7046,9 +7050,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public settingExpr(): SettingExprContext { - let localContext = new SettingExprContext(this.context, this.state); - this.enterRule(localContext, 182, ClickHouseParser.RULE_settingExpr); + public settingExpression(): SettingExpressionContext { + let localContext = new SettingExpressionContext(this.context, this.state); + this.enterRule(localContext, 182, ClickHouseParser.RULE_settingExpression); try { this.enterOuterAlt(localContext, 1); { @@ -7074,9 +7078,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public windowExpr(): WindowExprContext { - let localContext = new WindowExprContext(this.context, this.state); - this.enterRule(localContext, 184, ClickHouseParser.RULE_windowExpr); + public windowExpression(): WindowExpressionContext { + let localContext = new WindowExpressionContext(this.context, this.state); + this.enterRule(localContext, 184, ClickHouseParser.RULE_windowExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7087,7 +7091,7 @@ export class ClickHouseParser extends antlr.Parser { if (_la === 126) { { this.state = 1565; - this.winPartitionByClause(); + this.windowPartitionByClause(); } } @@ -7097,7 +7101,7 @@ export class ClickHouseParser extends antlr.Parser { if (_la === 122) { { this.state = 1568; - this.winOrderByClause(); + this.windowOrderByClause(); } } @@ -7107,7 +7111,7 @@ export class ClickHouseParser extends antlr.Parser { if (_la === 136 || _la === 146) { { this.state = 1571; - this.winFrameClause(); + this.windowFrameClause(); } } @@ -7127,9 +7131,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public winPartitionByClause(): WinPartitionByClauseContext { - let localContext = new WinPartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 186, ClickHouseParser.RULE_winPartitionByClause); + public windowPartitionByClause(): WindowPartitionByClauseContext { + let localContext = new WindowPartitionByClauseContext(this.context, this.state); + this.enterRule(localContext, 186, ClickHouseParser.RULE_windowPartitionByClause); try { this.enterOuterAlt(localContext, 1); { @@ -7138,7 +7142,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1575; this.match(ClickHouseParser.BY); this.state = 1576; - this.columnExprList(); + this.columnExpressionList(); } } catch (re) { @@ -7155,9 +7159,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public winOrderByClause(): WinOrderByClauseContext { - let localContext = new WinOrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 188, ClickHouseParser.RULE_winOrderByClause); + public windowOrderByClause(): WindowOrderByClauseContext { + let localContext = new WindowOrderByClauseContext(this.context, this.state); + this.enterRule(localContext, 188, ClickHouseParser.RULE_windowOrderByClause); try { this.enterOuterAlt(localContext, 1); { @@ -7166,7 +7170,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1579; this.match(ClickHouseParser.BY); this.state = 1580; - this.orderExprList(); + this.orderExpressionList(); } } catch (re) { @@ -7183,9 +7187,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public winFrameClause(): WinFrameClauseContext { - let localContext = new WinFrameClauseContext(this.context, this.state); - this.enterRule(localContext, 190, ClickHouseParser.RULE_winFrameClause); + public windowFrameClause(): WindowFrameClauseContext { + let localContext = new WindowFrameClauseContext(this.context, this.state); + this.enterRule(localContext, 190, ClickHouseParser.RULE_windowFrameClause); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7200,7 +7204,7 @@ export class ClickHouseParser extends antlr.Parser { this.consume(); } this.state = 1583; - this.winFrameExtend(); + this.windowFrameExtend(); } } catch (re) { @@ -7217,9 +7221,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public winFrameExtend(): WinFrameExtendContext { - let localContext = new WinFrameExtendContext(this.context, this.state); - this.enterRule(localContext, 192, ClickHouseParser.RULE_winFrameExtend); + public windowFrameExtend(): WindowFrameExtendContext { + let localContext = new WindowFrameExtendContext(this.context, this.state); + this.enterRule(localContext, 192, ClickHouseParser.RULE_windowFrameExtend); try { this.state = 1591; this.errorHandler.sync(this); @@ -7239,7 +7243,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 1585; - this.winFrameBound(); + this.windowFrameBound(); } break; case ClickHouseParser.BETWEEN: @@ -7249,11 +7253,11 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1586; this.match(ClickHouseParser.BETWEEN); this.state = 1587; - this.winFrameBound(); + this.windowFrameBound(); this.state = 1588; this.match(ClickHouseParser.AND); this.state = 1589; - this.winFrameBound(); + this.windowFrameBound(); } break; default: @@ -7274,9 +7278,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public winFrameBound(): WinFrameBoundContext { - let localContext = new WinFrameBoundContext(this.context, this.state); - this.enterRule(localContext, 194, ClickHouseParser.RULE_winFrameBound); + public windowFrameBound(): WindowFrameBoundContext { + let localContext = new WindowFrameBoundContext(this.context, this.state); + this.enterRule(localContext, 194, ClickHouseParser.RULE_windowFrameBound); try { this.enterOuterAlt(localContext, 1); { @@ -7340,16 +7344,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public setStmt(): SetStmtContext { - let localContext = new SetStmtContext(this.context, this.state); - this.enterRule(localContext, 196, ClickHouseParser.RULE_setStmt); + public setStatement(): SetStatementContext { + let localContext = new SetStatementContext(this.context, this.state); + this.enterRule(localContext, 196, ClickHouseParser.RULE_setStatement); try { this.enterOuterAlt(localContext, 1); { this.state = 1607; this.match(ClickHouseParser.SET); this.state = 1608; - this.settingExprList(); + this.settingExpressionList(); } } catch (re) { @@ -7366,16 +7370,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public showStmt(): ShowStmtContext { - let localContext = new ShowStmtContext(this.context, this.state); - this.enterRule(localContext, 198, ClickHouseParser.RULE_showStmt); + public showStatement(): ShowStatementContext { + let localContext = new ShowStatementContext(this.context, this.state); + this.enterRule(localContext, 198, ClickHouseParser.RULE_showStatement); let _la: number; try { this.state = 1652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: - localContext = new ShowCreateDatabaseStmtContext(localContext); + localContext = new ShowCreateDatabaseStatementContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1610; @@ -7389,7 +7393,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new ShowCreateDictionaryStmtContext(localContext); + localContext = new ShowCreateDictionaryStatementContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1614; @@ -7403,7 +7407,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 3: - localContext = new ShowCreateTableStmtContext(localContext); + localContext = new ShowCreateTableStatementContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 1618; @@ -7435,7 +7439,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 4: - localContext = new ShowDatabasesStmtContext(localContext); + localContext = new ShowDatabasesStatementContext(localContext); this.enterOuterAlt(localContext, 4); { this.state = 1627; @@ -7445,7 +7449,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 5: - localContext = new ShowDictionariesStmtContext(localContext); + localContext = new ShowDictionariesStatementContext(localContext); this.enterOuterAlt(localContext, 5); { this.state = 1629; @@ -7467,7 +7471,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 6: - localContext = new ShowTablesStmtContext(localContext); + localContext = new ShowTablesStatementContext(localContext); this.enterOuterAlt(localContext, 6); { this.state = 1635; @@ -7558,9 +7562,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public systemStmt(): SystemStmtContext { - let localContext = new SystemStmtContext(this.context, this.state); - this.enterRule(localContext, 200, ClickHouseParser.RULE_systemStmt); + public systemStatement(): SystemStatementContext { + let localContext = new SystemStatementContext(this.context, this.state); + this.enterRule(localContext, 200, ClickHouseParser.RULE_systemStatement); let _la: number; try { this.state = 1688; @@ -7718,9 +7722,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public truncateStmt(): TruncateStmtContext { - let localContext = new TruncateStmtContext(this.context, this.state); - this.enterRule(localContext, 202, ClickHouseParser.RULE_truncateStmt); + public truncateStatement(): TruncateStatementContext { + let localContext = new TruncateStatementContext(this.context, this.state); + this.enterRule(localContext, 202, ClickHouseParser.RULE_truncateStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7787,9 +7791,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public useStmt(): UseStmtContext { - let localContext = new UseStmtContext(this.context, this.state); - this.enterRule(localContext, 204, ClickHouseParser.RULE_useStmt); + public useStatement(): UseStatementContext { + let localContext = new UseStatementContext(this.context, this.state); + this.enterRule(localContext, 204, ClickHouseParser.RULE_useStatement); try { this.enterOuterAlt(localContext, 1); { @@ -7813,9 +7817,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public watchStmt(): WatchStmtContext { - let localContext = new WatchStmtContext(this.context, this.state); - this.enterRule(localContext, 206, ClickHouseParser.RULE_watchStmt); + public watchStatement(): WatchStatementContext { + let localContext = new WatchStatementContext(this.context, this.state); + this.enterRule(localContext, 206, ClickHouseParser.RULE_watchStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -7862,16 +7866,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnTypeExpr(): ColumnTypeExprContext { - let localContext = new ColumnTypeExprContext(this.context, this.state); - this.enterRule(localContext, 208, ClickHouseParser.RULE_columnTypeExpr); + public columnTypeExpression(): ColumnTypeExpressionContext { + let localContext = new ColumnTypeExpressionContext(this.context, this.state); + this.enterRule(localContext, 208, ClickHouseParser.RULE_columnTypeExpression); let _la: number; try { this.state = 1764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: - localContext = new ColumnTypeExprSimpleContext(localContext); + localContext = new ColumnTypeExpressionSimpleContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1717; @@ -7879,7 +7883,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new ColumnTypeExprNestedContext(localContext); + localContext = new ColumnTypeExpressionNestedContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1718; @@ -7889,7 +7893,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1720; this.identifier(); this.state = 1721; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 1728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -7901,7 +7905,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1723; this.identifier(); this.state = 1724; - this.columnTypeExpr(); + this.columnTypeExpression(); } } this.state = 1730; @@ -7913,7 +7917,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 3: - localContext = new ColumnTypeExprEnumContext(localContext); + localContext = new ColumnTypeExpressionEnumContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 1733; @@ -7943,7 +7947,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 4: - localContext = new ColumnTypeExprComplexContext(localContext); + localContext = new ColumnTypeExpressionComplexContext(localContext); this.enterOuterAlt(localContext, 4); { this.state = 1745; @@ -7951,7 +7955,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1746; this.match(ClickHouseParser.LPAREN); this.state = 1747; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -7961,7 +7965,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1748; this.match(ClickHouseParser.COMMA); this.state = 1749; - this.columnTypeExpr(); + this.columnTypeExpression(); } } this.state = 1754; @@ -7973,7 +7977,7 @@ export class ClickHouseParser extends antlr.Parser { } break; case 5: - localContext = new ColumnTypeExprParamContext(localContext); + localContext = new ColumnTypeExpressionParamContext(localContext); this.enterOuterAlt(localContext, 5); { this.state = 1757; @@ -7986,7 +7990,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1759; - this.columnExprList(); + this.columnExpressionList(); } } @@ -8010,15 +8014,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnExprList(): ColumnExprListContext { - let localContext = new ColumnExprListContext(this.context, this.state); - this.enterRule(localContext, 210, ClickHouseParser.RULE_columnExprList); + public columnExpressionList(): ColumnExpressionListContext { + let localContext = new ColumnExpressionListContext(this.context, this.state); + this.enterRule(localContext, 210, ClickHouseParser.RULE_columnExpressionList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { this.state = 1766; - this.columnsExpr(); + this.columnsExpression(); this.state = 1771; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); @@ -8029,7 +8033,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1767; this.match(ClickHouseParser.COMMA); this.state = 1768; - this.columnsExpr(); + this.columnsExpression(); } } } @@ -8053,16 +8057,16 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnsExpr(): ColumnsExprContext { - let localContext = new ColumnsExprContext(this.context, this.state); - this.enterRule(localContext, 212, ClickHouseParser.RULE_columnsExpr); + public columnsExpression(): ColumnsExpressionContext { + let localContext = new ColumnsExpressionContext(this.context, this.state); + this.enterRule(localContext, 212, ClickHouseParser.RULE_columnsExpression); let _la: number; try { this.state = 1785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: - localContext = new ColumnsExprAsteriskContext(localContext); + localContext = new ColumnsExpressionAsteriskContext(localContext); this.enterOuterAlt(localContext, 1); { this.state = 1777; @@ -8082,23 +8086,23 @@ export class ClickHouseParser extends antlr.Parser { } break; case 2: - localContext = new ColumnsExprSubqueryContext(localContext); + localContext = new ColumnsExpressionSubqueryContext(localContext); this.enterOuterAlt(localContext, 2); { this.state = 1780; this.match(ClickHouseParser.LPAREN); this.state = 1781; - this.selectUnionStmt(); + this.selectUnionStatement(); this.state = 1782; this.match(ClickHouseParser.RPAREN); } break; case 3: - localContext = new ColumnsExprColumnContext(localContext); + localContext = new ColumnsExpressionColumnContext(localContext); this.enterOuterAlt(localContext, 3); { this.state = 1784; - this.columnExpr(0); + this.columnExpression(0); } break; } @@ -8118,19 +8122,19 @@ export class ClickHouseParser extends antlr.Parser { return localContext; } - public columnExpr(): ColumnExprContext; - public columnExpr(_p: number): ColumnExprContext; - public columnExpr(_p?: number): ColumnExprContext { + public columnExpression(): ColumnExpressionContext; + public columnExpression(_p: number): ColumnExpressionContext; + public columnExpression(_p?: number): ColumnExpressionContext { if (_p === undefined) { _p = 0; } let parentContext = this.context; let parentState = this.state; - let localContext = new ColumnExprContext(this.context, parentState); + let localContext = new ColumnExpressionContext(this.context, parentState); let previousContext = localContext; let _startState = 214; - this.enterRecursionRule(localContext, 214, ClickHouseParser.RULE_columnExpr, _p); + this.enterRecursionRule(localContext, 214, ClickHouseParser.RULE_columnExpression, _p); let _la: number; try { let alternative: number; @@ -8141,7 +8145,7 @@ export class ClickHouseParser extends antlr.Parser { switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - localContext = new ColumnExprCaseContext(localContext); + localContext = new ColumnExpressionCaseContext(localContext); this.context = localContext; previousContext = localContext; @@ -8153,7 +8157,7 @@ export class ClickHouseParser extends antlr.Parser { case 1: { this.state = 1789; - this.columnExpr(0); + this.columnExpression(0); } break; } @@ -8166,11 +8170,11 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1792; this.match(ClickHouseParser.WHEN); this.state = 1793; - this.columnExpr(0); + this.columnExpression(0); this.state = 1794; this.match(ClickHouseParser.THEN); this.state = 1795; - this.columnExpr(0); + this.columnExpression(0); } } this.state = 1799; @@ -8185,7 +8189,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1801; this.match(ClickHouseParser.ELSE); this.state = 1802; - this.columnExpr(0); + this.columnExpression(0); } } @@ -8195,7 +8199,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 2: { - localContext = new ColumnExprCastContext(localContext); + localContext = new ColumnExpressionCastContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1807; @@ -8203,18 +8207,18 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1808; this.match(ClickHouseParser.LPAREN); this.state = 1809; - this.columnExpr(0); + this.columnExpression(0); this.state = 1810; this.match(ClickHouseParser.AS); this.state = 1811; - this.columnTypeExpr(); + this.columnTypeExpression(); this.state = 1812; this.match(ClickHouseParser.RPAREN); } break; case 3: { - localContext = new ColumnExprDateContext(localContext); + localContext = new ColumnExpressionDateContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1814; @@ -8225,7 +8229,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 4: { - localContext = new ColumnExprExtractContext(localContext); + localContext = new ColumnExpressionExtractContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1816; @@ -8237,27 +8241,27 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1819; this.match(ClickHouseParser.FROM); this.state = 1820; - this.columnExpr(0); + this.columnExpression(0); this.state = 1821; this.match(ClickHouseParser.RPAREN); } break; case 5: { - localContext = new ColumnExprIntervalContext(localContext); + localContext = new ColumnExpressionIntervalContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1823; this.match(ClickHouseParser.INTERVAL); this.state = 1824; - this.columnExpr(0); + this.columnExpression(0); this.state = 1825; this.interval(); } break; case 6: { - localContext = new ColumnExprSubstringContext(localContext); + localContext = new ColumnExpressionSubstringContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1827; @@ -8265,11 +8269,11 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1828; this.match(ClickHouseParser.LPAREN); this.state = 1829; - this.columnExpr(0); + this.columnExpression(0); this.state = 1830; this.match(ClickHouseParser.FROM); this.state = 1831; - this.columnExpr(0); + this.columnExpression(0); this.state = 1834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -8278,7 +8282,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1832; this.match(ClickHouseParser.FOR); this.state = 1833; - this.columnExpr(0); + this.columnExpression(0); } } @@ -8288,7 +8292,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 7: { - localContext = new ColumnExprTimestampContext(localContext); + localContext = new ColumnExpressionTimestampContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1838; @@ -8299,7 +8303,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 8: { - localContext = new ColumnExprTrimContext(localContext); + localContext = new ColumnExpressionTrimContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1840; @@ -8320,14 +8324,14 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1844; this.match(ClickHouseParser.FROM); this.state = 1845; - this.columnExpr(0); + this.columnExpression(0); this.state = 1846; this.match(ClickHouseParser.RPAREN); } break; case 9: { - localContext = new ColumnExprWinFunctionContext(localContext); + localContext = new ColumnExpressionWinFunctionContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1848; @@ -8341,7 +8345,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1850; - this.columnExprList(); + this.columnExpressionList(); } } @@ -8353,14 +8357,14 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1856; this.match(ClickHouseParser.LPAREN); this.state = 1857; - this.windowExpr(); + this.windowExpression(); this.state = 1858; this.match(ClickHouseParser.RPAREN); } break; case 10: { - localContext = new ColumnExprWinFunctionTargetContext(localContext); + localContext = new ColumnExpressionWinFunctionTargetContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1860; @@ -8374,7 +8378,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1862; - this.columnExprList(); + this.columnExpressionList(); } } @@ -8389,7 +8393,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 11: { - localContext = new ColumnExprFunctionContext(localContext); + localContext = new ColumnExpressionFunctionContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1870; @@ -8407,7 +8411,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1872; - this.columnExprList(); + this.columnExpressionList(); } } @@ -8434,7 +8438,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1882; - this.columnArgList(); + this.columnArgumentList(); } } @@ -8444,7 +8448,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 12: { - localContext = new ColumnExprLiteralContext(localContext); + localContext = new ColumnExpressionLiteralContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1887; @@ -8453,29 +8457,29 @@ export class ClickHouseParser extends antlr.Parser { break; case 13: { - localContext = new ColumnExprNegateContext(localContext); + localContext = new ColumnExpressionNegateContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1888; this.match(ClickHouseParser.DASH); this.state = 1889; - this.columnExpr(17); + this.columnExpression(17); } break; case 14: { - localContext = new ColumnExprNotContext(localContext); + localContext = new ColumnExpressionNotContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1890; this.match(ClickHouseParser.NOT); this.state = 1891; - this.columnExpr(12); + this.columnExpression(12); } break; case 15: { - localContext = new ColumnExprAsteriskContext(localContext); + localContext = new ColumnExpressionAsteriskContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1895; @@ -8496,46 +8500,46 @@ export class ClickHouseParser extends antlr.Parser { break; case 16: { - localContext = new ColumnExprSubqueryContext(localContext); + localContext = new ColumnExpressionSubqueryContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1898; this.match(ClickHouseParser.LPAREN); this.state = 1899; - this.selectUnionStmt(); + this.selectUnionStatement(); this.state = 1900; this.match(ClickHouseParser.RPAREN); } break; case 17: { - localContext = new ColumnExprParensContext(localContext); + localContext = new ColumnExpressionParensContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1902; this.match(ClickHouseParser.LPAREN); this.state = 1903; - this.columnExpr(0); + this.columnExpression(0); this.state = 1904; this.match(ClickHouseParser.RPAREN); } break; case 18: { - localContext = new ColumnExprTupleContext(localContext); + localContext = new ColumnExpressionTupleContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1906; this.match(ClickHouseParser.LPAREN); this.state = 1907; - this.columnExprList(); + this.columnExpressionList(); this.state = 1908; this.match(ClickHouseParser.RPAREN); } break; case 19: { - localContext = new ColumnExprArrayContext(localContext); + localContext = new ColumnExpressionArrayContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1910; @@ -8546,7 +8550,7 @@ export class ClickHouseParser extends antlr.Parser { if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967292) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4290772991) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 2147483647) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4294967215) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 4294950911) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 1158024191) !== 0)) { { this.state = 1911; - this.columnExprList(); + this.columnExpressionList(); } } @@ -8556,7 +8560,7 @@ export class ClickHouseParser extends antlr.Parser { break; case 20: { - localContext = new ColumnExprIdentifierContext(localContext); + localContext = new ColumnExpressionIdentifierContext(localContext); this.context = localContext; previousContext = localContext; this.state = 1915; @@ -8580,8 +8584,8 @@ export class ClickHouseParser extends antlr.Parser { switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - localContext = new ColumnExprPrecedence1Context(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionPrecedence1Context(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1918; if (!(this.precpred(this.context, 16))) { throw this.createFailedPredicateException("this.precpred(this.context, 16)"); @@ -8596,13 +8600,13 @@ export class ClickHouseParser extends antlr.Parser { this.consume(); } this.state = 1920; - this.columnExpr(17); + this.columnExpression(17); } break; case 2: { - localContext = new ColumnExprPrecedence2Context(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionPrecedence2Context(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1921; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); @@ -8617,13 +8621,13 @@ export class ClickHouseParser extends antlr.Parser { this.consume(); } this.state = 1923; - this.columnExpr(16); + this.columnExpression(16); } break; case 3: { - localContext = new ColumnExprPrecedence3Context(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionPrecedence3Context(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1924; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); @@ -8724,13 +8728,13 @@ export class ClickHouseParser extends antlr.Parser { break; } this.state = 1945; - this.columnExpr(15); + this.columnExpression(15); } break; case 4: { - localContext = new ColumnExprAndContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionAndContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1946; if (!(this.precpred(this.context, 11))) { throw this.createFailedPredicateException("this.precpred(this.context, 11)"); @@ -8738,13 +8742,13 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1947; this.match(ClickHouseParser.AND); this.state = 1948; - this.columnExpr(12); + this.columnExpression(12); } break; case 5: { - localContext = new ColumnExprOrContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionOrContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1949; if (!(this.precpred(this.context, 10))) { throw this.createFailedPredicateException("this.precpred(this.context, 10)"); @@ -8752,13 +8756,13 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1950; this.match(ClickHouseParser.OR); this.state = 1951; - this.columnExpr(11); + this.columnExpression(11); } break; case 6: { - localContext = new ColumnExprBetweenContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionBetweenContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1952; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); @@ -8776,17 +8780,17 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1956; this.match(ClickHouseParser.BETWEEN); this.state = 1957; - this.columnExpr(0); + this.columnExpression(0); this.state = 1958; this.match(ClickHouseParser.AND); this.state = 1959; - this.columnExpr(10); + this.columnExpression(10); } break; case 7: { - localContext = new ColumnExprTernaryOpContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionTernaryOpContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1961; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); @@ -8794,17 +8798,17 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1962; this.match(ClickHouseParser.QUESTIONMARK); this.state = 1963; - this.columnExpr(0); + this.columnExpression(0); this.state = 1964; this.match(ClickHouseParser.COLON); this.state = 1965; - this.columnExpr(8); + this.columnExpression(8); } break; case 8: { - localContext = new ColumnExprArrayAccessContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionArrayAccessContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1967; if (!(this.precpred(this.context, 19))) { throw this.createFailedPredicateException("this.precpred(this.context, 19)"); @@ -8812,15 +8816,15 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1968; this.match(ClickHouseParser.LBRACKET); this.state = 1969; - this.columnExpr(0); + this.columnExpression(0); this.state = 1970; this.match(ClickHouseParser.RBRACKET); } break; case 9: { - localContext = new ColumnExprTupleAccessContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionTupleAccessContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1972; if (!(this.precpred(this.context, 18))) { throw this.createFailedPredicateException("this.precpred(this.context, 18)"); @@ -8833,8 +8837,8 @@ export class ClickHouseParser extends antlr.Parser { break; case 10: { - localContext = new ColumnExprIsNullContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionIsNullContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1975; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); @@ -8857,8 +8861,8 @@ export class ClickHouseParser extends antlr.Parser { break; case 11: { - localContext = new ColumnExprAliasContext(new ColumnExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpr); + localContext = new ColumnExpressionAliasContext(new ColumnExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_columnExpression); this.state = 1981; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); @@ -8912,15 +8916,15 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnArgList(): ColumnArgListContext { - let localContext = new ColumnArgListContext(this.context, this.state); - this.enterRule(localContext, 216, ClickHouseParser.RULE_columnArgList); + public columnArgumentList(): ColumnArgumentListContext { + let localContext = new ColumnArgumentListContext(this.context, this.state); + this.enterRule(localContext, 216, ClickHouseParser.RULE_columnArgumentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 1992; - this.columnArgExpr(); + this.columnArgumentExpression(); this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -8930,7 +8934,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 1993; this.match(ClickHouseParser.COMMA); this.state = 1994; - this.columnArgExpr(); + this.columnArgumentExpression(); } } this.state = 1999; @@ -8953,9 +8957,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnArgExpr(): ColumnArgExprContext { - let localContext = new ColumnArgExprContext(this.context, this.state); - this.enterRule(localContext, 218, ClickHouseParser.RULE_columnArgExpr); + public columnArgumentExpression(): ColumnArgumentExpressionContext { + let localContext = new ColumnArgumentExpressionContext(this.context, this.state); + this.enterRule(localContext, 218, ClickHouseParser.RULE_columnArgumentExpression); try { this.state = 2002; this.errorHandler.sync(this); @@ -8964,14 +8968,14 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 2000; - this.columnLambdaExpr(); + this.columnLambdaExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { this.state = 2001; - this.columnExpr(0); + this.columnExpression(0); } break; } @@ -8990,9 +8994,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public columnLambdaExpr(): ColumnLambdaExprContext { - let localContext = new ColumnLambdaExprContext(this.context, this.state); - this.enterRule(localContext, 220, ClickHouseParser.RULE_columnLambdaExpr); + public columnLambdaExpression(): ColumnLambdaExpressionContext { + let localContext = new ColumnLambdaExpressionContext(this.context, this.state); + this.enterRule(localContext, 220, ClickHouseParser.RULE_columnLambdaExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -9240,7 +9244,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 2025; this.match(ClickHouseParser.ARROW); this.state = 2026; - this.columnExpr(0); + this.columnExpression(0); } } catch (re) { @@ -9306,19 +9310,19 @@ export class ClickHouseParser extends antlr.Parser { return localContext; } - public tableExpr(): TableExprContext; - public tableExpr(_p: number): TableExprContext; - public tableExpr(_p?: number): TableExprContext { + public tableExpression(): TableExpressionContext; + public tableExpression(_p: number): TableExpressionContext; + public tableExpression(_p?: number): TableExpressionContext { if (_p === undefined) { _p = 0; } let parentContext = this.context; let parentState = this.state; - let localContext = new TableExprContext(this.context, parentState); + let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; let _startState = 224; - this.enterRecursionRule(localContext, 224, ClickHouseParser.RULE_tableExpr, _p); + this.enterRecursionRule(localContext, 224, ClickHouseParser.RULE_tableExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9328,7 +9332,7 @@ export class ClickHouseParser extends antlr.Parser { switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - localContext = new TableExprIdentifierContext(localContext); + localContext = new TableExpressionIdentifierContext(localContext); this.context = localContext; previousContext = localContext; @@ -9338,22 +9342,22 @@ export class ClickHouseParser extends antlr.Parser { break; case 2: { - localContext = new TableExprFunctionContext(localContext); + localContext = new TableExpressionFunctionContext(localContext); this.context = localContext; previousContext = localContext; this.state = 2040; - this.tableFunctionExpr(); + this.tableFunctionExpression(); } break; case 3: { - localContext = new TableExprSubqueryContext(localContext); + localContext = new TableExpressionSubqueryContext(localContext); this.context = localContext; previousContext = localContext; this.state = 2041; this.match(ClickHouseParser.LPAREN); this.state = 2042; - this.selectUnionStmt(); + this.selectUnionStatement(); this.state = 2043; this.match(ClickHouseParser.RPAREN); } @@ -9371,8 +9375,8 @@ export class ClickHouseParser extends antlr.Parser { previousContext = localContext; { { - localContext = new TableExprAliasContext(new TableExprContext(parentContext, parentState)); - this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_tableExpr); + localContext = new TableExpressionAliasContext(new TableExpressionContext(parentContext, parentState)); + this.pushNewRecursionContext(localContext, _startState, ClickHouseParser.RULE_tableExpression); this.state = 2047; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); @@ -9424,9 +9428,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableFunctionExpr(): TableFunctionExprContext { - let localContext = new TableFunctionExprContext(this.context, this.state); - this.enterRule(localContext, 226, ClickHouseParser.RULE_tableFunctionExpr); + public tableFunctionExpression(): TableFunctionExpressionContext { + let localContext = new TableFunctionExpressionContext(this.context, this.state); + this.enterRule(localContext, 226, ClickHouseParser.RULE_tableFunctionExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -9507,7 +9511,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 2072; - this.tableArgExpr(); + this.tableArgExpression(); this.state = 2077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -9517,7 +9521,7 @@ export class ClickHouseParser extends antlr.Parser { this.state = 2073; this.match(ClickHouseParser.COMMA); this.state = 2074; - this.tableArgExpr(); + this.tableArgExpression(); } } this.state = 2079; @@ -9540,9 +9544,9 @@ export class ClickHouseParser extends antlr.Parser { } return localContext; } - public tableArgExpr(): TableArgExprContext { - let localContext = new TableArgExprContext(this.context, this.state); - this.enterRule(localContext, 232, ClickHouseParser.RULE_tableArgExpr); + public tableArgExpression(): TableArgExpressionContext { + let localContext = new TableArgExpressionContext(this.context, this.state); + this.enterRule(localContext, 232, ClickHouseParser.RULE_tableArgExpression); try { this.state = 2083; this.errorHandler.sync(this); @@ -9558,7 +9562,7 @@ export class ClickHouseParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { this.state = 2081; - this.tableFunctionExpr(); + this.tableFunctionExpression(); } break; case 3: @@ -10442,21 +10446,21 @@ export class ClickHouseParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { case 24: - return this.dictionaryAttrDfnt_sempred(localContext as DictionaryAttrDfntContext, predIndex); + return this.dictionaryAttributeDefinition_sempred(localContext as DictionaryAttributeDefinitionContext, predIndex); case 25: return this.dictionaryEngineClause_sempred(localContext as DictionaryEngineClauseContext, predIndex); case 38: return this.engineClause_sempred(localContext as EngineClauseContext, predIndex); case 81: - return this.joinExpr_sempred(localContext as JoinExprContext, predIndex); + return this.joinExpression_sempred(localContext as JoinExpressionContext, predIndex); case 107: - return this.columnExpr_sempred(localContext as ColumnExprContext, predIndex); + return this.columnExpression_sempred(localContext as ColumnExpressionContext, predIndex); case 112: - return this.tableExpr_sempred(localContext as TableExprContext, predIndex); + return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); } return true; } - private dictionaryAttrDfnt_sempred(localContext: DictionaryAttrDfntContext | null, predIndex: number): boolean { + private dictionaryAttributeDefinition_sempred(localContext: DictionaryAttributeDefinitionContext | null, predIndex: number): boolean { switch (predIndex) { case 0: return !localContext.attrs.has("default"); @@ -10503,7 +10507,7 @@ export class ClickHouseParser extends antlr.Parser { } return true; } - private joinExpr_sempred(localContext: JoinExprContext | null, predIndex: number): boolean { + private joinExpression_sempred(localContext: JoinExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 16: return this.precpred(this.context, 3); @@ -10512,7 +10516,7 @@ export class ClickHouseParser extends antlr.Parser { } return true; } - private columnExpr_sempred(localContext: ColumnExprContext | null, predIndex: number): boolean { + private columnExpression_sempred(localContext: ColumnExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 18: return this.precpred(this.context, 16); @@ -10539,7 +10543,7 @@ export class ClickHouseParser extends antlr.Parser { } return true; } - private tableExpr_sempred(localContext: TableExprContext | null, predIndex: number): boolean { + private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 29: return this.precpred(this.context, 1); @@ -11544,8 +11548,8 @@ export class StatementContext extends antlr.ParserRuleContext { public SEMICOLON(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.SEMICOLON, 0); } - public insertStmt(): InsertStmtContext | null { - return this.getRuleContext(0, InsertStmtContext); + public insertStatement(): InsertStatementContext | null { + return this.getRuleContext(0, InsertStatementContext); } public override get ruleIndex(): number { return ClickHouseParser.RULE_statement; @@ -11564,68 +11568,68 @@ export class NotInsertStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alterStmt(): AlterStmtContext | null { - return this.getRuleContext(0, AlterStmtContext); + public alterStatement(): AlterStatementContext | null { + return this.getRuleContext(0, AlterStatementContext); } - public attachStmt(): AttachStmtContext | null { - return this.getRuleContext(0, AttachStmtContext); + public attachStatement(): AttachStatementContext | null { + return this.getRuleContext(0, AttachStatementContext); } - public checkStmt(): CheckStmtContext | null { - return this.getRuleContext(0, CheckStmtContext); + public checkStatement(): CheckStatementContext | null { + return this.getRuleContext(0, CheckStatementContext); } - public createStmt(): CreateStmtContext | null { - return this.getRuleContext(0, CreateStmtContext); + public createStatement(): CreateStatementContext | null { + return this.getRuleContext(0, CreateStatementContext); } - public describeStmt(): DescribeStmtContext | null { - return this.getRuleContext(0, DescribeStmtContext); + public describeStatement(): DescribeStatementContext | null { + return this.getRuleContext(0, DescribeStatementContext); } public deleteStatement(): DeleteStatementContext | null { return this.getRuleContext(0, DeleteStatementContext); } - public dropStmt(): DropStmtContext | null { - return this.getRuleContext(0, DropStmtContext); + public dropStatement(): DropStatementContext | null { + return this.getRuleContext(0, DropStatementContext); } - public existsStmt(): ExistsStmtContext | null { - return this.getRuleContext(0, ExistsStmtContext); + public existsStatement(): ExistsStatementContext | null { + return this.getRuleContext(0, ExistsStatementContext); } - public explainStmt(): ExplainStmtContext | null { - return this.getRuleContext(0, ExplainStmtContext); + public explainStatement(): ExplainStatementContext | null { + return this.getRuleContext(0, ExplainStatementContext); } - public killStmt(): KillStmtContext | null { - return this.getRuleContext(0, KillStmtContext); + public killStatement(): KillStatementContext | null { + return this.getRuleContext(0, KillStatementContext); } - public optimizeStmt(): OptimizeStmtContext | null { - return this.getRuleContext(0, OptimizeStmtContext); + public optimizeStatement(): OptimizeStatementContext | null { + return this.getRuleContext(0, OptimizeStatementContext); } - public renameStmt(): RenameStmtContext | null { - return this.getRuleContext(0, RenameStmtContext); + public renameStatement(): RenameStatementContext | null { + return this.getRuleContext(0, RenameStatementContext); } - public selectUnionStmt(): SelectUnionStmtContext | null { - return this.getRuleContext(0, SelectUnionStmtContext); + public selectUnionStatement(): SelectUnionStatementContext | null { + return this.getRuleContext(0, SelectUnionStatementContext); } - public setStmt(): SetStmtContext | null { - return this.getRuleContext(0, SetStmtContext); + public setStatement(): SetStatementContext | null { + return this.getRuleContext(0, SetStatementContext); } - public showStmt(): ShowStmtContext | null { - return this.getRuleContext(0, ShowStmtContext); + public showStatement(): ShowStatementContext | null { + return this.getRuleContext(0, ShowStatementContext); } - public systemStmt(): SystemStmtContext | null { - return this.getRuleContext(0, SystemStmtContext); + public systemStatement(): SystemStatementContext | null { + return this.getRuleContext(0, SystemStatementContext); } - public truncateStmt(): TruncateStmtContext | null { - return this.getRuleContext(0, TruncateStmtContext); + public truncateStatement(): TruncateStatementContext | null { + return this.getRuleContext(0, TruncateStatementContext); } - public useStmt(): UseStmtContext | null { - return this.getRuleContext(0, UseStmtContext); + public useStatement(): UseStatementContext | null { + return this.getRuleContext(0, UseStatementContext); } - public watchStmt(): WatchStmtContext | null { - return this.getRuleContext(0, WatchStmtContext); + public watchStatement(): WatchStatementContext | null { + return this.getRuleContext(0, WatchStatementContext); } - public selectStmt(): SelectStmtContext | null { - return this.getRuleContext(0, SelectStmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public ctes(): CtesContext | null { - return this.getRuleContext(0, CtesContext); + public commonTableExpressionStatement(): CommonTableExpressionStatementContext | null { + return this.getRuleContext(0, CommonTableExpressionStatementContext); } public override get ruleIndex(): number { return ClickHouseParser.RULE_notInsertStatement; @@ -11640,7 +11644,7 @@ export class NotInsertStatementContext extends antlr.ParserRuleContext { } -export class CtesContext extends antlr.ParserRuleContext { +export class CommonTableExpressionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -11666,11 +11670,11 @@ export class CtesContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_ctes; + return ClickHouseParser.RULE_commonTableExpressionStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitCtes) { - return visitor.visitCtes(this); + if (visitor.visitCommonTableExpressionStatement) { + return visitor.visitCommonTableExpressionStatement(this); } else { return visitor.visitChildren(this); } @@ -11755,19 +11759,19 @@ export class ColumnAliasesContext extends antlr.ParserRuleContext { } -export class AlterStmtContext extends antlr.ParserRuleContext { +export class AlterStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_alterStmt; + return ClickHouseParser.RULE_alterStatement; } - public override copyFrom(ctx: AlterStmtContext): void { + public override copyFrom(ctx: AlterStatementContext): void { super.copyFrom(ctx); } } -export class AlterTableStmtContext extends AlterStmtContext { - public constructor(ctx: AlterStmtContext) { +export class AlterTableStatementContext extends AlterStatementContext { + public constructor(ctx: AlterStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -11802,8 +11806,8 @@ export class AlterTableStmtContext extends AlterStmtContext { } } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitAlterTableStmt) { - return visitor.visitAlterTableStmt(this); + if (visitor.visitAlterTableStatement) { + return visitor.visitAlterTableStatement(this); } else { return visitor.visitChildren(this); } @@ -11861,8 +11865,8 @@ export class AlterTableClauseModifyOrderByContext extends AlterTableClauseContex public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { if (visitor.visitAlterTableClauseModifyOrderBy) { @@ -11880,8 +11884,8 @@ export class AlterTableClauseUpdateContext extends AlterTableClauseContext { public UPDATE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.UPDATE, 0)!; } - public assignmentExprList(): AssignmentExprListContext { - return this.getRuleContext(0, AssignmentExprListContext)!; + public assignmentExpressionList(): AssignmentExpressionListContext { + return this.getRuleContext(0, AssignmentExpressionListContext)!; } public whereClause(): WhereClauseContext { return this.getRuleContext(0, WhereClauseContext)!; @@ -11973,8 +11977,8 @@ export class AlterTableClauseDeleteContext extends AlterTableClauseContext { public WHERE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.WHERE, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { if (visitor.visitAlterTableClauseDelete) { @@ -12073,8 +12077,8 @@ export class AlterTableClauseAddIndexContext extends AlterTableClauseContext { public INDEX(): antlr.TerminalNode { return this.getToken(ClickHouseParser.INDEX, 0)!; } - public tableIndexDfnt(): TableIndexDfntContext { - return this.getRuleContext(0, TableIndexDfntContext)!; + public tableIndexDefinition(): TableIndexDefinitionContext { + return this.getRuleContext(0, TableIndexDefinitionContext)!; } public IF(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.IF, 0); @@ -12324,8 +12328,8 @@ export class AlterTableClauseModifyContext extends AlterTableClauseContext { public COLUMN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.COLUMN, 0)!; } - public tableColumnDfnt(): TableColumnDfntContext { - return this.getRuleContext(0, TableColumnDfntContext)!; + public tableColumnDefinition(): TableColumnDefinitionContext { + return this.getRuleContext(0, TableColumnDefinitionContext)!; } public IF(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.IF, 0); @@ -12408,8 +12412,8 @@ export class AlterTableClauseModifyCodecContext extends AlterTableClauseContext public columnIdentifier(): ColumnIdentifierContext { return this.getRuleContext(0, ColumnIdentifierContext)!; } - public codecExpr(): CodecExprContext { - return this.getRuleContext(0, CodecExprContext)!; + public codecExpression(): CodecExpressionContext { + return this.getRuleContext(0, CodecExpressionContext)!; } public IF(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.IF, 0); @@ -12570,8 +12574,8 @@ export class AlterTableClauseAddProjectionContext extends AlterTableClauseContex public PROJECTION(): antlr.TerminalNode { return this.getToken(ClickHouseParser.PROJECTION, 0)!; } - public tableProjectionDfnt(): TableProjectionDfntContext { - return this.getRuleContext(0, TableProjectionDfntContext)!; + public tableProjectionDefinition(): TableProjectionDefinitionContext { + return this.getRuleContext(0, TableProjectionDefinitionContext)!; } public IF(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.IF, 0); @@ -12607,8 +12611,8 @@ export class AlterTableClauseAddColumnContext extends AlterTableClauseContext { public COLUMN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.COLUMN, 0)!; } - public tableColumnDfnt(): TableColumnDfntContext { - return this.getRuleContext(0, TableColumnDfntContext)!; + public tableColumnDefinition(): TableColumnDefinitionContext { + return this.getRuleContext(0, TableColumnDefinitionContext)!; } public IF(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.IF, 0); @@ -12635,18 +12639,18 @@ export class AlterTableClauseAddColumnContext extends AlterTableClauseContext { } -export class AssignmentExprListContext extends antlr.ParserRuleContext { +export class AssignmentExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public assignmentExpr(): AssignmentExprContext[]; - public assignmentExpr(i: number): AssignmentExprContext | null; - public assignmentExpr(i?: number): AssignmentExprContext[] | AssignmentExprContext | null { + public assignmentExpression(): AssignmentExpressionContext[]; + public assignmentExpression(i: number): AssignmentExpressionContext | null; + public assignmentExpression(i?: number): AssignmentExpressionContext[] | AssignmentExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(AssignmentExprContext); + return this.getRuleContexts(AssignmentExpressionContext); } - return this.getRuleContext(i, AssignmentExprContext); + return this.getRuleContext(i, AssignmentExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -12658,11 +12662,11 @@ export class AssignmentExprListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_assignmentExprList; + return ClickHouseParser.RULE_assignmentExpressionList; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitAssignmentExprList) { - return visitor.visitAssignmentExprList(this); + if (visitor.visitAssignmentExpressionList) { + return visitor.visitAssignmentExpressionList(this); } else { return visitor.visitChildren(this); } @@ -12670,7 +12674,7 @@ export class AssignmentExprListContext extends antlr.ParserRuleContext { } -export class AssignmentExprContext extends antlr.ParserRuleContext { +export class AssignmentExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -12680,15 +12684,15 @@ export class AssignmentExprContext extends antlr.ParserRuleContext { public EQ_SINGLE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EQ_SINGLE, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_assignmentExpr; + return ClickHouseParser.RULE_assignmentExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitAssignmentExpr) { - return visitor.visitAssignmentExpr(this); + if (visitor.visitAssignmentExpression) { + return visitor.visitAssignmentExpression(this); } else { return visitor.visitChildren(this); } @@ -12738,8 +12742,8 @@ export class PartitionClauseContext extends antlr.ParserRuleContext { public PARTITION(): antlr.TerminalNode { return this.getToken(ClickHouseParser.PARTITION, 0)!; } - public columnExpr(): ColumnExprContext | null { - return this.getRuleContext(0, ColumnExprContext); + public columnExpression(): ColumnExpressionContext | null { + return this.getRuleContext(0, ColumnExpressionContext); } public ID(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.ID, 0); @@ -12760,19 +12764,19 @@ export class PartitionClauseContext extends antlr.ParserRuleContext { } -export class AttachStmtContext extends antlr.ParserRuleContext { +export class AttachStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_attachStmt; + return ClickHouseParser.RULE_attachStatement; } - public override copyFrom(ctx: AttachStmtContext): void { + public override copyFrom(ctx: AttachStatementContext): void { super.copyFrom(ctx); } } -export class AttachDictionaryStmtContext extends AttachStmtContext { - public constructor(ctx: AttachStmtContext) { +export class AttachDictionaryStatementContext extends AttachStatementContext { + public constructor(ctx: AttachStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -12789,8 +12793,8 @@ export class AttachDictionaryStmtContext extends AttachStmtContext { return this.getRuleContext(0, ClusterClauseContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitAttachDictionaryStmt) { - return visitor.visitAttachDictionaryStmt(this); + if (visitor.visitAttachDictionaryStatement) { + return visitor.visitAttachDictionaryStatement(this); } else { return visitor.visitChildren(this); } @@ -12798,7 +12802,7 @@ export class AttachDictionaryStmtContext extends AttachStmtContext { } -export class CheckStmtContext extends antlr.ParserRuleContext { +export class CheckStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -12815,11 +12819,11 @@ export class CheckStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, PartitionClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_checkStmt; + return ClickHouseParser.RULE_checkStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitCheckStmt) { - return visitor.visitCheckStmt(this); + if (visitor.visitCheckStatement) { + return visitor.visitCheckStatement(this); } else { return visitor.visitChildren(this); } @@ -12931,8 +12935,8 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public databaseIdentifier(): DatabaseIdentifierContext { return this.getRuleContext(0, DatabaseIdentifierContext)!; } - public engineExpr(): EngineExprContext { - return this.getRuleContext(0, EngineExprContext)!; + public engineExpression(): EngineExpressionContext { + return this.getRuleContext(0, EngineExpressionContext)!; } public ATTACH(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.ATTACH, 0); @@ -13204,7 +13208,7 @@ export class CreateViewStatementContext extends antlr.ParserRuleContext { } -export class CreateStmtContext extends antlr.ParserRuleContext { +export class CreateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -13227,11 +13231,11 @@ export class CreateStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, CreateViewStatementContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_createStmt; + return ClickHouseParser.RULE_createStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitCreateStmt) { - return visitor.visitCreateStmt(this); + if (visitor.visitCreateStatement) { + return visitor.visitCreateStatement(this); } else { return visitor.visitChildren(this); } @@ -13246,14 +13250,14 @@ export class DictionarySchemaClauseContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public dictionaryAttrDfnt(): DictionaryAttrDfntContext[]; - public dictionaryAttrDfnt(i: number): DictionaryAttrDfntContext | null; - public dictionaryAttrDfnt(i?: number): DictionaryAttrDfntContext[] | DictionaryAttrDfntContext | null { + public dictionaryAttributeDefinition(): DictionaryAttributeDefinitionContext[]; + public dictionaryAttributeDefinition(i: number): DictionaryAttributeDefinitionContext | null; + public dictionaryAttributeDefinition(i?: number): DictionaryAttributeDefinitionContext[] | DictionaryAttributeDefinitionContext | null { if (i === undefined) { - return this.getRuleContexts(DictionaryAttrDfntContext); + return this.getRuleContexts(DictionaryAttributeDefinitionContext); } - return this.getRuleContext(i, DictionaryAttrDfntContext); + return this.getRuleContext(i, DictionaryAttributeDefinitionContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -13280,7 +13284,7 @@ export class DictionarySchemaClauseContext extends antlr.ParserRuleContext { } -export class DictionaryAttrDfntContext extends antlr.ParserRuleContext { +export class DictionaryAttributeDefinitionContext extends antlr.ParserRuleContext { public attrs: Set = new Set(); public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -13288,8 +13292,8 @@ export class DictionaryAttrDfntContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext { return this.getRuleContext(0, IdentifierContext)!; } - public columnTypeExpr(): ColumnTypeExprContext { - return this.getRuleContext(0, ColumnTypeExprContext)!; + public columnTypeExpression(): ColumnTypeExpressionContext { + return this.getRuleContext(0, ColumnTypeExpressionContext)!; } public DEFAULT(): antlr.TerminalNode[]; public DEFAULT(i: number): antlr.TerminalNode | null; @@ -13318,14 +13322,14 @@ export class DictionaryAttrDfntContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.EXPRESSION, i); } } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); + return this.getRuleContext(i, ColumnExpressionContext); } public HIERARCHICAL(): antlr.TerminalNode[]; public HIERARCHICAL(i: number): antlr.TerminalNode | null; @@ -13355,11 +13359,11 @@ export class DictionaryAttrDfntContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_dictionaryAttrDfnt; + return ClickHouseParser.RULE_dictionaryAttributeDefinition; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitDictionaryAttrDfnt) { - return visitor.visitDictionaryAttrDfnt(this); + if (visitor.visitDictionaryAttributeDefinition) { + return visitor.visitDictionaryAttributeDefinition(this); } else { return visitor.visitChildren(this); } @@ -13443,8 +13447,8 @@ export class DictionaryPrimaryKeyClauseContext extends antlr.ParserRuleContext { public KEY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.KEY, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_dictionaryPrimaryKeyClause; @@ -13459,7 +13463,7 @@ export class DictionaryPrimaryKeyClauseContext extends antlr.ParserRuleContext { } -export class DictionaryArgExprContext extends antlr.ParserRuleContext { +export class DictionaryArgumentExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -13482,11 +13486,11 @@ export class DictionaryArgExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.RPAREN, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_dictionaryArgExpr; + return ClickHouseParser.RULE_dictionaryArgumentExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitDictionaryArgExpr) { - return visitor.visitDictionaryArgExpr(this); + if (visitor.visitDictionaryArgumentExpression) { + return visitor.visitDictionaryArgumentExpression(this); } else { return visitor.visitChildren(this); } @@ -13522,14 +13526,14 @@ export class SourceClauseContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.RPAREN, i); } } - public dictionaryArgExpr(): DictionaryArgExprContext[]; - public dictionaryArgExpr(i: number): DictionaryArgExprContext | null; - public dictionaryArgExpr(i?: number): DictionaryArgExprContext[] | DictionaryArgExprContext | null { + public dictionaryArgumentExpression(): DictionaryArgumentExpressionContext[]; + public dictionaryArgumentExpression(i: number): DictionaryArgumentExpressionContext | null; + public dictionaryArgumentExpression(i?: number): DictionaryArgumentExpressionContext[] | DictionaryArgumentExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(DictionaryArgExprContext); + return this.getRuleContexts(DictionaryArgumentExpressionContext); } - return this.getRuleContext(i, DictionaryArgExprContext); + return this.getRuleContext(i, DictionaryArgumentExpressionContext); } public override get ruleIndex(): number { return ClickHouseParser.RULE_sourceClause; @@ -13613,14 +13617,14 @@ export class LayoutClauseContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.RPAREN, i); } } - public dictionaryArgExpr(): DictionaryArgExprContext[]; - public dictionaryArgExpr(i: number): DictionaryArgExprContext | null; - public dictionaryArgExpr(i?: number): DictionaryArgExprContext[] | DictionaryArgExprContext | null { + public dictionaryArgumentExpression(): DictionaryArgumentExpressionContext[]; + public dictionaryArgumentExpression(i: number): DictionaryArgumentExpressionContext | null; + public dictionaryArgumentExpression(i?: number): DictionaryArgumentExpressionContext[] | DictionaryArgumentExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(DictionaryArgExprContext); + return this.getRuleContexts(DictionaryArgumentExpressionContext); } - return this.getRuleContext(i, DictionaryArgExprContext); + return this.getRuleContext(i, DictionaryArgumentExpressionContext); } public override get ruleIndex(): number { return ClickHouseParser.RULE_layoutClause; @@ -13686,8 +13690,8 @@ export class DictionarySettingsClauseContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public settingExprList(): SettingExprListContext { - return this.getRuleContext(0, SettingExprListContext)!; + public settingExpressionList(): SettingExpressionListContext { + return this.getRuleContext(0, SettingExpressionListContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -13787,8 +13791,8 @@ export class SubqueryClauseContext extends antlr.ParserRuleContext { public AS(): antlr.TerminalNode { return this.getToken(ClickHouseParser.AS, 0)!; } - public selectUnionStmt(): SelectUnionStmtContext { - return this.getRuleContext(0, SelectUnionStmtContext)!; + public selectUnionStatement(): SelectUnionStatementContext { + return this.getRuleContext(0, SelectUnionStatementContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_subqueryClause; @@ -13841,8 +13845,8 @@ export class SchemaAsFunctionClauseContext extends TableSchemaClauseContext { public AS(): antlr.TerminalNode { return this.getToken(ClickHouseParser.AS, 0)!; } - public tableFunctionExpr(): TableFunctionExprContext { - return this.getRuleContext(0, TableFunctionExprContext)!; + public tableFunctionExpression(): TableFunctionExpressionContext { + return this.getRuleContext(0, TableFunctionExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { if (visitor.visitSchemaAsFunctionClause) { @@ -13860,14 +13864,14 @@ export class SchemaDescriptionClauseContext extends TableSchemaClauseContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public tableElementExpr(): TableElementExprContext[]; - public tableElementExpr(i: number): TableElementExprContext | null; - public tableElementExpr(i?: number): TableElementExprContext[] | TableElementExprContext | null { + public tableElementExpression(): TableElementExpressionContext[]; + public tableElementExpression(i: number): TableElementExpressionContext | null; + public tableElementExpression(i?: number): TableElementExpressionContext[] | TableElementExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(TableElementExprContext); + return this.getRuleContexts(TableElementExpressionContext); } - return this.getRuleContext(i, TableElementExprContext); + return this.getRuleContext(i, TableElementExpressionContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -13896,8 +13900,8 @@ export class EngineClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public engineExpr(): EngineExprContext { - return this.getRuleContext(0, EngineExprContext)!; + public engineExpression(): EngineExpressionContext { + return this.getRuleContext(0, EngineExpressionContext)!; } public orderByClause(): OrderByClauseContext[]; public orderByClause(i: number): OrderByClauseContext | null; @@ -13976,8 +13980,8 @@ export class PartitionByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_partitionByClause; @@ -14002,8 +14006,8 @@ export class PrimaryKeyClauseContext extends antlr.ParserRuleContext { public KEY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.KEY, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_primaryKeyClause; @@ -14028,8 +14032,8 @@ export class SampleByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_sampleByClause; @@ -14051,14 +14055,14 @@ export class TtlClauseContext extends antlr.ParserRuleContext { public TTL(): antlr.TerminalNode { return this.getToken(ClickHouseParser.TTL, 0)!; } - public ttlExpr(): TtlExprContext[]; - public ttlExpr(i: number): TtlExprContext | null; - public ttlExpr(i?: number): TtlExprContext[] | TtlExprContext | null { + public ttlExpression(): TtlExpressionContext[]; + public ttlExpression(i: number): TtlExpressionContext | null; + public ttlExpression(i?: number): TtlExpressionContext[] | TtlExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(TtlExprContext); + return this.getRuleContexts(TtlExpressionContext); } - return this.getRuleContext(i, TtlExprContext); + return this.getRuleContext(i, TtlExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -14082,7 +14086,7 @@ export class TtlClauseContext extends antlr.ParserRuleContext { } -export class EngineExprContext extends antlr.ParserRuleContext { +export class EngineExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14101,15 +14105,15 @@ export class EngineExprContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.RPAREN, 0); } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_engineExpr; + return ClickHouseParser.RULE_engineExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitEngineExpr) { - return visitor.visitEngineExpr(this); + if (visitor.visitEngineExpression) { + return visitor.visitEngineExpression(this); } else { return visitor.visitChildren(this); } @@ -14117,38 +14121,35 @@ export class EngineExprContext extends antlr.ParserRuleContext { } -export class TableElementExprContext extends antlr.ParserRuleContext { +export class TableElementExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableElementExpr; + return ClickHouseParser.RULE_tableElementExpression; } - public override copyFrom(ctx: TableElementExprContext): void { + public override copyFrom(ctx: TableElementExpressionContext): void { super.copyFrom(ctx); } } -export class TableElementExprProjectionContext extends TableElementExprContext { - public constructor(ctx: TableElementExprContext) { +export class TableElementExpressionColumnContext extends TableElementExpressionContext { + public constructor(ctx: TableElementExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public PROJECTION(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.PROJECTION, 0)!; - } - public tableProjectionDfnt(): TableProjectionDfntContext { - return this.getRuleContext(0, TableProjectionDfntContext)!; + public tableColumnDefinition(): TableColumnDefinitionContext { + return this.getRuleContext(0, TableColumnDefinitionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableElementExprProjection) { - return visitor.visitTableElementExprProjection(this); + if (visitor.visitTableElementExpressionColumn) { + return visitor.visitTableElementExpressionColumn(this); } else { return visitor.visitChildren(this); } } } -export class TableElementExprConstraintContext extends TableElementExprContext { - public constructor(ctx: TableElementExprContext) { +export class TableElementExpressionConstraintContext extends TableElementExpressionContext { + public constructor(ctx: TableElementExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -14161,47 +14162,50 @@ export class TableElementExprConstraintContext extends TableElementExprContext { public CHECK(): antlr.TerminalNode { return this.getToken(ClickHouseParser.CHECK, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableElementExprConstraint) { - return visitor.visitTableElementExprConstraint(this); + if (visitor.visitTableElementExpressionConstraint) { + return visitor.visitTableElementExpressionConstraint(this); } else { return visitor.visitChildren(this); } } } -export class TableElementExprColumnContext extends TableElementExprContext { - public constructor(ctx: TableElementExprContext) { +export class TableElementExpressionIndexContext extends TableElementExpressionContext { + public constructor(ctx: TableElementExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public tableColumnDfnt(): TableColumnDfntContext { - return this.getRuleContext(0, TableColumnDfntContext)!; + public INDEX(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.INDEX, 0)!; + } + public tableIndexDefinition(): TableIndexDefinitionContext { + return this.getRuleContext(0, TableIndexDefinitionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableElementExprColumn) { - return visitor.visitTableElementExprColumn(this); + if (visitor.visitTableElementExpressionIndex) { + return visitor.visitTableElementExpressionIndex(this); } else { return visitor.visitChildren(this); } } } -export class TableElementExprIndexContext extends TableElementExprContext { - public constructor(ctx: TableElementExprContext) { +export class TableElementExpressionProjectionContext extends TableElementExpressionContext { + public constructor(ctx: TableElementExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public INDEX(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.INDEX, 0)!; + public PROJECTION(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.PROJECTION, 0)!; } - public tableIndexDfnt(): TableIndexDfntContext { - return this.getRuleContext(0, TableIndexDfntContext)!; + public tableProjectionDefinition(): TableProjectionDefinitionContext { + return this.getRuleContext(0, TableProjectionDefinitionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableElementExprIndex) { - return visitor.visitTableElementExprIndex(this); + if (visitor.visitTableElementExpressionProjection) { + return visitor.visitTableElementExpressionProjection(this); } else { return visitor.visitChildren(this); } @@ -14209,18 +14213,18 @@ export class TableElementExprIndexContext extends TableElementExprContext { } -export class TableColumnDfntContext extends antlr.ParserRuleContext { +export class TableColumnDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnIdentifier(): ColumnIdentifierContext { return this.getRuleContext(0, ColumnIdentifierContext)!; } - public columnTypeExpr(): ColumnTypeExprContext | null { - return this.getRuleContext(0, ColumnTypeExprContext); + public columnTypeExpression(): ColumnTypeExpressionContext | null { + return this.getRuleContext(0, ColumnTypeExpressionContext); } - public tableColumnPropertyExpr(): TableColumnPropertyExprContext | null { - return this.getRuleContext(0, TableColumnPropertyExprContext); + public tableColumnPropertyExpression(): TableColumnPropertyExpressionContext | null { + return this.getRuleContext(0, TableColumnPropertyExpressionContext); } public COMMENT(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.COMMENT, 0); @@ -14228,21 +14232,21 @@ export class TableColumnDfntContext extends antlr.ParserRuleContext { public STRING_LITERAL(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.STRING_LITERAL, 0); } - public codecExpr(): CodecExprContext | null { - return this.getRuleContext(0, CodecExprContext); + public codecExpression(): CodecExpressionContext | null { + return this.getRuleContext(0, CodecExpressionContext); } public TTL(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.TTL, 0); } - public columnExpr(): ColumnExprContext | null { - return this.getRuleContext(0, ColumnExprContext); + public columnExpression(): ColumnExpressionContext | null { + return this.getRuleContext(0, ColumnExpressionContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableColumnDfnt; + return ClickHouseParser.RULE_tableColumnDefinition; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableColumnDfnt) { - return visitor.visitTableColumnDfnt(this); + if (visitor.visitTableColumnDefinition) { + return visitor.visitTableColumnDefinition(this); } else { return visitor.visitChildren(this); } @@ -14250,12 +14254,12 @@ export class TableColumnDfntContext extends antlr.ParserRuleContext { } -export class TableColumnPropertyExprContext extends antlr.ParserRuleContext { +export class TableColumnPropertyExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.DEFAULT, 0); @@ -14267,11 +14271,11 @@ export class TableColumnPropertyExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.ALIAS, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableColumnPropertyExpr; + return ClickHouseParser.RULE_tableColumnPropertyExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableColumnPropertyExpr) { - return visitor.visitTableColumnPropertyExpr(this); + if (visitor.visitTableColumnPropertyExpression) { + return visitor.visitTableColumnPropertyExpression(this); } else { return visitor.visitChildren(this); } @@ -14279,21 +14283,21 @@ export class TableColumnPropertyExprContext extends antlr.ParserRuleContext { } -export class TableIndexDfntContext extends antlr.ParserRuleContext { +export class TableIndexDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnIdentifier(): ColumnIdentifierContext { return this.getRuleContext(0, ColumnIdentifierContext)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public TYPE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.TYPE, 0)!; } - public columnTypeExpr(): ColumnTypeExprContext { - return this.getRuleContext(0, ColumnTypeExprContext)!; + public columnTypeExpression(): ColumnTypeExpressionContext { + return this.getRuleContext(0, ColumnTypeExpressionContext)!; } public GRANULARITY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.GRANULARITY, 0)!; @@ -14302,11 +14306,11 @@ export class TableIndexDfntContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.DECIMAL_LITERAL, 0)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableIndexDfnt; + return ClickHouseParser.RULE_tableIndexDefinition; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableIndexDfnt) { - return visitor.visitTableIndexDfnt(this); + if (visitor.visitTableIndexDefinition) { + return visitor.visitTableIndexDefinition(this); } else { return visitor.visitChildren(this); } @@ -14314,22 +14318,22 @@ export class TableIndexDfntContext extends antlr.ParserRuleContext { } -export class TableProjectionDfntContext extends antlr.ParserRuleContext { +export class TableProjectionDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnIdentifier(): ColumnIdentifierContext { return this.getRuleContext(0, ColumnIdentifierContext)!; } - public projectionSelectStmt(): ProjectionSelectStmtContext { - return this.getRuleContext(0, ProjectionSelectStmtContext)!; + public projectionSelectStatement(): ProjectionSelectStatementContext { + return this.getRuleContext(0, ProjectionSelectStatementContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableProjectionDfnt; + return ClickHouseParser.RULE_tableProjectionDefinition; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableProjectionDfnt) { - return visitor.visitTableProjectionDfnt(this); + if (visitor.visitTableProjectionDefinition) { + return visitor.visitTableProjectionDefinition(this); } else { return visitor.visitChildren(this); } @@ -14337,7 +14341,7 @@ export class TableProjectionDfntContext extends antlr.ParserRuleContext { } -export class CodecExprContext extends antlr.ParserRuleContext { +export class CodecExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14347,14 +14351,14 @@ export class CodecExprContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public codecArgExpr(): CodecArgExprContext[]; - public codecArgExpr(i: number): CodecArgExprContext | null; - public codecArgExpr(i?: number): CodecArgExprContext[] | CodecArgExprContext | null { + public codecArgExpression(): CodecArgExpressionContext[]; + public codecArgExpression(i: number): CodecArgExpressionContext | null; + public codecArgExpression(i?: number): CodecArgExpressionContext[] | CodecArgExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(CodecArgExprContext); + return this.getRuleContexts(CodecArgExpressionContext); } - return this.getRuleContext(i, CodecArgExprContext); + return this.getRuleContext(i, CodecArgExpressionContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -14369,11 +14373,11 @@ export class CodecExprContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_codecExpr; + return ClickHouseParser.RULE_codecExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitCodecExpr) { - return visitor.visitCodecExpr(this); + if (visitor.visitCodecExpression) { + return visitor.visitCodecExpression(this); } else { return visitor.visitChildren(this); } @@ -14381,7 +14385,7 @@ export class CodecExprContext extends antlr.ParserRuleContext { } -export class CodecArgExprContext extends antlr.ParserRuleContext { +export class CodecArgExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14394,15 +14398,15 @@ export class CodecArgExprContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.RPAREN, 0); } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_codecArgExpr; + return ClickHouseParser.RULE_codecArgExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitCodecArgExpr) { - return visitor.visitCodecArgExpr(this); + if (visitor.visitCodecArgExpression) { + return visitor.visitCodecArgExpression(this); } else { return visitor.visitChildren(this); } @@ -14410,12 +14414,12 @@ export class CodecArgExprContext extends antlr.ParserRuleContext { } -export class TtlExprContext extends antlr.ParserRuleContext { +export class TtlExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public DELETE(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.DELETE, 0); @@ -14433,11 +14437,11 @@ export class TtlExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.VOLUME, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_ttlExpr; + return ClickHouseParser.RULE_ttlExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTtlExpr) { - return visitor.visitTtlExpr(this); + if (visitor.visitTtlExpression) { + return visitor.visitTtlExpression(this); } else { return visitor.visitChildren(this); } @@ -14445,12 +14449,12 @@ export class TtlExprContext extends antlr.ParserRuleContext { } -export class DescribeStmtContext extends antlr.ParserRuleContext { +export class DescribeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableExpr(): TableExprContext { - return this.getRuleContext(0, TableExprContext)!; + public tableExpression(): TableExpressionContext { + return this.getRuleContext(0, TableExpressionContext)!; } public DESCRIBE(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.DESCRIBE, 0); @@ -14462,11 +14466,11 @@ export class DescribeStmtContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.TABLE, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_describeStmt; + return ClickHouseParser.RULE_describeStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitDescribeStmt) { - return visitor.visitDescribeStmt(this); + if (visitor.visitDescribeStatement) { + return visitor.visitDescribeStatement(this); } else { return visitor.visitChildren(this); } @@ -14474,19 +14478,19 @@ export class DescribeStmtContext extends antlr.ParserRuleContext { } -export class DropStmtContext extends antlr.ParserRuleContext { +export class DropStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_dropStmt; + return ClickHouseParser.RULE_dropStatement; } - public override copyFrom(ctx: DropStmtContext): void { + public override copyFrom(ctx: DropStatementContext): void { super.copyFrom(ctx); } } -export class DropDatabaseStmtContext extends DropStmtContext { - public constructor(ctx: DropStmtContext) { +export class DropDatabaseStatementContext extends DropStatementContext { + public constructor(ctx: DropStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -14512,15 +14516,15 @@ export class DropDatabaseStmtContext extends DropStmtContext { return this.getRuleContext(0, ClusterClauseContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitDropDatabaseStmt) { - return visitor.visitDropDatabaseStmt(this); + if (visitor.visitDropDatabaseStatement) { + return visitor.visitDropDatabaseStatement(this); } else { return visitor.visitChildren(this); } } } -export class DropTableStmtContext extends DropStmtContext { - public constructor(ctx: DropStmtContext) { +export class DropTableStatementContext extends DropStatementContext { + public constructor(ctx: DropStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -14561,8 +14565,8 @@ export class DropTableStmtContext extends DropStmtContext { return this.getToken(ClickHouseParser.TEMPORARY, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitDropTableStmt) { - return visitor.visitDropTableStmt(this); + if (visitor.visitDropTableStatement) { + return visitor.visitDropTableStatement(this); } else { return visitor.visitChildren(this); } @@ -14570,65 +14574,65 @@ export class DropTableStmtContext extends DropStmtContext { } -export class ExistsStmtContext extends antlr.ParserRuleContext { +export class ExistsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_existsStmt; + return ClickHouseParser.RULE_existsStatement; } - public override copyFrom(ctx: ExistsStmtContext): void { + public override copyFrom(ctx: ExistsStatementContext): void { super.copyFrom(ctx); } } -export class ExistsTableStmtContext extends ExistsStmtContext { - public constructor(ctx: ExistsStmtContext) { +export class ExistsDatabaseStatementContext extends ExistsStatementContext { + public constructor(ctx: ExistsStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXISTS(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXISTS, 0)!; } - public tableIdentifier(): TableIdentifierContext { - return this.getRuleContext(0, TableIdentifierContext)!; - } - public DICTIONARY(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.DICTIONARY, 0); - } - public TABLE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.TABLE, 0); - } - public VIEW(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.VIEW, 0); + public DATABASE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DATABASE, 0)!; } - public TEMPORARY(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.TEMPORARY, 0); + public databaseIdentifier(): DatabaseIdentifierContext { + return this.getRuleContext(0, DatabaseIdentifierContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExistsTableStmt) { - return visitor.visitExistsTableStmt(this); + if (visitor.visitExistsDatabaseStatement) { + return visitor.visitExistsDatabaseStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExistsDatabaseStmtContext extends ExistsStmtContext { - public constructor(ctx: ExistsStmtContext) { +export class ExistsTableStatementContext extends ExistsStatementContext { + public constructor(ctx: ExistsStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXISTS(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXISTS, 0)!; } - public DATABASE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DATABASE, 0)!; + public tableIdentifier(): TableIdentifierContext { + return this.getRuleContext(0, TableIdentifierContext)!; } - public databaseIdentifier(): DatabaseIdentifierContext { - return this.getRuleContext(0, DatabaseIdentifierContext)!; + public DICTIONARY(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.DICTIONARY, 0); + } + public TABLE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.TABLE, 0); + } + public VIEW(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.VIEW, 0); + } + public TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.TEMPORARY, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExistsDatabaseStmt) { - return visitor.visitExistsDatabaseStmt(this); + if (visitor.visitExistsTableStatement) { + return visitor.visitExistsTableStatement(this); } else { return visitor.visitChildren(this); } @@ -14636,110 +14640,107 @@ export class ExistsDatabaseStmtContext extends ExistsStmtContext { } -export class ExplainStmtContext extends antlr.ParserRuleContext { +export class ExplainStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_explainStmt; + return ClickHouseParser.RULE_explainStatement; } - public override copyFrom(ctx: ExplainStmtContext): void { + public override copyFrom(ctx: ExplainStatementContext): void { super.copyFrom(ctx); } } -export class ExplainPlanStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainASTStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } - public PLAN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.PLAN, 0)!; + public AST(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.AST, 0)!; } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainPlanStmt) { - return visitor.visitExplainPlanStmt(this); + if (visitor.visitExplainASTStatement) { + return visitor.visitExplainASTStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainSyntaxStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainQueryTreeStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } - public SYNTAX(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.SYNTAX, 0)!; + public QUERY(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.QUERY, 0)!; + } + public TREE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.TREE, 0)!; } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainSyntaxStmt) { - return visitor.visitExplainSyntaxStmt(this); + if (visitor.visitExplainQueryTreeStatement) { + return visitor.visitExplainQueryTreeStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainASTStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainPlanStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } - public AST(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.AST, 0)!; + public PLAN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.PLAN, 0)!; } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainASTStmt) { - return visitor.visitExplainASTStmt(this); + if (visitor.visitExplainPlanStatement) { + return visitor.visitExplainPlanStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainQueryTreeStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainDefaultStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } - public QUERY(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.QUERY, 0)!; - } - public TREE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.TREE, 0)!; - } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainQueryTreeStmt) { - return visitor.visitExplainQueryTreeStmt(this); + if (visitor.visitExplainDefaultStatement) { + return visitor.visitExplainDefaultStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainEstimateStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainEstimateStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -14753,49 +14754,52 @@ export class ExplainEstimateStmtContext extends ExplainStmtContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainEstimateStmt) { - return visitor.visitExplainEstimateStmt(this); + if (visitor.visitExplainEstimateStatement) { + return visitor.visitExplainEstimateStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainPipelineStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainSyntaxStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } - public PIPELINE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.PIPELINE, 0)!; + public SYNTAX(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.SYNTAX, 0)!; } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainPipelineStmt) { - return visitor.visitExplainPipelineStmt(this); + if (visitor.visitExplainSyntaxStatement) { + return visitor.visitExplainSyntaxStatement(this); } else { return visitor.visitChildren(this); } } } -export class ExplainDefaultStmtContext extends ExplainStmtContext { - public constructor(ctx: ExplainStmtContext) { +export class ExplainPipelineStatementContext extends ExplainStatementContext { + public constructor(ctx: ExplainStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EXPLAIN, 0)!; } + public PIPELINE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.PIPELINE, 0)!; + } public notInsertStatement(): NotInsertStatementContext { return this.getRuleContext(0, NotInsertStatementContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitExplainDefaultStmt) { - return visitor.visitExplainDefaultStmt(this); + if (visitor.visitExplainPipelineStatement) { + return visitor.visitExplainPipelineStatement(this); } else { return visitor.visitChildren(this); } @@ -14803,7 +14807,7 @@ export class ExplainDefaultStmtContext extends ExplainStmtContext { } -export class InsertStmtContext extends antlr.ParserRuleContext { +export class InsertStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14822,8 +14826,8 @@ export class InsertStmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.FUNCTION, 0); } - public tableFunctionExpr(): TableFunctionExprContext | null { - return this.getRuleContext(0, TableFunctionExprContext); + public tableFunctionExpression(): TableFunctionExpressionContext | null { + return this.getRuleContext(0, TableFunctionExpressionContext); } public TABLE(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.TABLE, 0); @@ -14832,11 +14836,11 @@ export class InsertStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ColumnsClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_insertStmt; + return ClickHouseParser.RULE_insertStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitInsertStmt) { - return visitor.visitInsertStmt(this); + if (visitor.visitInsertStatement) { + return visitor.visitInsertStatement(this); } else { return visitor.visitChildren(this); } @@ -14936,8 +14940,8 @@ export class DataClauseSelectContext extends DataClauseContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public selectUnionStmt(): SelectUnionStmtContext { - return this.getRuleContext(0, SelectUnionStmtContext)!; + public selectUnionStatement(): SelectUnionStatementContext { + return this.getRuleContext(0, SelectUnionStatementContext)!; } public EOF(): antlr.TerminalNode { return this.getToken(ClickHouseParser.EOF, 0)!; @@ -15011,19 +15015,19 @@ export class ValuesStatementContext extends antlr.ParserRuleContext { } -export class KillStmtContext extends antlr.ParserRuleContext { +export class KillStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_killStmt; + return ClickHouseParser.RULE_killStatement; } - public override copyFrom(ctx: KillStmtContext): void { + public override copyFrom(ctx: KillStatementContext): void { super.copyFrom(ctx); } } -export class KillMutationStmtContext extends KillStmtContext { - public constructor(ctx: KillStmtContext) { +export class KillMutationStatementContext extends KillStatementContext { + public constructor(ctx: KillStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -15049,8 +15053,8 @@ export class KillMutationStmtContext extends KillStmtContext { return this.getToken(ClickHouseParser.TEST, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitKillMutationStmt) { - return visitor.visitKillMutationStmt(this); + if (visitor.visitKillMutationStatement) { + return visitor.visitKillMutationStatement(this); } else { return visitor.visitChildren(this); } @@ -15058,7 +15062,7 @@ export class KillMutationStmtContext extends KillStmtContext { } -export class OptimizeStmtContext extends antlr.ParserRuleContext { +export class OptimizeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15084,11 +15088,11 @@ export class OptimizeStmtContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.DEDUPLICATE, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_optimizeStmt; + return ClickHouseParser.RULE_optimizeStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitOptimizeStmt) { - return visitor.visitOptimizeStmt(this); + if (visitor.visitOptimizeStatement) { + return visitor.visitOptimizeStatement(this); } else { return visitor.visitChildren(this); } @@ -15096,7 +15100,7 @@ export class OptimizeStmtContext extends antlr.ParserRuleContext { } -export class RenameStmtContext extends antlr.ParserRuleContext { +export class RenameStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15137,11 +15141,11 @@ export class RenameStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ClusterClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_renameStmt; + return ClickHouseParser.RULE_renameStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitRenameStmt) { - return visitor.visitRenameStmt(this); + if (visitor.visitRenameStatement) { + return visitor.visitRenameStatement(this); } else { return visitor.visitChildren(this); } @@ -15149,7 +15153,7 @@ export class RenameStmtContext extends antlr.ParserRuleContext { } -export class ProjectionSelectStmtContext extends antlr.ParserRuleContext { +export class ProjectionSelectStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15159,8 +15163,8 @@ export class ProjectionSelectStmtContext extends antlr.ParserRuleContext { public SELECT(): antlr.TerminalNode { return this.getToken(ClickHouseParser.SELECT, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -15175,11 +15179,11 @@ export class ProjectionSelectStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ProjectionOrderByClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_projectionSelectStmt; + return ClickHouseParser.RULE_projectionSelectStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitProjectionSelectStmt) { - return visitor.visitProjectionSelectStmt(this); + if (visitor.visitProjectionSelectStatement) { + return visitor.visitProjectionSelectStatement(this); } else { return visitor.visitChildren(this); } @@ -15187,18 +15191,18 @@ export class ProjectionSelectStmtContext extends antlr.ParserRuleContext { } -export class SelectUnionStmtContext extends antlr.ParserRuleContext { +export class SelectUnionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectStmtWithParens(): SelectStmtWithParensContext[]; - public selectStmtWithParens(i: number): SelectStmtWithParensContext | null; - public selectStmtWithParens(i?: number): SelectStmtWithParensContext[] | SelectStmtWithParensContext | null { + public selectStatementWithParentheses(): SelectStatementWithParenthesesContext[]; + public selectStatementWithParentheses(i: number): SelectStatementWithParenthesesContext | null; + public selectStatementWithParentheses(i?: number): SelectStatementWithParenthesesContext[] | SelectStatementWithParenthesesContext | null { if (i === undefined) { - return this.getRuleContexts(SelectStmtWithParensContext); + return this.getRuleContexts(SelectStatementWithParenthesesContext); } - return this.getRuleContext(i, SelectStmtWithParensContext); + return this.getRuleContext(i, SelectStatementWithParenthesesContext); } public UNION(): antlr.TerminalNode[]; public UNION(i: number): antlr.TerminalNode | null; @@ -15219,11 +15223,11 @@ export class SelectUnionStmtContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_selectUnionStmt; + return ClickHouseParser.RULE_selectUnionStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSelectUnionStmt) { - return visitor.visitSelectUnionStmt(this); + if (visitor.visitSelectUnionStatement) { + return visitor.visitSelectUnionStatement(this); } else { return visitor.visitChildren(this); } @@ -15231,28 +15235,28 @@ export class SelectUnionStmtContext extends antlr.ParserRuleContext { } -export class SelectStmtWithParensContext extends antlr.ParserRuleContext { +export class SelectStatementWithParenthesesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectStmt(): SelectStmtContext | null { - return this.getRuleContext(0, SelectStmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } public LPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.LPAREN, 0); } - public selectUnionStmt(): SelectUnionStmtContext | null { - return this.getRuleContext(0, SelectUnionStmtContext); + public selectUnionStatement(): SelectUnionStatementContext | null { + return this.getRuleContext(0, SelectUnionStatementContext); } public RPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.RPAREN, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_selectStmtWithParens; + return ClickHouseParser.RULE_selectStatementWithParentheses; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSelectStmtWithParens) { - return visitor.visitSelectStmtWithParens(this); + if (visitor.visitSelectStatementWithParentheses) { + return visitor.visitSelectStatementWithParentheses(this); } else { return visitor.visitChildren(this); } @@ -15260,15 +15264,15 @@ export class SelectStmtWithParensContext extends antlr.ParserRuleContext { } -export class SelectStmtContext extends antlr.ParserRuleContext { +export class SelectStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SELECT(): antlr.TerminalNode { return this.getToken(ClickHouseParser.SELECT, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public withClause(): WithClauseContext | null { return this.getRuleContext(0, WithClauseContext); @@ -15331,11 +15335,11 @@ export class SelectStmtContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.ROLLUP, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_selectStmt; + return ClickHouseParser.RULE_selectStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSelectStmt) { - return visitor.visitSelectStmt(this); + if (visitor.visitSelectStatement) { + return visitor.visitSelectStatement(this); } else { return visitor.visitChildren(this); } @@ -15350,8 +15354,8 @@ export class WithClauseContext extends antlr.ParserRuleContext { public WITH(): antlr.TerminalNode { return this.getToken(ClickHouseParser.WITH, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_withClause; @@ -15402,8 +15406,8 @@ export class FromClauseContext extends antlr.ParserRuleContext { public FROM(): antlr.TerminalNode { return this.getToken(ClickHouseParser.FROM, 0)!; } - public joinExpr(): JoinExprContext { - return this.getRuleContext(0, JoinExprContext)!; + public joinExpression(): JoinExpressionContext { + return this.getRuleContext(0, JoinExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_fromClause; @@ -15428,8 +15432,8 @@ export class ArrayJoinClauseContext extends antlr.ParserRuleContext { public JOIN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.JOIN, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public LEFT(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.LEFT, 0); @@ -15466,8 +15470,8 @@ export class WindowClauseContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public windowExpr(): WindowExprContext { - return this.getRuleContext(0, WindowExprContext)!; + public windowExpression(): WindowExpressionContext { + return this.getRuleContext(0, WindowExpressionContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -15492,8 +15496,8 @@ export class PrewhereClauseContext extends antlr.ParserRuleContext { public PREWHERE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.PREWHERE, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_prewhereClause; @@ -15515,8 +15519,8 @@ export class WhereClauseContext extends antlr.ParserRuleContext { public WHERE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.WHERE, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_whereClause; @@ -15544,8 +15548,8 @@ export class GroupByClauseContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.LPAREN, 0); } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public RPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.RPAREN, 0); @@ -15576,8 +15580,8 @@ export class HavingClauseContext extends antlr.ParserRuleContext { public HAVING(): antlr.TerminalNode { return this.getToken(ClickHouseParser.HAVING, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_havingClause; @@ -15602,8 +15606,8 @@ export class OrderByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public orderExprList(): OrderExprListContext { - return this.getRuleContext(0, OrderExprListContext)!; + public orderExpressionList(): OrderExpressionListContext { + return this.getRuleContext(0, OrderExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_orderByClause; @@ -15628,8 +15632,8 @@ export class ProjectionOrderByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_projectionOrderByClause; @@ -15651,14 +15655,14 @@ export class LimitByClauseContext extends antlr.ParserRuleContext { public LIMIT(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LIMIT, 0)!; } - public limitExpr(): LimitExprContext { - return this.getRuleContext(0, LimitExprContext)!; + public limitExpression(): LimitExpressionContext { + return this.getRuleContext(0, LimitExpressionContext)!; } public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_limitByClause; @@ -15680,8 +15684,8 @@ export class LimitClauseContext extends antlr.ParserRuleContext { public LIMIT(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LIMIT, 0)!; } - public limitExpr(): LimitExprContext { - return this.getRuleContext(0, LimitExprContext)!; + public limitExpression(): LimitExpressionContext { + return this.getRuleContext(0, LimitExpressionContext)!; } public WITH(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.WITH, 0); @@ -15709,8 +15713,8 @@ export class SettingsClauseContext extends antlr.ParserRuleContext { public SETTINGS(): antlr.TerminalNode { return this.getToken(ClickHouseParser.SETTINGS, 0)!; } - public settingExprList(): SettingExprListContext { - return this.getRuleContext(0, SettingExprListContext)!; + public settingExpressionList(): SettingExpressionListContext { + return this.getRuleContext(0, SettingExpressionListContext)!; } public override get ruleIndex(): number { return ClickHouseParser.RULE_settingsClause; @@ -15725,61 +15729,46 @@ export class SettingsClauseContext extends antlr.ParserRuleContext { } -export class JoinExprContext extends antlr.ParserRuleContext { +export class JoinExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_joinExpr; + return ClickHouseParser.RULE_joinExpression; } - public override copyFrom(ctx: JoinExprContext): void { + public override copyFrom(ctx: JoinExpressionContext): void { super.copyFrom(ctx); } } -export class JoinExprOpContext extends JoinExprContext { - public constructor(ctx: JoinExprContext) { +export class JoinExpressionParensContext extends JoinExpressionContext { + public constructor(ctx: JoinExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public joinExpr(): JoinExprContext[]; - public joinExpr(i: number): JoinExprContext | null; - public joinExpr(i?: number): JoinExprContext[] | JoinExprContext | null { - if (i === undefined) { - return this.getRuleContexts(JoinExprContext); - } - - return this.getRuleContext(i, JoinExprContext); - } - public JOIN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.JOIN, 0)!; - } - public joinConstraintClause(): JoinConstraintClauseContext { - return this.getRuleContext(0, JoinConstraintClauseContext)!; - } - public joinOp(): JoinOpContext | null { - return this.getRuleContext(0, JoinOpContext); + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public GLOBAL(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.GLOBAL, 0); + public joinExpression(): JoinExpressionContext { + return this.getRuleContext(0, JoinExpressionContext)!; } - public LOCAL(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LOCAL, 0); + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitJoinExprOp) { - return visitor.visitJoinExprOp(this); + if (visitor.visitJoinExpressionParens) { + return visitor.visitJoinExpressionParens(this); } else { return visitor.visitChildren(this); } } } -export class JoinExprTableContext extends JoinExprContext { - public constructor(ctx: JoinExprContext) { +export class JoinExpressionTableContext extends JoinExpressionContext { + public constructor(ctx: JoinExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public tableExpr(): TableExprContext { - return this.getRuleContext(0, TableExprContext)!; + public tableExpression(): TableExpressionContext { + return this.getRuleContext(0, TableExpressionContext)!; } public FINAL(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.FINAL, 0); @@ -15788,55 +15777,70 @@ export class JoinExprTableContext extends JoinExprContext { return this.getRuleContext(0, SampleClauseContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitJoinExprTable) { - return visitor.visitJoinExprTable(this); + if (visitor.visitJoinExpressionTable) { + return visitor.visitJoinExpressionTable(this); } else { return visitor.visitChildren(this); } } } -export class JoinExprParensContext extends JoinExprContext { - public constructor(ctx: JoinExprContext) { +export class JoinExpressionCrossOpContext extends JoinExpressionContext { + public constructor(ctx: JoinExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; - } - public joinExpr(): JoinExprContext { - return this.getRuleContext(0, JoinExprContext)!; + public joinExpression(): JoinExpressionContext[]; + public joinExpression(i: number): JoinExpressionContext | null; + public joinExpression(i?: number): JoinExpressionContext[] | JoinExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(JoinExpressionContext); + } + + return this.getRuleContext(i, JoinExpressionContext); } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; + public joinOperatorCross(): JoinOperatorCrossContext { + return this.getRuleContext(0, JoinOperatorCrossContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitJoinExprParens) { - return visitor.visitJoinExprParens(this); + if (visitor.visitJoinExpressionCrossOp) { + return visitor.visitJoinExpressionCrossOp(this); } else { return visitor.visitChildren(this); } } } -export class JoinExprCrossOpContext extends JoinExprContext { - public constructor(ctx: JoinExprContext) { +export class JoinExpressionOpContext extends JoinExpressionContext { + public constructor(ctx: JoinExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public joinExpr(): JoinExprContext[]; - public joinExpr(i: number): JoinExprContext | null; - public joinExpr(i?: number): JoinExprContext[] | JoinExprContext | null { + public joinExpression(): JoinExpressionContext[]; + public joinExpression(i: number): JoinExpressionContext | null; + public joinExpression(i?: number): JoinExpressionContext[] | JoinExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(JoinExprContext); + return this.getRuleContexts(JoinExpressionContext); } - return this.getRuleContext(i, JoinExprContext); + return this.getRuleContext(i, JoinExpressionContext); + } + public JOIN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.JOIN, 0)!; + } + public joinConstraintClause(): JoinConstraintClauseContext { + return this.getRuleContext(0, JoinConstraintClauseContext)!; } - public joinOpCross(): JoinOpCrossContext { - return this.getRuleContext(0, JoinOpCrossContext)!; + public joinOperator(): JoinOperatorContext | null { + return this.getRuleContext(0, JoinOperatorContext); + } + public GLOBAL(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.GLOBAL, 0); + } + public LOCAL(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LOCAL, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitJoinExprCrossOp) { - return visitor.visitJoinExprCrossOp(this); + if (visitor.visitJoinExpressionOp) { + return visitor.visitJoinExpressionOp(this); } else { return visitor.visitChildren(this); } @@ -15844,19 +15848,19 @@ export class JoinExprCrossOpContext extends JoinExprContext { } -export class JoinOpContext extends antlr.ParserRuleContext { +export class JoinOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_joinOp; + return ClickHouseParser.RULE_joinOperator; } - public override copyFrom(ctx: JoinOpContext): void { + public override copyFrom(ctx: JoinOperatorContext): void { super.copyFrom(ctx); } } -export class JoinOpFullContext extends JoinOpContext { - public constructor(ctx: JoinOpContext) { +export class JoinOpFullContext extends JoinOperatorContext { + public constructor(ctx: JoinOperatorContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -15880,8 +15884,8 @@ export class JoinOpFullContext extends JoinOpContext { } } } -export class JoinOpInnerContext extends JoinOpContext { - public constructor(ctx: JoinOpContext) { +export class JoinOpInnerContext extends JoinOperatorContext { + public constructor(ctx: JoinOperatorContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -15905,8 +15909,8 @@ export class JoinOpInnerContext extends JoinOpContext { } } } -export class JoinOpLeftRightContext extends JoinOpContext { - public constructor(ctx: JoinOpContext) { +export class JoinOpLeftRightContext extends JoinOperatorContext { + public constructor(ctx: JoinOperatorContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -15944,7 +15948,7 @@ export class JoinOpLeftRightContext extends JoinOpContext { } -export class JoinOpCrossContext extends antlr.ParserRuleContext { +export class JoinOperatorCrossContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -15964,11 +15968,11 @@ export class JoinOpCrossContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.COMMA, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_joinOpCross; + return ClickHouseParser.RULE_joinOperatorCross; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitJoinOpCross) { - return visitor.visitJoinOpCross(this); + if (visitor.visitJoinOperatorCross) { + return visitor.visitJoinOperatorCross(this); } else { return visitor.visitChildren(this); } @@ -15983,8 +15987,8 @@ export class JoinConstraintClauseContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.ON, 0); } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public USING(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.USING, 0); @@ -16015,14 +16019,14 @@ export class SampleClauseContext extends antlr.ParserRuleContext { public SAMPLE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.SAMPLE, 0)!; } - public ratioExpr(): RatioExprContext[]; - public ratioExpr(i: number): RatioExprContext | null; - public ratioExpr(i?: number): RatioExprContext[] | RatioExprContext | null { + public ratioExpression(): RatioExpressionContext[]; + public ratioExpression(i: number): RatioExpressionContext | null; + public ratioExpression(i?: number): RatioExpressionContext[] | RatioExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(RatioExprContext); + return this.getRuleContexts(RatioExpressionContext); } - return this.getRuleContext(i, RatioExprContext); + return this.getRuleContext(i, RatioExpressionContext); } public OFFSET(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.OFFSET, 0); @@ -16040,18 +16044,18 @@ export class SampleClauseContext extends antlr.ParserRuleContext { } -export class LimitExprContext extends antlr.ParserRuleContext { +export class LimitExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); + return this.getRuleContext(i, ColumnExpressionContext); } public COMMA(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.COMMA, 0); @@ -16060,11 +16064,11 @@ export class LimitExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.OFFSET, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_limitExpr; + return ClickHouseParser.RULE_limitExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitLimitExpr) { - return visitor.visitLimitExpr(this); + if (visitor.visitLimitExpression) { + return visitor.visitLimitExpression(this); } else { return visitor.visitChildren(this); } @@ -16072,18 +16076,18 @@ export class LimitExprContext extends antlr.ParserRuleContext { } -export class OrderExprListContext extends antlr.ParserRuleContext { +export class OrderExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public orderExpr(): OrderExprContext[]; - public orderExpr(i: number): OrderExprContext | null; - public orderExpr(i?: number): OrderExprContext[] | OrderExprContext | null { + public orderExpression(): OrderExpressionContext[]; + public orderExpression(i: number): OrderExpressionContext | null; + public orderExpression(i?: number): OrderExpressionContext[] | OrderExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(OrderExprContext); + return this.getRuleContexts(OrderExpressionContext); } - return this.getRuleContext(i, OrderExprContext); + return this.getRuleContext(i, OrderExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -16095,11 +16099,11 @@ export class OrderExprListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_orderExprList; + return ClickHouseParser.RULE_orderExpressionList; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitOrderExprList) { - return visitor.visitOrderExprList(this); + if (visitor.visitOrderExpressionList) { + return visitor.visitOrderExpressionList(this); } else { return visitor.visitChildren(this); } @@ -16107,12 +16111,12 @@ export class OrderExprListContext extends antlr.ParserRuleContext { } -export class OrderExprContext extends antlr.ParserRuleContext { +export class OrderExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public NULLS(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.NULLS, 0); @@ -16139,11 +16143,11 @@ export class OrderExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.LAST, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_orderExpr; + return ClickHouseParser.RULE_orderExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitOrderExpr) { - return visitor.visitOrderExpr(this); + if (visitor.visitOrderExpression) { + return visitor.visitOrderExpression(this); } else { return visitor.visitChildren(this); } @@ -16151,7 +16155,7 @@ export class OrderExprContext extends antlr.ParserRuleContext { } -export class RatioExprContext extends antlr.ParserRuleContext { +export class RatioExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16168,11 +16172,11 @@ export class RatioExprContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.SLASH, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_ratioExpr; + return ClickHouseParser.RULE_ratioExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitRatioExpr) { - return visitor.visitRatioExpr(this); + if (visitor.visitRatioExpression) { + return visitor.visitRatioExpression(this); } else { return visitor.visitChildren(this); } @@ -16180,18 +16184,18 @@ export class RatioExprContext extends antlr.ParserRuleContext { } -export class SettingExprListContext extends antlr.ParserRuleContext { +export class SettingExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public settingExpr(): SettingExprContext[]; - public settingExpr(i: number): SettingExprContext | null; - public settingExpr(i?: number): SettingExprContext[] | SettingExprContext | null { + public settingExpression(): SettingExpressionContext[]; + public settingExpression(i: number): SettingExpressionContext | null; + public settingExpression(i?: number): SettingExpressionContext[] | SettingExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(SettingExprContext); + return this.getRuleContexts(SettingExpressionContext); } - return this.getRuleContext(i, SettingExprContext); + return this.getRuleContext(i, SettingExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -16203,11 +16207,11 @@ export class SettingExprListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_settingExprList; + return ClickHouseParser.RULE_settingExpressionList; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSettingExprList) { - return visitor.visitSettingExprList(this); + if (visitor.visitSettingExpressionList) { + return visitor.visitSettingExpressionList(this); } else { return visitor.visitChildren(this); } @@ -16215,7 +16219,7 @@ export class SettingExprListContext extends antlr.ParserRuleContext { } -export class SettingExprContext extends antlr.ParserRuleContext { +export class SettingExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16229,11 +16233,11 @@ export class SettingExprContext extends antlr.ParserRuleContext { return this.getRuleContext(0, LiteralContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_settingExpr; + return ClickHouseParser.RULE_settingExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSettingExpr) { - return visitor.visitSettingExpr(this); + if (visitor.visitSettingExpression) { + return visitor.visitSettingExpression(this); } else { return visitor.visitChildren(this); } @@ -16241,25 +16245,25 @@ export class SettingExprContext extends antlr.ParserRuleContext { } -export class WindowExprContext extends antlr.ParserRuleContext { +export class WindowExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public winPartitionByClause(): WinPartitionByClauseContext | null { - return this.getRuleContext(0, WinPartitionByClauseContext); + public windowPartitionByClause(): WindowPartitionByClauseContext | null { + return this.getRuleContext(0, WindowPartitionByClauseContext); } - public winOrderByClause(): WinOrderByClauseContext | null { - return this.getRuleContext(0, WinOrderByClauseContext); + public windowOrderByClause(): WindowOrderByClauseContext | null { + return this.getRuleContext(0, WindowOrderByClauseContext); } - public winFrameClause(): WinFrameClauseContext | null { - return this.getRuleContext(0, WinFrameClauseContext); + public windowFrameClause(): WindowFrameClauseContext | null { + return this.getRuleContext(0, WindowFrameClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_windowExpr; + return ClickHouseParser.RULE_windowExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWindowExpr) { - return visitor.visitWindowExpr(this); + if (visitor.visitWindowExpression) { + return visitor.visitWindowExpression(this); } else { return visitor.visitChildren(this); } @@ -16267,7 +16271,7 @@ export class WindowExprContext extends antlr.ParserRuleContext { } -export class WinPartitionByClauseContext extends antlr.ParserRuleContext { +export class WindowPartitionByClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16277,15 +16281,15 @@ export class WinPartitionByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_winPartitionByClause; + return ClickHouseParser.RULE_windowPartitionByClause; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWinPartitionByClause) { - return visitor.visitWinPartitionByClause(this); + if (visitor.visitWindowPartitionByClause) { + return visitor.visitWindowPartitionByClause(this); } else { return visitor.visitChildren(this); } @@ -16293,7 +16297,7 @@ export class WinPartitionByClauseContext extends antlr.ParserRuleContext { } -export class WinOrderByClauseContext extends antlr.ParserRuleContext { +export class WindowOrderByClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16303,15 +16307,15 @@ export class WinOrderByClauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BY, 0)!; } - public orderExprList(): OrderExprListContext { - return this.getRuleContext(0, OrderExprListContext)!; + public orderExpressionList(): OrderExpressionListContext { + return this.getRuleContext(0, OrderExpressionListContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_winOrderByClause; + return ClickHouseParser.RULE_windowOrderByClause; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWinOrderByClause) { - return visitor.visitWinOrderByClause(this); + if (visitor.visitWindowOrderByClause) { + return visitor.visitWindowOrderByClause(this); } else { return visitor.visitChildren(this); } @@ -16319,12 +16323,12 @@ export class WinOrderByClauseContext extends antlr.ParserRuleContext { } -export class WinFrameClauseContext extends antlr.ParserRuleContext { +export class WindowFrameClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public winFrameExtend(): WinFrameExtendContext { - return this.getRuleContext(0, WinFrameExtendContext)!; + public windowFrameExtend(): WindowFrameExtendContext { + return this.getRuleContext(0, WindowFrameExtendContext)!; } public ROWS(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.ROWS, 0); @@ -16333,11 +16337,11 @@ export class WinFrameClauseContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.RANGE, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_winFrameClause; + return ClickHouseParser.RULE_windowFrameClause; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWinFrameClause) { - return visitor.visitWinFrameClause(this); + if (visitor.visitWindowFrameClause) { + return visitor.visitWindowFrameClause(this); } else { return visitor.visitChildren(this); } @@ -16345,24 +16349,24 @@ export class WinFrameClauseContext extends antlr.ParserRuleContext { } -export class WinFrameExtendContext extends antlr.ParserRuleContext { +export class WindowFrameExtendContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_winFrameExtend; + return ClickHouseParser.RULE_windowFrameExtend; } - public override copyFrom(ctx: WinFrameExtendContext): void { + public override copyFrom(ctx: WindowFrameExtendContext): void { super.copyFrom(ctx); } } -export class FrameStartContext extends WinFrameExtendContext { - public constructor(ctx: WinFrameExtendContext) { +export class FrameStartContext extends WindowFrameExtendContext { + public constructor(ctx: WindowFrameExtendContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public winFrameBound(): WinFrameBoundContext { - return this.getRuleContext(0, WinFrameBoundContext)!; + public windowFrameBound(): WindowFrameBoundContext { + return this.getRuleContext(0, WindowFrameBoundContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { if (visitor.visitFrameStart) { @@ -16372,22 +16376,22 @@ export class FrameStartContext extends WinFrameExtendContext { } } } -export class FrameBetweenContext extends WinFrameExtendContext { - public constructor(ctx: WinFrameExtendContext) { +export class FrameBetweenContext extends WindowFrameExtendContext { + public constructor(ctx: WindowFrameExtendContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public BETWEEN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.BETWEEN, 0)!; } - public winFrameBound(): WinFrameBoundContext[]; - public winFrameBound(i: number): WinFrameBoundContext | null; - public winFrameBound(i?: number): WinFrameBoundContext[] | WinFrameBoundContext | null { + public windowFrameBound(): WindowFrameBoundContext[]; + public windowFrameBound(i: number): WindowFrameBoundContext | null; + public windowFrameBound(i?: number): WindowFrameBoundContext[] | WindowFrameBoundContext | null { if (i === undefined) { - return this.getRuleContexts(WinFrameBoundContext); + return this.getRuleContexts(WindowFrameBoundContext); } - return this.getRuleContext(i, WinFrameBoundContext); + return this.getRuleContext(i, WindowFrameBoundContext); } public AND(): antlr.TerminalNode { return this.getToken(ClickHouseParser.AND, 0)!; @@ -16402,7 +16406,7 @@ export class FrameBetweenContext extends WinFrameExtendContext { } -export class WinFrameBoundContext extends antlr.ParserRuleContext { +export class WindowFrameBoundContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16425,11 +16429,11 @@ export class WinFrameBoundContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NumberLiteralContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_winFrameBound; + return ClickHouseParser.RULE_windowFrameBound; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWinFrameBound) { - return visitor.visitWinFrameBound(this); + if (visitor.visitWindowFrameBound) { + return visitor.visitWindowFrameBound(this); } else { return visitor.visitChildren(this); } @@ -16437,22 +16441,22 @@ export class WinFrameBoundContext extends antlr.ParserRuleContext { } -export class SetStmtContext extends antlr.ParserRuleContext { +export class SetStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SET(): antlr.TerminalNode { return this.getToken(ClickHouseParser.SET, 0)!; } - public settingExprList(): SettingExprListContext { - return this.getRuleContext(0, SettingExprListContext)!; + public settingExpressionList(): SettingExpressionListContext { + return this.getRuleContext(0, SettingExpressionListContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_setStmt; + return ClickHouseParser.RULE_setStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSetStmt) { - return visitor.visitSetStmt(this); + if (visitor.visitSetStatement) { + return visitor.visitSetStatement(this); } else { return visitor.visitChildren(this); } @@ -16460,19 +16464,19 @@ export class SetStmtContext extends antlr.ParserRuleContext { } -export class ShowStmtContext extends antlr.ParserRuleContext { +export class ShowStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_showStmt; + return ClickHouseParser.RULE_showStatement; } - public override copyFrom(ctx: ShowStmtContext): void { + public override copyFrom(ctx: ShowStatementContext): void { super.copyFrom(ctx); } } -export class ShowCreateDatabaseStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { +export class ShowCreateTableStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16482,41 +16486,25 @@ export class ShowCreateDatabaseStmtContext extends ShowStmtContext { public CREATE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.CREATE, 0)!; } - public DATABASE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DATABASE, 0)!; - } - public databaseIdentifier(): DatabaseIdentifierContext { - return this.getRuleContext(0, DatabaseIdentifierContext)!; - } - public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowCreateDatabaseStmt) { - return visitor.visitShowCreateDatabaseStmt(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ShowDatabasesStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public tableIdentifier(): TableIdentifierContext { + return this.getRuleContext(0, TableIdentifierContext)!; } - public SHOW(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.SHOW, 0)!; + public TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.TEMPORARY, 0); } - public DATABASES(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DATABASES, 0)!; + public TABLE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.TABLE, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowDatabasesStmt) { - return visitor.visitShowDatabasesStmt(this); + if (visitor.visitShowCreateTableStatement) { + return visitor.visitShowCreateTableStatement(this); } else { return visitor.visitChildren(this); } } } -export class ShowCreateTableStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { +export class ShowCreateDictionaryStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16526,25 +16514,22 @@ export class ShowCreateTableStmtContext extends ShowStmtContext { public CREATE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.CREATE, 0)!; } + public DICTIONARY(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DICTIONARY, 0)!; + } public tableIdentifier(): TableIdentifierContext { return this.getRuleContext(0, TableIdentifierContext)!; } - public TEMPORARY(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.TEMPORARY, 0); - } - public TABLE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.TABLE, 0); - } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowCreateTableStmt) { - return visitor.visitShowCreateTableStmt(this); + if (visitor.visitShowCreateDictionaryStatement) { + return visitor.visitShowCreateDictionaryStatement(this); } else { return visitor.visitChildren(this); } } } -export class ShowTablesStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { +export class ShowTablesStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16579,15 +16564,15 @@ export class ShowTablesStmtContext extends ShowStmtContext { return this.getToken(ClickHouseParser.IN, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowTablesStmt) { - return visitor.visitShowTablesStmt(this); + if (visitor.visitShowTablesStatement) { + return visitor.visitShowTablesStatement(this); } else { return visitor.visitChildren(this); } } } -export class ShowDictionariesStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { +export class ShowDictionariesStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16604,15 +16589,15 @@ export class ShowDictionariesStmtContext extends ShowStmtContext { return this.getRuleContext(0, DatabaseIdentifierContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowDictionariesStmt) { - return visitor.visitShowDictionariesStmt(this); + if (visitor.visitShowDictionariesStatement) { + return visitor.visitShowDictionariesStatement(this); } else { return visitor.visitChildren(this); } } } -export class ShowCreateDictionaryStmtContext extends ShowStmtContext { - public constructor(ctx: ShowStmtContext) { +export class ShowCreateDatabaseStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16622,15 +16607,34 @@ export class ShowCreateDictionaryStmtContext extends ShowStmtContext { public CREATE(): antlr.TerminalNode { return this.getToken(ClickHouseParser.CREATE, 0)!; } - public DICTIONARY(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DICTIONARY, 0)!; + public DATABASE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DATABASE, 0)!; } - public tableIdentifier(): TableIdentifierContext { - return this.getRuleContext(0, TableIdentifierContext)!; + public databaseIdentifier(): DatabaseIdentifierContext { + return this.getRuleContext(0, DatabaseIdentifierContext)!; + } + public override accept(visitor: ClickHouseParserVisitor): Result | null { + if (visitor.visitShowCreateDatabaseStatement) { + return visitor.visitShowCreateDatabaseStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ShowDatabasesStatementContext extends ShowStatementContext { + public constructor(ctx: ShowStatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public SHOW(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.SHOW, 0)!; + } + public DATABASES(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DATABASES, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitShowCreateDictionaryStmt) { - return visitor.visitShowCreateDictionaryStmt(this); + if (visitor.visitShowDatabasesStatement) { + return visitor.visitShowDatabasesStatement(this); } else { return visitor.visitChildren(this); } @@ -16638,7 +16642,7 @@ export class ShowCreateDictionaryStmtContext extends ShowStmtContext { } -export class SystemStmtContext extends antlr.ParserRuleContext { +export class SystemStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16694,11 +16698,11 @@ export class SystemStmtContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.REPLICA, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_systemStmt; + return ClickHouseParser.RULE_systemStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitSystemStmt) { - return visitor.visitSystemStmt(this); + if (visitor.visitSystemStatement) { + return visitor.visitSystemStatement(this); } else { return visitor.visitChildren(this); } @@ -16706,7 +16710,7 @@ export class SystemStmtContext extends antlr.ParserRuleContext { } -export class TruncateStmtContext extends antlr.ParserRuleContext { +export class TruncateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16732,11 +16736,11 @@ export class TruncateStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ClusterClauseContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_truncateStmt; + return ClickHouseParser.RULE_truncateStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTruncateStmt) { - return visitor.visitTruncateStmt(this); + if (visitor.visitTruncateStatement) { + return visitor.visitTruncateStatement(this); } else { return visitor.visitChildren(this); } @@ -16744,7 +16748,7 @@ export class TruncateStmtContext extends antlr.ParserRuleContext { } -export class UseStmtContext extends antlr.ParserRuleContext { +export class UseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16755,11 +16759,11 @@ export class UseStmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, DatabaseIdentifierContext)!; } public override get ruleIndex(): number { - return ClickHouseParser.RULE_useStmt; + return ClickHouseParser.RULE_useStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitUseStmt) { - return visitor.visitUseStmt(this); + if (visitor.visitUseStatement) { + return visitor.visitUseStatement(this); } else { return visitor.visitChildren(this); } @@ -16767,7 +16771,7 @@ export class UseStmtContext extends antlr.ParserRuleContext { } -export class WatchStmtContext extends antlr.ParserRuleContext { +export class WatchStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16787,11 +16791,11 @@ export class WatchStmtContext extends antlr.ParserRuleContext { return this.getToken(ClickHouseParser.DECIMAL_LITERAL, 0); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_watchStmt; + return ClickHouseParser.RULE_watchStatement; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitWatchStmt) { - return visitor.visitWatchStmt(this); + if (visitor.visitWatchStatement) { + return visitor.visitWatchStatement(this); } else { return visitor.visitChildren(this); } @@ -16799,42 +16803,36 @@ export class WatchStmtContext extends antlr.ParserRuleContext { } -export class ColumnTypeExprContext extends antlr.ParserRuleContext { +export class ColumnTypeExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnTypeExpr; + return ClickHouseParser.RULE_columnTypeExpression; } - public override copyFrom(ctx: ColumnTypeExprContext): void { + public override copyFrom(ctx: ColumnTypeExpressionContext): void { super.copyFrom(ctx); } } -export class ColumnTypeExprNestedContext extends ColumnTypeExprContext { - public constructor(ctx: ColumnTypeExprContext) { +export class ColumnTypeExpressionComplexContext extends ColumnTypeExpressionContext { + public constructor(ctx: ColumnTypeExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - 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 identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public columnTypeExpr(): ColumnTypeExprContext[]; - public columnTypeExpr(i: number): ColumnTypeExprContext | null; - public columnTypeExpr(i?: number): ColumnTypeExprContext[] | ColumnTypeExprContext | null { + public columnTypeExpression(): ColumnTypeExpressionContext[]; + public columnTypeExpression(i: number): ColumnTypeExpressionContext | null; + public columnTypeExpression(i?: number): ColumnTypeExpressionContext[] | ColumnTypeExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnTypeExprContext); + return this.getRuleContexts(ColumnTypeExpressionContext); } - return this.getRuleContext(i, ColumnTypeExprContext); + return this.getRuleContext(i, ColumnTypeExpressionContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -16849,15 +16847,15 @@ export class ColumnTypeExprNestedContext extends ColumnTypeExprContext { } } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnTypeExprNested) { - return visitor.visitColumnTypeExprNested(this); + if (visitor.visitColumnTypeExpressionComplex) { + return visitor.visitColumnTypeExpressionComplex(this); } else { return visitor.visitChildren(this); } } } -export class ColumnTypeExprParamContext extends ColumnTypeExprContext { - public constructor(ctx: ColumnTypeExprContext) { +export class ColumnTypeExpressionEnumContext extends ColumnTypeExpressionContext { + public constructor(ctx: ColumnTypeExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16867,55 +16865,60 @@ export class ColumnTypeExprParamContext extends ColumnTypeExprContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } + public enumValue(): EnumValueContext[]; + public enumValue(i: number): EnumValueContext | null; + public enumValue(i?: number): EnumValueContext[] | EnumValueContext | null { + if (i === undefined) { + return this.getRuleContexts(EnumValueContext); + } + + return this.getRuleContext(i, EnumValueContext); + } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + 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(ClickHouseParser.COMMA); + } else { + return this.getToken(ClickHouseParser.COMMA, i); + } } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnTypeExprParam) { - return visitor.visitColumnTypeExprParam(this); + if (visitor.visitColumnTypeExpressionEnum) { + return visitor.visitColumnTypeExpressionEnum(this); } else { return visitor.visitChildren(this); } } } -export class ColumnTypeExprSimpleContext extends ColumnTypeExprContext { - public constructor(ctx: ColumnTypeExprContext) { +export class ColumnTypeExpressionNestedContext extends ColumnTypeExpressionContext { + public constructor(ctx: ColumnTypeExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnTypeExprSimple) { - return visitor.visitColumnTypeExprSimple(this); - } else { - return visitor.visitChildren(this); + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierContext); } - } -} -export class ColumnTypeExprComplexContext extends ColumnTypeExprContext { - public constructor(ctx: ColumnTypeExprContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + + return this.getRuleContext(i, IdentifierContext); } public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public columnTypeExpr(): ColumnTypeExprContext[]; - public columnTypeExpr(i: number): ColumnTypeExprContext | null; - public columnTypeExpr(i?: number): ColumnTypeExprContext[] | ColumnTypeExprContext | null { + public columnTypeExpression(): ColumnTypeExpressionContext[]; + public columnTypeExpression(i: number): ColumnTypeExpressionContext | null; + public columnTypeExpression(i?: number): ColumnTypeExpressionContext[] | ColumnTypeExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnTypeExprContext); + return this.getRuleContexts(ColumnTypeExpressionContext); } - return this.getRuleContext(i, ColumnTypeExprContext); + return this.getRuleContext(i, ColumnTypeExpressionContext); } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; @@ -16930,15 +16933,15 @@ export class ColumnTypeExprComplexContext extends ColumnTypeExprContext { } } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnTypeExprComplex) { - return visitor.visitColumnTypeExprComplex(this); + if (visitor.visitColumnTypeExpressionNested) { + return visitor.visitColumnTypeExpressionNested(this); } else { return visitor.visitChildren(this); } } } -export class ColumnTypeExprEnumContext extends ColumnTypeExprContext { - public constructor(ctx: ColumnTypeExprContext) { +export class ColumnTypeExpressionParamContext extends ColumnTypeExpressionContext { + public constructor(ctx: ColumnTypeExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -16948,30 +16951,31 @@ export class ColumnTypeExprEnumContext extends ColumnTypeExprContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public enumValue(): EnumValueContext[]; - public enumValue(i: number): EnumValueContext | null; - public enumValue(i?: number): EnumValueContext[] | EnumValueContext | null { - if (i === undefined) { - return this.getRuleContexts(EnumValueContext); - } - - return this.getRuleContext(i, EnumValueContext); - } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 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(ClickHouseParser.COMMA); - } else { - return this.getToken(ClickHouseParser.COMMA, i); - } + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); + } + public override accept(visitor: ClickHouseParserVisitor): Result | null { + if (visitor.visitColumnTypeExpressionParam) { + return visitor.visitColumnTypeExpressionParam(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ColumnTypeExpressionSimpleContext extends ColumnTypeExpressionContext { + public constructor(ctx: ColumnTypeExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnTypeExprEnum) { - return visitor.visitColumnTypeExprEnum(this); + if (visitor.visitColumnTypeExpressionSimple) { + return visitor.visitColumnTypeExpressionSimple(this); } else { return visitor.visitChildren(this); } @@ -16979,18 +16983,18 @@ export class ColumnTypeExprEnumContext extends ColumnTypeExprContext { } -export class ColumnExprListContext extends antlr.ParserRuleContext { +export class ColumnExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnsExpr(): ColumnsExprContext[]; - public columnsExpr(i: number): ColumnsExprContext | null; - public columnsExpr(i?: number): ColumnsExprContext[] | ColumnsExprContext | null { + public columnsExpression(): ColumnsExpressionContext[]; + public columnsExpression(i: number): ColumnsExpressionContext | null; + public columnsExpression(i?: number): ColumnsExpressionContext[] | ColumnsExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnsExprContext); + return this.getRuleContexts(ColumnsExpressionContext); } - return this.getRuleContext(i, ColumnsExprContext); + return this.getRuleContext(i, ColumnsExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -17002,11 +17006,11 @@ export class ColumnExprListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnExprList; + return ClickHouseParser.RULE_columnExpressionList; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprList) { - return visitor.visitColumnExprList(this); + if (visitor.visitColumnExpressionList) { + return visitor.visitColumnExpressionList(this); } else { return visitor.visitChildren(this); } @@ -17014,35 +17018,19 @@ export class ColumnExprListContext extends antlr.ParserRuleContext { } -export class ColumnsExprContext extends antlr.ParserRuleContext { +export class ColumnsExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnsExpr; - } - public override copyFrom(ctx: ColumnsExprContext): void { - super.copyFrom(ctx); + return ClickHouseParser.RULE_columnsExpression; } -} -export class ColumnsExprColumnContext extends ColumnsExprContext { - public constructor(ctx: ColumnsExprContext) { - super(ctx.parent, ctx.invokingState); + public override copyFrom(ctx: ColumnsExpressionContext): void { super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; - } - public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnsExprColumn) { - return visitor.visitColumnsExprColumn(this); - } else { - return visitor.visitChildren(this); - } - } } -export class ColumnsExprAsteriskContext extends ColumnsExprContext { - public constructor(ctx: ColumnsExprContext) { +export class ColumnsExpressionAsteriskContext extends ColumnsExpressionContext { + public constructor(ctx: ColumnsExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -17056,213 +17044,247 @@ export class ColumnsExprAsteriskContext extends ColumnsExprContext { return this.getToken(ClickHouseParser.DOT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnsExprAsterisk) { - return visitor.visitColumnsExprAsterisk(this); + if (visitor.visitColumnsExpressionAsterisk) { + return visitor.visitColumnsExpressionAsterisk(this); } else { return visitor.visitChildren(this); } } } -export class ColumnsExprSubqueryContext extends ColumnsExprContext { - public constructor(ctx: ColumnsExprContext) { +export class ColumnsExpressionSubqueryContext extends ColumnsExpressionContext { + public constructor(ctx: ColumnsExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public selectUnionStmt(): SelectUnionStmtContext { - return this.getRuleContext(0, SelectUnionStmtContext)!; + public selectUnionStatement(): SelectUnionStatementContext { + return this.getRuleContext(0, SelectUnionStatementContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnsExprSubquery) { - return visitor.visitColumnsExprSubquery(this); + if (visitor.visitColumnsExpressionSubquery) { + return visitor.visitColumnsExpressionSubquery(this); } else { return visitor.visitChildren(this); } } } - - -export class ColumnExprContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); +export class ColumnsExpressionColumnContext extends ColumnsExpressionContext { + public constructor(ctx: ColumnsExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; + } + public override accept(visitor: ClickHouseParserVisitor): Result | null { + if (visitor.visitColumnsExpressionColumn) { + return visitor.visitColumnsExpressionColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ColumnExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnExpr; + return ClickHouseParser.RULE_columnExpression; } - public override copyFrom(ctx: ColumnExprContext): void { + public override copyFrom(ctx: ColumnExpressionContext): void { super.copyFrom(ctx); } } -export class ColumnExprTernaryOpContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionIsNullContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); - } - - return this.getRuleContext(i, ColumnExprContext); + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } - public QUESTIONMARK(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.QUESTIONMARK, 0)!; + public IS(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.IS, 0)!; } - public COLON(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.COLON, 0)!; + public NULL_SQL(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.NULL_SQL, 0)!; + } + public NOT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.NOT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprTernaryOp) { - return visitor.visitColumnExprTernaryOp(this); + if (visitor.visitColumnExpressionIsNull) { + return visitor.visitColumnExpressionIsNull(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprAliasContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionTupleContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; - } - public alias(): AliasContext | null { - return this.getRuleContext(0, AliasContext); + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public AS(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.AS, 0); + public columnExpressionList(): ColumnExpressionListContext { + return this.getRuleContext(0, ColumnExpressionListContext)!; } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprAlias) { - return visitor.visitColumnExprAlias(this); + if (visitor.visitColumnExpressionTuple) { + return visitor.visitColumnExpressionTuple(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprExtractContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionAndContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public EXTRACT(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.EXTRACT, 0)!; + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnExpressionContext); + } + + return this.getRuleContext(i, ColumnExpressionContext); } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; + public AND(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.AND, 0)!; } - public interval(): IntervalContext { - return this.getRuleContext(0, IntervalContext)!; + public override accept(visitor: ClickHouseParserVisitor): Result | null { + if (visitor.visitColumnExpressionAnd) { + return visitor.visitColumnExpressionAnd(this); + } else { + return visitor.visitChildren(this); + } } - public FROM(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.FROM, 0)!; +} +export class ColumnExpressionDateContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public DATE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DATE, 0)!; } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; + public STRING_LITERAL(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.STRING_LITERAL, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprExtract) { - return visitor.visitColumnExprExtract(this); + if (visitor.visitColumnExpressionDate) { + return visitor.visitColumnExpressionDate(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprNegateContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionBetweenContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public DASH(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DASH, 0)!; + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnExpressionContext); + } + + return this.getRuleContext(i, ColumnExpressionContext); + } + public BETWEEN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.BETWEEN, 0)!; + } + public AND(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.AND, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public NOT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.NOT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprNegate) { - return visitor.visitColumnExprNegate(this); + if (visitor.visitColumnExpressionBetween) { + return visitor.visitColumnExpressionBetween(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprSubqueryContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionTrimContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } + public TRIM(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.TRIM, 0)!; + } public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public selectUnionStmt(): SelectUnionStmtContext { - return this.getRuleContext(0, SelectUnionStmtContext)!; + public STRING_LITERAL(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.STRING_LITERAL, 0)!; + } + public FROM(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.FROM, 0)!; + } + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; } - public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprSubquery) { - return visitor.visitColumnExprSubquery(this); - } else { - return visitor.visitChildren(this); - } + public BOTH(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.BOTH, 0); } -} -export class ColumnExprLiteralContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public LEADING(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LEADING, 0); } - public literal(): LiteralContext { - return this.getRuleContext(0, LiteralContext)!; + public TRAILING(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.TRAILING, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprLiteral) { - return visitor.visitColumnExprLiteral(this); + if (visitor.visitColumnExpressionTrim) { + return visitor.visitColumnExpressionTrim(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprArrayContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionNotContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public LBRACKET(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LBRACKET, 0)!; - } - public RBRACKET(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RBRACKET, 0)!; + public NOT(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.NOT, 0)!; } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprArray) { - return visitor.visitColumnExprArray(this); + if (visitor.visitColumnExpressionNot) { + return visitor.visitColumnExpressionNot(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprSubstringContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionSubstringContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -17272,14 +17294,14 @@ export class ColumnExprSubstringContext extends ColumnExprContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); + return this.getRuleContext(i, ColumnExpressionContext); } public FROM(): antlr.TerminalNode { return this.getToken(ClickHouseParser.FROM, 0)!; @@ -17291,415 +17313,443 @@ export class ColumnExprSubstringContext extends ColumnExprContext { return this.getToken(ClickHouseParser.FOR, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprSubstring) { - return visitor.visitColumnExprSubstring(this); + if (visitor.visitColumnExpressionSubstring) { + return visitor.visitColumnExpressionSubstring(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprCastContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionCaseContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public CAST(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.CAST, 0)!; + public CASE(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.CASE, 0)!; } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; + public END(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.END, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnExpressionContext); + } + + return this.getRuleContext(i, ColumnExpressionContext); } - public AS(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.AS, 0)!; + public WHEN(): antlr.TerminalNode[]; + public WHEN(i: number): antlr.TerminalNode | null; + public WHEN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.WHEN); + } else { + return this.getToken(ClickHouseParser.WHEN, i); + } } - public columnTypeExpr(): ColumnTypeExprContext { - return this.getRuleContext(0, ColumnTypeExprContext)!; + public THEN(): antlr.TerminalNode[]; + public THEN(i: number): antlr.TerminalNode | null; + public THEN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.THEN); + } else { + return this.getToken(ClickHouseParser.THEN, i); + } } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; + public ELSE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.ELSE, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprCast) { - return visitor.visitColumnExprCast(this); + if (visitor.visitColumnExpressionCase) { + return visitor.visitColumnExpressionCase(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprOrContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionIdentifierContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); - } - - return this.getRuleContext(i, ColumnExprContext); - } - public OR(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.OR, 0)!; + public columnIdentifier(): ColumnIdentifierContext { + return this.getRuleContext(0, ColumnIdentifierContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprOr) { - return visitor.visitColumnExprOr(this); + if (visitor.visitColumnExpressionIdentifier) { + return visitor.visitColumnExpressionIdentifier(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprPrecedence1Context extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionArrayAccessContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); - } - public ASTERISK(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.ASTERISK, 0); + return this.getRuleContext(i, ColumnExpressionContext); } - public SLASH(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.SLASH, 0); + public LBRACKET(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LBRACKET, 0)!; } - public PERCENT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.PERCENT, 0); + public RBRACKET(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RBRACKET, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprPrecedence1) { - return visitor.visitColumnExprPrecedence1(this); + if (visitor.visitColumnExpressionArrayAccess) { + return visitor.visitColumnExpressionArrayAccess(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprPrecedence2Context extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionFunctionContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); - } - - return this.getRuleContext(i, ColumnExprContext); + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - public PLUS(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.PLUS, 0); + public LPAREN(): antlr.TerminalNode[]; + public LPAREN(i: number): antlr.TerminalNode | null; + public LPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.LPAREN); + } else { + return this.getToken(ClickHouseParser.LPAREN, i); + } } - public DASH(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.DASH, 0); + public RPAREN(): antlr.TerminalNode[]; + public RPAREN(i: number): antlr.TerminalNode | null; + public RPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.RPAREN); + } else { + return this.getToken(ClickHouseParser.RPAREN, i); + } } - public CONCAT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.CONCAT, 0); + public DISTINCT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.DISTINCT, 0); + } + public columnArgumentList(): ColumnArgumentListContext | null { + return this.getRuleContext(0, ColumnArgumentListContext); + } + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprPrecedence2) { - return visitor.visitColumnExprPrecedence2(this); + if (visitor.visitColumnExpressionFunction) { + return visitor.visitColumnExpressionFunction(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprPrecedence3Context extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionAsteriskContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); - } - - return this.getRuleContext(i, ColumnExprContext); - } - public EQ_DOUBLE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.EQ_DOUBLE, 0); - } - public EQ_SINGLE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.EQ_SINGLE, 0); - } - public NOT_EQ(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.NOT_EQ, 0); - } - public LE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LE, 0); - } - public GE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.GE, 0); - } - public LT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LT, 0); - } - public GT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.GT, 0); - } - public IN(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.IN, 0); - } - public LIKE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LIKE, 0); - } - public ILIKE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.ILIKE, 0); + public ASTERISK(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.ASTERISK, 0)!; } - public GLOBAL(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.GLOBAL, 0); + public tableIdentifier(): TableIdentifierContext | null { + return this.getRuleContext(0, TableIdentifierContext); } - public NOT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.NOT, 0); + public DOT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.DOT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprPrecedence3) { - return visitor.visitColumnExprPrecedence3(this); + if (visitor.visitColumnExpressionAsterisk) { + return visitor.visitColumnExpressionAsterisk(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprIntervalContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionLiteralContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public INTERVAL(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.INTERVAL, 0)!; - } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; - } - public interval(): IntervalContext { - return this.getRuleContext(0, IntervalContext)!; + public literal(): LiteralContext { + return this.getRuleContext(0, LiteralContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprInterval) { - return visitor.visitColumnExprInterval(this); + if (visitor.visitColumnExpressionLiteral) { + return visitor.visitColumnExpressionLiteral(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprIsNullContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionWinFunctionContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - public IS(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.IS, 0)!; + public OVER(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.OVER, 0)!; } - public NULL_SQL(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.NULL_SQL, 0)!; + public LPAREN(): antlr.TerminalNode[]; + public LPAREN(i: number): antlr.TerminalNode | null; + public LPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.LPAREN); + } else { + return this.getToken(ClickHouseParser.LPAREN, i); + } } - public NOT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.NOT, 0); + public windowExpression(): WindowExpressionContext { + return this.getRuleContext(0, WindowExpressionContext)!; + } + public RPAREN(): antlr.TerminalNode[]; + public RPAREN(i: number): antlr.TerminalNode | null; + public RPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ClickHouseParser.RPAREN); + } else { + return this.getToken(ClickHouseParser.RPAREN, i); + } + } + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprIsNull) { - return visitor.visitColumnExprIsNull(this); + if (visitor.visitColumnExpressionWinFunction) { + return visitor.visitColumnExpressionWinFunction(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprWinFunctionTargetContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionTernaryOpContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext[]; - public identifier(i: number): IdentifierContext | null; - public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(IdentifierContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, IdentifierContext); + return this.getRuleContext(i, ColumnExpressionContext); } - public OVER(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.OVER, 0)!; - } - public LPAREN(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LPAREN, 0); - } - public RPAREN(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.RPAREN, 0); + public QUESTIONMARK(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.QUESTIONMARK, 0)!; } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public COLON(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.COLON, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprWinFunctionTarget) { - return visitor.visitColumnExprWinFunctionTarget(this); + if (visitor.visitColumnExpressionTernaryOp) { + return visitor.visitColumnExpressionTernaryOp(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprTrimContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionArrayContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public TRIM(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.TRIM, 0)!; - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; + public LBRACKET(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LBRACKET, 0)!; } - public STRING_LITERAL(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.STRING_LITERAL, 0)!; + public RBRACKET(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RBRACKET, 0)!; } - public FROM(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.FROM, 0)!; + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public override accept(visitor: ClickHouseParserVisitor): Result | null { + if (visitor.visitColumnExpressionArray) { + return visitor.visitColumnExpressionArray(this); + } else { + return visitor.visitChildren(this); + } } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; +} +export class ColumnExpressionTupleAccessContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public BOTH(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.BOTH, 0); + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } - public LEADING(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.LEADING, 0); + public DOT(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DOT, 0)!; } - public TRAILING(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.TRAILING, 0); + public DECIMAL_LITERAL(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DECIMAL_LITERAL, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprTrim) { - return visitor.visitColumnExprTrim(this); + if (visitor.visitColumnExpressionTupleAccess) { + return visitor.visitColumnExpressionTupleAccess(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprTupleContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionParensContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public LPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public columnExprList(): ColumnExprListContext { - return this.getRuleContext(0, ColumnExprListContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public RPAREN(): antlr.TerminalNode { return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprTuple) { - return visitor.visitColumnExprTuple(this); + if (visitor.visitColumnExpressionParens) { + return visitor.visitColumnExpressionParens(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprArrayAccessContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionWinFunctionTargetContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(IdentifierContext); } - return this.getRuleContext(i, ColumnExprContext); + return this.getRuleContext(i, IdentifierContext); } - public LBRACKET(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LBRACKET, 0)!; + public OVER(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.OVER, 0)!; } - public RBRACKET(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RBRACKET, 0)!; + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LPAREN, 0); + } + public RPAREN(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.RPAREN, 0); + } + public columnExpressionList(): ColumnExpressionListContext | null { + return this.getRuleContext(0, ColumnExpressionListContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprArrayAccess) { - return visitor.visitColumnExprArrayAccess(this); + if (visitor.visitColumnExpressionWinFunctionTarget) { + return visitor.visitColumnExpressionWinFunctionTarget(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprBetweenContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionAliasContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); - } - - return this.getRuleContext(i, ColumnExprContext); + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } - public BETWEEN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.BETWEEN, 0)!; + public alias(): AliasContext | null { + return this.getRuleContext(0, AliasContext); } - public AND(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.AND, 0)!; + public AS(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.AS, 0); } - public NOT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.NOT, 0); + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprBetween) { - return visitor.visitColumnExprBetween(this); + if (visitor.visitColumnExpressionAlias) { + return visitor.visitColumnExpressionAlias(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprParensContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionPrecedence3Context extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnExpressionContext); + } + + return this.getRuleContext(i, ColumnExpressionContext); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public EQ_DOUBLE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.EQ_DOUBLE, 0); } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; + public EQ_SINGLE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.EQ_SINGLE, 0); + } + public NOT_EQ(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.NOT_EQ, 0); + } + public LE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LE, 0); + } + public GE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.GE, 0); + } + public LT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LT, 0); + } + public GT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.GT, 0); + } + public IN(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.IN, 0); + } + public LIKE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.LIKE, 0); + } + public ILIKE(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.ILIKE, 0); + } + public GLOBAL(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.GLOBAL, 0); + } + public NOT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.NOT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprParens) { - return visitor.visitColumnExprParens(this); + if (visitor.visitColumnExpressionPrecedence3) { + return visitor.visitColumnExpressionPrecedence3(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprTimestampContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionTimestampContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -17710,266 +17760,220 @@ export class ColumnExprTimestampContext extends ColumnExprContext { return this.getToken(ClickHouseParser.STRING_LITERAL, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprTimestamp) { - return visitor.visitColumnExprTimestamp(this); + if (visitor.visitColumnExpressionTimestamp) { + return visitor.visitColumnExpressionTimestamp(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprAndContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionPrecedence2Context extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); - } - public AND(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.AND, 0)!; - } - public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprAnd) { - return visitor.visitColumnExprAnd(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ColumnExprTupleAccessContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + return this.getRuleContext(i, ColumnExpressionContext); } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public PLUS(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.PLUS, 0); } - public DOT(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DOT, 0)!; + public DASH(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.DASH, 0); } - public DECIMAL_LITERAL(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DECIMAL_LITERAL, 0)!; + public CONCAT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.CONCAT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprTupleAccess) { - return visitor.visitColumnExprTupleAccess(this); + if (visitor.visitColumnExpressionPrecedence2) { + return visitor.visitColumnExpressionPrecedence2(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprCaseContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionPrecedence1Context extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public CASE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.CASE, 0)!; - } - public END(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.END, 0)!; - } - public columnExpr(): ColumnExprContext[]; - public columnExpr(i: number): ColumnExprContext | null; - public columnExpr(i?: number): ColumnExprContext[] | ColumnExprContext | null { + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnExprContext); + return this.getRuleContexts(ColumnExpressionContext); } - return this.getRuleContext(i, ColumnExprContext); + return this.getRuleContext(i, ColumnExpressionContext); } - public WHEN(): antlr.TerminalNode[]; - public WHEN(i: number): antlr.TerminalNode | null; - public WHEN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.WHEN); - } else { - return this.getToken(ClickHouseParser.WHEN, i); - } + public ASTERISK(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.ASTERISK, 0); } - public THEN(): antlr.TerminalNode[]; - public THEN(i: number): antlr.TerminalNode | null; - public THEN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.THEN); - } else { - return this.getToken(ClickHouseParser.THEN, i); - } + public SLASH(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.SLASH, 0); } - public ELSE(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.ELSE, 0); + public PERCENT(): antlr.TerminalNode | null { + return this.getToken(ClickHouseParser.PERCENT, 0); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprCase) { - return visitor.visitColumnExprCase(this); + if (visitor.visitColumnExpressionPrecedence1) { + return visitor.visitColumnExpressionPrecedence1(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprDateContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionIntervalContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public DATE(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.DATE, 0)!; + public INTERVAL(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.INTERVAL, 0)!; } - public STRING_LITERAL(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.STRING_LITERAL, 0)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; + } + public interval(): IntervalContext { + return this.getRuleContext(0, IntervalContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprDate) { - return visitor.visitColumnExprDate(this); + if (visitor.visitColumnExpressionInterval) { + return visitor.visitColumnExpressionInterval(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprNotContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionSubqueryContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public NOT(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.NOT, 0)!; + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public selectUnionStatement(): SelectUnionStatementContext { + return this.getRuleContext(0, SelectUnionStatementContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprNot) { - return visitor.visitColumnExprNot(this); + if (visitor.visitColumnExpressionSubquery) { + return visitor.visitColumnExpressionSubquery(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprWinFunctionContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionNegateContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public OVER(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.OVER, 0)!; - } - public LPAREN(): antlr.TerminalNode[]; - public LPAREN(i: number): antlr.TerminalNode | null; - public LPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.LPAREN); - } else { - return this.getToken(ClickHouseParser.LPAREN, i); - } - } - public windowExpr(): WindowExprContext { - return this.getRuleContext(0, WindowExprContext)!; - } - public RPAREN(): antlr.TerminalNode[]; - public RPAREN(i: number): antlr.TerminalNode | null; - public RPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.RPAREN); - } else { - return this.getToken(ClickHouseParser.RPAREN, i); - } + public DASH(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.DASH, 0)!; } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprWinFunction) { - return visitor.visitColumnExprWinFunction(this); + if (visitor.visitColumnExpressionNegate) { + return visitor.visitColumnExpressionNegate(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprIdentifierContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionExtractContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnIdentifier(): ColumnIdentifierContext { - return this.getRuleContext(0, ColumnIdentifierContext)!; + public EXTRACT(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.EXTRACT, 0)!; + } + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; + } + public interval(): IntervalContext { + return this.getRuleContext(0, IntervalContext)!; + } + public FROM(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.FROM, 0)!; + } + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprIdentifier) { - return visitor.visitColumnExprIdentifier(this); + if (visitor.visitColumnExpressionExtract) { + return visitor.visitColumnExpressionExtract(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprFunctionContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionCastContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public CAST(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.CAST, 0)!; } - public LPAREN(): antlr.TerminalNode[]; - public LPAREN(i: number): antlr.TerminalNode | null; - public LPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.LPAREN); - } else { - return this.getToken(ClickHouseParser.LPAREN, i); - } + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; } - public RPAREN(): antlr.TerminalNode[]; - public RPAREN(i: number): antlr.TerminalNode | null; - public RPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ClickHouseParser.RPAREN); - } else { - return this.getToken(ClickHouseParser.RPAREN, i); - } + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } - public DISTINCT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.DISTINCT, 0); + public AS(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.AS, 0)!; } - public columnArgList(): ColumnArgListContext | null { - return this.getRuleContext(0, ColumnArgListContext); + public columnTypeExpression(): ColumnTypeExpressionContext { + return this.getRuleContext(0, ColumnTypeExpressionContext)!; } - public columnExprList(): ColumnExprListContext | null { - return this.getRuleContext(0, ColumnExprListContext); + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprFunction) { - return visitor.visitColumnExprFunction(this); + if (visitor.visitColumnExpressionCast) { + return visitor.visitColumnExpressionCast(this); } else { return visitor.visitChildren(this); } } } -export class ColumnExprAsteriskContext extends ColumnExprContext { - public constructor(ctx: ColumnExprContext) { +export class ColumnExpressionOrContext extends ColumnExpressionContext { + public constructor(ctx: ColumnExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public ASTERISK(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.ASTERISK, 0)!; - } - public tableIdentifier(): TableIdentifierContext | null { - return this.getRuleContext(0, TableIdentifierContext); + public columnExpression(): ColumnExpressionContext[]; + public columnExpression(i: number): ColumnExpressionContext | null; + public columnExpression(i?: number): ColumnExpressionContext[] | ColumnExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnExpressionContext); + } + + return this.getRuleContext(i, ColumnExpressionContext); } - public DOT(): antlr.TerminalNode | null { - return this.getToken(ClickHouseParser.DOT, 0); + public OR(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.OR, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnExprAsterisk) { - return visitor.visitColumnExprAsterisk(this); + if (visitor.visitColumnExpressionOr) { + return visitor.visitColumnExpressionOr(this); } else { return visitor.visitChildren(this); } @@ -17977,18 +17981,18 @@ export class ColumnExprAsteriskContext extends ColumnExprContext { } -export class ColumnArgListContext extends antlr.ParserRuleContext { +export class ColumnArgumentListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnArgExpr(): ColumnArgExprContext[]; - public columnArgExpr(i: number): ColumnArgExprContext | null; - public columnArgExpr(i?: number): ColumnArgExprContext[] | ColumnArgExprContext | null { + public columnArgumentExpression(): ColumnArgumentExpressionContext[]; + public columnArgumentExpression(i: number): ColumnArgumentExpressionContext | null; + public columnArgumentExpression(i?: number): ColumnArgumentExpressionContext[] | ColumnArgumentExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnArgExprContext); + return this.getRuleContexts(ColumnArgumentExpressionContext); } - return this.getRuleContext(i, ColumnArgExprContext); + return this.getRuleContext(i, ColumnArgumentExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -18000,11 +18004,11 @@ export class ColumnArgListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnArgList; + return ClickHouseParser.RULE_columnArgumentList; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnArgList) { - return visitor.visitColumnArgList(this); + if (visitor.visitColumnArgumentList) { + return visitor.visitColumnArgumentList(this); } else { return visitor.visitChildren(this); } @@ -18012,22 +18016,22 @@ export class ColumnArgListContext extends antlr.ParserRuleContext { } -export class ColumnArgExprContext extends antlr.ParserRuleContext { +export class ColumnArgumentExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnLambdaExpr(): ColumnLambdaExprContext | null { - return this.getRuleContext(0, ColumnLambdaExprContext); + public columnLambdaExpression(): ColumnLambdaExpressionContext | null { + return this.getRuleContext(0, ColumnLambdaExpressionContext); } - public columnExpr(): ColumnExprContext | null { - return this.getRuleContext(0, ColumnExprContext); + public columnExpression(): ColumnExpressionContext | null { + return this.getRuleContext(0, ColumnExpressionContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnArgExpr; + return ClickHouseParser.RULE_columnArgumentExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnArgExpr) { - return visitor.visitColumnArgExpr(this); + if (visitor.visitColumnArgumentExpression) { + return visitor.visitColumnArgumentExpression(this); } else { return visitor.visitChildren(this); } @@ -18035,15 +18039,15 @@ export class ColumnArgExprContext extends antlr.ParserRuleContext { } -export class ColumnLambdaExprContext extends antlr.ParserRuleContext { +export class ColumnLambdaExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ARROW(): antlr.TerminalNode { return this.getToken(ClickHouseParser.ARROW, 0)!; } - public columnExpr(): ColumnExprContext { - return this.getRuleContext(0, ColumnExprContext)!; + public columnExpression(): ColumnExpressionContext { + return this.getRuleContext(0, ColumnExpressionContext)!; } public LPAREN(): antlr.TerminalNode | null { return this.getToken(ClickHouseParser.LPAREN, 0); @@ -18070,11 +18074,11 @@ export class ColumnLambdaExprContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return ClickHouseParser.RULE_columnLambdaExpr; + return ClickHouseParser.RULE_columnLambdaExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitColumnLambdaExpr) { - return visitor.visitColumnLambdaExpr(this); + if (visitor.visitColumnLambdaExpression) { + return visitor.visitColumnLambdaExpression(this); } else { return visitor.visitChildren(this); } @@ -18120,62 +18124,56 @@ export class ColumnIdentifierContext extends antlr.ParserRuleContext { } -export class TableExprContext extends antlr.ParserRuleContext { +export class TableExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableExpr; + return ClickHouseParser.RULE_tableExpression; } - public override copyFrom(ctx: TableExprContext): void { + public override copyFrom(ctx: TableExpressionContext): void { super.copyFrom(ctx); } } -export class TableExprIdentifierContext extends TableExprContext { - public constructor(ctx: TableExprContext) { +export class TableExpressionFunctionContext extends TableExpressionContext { + public constructor(ctx: TableExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public tableIdentifier(): TableIdentifierContext { - return this.getRuleContext(0, TableIdentifierContext)!; + public tableFunctionExpression(): TableFunctionExpressionContext { + return this.getRuleContext(0, TableFunctionExpressionContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableExprIdentifier) { - return visitor.visitTableExprIdentifier(this); + if (visitor.visitTableExpressionFunction) { + return visitor.visitTableExpressionFunction(this); } else { return visitor.visitChildren(this); } } } -export class TableExprSubqueryContext extends TableExprContext { - public constructor(ctx: TableExprContext) { +export class TableExpressionIdentifierContext extends TableExpressionContext { + public constructor(ctx: TableExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.LPAREN, 0)!; - } - public selectUnionStmt(): SelectUnionStmtContext { - return this.getRuleContext(0, SelectUnionStmtContext)!; - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ClickHouseParser.RPAREN, 0)!; + public tableIdentifier(): TableIdentifierContext { + return this.getRuleContext(0, TableIdentifierContext)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableExprSubquery) { - return visitor.visitTableExprSubquery(this); + if (visitor.visitTableExpressionIdentifier) { + return visitor.visitTableExpressionIdentifier(this); } else { return visitor.visitChildren(this); } } } -export class TableExprAliasContext extends TableExprContext { - public constructor(ctx: TableExprContext) { +export class TableExpressionAliasContext extends TableExpressionContext { + public constructor(ctx: TableExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public tableExpr(): TableExprContext { - return this.getRuleContext(0, TableExprContext)!; + public tableExpression(): TableExpressionContext { + return this.getRuleContext(0, TableExpressionContext)!; } public alias(): AliasContext | null { return this.getRuleContext(0, AliasContext); @@ -18187,24 +18185,30 @@ export class TableExprAliasContext extends TableExprContext { return this.getRuleContext(0, IdentifierContext); } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableExprAlias) { - return visitor.visitTableExprAlias(this); + if (visitor.visitTableExpressionAlias) { + return visitor.visitTableExpressionAlias(this); } else { return visitor.visitChildren(this); } } } -export class TableExprFunctionContext extends TableExprContext { - public constructor(ctx: TableExprContext) { +export class TableExpressionSubqueryContext extends TableExpressionContext { + public constructor(ctx: TableExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public tableFunctionExpr(): TableFunctionExprContext { - return this.getRuleContext(0, TableFunctionExprContext)!; + public LPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.LPAREN, 0)!; + } + public selectUnionStatement(): SelectUnionStatementContext { + return this.getRuleContext(0, SelectUnionStatementContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(ClickHouseParser.RPAREN, 0)!; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableExprFunction) { - return visitor.visitTableExprFunction(this); + if (visitor.visitTableExpressionSubquery) { + return visitor.visitTableExpressionSubquery(this); } else { return visitor.visitChildren(this); } @@ -18212,7 +18216,7 @@ export class TableExprFunctionContext extends TableExprContext { } -export class TableFunctionExprContext extends antlr.ParserRuleContext { +export class TableFunctionExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -18229,11 +18233,11 @@ export class TableFunctionExprContext extends antlr.ParserRuleContext { return this.getRuleContext(0, TableArgListContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableFunctionExpr; + return ClickHouseParser.RULE_tableFunctionExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableFunctionExpr) { - return visitor.visitTableFunctionExpr(this); + if (visitor.visitTableFunctionExpression) { + return visitor.visitTableFunctionExpression(this); } else { return visitor.visitChildren(this); } @@ -18271,14 +18275,14 @@ export class TableArgListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableArgExpr(): TableArgExprContext[]; - public tableArgExpr(i: number): TableArgExprContext | null; - public tableArgExpr(i?: number): TableArgExprContext[] | TableArgExprContext | null { + public tableArgExpression(): TableArgExpressionContext[]; + public tableArgExpression(i: number): TableArgExpressionContext | null; + public tableArgExpression(i?: number): TableArgExpressionContext[] | TableArgExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(TableArgExprContext); + return this.getRuleContexts(TableArgExpressionContext); } - return this.getRuleContext(i, TableArgExprContext); + return this.getRuleContext(i, TableArgExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -18302,25 +18306,25 @@ export class TableArgListContext extends antlr.ParserRuleContext { } -export class TableArgExprContext extends antlr.ParserRuleContext { +export class TableArgExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnIdentifier(): ColumnIdentifierContext | null { return this.getRuleContext(0, ColumnIdentifierContext); } - public tableFunctionExpr(): TableFunctionExprContext | null { - return this.getRuleContext(0, TableFunctionExprContext); + public tableFunctionExpression(): TableFunctionExpressionContext | null { + return this.getRuleContext(0, TableFunctionExpressionContext); } public literal(): LiteralContext | null { return this.getRuleContext(0, LiteralContext); } public override get ruleIndex(): number { - return ClickHouseParser.RULE_tableArgExpr; + return ClickHouseParser.RULE_tableArgExpression; } public override accept(visitor: ClickHouseParserVisitor): Result | null { - if (visitor.visitTableArgExpr) { - return visitor.visitTableArgExpr(this); + if (visitor.visitTableArgExpression) { + return visitor.visitTableArgExpression(this); } else { return visitor.visitChildren(this); } diff --git a/src/autocomplete/clickhouse/generated/ClickHouseParserVisitor.ts b/src/autocomplete/clickhouse/generated/ClickHouseParserVisitor.ts index 37c78caf..6abc88ae 100644 --- a/src/autocomplete/clickhouse/generated/ClickHouseParserVisitor.ts +++ b/src/autocomplete/clickhouse/generated/ClickHouseParserVisitor.ts @@ -16,10 +16,10 @@ import { RootContext } from "./ClickHouseParser.js"; import { StatementsContext } from "./ClickHouseParser.js"; import { StatementContext } from "./ClickHouseParser.js"; import { NotInsertStatementContext } from "./ClickHouseParser.js"; -import { CtesContext } from "./ClickHouseParser.js"; +import { CommonTableExpressionStatementContext } from "./ClickHouseParser.js"; import { NamedQueryContext } from "./ClickHouseParser.js"; import { ColumnAliasesContext } from "./ClickHouseParser.js"; -import { AlterTableStmtContext } from "./ClickHouseParser.js"; +import { AlterTableStatementContext } from "./ClickHouseParser.js"; import { AlterTableClauseAddColumnContext } from "./ClickHouseParser.js"; import { AlterTableClauseAddIndexContext } from "./ClickHouseParser.js"; import { AlterTableClauseAddProjectionContext } from "./ClickHouseParser.js"; @@ -48,12 +48,12 @@ import { AlterTableClauseRemoveTTLContext } from "./ClickHouseParser.js"; import { AlterTableClauseRenameContext } from "./ClickHouseParser.js"; import { AlterTableClauseReplaceContext } from "./ClickHouseParser.js"; import { AlterTableClauseUpdateContext } from "./ClickHouseParser.js"; -import { AssignmentExprListContext } from "./ClickHouseParser.js"; -import { AssignmentExprContext } from "./ClickHouseParser.js"; +import { AssignmentExpressionListContext } from "./ClickHouseParser.js"; +import { AssignmentExpressionContext } from "./ClickHouseParser.js"; import { TableColumnPropertyTypeContext } from "./ClickHouseParser.js"; import { PartitionClauseContext } from "./ClickHouseParser.js"; -import { AttachDictionaryStmtContext } from "./ClickHouseParser.js"; -import { CheckStmtContext } from "./ClickHouseParser.js"; +import { AttachDictionaryStatementContext } from "./ClickHouseParser.js"; +import { CheckStatementContext } from "./ClickHouseParser.js"; import { DeleteStatementContext } from "./ClickHouseParser.js"; import { CreateTableStatementContext } from "./ClickHouseParser.js"; import { CreateDatabaseStatementContext } from "./ClickHouseParser.js"; @@ -61,12 +61,12 @@ import { CreateDictionaryStatementContext } from "./ClickHouseParser.js"; import { CreateLiveViewStatementContext } from "./ClickHouseParser.js"; import { CreateMaterializedViewStatementContext } from "./ClickHouseParser.js"; import { CreateViewStatementContext } from "./ClickHouseParser.js"; -import { CreateStmtContext } from "./ClickHouseParser.js"; +import { CreateStatementContext } from "./ClickHouseParser.js"; import { DictionarySchemaClauseContext } from "./ClickHouseParser.js"; -import { DictionaryAttrDfntContext } from "./ClickHouseParser.js"; +import { DictionaryAttributeDefinitionContext } from "./ClickHouseParser.js"; import { DictionaryEngineClauseContext } from "./ClickHouseParser.js"; import { DictionaryPrimaryKeyClauseContext } from "./ClickHouseParser.js"; -import { DictionaryArgExprContext } from "./ClickHouseParser.js"; +import { DictionaryArgumentExpressionContext } from "./ClickHouseParser.js"; import { SourceClauseContext } from "./ClickHouseParser.js"; import { LifetimeClauseContext } from "./ClickHouseParser.js"; import { LayoutClauseContext } from "./ClickHouseParser.js"; @@ -84,43 +84,43 @@ import { PartitionByClauseContext } from "./ClickHouseParser.js"; import { PrimaryKeyClauseContext } from "./ClickHouseParser.js"; import { SampleByClauseContext } from "./ClickHouseParser.js"; import { TtlClauseContext } from "./ClickHouseParser.js"; -import { EngineExprContext } from "./ClickHouseParser.js"; -import { TableElementExprColumnContext } from "./ClickHouseParser.js"; -import { TableElementExprConstraintContext } from "./ClickHouseParser.js"; -import { TableElementExprIndexContext } from "./ClickHouseParser.js"; -import { TableElementExprProjectionContext } from "./ClickHouseParser.js"; -import { TableColumnDfntContext } from "./ClickHouseParser.js"; -import { TableColumnPropertyExprContext } from "./ClickHouseParser.js"; -import { TableIndexDfntContext } from "./ClickHouseParser.js"; -import { TableProjectionDfntContext } from "./ClickHouseParser.js"; -import { CodecExprContext } from "./ClickHouseParser.js"; -import { CodecArgExprContext } from "./ClickHouseParser.js"; -import { TtlExprContext } from "./ClickHouseParser.js"; -import { DescribeStmtContext } from "./ClickHouseParser.js"; -import { DropDatabaseStmtContext } from "./ClickHouseParser.js"; -import { DropTableStmtContext } from "./ClickHouseParser.js"; -import { ExistsDatabaseStmtContext } from "./ClickHouseParser.js"; -import { ExistsTableStmtContext } from "./ClickHouseParser.js"; -import { ExplainDefaultStmtContext } from "./ClickHouseParser.js"; -import { ExplainASTStmtContext } from "./ClickHouseParser.js"; -import { ExplainSyntaxStmtContext } from "./ClickHouseParser.js"; -import { ExplainPipelineStmtContext } from "./ClickHouseParser.js"; -import { ExplainPlanStmtContext } from "./ClickHouseParser.js"; -import { ExplainQueryTreeStmtContext } from "./ClickHouseParser.js"; -import { ExplainEstimateStmtContext } from "./ClickHouseParser.js"; -import { InsertStmtContext } from "./ClickHouseParser.js"; +import { EngineExpressionContext } from "./ClickHouseParser.js"; +import { TableElementExpressionColumnContext } from "./ClickHouseParser.js"; +import { TableElementExpressionConstraintContext } from "./ClickHouseParser.js"; +import { TableElementExpressionIndexContext } from "./ClickHouseParser.js"; +import { TableElementExpressionProjectionContext } from "./ClickHouseParser.js"; +import { TableColumnDefinitionContext } from "./ClickHouseParser.js"; +import { TableColumnPropertyExpressionContext } from "./ClickHouseParser.js"; +import { TableIndexDefinitionContext } from "./ClickHouseParser.js"; +import { TableProjectionDefinitionContext } from "./ClickHouseParser.js"; +import { CodecExpressionContext } from "./ClickHouseParser.js"; +import { CodecArgExpressionContext } from "./ClickHouseParser.js"; +import { TtlExpressionContext } from "./ClickHouseParser.js"; +import { DescribeStatementContext } from "./ClickHouseParser.js"; +import { DropDatabaseStatementContext } from "./ClickHouseParser.js"; +import { DropTableStatementContext } from "./ClickHouseParser.js"; +import { ExistsDatabaseStatementContext } from "./ClickHouseParser.js"; +import { ExistsTableStatementContext } from "./ClickHouseParser.js"; +import { ExplainDefaultStatementContext } from "./ClickHouseParser.js"; +import { ExplainASTStatementContext } from "./ClickHouseParser.js"; +import { ExplainSyntaxStatementContext } from "./ClickHouseParser.js"; +import { ExplainPipelineStatementContext } from "./ClickHouseParser.js"; +import { ExplainPlanStatementContext } from "./ClickHouseParser.js"; +import { ExplainQueryTreeStatementContext } from "./ClickHouseParser.js"; +import { ExplainEstimateStatementContext } from "./ClickHouseParser.js"; +import { InsertStatementContext } from "./ClickHouseParser.js"; import { ColumnsClauseContext } from "./ClickHouseParser.js"; import { DataClauseFormatContext } from "./ClickHouseParser.js"; import { DataClauseValuesContext } from "./ClickHouseParser.js"; import { DataClauseSelectContext } from "./ClickHouseParser.js"; import { ValuesStatementContext } from "./ClickHouseParser.js"; -import { KillMutationStmtContext } from "./ClickHouseParser.js"; -import { OptimizeStmtContext } from "./ClickHouseParser.js"; -import { RenameStmtContext } from "./ClickHouseParser.js"; -import { ProjectionSelectStmtContext } from "./ClickHouseParser.js"; -import { SelectUnionStmtContext } from "./ClickHouseParser.js"; -import { SelectStmtWithParensContext } from "./ClickHouseParser.js"; -import { SelectStmtContext } from "./ClickHouseParser.js"; +import { KillMutationStatementContext } from "./ClickHouseParser.js"; +import { OptimizeStatementContext } from "./ClickHouseParser.js"; +import { RenameStatementContext } from "./ClickHouseParser.js"; +import { ProjectionSelectStatementContext } from "./ClickHouseParser.js"; +import { SelectUnionStatementContext } from "./ClickHouseParser.js"; +import { SelectStatementWithParenthesesContext } from "./ClickHouseParser.js"; +import { SelectStatementContext } from "./ClickHouseParser.js"; import { WithClauseContext } from "./ClickHouseParser.js"; import { TopClauseContext } from "./ClickHouseParser.js"; import { FromClauseContext } from "./ClickHouseParser.js"; @@ -135,92 +135,92 @@ import { ProjectionOrderByClauseContext } from "./ClickHouseParser.js"; import { LimitByClauseContext } from "./ClickHouseParser.js"; import { LimitClauseContext } from "./ClickHouseParser.js"; import { SettingsClauseContext } from "./ClickHouseParser.js"; -import { JoinExprOpContext } from "./ClickHouseParser.js"; -import { JoinExprTableContext } from "./ClickHouseParser.js"; -import { JoinExprParensContext } from "./ClickHouseParser.js"; -import { JoinExprCrossOpContext } from "./ClickHouseParser.js"; +import { JoinExpressionParensContext } from "./ClickHouseParser.js"; +import { JoinExpressionTableContext } from "./ClickHouseParser.js"; +import { JoinExpressionCrossOpContext } from "./ClickHouseParser.js"; +import { JoinExpressionOpContext } from "./ClickHouseParser.js"; import { JoinOpInnerContext } from "./ClickHouseParser.js"; import { JoinOpLeftRightContext } from "./ClickHouseParser.js"; import { JoinOpFullContext } from "./ClickHouseParser.js"; -import { JoinOpCrossContext } from "./ClickHouseParser.js"; +import { JoinOperatorCrossContext } from "./ClickHouseParser.js"; import { JoinConstraintClauseContext } from "./ClickHouseParser.js"; import { SampleClauseContext } from "./ClickHouseParser.js"; -import { LimitExprContext } from "./ClickHouseParser.js"; -import { OrderExprListContext } from "./ClickHouseParser.js"; -import { OrderExprContext } from "./ClickHouseParser.js"; -import { RatioExprContext } from "./ClickHouseParser.js"; -import { SettingExprListContext } from "./ClickHouseParser.js"; -import { SettingExprContext } from "./ClickHouseParser.js"; -import { WindowExprContext } from "./ClickHouseParser.js"; -import { WinPartitionByClauseContext } from "./ClickHouseParser.js"; -import { WinOrderByClauseContext } from "./ClickHouseParser.js"; -import { WinFrameClauseContext } from "./ClickHouseParser.js"; +import { LimitExpressionContext } from "./ClickHouseParser.js"; +import { OrderExpressionListContext } from "./ClickHouseParser.js"; +import { OrderExpressionContext } from "./ClickHouseParser.js"; +import { RatioExpressionContext } from "./ClickHouseParser.js"; +import { SettingExpressionListContext } from "./ClickHouseParser.js"; +import { SettingExpressionContext } from "./ClickHouseParser.js"; +import { WindowExpressionContext } from "./ClickHouseParser.js"; +import { WindowPartitionByClauseContext } from "./ClickHouseParser.js"; +import { WindowOrderByClauseContext } from "./ClickHouseParser.js"; +import { WindowFrameClauseContext } from "./ClickHouseParser.js"; import { FrameStartContext } from "./ClickHouseParser.js"; import { FrameBetweenContext } from "./ClickHouseParser.js"; -import { WinFrameBoundContext } from "./ClickHouseParser.js"; -import { SetStmtContext } from "./ClickHouseParser.js"; -import { ShowCreateDatabaseStmtContext } from "./ClickHouseParser.js"; -import { ShowCreateDictionaryStmtContext } from "./ClickHouseParser.js"; -import { ShowCreateTableStmtContext } from "./ClickHouseParser.js"; -import { ShowDatabasesStmtContext } from "./ClickHouseParser.js"; -import { ShowDictionariesStmtContext } from "./ClickHouseParser.js"; -import { ShowTablesStmtContext } from "./ClickHouseParser.js"; -import { SystemStmtContext } from "./ClickHouseParser.js"; -import { TruncateStmtContext } from "./ClickHouseParser.js"; -import { UseStmtContext } from "./ClickHouseParser.js"; -import { WatchStmtContext } from "./ClickHouseParser.js"; -import { ColumnTypeExprSimpleContext } from "./ClickHouseParser.js"; -import { ColumnTypeExprNestedContext } from "./ClickHouseParser.js"; -import { ColumnTypeExprEnumContext } from "./ClickHouseParser.js"; -import { ColumnTypeExprComplexContext } from "./ClickHouseParser.js"; -import { ColumnTypeExprParamContext } from "./ClickHouseParser.js"; -import { ColumnExprListContext } from "./ClickHouseParser.js"; -import { ColumnsExprAsteriskContext } from "./ClickHouseParser.js"; -import { ColumnsExprSubqueryContext } from "./ClickHouseParser.js"; -import { ColumnsExprColumnContext } from "./ClickHouseParser.js"; -import { ColumnExprTernaryOpContext } from "./ClickHouseParser.js"; -import { ColumnExprAliasContext } from "./ClickHouseParser.js"; -import { ColumnExprExtractContext } from "./ClickHouseParser.js"; -import { ColumnExprNegateContext } from "./ClickHouseParser.js"; -import { ColumnExprSubqueryContext } from "./ClickHouseParser.js"; -import { ColumnExprLiteralContext } from "./ClickHouseParser.js"; -import { ColumnExprArrayContext } from "./ClickHouseParser.js"; -import { ColumnExprSubstringContext } from "./ClickHouseParser.js"; -import { ColumnExprCastContext } from "./ClickHouseParser.js"; -import { ColumnExprOrContext } from "./ClickHouseParser.js"; -import { ColumnExprPrecedence1Context } from "./ClickHouseParser.js"; -import { ColumnExprPrecedence2Context } from "./ClickHouseParser.js"; -import { ColumnExprPrecedence3Context } from "./ClickHouseParser.js"; -import { ColumnExprIntervalContext } from "./ClickHouseParser.js"; -import { ColumnExprIsNullContext } from "./ClickHouseParser.js"; -import { ColumnExprWinFunctionTargetContext } from "./ClickHouseParser.js"; -import { ColumnExprTrimContext } from "./ClickHouseParser.js"; -import { ColumnExprTupleContext } from "./ClickHouseParser.js"; -import { ColumnExprArrayAccessContext } from "./ClickHouseParser.js"; -import { ColumnExprBetweenContext } from "./ClickHouseParser.js"; -import { ColumnExprParensContext } from "./ClickHouseParser.js"; -import { ColumnExprTimestampContext } from "./ClickHouseParser.js"; -import { ColumnExprAndContext } from "./ClickHouseParser.js"; -import { ColumnExprTupleAccessContext } from "./ClickHouseParser.js"; -import { ColumnExprCaseContext } from "./ClickHouseParser.js"; -import { ColumnExprDateContext } from "./ClickHouseParser.js"; -import { ColumnExprNotContext } from "./ClickHouseParser.js"; -import { ColumnExprWinFunctionContext } from "./ClickHouseParser.js"; -import { ColumnExprIdentifierContext } from "./ClickHouseParser.js"; -import { ColumnExprFunctionContext } from "./ClickHouseParser.js"; -import { ColumnExprAsteriskContext } from "./ClickHouseParser.js"; -import { ColumnArgListContext } from "./ClickHouseParser.js"; -import { ColumnArgExprContext } from "./ClickHouseParser.js"; -import { ColumnLambdaExprContext } from "./ClickHouseParser.js"; +import { WindowFrameBoundContext } from "./ClickHouseParser.js"; +import { SetStatementContext } from "./ClickHouseParser.js"; +import { ShowCreateDatabaseStatementContext } from "./ClickHouseParser.js"; +import { ShowCreateDictionaryStatementContext } from "./ClickHouseParser.js"; +import { ShowCreateTableStatementContext } from "./ClickHouseParser.js"; +import { ShowDatabasesStatementContext } from "./ClickHouseParser.js"; +import { ShowDictionariesStatementContext } from "./ClickHouseParser.js"; +import { ShowTablesStatementContext } from "./ClickHouseParser.js"; +import { SystemStatementContext } from "./ClickHouseParser.js"; +import { TruncateStatementContext } from "./ClickHouseParser.js"; +import { UseStatementContext } from "./ClickHouseParser.js"; +import { WatchStatementContext } from "./ClickHouseParser.js"; +import { ColumnTypeExpressionSimpleContext } from "./ClickHouseParser.js"; +import { ColumnTypeExpressionNestedContext } from "./ClickHouseParser.js"; +import { ColumnTypeExpressionEnumContext } from "./ClickHouseParser.js"; +import { ColumnTypeExpressionComplexContext } from "./ClickHouseParser.js"; +import { ColumnTypeExpressionParamContext } from "./ClickHouseParser.js"; +import { ColumnExpressionListContext } from "./ClickHouseParser.js"; +import { ColumnsExpressionAsteriskContext } from "./ClickHouseParser.js"; +import { ColumnsExpressionSubqueryContext } from "./ClickHouseParser.js"; +import { ColumnsExpressionColumnContext } from "./ClickHouseParser.js"; +import { ColumnExpressionIsNullContext } from "./ClickHouseParser.js"; +import { ColumnExpressionTupleContext } from "./ClickHouseParser.js"; +import { ColumnExpressionAndContext } from "./ClickHouseParser.js"; +import { ColumnExpressionDateContext } from "./ClickHouseParser.js"; +import { ColumnExpressionBetweenContext } from "./ClickHouseParser.js"; +import { ColumnExpressionTrimContext } from "./ClickHouseParser.js"; +import { ColumnExpressionNotContext } from "./ClickHouseParser.js"; +import { ColumnExpressionSubstringContext } from "./ClickHouseParser.js"; +import { ColumnExpressionCaseContext } from "./ClickHouseParser.js"; +import { ColumnExpressionIdentifierContext } from "./ClickHouseParser.js"; +import { ColumnExpressionArrayAccessContext } from "./ClickHouseParser.js"; +import { ColumnExpressionFunctionContext } from "./ClickHouseParser.js"; +import { ColumnExpressionAsteriskContext } from "./ClickHouseParser.js"; +import { ColumnExpressionLiteralContext } from "./ClickHouseParser.js"; +import { ColumnExpressionWinFunctionContext } from "./ClickHouseParser.js"; +import { ColumnExpressionTernaryOpContext } from "./ClickHouseParser.js"; +import { ColumnExpressionArrayContext } from "./ClickHouseParser.js"; +import { ColumnExpressionTupleAccessContext } from "./ClickHouseParser.js"; +import { ColumnExpressionParensContext } from "./ClickHouseParser.js"; +import { ColumnExpressionWinFunctionTargetContext } from "./ClickHouseParser.js"; +import { ColumnExpressionAliasContext } from "./ClickHouseParser.js"; +import { ColumnExpressionPrecedence3Context } from "./ClickHouseParser.js"; +import { ColumnExpressionTimestampContext } from "./ClickHouseParser.js"; +import { ColumnExpressionPrecedence2Context } from "./ClickHouseParser.js"; +import { ColumnExpressionPrecedence1Context } from "./ClickHouseParser.js"; +import { ColumnExpressionIntervalContext } from "./ClickHouseParser.js"; +import { ColumnExpressionSubqueryContext } from "./ClickHouseParser.js"; +import { ColumnExpressionNegateContext } from "./ClickHouseParser.js"; +import { ColumnExpressionExtractContext } from "./ClickHouseParser.js"; +import { ColumnExpressionCastContext } from "./ClickHouseParser.js"; +import { ColumnExpressionOrContext } from "./ClickHouseParser.js"; +import { ColumnArgumentListContext } from "./ClickHouseParser.js"; +import { ColumnArgumentExpressionContext } from "./ClickHouseParser.js"; +import { ColumnLambdaExpressionContext } from "./ClickHouseParser.js"; import { ColumnIdentifierContext } from "./ClickHouseParser.js"; -import { TableExprIdentifierContext } from "./ClickHouseParser.js"; -import { TableExprSubqueryContext } from "./ClickHouseParser.js"; -import { TableExprAliasContext } from "./ClickHouseParser.js"; -import { TableExprFunctionContext } from "./ClickHouseParser.js"; -import { TableFunctionExprContext } from "./ClickHouseParser.js"; +import { TableExpressionFunctionContext } from "./ClickHouseParser.js"; +import { TableExpressionIdentifierContext } from "./ClickHouseParser.js"; +import { TableExpressionAliasContext } from "./ClickHouseParser.js"; +import { TableExpressionSubqueryContext } from "./ClickHouseParser.js"; +import { TableFunctionExpressionContext } from "./ClickHouseParser.js"; import { TableIdentifierContext } from "./ClickHouseParser.js"; import { TableArgListContext } from "./ClickHouseParser.js"; -import { TableArgExprContext } from "./ClickHouseParser.js"; +import { TableArgExpressionContext } from "./ClickHouseParser.js"; import { DatabaseIdentifierContext } from "./ClickHouseParser.js"; import { FloatingLiteralContext } from "./ClickHouseParser.js"; import { NumberLiteralContext } from "./ClickHouseParser.js"; @@ -267,11 +267,11 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.ctes`. + * Visit a parse tree produced by `ClickHouseParser.commonTableExpressionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCtes?: (ctx: CtesContext) => Result; + visitCommonTableExpressionStatement?: (ctx: CommonTableExpressionStatementContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.namedQuery`. * @param ctx the parse tree @@ -285,12 +285,12 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `AlterTableStmt` - * labeled alternative in `ClickHouseParser.alterStmt`. + * Visit a parse tree produced by the `AlterTableStatement` + * labeled alternative in `ClickHouseParser.alterStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterTableStmt?: (ctx: AlterTableStmtContext) => Result; + visitAlterTableStatement?: (ctx: AlterTableStatementContext) => Result; /** * Visit a parse tree produced by the `AlterTableClauseAddColumn` * labeled alternative in `ClickHouseParser.alterTableClause`. @@ -488,17 +488,17 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.assignmentExprList`. + * Visit a parse tree produced by `ClickHouseParser.assignmentExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitAssignmentExprList?: (ctx: AssignmentExprListContext) => Result; + visitAssignmentExpressionList?: (ctx: AssignmentExpressionListContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.assignmentExpr`. + * Visit a parse tree produced by `ClickHouseParser.assignmentExpression`. * @param ctx the parse tree * @return the visitor result */ - visitAssignmentExpr?: (ctx: AssignmentExprContext) => Result; + visitAssignmentExpression?: (ctx: AssignmentExpressionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.tableColumnPropertyType`. * @param ctx the parse tree @@ -512,18 +512,18 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `AttachDictionaryStmt` - * labeled alternative in `ClickHouseParser.attachStmt`. + * Visit a parse tree produced by the `AttachDictionaryStatement` + * labeled alternative in `ClickHouseParser.attachStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAttachDictionaryStmt?: (ctx: AttachDictionaryStmtContext) => Result; + visitAttachDictionaryStatement?: (ctx: AttachDictionaryStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.checkStmt`. + * Visit a parse tree produced by `ClickHouseParser.checkStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCheckStmt?: (ctx: CheckStmtContext) => Result; + visitCheckStatement?: (ctx: CheckStatementContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.deleteStatement`. * @param ctx the parse tree @@ -567,11 +567,11 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.createStmt`. + * Visit a parse tree produced by `ClickHouseParser.createStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateStmt?: (ctx: CreateStmtContext) => Result; + visitCreateStatement?: (ctx: CreateStatementContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.dictionarySchemaClause`. * @param ctx the parse tree @@ -579,11 +579,11 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.dictionaryAttrDfnt`. + * Visit a parse tree produced by `ClickHouseParser.dictionaryAttributeDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitDictionaryAttrDfnt?: (ctx: DictionaryAttrDfntContext) => Result; + visitDictionaryAttributeDefinition?: (ctx: DictionaryAttributeDefinitionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.dictionaryEngineClause`. * @param ctx the parse tree @@ -597,11 +597,11 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.dictionaryArgExpr`. + * Visit a parse tree produced by `ClickHouseParser.dictionaryArgumentExpression`. * @param ctx the parse tree * @return the visitor result */ - visitDictionaryArgExpr?: (ctx: DictionaryArgExprContext) => Result; + visitDictionaryArgumentExpression?: (ctx: DictionaryArgumentExpressionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.sourceClause`. * @param ctx the parse tree @@ -708,170 +708,170 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.engineExpr`. + * Visit a parse tree produced by `ClickHouseParser.engineExpression`. * @param ctx the parse tree * @return the visitor result */ - visitEngineExpr?: (ctx: EngineExprContext) => Result; + visitEngineExpression?: (ctx: EngineExpressionContext) => Result; /** - * Visit a parse tree produced by the `TableElementExprColumn` - * labeled alternative in `ClickHouseParser.tableElementExpr`. + * Visit a parse tree produced by the `TableElementExpressionColumn` + * labeled alternative in `ClickHouseParser.tableElementExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableElementExprColumn?: (ctx: TableElementExprColumnContext) => Result; + visitTableElementExpressionColumn?: (ctx: TableElementExpressionColumnContext) => Result; /** - * Visit a parse tree produced by the `TableElementExprConstraint` - * labeled alternative in `ClickHouseParser.tableElementExpr`. + * Visit a parse tree produced by the `TableElementExpressionConstraint` + * labeled alternative in `ClickHouseParser.tableElementExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableElementExprConstraint?: (ctx: TableElementExprConstraintContext) => Result; + visitTableElementExpressionConstraint?: (ctx: TableElementExpressionConstraintContext) => Result; /** - * Visit a parse tree produced by the `TableElementExprIndex` - * labeled alternative in `ClickHouseParser.tableElementExpr`. + * Visit a parse tree produced by the `TableElementExpressionIndex` + * labeled alternative in `ClickHouseParser.tableElementExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableElementExprIndex?: (ctx: TableElementExprIndexContext) => Result; + visitTableElementExpressionIndex?: (ctx: TableElementExpressionIndexContext) => Result; /** - * Visit a parse tree produced by the `TableElementExprProjection` - * labeled alternative in `ClickHouseParser.tableElementExpr`. + * Visit a parse tree produced by the `TableElementExpressionProjection` + * labeled alternative in `ClickHouseParser.tableElementExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableElementExprProjection?: (ctx: TableElementExprProjectionContext) => Result; + visitTableElementExpressionProjection?: (ctx: TableElementExpressionProjectionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableColumnDfnt`. + * Visit a parse tree produced by `ClickHouseParser.tableColumnDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitTableColumnDfnt?: (ctx: TableColumnDfntContext) => Result; + visitTableColumnDefinition?: (ctx: TableColumnDefinitionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableColumnPropertyExpr`. + * Visit a parse tree produced by `ClickHouseParser.tableColumnPropertyExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableColumnPropertyExpr?: (ctx: TableColumnPropertyExprContext) => Result; + visitTableColumnPropertyExpression?: (ctx: TableColumnPropertyExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableIndexDfnt`. + * Visit a parse tree produced by `ClickHouseParser.tableIndexDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitTableIndexDfnt?: (ctx: TableIndexDfntContext) => Result; + visitTableIndexDefinition?: (ctx: TableIndexDefinitionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableProjectionDfnt`. + * Visit a parse tree produced by `ClickHouseParser.tableProjectionDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitTableProjectionDfnt?: (ctx: TableProjectionDfntContext) => Result; + visitTableProjectionDefinition?: (ctx: TableProjectionDefinitionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.codecExpr`. + * Visit a parse tree produced by `ClickHouseParser.codecExpression`. * @param ctx the parse tree * @return the visitor result */ - visitCodecExpr?: (ctx: CodecExprContext) => Result; + visitCodecExpression?: (ctx: CodecExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.codecArgExpr`. + * Visit a parse tree produced by `ClickHouseParser.codecArgExpression`. * @param ctx the parse tree * @return the visitor result */ - visitCodecArgExpr?: (ctx: CodecArgExprContext) => Result; + visitCodecArgExpression?: (ctx: CodecArgExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.ttlExpr`. + * Visit a parse tree produced by `ClickHouseParser.ttlExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTtlExpr?: (ctx: TtlExprContext) => Result; + visitTtlExpression?: (ctx: TtlExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.describeStmt`. + * Visit a parse tree produced by `ClickHouseParser.describeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDescribeStmt?: (ctx: DescribeStmtContext) => Result; + visitDescribeStatement?: (ctx: DescribeStatementContext) => Result; /** - * Visit a parse tree produced by the `DropDatabaseStmt` - * labeled alternative in `ClickHouseParser.dropStmt`. + * Visit a parse tree produced by the `DropDatabaseStatement` + * labeled alternative in `ClickHouseParser.dropStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropDatabaseStmt?: (ctx: DropDatabaseStmtContext) => Result; + visitDropDatabaseStatement?: (ctx: DropDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by the `DropTableStmt` - * labeled alternative in `ClickHouseParser.dropStmt`. + * Visit a parse tree produced by the `DropTableStatement` + * labeled alternative in `ClickHouseParser.dropStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropTableStmt?: (ctx: DropTableStmtContext) => Result; + visitDropTableStatement?: (ctx: DropTableStatementContext) => Result; /** - * Visit a parse tree produced by the `ExistsDatabaseStmt` - * labeled alternative in `ClickHouseParser.existsStmt`. + * Visit a parse tree produced by the `ExistsDatabaseStatement` + * labeled alternative in `ClickHouseParser.existsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExistsDatabaseStmt?: (ctx: ExistsDatabaseStmtContext) => Result; + visitExistsDatabaseStatement?: (ctx: ExistsDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by the `ExistsTableStmt` - * labeled alternative in `ClickHouseParser.existsStmt`. + * Visit a parse tree produced by the `ExistsTableStatement` + * labeled alternative in `ClickHouseParser.existsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExistsTableStmt?: (ctx: ExistsTableStmtContext) => Result; + visitExistsTableStatement?: (ctx: ExistsTableStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainDefaultStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainDefaultStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainDefaultStmt?: (ctx: ExplainDefaultStmtContext) => Result; + visitExplainDefaultStatement?: (ctx: ExplainDefaultStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainASTStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainASTStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainASTStmt?: (ctx: ExplainASTStmtContext) => Result; + visitExplainASTStatement?: (ctx: ExplainASTStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainSyntaxStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainSyntaxStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainSyntaxStmt?: (ctx: ExplainSyntaxStmtContext) => Result; + visitExplainSyntaxStatement?: (ctx: ExplainSyntaxStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainPipelineStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainPipelineStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainPipelineStmt?: (ctx: ExplainPipelineStmtContext) => Result; + visitExplainPipelineStatement?: (ctx: ExplainPipelineStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainPlanStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainPlanStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainPlanStmt?: (ctx: ExplainPlanStmtContext) => Result; + visitExplainPlanStatement?: (ctx: ExplainPlanStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainQueryTreeStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainQueryTreeStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainQueryTreeStmt?: (ctx: ExplainQueryTreeStmtContext) => Result; + visitExplainQueryTreeStatement?: (ctx: ExplainQueryTreeStatementContext) => Result; /** - * Visit a parse tree produced by the `ExplainEstimateStmt` - * labeled alternative in `ClickHouseParser.explainStmt`. + * Visit a parse tree produced by the `ExplainEstimateStatement` + * labeled alternative in `ClickHouseParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainEstimateStmt?: (ctx: ExplainEstimateStmtContext) => Result; + visitExplainEstimateStatement?: (ctx: ExplainEstimateStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.insertStmt`. + * Visit a parse tree produced by `ClickHouseParser.insertStatement`. * @param ctx the parse tree * @return the visitor result */ - visitInsertStmt?: (ctx: InsertStmtContext) => Result; + visitInsertStatement?: (ctx: InsertStatementContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.columnsClause`. * @param ctx the parse tree @@ -906,48 +906,48 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `KillMutationStmt` - * labeled alternative in `ClickHouseParser.killStmt`. + * Visit a parse tree produced by the `KillMutationStatement` + * labeled alternative in `ClickHouseParser.killStatement`. * @param ctx the parse tree * @return the visitor result */ - visitKillMutationStmt?: (ctx: KillMutationStmtContext) => Result; + visitKillMutationStatement?: (ctx: KillMutationStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.optimizeStmt`. + * Visit a parse tree produced by `ClickHouseParser.optimizeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOptimizeStmt?: (ctx: OptimizeStmtContext) => Result; + visitOptimizeStatement?: (ctx: OptimizeStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.renameStmt`. + * Visit a parse tree produced by `ClickHouseParser.renameStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRenameStmt?: (ctx: RenameStmtContext) => Result; + visitRenameStatement?: (ctx: RenameStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.projectionSelectStmt`. + * Visit a parse tree produced by `ClickHouseParser.projectionSelectStatement`. * @param ctx the parse tree * @return the visitor result */ - visitProjectionSelectStmt?: (ctx: ProjectionSelectStmtContext) => Result; + visitProjectionSelectStatement?: (ctx: ProjectionSelectStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.selectUnionStmt`. + * Visit a parse tree produced by `ClickHouseParser.selectUnionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSelectUnionStmt?: (ctx: SelectUnionStmtContext) => Result; + visitSelectUnionStatement?: (ctx: SelectUnionStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.selectStmtWithParens`. + * Visit a parse tree produced by `ClickHouseParser.selectStatementWithParentheses`. * @param ctx the parse tree * @return the visitor result */ - visitSelectStmtWithParens?: (ctx: SelectStmtWithParensContext) => Result; + visitSelectStatementWithParentheses?: (ctx: SelectStatementWithParenthesesContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.selectStmt`. + * Visit a parse tree produced by `ClickHouseParser.selectStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSelectStmt?: (ctx: SelectStmtContext) => Result; + visitSelectStatement?: (ctx: SelectStatementContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.withClause`. * @param ctx the parse tree @@ -1033,60 +1033,60 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `JoinExprOp` - * labeled alternative in `ClickHouseParser.joinExpr`. + * Visit a parse tree produced by the `JoinExpressionParens` + * labeled alternative in `ClickHouseParser.joinExpression`. * @param ctx the parse tree * @return the visitor result */ - visitJoinExprOp?: (ctx: JoinExprOpContext) => Result; + visitJoinExpressionParens?: (ctx: JoinExpressionParensContext) => Result; /** - * Visit a parse tree produced by the `JoinExprTable` - * labeled alternative in `ClickHouseParser.joinExpr`. + * Visit a parse tree produced by the `JoinExpressionTable` + * labeled alternative in `ClickHouseParser.joinExpression`. * @param ctx the parse tree * @return the visitor result */ - visitJoinExprTable?: (ctx: JoinExprTableContext) => Result; + visitJoinExpressionTable?: (ctx: JoinExpressionTableContext) => Result; /** - * Visit a parse tree produced by the `JoinExprParens` - * labeled alternative in `ClickHouseParser.joinExpr`. + * Visit a parse tree produced by the `JoinExpressionCrossOp` + * labeled alternative in `ClickHouseParser.joinExpression`. * @param ctx the parse tree * @return the visitor result */ - visitJoinExprParens?: (ctx: JoinExprParensContext) => Result; + visitJoinExpressionCrossOp?: (ctx: JoinExpressionCrossOpContext) => Result; /** - * Visit a parse tree produced by the `JoinExprCrossOp` - * labeled alternative in `ClickHouseParser.joinExpr`. + * Visit a parse tree produced by the `JoinExpressionOp` + * labeled alternative in `ClickHouseParser.joinExpression`. * @param ctx the parse tree * @return the visitor result */ - visitJoinExprCrossOp?: (ctx: JoinExprCrossOpContext) => Result; + visitJoinExpressionOp?: (ctx: JoinExpressionOpContext) => Result; /** * Visit a parse tree produced by the `JoinOpInner` - * labeled alternative in `ClickHouseParser.joinOp`. + * labeled alternative in `ClickHouseParser.joinOperator`. * @param ctx the parse tree * @return the visitor result */ visitJoinOpInner?: (ctx: JoinOpInnerContext) => Result; /** * Visit a parse tree produced by the `JoinOpLeftRight` - * labeled alternative in `ClickHouseParser.joinOp`. + * labeled alternative in `ClickHouseParser.joinOperator`. * @param ctx the parse tree * @return the visitor result */ visitJoinOpLeftRight?: (ctx: JoinOpLeftRightContext) => Result; /** * Visit a parse tree produced by the `JoinOpFull` - * labeled alternative in `ClickHouseParser.joinOp`. + * labeled alternative in `ClickHouseParser.joinOperator`. * @param ctx the parse tree * @return the visitor result */ visitJoinOpFull?: (ctx: JoinOpFullContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.joinOpCross`. + * Visit a parse tree produced by `ClickHouseParser.joinOperatorCross`. * @param ctx the parse tree * @return the visitor result */ - visitJoinOpCross?: (ctx: JoinOpCrossContext) => Result; + visitJoinOperatorCross?: (ctx: JoinOperatorCrossContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.joinConstraintClause`. * @param ctx the parse tree @@ -1100,454 +1100,454 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.limitExpr`. + * Visit a parse tree produced by `ClickHouseParser.limitExpression`. * @param ctx the parse tree * @return the visitor result */ - visitLimitExpr?: (ctx: LimitExprContext) => Result; + visitLimitExpression?: (ctx: LimitExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.orderExprList`. + * Visit a parse tree produced by `ClickHouseParser.orderExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitOrderExprList?: (ctx: OrderExprListContext) => Result; + visitOrderExpressionList?: (ctx: OrderExpressionListContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.orderExpr`. + * Visit a parse tree produced by `ClickHouseParser.orderExpression`. * @param ctx the parse tree * @return the visitor result */ - visitOrderExpr?: (ctx: OrderExprContext) => Result; + visitOrderExpression?: (ctx: OrderExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.ratioExpr`. + * Visit a parse tree produced by `ClickHouseParser.ratioExpression`. * @param ctx the parse tree * @return the visitor result */ - visitRatioExpr?: (ctx: RatioExprContext) => Result; + visitRatioExpression?: (ctx: RatioExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.settingExprList`. + * Visit a parse tree produced by `ClickHouseParser.settingExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitSettingExprList?: (ctx: SettingExprListContext) => Result; + visitSettingExpressionList?: (ctx: SettingExpressionListContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.settingExpr`. + * Visit a parse tree produced by `ClickHouseParser.settingExpression`. * @param ctx the parse tree * @return the visitor result */ - visitSettingExpr?: (ctx: SettingExprContext) => Result; + visitSettingExpression?: (ctx: SettingExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.windowExpr`. + * Visit a parse tree produced by `ClickHouseParser.windowExpression`. * @param ctx the parse tree * @return the visitor result */ - visitWindowExpr?: (ctx: WindowExprContext) => Result; + visitWindowExpression?: (ctx: WindowExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.winPartitionByClause`. + * Visit a parse tree produced by `ClickHouseParser.windowPartitionByClause`. * @param ctx the parse tree * @return the visitor result */ - visitWinPartitionByClause?: (ctx: WinPartitionByClauseContext) => Result; + visitWindowPartitionByClause?: (ctx: WindowPartitionByClauseContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.winOrderByClause`. + * Visit a parse tree produced by `ClickHouseParser.windowOrderByClause`. * @param ctx the parse tree * @return the visitor result */ - visitWinOrderByClause?: (ctx: WinOrderByClauseContext) => Result; + visitWindowOrderByClause?: (ctx: WindowOrderByClauseContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.winFrameClause`. + * Visit a parse tree produced by `ClickHouseParser.windowFrameClause`. * @param ctx the parse tree * @return the visitor result */ - visitWinFrameClause?: (ctx: WinFrameClauseContext) => Result; + visitWindowFrameClause?: (ctx: WindowFrameClauseContext) => Result; /** * Visit a parse tree produced by the `frameStart` - * labeled alternative in `ClickHouseParser.winFrameExtend`. + * labeled alternative in `ClickHouseParser.windowFrameExtend`. * @param ctx the parse tree * @return the visitor result */ visitFrameStart?: (ctx: FrameStartContext) => Result; /** * Visit a parse tree produced by the `frameBetween` - * labeled alternative in `ClickHouseParser.winFrameExtend`. + * labeled alternative in `ClickHouseParser.windowFrameExtend`. * @param ctx the parse tree * @return the visitor result */ visitFrameBetween?: (ctx: FrameBetweenContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.winFrameBound`. + * Visit a parse tree produced by `ClickHouseParser.windowFrameBound`. * @param ctx the parse tree * @return the visitor result */ - visitWinFrameBound?: (ctx: WinFrameBoundContext) => Result; + visitWindowFrameBound?: (ctx: WindowFrameBoundContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.setStmt`. + * Visit a parse tree produced by `ClickHouseParser.setStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSetStmt?: (ctx: SetStmtContext) => Result; + visitSetStatement?: (ctx: SetStatementContext) => Result; /** - * Visit a parse tree produced by the `showCreateDatabaseStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showCreateDatabaseStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowCreateDatabaseStmt?: (ctx: ShowCreateDatabaseStmtContext) => Result; + visitShowCreateDatabaseStatement?: (ctx: ShowCreateDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by the `showCreateDictionaryStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showCreateDictionaryStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowCreateDictionaryStmt?: (ctx: ShowCreateDictionaryStmtContext) => Result; + visitShowCreateDictionaryStatement?: (ctx: ShowCreateDictionaryStatementContext) => Result; /** - * Visit a parse tree produced by the `showCreateTableStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showCreateTableStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowCreateTableStmt?: (ctx: ShowCreateTableStmtContext) => Result; + visitShowCreateTableStatement?: (ctx: ShowCreateTableStatementContext) => Result; /** - * Visit a parse tree produced by the `showDatabasesStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showDatabasesStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowDatabasesStmt?: (ctx: ShowDatabasesStmtContext) => Result; + visitShowDatabasesStatement?: (ctx: ShowDatabasesStatementContext) => Result; /** - * Visit a parse tree produced by the `showDictionariesStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showDictionariesStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowDictionariesStmt?: (ctx: ShowDictionariesStmtContext) => Result; + visitShowDictionariesStatement?: (ctx: ShowDictionariesStatementContext) => Result; /** - * Visit a parse tree produced by the `showTablesStmt` - * labeled alternative in `ClickHouseParser.showStmt`. + * Visit a parse tree produced by the `showTablesStatement` + * labeled alternative in `ClickHouseParser.showStatement`. * @param ctx the parse tree * @return the visitor result */ - visitShowTablesStmt?: (ctx: ShowTablesStmtContext) => Result; + visitShowTablesStatement?: (ctx: ShowTablesStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.systemStmt`. + * Visit a parse tree produced by `ClickHouseParser.systemStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSystemStmt?: (ctx: SystemStmtContext) => Result; + visitSystemStatement?: (ctx: SystemStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.truncateStmt`. + * Visit a parse tree produced by `ClickHouseParser.truncateStatement`. * @param ctx the parse tree * @return the visitor result */ - visitTruncateStmt?: (ctx: TruncateStmtContext) => Result; + visitTruncateStatement?: (ctx: TruncateStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.useStmt`. + * Visit a parse tree produced by `ClickHouseParser.useStatement`. * @param ctx the parse tree * @return the visitor result */ - visitUseStmt?: (ctx: UseStmtContext) => Result; + visitUseStatement?: (ctx: UseStatementContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.watchStmt`. + * Visit a parse tree produced by `ClickHouseParser.watchStatement`. * @param ctx the parse tree * @return the visitor result */ - visitWatchStmt?: (ctx: WatchStmtContext) => Result; + visitWatchStatement?: (ctx: WatchStatementContext) => Result; /** - * Visit a parse tree produced by the `ColumnTypeExprSimple` - * labeled alternative in `ClickHouseParser.columnTypeExpr`. + * Visit a parse tree produced by the `ColumnTypeExpressionSimple` + * labeled alternative in `ClickHouseParser.columnTypeExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeExprSimple?: (ctx: ColumnTypeExprSimpleContext) => Result; + visitColumnTypeExpressionSimple?: (ctx: ColumnTypeExpressionSimpleContext) => Result; /** - * Visit a parse tree produced by the `ColumnTypeExprNested` - * labeled alternative in `ClickHouseParser.columnTypeExpr`. + * Visit a parse tree produced by the `ColumnTypeExpressionNested` + * labeled alternative in `ClickHouseParser.columnTypeExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeExprNested?: (ctx: ColumnTypeExprNestedContext) => Result; + visitColumnTypeExpressionNested?: (ctx: ColumnTypeExpressionNestedContext) => Result; /** - * Visit a parse tree produced by the `ColumnTypeExprEnum` - * labeled alternative in `ClickHouseParser.columnTypeExpr`. + * Visit a parse tree produced by the `ColumnTypeExpressionEnum` + * labeled alternative in `ClickHouseParser.columnTypeExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeExprEnum?: (ctx: ColumnTypeExprEnumContext) => Result; + visitColumnTypeExpressionEnum?: (ctx: ColumnTypeExpressionEnumContext) => Result; /** - * Visit a parse tree produced by the `ColumnTypeExprComplex` - * labeled alternative in `ClickHouseParser.columnTypeExpr`. + * Visit a parse tree produced by the `ColumnTypeExpressionComplex` + * labeled alternative in `ClickHouseParser.columnTypeExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeExprComplex?: (ctx: ColumnTypeExprComplexContext) => Result; + visitColumnTypeExpressionComplex?: (ctx: ColumnTypeExpressionComplexContext) => Result; /** - * Visit a parse tree produced by the `ColumnTypeExprParam` - * labeled alternative in `ClickHouseParser.columnTypeExpr`. + * Visit a parse tree produced by the `ColumnTypeExpressionParam` + * labeled alternative in `ClickHouseParser.columnTypeExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeExprParam?: (ctx: ColumnTypeExprParamContext) => Result; + visitColumnTypeExpressionParam?: (ctx: ColumnTypeExpressionParamContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.columnExprList`. + * Visit a parse tree produced by `ClickHouseParser.columnExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprList?: (ctx: ColumnExprListContext) => Result; + visitColumnExpressionList?: (ctx: ColumnExpressionListContext) => Result; /** - * Visit a parse tree produced by the `ColumnsExprAsterisk` - * labeled alternative in `ClickHouseParser.columnsExpr`. + * Visit a parse tree produced by the `ColumnsExpressionAsterisk` + * labeled alternative in `ClickHouseParser.columnsExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnsExprAsterisk?: (ctx: ColumnsExprAsteriskContext) => Result; + visitColumnsExpressionAsterisk?: (ctx: ColumnsExpressionAsteriskContext) => Result; /** - * Visit a parse tree produced by the `ColumnsExprSubquery` - * labeled alternative in `ClickHouseParser.columnsExpr`. + * Visit a parse tree produced by the `ColumnsExpressionSubquery` + * labeled alternative in `ClickHouseParser.columnsExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnsExprSubquery?: (ctx: ColumnsExprSubqueryContext) => Result; + visitColumnsExpressionSubquery?: (ctx: ColumnsExpressionSubqueryContext) => Result; /** - * Visit a parse tree produced by the `ColumnsExprColumn` - * labeled alternative in `ClickHouseParser.columnsExpr`. + * Visit a parse tree produced by the `ColumnsExpressionColumn` + * labeled alternative in `ClickHouseParser.columnsExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnsExprColumn?: (ctx: ColumnsExprColumnContext) => Result; + visitColumnsExpressionColumn?: (ctx: ColumnsExpressionColumnContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprTernaryOp` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionIsNull` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprTernaryOp?: (ctx: ColumnExprTernaryOpContext) => Result; + visitColumnExpressionIsNull?: (ctx: ColumnExpressionIsNullContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprAlias` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionTuple` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprAlias?: (ctx: ColumnExprAliasContext) => Result; + visitColumnExpressionTuple?: (ctx: ColumnExpressionTupleContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprExtract` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionAnd` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprExtract?: (ctx: ColumnExprExtractContext) => Result; + visitColumnExpressionAnd?: (ctx: ColumnExpressionAndContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprNegate` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionDate` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprNegate?: (ctx: ColumnExprNegateContext) => Result; + visitColumnExpressionDate?: (ctx: ColumnExpressionDateContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprSubquery` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionBetween` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprSubquery?: (ctx: ColumnExprSubqueryContext) => Result; + visitColumnExpressionBetween?: (ctx: ColumnExpressionBetweenContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprLiteral` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionTrim` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprLiteral?: (ctx: ColumnExprLiteralContext) => Result; + visitColumnExpressionTrim?: (ctx: ColumnExpressionTrimContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprArray` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionNot` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprArray?: (ctx: ColumnExprArrayContext) => Result; + visitColumnExpressionNot?: (ctx: ColumnExpressionNotContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprSubstring` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionSubstring` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprSubstring?: (ctx: ColumnExprSubstringContext) => Result; + visitColumnExpressionSubstring?: (ctx: ColumnExpressionSubstringContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprCast` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionCase` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprCast?: (ctx: ColumnExprCastContext) => Result; + visitColumnExpressionCase?: (ctx: ColumnExpressionCaseContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprOr` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionIdentifier` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprOr?: (ctx: ColumnExprOrContext) => Result; + visitColumnExpressionIdentifier?: (ctx: ColumnExpressionIdentifierContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprPrecedence1` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionArrayAccess` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprPrecedence1?: (ctx: ColumnExprPrecedence1Context) => Result; + visitColumnExpressionArrayAccess?: (ctx: ColumnExpressionArrayAccessContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprPrecedence2` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionFunction` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprPrecedence2?: (ctx: ColumnExprPrecedence2Context) => Result; + visitColumnExpressionFunction?: (ctx: ColumnExpressionFunctionContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprPrecedence3` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionAsterisk` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprPrecedence3?: (ctx: ColumnExprPrecedence3Context) => Result; + visitColumnExpressionAsterisk?: (ctx: ColumnExpressionAsteriskContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprInterval` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionLiteral` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprInterval?: (ctx: ColumnExprIntervalContext) => Result; + visitColumnExpressionLiteral?: (ctx: ColumnExpressionLiteralContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprIsNull` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionWinFunction` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprIsNull?: (ctx: ColumnExprIsNullContext) => Result; + visitColumnExpressionWinFunction?: (ctx: ColumnExpressionWinFunctionContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprWinFunctionTarget` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionTernaryOp` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprWinFunctionTarget?: (ctx: ColumnExprWinFunctionTargetContext) => Result; + visitColumnExpressionTernaryOp?: (ctx: ColumnExpressionTernaryOpContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprTrim` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionArray` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprTrim?: (ctx: ColumnExprTrimContext) => Result; + visitColumnExpressionArray?: (ctx: ColumnExpressionArrayContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprTuple` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionTupleAccess` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprTuple?: (ctx: ColumnExprTupleContext) => Result; + visitColumnExpressionTupleAccess?: (ctx: ColumnExpressionTupleAccessContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprArrayAccess` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionParens` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprArrayAccess?: (ctx: ColumnExprArrayAccessContext) => Result; + visitColumnExpressionParens?: (ctx: ColumnExpressionParensContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprBetween` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionWinFunctionTarget` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprBetween?: (ctx: ColumnExprBetweenContext) => Result; + visitColumnExpressionWinFunctionTarget?: (ctx: ColumnExpressionWinFunctionTargetContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprParens` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionAlias` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprParens?: (ctx: ColumnExprParensContext) => Result; + visitColumnExpressionAlias?: (ctx: ColumnExpressionAliasContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprTimestamp` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionPrecedence3` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprTimestamp?: (ctx: ColumnExprTimestampContext) => Result; + visitColumnExpressionPrecedence3?: (ctx: ColumnExpressionPrecedence3Context) => Result; /** - * Visit a parse tree produced by the `ColumnExprAnd` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionTimestamp` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprAnd?: (ctx: ColumnExprAndContext) => Result; + visitColumnExpressionTimestamp?: (ctx: ColumnExpressionTimestampContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprTupleAccess` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionPrecedence2` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprTupleAccess?: (ctx: ColumnExprTupleAccessContext) => Result; + visitColumnExpressionPrecedence2?: (ctx: ColumnExpressionPrecedence2Context) => Result; /** - * Visit a parse tree produced by the `ColumnExprCase` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionPrecedence1` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprCase?: (ctx: ColumnExprCaseContext) => Result; + visitColumnExpressionPrecedence1?: (ctx: ColumnExpressionPrecedence1Context) => Result; /** - * Visit a parse tree produced by the `ColumnExprDate` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionInterval` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprDate?: (ctx: ColumnExprDateContext) => Result; + visitColumnExpressionInterval?: (ctx: ColumnExpressionIntervalContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprNot` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionSubquery` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprNot?: (ctx: ColumnExprNotContext) => Result; + visitColumnExpressionSubquery?: (ctx: ColumnExpressionSubqueryContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprWinFunction` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionNegate` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprWinFunction?: (ctx: ColumnExprWinFunctionContext) => Result; + visitColumnExpressionNegate?: (ctx: ColumnExpressionNegateContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprIdentifier` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionExtract` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprIdentifier?: (ctx: ColumnExprIdentifierContext) => Result; + visitColumnExpressionExtract?: (ctx: ColumnExpressionExtractContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprFunction` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionCast` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprFunction?: (ctx: ColumnExprFunctionContext) => Result; + visitColumnExpressionCast?: (ctx: ColumnExpressionCastContext) => Result; /** - * Visit a parse tree produced by the `ColumnExprAsterisk` - * labeled alternative in `ClickHouseParser.columnExpr`. + * Visit a parse tree produced by the `ColumnExpressionOr` + * labeled alternative in `ClickHouseParser.columnExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnExprAsterisk?: (ctx: ColumnExprAsteriskContext) => Result; + visitColumnExpressionOr?: (ctx: ColumnExpressionOrContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.columnArgList`. + * Visit a parse tree produced by `ClickHouseParser.columnArgumentList`. * @param ctx the parse tree * @return the visitor result */ - visitColumnArgList?: (ctx: ColumnArgListContext) => Result; + visitColumnArgumentList?: (ctx: ColumnArgumentListContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.columnArgExpr`. + * Visit a parse tree produced by `ClickHouseParser.columnArgumentExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnArgExpr?: (ctx: ColumnArgExprContext) => Result; + visitColumnArgumentExpression?: (ctx: ColumnArgumentExpressionContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.columnLambdaExpr`. + * Visit a parse tree produced by `ClickHouseParser.columnLambdaExpression`. * @param ctx the parse tree * @return the visitor result */ - visitColumnLambdaExpr?: (ctx: ColumnLambdaExprContext) => Result; + visitColumnLambdaExpression?: (ctx: ColumnLambdaExpressionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.columnIdentifier`. * @param ctx the parse tree @@ -1555,39 +1555,39 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `TableExprIdentifier` - * labeled alternative in `ClickHouseParser.tableExpr`. + * Visit a parse tree produced by the `TableExpressionFunction` + * labeled alternative in `ClickHouseParser.tableExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableExprIdentifier?: (ctx: TableExprIdentifierContext) => Result; + visitTableExpressionFunction?: (ctx: TableExpressionFunctionContext) => Result; /** - * Visit a parse tree produced by the `TableExprSubquery` - * labeled alternative in `ClickHouseParser.tableExpr`. + * Visit a parse tree produced by the `TableExpressionIdentifier` + * labeled alternative in `ClickHouseParser.tableExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableExprSubquery?: (ctx: TableExprSubqueryContext) => Result; + visitTableExpressionIdentifier?: (ctx: TableExpressionIdentifierContext) => Result; /** - * Visit a parse tree produced by the `TableExprAlias` - * labeled alternative in `ClickHouseParser.tableExpr`. + * Visit a parse tree produced by the `TableExpressionAlias` + * labeled alternative in `ClickHouseParser.tableExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableExprAlias?: (ctx: TableExprAliasContext) => Result; + visitTableExpressionAlias?: (ctx: TableExpressionAliasContext) => Result; /** - * Visit a parse tree produced by the `TableExprFunction` - * labeled alternative in `ClickHouseParser.tableExpr`. + * Visit a parse tree produced by the `TableExpressionSubquery` + * labeled alternative in `ClickHouseParser.tableExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableExprFunction?: (ctx: TableExprFunctionContext) => Result; + visitTableExpressionSubquery?: (ctx: TableExpressionSubqueryContext) => Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableFunctionExpr`. + * Visit a parse tree produced by `ClickHouseParser.tableFunctionExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableFunctionExpr?: (ctx: TableFunctionExprContext) => Result; + visitTableFunctionExpression?: (ctx: TableFunctionExpressionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.tableIdentifier`. * @param ctx the parse tree @@ -1601,11 +1601,11 @@ export class ClickHouseParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `ClickHouseParser.tableArgExpr`. + * Visit a parse tree produced by `ClickHouseParser.tableArgExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTableArgExpr?: (ctx: TableArgExprContext) => Result; + visitTableArgExpression?: (ctx: TableArgExpressionContext) => Result; /** * Visit a parse tree produced by `ClickHouseParser.databaseIdentifier`. * @param ctx the parse tree diff --git a/src/autocomplete/clickhouse/grammar/ClickHouseParser.g4 b/src/autocomplete/clickhouse/grammar/ClickHouseParser.g4 index 4a1b5afd..2458a692 100644 --- a/src/autocomplete/clickhouse/grammar/ClickHouseParser.g4 +++ b/src/autocomplete/clickhouse/grammar/ClickHouseParser.g4 @@ -21,61 +21,60 @@ statements statement : notInsertStatement (INTO OUTFILE STRING_LITERAL)? (FORMAT identifierOrNull)? (SEMICOLON)? - | insertStmt + | insertStatement ; notInsertStatement - : alterStmt // DDL - | attachStmt // DDL - | checkStmt - | createStmt // DDL - | describeStmt + : alterStatement // DDL + | attachStatement // DDL + | checkStatement + | createStatement // DDL + | describeStatement | deleteStatement // DDL - | dropStmt // DDL - | existsStmt - | explainStmt - | killStmt // DDL - | optimizeStmt // DDL - | renameStmt // DDL - | selectUnionStmt - | setStmt - | showStmt - | systemStmt - | truncateStmt // DDL - | useStmt - | watchStmt - | ctes? selectStmt - ; - -// CTE statement -ctes - : WITH namedQuery (',' namedQuery)* + | dropStatement // DDL + | existsStatement + | explainStatement + | killStatement // DDL + | optimizeStatement // DDL + | renameStatement // DDL + | selectUnionStatement + | setStatement + | showStatement + | systemStatement + | truncateStatement // DDL + | useStatement + | watchStatement + | commonTableExpressionStatement? selectStatement + ; + +commonTableExpressionStatement + : WITH namedQuery (COMMA namedQuery)* ; namedQuery - : name = identifier (columnAliases)? AS '(' notInsertStatement ')' + : name = identifier (columnAliases)? AS LPAREN notInsertStatement RPAREN ; columnAliases - : '(' identifier (',' identifier)* ')' + : LPAREN identifier (COMMA identifier)* RPAREN ; // ALTER statement -alterStmt - : ALTER TABLE tableIdentifier clusterClause? alterTableClause (COMMA alterTableClause)* # AlterTableStmt +alterStatement + : ALTER TABLE tableIdentifier clusterClause? alterTableClause (COMMA alterTableClause)* # AlterTableStatement ; alterTableClause - : ADD COLUMN (IF NOT EXISTS)? tableColumnDfnt (AFTER columnIdentifier)? # AlterTableClauseAddColumn - | ADD INDEX (IF NOT EXISTS)? tableIndexDfnt ( AFTER columnIdentifier)? # AlterTableClauseAddIndex - | ADD PROJECTION (IF NOT EXISTS)? tableProjectionDfnt ( AFTER columnIdentifier)? # AlterTableClauseAddProjection + : ADD COLUMN (IF NOT EXISTS)? tableColumnDefinition (AFTER columnIdentifier)? # AlterTableClauseAddColumn + | ADD INDEX (IF NOT EXISTS)? tableIndexDefinition ( AFTER columnIdentifier)? # AlterTableClauseAddIndex + | ADD PROJECTION (IF NOT EXISTS)? tableProjectionDefinition ( AFTER columnIdentifier)? # AlterTableClauseAddProjection | ATTACH partitionClause (FROM tableIdentifier)? # AlterTableClauseAttach | CLEAR COLUMN (IF EXISTS)? columnIdentifier ( IN partitionClause)? # AlterTableClauseClearColumn | CLEAR INDEX (IF EXISTS)? columnIdentifier ( IN partitionClause)? # AlterTableClauseClearIndex | CLEAR PROJECTION (IF EXISTS)? columnIdentifier ( IN partitionClause)? # AlterTableClauseClearProjection | COMMENT COLUMN (IF EXISTS)? columnIdentifier STRING_LITERAL # AlterTableClauseComment - | DELETE WHERE columnExpr # AlterTableClauseDelete + | DELETE WHERE columnExpression # AlterTableClauseDelete | DETACH partitionClause # AlterTableClauseDetach | DROP COLUMN (IF EXISTS)? columnIdentifier # AlterTableClauseDropColumn | DROP INDEX (IF EXISTS)? columnIdentifier # AlterTableClauseDropIndex @@ -84,25 +83,25 @@ alterTableClause | FREEZE partitionClause? # AlterTableClauseFreezePartition | MATERIALIZE INDEX (IF EXISTS)? columnIdentifier ( IN partitionClause)? # AlterTableClauseMaterializeIndex | MATERIALIZE PROJECTION (IF EXISTS)? columnIdentifier ( IN partitionClause)? # AlterTableClauseMaterializeProjection - | MODIFY COLUMN (IF EXISTS)? columnIdentifier codecExpr # AlterTableClauseModifyCodec + | MODIFY COLUMN (IF EXISTS)? columnIdentifier codecExpression # AlterTableClauseModifyCodec | MODIFY COLUMN (IF EXISTS)? columnIdentifier COMMENT STRING_LITERAL # AlterTableClauseModifyComment | MODIFY COLUMN (IF EXISTS)? columnIdentifier REMOVE tableColumnPropertyType # AlterTableClauseModifyRemove - | MODIFY COLUMN (IF EXISTS)? tableColumnDfnt # AlterTableClauseModify - | MODIFY ORDER BY columnExpr # AlterTableClauseModifyOrderBy + | MODIFY COLUMN (IF EXISTS)? tableColumnDefinition # AlterTableClauseModify + | MODIFY ORDER BY columnExpression # AlterTableClauseModifyOrderBy | MODIFY ttlClause # AlterTableClauseModifyTTL | MOVE partitionClause ( TO DISK STRING_LITERAL | TO VOLUME STRING_LITERAL | TO TABLE tableIdentifier) # AlterTableClauseMovePartition | REMOVE TTL # AlterTableClauseRemoveTTL | RENAME COLUMN (IF EXISTS)? columnIdentifier TO columnIdentifier # AlterTableClauseRename | REPLACE partitionClause FROM tableIdentifier # AlterTableClauseReplace - | UPDATE assignmentExprList whereClause # AlterTableClauseUpdate + | UPDATE assignmentExpressionList whereClause # AlterTableClauseUpdate ; -assignmentExprList - : assignmentExpr (COMMA assignmentExpr)* +assignmentExpressionList + : assignmentExpression (COMMA assignmentExpression)* ; -assignmentExpr - : columnIdentifier EQ_SINGLE columnExpr +assignmentExpression + : columnIdentifier EQ_SINGLE columnExpression ; tableColumnPropertyType @@ -115,18 +114,18 @@ tableColumnPropertyType ; partitionClause - : PARTITION columnExpr // actually we expect here any form of tuple of literals + : PARTITION columnExpression // actually we expect here any form of tuple of literals | PARTITION ID STRING_LITERAL ; // ATTACH statement -attachStmt - : ATTACH DICTIONARY tableIdentifier clusterClause? # AttachDictionaryStmt +attachStatement + : ATTACH DICTIONARY tableIdentifier clusterClause? # AttachDictionaryStatement ; // CHECK statement -checkStmt +checkStatement : CHECK TABLE tableIdentifier partitionClause? ; @@ -143,7 +142,7 @@ createTableStatement ; createDatabaseStatement - : (ATTACH | CREATE) DATABASE (IF NOT EXISTS)? databaseIdentifier clusterClause? engineExpr + : (ATTACH | CREATE) DATABASE (IF NOT EXISTS)? databaseIdentifier clusterClause? engineExpression ; createDictionaryStatement @@ -162,7 +161,7 @@ createViewStatement : (ATTACH | CREATE) (OR REPLACE)? VIEW (IF NOT EXISTS)? tableIdentifier uuidClause? clusterClause? tableSchemaClause? subqueryClause ; -createStmt +createStatement : createDatabaseStatement | createDictionaryStatement | createLiveViewStatement @@ -172,12 +171,12 @@ createStmt ; dictionarySchemaClause - : LPAREN dictionaryAttrDfnt (COMMA dictionaryAttrDfnt)* RPAREN + : LPAREN dictionaryAttributeDefinition (COMMA dictionaryAttributeDefinition)* RPAREN ; -dictionaryAttrDfnt +dictionaryAttributeDefinition locals[Set attrs = new Set()] - : identifier columnTypeExpr ({!$attrs.has("default")}? DEFAULT literal {$attrs.add("default");} | {!$attrs.has("expression")}? EXPRESSION columnExpr {$attrs.add("expression");} | {!$attrs.has("hierarchical")}? HIERARCHICAL {$attrs.add("hierarchical");} | {!$attrs.has("injective")}? INJECTIVE {$attrs.add("injective");} | {!$attrs.has("is_object_id")}? IS_OBJECT_ID {$attrs.add("is_object_id");})* + : identifier columnTypeExpression ({!$attrs.has("default")}? DEFAULT literal {$attrs.add("default");} | {!$attrs.has("expression")}? EXPRESSION columnExpression {$attrs.add("expression");} | {!$attrs.has("hierarchical")}? HIERARCHICAL {$attrs.add("hierarchical");} | {!$attrs.has("injective")}? INJECTIVE {$attrs.add("injective");} | {!$attrs.has("is_object_id")}? IS_OBJECT_ID {$attrs.add("is_object_id");})* ; dictionaryEngineClause @@ -186,15 +185,15 @@ dictionaryEngineClause ; dictionaryPrimaryKeyClause - : PRIMARY KEY columnExprList + : PRIMARY KEY columnExpressionList ; -dictionaryArgExpr +dictionaryArgumentExpression : identifier (identifier (LPAREN RPAREN)? | literal) ; sourceClause - : SOURCE LPAREN identifier LPAREN dictionaryArgExpr* RPAREN RPAREN + : SOURCE LPAREN identifier LPAREN dictionaryArgumentExpression* RPAREN RPAREN ; lifetimeClause @@ -202,7 +201,7 @@ lifetimeClause ; layoutClause - : LAYOUT LPAREN identifier LPAREN dictionaryArgExpr* RPAREN RPAREN + : LAYOUT LPAREN identifier LPAREN dictionaryArgumentExpression* RPAREN RPAREN ; rangeClause @@ -210,7 +209,7 @@ rangeClause ; dictionarySettingsClause - : SETTINGS LPAREN settingExprList RPAREN + : SETTINGS LPAREN settingExpressionList RPAREN ; clusterClause @@ -226,18 +225,18 @@ destinationClause ; subqueryClause - : AS selectUnionStmt + : AS selectUnionStatement ; tableSchemaClause - : LPAREN tableElementExpr (COMMA tableElementExpr)* RPAREN # SchemaDescriptionClause - | AS tableIdentifier # SchemaAsTableClause - | AS tableFunctionExpr # SchemaAsFunctionClause + : LPAREN tableElementExpression (COMMA tableElementExpression)* RPAREN # SchemaDescriptionClause + | AS tableIdentifier # SchemaAsTableClause + | AS tableFunctionExpression # SchemaAsFunctionClause ; engineClause locals[Set clauses = new Set()] - : engineExpr ( + : engineExpression ( {!$clauses.has("orderByClause")}? orderByClause {$clauses.add("orderByClause");} | {!$clauses.has("partitionByClause")}? partitionByClause {$clauses.add("partitionByClause"); } @@ -250,97 +249,97 @@ engineClause ; partitionByClause - : PARTITION BY columnExpr + : PARTITION BY columnExpression ; primaryKeyClause - : PRIMARY KEY columnExpr + : PRIMARY KEY columnExpression ; sampleByClause - : SAMPLE BY columnExpr + : SAMPLE BY columnExpression ; ttlClause - : TTL ttlExpr (COMMA ttlExpr)* + : TTL ttlExpression (COMMA ttlExpression)* ; -engineExpr - : ENGINE EQ_SINGLE? identifierOrNull (LPAREN columnExprList? RPAREN)? +engineExpression + : ENGINE EQ_SINGLE? identifierOrNull (LPAREN columnExpressionList? RPAREN)? ; -tableElementExpr - : tableColumnDfnt # TableElementExprColumn - | CONSTRAINT identifier CHECK columnExpr # TableElementExprConstraint - | INDEX tableIndexDfnt # TableElementExprIndex - | PROJECTION tableProjectionDfnt # TableElementExprProjection +tableElementExpression + : tableColumnDefinition # TableElementExpressionColumn + | CONSTRAINT identifier CHECK columnExpression # TableElementExpressionConstraint + | INDEX tableIndexDefinition # TableElementExpressionIndex + | PROJECTION tableProjectionDefinition # TableElementExpressionProjection ; -tableColumnDfnt - : columnIdentifier columnTypeExpr tableColumnPropertyExpr? (COMMENT STRING_LITERAL)? codecExpr? (TTL columnExpr)? - | columnIdentifier columnTypeExpr? tableColumnPropertyExpr ( COMMENT STRING_LITERAL)? codecExpr? (TTL columnExpr)? +tableColumnDefinition + : columnIdentifier columnTypeExpression tableColumnPropertyExpression? (COMMENT STRING_LITERAL)? codecExpression? (TTL columnExpression)? + | columnIdentifier columnTypeExpression? tableColumnPropertyExpression ( COMMENT STRING_LITERAL)? codecExpression? (TTL columnExpression)? ; -tableColumnPropertyExpr - : (DEFAULT | MATERIALIZED | ALIAS) columnExpr +tableColumnPropertyExpression + : (DEFAULT | MATERIALIZED | ALIAS) columnExpression ; -tableIndexDfnt - : columnIdentifier columnExpr TYPE columnTypeExpr GRANULARITY DECIMAL_LITERAL +tableIndexDefinition + : columnIdentifier columnExpression TYPE columnTypeExpression GRANULARITY DECIMAL_LITERAL ; -tableProjectionDfnt - : columnIdentifier projectionSelectStmt +tableProjectionDefinition + : columnIdentifier projectionSelectStatement ; -codecExpr - : CODEC LPAREN codecArgExpr (COMMA codecArgExpr)* RPAREN +codecExpression + : CODEC LPAREN codecArgExpression (COMMA codecArgExpression)* RPAREN ; -codecArgExpr - : identifier (LPAREN columnExprList? RPAREN)? +codecArgExpression + : identifier (LPAREN columnExpressionList? RPAREN)? ; -ttlExpr - : columnExpr (DELETE | TO DISK STRING_LITERAL | TO VOLUME STRING_LITERAL)? +ttlExpression + : columnExpression (DELETE | TO DISK STRING_LITERAL | TO VOLUME STRING_LITERAL)? ; // DESCRIBE statement -describeStmt - : (DESCRIBE | DESC) TABLE? tableExpr +describeStatement + : (DESCRIBE | DESC) TABLE? tableExpression ; // DROP statement -dropStmt - : (DETACH | DROP) DATABASE (IF EXISTS)? databaseIdentifier clusterClause? # DropDatabaseStmt - | (DETACH | DROP) (DICTIONARY | TEMPORARY? TABLE | VIEW) ( IF EXISTS)? tableIdentifier clusterClause? (NO DELAY)? # DropTableStmt +dropStatement + : (DETACH | DROP) DATABASE (IF EXISTS)? databaseIdentifier clusterClause? # DropDatabaseStatement + | (DETACH | DROP) (DICTIONARY | TEMPORARY? TABLE | VIEW) ( IF EXISTS)? tableIdentifier clusterClause? (NO DELAY)? # DropTableStatement ; // EXISTS statement -existsStmt - : EXISTS DATABASE databaseIdentifier # ExistsDatabaseStmt - | EXISTS (DICTIONARY | TEMPORARY? TABLE | VIEW)? tableIdentifier # ExistsTableStmt +existsStatement + : EXISTS DATABASE databaseIdentifier # ExistsDatabaseStatement + | EXISTS (DICTIONARY | TEMPORARY? TABLE | VIEW)? tableIdentifier # ExistsTableStatement ; // EXPLAIN statement -explainStmt - : EXPLAIN notInsertStatement # ExplainDefaultStmt - | EXPLAIN AST notInsertStatement # ExplainASTStmt - | EXPLAIN SYNTAX notInsertStatement # ExplainSyntaxStmt - | EXPLAIN PIPELINE notInsertStatement # ExplainPipelineStmt - | EXPLAIN PLAN notInsertStatement # ExplainPlanStmt - | EXPLAIN QUERY TREE notInsertStatement # ExplainQueryTreeStmt - | EXPLAIN ESTIMATE notInsertStatement # ExplainEstimateStmt +explainStatement + : EXPLAIN notInsertStatement # ExplainDefaultStatement + | EXPLAIN AST notInsertStatement # ExplainASTStatement + | EXPLAIN SYNTAX notInsertStatement # ExplainSyntaxStatement + | EXPLAIN PIPELINE notInsertStatement # ExplainPipelineStatement + | EXPLAIN PLAN notInsertStatement # ExplainPlanStatement + | EXPLAIN QUERY TREE notInsertStatement # ExplainQueryTreeStatement + | EXPLAIN ESTIMATE notInsertStatement # ExplainEstimateStatement ; // INSERT statement -insertStmt - : INSERT INTO TABLE? (tableIdentifier | FUNCTION tableFunctionExpr) columnsClause? dataClause +insertStatement + : INSERT INTO TABLE? (tableIdentifier | FUNCTION tableFunctionExpression) columnsClause? dataClause ; columnsClause @@ -348,9 +347,9 @@ columnsClause ; dataClause - : FORMAT identifier # DataClauseFormat - | valuesStatement # DataClauseValues - | selectUnionStmt SEMICOLON? EOF # DataClauseSelect + : FORMAT identifier # DataClauseFormat + | valuesStatement # DataClauseValues + | selectUnionStatement SEMICOLON? EOF # DataClauseSelect ; valuesStatement @@ -360,45 +359,45 @@ valuesStatement // KILL statement -killStmt - : KILL MUTATION clusterClause? whereClause (SYNC | ASYNC | TEST)? # KillMutationStmt +killStatement + : KILL MUTATION clusterClause? whereClause (SYNC | ASYNC | TEST)? # KillMutationStatement ; // OPTIMIZE statement -optimizeStmt +optimizeStatement : OPTIMIZE TABLE tableIdentifier clusterClause? partitionClause? FINAL? DEDUPLICATE? ; // RENAME statement -renameStmt +renameStatement : RENAME TABLE tableIdentifier TO tableIdentifier (COMMA tableIdentifier TO tableIdentifier)* clusterClause? ; // PROJECTION SELECT statement -projectionSelectStmt - : LPAREN withClause? SELECT columnExprList groupByClause? projectionOrderByClause? RPAREN +projectionSelectStatement + : LPAREN withClause? SELECT columnExpressionList groupByClause? projectionOrderByClause? RPAREN ; // SELECT statement -selectUnionStmt - : selectStmtWithParens (UNION ALL selectStmtWithParens)* +selectUnionStatement + : selectStatementWithParentheses (UNION ALL selectStatementWithParentheses)* ; -selectStmtWithParens - : selectStmt - | LPAREN selectUnionStmt RPAREN +selectStatementWithParentheses + : selectStatement + | LPAREN selectUnionStatement RPAREN ; -selectStmt - : withClause? SELECT DISTINCT? topClause? columnExprList fromClause? arrayJoinClause? windowClause? prewhereClause? whereClause? groupByClause? (WITH (CUBE | ROLLUP))? (WITH TOTALS)? havingClause? orderByClause? limitByClause? limitClause? settingsClause? +selectStatement + : withClause? SELECT DISTINCT? topClause? columnExpressionList fromClause? arrayJoinClause? windowClause? prewhereClause? whereClause? groupByClause? (WITH (CUBE | ROLLUP))? (WITH TOTALS)? havingClause? orderByClause? limitByClause? limitClause? settingsClause? ; withClause - : WITH columnExprList + : WITH columnExpressionList ; topClause @@ -406,127 +405,127 @@ topClause ; fromClause - : FROM joinExpr + : FROM joinExpression ; arrayJoinClause - : (LEFT | INNER)? ARRAY JOIN columnExprList + : (LEFT | INNER)? ARRAY JOIN columnExpressionList ; windowClause - : WINDOW identifier AS LPAREN windowExpr RPAREN + : WINDOW identifier AS LPAREN windowExpression RPAREN ; prewhereClause - : PREWHERE columnExpr + : PREWHERE columnExpression ; whereClause - : WHERE columnExpr + : WHERE columnExpression ; groupByClause - : GROUP BY ((CUBE | ROLLUP) LPAREN columnExprList RPAREN | columnExprList) + : GROUP BY ((CUBE | ROLLUP) LPAREN columnExpressionList RPAREN | columnExpressionList) ; havingClause - : HAVING columnExpr + : HAVING columnExpression ; orderByClause - : ORDER BY orderExprList + : ORDER BY orderExpressionList ; projectionOrderByClause - : ORDER BY columnExprList + : ORDER BY columnExpressionList ; limitByClause - : LIMIT limitExpr BY columnExprList + : LIMIT limitExpression BY columnExpressionList ; limitClause - : LIMIT limitExpr (WITH TIES)? + : LIMIT limitExpression (WITH TIES)? ; settingsClause - : SETTINGS settingExprList + : SETTINGS settingExpressionList ; -joinExpr - : joinExpr (GLOBAL | LOCAL)? joinOp? JOIN joinExpr joinConstraintClause # JoinExprOp - | joinExpr joinOpCross joinExpr # JoinExprCrossOp - | tableExpr FINAL? sampleClause? # JoinExprTable - | LPAREN joinExpr RPAREN # JoinExprParens +joinExpression + : joinExpression (GLOBAL | LOCAL)? joinOperator? JOIN joinExpression joinConstraintClause # JoinExpressionOp + | joinExpression joinOperatorCross joinExpression # JoinExpressionCrossOp + | tableExpression FINAL? sampleClause? # JoinExpressionTable + | LPAREN joinExpression RPAREN # JoinExpressionParens ; -joinOp +joinOperator : ((ALL | ANY | ASOF)? INNER | INNER (ALL | ANY | ASOF)? | (ALL | ANY | ASOF)) # JoinOpInner | ( (SEMI | ALL | ANTI | ANY | ASOF)? (LEFT | RIGHT) OUTER? | (LEFT | RIGHT) OUTER? (SEMI | ALL | ANTI | ANY | ASOF)?) # JoinOpLeftRight | ((ALL | ANY)? FULL OUTER? | FULL OUTER? (ALL | ANY)?) # JoinOpFull ; -joinOpCross +joinOperatorCross : (GLOBAL | LOCAL)? CROSS JOIN | COMMA ; joinConstraintClause - : ON columnExprList - | USING LPAREN columnExprList RPAREN - | USING columnExprList + : ON columnExpressionList + | USING LPAREN columnExpressionList RPAREN + | USING columnExpressionList ; sampleClause - : SAMPLE ratioExpr (OFFSET ratioExpr)? + : SAMPLE ratioExpression (OFFSET ratioExpression)? ; -limitExpr - : columnExpr ((COMMA | OFFSET) columnExpr)? +limitExpression + : columnExpression ((COMMA | OFFSET) columnExpression)? ; -orderExprList - : orderExpr (COMMA orderExpr)* +orderExpressionList + : orderExpression (COMMA orderExpression)* ; -orderExpr - : columnExpr (ASCENDING | DESCENDING | DESC)? (NULLS (FIRST | LAST))? (COLLATE STRING_LITERAL)? +orderExpression + : columnExpression (ASCENDING | DESCENDING | DESC)? (NULLS (FIRST | LAST))? (COLLATE STRING_LITERAL)? ; -ratioExpr +ratioExpression : numberLiteral (SLASH numberLiteral)? ; -settingExprList - : settingExpr (COMMA settingExpr)* +settingExpressionList + : settingExpression (COMMA settingExpression)* ; -settingExpr +settingExpression : identifier EQ_SINGLE literal ; -windowExpr - : winPartitionByClause? winOrderByClause? winFrameClause? +windowExpression + : windowPartitionByClause? windowOrderByClause? windowFrameClause? ; -winPartitionByClause - : PARTITION BY columnExprList +windowPartitionByClause + : PARTITION BY columnExpressionList ; -winOrderByClause - : ORDER BY orderExprList +windowOrderByClause + : ORDER BY orderExpressionList ; -winFrameClause - : (ROWS | RANGE) winFrameExtend +windowFrameClause + : (ROWS | RANGE) windowFrameExtend ; -winFrameExtend - : winFrameBound # frameStart - | BETWEEN winFrameBound AND winFrameBound # frameBetween +windowFrameExtend + : windowFrameBound # frameStart + | BETWEEN windowFrameBound AND windowFrameBound # frameBetween ; -winFrameBound +windowFrameBound : (CURRENT ROW | UNBOUNDED PRECEDING | UNBOUNDED FOLLOWING | numberLiteral PRECEDING | numberLiteral FOLLOWING) ; @@ -534,24 +533,24 @@ winFrameBound // SET statement -setStmt - : SET settingExprList +setStatement + : SET settingExpressionList ; // SHOW statements -showStmt - : SHOW CREATE DATABASE databaseIdentifier # showCreateDatabaseStmt - | SHOW CREATE DICTIONARY tableIdentifier # showCreateDictionaryStmt - | SHOW CREATE TEMPORARY? TABLE? tableIdentifier # showCreateTableStmt - | SHOW DATABASES # showDatabasesStmt - | SHOW DICTIONARIES (FROM databaseIdentifier)? # showDictionariesStmt - | SHOW TEMPORARY? TABLES ((FROM | IN) databaseIdentifier)? ( LIKE STRING_LITERAL | whereClause)? limitClause? # showTablesStmt +showStatement + : SHOW CREATE DATABASE databaseIdentifier # showCreateDatabaseStatement + | SHOW CREATE DICTIONARY tableIdentifier # showCreateDictionaryStatement + | SHOW CREATE TEMPORARY? TABLE? tableIdentifier # showCreateTableStatement + | SHOW DATABASES # showDatabasesStatement + | SHOW DICTIONARIES (FROM databaseIdentifier)? # showDictionariesStatement + | SHOW TEMPORARY? TABLES ((FROM | IN) databaseIdentifier)? ( LIKE STRING_LITERAL | whereClause)? limitClause? # showTablesStatement ; // SYSTEM statements -systemStmt +systemStatement : SYSTEM FLUSH DISTRIBUTED tableIdentifier | SYSTEM FLUSH LOGS | SYSTEM RELOAD DICTIONARIES @@ -563,73 +562,73 @@ systemStmt // TRUNCATE statements -truncateStmt +truncateStatement : TRUNCATE TEMPORARY? TABLE? (IF EXISTS)? tableIdentifier clusterClause? ; // USE statement -useStmt +useStatement : USE databaseIdentifier ; // WATCH statement -watchStmt +watchStatement : WATCH tableIdentifier EVENTS? (LIMIT DECIMAL_LITERAL)? ; // Columns -columnTypeExpr - : identifier # ColumnTypeExprSimple // UInt64 - | identifier LPAREN identifier columnTypeExpr (COMMA identifier columnTypeExpr)* RPAREN # ColumnTypeExprNested // Nested - | identifier LPAREN enumValue (COMMA enumValue)* RPAREN # ColumnTypeExprEnum // Enum - | identifier LPAREN columnTypeExpr (COMMA columnTypeExpr)* RPAREN # ColumnTypeExprComplex +columnTypeExpression + : identifier # ColumnTypeExpressionSimple // UInt64 + | identifier LPAREN identifier columnTypeExpression (COMMA identifier columnTypeExpression)* RPAREN # ColumnTypeExpressionNested // Nested + | identifier LPAREN enumValue (COMMA enumValue)* RPAREN # ColumnTypeExpressionEnum // Enum + | identifier LPAREN columnTypeExpression (COMMA columnTypeExpression)* RPAREN # ColumnTypeExpressionComplex // Array, Tuple - | identifier LPAREN columnExprList? RPAREN # ColumnTypeExprParam + | identifier LPAREN columnExpressionList? RPAREN # ColumnTypeExpressionParam ; // FixedString(N) -columnExprList - : columnsExpr (COMMA columnsExpr)* +columnExpressionList + : columnsExpression (COMMA columnsExpression)* ; -columnsExpr - : (tableIdentifier DOT)? ASTERISK # ColumnsExprAsterisk - | LPAREN selectUnionStmt RPAREN # ColumnsExprSubquery - // NOTE: asterisk and subquery goes before |columnExpr| so that we can mark them as multi-column expressions. - | columnExpr # ColumnsExprColumn +columnsExpression + : (tableIdentifier DOT)? ASTERISK # ColumnsExpressionAsterisk + | LPAREN selectUnionStatement RPAREN # ColumnsExpressionSubquery + // NOTE: asterisk and subquery goes before |columnExpression| so that we can mark them as multi-column expressions. + | columnExpression # ColumnsExpressionColumn ; -columnExpr - : CASE columnExpr? (WHEN columnExpr THEN columnExpr)+ (ELSE columnExpr)? END # ColumnExprCase - | CAST LPAREN columnExpr AS columnTypeExpr RPAREN # ColumnExprCast - | DATE STRING_LITERAL # ColumnExprDate - | EXTRACT LPAREN interval FROM columnExpr RPAREN # ColumnExprExtract - | INTERVAL columnExpr interval # ColumnExprInterval - | SUBSTRING LPAREN columnExpr FROM columnExpr ( FOR columnExpr)? RPAREN # ColumnExprSubstring - | TIMESTAMP STRING_LITERAL # ColumnExprTimestamp - | TRIM LPAREN (BOTH | LEADING | TRAILING) STRING_LITERAL FROM columnExpr RPAREN # ColumnExprTrim - | identifier (LPAREN columnExprList? RPAREN) OVER LPAREN windowExpr RPAREN # ColumnExprWinFunction - | identifier (LPAREN columnExprList? RPAREN) OVER identifier # ColumnExprWinFunctionTarget - | identifier (LPAREN columnExprList? RPAREN)? LPAREN DISTINCT? columnArgList? RPAREN # ColumnExprFunction - | literal # ColumnExprLiteral +columnExpression + : CASE columnExpression? (WHEN columnExpression THEN columnExpression)+ (ELSE columnExpression)? END # ColumnExpressionCase + | CAST LPAREN columnExpression AS columnTypeExpression RPAREN # ColumnExpressionCast + | DATE STRING_LITERAL # ColumnExpressionDate + | EXTRACT LPAREN interval FROM columnExpression RPAREN # ColumnExpressionExtract + | INTERVAL columnExpression interval # ColumnExpressionInterval + | SUBSTRING LPAREN columnExpression FROM columnExpression ( FOR columnExpression)? RPAREN # ColumnExpressionSubstring + | TIMESTAMP STRING_LITERAL # ColumnExpressionTimestamp + | TRIM LPAREN (BOTH | LEADING | TRAILING) STRING_LITERAL FROM columnExpression RPAREN # ColumnExpressionTrim + | identifier (LPAREN columnExpressionList? RPAREN) OVER LPAREN windowExpression RPAREN # ColumnExpressionWinFunction + | identifier (LPAREN columnExpressionList? RPAREN) OVER identifier # ColumnExpressionWinFunctionTarget + | identifier (LPAREN columnExpressionList? RPAREN)? LPAREN DISTINCT? columnArgumentList? RPAREN # ColumnExpressionFunction + | literal # ColumnExpressionLiteral // FIXME(ilezhankin): this part looks very ugly, maybe there is another way to express it - | columnExpr LBRACKET columnExpr RBRACKET # ColumnExprArrayAccess - | columnExpr DOT DECIMAL_LITERAL # ColumnExprTupleAccess - | DASH columnExpr # ColumnExprNegate - | columnExpr ( + | columnExpression LBRACKET columnExpression RBRACKET # ColumnExpressionArrayAccess + | columnExpression DOT DECIMAL_LITERAL # ColumnExpressionTupleAccess + | DASH columnExpression # ColumnExpressionNegate + | columnExpression ( ASTERISK // multiply | SLASH // divide | PERCENT // modulo - ) columnExpr # ColumnExprPrecedence1 - | columnExpr ( + ) columnExpression # ColumnExpressionPrecedence1 + | columnExpression ( PLUS // plus | DASH // minus | CONCAT // concat - ) columnExpr # ColumnExprPrecedence2 - | columnExpr ( + ) columnExpression # ColumnExpressionPrecedence2 + | columnExpression ( EQ_DOUBLE // equals | EQ_SINGLE // equals | NOT_EQ // notEquals @@ -639,34 +638,34 @@ columnExpr | GT // greater | GLOBAL? NOT? IN // in, notIn, globalIn, globalNotIn | NOT? (LIKE | ILIKE) // like, notLike, ilike, notILike - ) columnExpr # ColumnExprPrecedence3 - | columnExpr IS NOT? NULL_SQL # ColumnExprIsNull - | NOT columnExpr # ColumnExprNot - | columnExpr AND columnExpr # ColumnExprAnd - | columnExpr OR columnExpr # ColumnExprOr + ) columnExpression # ColumnExpressionPrecedence3 + | columnExpression IS NOT? NULL_SQL # ColumnExpressionIsNull + | NOT columnExpression # ColumnExpressionNot + | columnExpression AND columnExpression # ColumnExpressionAnd + | columnExpression OR columnExpression # ColumnExpressionOr // TODO(ilezhankin): `BETWEEN a AND b AND c` is parsed in a wrong way: `BETWEEN (a AND b) AND c` - | columnExpr NOT? BETWEEN columnExpr AND columnExpr # ColumnExprBetween - | columnExpr QUESTIONMARK columnExpr COLON columnExpr # ColumnExprTernaryOp - | columnExpr (alias | AS identifier) # ColumnExprAlias - | (tableIdentifier DOT)? ASTERISK # ColumnExprAsterisk // single-column only - | LPAREN selectUnionStmt RPAREN # ColumnExprSubquery // single-column only - | LPAREN columnExpr RPAREN # ColumnExprParens // single-column only - | LPAREN columnExprList RPAREN # ColumnExprTuple - | LBRACKET columnExprList? RBRACKET # ColumnExprArray - | columnIdentifier # ColumnExprIdentifier + | columnExpression NOT? BETWEEN columnExpression AND columnExpression # ColumnExpressionBetween + | columnExpression QUESTIONMARK columnExpression COLON columnExpression # ColumnExpressionTernaryOp + | columnExpression (alias | AS identifier) # ColumnExpressionAlias + | (tableIdentifier DOT)? ASTERISK # ColumnExpressionAsterisk // single-column only + | LPAREN selectUnionStatement RPAREN # ColumnExpressionSubquery // single-column only + | LPAREN columnExpression RPAREN # ColumnExpressionParens // single-column only + | LPAREN columnExpressionList RPAREN # ColumnExpressionTuple + | LBRACKET columnExpressionList? RBRACKET # ColumnExpressionArray + | columnIdentifier # ColumnExpressionIdentifier ; -columnArgList - : columnArgExpr (COMMA columnArgExpr)* +columnArgumentList + : columnArgumentExpression (COMMA columnArgumentExpression)* ; -columnArgExpr - : columnLambdaExpr - | columnExpr +columnArgumentExpression + : columnLambdaExpression + | columnExpression ; -columnLambdaExpr - : (LPAREN identifier (COMMA identifier)* RPAREN | identifier (COMMA identifier)*) ARROW columnExpr +columnLambdaExpression + : (LPAREN identifier (COMMA identifier)* RPAREN | identifier (COMMA identifier)*) ARROW columnExpression ; columnIdentifier @@ -675,14 +674,14 @@ columnIdentifier // Tables -tableExpr - : tableIdentifier # TableExprIdentifier - | tableFunctionExpr # TableExprFunction - | LPAREN selectUnionStmt RPAREN # TableExprSubquery - | tableExpr (alias | AS identifier) # TableExprAlias +tableExpression + : tableIdentifier # TableExpressionIdentifier + | tableFunctionExpression # TableExpressionFunction + | LPAREN selectUnionStatement RPAREN # TableExpressionSubquery + | tableExpression (alias | AS identifier) # TableExpressionAlias ; -tableFunctionExpr +tableFunctionExpression : identifier LPAREN tableArgList? RPAREN ; @@ -691,12 +690,12 @@ tableIdentifier ; tableArgList - : tableArgExpr (COMMA tableArgExpr)* + : tableArgExpression (COMMA tableArgExpression)* ; -tableArgExpr +tableArgExpression : columnIdentifier - | tableFunctionExpr + | tableFunctionExpression | literal ; diff --git a/src/autocomplete/mysql/generated/MySqlParser.interp b/src/autocomplete/mysql/generated/MySqlParser.interp index 8c8b234e..8fa5c3fa 100644 --- a/src/autocomplete/mysql/generated/MySqlParser.interp +++ b/src/autocomplete/mysql/generated/MySqlParser.interp @@ -2328,8 +2328,8 @@ ERROR_RECONGNIGION rule names: root -sqlStatements -sqlStatement +statements +statement ddlStatement dmlStatement transactionStatement @@ -2691,4 +2691,4 @@ functionNameBase atn: -[4, 1, 1161, 7432, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 1, 0, 3, 0, 724, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 730, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 737, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 746, 8, 2, 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, 786, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 801, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 812, 8, 5, 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, 829, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 834, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 846, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 873, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 882, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 887, 8, 11, 1, 11, 1, 11, 5, 11, 891, 8, 11, 10, 11, 12, 11, 894, 9, 11, 1, 12, 1, 12, 3, 12, 898, 8, 12, 1, 12, 1, 12, 3, 12, 902, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 911, 8, 12, 1, 12, 3, 12, 914, 8, 12, 1, 12, 3, 12, 917, 8, 12, 1, 12, 1, 12, 3, 12, 921, 8, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 3, 13, 928, 8, 13, 1, 13, 3, 13, 931, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 936, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 942, 8, 13, 10, 13, 12, 13, 945, 9, 13, 1, 13, 1, 13, 3, 13, 949, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 954, 8, 13, 1, 13, 5, 13, 957, 8, 13, 10, 13, 12, 13, 960, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 971, 8, 14, 1, 14, 3, 14, 974, 8, 14, 1, 14, 1, 14, 3, 14, 978, 8, 14, 1, 14, 3, 14, 981, 8, 14, 1, 14, 1, 14, 3, 14, 985, 8, 14, 1, 14, 3, 14, 988, 8, 14, 1, 14, 1, 14, 3, 14, 992, 8, 14, 1, 14, 3, 14, 995, 8, 14, 1, 14, 3, 14, 998, 8, 14, 1, 14, 1, 14, 3, 14, 1002, 8, 14, 1, 14, 3, 14, 1005, 8, 14, 1, 14, 1, 14, 3, 14, 1009, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 1015, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1021, 8, 15, 1, 15, 1, 15, 5, 15, 1025, 8, 15, 10, 15, 12, 15, 1028, 9, 15, 1, 15, 1, 15, 5, 15, 1032, 8, 15, 10, 15, 12, 15, 1035, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1041, 8, 16, 1, 16, 3, 16, 1044, 8, 16, 1, 16, 1, 16, 3, 16, 1048, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1053, 8, 16, 1, 16, 1, 16, 5, 16, 1057, 8, 16, 10, 16, 12, 16, 1060, 9, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1066, 8, 16, 10, 16, 12, 16, 1069, 9, 16, 1, 16, 1, 16, 3, 16, 1073, 8, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1078, 8, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1083, 8, 17, 10, 17, 12, 17, 1086, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1100, 8, 18, 10, 18, 12, 18, 1103, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1109, 8, 19, 1, 19, 1, 19, 3, 19, 1113, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1123, 8, 19, 1, 19, 1, 19, 3, 19, 1127, 8, 19, 1, 19, 1, 19, 3, 19, 1131, 8, 19, 1, 19, 1, 19, 3, 19, 1135, 8, 19, 1, 19, 1, 19, 3, 19, 1139, 8, 19, 1, 19, 5, 19, 1142, 8, 19, 10, 19, 12, 19, 1145, 9, 19, 3, 19, 1147, 8, 19, 1, 19, 3, 19, 1150, 8, 19, 1, 19, 3, 19, 1153, 8, 19, 1, 19, 3, 19, 1156, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1162, 8, 19, 1, 19, 1, 19, 3, 19, 1166, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1172, 8, 19, 1, 19, 5, 19, 1175, 8, 19, 10, 19, 12, 19, 1178, 9, 19, 3, 19, 1180, 8, 19, 1, 19, 3, 19, 1183, 8, 19, 3, 19, 1185, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1196, 8, 20, 1, 20, 1, 20, 3, 20, 1200, 8, 20, 1, 20, 3, 20, 1203, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1217, 8, 21, 1, 21, 3, 21, 1220, 8, 21, 1, 21, 1, 21, 3, 21, 1224, 8, 21, 1, 21, 3, 21, 1227, 8, 21, 1, 21, 1, 21, 3, 21, 1231, 8, 21, 1, 21, 3, 21, 1234, 8, 21, 1, 21, 1, 21, 3, 21, 1238, 8, 21, 1, 21, 3, 21, 1241, 8, 21, 1, 21, 1, 21, 3, 21, 1245, 8, 21, 1, 21, 3, 21, 1248, 8, 21, 1, 21, 3, 21, 1251, 8, 21, 1, 21, 1, 21, 3, 21, 1255, 8, 21, 1, 21, 3, 21, 1258, 8, 21, 1, 21, 1, 21, 3, 21, 1262, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1268, 8, 22, 1, 22, 1, 22, 3, 22, 1272, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1284, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1290, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1299, 8, 24, 10, 24, 12, 24, 1302, 9, 24, 1, 24, 1, 24, 3, 24, 1306, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1314, 8, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1322, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1327, 8, 27, 1, 27, 3, 27, 1330, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1335, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1343, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1348, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1354, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1359, 8, 27, 1, 27, 1, 27, 3, 27, 1363, 8, 27, 3, 27, 1365, 8, 27, 1, 28, 3, 28, 1368, 8, 28, 1, 28, 1, 28, 3, 28, 1372, 8, 28, 1, 28, 1, 28, 3, 28, 1376, 8, 28, 1, 28, 3, 28, 1379, 8, 28, 1, 28, 1, 28, 3, 28, 1383, 8, 28, 1, 28, 1, 28, 3, 28, 1387, 8, 28, 1, 28, 1, 28, 3, 28, 1391, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1397, 8, 28, 1, 28, 3, 28, 1400, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1407, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1412, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1418, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1423, 8, 32, 10, 32, 12, 32, 1426, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1431, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1437, 8, 32, 10, 32, 12, 32, 1440, 9, 32, 3, 32, 1442, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1447, 8, 32, 10, 32, 12, 32, 1450, 9, 32, 3, 32, 1452, 8, 32, 3, 32, 1454, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1460, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1466, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1483, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1490, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1497, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1509, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1514, 8, 38, 1, 38, 3, 38, 1517, 8, 38, 1, 39, 3, 39, 1520, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1533, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1546, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1551, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1567, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1573, 8, 43, 10, 43, 12, 43, 1576, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1585, 8, 44, 1, 44, 3, 44, 1588, 8, 44, 1, 44, 3, 44, 1591, 8, 44, 1, 45, 1, 45, 5, 45, 1595, 8, 45, 10, 45, 12, 45, 1598, 9, 45, 1, 45, 3, 45, 1601, 8, 45, 1, 45, 3, 45, 1604, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1615, 8, 46, 1, 46, 3, 46, 1618, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1623, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1636, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1643, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1650, 8, 46, 3, 46, 1652, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1659, 8, 46, 1, 47, 1, 47, 3, 47, 1663, 8, 47, 3, 47, 1665, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1670, 8, 47, 1, 47, 3, 47, 1673, 8, 47, 1, 47, 1, 47, 5, 47, 1677, 8, 47, 10, 47, 12, 47, 1680, 9, 47, 1, 47, 1, 47, 3, 47, 1684, 8, 47, 3, 47, 1686, 8, 47, 1, 47, 1, 47, 3, 47, 1690, 8, 47, 1, 47, 3, 47, 1693, 8, 47, 1, 47, 3, 47, 1696, 8, 47, 1, 47, 1, 47, 5, 47, 1700, 8, 47, 10, 47, 12, 47, 1703, 9, 47, 1, 47, 1, 47, 3, 47, 1707, 8, 47, 3, 47, 1709, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1714, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1721, 8, 47, 3, 47, 1723, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1730, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 1735, 8, 48, 1, 48, 1, 48, 3, 48, 1739, 8, 48, 1, 48, 3, 48, 1742, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1750, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1758, 8, 49, 3, 49, 1760, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1770, 8, 50, 1, 51, 1, 51, 3, 51, 1774, 8, 51, 1, 51, 3, 51, 1777, 8, 51, 1, 51, 1, 51, 5, 51, 1781, 8, 51, 10, 51, 12, 51, 1784, 9, 51, 1, 51, 1, 51, 3, 51, 1788, 8, 51, 1, 51, 3, 51, 1791, 8, 51, 1, 51, 1, 51, 5, 51, 1795, 8, 51, 10, 51, 12, 51, 1798, 9, 51, 3, 51, 1800, 8, 51, 1, 52, 1, 52, 3, 52, 1804, 8, 52, 1, 52, 3, 52, 1807, 8, 52, 1, 52, 1, 52, 3, 52, 1811, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1816, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1821, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1826, 8, 52, 1, 52, 1, 52, 3, 52, 1830, 8, 52, 1, 52, 1, 52, 3, 52, 1834, 8, 52, 1, 52, 1, 52, 3, 52, 1838, 8, 52, 1, 52, 1, 52, 3, 52, 1842, 8, 52, 1, 52, 1, 52, 3, 52, 1846, 8, 52, 1, 52, 1, 52, 3, 52, 1850, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1855, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1860, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1865, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1871, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1876, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1881, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1886, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1891, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1896, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1902, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1907, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1912, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1917, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1922, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1927, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1932, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1937, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1944, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1949, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1954, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 52, 1, 52, 3, 52, 1963, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1968, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1976, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1981, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1987, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1999, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2006, 8, 55, 3, 55, 2008, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2014, 8, 55, 10, 55, 12, 55, 2017, 9, 55, 1, 55, 1, 55, 3, 55, 2021, 8, 55, 1, 56, 3, 56, 2024, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2032, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2038, 8, 56, 1, 56, 1, 56, 3, 56, 2042, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2055, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2067, 8, 56, 3, 56, 2069, 8, 56, 1, 57, 3, 57, 2072, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2080, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2092, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2103, 8, 58, 10, 58, 12, 58, 2106, 9, 58, 1, 58, 1, 58, 5, 58, 2110, 8, 58, 10, 58, 12, 58, 2113, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2119, 8, 58, 10, 58, 12, 58, 2122, 9, 58, 1, 58, 1, 58, 3, 58, 2126, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2135, 8, 58, 10, 58, 12, 58, 2138, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2144, 8, 58, 10, 58, 12, 58, 2147, 9, 58, 1, 58, 1, 58, 3, 58, 2151, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2161, 8, 58, 10, 58, 12, 58, 2164, 9, 58, 1, 58, 1, 58, 5, 58, 2168, 8, 58, 10, 58, 12, 58, 2171, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2177, 8, 58, 10, 58, 12, 58, 2180, 9, 58, 1, 58, 1, 58, 3, 58, 2184, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2194, 8, 58, 10, 58, 12, 58, 2197, 9, 58, 1, 58, 1, 58, 5, 58, 2201, 8, 58, 10, 58, 12, 58, 2204, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2210, 8, 58, 10, 58, 12, 58, 2213, 9, 58, 1, 58, 1, 58, 3, 58, 2217, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2222, 8, 58, 10, 58, 12, 58, 2225, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2231, 8, 58, 10, 58, 12, 58, 2234, 9, 58, 1, 58, 1, 58, 3, 58, 2238, 8, 58, 3, 58, 2240, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2245, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2251, 8, 60, 11, 60, 12, 60, 2252, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2260, 8, 61, 10, 61, 12, 61, 2263, 9, 61, 1, 62, 3, 62, 2266, 8, 62, 1, 62, 3, 62, 2269, 8, 62, 1, 62, 1, 62, 3, 62, 2273, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2278, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2284, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2290, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2295, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2300, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2305, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2310, 8, 62, 1, 62, 3, 62, 2313, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2318, 8, 63, 1, 63, 4, 63, 2321, 8, 63, 11, 63, 12, 63, 2322, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2333, 8, 63, 1, 64, 1, 64, 3, 64, 2337, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2344, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2349, 8, 64, 1, 64, 3, 64, 2352, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2357, 8, 64, 1, 64, 3, 64, 2360, 8, 64, 1, 64, 1, 64, 3, 64, 2364, 8, 64, 1, 64, 1, 64, 3, 64, 2368, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2374, 8, 65, 10, 65, 12, 65, 2377, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2395, 8, 67, 1, 67, 3, 67, 2398, 8, 67, 1, 67, 3, 67, 2401, 8, 67, 1, 67, 1, 67, 3, 67, 2405, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2413, 8, 68, 10, 68, 12, 68, 2416, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2426, 8, 69, 10, 69, 12, 69, 2429, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 2435, 8, 70, 1, 70, 3, 70, 2438, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2443, 8, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2448, 8, 70, 10, 70, 12, 70, 2451, 9, 70, 3, 70, 2453, 8, 70, 1, 70, 3, 70, 2456, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2467, 8, 71, 1, 71, 3, 71, 2470, 8, 71, 1, 71, 1, 71, 3, 71, 2474, 8, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2482, 8, 72, 1, 72, 3, 72, 2485, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2490, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2498, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2504, 8, 72, 1, 72, 1, 72, 3, 72, 2508, 8, 72, 1, 73, 1, 73, 3, 73, 2512, 8, 73, 1, 73, 5, 73, 2515, 8, 73, 10, 73, 12, 73, 2518, 9, 73, 1, 73, 1, 73, 3, 73, 2522, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2529, 8, 73, 1, 73, 1, 73, 3, 73, 2533, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2542, 8, 73, 10, 73, 12, 73, 2545, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2552, 8, 73, 1, 73, 3, 73, 2555, 8, 73, 1, 73, 1, 73, 5, 73, 2559, 8, 73, 10, 73, 12, 73, 2562, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2567, 8, 73, 3, 73, 2569, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2574, 8, 73, 1, 73, 3, 73, 2577, 8, 73, 1, 73, 1, 73, 5, 73, 2581, 8, 73, 10, 73, 12, 73, 2584, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2589, 8, 73, 3, 73, 2591, 8, 73, 1, 73, 1, 73, 3, 73, 2595, 8, 73, 1, 73, 3, 73, 2598, 8, 73, 1, 73, 3, 73, 2601, 8, 73, 1, 73, 1, 73, 5, 73, 2605, 8, 73, 10, 73, 12, 73, 2608, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2613, 8, 73, 1, 73, 3, 73, 2616, 8, 73, 1, 73, 1, 73, 5, 73, 2620, 8, 73, 10, 73, 12, 73, 2623, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2628, 8, 73, 3, 73, 2630, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2635, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2643, 8, 73, 3, 73, 2645, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2654, 8, 73, 1, 73, 3, 73, 2657, 8, 73, 1, 73, 3, 73, 2660, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2665, 8, 73, 3, 73, 2667, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2676, 8, 73, 1, 73, 3, 73, 2679, 8, 73, 1, 73, 3, 73, 2682, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2687, 8, 73, 3, 73, 2689, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2698, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2703, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2711, 8, 73, 1, 73, 1, 73, 3, 73, 2715, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2723, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2733, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2738, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2745, 8, 73, 1, 73, 1, 73, 3, 73, 2749, 8, 73, 1, 73, 1, 73, 3, 73, 2753, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2772, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2782, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2805, 8, 73, 1, 73, 1, 73, 3, 73, 2809, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2819, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2824, 8, 73, 1, 73, 3, 73, 2827, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2836, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2847, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2853, 8, 73, 10, 73, 12, 73, 2856, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2861, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2869, 8, 74, 10, 74, 12, 74, 2872, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2883, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2890, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2897, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2910, 8, 74, 10, 74, 12, 74, 2913, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2925, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2931, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2937, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2943, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2949, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2955, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2961, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2966, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2973, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2980, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2987, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2992, 8, 77, 1, 77, 5, 77, 2995, 8, 77, 10, 77, 12, 77, 2998, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3011, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3018, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3025, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 3031, 8, 82, 1, 82, 1, 82, 3, 82, 3035, 8, 82, 1, 82, 1, 82, 3, 82, 3039, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 3046, 8, 83, 1, 83, 3, 83, 3049, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3054, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3061, 8, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3066, 8, 85, 10, 85, 12, 85, 3069, 9, 85, 1, 85, 3, 85, 3072, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3077, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3082, 8, 86, 10, 86, 12, 86, 3085, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 3095, 8, 87, 10, 87, 12, 87, 3098, 9, 87, 3, 87, 3100, 8, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3105, 8, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3110, 8, 87, 5, 87, 3112, 8, 87, 10, 87, 12, 87, 3115, 9, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3120, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3127, 8, 88, 10, 88, 12, 88, 3130, 9, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 3138, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3147, 8, 91, 1, 91, 3, 91, 3150, 8, 91, 1, 92, 1, 92, 3, 92, 3154, 8, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3163, 8, 94, 1, 95, 1, 95, 3, 95, 3167, 8, 95, 1, 95, 3, 95, 3170, 8, 95, 1, 95, 3, 95, 3173, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3179, 8, 95, 1, 95, 3, 95, 3182, 8, 95, 1, 95, 1, 95, 3, 95, 3186, 8, 95, 1, 95, 3, 95, 3189, 8, 95, 1, 95, 1, 95, 3, 95, 3193, 8, 95, 1, 95, 3, 95, 3196, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 3202, 8, 95, 10, 95, 12, 95, 3205, 9, 95, 3, 95, 3207, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 3216, 8, 95, 10, 95, 12, 95, 3219, 9, 95, 3, 95, 3221, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3226, 8, 96, 1, 96, 3, 96, 3229, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3234, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3244, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3249, 8, 96, 1, 96, 1, 96, 4, 96, 3253, 8, 96, 11, 96, 12, 96, 3254, 3, 96, 3257, 8, 96, 1, 96, 1, 96, 4, 96, 3261, 8, 96, 11, 96, 12, 96, 3262, 3, 96, 3265, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3271, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3277, 8, 96, 10, 96, 12, 96, 3280, 9, 96, 1, 96, 1, 96, 3, 96, 3284, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3290, 8, 96, 10, 96, 12, 96, 3293, 9, 96, 3, 96, 3295, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3300, 8, 97, 1, 97, 3, 97, 3303, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3308, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3316, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3324, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3330, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3336, 8, 97, 10, 97, 12, 97, 3339, 9, 97, 1, 97, 1, 97, 3, 97, 3343, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3349, 8, 97, 10, 97, 12, 97, 3352, 9, 97, 3, 97, 3354, 8, 97, 1, 98, 1, 98, 3, 98, 3358, 8, 98, 1, 98, 3, 98, 3361, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3369, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3375, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3382, 8, 98, 10, 98, 12, 98, 3385, 9, 98, 3, 98, 3387, 8, 98, 1, 99, 1, 99, 3, 99, 3391, 8, 99, 1, 99, 1, 99, 3, 99, 3395, 8, 99, 1, 99, 1, 99, 3, 99, 3399, 8, 99, 1, 99, 4, 99, 3402, 8, 99, 11, 99, 12, 99, 3403, 1, 99, 1, 99, 3, 99, 3408, 8, 99, 1, 99, 1, 99, 3, 99, 3412, 8, 99, 3, 99, 3414, 8, 99, 1, 99, 3, 99, 3417, 8, 99, 1, 99, 3, 99, 3420, 8, 99, 1, 99, 3, 99, 3423, 8, 99, 1, 99, 1, 99, 4, 99, 3427, 8, 99, 11, 99, 12, 99, 3428, 1, 99, 1, 99, 3, 99, 3433, 8, 99, 1, 99, 3, 99, 3436, 8, 99, 1, 99, 3, 99, 3439, 8, 99, 1, 99, 3, 99, 3442, 8, 99, 1, 99, 3, 99, 3445, 8, 99, 1, 99, 1, 99, 1, 99, 4, 99, 3450, 8, 99, 11, 99, 12, 99, 3451, 3, 99, 3454, 8, 99, 1, 100, 1, 100, 3, 100, 3458, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3463, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3469, 8, 101, 1, 101, 5, 101, 3472, 8, 101, 10, 101, 12, 101, 3475, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3481, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3487, 8, 102, 1, 102, 5, 102, 3490, 8, 102, 10, 102, 12, 102, 3493, 9, 102, 3, 102, 3495, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3501, 8, 103, 1, 104, 1, 104, 3, 104, 3505, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3513, 8, 105, 1, 106, 1, 106, 3, 106, 3517, 8, 106, 1, 106, 3, 106, 3520, 8, 106, 1, 106, 3, 106, 3523, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3528, 8, 106, 1, 106, 3, 106, 3531, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3538, 8, 106, 1, 106, 1, 106, 3, 106, 3542, 8, 106, 1, 106, 3, 106, 3545, 8, 106, 1, 106, 1, 106, 3, 106, 3549, 8, 106, 1, 107, 1, 107, 3, 107, 3553, 8, 107, 1, 107, 3, 107, 3556, 8, 107, 1, 107, 3, 107, 3559, 8, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3564, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3570, 8, 107, 5, 107, 3572, 8, 107, 10, 107, 12, 107, 3575, 9, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3584, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3590, 8, 107, 5, 107, 3592, 8, 107, 10, 107, 12, 107, 3595, 9, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3600, 8, 107, 1, 107, 1, 107, 3, 107, 3604, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3610, 8, 108, 1, 108, 3, 108, 3613, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3625, 8, 109, 1, 109, 1, 109, 3, 109, 3629, 8, 109, 1, 109, 1, 109, 3, 109, 3633, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3641, 8, 110, 1, 110, 1, 110, 3, 110, 3645, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 3, 112, 3653, 8, 112, 1, 112, 3, 112, 3656, 8, 112, 1, 112, 1, 112, 3, 112, 3660, 8, 112, 1, 112, 3, 112, 3663, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3669, 8, 112, 10, 112, 12, 112, 3672, 9, 112, 1, 112, 1, 112, 3, 112, 3676, 8, 112, 1, 112, 3, 112, 3679, 8, 112, 1, 112, 3, 112, 3682, 8, 112, 1, 113, 1, 113, 3, 113, 3686, 8, 113, 1, 113, 3, 113, 3689, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3696, 8, 113, 10, 113, 12, 113, 3699, 9, 113, 1, 113, 1, 113, 3, 113, 3703, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3710, 8, 114, 10, 114, 12, 114, 3713, 9, 114, 1, 115, 1, 115, 3, 115, 3717, 8, 115, 1, 116, 1, 116, 1, 116, 5, 116, 3722, 8, 116, 10, 116, 12, 116, 3725, 9, 116, 1, 117, 1, 117, 5, 117, 3729, 8, 117, 10, 117, 12, 117, 3732, 9, 117, 1, 117, 1, 117, 1, 117, 5, 117, 3737, 8, 117, 10, 117, 12, 117, 3740, 9, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3745, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3753, 8, 118, 1, 118, 3, 118, 3756, 8, 118, 1, 118, 3, 118, 3759, 8, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3764, 8, 118, 10, 118, 12, 118, 3767, 9, 118, 3, 118, 3769, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3776, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3784, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3790, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3801, 8, 120, 1, 121, 3, 121, 3804, 8, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 1, 121, 1, 121, 5, 121, 3812, 8, 121, 10, 121, 12, 121, 3815, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3821, 8, 121, 10, 121, 12, 121, 3824, 9, 121, 1, 121, 1, 121, 3, 121, 3828, 8, 121, 1, 121, 1, 121, 3, 121, 3832, 8, 121, 1, 121, 1, 121, 5, 121, 3836, 8, 121, 10, 121, 12, 121, 3839, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3844, 8, 121, 3, 121, 3846, 8, 121, 1, 121, 1, 121, 3, 121, 3850, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3859, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3869, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3879, 8, 124, 1, 125, 1, 125, 5, 125, 3883, 8, 125, 10, 125, 12, 125, 3886, 9, 125, 1, 125, 1, 125, 3, 125, 3890, 8, 125, 1, 125, 1, 125, 3, 125, 3894, 8, 125, 1, 125, 3, 125, 3897, 8, 125, 1, 125, 3, 125, 3900, 8, 125, 1, 125, 3, 125, 3903, 8, 125, 1, 125, 3, 125, 3906, 8, 125, 1, 125, 1, 125, 5, 125, 3910, 8, 125, 10, 125, 12, 125, 3913, 9, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3918, 8, 125, 1, 125, 3, 125, 3921, 8, 125, 1, 125, 3, 125, 3924, 8, 125, 1, 125, 3, 125, 3927, 8, 125, 1, 125, 3, 125, 3930, 8, 125, 1, 125, 3, 125, 3933, 8, 125, 3, 125, 3935, 8, 125, 1, 126, 1, 126, 5, 126, 3939, 8, 126, 10, 126, 12, 126, 3942, 9, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3947, 8, 126, 1, 126, 3, 126, 3950, 8, 126, 1, 126, 3, 126, 3953, 8, 126, 1, 126, 3, 126, 3956, 8, 126, 1, 126, 3, 126, 3959, 8, 126, 1, 126, 3, 126, 3962, 8, 126, 1, 127, 1, 127, 3, 127, 3966, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3972, 8, 128, 1, 128, 1, 128, 3, 128, 3976, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3984, 8, 129, 1, 129, 1, 129, 3, 129, 3988, 8, 129, 1, 129, 3, 129, 3991, 8, 129, 3, 129, 3993, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 4006, 8, 130, 1, 130, 3, 130, 4009, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 4014, 8, 131, 10, 131, 12, 131, 4017, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4026, 8, 132, 1, 132, 3, 132, 4029, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4034, 8, 132, 3, 132, 4036, 8, 132, 1, 132, 1, 132, 3, 132, 4040, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4048, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4054, 8, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4063, 8, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4076, 8, 135, 1, 136, 1, 136, 3, 136, 4080, 8, 136, 1, 136, 1, 136, 5, 136, 4084, 8, 136, 10, 136, 12, 136, 4087, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4095, 8, 137, 1, 137, 3, 137, 4098, 8, 137, 1, 137, 1, 137, 3, 137, 4102, 8, 137, 1, 137, 3, 137, 4105, 8, 137, 1, 137, 1, 137, 3, 137, 4109, 8, 137, 1, 137, 1, 137, 3, 137, 4113, 8, 137, 1, 137, 3, 137, 4116, 8, 137, 3, 137, 4118, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4124, 8, 138, 10, 138, 12, 138, 4127, 9, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4138, 8, 138, 1, 138, 1, 138, 4, 138, 4142, 8, 138, 11, 138, 12, 138, 4143, 3, 138, 4146, 8, 138, 1, 138, 1, 138, 4, 138, 4150, 8, 138, 11, 138, 12, 138, 4151, 3, 138, 4154, 8, 138, 3, 138, 4156, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4162, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4170, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4178, 8, 140, 1, 141, 1, 141, 3, 141, 4182, 8, 141, 1, 141, 1, 141, 3, 141, 4186, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 4193, 8, 142, 10, 142, 12, 142, 4196, 9, 142, 1, 142, 1, 142, 3, 142, 4200, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 4218, 8, 144, 10, 144, 12, 144, 4221, 9, 144, 1, 145, 1, 145, 3, 145, 4225, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4231, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4238, 8, 146, 1, 147, 1, 147, 1, 147, 3, 147, 4243, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 4250, 8, 148, 10, 148, 12, 148, 4253, 9, 148, 3, 148, 4255, 8, 148, 1, 149, 1, 149, 3, 149, 4259, 8, 149, 1, 150, 1, 150, 3, 150, 4263, 8, 150, 1, 150, 1, 150, 3, 150, 4267, 8, 150, 1, 150, 3, 150, 4270, 8, 150, 1, 150, 3, 150, 4273, 8, 150, 1, 150, 3, 150, 4276, 8, 150, 1, 151, 1, 151, 3, 151, 4280, 8, 151, 1, 151, 1, 151, 3, 151, 4284, 8, 151, 1, 151, 3, 151, 4287, 8, 151, 1, 151, 3, 151, 4290, 8, 151, 1, 151, 3, 151, 4293, 8, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 4300, 8, 153, 1, 153, 1, 153, 3, 153, 4304, 8, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 4317, 8, 155, 10, 155, 12, 155, 4320, 9, 155, 1, 155, 3, 155, 4323, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 3, 158, 4335, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 4341, 8, 158, 10, 158, 12, 158, 4344, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4353, 8, 159, 1, 160, 1, 160, 3, 160, 4357, 8, 160, 1, 160, 3, 160, 4360, 8, 160, 1, 160, 1, 160, 1, 161, 1, 161, 3, 161, 4366, 8, 161, 1, 161, 3, 161, 4369, 8, 161, 1, 161, 3, 161, 4372, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4381, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4390, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 4398, 8, 164, 10, 164, 12, 164, 4401, 9, 164, 1, 164, 3, 164, 4404, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 4412, 8, 165, 10, 165, 12, 165, 4415, 9, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 4424, 8, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 3, 168, 4432, 8, 168, 1, 168, 3, 168, 4435, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4442, 8, 169, 10, 169, 12, 169, 4445, 9, 169, 3, 169, 4447, 8, 169, 1, 169, 1, 169, 3, 169, 4451, 8, 169, 1, 169, 5, 169, 4454, 8, 169, 10, 169, 12, 169, 4457, 9, 169, 1, 169, 3, 169, 4460, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 4467, 8, 170, 10, 170, 12, 170, 4470, 9, 170, 3, 170, 4472, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4501, 8, 173, 10, 173, 12, 173, 4504, 9, 173, 3, 173, 4506, 8, 173, 1, 173, 3, 173, 4509, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4563, 8, 178, 10, 178, 12, 178, 4566, 9, 178, 1, 178, 1, 178, 3, 178, 4570, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4598, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4612, 8, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4617, 8, 183, 10, 183, 12, 183, 4620, 9, 183, 1, 183, 3, 183, 4623, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4629, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4637, 8, 185, 3, 185, 4639, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4650, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4660, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4667, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4673, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4681, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 4686, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4692, 8, 194, 10, 194, 12, 194, 4695, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4700, 8, 194, 10, 194, 12, 194, 4703, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4708, 8, 194, 10, 194, 12, 194, 4711, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4716, 8, 194, 10, 194, 12, 194, 4719, 9, 194, 1, 194, 5, 194, 4722, 8, 194, 10, 194, 12, 194, 4725, 9, 194, 1, 194, 1, 194, 3, 194, 4729, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4734, 8, 195, 1, 195, 4, 195, 4737, 8, 195, 11, 195, 12, 195, 4738, 1, 195, 1, 195, 4, 195, 4743, 8, 195, 11, 195, 12, 195, 4744, 3, 195, 4747, 8, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 4, 196, 4756, 8, 196, 11, 196, 12, 196, 4757, 1, 196, 5, 196, 4761, 8, 196, 10, 196, 12, 196, 4764, 9, 196, 1, 196, 1, 196, 4, 196, 4768, 8, 196, 11, 196, 12, 196, 4769, 3, 196, 4772, 8, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 3, 199, 4786, 8, 199, 1, 199, 1, 199, 4, 199, 4790, 8, 199, 11, 199, 12, 199, 4791, 1, 199, 1, 199, 1, 199, 3, 199, 4797, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4802, 8, 200, 1, 200, 1, 200, 4, 200, 4806, 8, 200, 11, 200, 12, 200, 4807, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4815, 8, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4823, 8, 202, 1, 202, 1, 202, 1, 202, 1, 202, 4, 202, 4829, 8, 202, 11, 202, 12, 202, 4830, 1, 202, 1, 202, 1, 202, 3, 202, 4836, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4842, 8, 203, 1, 203, 3, 203, 4845, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4853, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4860, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4869, 8, 205, 1, 205, 3, 205, 4872, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 4887, 8, 207, 10, 207, 12, 207, 4890, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 3, 208, 4897, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4905, 8, 208, 1, 209, 1, 209, 3, 209, 4909, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 3, 210, 4916, 8, 210, 1, 210, 1, 210, 4, 210, 4920, 8, 210, 11, 210, 12, 210, 4921, 1, 211, 1, 211, 1, 211, 1, 211, 4, 211, 4928, 8, 211, 11, 211, 12, 211, 4929, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4937, 8, 212, 10, 212, 12, 212, 4940, 9, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4945, 8, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4950, 8, 212, 10, 212, 12, 212, 4953, 9, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4959, 8, 212, 1, 212, 5, 212, 4962, 8, 212, 10, 212, 12, 212, 4965, 9, 212, 3, 212, 4967, 8, 212, 3, 212, 4969, 8, 212, 1, 212, 1, 212, 4, 212, 4973, 8, 212, 11, 212, 12, 212, 4974, 3, 212, 4977, 8, 212, 1, 212, 1, 212, 5, 212, 4981, 8, 212, 10, 212, 12, 212, 4984, 9, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4990, 8, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4995, 8, 212, 1, 212, 1, 212, 3, 212, 4999, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 5005, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 5012, 8, 213, 10, 213, 12, 213, 5015, 9, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5020, 8, 213, 1, 213, 1, 213, 1, 213, 5, 213, 5025, 8, 213, 10, 213, 12, 213, 5028, 9, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5033, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5039, 8, 213, 1, 213, 5, 213, 5042, 8, 213, 10, 213, 12, 213, 5045, 9, 213, 3, 213, 5047, 8, 213, 3, 213, 5049, 8, 213, 1, 213, 1, 213, 4, 213, 5053, 8, 213, 11, 213, 12, 213, 5054, 3, 213, 5057, 8, 213, 1, 213, 1, 213, 5, 213, 5061, 8, 213, 10, 213, 12, 213, 5064, 9, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5070, 8, 213, 3, 213, 5072, 8, 213, 1, 214, 1, 214, 1, 214, 3, 214, 5077, 8, 214, 1, 214, 1, 214, 1, 214, 5, 214, 5082, 8, 214, 10, 214, 12, 214, 5085, 9, 214, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5091, 8, 215, 10, 215, 12, 215, 5094, 9, 215, 1, 215, 1, 215, 3, 215, 5098, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5105, 8, 215, 10, 215, 12, 215, 5108, 9, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5114, 8, 215, 1, 215, 5, 215, 5117, 8, 215, 10, 215, 12, 215, 5120, 9, 215, 3, 215, 5122, 8, 215, 3, 215, 5124, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5130, 8, 215, 10, 215, 12, 215, 5133, 9, 215, 3, 215, 5135, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5143, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5148, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5153, 8, 215, 5, 215, 5155, 8, 215, 10, 215, 12, 215, 5158, 9, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5163, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5168, 8, 215, 5, 215, 5170, 8, 215, 10, 215, 12, 215, 5173, 9, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5178, 8, 215, 3, 215, 5180, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 5, 216, 5189, 8, 216, 10, 216, 12, 216, 5192, 9, 216, 3, 216, 5194, 8, 216, 1, 216, 1, 216, 1, 216, 5, 216, 5199, 8, 216, 10, 216, 12, 216, 5202, 9, 216, 3, 216, 5204, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5214, 8, 217, 10, 217, 12, 217, 5217, 9, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5222, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 5229, 8, 218, 10, 218, 12, 218, 5232, 9, 218, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5238, 8, 219, 10, 219, 12, 219, 5241, 9, 219, 1, 219, 1, 219, 3, 219, 5245, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5252, 8, 219, 10, 219, 12, 219, 5255, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5260, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5269, 8, 219, 10, 219, 12, 219, 5272, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5277, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5282, 8, 219, 5, 219, 5284, 8, 219, 10, 219, 12, 219, 5287, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5292, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5297, 8, 219, 5, 219, 5299, 8, 219, 10, 219, 12, 219, 5302, 9, 219, 3, 219, 5304, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5314, 8, 220, 10, 220, 12, 220, 5317, 9, 220, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5323, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5328, 8, 221, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5358, 8, 223, 1, 224, 1, 224, 3, 224, 5362, 8, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5367, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5374, 8, 225, 1, 225, 3, 225, 5377, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5383, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5393, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5403, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5413, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5419, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5428, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5434, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5441, 8, 228, 3, 228, 5443, 8, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5453, 8, 230, 1, 231, 1, 231, 3, 231, 5457, 8, 231, 1, 231, 1, 231, 3, 231, 5461, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5471, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5476, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5548, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 5566, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 3, 234, 5574, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 5584, 8, 234, 10, 234, 12, 234, 5587, 9, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5593, 8, 234, 3, 234, 5595, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 5603, 8, 234, 10, 234, 12, 234, 5606, 9, 234, 3, 234, 5608, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5614, 8, 235, 10, 235, 12, 235, 5617, 9, 235, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5623, 8, 236, 1, 237, 1, 237, 3, 237, 5627, 8, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 3, 238, 5634, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5639, 8, 238, 1, 238, 3, 238, 5642, 8, 238, 1, 238, 3, 238, 5645, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5654, 8, 239, 1, 240, 1, 240, 3, 240, 5658, 8, 240, 1, 240, 1, 240, 3, 240, 5662, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5685, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5692, 8, 243, 5, 243, 5694, 8, 243, 10, 243, 12, 243, 5697, 9, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5703, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5710, 8, 243, 1, 243, 3, 243, 5713, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 5727, 8, 243, 10, 243, 12, 243, 5730, 9, 243, 3, 243, 5732, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5742, 8, 244, 1, 244, 1, 244, 3, 244, 5746, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5752, 8, 244, 1, 244, 3, 244, 5755, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5760, 8, 244, 1, 244, 1, 244, 3, 244, 5764, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5771, 8, 244, 1, 244, 3, 244, 5774, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5780, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5804, 8, 244, 1, 244, 3, 244, 5807, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5819, 8, 244, 1, 244, 3, 244, 5822, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5832, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5840, 8, 244, 1, 244, 1, 244, 3, 244, 5844, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5851, 8, 244, 1, 244, 3, 244, 5854, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5861, 8, 244, 10, 244, 12, 244, 5864, 9, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5869, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5875, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5885, 8, 244, 3, 244, 5887, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5893, 8, 245, 1, 245, 3, 245, 5896, 8, 245, 1, 245, 3, 245, 5899, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5911, 8, 246, 1, 246, 3, 246, 5914, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5920, 8, 247, 1, 248, 3, 248, 5923, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5931, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5939, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5945, 8, 249, 1, 249, 1, 249, 3, 249, 5949, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5963, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 5973, 8, 252, 10, 252, 12, 252, 5976, 9, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5982, 8, 252, 1, 252, 3, 252, 5985, 8, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 5992, 8, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5997, 8, 253, 10, 253, 12, 253, 6000, 9, 253, 1, 254, 1, 254, 3, 254, 6004, 8, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 5, 255, 6015, 8, 255, 10, 255, 12, 255, 6018, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 3, 258, 6028, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 6034, 8, 258, 1, 259, 1, 259, 1, 259, 3, 259, 6039, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 6052, 8, 259, 3, 259, 6054, 8, 259, 1, 259, 1, 259, 1, 259, 3, 259, 6059, 8, 259, 1, 259, 1, 259, 3, 259, 6063, 8, 259, 1, 259, 3, 259, 6066, 8, 259, 3, 259, 6068, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 6075, 8, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 6082, 8, 261, 1, 261, 3, 261, 6085, 8, 261, 1, 261, 3, 261, 6088, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 6094, 8, 261, 1, 261, 1, 261, 3, 261, 6098, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 6104, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 6110, 8, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 3, 266, 6123, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6128, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 5, 266, 6134, 8, 266, 10, 266, 12, 266, 6137, 9, 266, 3, 266, 6139, 8, 266, 1, 267, 1, 267, 1, 267, 3, 267, 6144, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6149, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 6155, 8, 267, 10, 267, 12, 267, 6158, 9, 267, 3, 267, 6160, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 6168, 8, 268, 1, 269, 1, 269, 3, 269, 6172, 8, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6177, 8, 269, 10, 269, 12, 269, 6180, 9, 269, 1, 270, 1, 270, 1, 270, 3, 270, 6185, 8, 270, 1, 270, 3, 270, 6188, 8, 270, 1, 271, 1, 271, 3, 271, 6192, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6203, 8, 271, 10, 271, 12, 271, 6206, 9, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6211, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6221, 8, 271, 10, 271, 12, 271, 6224, 9, 271, 3, 271, 6226, 8, 271, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6235, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6240, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6246, 8, 274, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 5, 276, 6253, 8, 276, 10, 276, 12, 276, 6256, 9, 276, 1, 277, 1, 277, 3, 277, 6260, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6265, 8, 278, 3, 278, 6267, 8, 278, 1, 278, 3, 278, 6270, 8, 278, 1, 278, 1, 278, 3, 278, 6274, 8, 278, 3, 278, 6276, 8, 278, 1, 279, 1, 279, 3, 279, 6280, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6286, 8, 279, 1, 279, 3, 279, 6289, 8, 279, 1, 279, 3, 279, 6292, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6298, 8, 280, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6307, 8, 282, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6315, 8, 284, 1, 285, 1, 285, 3, 285, 6319, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 6324, 8, 286, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 4, 288, 6342, 8, 288, 11, 288, 12, 288, 6343, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6351, 8, 289, 3, 289, 6353, 8, 289, 1, 290, 1, 290, 1, 290, 4, 290, 6358, 8, 290, 11, 290, 12, 290, 6359, 3, 290, 6362, 8, 290, 1, 291, 1, 291, 3, 291, 6366, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6371, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 6382, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6387, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 3, 296, 6393, 8, 296, 1, 297, 3, 297, 6396, 8, 297, 1, 297, 1, 297, 3, 297, 6400, 8, 297, 1, 297, 4, 297, 6403, 8, 297, 11, 297, 12, 297, 6404, 1, 297, 3, 297, 6408, 8, 297, 1, 297, 1, 297, 3, 297, 6412, 8, 297, 1, 297, 1, 297, 3, 297, 6416, 8, 297, 3, 297, 6418, 8, 297, 1, 298, 1, 298, 1, 299, 3, 299, 6423, 8, 299, 1, 299, 1, 299, 1, 300, 3, 300, 6428, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6441, 8, 301, 1, 301, 3, 301, 6444, 8, 301, 1, 302, 1, 302, 3, 302, 6448, 8, 302, 1, 302, 3, 302, 6451, 8, 302, 1, 302, 3, 302, 6454, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6459, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6464, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6470, 8, 302, 1, 302, 3, 302, 6473, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6478, 8, 302, 1, 302, 3, 302, 6481, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6486, 8, 302, 1, 302, 3, 302, 6489, 8, 302, 1, 302, 1, 302, 3, 302, 6493, 8, 302, 1, 302, 5, 302, 6496, 8, 302, 10, 302, 12, 302, 6499, 9, 302, 1, 302, 1, 302, 3, 302, 6503, 8, 302, 1, 302, 5, 302, 6506, 8, 302, 10, 302, 12, 302, 6509, 9, 302, 1, 302, 1, 302, 3, 302, 6513, 8, 302, 1, 302, 3, 302, 6516, 8, 302, 1, 302, 5, 302, 6519, 8, 302, 10, 302, 12, 302, 6522, 9, 302, 1, 302, 1, 302, 3, 302, 6526, 8, 302, 1, 302, 5, 302, 6529, 8, 302, 10, 302, 12, 302, 6532, 9, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6537, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6542, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6547, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6552, 8, 302, 1, 302, 1, 302, 3, 302, 6556, 8, 302, 1, 302, 3, 302, 6559, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6564, 8, 302, 1, 302, 1, 302, 3, 302, 6568, 8, 302, 1, 302, 1, 302, 3, 302, 6572, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 6578, 8, 303, 10, 303, 12, 303, 6581, 9, 303, 1, 303, 1, 303, 1, 304, 1, 304, 3, 304, 6587, 8, 304, 1, 304, 1, 304, 3, 304, 6591, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6596, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6601, 8, 304, 1, 304, 1, 304, 3, 304, 6605, 8, 304, 3, 304, 6607, 8, 304, 1, 304, 3, 304, 6610, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6626, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 6633, 8, 308, 10, 308, 12, 308, 6636, 9, 308, 1, 309, 1, 309, 1, 309, 5, 309, 6641, 8, 309, 10, 309, 12, 309, 6644, 9, 309, 1, 310, 1, 310, 1, 310, 5, 310, 6649, 8, 310, 10, 310, 12, 310, 6652, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6658, 8, 311, 10, 311, 12, 311, 6661, 9, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6668, 8, 312, 10, 312, 12, 312, 6671, 9, 312, 1, 313, 1, 313, 1, 313, 5, 313, 6676, 8, 313, 10, 313, 12, 313, 6679, 9, 313, 1, 314, 1, 314, 1, 314, 5, 314, 6684, 8, 314, 10, 314, 12, 314, 6687, 9, 314, 1, 315, 1, 315, 1, 315, 5, 315, 6692, 8, 315, 10, 315, 12, 315, 6695, 9, 315, 1, 316, 1, 316, 1, 316, 5, 316, 6700, 8, 316, 10, 316, 12, 316, 6703, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6714, 8, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6721, 8, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6731, 8, 317, 1, 318, 1, 318, 1, 318, 3, 318, 6736, 8, 318, 1, 318, 3, 318, 6739, 8, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6744, 8, 318, 1, 318, 3, 318, 6747, 8, 318, 1, 319, 1, 319, 3, 319, 6751, 8, 319, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 3, 323, 6766, 8, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6774, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6781, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6786, 8, 324, 1, 325, 1, 325, 1, 325, 3, 325, 6791, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 4, 325, 6823, 8, 325, 11, 325, 12, 325, 6824, 1, 325, 1, 325, 3, 325, 6829, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 4, 325, 6835, 8, 325, 11, 325, 12, 325, 6836, 1, 325, 1, 325, 3, 325, 6841, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6850, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6858, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6863, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6871, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6876, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6881, 8, 325, 3, 325, 6883, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6892, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6897, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6905, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6910, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6918, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6926, 8, 325, 1, 325, 3, 325, 6929, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6939, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6957, 8, 325, 1, 325, 3, 325, 6960, 8, 325, 1, 325, 3, 325, 6963, 8, 325, 1, 325, 1, 325, 3, 325, 6967, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 6978, 8, 327, 10, 327, 12, 327, 6981, 9, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6988, 8, 327, 1, 328, 1, 328, 3, 328, 6992, 8, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6997, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7002, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7008, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7013, 8, 329, 1, 329, 1, 329, 3, 329, 7017, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7022, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7027, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7032, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 7040, 8, 329, 10, 329, 12, 329, 7043, 9, 329, 3, 329, 7045, 8, 329, 1, 329, 1, 329, 3, 329, 7049, 8, 329, 1, 329, 1, 329, 3, 329, 7053, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 7060, 8, 330, 1, 330, 1, 330, 3, 330, 7064, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 7093, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 7101, 8, 331, 1, 332, 3, 332, 7104, 8, 332, 1, 332, 3, 332, 7107, 8, 332, 1, 332, 3, 332, 7110, 8, 332, 1, 332, 3, 332, 7113, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 3, 336, 7124, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7138, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 7145, 8, 339, 10, 339, 12, 339, 7148, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7174, 8, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7185, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7192, 8, 342, 5, 342, 7194, 8, 342, 10, 342, 12, 342, 7197, 9, 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7203, 8, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7211, 8, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7216, 8, 344, 1, 344, 1, 344, 1, 344, 1, 344, 5, 344, 7222, 8, 344, 10, 344, 12, 344, 7225, 9, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7236, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7249, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7255, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7261, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7277, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7283, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 5, 345, 7292, 8, 345, 10, 345, 12, 345, 7295, 9, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 5, 346, 7314, 8, 346, 10, 346, 12, 346, 7317, 9, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 7326, 8, 346, 11, 346, 12, 346, 7327, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7345, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 5, 346, 7366, 8, 346, 10, 346, 12, 346, 7369, 9, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 7387, 8, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 7396, 8, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 7405, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7416, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 0, 3, 688, 690, 692, 361, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 0, 144, 2, 0, 39, 39, 150, 150, 2, 0, 531, 531, 537, 537, 3, 0, 69, 69, 159, 159, 181, 181, 3, 0, 42, 42, 384, 384, 454, 454, 4, 0, 42, 42, 419, 419, 529, 529, 611, 611, 2, 0, 514, 514, 1148, 1148, 2, 0, 78, 78, 141, 141, 2, 0, 15, 15, 334, 334, 3, 0, 44, 44, 85, 85, 184, 184, 2, 0, 434, 434, 558, 558, 3, 0, 506, 506, 650, 650, 658, 658, 2, 0, 392, 392, 460, 460, 2, 0, 352, 352, 474, 474, 2, 0, 42, 42, 1138, 1139, 2, 0, 350, 350, 443, 443, 2, 0, 459, 459, 673, 673, 3, 0, 80, 80, 84, 84, 125, 125, 3, 0, 42, 42, 402, 402, 431, 431, 3, 0, 42, 42, 398, 398, 792, 792, 2, 0, 637, 637, 672, 672, 2, 0, 81, 81, 91, 91, 3, 0, 436, 436, 548, 548, 613, 613, 2, 0, 69, 69, 159, 159, 1, 0, 356, 357, 1, 0, 1138, 1139, 2, 0, 1148, 1148, 1156, 1156, 2, 0, 81, 81, 388, 388, 2, 0, 545, 545, 1148, 1148, 2, 0, 546, 546, 1148, 1148, 3, 0, 430, 430, 469, 469, 521, 521, 7, 0, 42, 42, 370, 370, 372, 372, 402, 402, 431, 431, 573, 573, 1156, 1156, 2, 0, 514, 514, 530, 530, 1, 0, 1139, 1140, 2, 0, 5, 5, 51, 51, 4, 0, 42, 42, 384, 384, 454, 454, 458, 458, 2, 0, 26, 26, 30, 30, 2, 0, 12, 12, 175, 175, 2, 0, 192, 192, 677, 677, 2, 0, 21, 21, 144, 144, 3, 0, 43, 43, 75, 75, 106, 106, 2, 0, 106, 106, 374, 374, 2, 0, 365, 365, 427, 427, 2, 0, 101, 101, 601, 601, 2, 0, 43, 43, 106, 106, 2, 0, 6, 6, 49, 49, 2, 0, 188, 188, 669, 669, 4, 0, 430, 430, 469, 469, 520, 520, 562, 562, 2, 0, 430, 430, 520, 520, 2, 0, 13, 13, 45, 45, 3, 0, 66, 66, 78, 78, 186, 186, 2, 0, 34, 34, 83, 83, 2, 0, 97, 97, 148, 148, 2, 0, 6, 6, 49, 50, 1, 0, 626, 627, 2, 0, 172, 172, 742, 742, 2, 0, 439, 439, 609, 609, 2, 0, 226, 226, 477, 477, 5, 0, 107, 107, 482, 483, 485, 485, 489, 497, 575, 575, 4, 0, 479, 480, 484, 484, 486, 487, 576, 576, 3, 0, 108, 108, 478, 478, 488, 488, 2, 0, 462, 462, 628, 628, 2, 0, 622, 622, 624, 624, 2, 0, 344, 344, 629, 629, 2, 0, 90, 90, 591, 591, 2, 0, 51, 51, 390, 390, 3, 0, 31, 31, 61, 61, 179, 179, 3, 0, 131, 131, 172, 172, 437, 437, 3, 0, 12, 12, 19, 19, 187, 187, 2, 0, 42, 42, 121, 121, 2, 0, 103, 103, 182, 182, 2, 0, 360, 360, 614, 614, 2, 0, 40, 40, 671, 671, 2, 0, 115, 115, 474, 474, 2, 0, 422, 422, 568, 568, 4, 0, 206, 206, 208, 208, 214, 214, 638, 638, 2, 0, 1108, 1108, 1124, 1124, 2, 0, 345, 345, 577, 577, 2, 0, 68, 68, 80, 80, 6, 0, 131, 131, 172, 172, 177, 177, 415, 415, 437, 437, 671, 671, 2, 0, 513, 513, 634, 634, 2, 0, 412, 412, 675, 675, 2, 0, 131, 131, 437, 437, 3, 0, 81, 81, 92, 92, 452, 452, 3, 0, 439, 439, 474, 474, 609, 609, 2, 0, 634, 634, 670, 670, 2, 0, 376, 376, 567, 567, 6, 0, 226, 226, 409, 409, 411, 411, 438, 438, 574, 574, 615, 615, 2, 0, 45, 46, 62, 62, 3, 0, 422, 422, 550, 550, 885, 885, 2, 0, 466, 466, 652, 652, 10, 0, 359, 359, 367, 367, 378, 380, 387, 387, 507, 507, 515, 515, 639, 639, 646, 646, 836, 836, 1005, 1005, 2, 0, 35, 35, 168, 168, 2, 0, 117, 117, 996, 996, 11, 0, 359, 359, 367, 367, 378, 380, 387, 387, 507, 507, 515, 515, 592, 592, 639, 639, 646, 646, 836, 836, 1005, 1005, 2, 0, 1137, 1137, 1158, 1159, 1, 0, 1159, 1160, 2, 0, 375, 375, 787, 798, 3, 0, 1138, 1140, 1149, 1149, 1151, 1151, 2, 0, 63, 63, 178, 178, 2, 0, 116, 116, 1152, 1152, 5, 0, 25, 25, 222, 224, 231, 231, 233, 236, 518, 518, 2, 0, 25, 25, 222, 222, 2, 0, 25, 25, 222, 223, 1, 0, 196, 207, 3, 0, 183, 183, 195, 195, 612, 612, 2, 0, 211, 216, 431, 431, 6, 0, 217, 217, 228, 228, 230, 230, 232, 232, 239, 239, 348, 349, 4, 0, 218, 221, 226, 227, 229, 229, 346, 346, 2, 0, 153, 153, 237, 237, 2, 0, 466, 466, 803, 811, 3, 0, 211, 211, 226, 226, 518, 518, 6, 0, 200, 200, 206, 206, 209, 209, 217, 218, 220, 221, 466, 466, 1, 0, 214, 215, 2, 0, 183, 183, 612, 612, 2, 0, 200, 200, 206, 206, 2, 0, 315, 316, 322, 322, 3, 0, 150, 150, 313, 316, 331, 331, 1, 0, 325, 326, 3, 0, 17, 17, 95, 95, 176, 176, 2, 0, 222, 222, 226, 226, 2, 0, 217, 218, 220, 220, 3, 0, 13, 13, 45, 45, 994, 994, 3, 0, 286, 286, 298, 299, 309, 309, 3, 0, 287, 289, 305, 308, 310, 312, 2, 0, 295, 295, 297, 297, 2, 0, 293, 293, 296, 296, 2, 0, 291, 292, 302, 304, 2, 0, 133, 133, 601, 601, 2, 0, 433, 433, 559, 559, 2, 0, 535, 535, 551, 551, 2, 0, 114, 114, 1127, 1127, 3, 0, 63, 63, 178, 178, 662, 662, 2, 0, 137, 137, 149, 149, 3, 0, 6, 6, 337, 337, 618, 618, 3, 0, 114, 114, 1120, 1121, 1127, 1128, 2, 0, 1117, 1119, 1122, 1123, 1, 0, 1120, 1121, 2, 0, 226, 226, 746, 786, 1, 0, 799, 802, 5, 0, 708, 709, 725, 727, 733, 733, 739, 740, 742, 742, 1, 0, 689, 696, 3, 0, 217, 221, 234, 234, 237, 237, 59, 0, 11, 11, 14, 14, 18, 18, 29, 29, 35, 35, 37, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 73, 73, 79, 79, 94, 94, 117, 117, 121, 121, 124, 124, 130, 130, 158, 158, 168, 168, 239, 239, 283, 290, 294, 294, 298, 299, 305, 312, 332, 385, 387, 403, 405, 405, 407, 432, 434, 450, 452, 458, 460, 521, 523, 523, 527, 544, 547, 558, 560, 589, 591, 592, 594, 606, 608, 636, 638, 672, 674, 675, 677, 682, 684, 688, 697, 697, 699, 707, 710, 712, 717, 718, 720, 724, 728, 732, 734, 734, 736, 738, 741, 741, 743, 745, 792, 792, 836, 836, 875, 875, 1000, 1000, 1005, 1005, 1088, 1088, 23, 0, 39, 39, 97, 97, 148, 148, 150, 150, 217, 219, 221, 221, 251, 282, 290, 293, 295, 297, 300, 304, 324, 324, 459, 459, 673, 673, 689, 696, 736, 736, 803, 803, 806, 835, 837, 874, 876, 999, 1001, 1004, 1006, 1087, 1089, 1107, 1123, 1123, 8747, 0, 723, 1, 0, 0, 0, 2, 736, 1, 0, 0, 0, 4, 745, 1, 0, 0, 0, 6, 785, 1, 0, 0, 0, 8, 800, 1, 0, 0, 0, 10, 811, 1, 0, 0, 0, 12, 828, 1, 0, 0, 0, 14, 833, 1, 0, 0, 0, 16, 845, 1, 0, 0, 0, 18, 872, 1, 0, 0, 0, 20, 881, 1, 0, 0, 0, 22, 883, 1, 0, 0, 0, 24, 895, 1, 0, 0, 0, 26, 925, 1, 0, 0, 0, 28, 961, 1, 0, 0, 0, 30, 1012, 1, 0, 0, 0, 32, 1038, 1, 0, 0, 0, 34, 1074, 1, 0, 0, 0, 36, 1087, 1, 0, 0, 0, 38, 1184, 1, 0, 0, 0, 40, 1186, 1, 0, 0, 0, 42, 1204, 1, 0, 0, 0, 44, 1265, 1, 0, 0, 0, 46, 1287, 1, 0, 0, 0, 48, 1293, 1, 0, 0, 0, 50, 1315, 1, 0, 0, 0, 52, 1317, 1, 0, 0, 0, 54, 1319, 1, 0, 0, 0, 56, 1399, 1, 0, 0, 0, 58, 1406, 1, 0, 0, 0, 60, 1408, 1, 0, 0, 0, 62, 1413, 1, 0, 0, 0, 64, 1453, 1, 0, 0, 0, 66, 1459, 1, 0, 0, 0, 68, 1461, 1, 0, 0, 0, 70, 1482, 1, 0, 0, 0, 72, 1489, 1, 0, 0, 0, 74, 1491, 1, 0, 0, 0, 76, 1516, 1, 0, 0, 0, 78, 1519, 1, 0, 0, 0, 80, 1524, 1, 0, 0, 0, 82, 1550, 1, 0, 0, 0, 84, 1566, 1, 0, 0, 0, 86, 1568, 1, 0, 0, 0, 88, 1590, 1, 0, 0, 0, 90, 1592, 1, 0, 0, 0, 92, 1658, 1, 0, 0, 0, 94, 1729, 1, 0, 0, 0, 96, 1731, 1, 0, 0, 0, 98, 1759, 1, 0, 0, 0, 100, 1769, 1, 0, 0, 0, 102, 1799, 1, 0, 0, 0, 104, 1986, 1, 0, 0, 0, 106, 1988, 1, 0, 0, 0, 108, 1990, 1, 0, 0, 0, 110, 1993, 1, 0, 0, 0, 112, 2068, 1, 0, 0, 0, 114, 2091, 1, 0, 0, 0, 116, 2239, 1, 0, 0, 0, 118, 2244, 1, 0, 0, 0, 120, 2246, 1, 0, 0, 0, 122, 2256, 1, 0, 0, 0, 124, 2312, 1, 0, 0, 0, 126, 2332, 1, 0, 0, 0, 128, 2334, 1, 0, 0, 0, 130, 2369, 1, 0, 0, 0, 132, 2378, 1, 0, 0, 0, 134, 2385, 1, 0, 0, 0, 136, 2408, 1, 0, 0, 0, 138, 2417, 1, 0, 0, 0, 140, 2432, 1, 0, 0, 0, 142, 2457, 1, 0, 0, 0, 144, 2477, 1, 0, 0, 0, 146, 2860, 1, 0, 0, 0, 148, 2960, 1, 0, 0, 0, 150, 2962, 1, 0, 0, 0, 152, 2969, 1, 0, 0, 0, 154, 2976, 1, 0, 0, 0, 156, 2999, 1, 0, 0, 0, 158, 3007, 1, 0, 0, 0, 160, 3014, 1, 0, 0, 0, 162, 3021, 1, 0, 0, 0, 164, 3028, 1, 0, 0, 0, 166, 3040, 1, 0, 0, 0, 168, 3050, 1, 0, 0, 0, 170, 3057, 1, 0, 0, 0, 172, 3073, 1, 0, 0, 0, 174, 3119, 1, 0, 0, 0, 176, 3121, 1, 0, 0, 0, 178, 3131, 1, 0, 0, 0, 180, 3135, 1, 0, 0, 0, 182, 3141, 1, 0, 0, 0, 184, 3153, 1, 0, 0, 0, 186, 3155, 1, 0, 0, 0, 188, 3162, 1, 0, 0, 0, 190, 3164, 1, 0, 0, 0, 192, 3222, 1, 0, 0, 0, 194, 3296, 1, 0, 0, 0, 196, 3355, 1, 0, 0, 0, 198, 3453, 1, 0, 0, 0, 200, 3457, 1, 0, 0, 0, 202, 3459, 1, 0, 0, 0, 204, 3494, 1, 0, 0, 0, 206, 3496, 1, 0, 0, 0, 208, 3504, 1, 0, 0, 0, 210, 3512, 1, 0, 0, 0, 212, 3514, 1, 0, 0, 0, 214, 3550, 1, 0, 0, 0, 216, 3605, 1, 0, 0, 0, 218, 3614, 1, 0, 0, 0, 220, 3634, 1, 0, 0, 0, 222, 3646, 1, 0, 0, 0, 224, 3650, 1, 0, 0, 0, 226, 3683, 1, 0, 0, 0, 228, 3704, 1, 0, 0, 0, 230, 3714, 1, 0, 0, 0, 232, 3718, 1, 0, 0, 0, 234, 3744, 1, 0, 0, 0, 236, 3783, 1, 0, 0, 0, 238, 3785, 1, 0, 0, 0, 240, 3800, 1, 0, 0, 0, 242, 3849, 1, 0, 0, 0, 244, 3858, 1, 0, 0, 0, 246, 3868, 1, 0, 0, 0, 248, 3878, 1, 0, 0, 0, 250, 3934, 1, 0, 0, 0, 252, 3936, 1, 0, 0, 0, 254, 3963, 1, 0, 0, 0, 256, 3969, 1, 0, 0, 0, 258, 3977, 1, 0, 0, 0, 260, 3994, 1, 0, 0, 0, 262, 4010, 1, 0, 0, 0, 264, 4047, 1, 0, 0, 0, 266, 4053, 1, 0, 0, 0, 268, 4062, 1, 0, 0, 0, 270, 4075, 1, 0, 0, 0, 272, 4079, 1, 0, 0, 0, 274, 4117, 1, 0, 0, 0, 276, 4155, 1, 0, 0, 0, 278, 4169, 1, 0, 0, 0, 280, 4177, 1, 0, 0, 0, 282, 4181, 1, 0, 0, 0, 284, 4187, 1, 0, 0, 0, 286, 4201, 1, 0, 0, 0, 288, 4204, 1, 0, 0, 0, 290, 4222, 1, 0, 0, 0, 292, 4226, 1, 0, 0, 0, 294, 4242, 1, 0, 0, 0, 296, 4244, 1, 0, 0, 0, 298, 4256, 1, 0, 0, 0, 300, 4260, 1, 0, 0, 0, 302, 4277, 1, 0, 0, 0, 304, 4294, 1, 0, 0, 0, 306, 4297, 1, 0, 0, 0, 308, 4307, 1, 0, 0, 0, 310, 4311, 1, 0, 0, 0, 312, 4324, 1, 0, 0, 0, 314, 4327, 1, 0, 0, 0, 316, 4332, 1, 0, 0, 0, 318, 4352, 1, 0, 0, 0, 320, 4354, 1, 0, 0, 0, 322, 4371, 1, 0, 0, 0, 324, 4380, 1, 0, 0, 0, 326, 4389, 1, 0, 0, 0, 328, 4391, 1, 0, 0, 0, 330, 4405, 1, 0, 0, 0, 332, 4416, 1, 0, 0, 0, 334, 4425, 1, 0, 0, 0, 336, 4428, 1, 0, 0, 0, 338, 4436, 1, 0, 0, 0, 340, 4461, 1, 0, 0, 0, 342, 4473, 1, 0, 0, 0, 344, 4476, 1, 0, 0, 0, 346, 4508, 1, 0, 0, 0, 348, 4510, 1, 0, 0, 0, 350, 4512, 1, 0, 0, 0, 352, 4514, 1, 0, 0, 0, 354, 4516, 1, 0, 0, 0, 356, 4569, 1, 0, 0, 0, 358, 4571, 1, 0, 0, 0, 360, 4577, 1, 0, 0, 0, 362, 4597, 1, 0, 0, 0, 364, 4611, 1, 0, 0, 0, 366, 4622, 1, 0, 0, 0, 368, 4624, 1, 0, 0, 0, 370, 4630, 1, 0, 0, 0, 372, 4640, 1, 0, 0, 0, 374, 4644, 1, 0, 0, 0, 376, 4651, 1, 0, 0, 0, 378, 4655, 1, 0, 0, 0, 380, 4661, 1, 0, 0, 0, 382, 4668, 1, 0, 0, 0, 384, 4674, 1, 0, 0, 0, 386, 4680, 1, 0, 0, 0, 388, 4685, 1, 0, 0, 0, 390, 4730, 1, 0, 0, 0, 392, 4751, 1, 0, 0, 0, 394, 4776, 1, 0, 0, 0, 396, 4779, 1, 0, 0, 0, 398, 4785, 1, 0, 0, 0, 400, 4801, 1, 0, 0, 0, 402, 4816, 1, 0, 0, 0, 404, 4822, 1, 0, 0, 0, 406, 4852, 1, 0, 0, 0, 408, 4854, 1, 0, 0, 0, 410, 4861, 1, 0, 0, 0, 412, 4873, 1, 0, 0, 0, 414, 4879, 1, 0, 0, 0, 416, 4904, 1, 0, 0, 0, 418, 4908, 1, 0, 0, 0, 420, 4912, 1, 0, 0, 0, 422, 4923, 1, 0, 0, 0, 424, 5004, 1, 0, 0, 0, 426, 5071, 1, 0, 0, 0, 428, 5073, 1, 0, 0, 0, 430, 5179, 1, 0, 0, 0, 432, 5203, 1, 0, 0, 0, 434, 5205, 1, 0, 0, 0, 436, 5223, 1, 0, 0, 0, 438, 5303, 1, 0, 0, 0, 440, 5305, 1, 0, 0, 0, 442, 5318, 1, 0, 0, 0, 444, 5329, 1, 0, 0, 0, 446, 5357, 1, 0, 0, 0, 448, 5361, 1, 0, 0, 0, 450, 5382, 1, 0, 0, 0, 452, 5392, 1, 0, 0, 0, 454, 5402, 1, 0, 0, 0, 456, 5442, 1, 0, 0, 0, 458, 5444, 1, 0, 0, 0, 460, 5447, 1, 0, 0, 0, 462, 5547, 1, 0, 0, 0, 464, 5565, 1, 0, 0, 0, 466, 5567, 1, 0, 0, 0, 468, 5571, 1, 0, 0, 0, 470, 5609, 1, 0, 0, 0, 472, 5618, 1, 0, 0, 0, 474, 5624, 1, 0, 0, 0, 476, 5631, 1, 0, 0, 0, 478, 5653, 1, 0, 0, 0, 480, 5655, 1, 0, 0, 0, 482, 5669, 1, 0, 0, 0, 484, 5675, 1, 0, 0, 0, 486, 5731, 1, 0, 0, 0, 488, 5886, 1, 0, 0, 0, 490, 5898, 1, 0, 0, 0, 492, 5913, 1, 0, 0, 0, 494, 5919, 1, 0, 0, 0, 496, 5938, 1, 0, 0, 0, 498, 5948, 1, 0, 0, 0, 500, 5962, 1, 0, 0, 0, 502, 5964, 1, 0, 0, 0, 504, 5967, 1, 0, 0, 0, 506, 5989, 1, 0, 0, 0, 508, 6001, 1, 0, 0, 0, 510, 6007, 1, 0, 0, 0, 512, 6019, 1, 0, 0, 0, 514, 6023, 1, 0, 0, 0, 516, 6025, 1, 0, 0, 0, 518, 6067, 1, 0, 0, 0, 520, 6074, 1, 0, 0, 0, 522, 6076, 1, 0, 0, 0, 524, 6099, 1, 0, 0, 0, 526, 6105, 1, 0, 0, 0, 528, 6113, 1, 0, 0, 0, 530, 6116, 1, 0, 0, 0, 532, 6119, 1, 0, 0, 0, 534, 6140, 1, 0, 0, 0, 536, 6161, 1, 0, 0, 0, 538, 6169, 1, 0, 0, 0, 540, 6181, 1, 0, 0, 0, 542, 6189, 1, 0, 0, 0, 544, 6227, 1, 0, 0, 0, 546, 6239, 1, 0, 0, 0, 548, 6241, 1, 0, 0, 0, 550, 6247, 1, 0, 0, 0, 552, 6249, 1, 0, 0, 0, 554, 6259, 1, 0, 0, 0, 556, 6275, 1, 0, 0, 0, 558, 6288, 1, 0, 0, 0, 560, 6297, 1, 0, 0, 0, 562, 6299, 1, 0, 0, 0, 564, 6306, 1, 0, 0, 0, 566, 6308, 1, 0, 0, 0, 568, 6314, 1, 0, 0, 0, 570, 6318, 1, 0, 0, 0, 572, 6323, 1, 0, 0, 0, 574, 6325, 1, 0, 0, 0, 576, 6327, 1, 0, 0, 0, 578, 6345, 1, 0, 0, 0, 580, 6361, 1, 0, 0, 0, 582, 6365, 1, 0, 0, 0, 584, 6370, 1, 0, 0, 0, 586, 6381, 1, 0, 0, 0, 588, 6386, 1, 0, 0, 0, 590, 6388, 1, 0, 0, 0, 592, 6392, 1, 0, 0, 0, 594, 6417, 1, 0, 0, 0, 596, 6419, 1, 0, 0, 0, 598, 6422, 1, 0, 0, 0, 600, 6427, 1, 0, 0, 0, 602, 6443, 1, 0, 0, 0, 604, 6571, 1, 0, 0, 0, 606, 6573, 1, 0, 0, 0, 608, 6606, 1, 0, 0, 0, 610, 6611, 1, 0, 0, 0, 612, 6615, 1, 0, 0, 0, 614, 6621, 1, 0, 0, 0, 616, 6629, 1, 0, 0, 0, 618, 6637, 1, 0, 0, 0, 620, 6645, 1, 0, 0, 0, 622, 6653, 1, 0, 0, 0, 624, 6664, 1, 0, 0, 0, 626, 6672, 1, 0, 0, 0, 628, 6680, 1, 0, 0, 0, 630, 6688, 1, 0, 0, 0, 632, 6696, 1, 0, 0, 0, 634, 6730, 1, 0, 0, 0, 636, 6746, 1, 0, 0, 0, 638, 6750, 1, 0, 0, 0, 640, 6752, 1, 0, 0, 0, 642, 6755, 1, 0, 0, 0, 644, 6759, 1, 0, 0, 0, 646, 6765, 1, 0, 0, 0, 648, 6785, 1, 0, 0, 0, 650, 6966, 1, 0, 0, 0, 652, 6968, 1, 0, 0, 0, 654, 6987, 1, 0, 0, 0, 656, 6989, 1, 0, 0, 0, 658, 7052, 1, 0, 0, 0, 660, 7092, 1, 0, 0, 0, 662, 7094, 1, 0, 0, 0, 664, 7103, 1, 0, 0, 0, 666, 7114, 1, 0, 0, 0, 668, 7116, 1, 0, 0, 0, 670, 7119, 1, 0, 0, 0, 672, 7123, 1, 0, 0, 0, 674, 7125, 1, 0, 0, 0, 676, 7137, 1, 0, 0, 0, 678, 7139, 1, 0, 0, 0, 680, 7173, 1, 0, 0, 0, 682, 7175, 1, 0, 0, 0, 684, 7184, 1, 0, 0, 0, 686, 7202, 1, 0, 0, 0, 688, 7215, 1, 0, 0, 0, 690, 7226, 1, 0, 0, 0, 692, 7344, 1, 0, 0, 0, 694, 7370, 1, 0, 0, 0, 696, 7386, 1, 0, 0, 0, 698, 7395, 1, 0, 0, 0, 700, 7404, 1, 0, 0, 0, 702, 7406, 1, 0, 0, 0, 704, 7408, 1, 0, 0, 0, 706, 7415, 1, 0, 0, 0, 708, 7417, 1, 0, 0, 0, 710, 7419, 1, 0, 0, 0, 712, 7421, 1, 0, 0, 0, 714, 7423, 1, 0, 0, 0, 716, 7425, 1, 0, 0, 0, 718, 7427, 1, 0, 0, 0, 720, 7429, 1, 0, 0, 0, 722, 724, 3, 2, 1, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 5, 0, 0, 1, 726, 1, 1, 0, 0, 0, 727, 729, 3, 4, 2, 0, 728, 730, 5, 1136, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 737, 1, 0, 0, 0, 731, 732, 3, 4, 2, 0, 732, 733, 5, 1136, 0, 0, 733, 734, 3, 2, 1, 0, 734, 737, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 727, 1, 0, 0, 0, 736, 731, 1, 0, 0, 0, 736, 735, 1, 0, 0, 0, 737, 3, 1, 0, 0, 0, 738, 746, 3, 6, 3, 0, 739, 746, 3, 8, 4, 0, 740, 746, 3, 10, 5, 0, 741, 746, 3, 12, 6, 0, 742, 746, 3, 14, 7, 0, 743, 746, 3, 18, 9, 0, 744, 746, 3, 20, 10, 0, 745, 738, 1, 0, 0, 0, 745, 739, 1, 0, 0, 0, 745, 740, 1, 0, 0, 0, 745, 741, 1, 0, 0, 0, 745, 742, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 744, 1, 0, 0, 0, 746, 5, 1, 0, 0, 0, 747, 786, 3, 22, 11, 0, 748, 786, 3, 24, 12, 0, 749, 786, 3, 26, 13, 0, 750, 786, 3, 28, 14, 0, 751, 786, 3, 30, 15, 0, 752, 786, 3, 32, 16, 0, 753, 786, 3, 36, 18, 0, 754, 786, 3, 38, 19, 0, 755, 786, 3, 40, 20, 0, 756, 786, 3, 42, 21, 0, 757, 786, 3, 44, 22, 0, 758, 786, 3, 54, 27, 0, 759, 786, 3, 34, 17, 0, 760, 786, 3, 126, 63, 0, 761, 786, 3, 128, 64, 0, 762, 786, 3, 130, 65, 0, 763, 786, 3, 132, 66, 0, 764, 786, 3, 134, 67, 0, 765, 786, 3, 136, 68, 0, 766, 786, 3, 138, 69, 0, 767, 786, 3, 140, 70, 0, 768, 786, 3, 142, 71, 0, 769, 786, 3, 144, 72, 0, 770, 786, 3, 150, 75, 0, 771, 786, 3, 152, 76, 0, 772, 786, 3, 154, 77, 0, 773, 786, 3, 156, 78, 0, 774, 786, 3, 158, 79, 0, 775, 786, 3, 160, 80, 0, 776, 786, 3, 162, 81, 0, 777, 786, 3, 164, 82, 0, 778, 786, 3, 166, 83, 0, 779, 786, 3, 168, 84, 0, 780, 786, 3, 170, 85, 0, 781, 786, 3, 172, 86, 0, 782, 786, 3, 174, 87, 0, 783, 786, 3, 176, 88, 0, 784, 786, 3, 180, 90, 0, 785, 747, 1, 0, 0, 0, 785, 748, 1, 0, 0, 0, 785, 749, 1, 0, 0, 0, 785, 750, 1, 0, 0, 0, 785, 751, 1, 0, 0, 0, 785, 752, 1, 0, 0, 0, 785, 753, 1, 0, 0, 0, 785, 754, 1, 0, 0, 0, 785, 755, 1, 0, 0, 0, 785, 756, 1, 0, 0, 0, 785, 757, 1, 0, 0, 0, 785, 758, 1, 0, 0, 0, 785, 759, 1, 0, 0, 0, 785, 760, 1, 0, 0, 0, 785, 761, 1, 0, 0, 0, 785, 762, 1, 0, 0, 0, 785, 763, 1, 0, 0, 0, 785, 764, 1, 0, 0, 0, 785, 765, 1, 0, 0, 0, 785, 766, 1, 0, 0, 0, 785, 767, 1, 0, 0, 0, 785, 768, 1, 0, 0, 0, 785, 769, 1, 0, 0, 0, 785, 770, 1, 0, 0, 0, 785, 771, 1, 0, 0, 0, 785, 772, 1, 0, 0, 0, 785, 773, 1, 0, 0, 0, 785, 774, 1, 0, 0, 0, 785, 775, 1, 0, 0, 0, 785, 776, 1, 0, 0, 0, 785, 777, 1, 0, 0, 0, 785, 778, 1, 0, 0, 0, 785, 779, 1, 0, 0, 0, 785, 780, 1, 0, 0, 0, 785, 781, 1, 0, 0, 0, 785, 782, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 784, 1, 0, 0, 0, 786, 7, 1, 0, 0, 0, 787, 801, 3, 198, 99, 0, 788, 801, 3, 190, 95, 0, 789, 801, 3, 200, 100, 0, 790, 801, 3, 184, 92, 0, 791, 801, 3, 196, 98, 0, 792, 801, 3, 182, 91, 0, 793, 801, 3, 192, 96, 0, 794, 801, 3, 194, 97, 0, 795, 801, 3, 186, 93, 0, 796, 801, 3, 188, 94, 0, 797, 801, 3, 202, 101, 0, 798, 801, 3, 538, 269, 0, 799, 801, 3, 540, 270, 0, 800, 787, 1, 0, 0, 0, 800, 788, 1, 0, 0, 0, 800, 789, 1, 0, 0, 0, 800, 790, 1, 0, 0, 0, 800, 791, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 800, 793, 1, 0, 0, 0, 800, 794, 1, 0, 0, 0, 800, 795, 1, 0, 0, 0, 800, 796, 1, 0, 0, 0, 800, 797, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 800, 799, 1, 0, 0, 0, 801, 9, 1, 0, 0, 0, 802, 812, 3, 296, 148, 0, 803, 812, 3, 298, 149, 0, 804, 812, 3, 300, 150, 0, 805, 812, 3, 302, 151, 0, 806, 812, 3, 304, 152, 0, 807, 812, 3, 306, 153, 0, 808, 812, 3, 308, 154, 0, 809, 812, 3, 310, 155, 0, 810, 812, 3, 312, 156, 0, 811, 802, 1, 0, 0, 0, 811, 803, 1, 0, 0, 0, 811, 804, 1, 0, 0, 0, 811, 805, 1, 0, 0, 0, 811, 806, 1, 0, 0, 0, 811, 807, 1, 0, 0, 0, 811, 808, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 810, 1, 0, 0, 0, 812, 11, 1, 0, 0, 0, 813, 829, 3, 328, 164, 0, 814, 829, 3, 330, 165, 0, 815, 829, 3, 332, 166, 0, 816, 829, 3, 334, 167, 0, 817, 829, 3, 336, 168, 0, 818, 829, 3, 338, 169, 0, 819, 829, 3, 340, 170, 0, 820, 829, 3, 342, 171, 0, 821, 829, 3, 344, 172, 0, 822, 829, 3, 368, 184, 0, 823, 829, 3, 370, 185, 0, 824, 829, 3, 372, 186, 0, 825, 829, 3, 374, 187, 0, 826, 829, 3, 376, 188, 0, 827, 829, 3, 378, 189, 0, 828, 813, 1, 0, 0, 0, 828, 814, 1, 0, 0, 0, 828, 815, 1, 0, 0, 0, 828, 816, 1, 0, 0, 0, 828, 817, 1, 0, 0, 0, 828, 818, 1, 0, 0, 0, 828, 819, 1, 0, 0, 0, 828, 820, 1, 0, 0, 0, 828, 821, 1, 0, 0, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 824, 1, 0, 0, 0, 828, 825, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 827, 1, 0, 0, 0, 829, 13, 1, 0, 0, 0, 830, 834, 3, 380, 190, 0, 831, 834, 3, 382, 191, 0, 832, 834, 3, 384, 192, 0, 833, 830, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 832, 1, 0, 0, 0, 834, 15, 1, 0, 0, 0, 835, 846, 3, 388, 194, 0, 836, 846, 3, 390, 195, 0, 837, 846, 3, 392, 196, 0, 838, 846, 3, 396, 198, 0, 839, 846, 3, 398, 199, 0, 840, 846, 3, 400, 200, 0, 841, 846, 3, 404, 202, 0, 842, 846, 3, 394, 197, 0, 843, 846, 3, 402, 201, 0, 844, 846, 3, 406, 203, 0, 845, 835, 1, 0, 0, 0, 845, 836, 1, 0, 0, 0, 845, 837, 1, 0, 0, 0, 845, 838, 1, 0, 0, 0, 845, 839, 1, 0, 0, 0, 845, 840, 1, 0, 0, 0, 845, 841, 1, 0, 0, 0, 845, 842, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 844, 1, 0, 0, 0, 846, 17, 1, 0, 0, 0, 847, 873, 3, 424, 212, 0, 848, 873, 3, 426, 213, 0, 849, 873, 3, 428, 214, 0, 850, 873, 3, 430, 215, 0, 851, 873, 3, 434, 217, 0, 852, 873, 3, 436, 218, 0, 853, 873, 3, 438, 219, 0, 854, 873, 3, 440, 220, 0, 855, 873, 3, 468, 234, 0, 856, 873, 3, 470, 235, 0, 857, 873, 3, 472, 236, 0, 858, 873, 3, 474, 237, 0, 859, 873, 3, 476, 238, 0, 860, 873, 3, 480, 240, 0, 861, 873, 3, 482, 241, 0, 862, 873, 3, 484, 242, 0, 863, 873, 3, 486, 243, 0, 864, 873, 3, 488, 244, 0, 865, 873, 3, 502, 251, 0, 866, 873, 3, 504, 252, 0, 867, 873, 3, 506, 253, 0, 868, 873, 3, 508, 254, 0, 869, 873, 3, 510, 255, 0, 870, 873, 3, 512, 256, 0, 871, 873, 3, 514, 257, 0, 872, 847, 1, 0, 0, 0, 872, 848, 1, 0, 0, 0, 872, 849, 1, 0, 0, 0, 872, 850, 1, 0, 0, 0, 872, 851, 1, 0, 0, 0, 872, 852, 1, 0, 0, 0, 872, 853, 1, 0, 0, 0, 872, 854, 1, 0, 0, 0, 872, 855, 1, 0, 0, 0, 872, 856, 1, 0, 0, 0, 872, 857, 1, 0, 0, 0, 872, 858, 1, 0, 0, 0, 872, 859, 1, 0, 0, 0, 872, 860, 1, 0, 0, 0, 872, 861, 1, 0, 0, 0, 872, 862, 1, 0, 0, 0, 872, 863, 1, 0, 0, 0, 872, 864, 1, 0, 0, 0, 872, 865, 1, 0, 0, 0, 872, 866, 1, 0, 0, 0, 872, 867, 1, 0, 0, 0, 872, 868, 1, 0, 0, 0, 872, 869, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 871, 1, 0, 0, 0, 873, 19, 1, 0, 0, 0, 874, 882, 3, 524, 262, 0, 875, 882, 3, 526, 263, 0, 876, 882, 3, 528, 264, 0, 877, 882, 3, 530, 265, 0, 878, 882, 3, 532, 266, 0, 879, 882, 3, 534, 267, 0, 880, 882, 3, 542, 271, 0, 881, 874, 1, 0, 0, 0, 881, 875, 1, 0, 0, 0, 881, 876, 1, 0, 0, 0, 881, 877, 1, 0, 0, 0, 881, 878, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 880, 1, 0, 0, 0, 882, 21, 1, 0, 0, 0, 883, 884, 5, 33, 0, 0, 884, 886, 7, 0, 0, 0, 885, 887, 3, 642, 321, 0, 886, 885, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 892, 3, 584, 292, 0, 889, 891, 3, 56, 28, 0, 890, 889, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 23, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 897, 5, 33, 0, 0, 896, 898, 3, 62, 31, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 5, 415, 0, 0, 900, 902, 3, 642, 321, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 3, 548, 274, 0, 904, 905, 5, 118, 0, 0, 905, 906, 5, 605, 0, 0, 906, 913, 3, 64, 32, 0, 907, 908, 5, 118, 0, 0, 908, 910, 5, 371, 0, 0, 909, 911, 5, 114, 0, 0, 910, 909, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 914, 5, 561, 0, 0, 913, 907, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 917, 3, 72, 36, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 919, 5, 368, 0, 0, 919, 921, 5, 1148, 0, 0, 920, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 5, 399, 0, 0, 923, 924, 3, 386, 193, 0, 924, 25, 1, 0, 0, 0, 925, 927, 5, 33, 0, 0, 926, 928, 7, 1, 0, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 930, 1, 0, 0, 0, 929, 931, 7, 2, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 5, 81, 0, 0, 933, 935, 3, 584, 292, 0, 934, 936, 3, 74, 37, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 5, 118, 0, 0, 938, 939, 3, 550, 275, 0, 939, 943, 3, 622, 311, 0, 940, 942, 3, 76, 38, 0, 941, 940, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 958, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 948, 5, 336, 0, 0, 947, 949, 5, 1124, 0, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 957, 7, 3, 0, 0, 951, 953, 5, 103, 0, 0, 952, 954, 5, 1124, 0, 0, 953, 952, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 957, 7, 4, 0, 0, 956, 946, 1, 0, 0, 0, 956, 951, 1, 0, 0, 0, 957, 960, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 27, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 961, 962, 5, 33, 0, 0, 962, 963, 5, 475, 0, 0, 963, 964, 5, 73, 0, 0, 964, 965, 3, 584, 292, 0, 965, 966, 5, 5, 0, 0, 966, 967, 5, 659, 0, 0, 967, 973, 5, 1148, 0, 0, 968, 970, 5, 453, 0, 0, 969, 971, 5, 1124, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 592, 296, 0, 973, 968, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 980, 1, 0, 0, 0, 975, 977, 5, 660, 0, 0, 976, 978, 5, 1124, 0, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 981, 3, 592, 296, 0, 980, 975, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 987, 1, 0, 0, 0, 982, 984, 5, 572, 0, 0, 983, 985, 5, 1124, 0, 0, 984, 983, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 988, 3, 592, 296, 0, 987, 982, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, 0, 0, 989, 991, 5, 528, 0, 0, 990, 992, 5, 1124, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 3, 584, 292, 0, 994, 989, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 997, 1, 0, 0, 0, 996, 998, 5, 674, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1004, 1, 0, 0, 0, 999, 1001, 5, 368, 0, 0, 1000, 1002, 5, 1124, 0, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 5, 1148, 0, 0, 1004, 999, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 5, 409, 0, 0, 1007, 1009, 5, 1124, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 3, 572, 286, 0, 1011, 29, 1, 0, 0, 0, 1012, 1014, 5, 33, 0, 0, 1013, 1015, 3, 62, 31, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 5, 131, 0, 0, 1017, 1018, 3, 548, 274, 0, 1018, 1020, 5, 1133, 0, 0, 1019, 1021, 3, 78, 39, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1026, 1, 0, 0, 0, 1022, 1023, 5, 1135, 0, 0, 1023, 1025, 3, 78, 39, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1028, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1029, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 1033, 5, 1134, 0, 0, 1030, 1032, 3, 82, 41, 0, 1031, 1030, 1, 0, 0, 0, 1032, 1035, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1037, 3, 386, 193, 0, 1037, 31, 1, 0, 0, 0, 1038, 1040, 5, 33, 0, 0, 1039, 1041, 3, 62, 31, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 1044, 5, 335, 0, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 5, 437, 0, 0, 1046, 1048, 3, 642, 321, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 3, 548, 274, 0, 1050, 1052, 5, 1133, 0, 0, 1051, 1053, 3, 80, 40, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1058, 1, 0, 0, 0, 1054, 1055, 5, 1135, 0, 0, 1055, 1057, 3, 80, 40, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1060, 1, 0, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1061, 1062, 5, 1134, 0, 0, 1062, 1063, 5, 594, 0, 0, 1063, 1067, 3, 604, 302, 0, 1064, 1066, 3, 82, 41, 0, 1065, 1064, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1072, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1073, 3, 386, 193, 0, 1071, 1073, 3, 402, 201, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1071, 1, 0, 0, 0, 1073, 33, 1, 0, 0, 0, 1074, 1075, 5, 33, 0, 0, 1075, 1077, 5, 596, 0, 0, 1076, 1078, 3, 642, 321, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1084, 3, 554, 277, 0, 1080, 1081, 5, 1135, 0, 0, 1081, 1083, 3, 554, 277, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 35, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1088, 5, 33, 0, 0, 1088, 1089, 5, 608, 0, 0, 1089, 1090, 3, 584, 292, 0, 1090, 1091, 5, 67, 0, 0, 1091, 1092, 5, 388, 0, 0, 1092, 1093, 5, 679, 0, 0, 1093, 1094, 7, 5, 0, 0, 1094, 1095, 5, 541, 0, 0, 1095, 1096, 5, 1133, 0, 0, 1096, 1101, 3, 84, 42, 0, 1097, 1098, 5, 1135, 0, 0, 1098, 1100, 3, 84, 42, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1104, 1105, 5, 1134, 0, 0, 1105, 37, 1, 0, 0, 0, 1106, 1108, 5, 33, 0, 0, 1107, 1109, 5, 649, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 5, 172, 0, 0, 1111, 1113, 3, 642, 321, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1122, 3, 550, 275, 0, 1115, 1116, 5, 98, 0, 0, 1116, 1123, 3, 550, 275, 0, 1117, 1118, 5, 1133, 0, 0, 1118, 1119, 5, 98, 0, 0, 1119, 1120, 3, 550, 275, 0, 1120, 1121, 5, 1134, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1115, 1, 0, 0, 0, 1122, 1117, 1, 0, 0, 0, 1123, 1185, 1, 0, 0, 0, 1124, 1126, 5, 33, 0, 0, 1125, 1127, 5, 649, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 5, 172, 0, 0, 1129, 1131, 3, 642, 321, 0, 1130, 1129, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 3, 550, 275, 0, 1133, 1135, 3, 86, 43, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1146, 1, 0, 0, 0, 1136, 1143, 3, 104, 52, 0, 1137, 1139, 5, 1135, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 3, 104, 52, 0, 1141, 1138, 1, 0, 0, 0, 1142, 1145, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1147, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1146, 1136, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1150, 3, 110, 55, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1153, 7, 6, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1156, 5, 12, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 3, 198, 99, 0, 1158, 1185, 1, 0, 0, 0, 1159, 1161, 5, 33, 0, 0, 1160, 1162, 5, 649, 0, 0, 1161, 1160, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 5, 172, 0, 0, 1164, 1166, 3, 642, 321, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 3, 550, 275, 0, 1168, 1179, 3, 86, 43, 0, 1169, 1176, 3, 104, 52, 0, 1170, 1172, 5, 1135, 0, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 3, 104, 52, 0, 1174, 1171, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1169, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 110, 55, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 0, 1184, 1106, 1, 0, 0, 0, 1184, 1124, 1, 0, 0, 0, 1184, 1159, 1, 0, 0, 0, 1185, 39, 1, 0, 0, 0, 1186, 1187, 5, 33, 0, 0, 1187, 1188, 5, 647, 0, 0, 1188, 1189, 3, 584, 292, 0, 1189, 1190, 5, 5, 0, 0, 1190, 1191, 5, 389, 0, 0, 1191, 1195, 5, 1148, 0, 0, 1192, 1193, 5, 428, 0, 0, 1193, 1194, 5, 1124, 0, 0, 1194, 1196, 3, 592, 296, 0, 1195, 1192, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1202, 1, 0, 0, 0, 1197, 1199, 5, 409, 0, 0, 1198, 1200, 5, 1124, 0, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 3, 572, 286, 0, 1202, 1197, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 41, 1, 0, 0, 0, 1204, 1205, 5, 33, 0, 0, 1205, 1206, 5, 647, 0, 0, 1206, 1207, 3, 584, 292, 0, 1207, 1208, 5, 5, 0, 0, 1208, 1209, 5, 389, 0, 0, 1209, 1210, 5, 1148, 0, 0, 1210, 1211, 5, 186, 0, 0, 1211, 1212, 5, 475, 0, 0, 1212, 1213, 5, 73, 0, 0, 1213, 1219, 3, 584, 292, 0, 1214, 1216, 5, 423, 0, 0, 1215, 1217, 5, 1124, 0, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 3, 592, 296, 0, 1219, 1214, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1226, 1, 0, 0, 0, 1221, 1223, 5, 453, 0, 0, 1222, 1224, 5, 1124, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 3, 592, 296, 0, 1226, 1221, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1233, 1, 0, 0, 0, 1228, 1230, 5, 341, 0, 0, 1229, 1231, 5, 1124, 0, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 3, 592, 296, 0, 1233, 1228, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1240, 1, 0, 0, 0, 1235, 1237, 5, 501, 0, 0, 1236, 1238, 5, 1124, 0, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 3, 592, 296, 0, 1240, 1235, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1247, 1, 0, 0, 0, 1242, 1244, 5, 528, 0, 0, 1243, 1245, 5, 1124, 0, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1248, 3, 584, 292, 0, 1247, 1242, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1250, 1, 0, 0, 0, 1249, 1251, 5, 674, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1257, 1, 0, 0, 0, 1252, 1254, 5, 368, 0, 0, 1253, 1255, 5, 1124, 0, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 5, 1148, 0, 0, 1257, 1252, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1261, 5, 409, 0, 0, 1260, 1262, 5, 1124, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 3, 572, 286, 0, 1264, 43, 1, 0, 0, 0, 1265, 1267, 5, 33, 0, 0, 1266, 1268, 3, 62, 31, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1271, 5, 177, 0, 0, 1270, 1272, 3, 642, 321, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 3, 548, 274, 0, 1274, 1275, 7, 7, 0, 0, 1275, 1276, 7, 8, 0, 0, 1276, 1277, 5, 118, 0, 0, 1277, 1278, 3, 550, 275, 0, 1278, 1279, 5, 65, 0, 0, 1279, 1280, 5, 52, 0, 0, 1280, 1283, 5, 600, 0, 0, 1281, 1282, 7, 9, 0, 0, 1282, 1284, 3, 548, 274, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 3, 386, 193, 0, 1286, 45, 1, 0, 0, 0, 1287, 1289, 5, 192, 0, 0, 1288, 1290, 5, 571, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 48, 24, 0, 1292, 47, 1, 0, 0, 0, 1293, 1305, 3, 50, 25, 0, 1294, 1295, 5, 1133, 0, 0, 1295, 1300, 3, 52, 26, 0, 1296, 1297, 5, 1135, 0, 0, 1297, 1299, 3, 52, 26, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1304, 5, 1134, 0, 0, 1304, 1306, 1, 0, 0, 0, 1305, 1294, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 5, 12, 0, 0, 1308, 1309, 5, 1133, 0, 0, 1309, 1310, 3, 8, 4, 0, 1310, 1313, 5, 1134, 0, 0, 1311, 1312, 5, 1135, 0, 0, 1312, 1314, 3, 48, 24, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 49, 1, 0, 0, 0, 1315, 1316, 3, 584, 292, 0, 1316, 51, 1, 0, 0, 0, 1317, 1318, 3, 584, 292, 0, 1318, 53, 1, 0, 0, 0, 1319, 1321, 5, 33, 0, 0, 1320, 1322, 3, 644, 322, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1326, 1, 0, 0, 0, 1323, 1324, 5, 336, 0, 0, 1324, 1325, 5, 1124, 0, 0, 1325, 1327, 7, 10, 0, 0, 1326, 1323, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 1, 0, 0, 0, 1328, 1330, 3, 62, 31, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1334, 1, 0, 0, 0, 1331, 1332, 5, 160, 0, 0, 1332, 1333, 5, 606, 0, 0, 1333, 1335, 7, 11, 0, 0, 1334, 1331, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 5, 671, 0, 0, 1337, 1342, 3, 548, 274, 0, 1338, 1339, 5, 1133, 0, 0, 1339, 1340, 3, 616, 308, 0, 1340, 1341, 5, 1134, 0, 0, 1341, 1343, 1, 0, 0, 0, 1342, 1338, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1364, 5, 12, 0, 0, 1345, 1347, 5, 1133, 0, 0, 1346, 1348, 3, 46, 23, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 3, 198, 99, 0, 1350, 1351, 5, 1134, 0, 0, 1351, 1365, 1, 0, 0, 0, 1352, 1354, 3, 46, 23, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1362, 3, 198, 99, 0, 1356, 1358, 5, 192, 0, 0, 1357, 1359, 7, 12, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 5, 26, 0, 0, 1361, 1363, 5, 120, 0, 0, 1362, 1356, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1365, 1, 0, 0, 0, 1364, 1345, 1, 0, 0, 0, 1364, 1353, 1, 0, 0, 0, 1365, 55, 1, 0, 0, 0, 1366, 1368, 5, 42, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1371, 3, 58, 29, 0, 1370, 1372, 5, 1124, 0, 0, 1371, 1370, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1375, 1, 0, 0, 0, 1373, 1376, 3, 568, 284, 0, 1374, 1376, 5, 42, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 1400, 1, 0, 0, 0, 1377, 1379, 5, 42, 0, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 5, 27, 0, 0, 1381, 1383, 5, 1124, 0, 0, 1382, 1381, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1400, 3, 570, 285, 0, 1385, 1387, 5, 42, 0, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1390, 5, 405, 0, 0, 1389, 1391, 5, 1124, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1400, 5, 1148, 0, 0, 1393, 1394, 5, 134, 0, 0, 1394, 1396, 5, 538, 0, 0, 1395, 1397, 5, 1124, 0, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 7, 13, 0, 0, 1399, 1367, 1, 0, 0, 0, 1399, 1378, 1, 0, 0, 0, 1399, 1386, 1, 0, 0, 0, 1399, 1393, 1, 0, 0, 0, 1400, 57, 1, 0, 0, 0, 1401, 1402, 5, 25, 0, 0, 1402, 1407, 5, 153, 0, 0, 1403, 1407, 5, 841, 0, 0, 1404, 1405, 5, 222, 0, 0, 1405, 1407, 5, 153, 0, 0, 1406, 1401, 1, 0, 0, 0, 1406, 1403, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1407, 59, 1, 0, 0, 0, 1408, 1411, 5, 37, 0, 0, 1409, 1410, 5, 1133, 0, 0, 1410, 1412, 5, 1134, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 61, 1, 0, 0, 0, 1413, 1414, 5, 392, 0, 0, 1414, 1417, 5, 1124, 0, 0, 1415, 1418, 3, 564, 282, 0, 1416, 1418, 3, 60, 30, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1416, 1, 0, 0, 0, 1418, 63, 1, 0, 0, 0, 1419, 1420, 5, 338, 0, 0, 1420, 1424, 3, 66, 33, 0, 1421, 1423, 3, 68, 34, 0, 1422, 1421, 1, 0, 0, 0, 1423, 1426, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1454, 1, 0, 0, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1430, 5, 417, 0, 0, 1428, 1431, 3, 590, 295, 0, 1429, 1431, 3, 688, 344, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1441, 3, 70, 35, 0, 1433, 1434, 5, 630, 0, 0, 1434, 1438, 3, 66, 33, 0, 1435, 1437, 3, 68, 34, 0, 1436, 1435, 1, 0, 0, 0, 1437, 1440, 1, 0, 0, 0, 1438, 1436, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1442, 1, 0, 0, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1433, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1451, 1, 0, 0, 0, 1443, 1444, 5, 408, 0, 0, 1444, 1448, 3, 66, 33, 0, 1445, 1447, 3, 68, 34, 0, 1446, 1445, 1, 0, 0, 0, 1447, 1450, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1452, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1451, 1443, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1454, 1, 0, 0, 0, 1453, 1419, 1, 0, 0, 0, 1453, 1427, 1, 0, 0, 0, 1454, 65, 1, 0, 0, 0, 1455, 1460, 5, 315, 0, 0, 1456, 1460, 3, 594, 297, 0, 1457, 1460, 3, 590, 295, 0, 1458, 1460, 3, 688, 344, 0, 1459, 1455, 1, 0, 0, 0, 1459, 1456, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1458, 1, 0, 0, 0, 1460, 67, 1, 0, 0, 0, 1461, 1462, 5, 1120, 0, 0, 1462, 1465, 5, 86, 0, 0, 1463, 1466, 3, 590, 295, 0, 1464, 1466, 3, 688, 344, 0, 1465, 1463, 1, 0, 0, 0, 1465, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 3, 70, 35, 0, 1468, 69, 1, 0, 0, 0, 1469, 1483, 3, 714, 357, 0, 1470, 1483, 5, 221, 0, 0, 1471, 1483, 5, 240, 0, 0, 1472, 1483, 5, 241, 0, 0, 1473, 1483, 5, 242, 0, 0, 1474, 1483, 5, 243, 0, 0, 1475, 1483, 5, 244, 0, 0, 1476, 1483, 5, 245, 0, 0, 1477, 1483, 5, 246, 0, 0, 1478, 1483, 5, 247, 0, 0, 1479, 1483, 5, 248, 0, 0, 1480, 1483, 5, 249, 0, 0, 1481, 1483, 5, 250, 0, 0, 1482, 1469, 1, 0, 0, 0, 1482, 1470, 1, 0, 0, 0, 1482, 1471, 1, 0, 0, 0, 1482, 1472, 1, 0, 0, 0, 1482, 1473, 1, 0, 0, 0, 1482, 1474, 1, 0, 0, 0, 1482, 1475, 1, 0, 0, 0, 1482, 1476, 1, 0, 0, 0, 1482, 1477, 1, 0, 0, 0, 1482, 1478, 1, 0, 0, 0, 1482, 1479, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1482, 1481, 1, 0, 0, 0, 1483, 71, 1, 0, 0, 0, 1484, 1490, 5, 403, 0, 0, 1485, 1490, 5, 396, 0, 0, 1486, 1487, 5, 396, 0, 0, 1487, 1488, 5, 118, 0, 0, 1488, 1490, 5, 614, 0, 0, 1489, 1484, 1, 0, 0, 0, 1489, 1485, 1, 0, 0, 0, 1489, 1486, 1, 0, 0, 0, 1490, 73, 1, 0, 0, 0, 1491, 1492, 5, 187, 0, 0, 1492, 1493, 7, 14, 0, 0, 1493, 75, 1, 0, 0, 0, 1494, 1496, 5, 467, 0, 0, 1495, 1497, 5, 1124, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1517, 3, 592, 296, 0, 1499, 1517, 3, 74, 37, 0, 1500, 1501, 5, 192, 0, 0, 1501, 1502, 5, 547, 0, 0, 1502, 1517, 3, 584, 292, 0, 1503, 1504, 5, 368, 0, 0, 1504, 1517, 5, 1148, 0, 0, 1505, 1517, 7, 15, 0, 0, 1506, 1508, 5, 875, 0, 0, 1507, 1509, 5, 1124, 0, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1517, 5, 1148, 0, 0, 1511, 1513, 5, 1000, 0, 0, 1512, 1514, 5, 1124, 0, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1517, 5, 1148, 0, 0, 1516, 1494, 1, 0, 0, 0, 1516, 1499, 1, 0, 0, 0, 1516, 1500, 1, 0, 0, 0, 1516, 1503, 1, 0, 0, 0, 1516, 1505, 1, 0, 0, 0, 1516, 1506, 1, 0, 0, 0, 1516, 1511, 1, 0, 0, 0, 1517, 77, 1, 0, 0, 0, 1518, 1520, 7, 16, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 3, 584, 292, 0, 1522, 1523, 3, 604, 302, 0, 1523, 79, 1, 0, 0, 0, 1524, 1525, 3, 584, 292, 0, 1525, 1526, 3, 604, 302, 0, 1526, 81, 1, 0, 0, 0, 1527, 1528, 5, 368, 0, 0, 1528, 1551, 5, 1148, 0, 0, 1529, 1530, 5, 468, 0, 0, 1530, 1551, 5, 160, 0, 0, 1531, 1533, 5, 114, 0, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1551, 5, 47, 0, 0, 1535, 1536, 5, 381, 0, 0, 1536, 1546, 5, 160, 0, 0, 1537, 1538, 5, 521, 0, 0, 1538, 1546, 5, 160, 0, 0, 1539, 1540, 5, 135, 0, 0, 1540, 1541, 5, 160, 0, 0, 1541, 1546, 5, 388, 0, 0, 1542, 1543, 5, 112, 0, 0, 1543, 1544, 5, 160, 0, 0, 1544, 1546, 5, 388, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1537, 1, 0, 0, 0, 1545, 1539, 1, 0, 0, 0, 1545, 1542, 1, 0, 0, 0, 1546, 1551, 1, 0, 0, 0, 1547, 1548, 5, 160, 0, 0, 1548, 1549, 5, 606, 0, 0, 1549, 1551, 7, 11, 0, 0, 1550, 1527, 1, 0, 0, 0, 1550, 1529, 1, 0, 0, 0, 1550, 1532, 1, 0, 0, 0, 1550, 1545, 1, 0, 0, 0, 1550, 1547, 1, 0, 0, 0, 1551, 83, 1, 0, 0, 0, 1552, 1553, 5, 446, 0, 0, 1553, 1567, 5, 1148, 0, 0, 1554, 1555, 5, 39, 0, 0, 1555, 1567, 5, 1148, 0, 0, 1556, 1557, 5, 665, 0, 0, 1557, 1567, 5, 1148, 0, 0, 1558, 1559, 5, 551, 0, 0, 1559, 1567, 5, 1148, 0, 0, 1560, 1561, 5, 617, 0, 0, 1561, 1567, 5, 1148, 0, 0, 1562, 1563, 5, 542, 0, 0, 1563, 1567, 5, 1148, 0, 0, 1564, 1565, 5, 557, 0, 0, 1565, 1567, 3, 590, 295, 0, 1566, 1552, 1, 0, 0, 0, 1566, 1554, 1, 0, 0, 0, 1566, 1556, 1, 0, 0, 0, 1566, 1558, 1, 0, 0, 0, 1566, 1560, 1, 0, 0, 0, 1566, 1562, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1567, 85, 1, 0, 0, 0, 1568, 1569, 5, 1133, 0, 0, 1569, 1574, 3, 88, 44, 0, 1570, 1571, 5, 1135, 0, 0, 1571, 1573, 3, 88, 44, 0, 1572, 1570, 1, 0, 0, 0, 1573, 1576, 1, 0, 0, 0, 1574, 1572, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1577, 1578, 5, 1134, 0, 0, 1578, 87, 1, 0, 0, 0, 1579, 1580, 3, 556, 278, 0, 1580, 1581, 3, 90, 45, 0, 1581, 1591, 1, 0, 0, 0, 1582, 1584, 3, 94, 47, 0, 1583, 1585, 5, 114, 0, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1588, 5, 57, 0, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1591, 3, 102, 51, 0, 1590, 1579, 1, 0, 0, 0, 1590, 1582, 1, 0, 0, 0, 1590, 1589, 1, 0, 0, 0, 1591, 89, 1, 0, 0, 0, 1592, 1596, 3, 604, 302, 0, 1593, 1595, 3, 92, 46, 0, 1594, 1593, 1, 0, 0, 0, 1595, 1598, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1596, 1, 0, 0, 0, 1599, 1601, 5, 114, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1604, 5, 57, 0, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 91, 1, 0, 0, 0, 1605, 1659, 3, 600, 300, 0, 1606, 1607, 5, 42, 0, 0, 1607, 1659, 3, 634, 317, 0, 1608, 1659, 5, 673, 0, 0, 1609, 1659, 5, 459, 0, 0, 1610, 1615, 5, 342, 0, 0, 1611, 1612, 5, 118, 0, 0, 1612, 1613, 5, 184, 0, 0, 1613, 1615, 3, 636, 318, 0, 1614, 1610, 1, 0, 0, 0, 1614, 1611, 1, 0, 0, 0, 1615, 1659, 1, 0, 0, 0, 1616, 1618, 5, 130, 0, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1659, 5, 91, 0, 0, 1620, 1622, 5, 181, 0, 0, 1621, 1623, 5, 91, 0, 0, 1622, 1621, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1659, 1, 0, 0, 0, 1624, 1625, 5, 368, 0, 0, 1625, 1659, 5, 1148, 0, 0, 1626, 1627, 5, 366, 0, 0, 1627, 1659, 7, 17, 0, 0, 1628, 1629, 5, 636, 0, 0, 1629, 1659, 7, 18, 0, 0, 1630, 1659, 3, 96, 48, 0, 1631, 1632, 5, 27, 0, 0, 1632, 1659, 3, 570, 285, 0, 1633, 1634, 5, 70, 0, 0, 1634, 1636, 5, 8, 0, 0, 1635, 1633, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 5, 12, 0, 0, 1638, 1639, 5, 1133, 0, 0, 1639, 1640, 3, 688, 344, 0, 1640, 1642, 5, 1134, 0, 0, 1641, 1643, 7, 19, 0, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1659, 1, 0, 0, 0, 1644, 1645, 5, 239, 0, 0, 1645, 1646, 5, 42, 0, 0, 1646, 1659, 5, 669, 0, 0, 1647, 1649, 5, 30, 0, 0, 1648, 1650, 3, 584, 292, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1647, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 5, 26, 0, 0, 1654, 1655, 5, 1133, 0, 0, 1655, 1656, 3, 688, 344, 0, 1656, 1657, 5, 1134, 0, 0, 1657, 1659, 1, 0, 0, 0, 1658, 1605, 1, 0, 0, 0, 1658, 1606, 1, 0, 0, 0, 1658, 1608, 1, 0, 0, 0, 1658, 1609, 1, 0, 0, 0, 1658, 1614, 1, 0, 0, 0, 1658, 1617, 1, 0, 0, 0, 1658, 1620, 1, 0, 0, 0, 1658, 1624, 1, 0, 0, 0, 1658, 1626, 1, 0, 0, 0, 1658, 1628, 1, 0, 0, 0, 1658, 1630, 1, 0, 0, 0, 1658, 1631, 1, 0, 0, 0, 1658, 1635, 1, 0, 0, 0, 1658, 1644, 1, 0, 0, 0, 1658, 1651, 1, 0, 0, 0, 1659, 93, 1, 0, 0, 0, 1660, 1662, 5, 30, 0, 0, 1661, 1663, 3, 584, 292, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1660, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1667, 5, 130, 0, 0, 1667, 1669, 5, 91, 0, 0, 1668, 1670, 3, 584, 292, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 74, 37, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1678, 3, 622, 311, 0, 1675, 1677, 3, 76, 38, 0, 1676, 1675, 1, 0, 0, 0, 1677, 1680, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1730, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1683, 5, 30, 0, 0, 1682, 1684, 3, 584, 292, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1686, 1, 0, 0, 0, 1685, 1681, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 5, 181, 0, 0, 1688, 1690, 7, 20, 0, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1693, 3, 584, 292, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 74, 37, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1701, 3, 622, 311, 0, 1698, 1700, 3, 76, 38, 0, 1699, 1698, 1, 0, 0, 0, 1700, 1703, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1730, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1706, 5, 30, 0, 0, 1705, 1707, 3, 584, 292, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1704, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 5, 67, 0, 0, 1711, 1713, 5, 91, 0, 0, 1712, 1714, 3, 584, 292, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 3, 622, 311, 0, 1716, 1717, 3, 96, 48, 0, 1717, 1730, 1, 0, 0, 0, 1718, 1720, 5, 30, 0, 0, 1719, 1721, 3, 584, 292, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 1, 0, 0, 0, 1722, 1718, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 5, 26, 0, 0, 1725, 1726, 5, 1133, 0, 0, 1726, 1727, 3, 688, 344, 0, 1727, 1728, 5, 1134, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1664, 1, 0, 0, 0, 1729, 1685, 1, 0, 0, 0, 1729, 1708, 1, 0, 0, 0, 1729, 1722, 1, 0, 0, 0, 1730, 95, 1, 0, 0, 0, 1731, 1732, 5, 136, 0, 0, 1732, 1734, 3, 550, 275, 0, 1733, 1735, 3, 622, 311, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1738, 1, 0, 0, 0, 1736, 1737, 5, 109, 0, 0, 1737, 1739, 7, 21, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1742, 3, 98, 49, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 97, 1, 0, 0, 0, 1743, 1744, 5, 118, 0, 0, 1744, 1745, 5, 44, 0, 0, 1745, 1749, 3, 100, 50, 0, 1746, 1747, 5, 118, 0, 0, 1747, 1748, 5, 184, 0, 0, 1748, 1750, 3, 100, 50, 0, 1749, 1746, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1760, 1, 0, 0, 0, 1751, 1752, 5, 118, 0, 0, 1752, 1753, 5, 184, 0, 0, 1753, 1757, 3, 100, 50, 0, 1754, 1755, 5, 118, 0, 0, 1755, 1756, 5, 44, 0, 0, 1756, 1758, 3, 100, 50, 0, 1757, 1754, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1743, 1, 0, 0, 0, 1759, 1751, 1, 0, 0, 0, 1760, 99, 1, 0, 0, 0, 1761, 1770, 5, 144, 0, 0, 1762, 1770, 5, 21, 0, 0, 1763, 1764, 5, 153, 0, 0, 1764, 1770, 5, 116, 0, 0, 1765, 1766, 5, 521, 0, 0, 1766, 1770, 5, 333, 0, 0, 1767, 1768, 5, 153, 0, 0, 1768, 1770, 5, 42, 0, 0, 1769, 1761, 1, 0, 0, 0, 1769, 1762, 1, 0, 0, 0, 1769, 1763, 1, 0, 0, 0, 1769, 1765, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 101, 1, 0, 0, 0, 1771, 1773, 7, 20, 0, 0, 1772, 1774, 3, 584, 292, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1777, 3, 74, 37, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1782, 3, 622, 311, 0, 1779, 1781, 3, 76, 38, 0, 1780, 1779, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1800, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1787, 7, 22, 0, 0, 1786, 1788, 7, 20, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1790, 1, 0, 0, 0, 1789, 1791, 3, 584, 292, 0, 1790, 1789, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1796, 3, 622, 311, 0, 1793, 1795, 3, 76, 38, 0, 1794, 1793, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1800, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1771, 1, 0, 0, 0, 1799, 1785, 1, 0, 0, 0, 1800, 103, 1, 0, 0, 0, 1801, 1803, 5, 409, 0, 0, 1802, 1804, 5, 1124, 0, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1807, 3, 572, 286, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1987, 1, 0, 0, 0, 1808, 1810, 5, 875, 0, 0, 1809, 1811, 5, 1124, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1987, 5, 1148, 0, 0, 1813, 1815, 5, 341, 0, 0, 1814, 1816, 5, 1124, 0, 0, 1815, 1814, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1987, 3, 590, 295, 0, 1818, 1820, 5, 342, 0, 0, 1819, 1821, 5, 1124, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1987, 3, 590, 295, 0, 1823, 1825, 5, 343, 0, 0, 1824, 1826, 5, 1124, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1987, 3, 590, 295, 0, 1828, 1830, 5, 42, 0, 0, 1829, 1828, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 3, 58, 29, 0, 1832, 1834, 5, 1124, 0, 0, 1833, 1832, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1837, 1, 0, 0, 0, 1835, 1838, 3, 568, 284, 0, 1836, 1838, 5, 42, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 1987, 1, 0, 0, 0, 1839, 1841, 7, 23, 0, 0, 1840, 1842, 5, 1124, 0, 0, 1841, 1840, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1987, 7, 24, 0, 0, 1844, 1846, 5, 42, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1849, 5, 27, 0, 0, 1848, 1850, 5, 1124, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1987, 3, 570, 285, 0, 1852, 1854, 5, 368, 0, 0, 1853, 1855, 5, 1124, 0, 0, 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1987, 5, 1148, 0, 0, 1857, 1859, 5, 373, 0, 0, 1858, 1860, 5, 1124, 0, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1987, 7, 25, 0, 0, 1862, 1864, 5, 376, 0, 0, 1863, 1865, 5, 1124, 0, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1987, 5, 1148, 0, 0, 1867, 1868, 7, 26, 0, 0, 1868, 1870, 5, 395, 0, 0, 1869, 1871, 5, 1124, 0, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1987, 5, 1148, 0, 0, 1873, 1875, 5, 393, 0, 0, 1874, 1876, 5, 1124, 0, 0, 1875, 1874, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1987, 7, 24, 0, 0, 1878, 1880, 5, 405, 0, 0, 1879, 1881, 5, 1124, 0, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1987, 5, 1148, 0, 0, 1883, 1885, 7, 27, 0, 0, 1884, 1886, 5, 1124, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1987, 7, 24, 0, 0, 1888, 1890, 7, 28, 0, 0, 1889, 1891, 5, 1124, 0, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1987, 3, 590, 295, 0, 1893, 1895, 5, 406, 0, 0, 1894, 1896, 5, 1124, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1987, 3, 590, 295, 0, 1898, 1899, 5, 81, 0, 0, 1899, 1901, 5, 395, 0, 0, 1900, 1902, 5, 1124, 0, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1987, 5, 1148, 0, 0, 1904, 1906, 5, 455, 0, 0, 1905, 1907, 5, 1124, 0, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1987, 7, 29, 0, 0, 1909, 1911, 5, 467, 0, 0, 1910, 1912, 5, 1124, 0, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1987, 3, 592, 296, 0, 1914, 1916, 5, 500, 0, 0, 1915, 1917, 5, 1124, 0, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1987, 3, 590, 295, 0, 1919, 1921, 5, 510, 0, 0, 1920, 1922, 5, 1124, 0, 0, 1921, 1920, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1987, 3, 590, 295, 0, 1924, 1926, 5, 543, 0, 0, 1925, 1927, 5, 1124, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1987, 7, 13, 0, 0, 1929, 1931, 5, 551, 0, 0, 1930, 1932, 5, 1124, 0, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1987, 5, 1148, 0, 0, 1934, 1936, 5, 602, 0, 0, 1935, 1937, 5, 1124, 0, 0, 1936, 1935, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1987, 7, 30, 0, 0, 1939, 1940, 5, 629, 0, 0, 1940, 1987, 5, 653, 0, 0, 1941, 1943, 5, 1000, 0, 0, 1942, 1944, 5, 1124, 0, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1987, 5, 1148, 0, 0, 1946, 1948, 5, 631, 0, 0, 1947, 1949, 5, 1124, 0, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1987, 7, 13, 0, 0, 1951, 1953, 5, 632, 0, 0, 1952, 1954, 5, 1124, 0, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1987, 7, 13, 0, 0, 1956, 1958, 5, 633, 0, 0, 1957, 1959, 5, 1124, 0, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1963, 5, 42, 0, 0, 1961, 1963, 3, 590, 295, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1987, 1, 0, 0, 0, 1964, 1965, 5, 647, 0, 0, 1965, 1967, 3, 584, 292, 0, 1966, 1968, 3, 108, 54, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1987, 1, 0, 0, 0, 1969, 1970, 5, 648, 0, 0, 1970, 1971, 5, 1124, 0, 0, 1971, 1987, 3, 106, 53, 0, 1972, 1987, 3, 108, 54, 0, 1973, 1975, 5, 654, 0, 0, 1974, 1976, 5, 1124, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1987, 7, 24, 0, 0, 1978, 1980, 5, 180, 0, 0, 1979, 1981, 5, 1124, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 5, 1133, 0, 0, 1983, 1984, 3, 620, 310, 0, 1984, 1985, 5, 1134, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1801, 1, 0, 0, 0, 1986, 1808, 1, 0, 0, 0, 1986, 1813, 1, 0, 0, 0, 1986, 1818, 1, 0, 0, 0, 1986, 1823, 1, 0, 0, 0, 1986, 1829, 1, 0, 0, 0, 1986, 1839, 1, 0, 0, 0, 1986, 1845, 1, 0, 0, 0, 1986, 1852, 1, 0, 0, 0, 1986, 1857, 1, 0, 0, 0, 1986, 1862, 1, 0, 0, 0, 1986, 1867, 1, 0, 0, 0, 1986, 1873, 1, 0, 0, 0, 1986, 1878, 1, 0, 0, 0, 1986, 1883, 1, 0, 0, 0, 1986, 1888, 1, 0, 0, 0, 1986, 1893, 1, 0, 0, 0, 1986, 1898, 1, 0, 0, 0, 1986, 1904, 1, 0, 0, 0, 1986, 1909, 1, 0, 0, 0, 1986, 1914, 1, 0, 0, 0, 1986, 1919, 1, 0, 0, 0, 1986, 1924, 1, 0, 0, 0, 1986, 1929, 1, 0, 0, 0, 1986, 1934, 1, 0, 0, 0, 1986, 1939, 1, 0, 0, 0, 1986, 1941, 1, 0, 0, 0, 1986, 1946, 1, 0, 0, 0, 1986, 1951, 1, 0, 0, 0, 1986, 1956, 1, 0, 0, 0, 1986, 1964, 1, 0, 0, 0, 1986, 1969, 1, 0, 0, 0, 1986, 1972, 1, 0, 0, 0, 1986, 1973, 1, 0, 0, 0, 1986, 1978, 1, 0, 0, 0, 1987, 105, 1, 0, 0, 0, 1988, 1989, 7, 31, 0, 0, 1989, 107, 1, 0, 0, 0, 1990, 1991, 5, 636, 0, 0, 1991, 1992, 7, 18, 0, 0, 1992, 109, 1, 0, 0, 0, 1993, 1994, 5, 129, 0, 0, 1994, 1995, 5, 19, 0, 0, 1995, 1998, 3, 112, 56, 0, 1996, 1997, 5, 550, 0, 0, 1997, 1999, 3, 590, 295, 0, 1998, 1996, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2007, 1, 0, 0, 0, 2000, 2001, 5, 641, 0, 0, 2001, 2002, 5, 19, 0, 0, 2002, 2005, 3, 114, 57, 0, 2003, 2004, 5, 642, 0, 0, 2004, 2006, 3, 590, 295, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2000, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2020, 1, 0, 0, 0, 2009, 2010, 5, 1133, 0, 0, 2010, 2015, 3, 116, 58, 0, 2011, 2012, 5, 1135, 0, 0, 2012, 2014, 3, 116, 58, 0, 2013, 2011, 1, 0, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2018, 2019, 5, 1134, 0, 0, 2019, 2021, 1, 0, 0, 0, 2020, 2009, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 111, 1, 0, 0, 0, 2022, 2024, 5, 100, 0, 0, 2023, 2022, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 5, 443, 0, 0, 2026, 2027, 5, 1133, 0, 0, 2027, 2028, 3, 688, 344, 0, 2028, 2029, 5, 1134, 0, 0, 2029, 2069, 1, 0, 0, 0, 2030, 2032, 5, 100, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2037, 5, 91, 0, 0, 2034, 2035, 5, 336, 0, 0, 2035, 2036, 5, 1124, 0, 0, 2036, 2038, 7, 32, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 5, 1133, 0, 0, 2040, 2042, 3, 616, 308, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2069, 5, 1134, 0, 0, 2044, 2054, 5, 133, 0, 0, 2045, 2046, 5, 1133, 0, 0, 2046, 2047, 3, 688, 344, 0, 2047, 2048, 5, 1134, 0, 0, 2048, 2055, 1, 0, 0, 0, 2049, 2050, 5, 365, 0, 0, 2050, 2051, 5, 1133, 0, 0, 2051, 2052, 3, 616, 308, 0, 2052, 2053, 5, 1134, 0, 0, 2053, 2055, 1, 0, 0, 0, 2054, 2045, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 2069, 1, 0, 0, 0, 2056, 2066, 5, 473, 0, 0, 2057, 2058, 5, 1133, 0, 0, 2058, 2059, 3, 688, 344, 0, 2059, 2060, 5, 1134, 0, 0, 2060, 2067, 1, 0, 0, 0, 2061, 2062, 5, 365, 0, 0, 2062, 2063, 5, 1133, 0, 0, 2063, 2064, 3, 616, 308, 0, 2064, 2065, 5, 1134, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2057, 1, 0, 0, 0, 2066, 2061, 1, 0, 0, 0, 2067, 2069, 1, 0, 0, 0, 2068, 2023, 1, 0, 0, 0, 2068, 2031, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2056, 1, 0, 0, 0, 2069, 113, 1, 0, 0, 0, 2070, 2072, 5, 100, 0, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 443, 0, 0, 2074, 2075, 5, 1133, 0, 0, 2075, 2076, 3, 688, 344, 0, 2076, 2077, 5, 1134, 0, 0, 2077, 2092, 1, 0, 0, 0, 2078, 2080, 5, 100, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2085, 5, 91, 0, 0, 2082, 2083, 5, 336, 0, 0, 2083, 2084, 5, 1124, 0, 0, 2084, 2086, 7, 32, 0, 0, 2085, 2082, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 5, 1133, 0, 0, 2088, 2089, 3, 616, 308, 0, 2089, 2090, 5, 1134, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2071, 1, 0, 0, 0, 2091, 2079, 1, 0, 0, 0, 2092, 115, 1, 0, 0, 0, 2093, 2094, 5, 129, 0, 0, 2094, 2095, 3, 584, 292, 0, 2095, 2096, 5, 188, 0, 0, 2096, 2097, 5, 471, 0, 0, 2097, 2098, 5, 651, 0, 0, 2098, 2099, 5, 1133, 0, 0, 2099, 2104, 3, 118, 59, 0, 2100, 2101, 5, 1135, 0, 0, 2101, 2103, 3, 118, 59, 0, 2102, 2100, 1, 0, 0, 0, 2103, 2106, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2107, 2111, 5, 1134, 0, 0, 2108, 2110, 3, 124, 62, 0, 2109, 2108, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2125, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2115, 5, 1133, 0, 0, 2115, 2120, 3, 122, 61, 0, 2116, 2117, 5, 1135, 0, 0, 2117, 2119, 3, 122, 61, 0, 2118, 2116, 1, 0, 0, 0, 2119, 2122, 1, 0, 0, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2123, 2124, 5, 1134, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2114, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2240, 1, 0, 0, 0, 2127, 2128, 5, 129, 0, 0, 2128, 2129, 3, 584, 292, 0, 2129, 2130, 5, 188, 0, 0, 2130, 2131, 5, 471, 0, 0, 2131, 2132, 5, 651, 0, 0, 2132, 2136, 3, 118, 59, 0, 2133, 2135, 3, 124, 62, 0, 2134, 2133, 1, 0, 0, 0, 2135, 2138, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2150, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2139, 2140, 5, 1133, 0, 0, 2140, 2145, 3, 122, 61, 0, 2141, 2142, 5, 1135, 0, 0, 2142, 2144, 3, 122, 61, 0, 2143, 2141, 1, 0, 0, 0, 2144, 2147, 1, 0, 0, 0, 2145, 2143, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2145, 1, 0, 0, 0, 2148, 2149, 5, 1134, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2139, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2240, 1, 0, 0, 0, 2152, 2153, 5, 129, 0, 0, 2153, 2154, 3, 584, 292, 0, 2154, 2155, 5, 188, 0, 0, 2155, 2156, 5, 80, 0, 0, 2156, 2157, 5, 1133, 0, 0, 2157, 2162, 3, 118, 59, 0, 2158, 2159, 5, 1135, 0, 0, 2159, 2161, 3, 118, 59, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2164, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2162, 1, 0, 0, 0, 2165, 2169, 5, 1134, 0, 0, 2166, 2168, 3, 124, 62, 0, 2167, 2166, 1, 0, 0, 0, 2168, 2171, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2183, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2173, 5, 1133, 0, 0, 2173, 2178, 3, 122, 61, 0, 2174, 2175, 5, 1135, 0, 0, 2175, 2177, 3, 122, 61, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2180, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2181, 2182, 5, 1134, 0, 0, 2182, 2184, 1, 0, 0, 0, 2183, 2172, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2240, 1, 0, 0, 0, 2185, 2186, 5, 129, 0, 0, 2186, 2187, 3, 584, 292, 0, 2187, 2188, 5, 188, 0, 0, 2188, 2189, 5, 80, 0, 0, 2189, 2190, 5, 1133, 0, 0, 2190, 2195, 3, 120, 60, 0, 2191, 2192, 5, 1135, 0, 0, 2192, 2194, 3, 120, 60, 0, 2193, 2191, 1, 0, 0, 0, 2194, 2197, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2198, 1, 0, 0, 0, 2197, 2195, 1, 0, 0, 0, 2198, 2202, 5, 1134, 0, 0, 2199, 2201, 3, 124, 62, 0, 2200, 2199, 1, 0, 0, 0, 2201, 2204, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2216, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2206, 5, 1133, 0, 0, 2206, 2211, 3, 122, 61, 0, 2207, 2208, 5, 1135, 0, 0, 2208, 2210, 3, 122, 61, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 1134, 0, 0, 2215, 2217, 1, 0, 0, 0, 2216, 2205, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2240, 1, 0, 0, 0, 2218, 2219, 5, 129, 0, 0, 2219, 2223, 3, 584, 292, 0, 2220, 2222, 3, 124, 62, 0, 2221, 2220, 1, 0, 0, 0, 2222, 2225, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2237, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2226, 2227, 5, 1133, 0, 0, 2227, 2232, 3, 122, 61, 0, 2228, 2229, 5, 1135, 0, 0, 2229, 2231, 3, 122, 61, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2235, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 5, 1134, 0, 0, 2236, 2238, 1, 0, 0, 0, 2237, 2226, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2240, 1, 0, 0, 0, 2239, 2093, 1, 0, 0, 0, 2239, 2127, 1, 0, 0, 0, 2239, 2152, 1, 0, 0, 0, 2239, 2185, 1, 0, 0, 0, 2239, 2218, 1, 0, 0, 0, 2240, 117, 1, 0, 0, 0, 2241, 2245, 3, 602, 301, 0, 2242, 2245, 3, 688, 344, 0, 2243, 2245, 5, 110, 0, 0, 2244, 2241, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 119, 1, 0, 0, 0, 2246, 2247, 5, 1133, 0, 0, 2247, 2250, 3, 118, 59, 0, 2248, 2249, 5, 1135, 0, 0, 2249, 2251, 3, 118, 59, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2255, 5, 1134, 0, 0, 2255, 121, 1, 0, 0, 0, 2256, 2257, 5, 641, 0, 0, 2257, 2261, 3, 584, 292, 0, 2258, 2260, 3, 124, 62, 0, 2259, 2258, 1, 0, 0, 0, 2260, 2263, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 123, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2264, 2266, 5, 42, 0, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2269, 5, 636, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 5, 409, 0, 0, 2271, 2273, 5, 1124, 0, 0, 2272, 2271, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2313, 3, 572, 286, 0, 2275, 2277, 5, 368, 0, 0, 2276, 2278, 5, 1124, 0, 0, 2277, 2276, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2313, 5, 1148, 0, 0, 2280, 2281, 5, 388, 0, 0, 2281, 2283, 5, 395, 0, 0, 2282, 2284, 5, 1124, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2313, 5, 1148, 0, 0, 2286, 2287, 5, 81, 0, 0, 2287, 2289, 5, 395, 0, 0, 2288, 2290, 5, 1124, 0, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2313, 5, 1148, 0, 0, 2292, 2294, 5, 500, 0, 0, 2293, 2295, 5, 1124, 0, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2313, 3, 590, 295, 0, 2297, 2299, 5, 510, 0, 0, 2298, 2300, 5, 1124, 0, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2301, 2313, 3, 590, 295, 0, 2302, 2304, 5, 647, 0, 0, 2303, 2305, 5, 1124, 0, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2313, 3, 584, 292, 0, 2307, 2309, 5, 528, 0, 0, 2308, 2310, 5, 1124, 0, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2313, 3, 584, 292, 0, 2312, 2265, 1, 0, 0, 0, 2312, 2275, 1, 0, 0, 0, 2312, 2280, 1, 0, 0, 0, 2312, 2286, 1, 0, 0, 0, 2312, 2292, 1, 0, 0, 0, 2312, 2297, 1, 0, 0, 0, 2312, 2302, 1, 0, 0, 0, 2312, 2307, 1, 0, 0, 0, 2313, 125, 1, 0, 0, 0, 2314, 2315, 5, 7, 0, 0, 2315, 2317, 7, 0, 0, 0, 2316, 2318, 3, 584, 292, 0, 2317, 2316, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2320, 1, 0, 0, 0, 2319, 2321, 3, 56, 28, 0, 2320, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2333, 1, 0, 0, 0, 2324, 2325, 5, 7, 0, 0, 2325, 2326, 7, 0, 0, 0, 2326, 2327, 3, 584, 292, 0, 2327, 2328, 5, 664, 0, 0, 2328, 2329, 5, 388, 0, 0, 2329, 2330, 5, 395, 0, 0, 2330, 2331, 5, 516, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2314, 1, 0, 0, 0, 2332, 2324, 1, 0, 0, 0, 2333, 127, 1, 0, 0, 0, 2334, 2336, 5, 7, 0, 0, 2335, 2337, 3, 62, 31, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 5, 415, 0, 0, 2339, 2343, 3, 548, 274, 0, 2340, 2341, 5, 118, 0, 0, 2341, 2342, 5, 605, 0, 0, 2342, 2344, 3, 64, 32, 0, 2343, 2340, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2351, 1, 0, 0, 0, 2345, 2346, 5, 118, 0, 0, 2346, 2348, 5, 371, 0, 0, 2347, 2349, 5, 114, 0, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 5, 561, 0, 0, 2351, 2345, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2356, 1, 0, 0, 0, 2353, 2354, 5, 139, 0, 0, 2354, 2355, 5, 175, 0, 0, 2355, 2357, 3, 548, 274, 0, 2356, 2353, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2360, 3, 72, 36, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2363, 1, 0, 0, 0, 2361, 2362, 5, 368, 0, 0, 2362, 2364, 5, 1148, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2366, 5, 399, 0, 0, 2366, 2368, 3, 386, 193, 0, 2367, 2365, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 129, 1, 0, 0, 0, 2369, 2370, 5, 7, 0, 0, 2370, 2371, 5, 437, 0, 0, 2371, 2375, 3, 548, 274, 0, 2372, 2374, 3, 82, 41, 0, 2373, 2372, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 131, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 7, 0, 0, 2379, 2380, 5, 457, 0, 0, 2380, 2381, 5, 599, 0, 0, 2381, 2382, 5, 791, 0, 0, 2382, 2383, 5, 477, 0, 0, 2383, 2384, 5, 91, 0, 0, 2384, 133, 1, 0, 0, 0, 2385, 2386, 5, 7, 0, 0, 2386, 2387, 5, 475, 0, 0, 2387, 2388, 5, 73, 0, 0, 2388, 2389, 3, 584, 292, 0, 2389, 2390, 5, 5, 0, 0, 2390, 2391, 5, 659, 0, 0, 2391, 2397, 5, 1148, 0, 0, 2392, 2394, 5, 453, 0, 0, 2393, 2395, 5, 1124, 0, 0, 2394, 2393, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2398, 3, 592, 296, 0, 2397, 2392, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2401, 5, 674, 0, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2404, 5, 409, 0, 0, 2403, 2405, 5, 1124, 0, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 3, 572, 286, 0, 2407, 135, 1, 0, 0, 0, 2408, 2409, 5, 7, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2414, 3, 548, 274, 0, 2411, 2413, 3, 82, 41, 0, 2412, 2411, 1, 0, 0, 0, 2413, 2416, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 137, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2417, 2418, 5, 7, 0, 0, 2418, 2419, 5, 608, 0, 0, 2419, 2420, 3, 584, 292, 0, 2420, 2421, 5, 541, 0, 0, 2421, 2422, 5, 1133, 0, 0, 2422, 2427, 3, 84, 42, 0, 2423, 2424, 5, 1135, 0, 0, 2424, 2426, 3, 84, 42, 0, 2425, 2423, 1, 0, 0, 0, 2426, 2429, 1, 0, 0, 0, 2427, 2425, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2430, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2430, 2431, 5, 1134, 0, 0, 2431, 139, 1, 0, 0, 0, 2432, 2434, 5, 7, 0, 0, 2433, 2435, 7, 1, 0, 0, 2434, 2433, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2437, 1, 0, 0, 0, 2436, 2438, 5, 78, 0, 0, 2437, 2436, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 5, 172, 0, 0, 2440, 2442, 3, 550, 275, 0, 2441, 2443, 3, 646, 323, 0, 2442, 2441, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2452, 1, 0, 0, 0, 2444, 2449, 3, 146, 73, 0, 2445, 2446, 5, 1135, 0, 0, 2446, 2448, 3, 146, 73, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2453, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2444, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 1, 0, 0, 0, 2454, 2456, 3, 110, 55, 0, 2455, 2454, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 141, 1, 0, 0, 0, 2457, 2458, 5, 7, 0, 0, 2458, 2459, 5, 647, 0, 0, 2459, 2460, 3, 584, 292, 0, 2460, 2461, 7, 33, 0, 0, 2461, 2462, 5, 389, 0, 0, 2462, 2466, 5, 1148, 0, 0, 2463, 2464, 5, 453, 0, 0, 2464, 2465, 5, 1124, 0, 0, 2465, 2467, 3, 592, 296, 0, 2466, 2463, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2469, 1, 0, 0, 0, 2468, 2470, 5, 674, 0, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2473, 5, 409, 0, 0, 2472, 2474, 5, 1124, 0, 0, 2473, 2472, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 3, 572, 286, 0, 2476, 143, 1, 0, 0, 0, 2477, 2481, 5, 7, 0, 0, 2478, 2479, 5, 336, 0, 0, 2479, 2480, 5, 1124, 0, 0, 2480, 2482, 7, 10, 0, 0, 2481, 2478, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2485, 3, 62, 31, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2489, 1, 0, 0, 0, 2486, 2487, 5, 160, 0, 0, 2487, 2488, 5, 606, 0, 0, 2488, 2490, 7, 11, 0, 0, 2489, 2486, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 5, 671, 0, 0, 2492, 2497, 3, 548, 274, 0, 2493, 2494, 5, 1133, 0, 0, 2494, 2495, 3, 616, 308, 0, 2495, 2496, 5, 1134, 0, 0, 2496, 2498, 1, 0, 0, 0, 2497, 2493, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2500, 5, 12, 0, 0, 2500, 2507, 3, 198, 99, 0, 2501, 2503, 5, 192, 0, 0, 2502, 2504, 7, 12, 0, 0, 2503, 2502, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 2506, 5, 26, 0, 0, 2506, 2508, 5, 120, 0, 0, 2507, 2501, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 145, 1, 0, 0, 0, 2509, 2516, 3, 104, 52, 0, 2510, 2512, 5, 1135, 0, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 3, 104, 52, 0, 2514, 2511, 1, 0, 0, 0, 2515, 2518, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2861, 1, 0, 0, 0, 2518, 2516, 1, 0, 0, 0, 2519, 2521, 5, 5, 0, 0, 2520, 2522, 5, 28, 0, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2524, 3, 584, 292, 0, 2524, 2528, 3, 90, 45, 0, 2525, 2529, 5, 430, 0, 0, 2526, 2527, 5, 334, 0, 0, 2527, 2529, 3, 584, 292, 0, 2528, 2525, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2861, 1, 0, 0, 0, 2530, 2532, 5, 5, 0, 0, 2531, 2533, 5, 28, 0, 0, 2532, 2531, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2535, 5, 1133, 0, 0, 2535, 2536, 3, 584, 292, 0, 2536, 2543, 3, 90, 45, 0, 2537, 2538, 5, 1135, 0, 0, 2538, 2539, 3, 584, 292, 0, 2539, 2540, 3, 90, 45, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2537, 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, 1134, 0, 0, 2547, 2861, 1, 0, 0, 0, 2548, 2549, 5, 5, 0, 0, 2549, 2551, 7, 20, 0, 0, 2550, 2552, 3, 584, 292, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 74, 37, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2560, 3, 622, 311, 0, 2557, 2559, 3, 76, 38, 0, 2558, 2557, 1, 0, 0, 0, 2559, 2562, 1, 0, 0, 0, 2560, 2558, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2861, 1, 0, 0, 0, 2562, 2560, 1, 0, 0, 0, 2563, 2568, 5, 5, 0, 0, 2564, 2566, 5, 30, 0, 0, 2565, 2567, 3, 584, 292, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2569, 1, 0, 0, 0, 2568, 2564, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2571, 5, 130, 0, 0, 2571, 2573, 5, 91, 0, 0, 2572, 2574, 3, 584, 292, 0, 2573, 2572, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2577, 3, 74, 37, 0, 2576, 2575, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2582, 3, 622, 311, 0, 2579, 2581, 3, 76, 38, 0, 2580, 2579, 1, 0, 0, 0, 2581, 2584, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2861, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 2590, 5, 5, 0, 0, 2586, 2588, 5, 30, 0, 0, 2587, 2589, 3, 584, 292, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2586, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2594, 5, 181, 0, 0, 2593, 2595, 7, 20, 0, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 584, 292, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2601, 3, 74, 37, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2606, 3, 622, 311, 0, 2603, 2605, 3, 76, 38, 0, 2604, 2603, 1, 0, 0, 0, 2605, 2608, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2861, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2610, 5, 5, 0, 0, 2610, 2612, 7, 22, 0, 0, 2611, 2613, 7, 20, 0, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2615, 1, 0, 0, 0, 2614, 2616, 3, 584, 292, 0, 2615, 2614, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2621, 3, 622, 311, 0, 2618, 2620, 3, 76, 38, 0, 2619, 2618, 1, 0, 0, 0, 2620, 2623, 1, 0, 0, 0, 2621, 2619, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2861, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2624, 2629, 5, 5, 0, 0, 2625, 2627, 5, 30, 0, 0, 2626, 2628, 3, 584, 292, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2625, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 5, 67, 0, 0, 2632, 2634, 5, 91, 0, 0, 2633, 2635, 3, 584, 292, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2637, 3, 622, 311, 0, 2637, 2638, 3, 96, 48, 0, 2638, 2861, 1, 0, 0, 0, 2639, 2644, 5, 5, 0, 0, 2640, 2642, 5, 30, 0, 0, 2641, 2643, 3, 584, 292, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2640, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2653, 5, 26, 0, 0, 2647, 2654, 3, 584, 292, 0, 2648, 2654, 3, 594, 297, 0, 2649, 2650, 5, 1133, 0, 0, 2650, 2651, 3, 688, 344, 0, 2651, 2652, 5, 1134, 0, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2647, 1, 0, 0, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2649, 1, 0, 0, 0, 2654, 2656, 1, 0, 0, 0, 2655, 2657, 5, 114, 0, 0, 2656, 2655, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2660, 5, 57, 0, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2861, 1, 0, 0, 0, 2661, 2666, 5, 7, 0, 0, 2662, 2664, 5, 30, 0, 0, 2663, 2665, 3, 584, 292, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2662, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2675, 5, 26, 0, 0, 2669, 2676, 3, 584, 292, 0, 2670, 2676, 3, 594, 297, 0, 2671, 2672, 5, 1133, 0, 0, 2672, 2673, 3, 688, 344, 0, 2673, 2674, 5, 1134, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2669, 1, 0, 0, 0, 2675, 2670, 1, 0, 0, 0, 2675, 2671, 1, 0, 0, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2679, 5, 114, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2682, 5, 57, 0, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2861, 1, 0, 0, 0, 2683, 2688, 5, 5, 0, 0, 2684, 2686, 5, 30, 0, 0, 2685, 2687, 3, 584, 292, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2689, 1, 0, 0, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 26, 0, 0, 2691, 2692, 5, 1133, 0, 0, 2692, 2693, 3, 688, 344, 0, 2693, 2694, 5, 1134, 0, 0, 2694, 2861, 1, 0, 0, 0, 2695, 2697, 5, 336, 0, 0, 2696, 2698, 5, 1124, 0, 0, 2697, 2696, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2861, 7, 34, 0, 0, 2700, 2702, 5, 7, 0, 0, 2701, 2703, 5, 28, 0, 0, 2702, 2701, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2710, 3, 584, 292, 0, 2705, 2706, 5, 153, 0, 0, 2706, 2707, 5, 42, 0, 0, 2707, 2711, 3, 634, 317, 0, 2708, 2709, 5, 51, 0, 0, 2709, 2711, 5, 42, 0, 0, 2710, 2705, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2861, 1, 0, 0, 0, 2712, 2714, 5, 24, 0, 0, 2713, 2715, 5, 28, 0, 0, 2714, 2713, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 3, 584, 292, 0, 2717, 2718, 3, 584, 292, 0, 2718, 2722, 3, 90, 45, 0, 2719, 2723, 5, 430, 0, 0, 2720, 2721, 5, 334, 0, 0, 2721, 2723, 3, 584, 292, 0, 2722, 2719, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2861, 1, 0, 0, 0, 2724, 2725, 5, 139, 0, 0, 2725, 2726, 5, 28, 0, 0, 2726, 2727, 3, 584, 292, 0, 2727, 2728, 5, 175, 0, 0, 2728, 2729, 3, 584, 292, 0, 2729, 2861, 1, 0, 0, 0, 2730, 2732, 5, 103, 0, 0, 2731, 2733, 5, 1124, 0, 0, 2732, 2731, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2861, 7, 4, 0, 0, 2735, 2737, 5, 512, 0, 0, 2736, 2738, 5, 28, 0, 0, 2737, 2736, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2740, 3, 584, 292, 0, 2740, 2744, 3, 90, 45, 0, 2741, 2745, 5, 430, 0, 0, 2742, 2743, 5, 334, 0, 0, 2743, 2745, 3, 584, 292, 0, 2744, 2741, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2861, 1, 0, 0, 0, 2746, 2748, 5, 51, 0, 0, 2747, 2749, 5, 28, 0, 0, 2748, 2747, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 3, 584, 292, 0, 2751, 2753, 5, 144, 0, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2861, 1, 0, 0, 0, 2754, 2755, 5, 51, 0, 0, 2755, 2756, 7, 35, 0, 0, 2756, 2861, 3, 584, 292, 0, 2757, 2758, 5, 51, 0, 0, 2758, 2759, 5, 130, 0, 0, 2759, 2861, 5, 91, 0, 0, 2760, 2761, 5, 51, 0, 0, 2761, 2762, 7, 20, 0, 0, 2762, 2861, 3, 584, 292, 0, 2763, 2764, 5, 139, 0, 0, 2764, 2765, 7, 20, 0, 0, 2765, 2766, 3, 584, 292, 0, 2766, 2767, 5, 175, 0, 0, 2767, 2768, 3, 584, 292, 0, 2768, 2861, 1, 0, 0, 0, 2769, 2771, 5, 7, 0, 0, 2770, 2772, 5, 28, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2787, 3, 584, 292, 0, 2774, 2775, 5, 153, 0, 0, 2775, 2781, 5, 42, 0, 0, 2776, 2782, 3, 594, 297, 0, 2777, 2778, 5, 1133, 0, 0, 2778, 2779, 3, 688, 344, 0, 2779, 2780, 5, 1134, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2776, 1, 0, 0, 0, 2781, 2777, 1, 0, 0, 0, 2782, 2788, 1, 0, 0, 0, 2783, 2784, 5, 153, 0, 0, 2784, 2788, 7, 15, 0, 0, 2785, 2786, 5, 51, 0, 0, 2786, 2788, 5, 42, 0, 0, 2787, 2774, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2788, 2861, 1, 0, 0, 0, 2789, 2790, 5, 7, 0, 0, 2790, 2791, 5, 81, 0, 0, 2791, 2792, 3, 584, 292, 0, 2792, 2793, 7, 15, 0, 0, 2793, 2861, 1, 0, 0, 0, 2794, 2795, 5, 51, 0, 0, 2795, 2796, 5, 67, 0, 0, 2796, 2797, 5, 91, 0, 0, 2797, 2861, 3, 584, 292, 0, 2798, 2799, 5, 396, 0, 0, 2799, 2861, 5, 92, 0, 0, 2800, 2801, 5, 403, 0, 0, 2801, 2861, 5, 92, 0, 0, 2802, 2804, 5, 139, 0, 0, 2803, 2805, 7, 36, 0, 0, 2804, 2803, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2809, 3, 584, 292, 0, 2807, 2809, 3, 548, 274, 0, 2808, 2806, 1, 0, 0, 0, 2808, 2807, 1, 0, 0, 0, 2809, 2861, 1, 0, 0, 0, 2810, 2811, 5, 124, 0, 0, 2811, 2812, 5, 19, 0, 0, 2812, 2861, 3, 616, 308, 0, 2813, 2814, 5, 32, 0, 0, 2814, 2818, 5, 175, 0, 0, 2815, 2819, 5, 841, 0, 0, 2816, 2817, 5, 25, 0, 0, 2817, 2819, 5, 153, 0, 0, 2818, 2815, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2823, 3, 568, 284, 0, 2821, 2822, 5, 27, 0, 0, 2822, 2824, 3, 570, 285, 0, 2823, 2821, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2861, 1, 0, 0, 0, 2825, 2827, 5, 42, 0, 0, 2826, 2825, 1, 0, 0, 0, 2826, 2827, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2829, 5, 25, 0, 0, 2829, 2830, 5, 153, 0, 0, 2830, 2831, 5, 1124, 0, 0, 2831, 2835, 3, 568, 284, 0, 2832, 2833, 5, 27, 0, 0, 2833, 2834, 5, 1124, 0, 0, 2834, 2836, 3, 570, 285, 0, 2835, 2832, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2861, 1, 0, 0, 0, 2837, 2838, 5, 397, 0, 0, 2838, 2861, 5, 647, 0, 0, 2839, 2840, 5, 450, 0, 0, 2840, 2861, 5, 647, 0, 0, 2841, 2861, 5, 66, 0, 0, 2842, 2843, 7, 37, 0, 0, 2843, 2861, 5, 668, 0, 0, 2844, 2846, 5, 5, 0, 0, 2845, 2847, 5, 28, 0, 0, 2846, 2845, 1, 0, 0, 0, 2846, 2847, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2849, 5, 1133, 0, 0, 2849, 2854, 3, 88, 44, 0, 2850, 2851, 5, 1135, 0, 0, 2851, 2853, 3, 88, 44, 0, 2852, 2850, 1, 0, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2857, 2858, 5, 1134, 0, 0, 2858, 2861, 1, 0, 0, 0, 2859, 2861, 3, 148, 74, 0, 2860, 2509, 1, 0, 0, 0, 2860, 2519, 1, 0, 0, 0, 2860, 2530, 1, 0, 0, 0, 2860, 2548, 1, 0, 0, 0, 2860, 2563, 1, 0, 0, 0, 2860, 2585, 1, 0, 0, 0, 2860, 2609, 1, 0, 0, 0, 2860, 2624, 1, 0, 0, 0, 2860, 2639, 1, 0, 0, 0, 2860, 2661, 1, 0, 0, 0, 2860, 2683, 1, 0, 0, 0, 2860, 2695, 1, 0, 0, 0, 2860, 2700, 1, 0, 0, 0, 2860, 2712, 1, 0, 0, 0, 2860, 2724, 1, 0, 0, 0, 2860, 2730, 1, 0, 0, 0, 2860, 2735, 1, 0, 0, 0, 2860, 2746, 1, 0, 0, 0, 2860, 2754, 1, 0, 0, 0, 2860, 2757, 1, 0, 0, 0, 2860, 2760, 1, 0, 0, 0, 2860, 2763, 1, 0, 0, 0, 2860, 2769, 1, 0, 0, 0, 2860, 2789, 1, 0, 0, 0, 2860, 2794, 1, 0, 0, 0, 2860, 2798, 1, 0, 0, 0, 2860, 2800, 1, 0, 0, 0, 2860, 2802, 1, 0, 0, 0, 2860, 2810, 1, 0, 0, 0, 2860, 2813, 1, 0, 0, 0, 2860, 2826, 1, 0, 0, 0, 2860, 2837, 1, 0, 0, 0, 2860, 2839, 1, 0, 0, 0, 2860, 2841, 1, 0, 0, 0, 2860, 2842, 1, 0, 0, 0, 2860, 2844, 1, 0, 0, 0, 2860, 2859, 1, 0, 0, 0, 2861, 147, 1, 0, 0, 0, 2862, 2863, 5, 5, 0, 0, 2863, 2864, 5, 129, 0, 0, 2864, 2865, 5, 1133, 0, 0, 2865, 2870, 3, 116, 58, 0, 2866, 2867, 5, 1135, 0, 0, 2867, 2869, 3, 116, 58, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2872, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2873, 1, 0, 0, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2874, 5, 1134, 0, 0, 2874, 2961, 1, 0, 0, 0, 2875, 2876, 5, 51, 0, 0, 2876, 2877, 5, 129, 0, 0, 2877, 2961, 3, 616, 308, 0, 2878, 2879, 5, 397, 0, 0, 2879, 2882, 5, 129, 0, 0, 2880, 2883, 3, 616, 308, 0, 2881, 2883, 5, 6, 0, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2881, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2961, 5, 647, 0, 0, 2885, 2886, 5, 450, 0, 0, 2886, 2889, 5, 129, 0, 0, 2887, 2890, 3, 616, 308, 0, 2888, 2890, 5, 6, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2888, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2961, 5, 647, 0, 0, 2892, 2893, 5, 656, 0, 0, 2893, 2896, 5, 129, 0, 0, 2894, 2897, 3, 616, 308, 0, 2895, 2897, 5, 6, 0, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2961, 1, 0, 0, 0, 2898, 2899, 5, 363, 0, 0, 2899, 2900, 5, 129, 0, 0, 2900, 2961, 3, 590, 295, 0, 2901, 2902, 5, 579, 0, 0, 2902, 2903, 5, 129, 0, 0, 2903, 2904, 3, 616, 308, 0, 2904, 2905, 5, 87, 0, 0, 2905, 2906, 5, 1133, 0, 0, 2906, 2911, 3, 116, 58, 0, 2907, 2908, 5, 1135, 0, 0, 2908, 2910, 3, 116, 58, 0, 2909, 2907, 1, 0, 0, 0, 2910, 2913, 1, 0, 0, 0, 2911, 2909, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2914, 1, 0, 0, 0, 2913, 2911, 1, 0, 0, 0, 2914, 2915, 5, 1134, 0, 0, 2915, 2961, 1, 0, 0, 0, 2916, 2917, 5, 418, 0, 0, 2917, 2918, 5, 129, 0, 0, 2918, 2919, 3, 584, 292, 0, 2919, 2920, 5, 192, 0, 0, 2920, 2921, 5, 172, 0, 0, 2921, 2924, 3, 550, 275, 0, 2922, 2923, 7, 37, 0, 0, 2923, 2925, 5, 668, 0, 0, 2924, 2922, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2961, 1, 0, 0, 0, 2926, 2927, 5, 9, 0, 0, 2927, 2930, 5, 129, 0, 0, 2928, 2931, 3, 616, 308, 0, 2929, 2931, 5, 6, 0, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2929, 1, 0, 0, 0, 2931, 2961, 1, 0, 0, 0, 2932, 2933, 5, 26, 0, 0, 2933, 2936, 5, 129, 0, 0, 2934, 2937, 3, 616, 308, 0, 2935, 2937, 5, 6, 0, 0, 2936, 2934, 1, 0, 0, 0, 2936, 2935, 1, 0, 0, 0, 2937, 2961, 1, 0, 0, 0, 2938, 2939, 5, 119, 0, 0, 2939, 2942, 5, 129, 0, 0, 2940, 2943, 3, 616, 308, 0, 2941, 2943, 5, 6, 0, 0, 2942, 2940, 1, 0, 0, 0, 2942, 2941, 1, 0, 0, 0, 2943, 2961, 1, 0, 0, 0, 2944, 2945, 5, 569, 0, 0, 2945, 2948, 5, 129, 0, 0, 2946, 2949, 3, 616, 308, 0, 2947, 2949, 5, 6, 0, 0, 2948, 2946, 1, 0, 0, 0, 2948, 2947, 1, 0, 0, 0, 2949, 2961, 1, 0, 0, 0, 2950, 2951, 5, 580, 0, 0, 2951, 2954, 5, 129, 0, 0, 2952, 2955, 3, 616, 308, 0, 2953, 2955, 5, 6, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 2961, 1, 0, 0, 0, 2956, 2957, 5, 578, 0, 0, 2957, 2961, 5, 549, 0, 0, 2958, 2959, 5, 664, 0, 0, 2959, 2961, 5, 549, 0, 0, 2960, 2862, 1, 0, 0, 0, 2960, 2875, 1, 0, 0, 0, 2960, 2878, 1, 0, 0, 0, 2960, 2885, 1, 0, 0, 0, 2960, 2892, 1, 0, 0, 0, 2960, 2898, 1, 0, 0, 0, 2960, 2901, 1, 0, 0, 0, 2960, 2916, 1, 0, 0, 0, 2960, 2926, 1, 0, 0, 0, 2960, 2932, 1, 0, 0, 0, 2960, 2938, 1, 0, 0, 0, 2960, 2944, 1, 0, 0, 0, 2960, 2950, 1, 0, 0, 0, 2960, 2956, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 149, 1, 0, 0, 0, 2962, 2963, 5, 51, 0, 0, 2963, 2965, 7, 0, 0, 0, 2964, 2966, 3, 640, 320, 0, 2965, 2964, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2968, 3, 584, 292, 0, 2968, 151, 1, 0, 0, 0, 2969, 2970, 5, 51, 0, 0, 2970, 2972, 5, 415, 0, 0, 2971, 2973, 3, 640, 320, 0, 2972, 2971, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2975, 3, 548, 274, 0, 2975, 153, 1, 0, 0, 0, 2976, 2977, 5, 51, 0, 0, 2977, 2979, 5, 81, 0, 0, 2978, 2980, 7, 1, 0, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 3, 584, 292, 0, 2982, 2983, 5, 118, 0, 0, 2983, 2996, 3, 550, 275, 0, 2984, 2986, 5, 336, 0, 0, 2985, 2987, 5, 1124, 0, 0, 2986, 2985, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2995, 7, 3, 0, 0, 2989, 2991, 5, 103, 0, 0, 2990, 2992, 5, 1124, 0, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2995, 7, 4, 0, 0, 2994, 2984, 1, 0, 0, 0, 2994, 2989, 1, 0, 0, 0, 2995, 2998, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 155, 1, 0, 0, 0, 2998, 2996, 1, 0, 0, 0, 2999, 3000, 5, 51, 0, 0, 3000, 3001, 5, 475, 0, 0, 3001, 3002, 5, 73, 0, 0, 3002, 3003, 3, 584, 292, 0, 3003, 3004, 5, 409, 0, 0, 3004, 3005, 5, 1124, 0, 0, 3005, 3006, 3, 572, 286, 0, 3006, 157, 1, 0, 0, 0, 3007, 3008, 5, 51, 0, 0, 3008, 3010, 5, 131, 0, 0, 3009, 3011, 3, 640, 320, 0, 3010, 3009, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 3, 548, 274, 0, 3013, 159, 1, 0, 0, 0, 3014, 3015, 5, 51, 0, 0, 3015, 3017, 5, 437, 0, 0, 3016, 3018, 3, 640, 320, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 3, 548, 274, 0, 3020, 161, 1, 0, 0, 0, 3021, 3022, 5, 51, 0, 0, 3022, 3024, 5, 608, 0, 0, 3023, 3025, 3, 640, 320, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3027, 3, 584, 292, 0, 3027, 163, 1, 0, 0, 0, 3028, 3030, 5, 51, 0, 0, 3029, 3031, 5, 649, 0, 0, 3030, 3029, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 5, 172, 0, 0, 3033, 3035, 3, 640, 320, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 3, 620, 310, 0, 3037, 3039, 7, 38, 0, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 165, 1, 0, 0, 0, 3040, 3041, 5, 51, 0, 0, 3041, 3042, 5, 647, 0, 0, 3042, 3048, 3, 584, 292, 0, 3043, 3045, 5, 409, 0, 0, 3044, 3046, 5, 1124, 0, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3049, 3, 572, 286, 0, 3048, 3043, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 167, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3053, 5, 177, 0, 0, 3052, 3054, 3, 640, 320, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 3, 548, 274, 0, 3056, 169, 1, 0, 0, 0, 3057, 3058, 5, 51, 0, 0, 3058, 3060, 5, 671, 0, 0, 3059, 3061, 3, 640, 320, 0, 3060, 3059, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3067, 3, 548, 274, 0, 3063, 3064, 5, 1135, 0, 0, 3064, 3066, 3, 548, 274, 0, 3065, 3063, 1, 0, 0, 0, 3066, 3069, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3071, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3070, 3072, 7, 38, 0, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 171, 1, 0, 0, 0, 3073, 3074, 5, 51, 0, 0, 3074, 3076, 5, 596, 0, 0, 3075, 3077, 3, 640, 320, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3083, 3, 554, 277, 0, 3079, 3080, 5, 1135, 0, 0, 3080, 3082, 3, 554, 277, 0, 3081, 3079, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 173, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3087, 5, 153, 0, 0, 3087, 3088, 5, 42, 0, 0, 3088, 3099, 5, 596, 0, 0, 3089, 3100, 5, 529, 0, 0, 3090, 3100, 5, 6, 0, 0, 3091, 3096, 3, 554, 277, 0, 3092, 3093, 5, 1135, 0, 0, 3093, 3095, 3, 554, 277, 0, 3094, 3092, 1, 0, 0, 0, 3095, 3098, 1, 0, 0, 0, 3096, 3094, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3100, 1, 0, 0, 0, 3098, 3096, 1, 0, 0, 0, 3099, 3089, 1, 0, 0, 0, 3099, 3090, 1, 0, 0, 0, 3099, 3091, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3104, 5, 175, 0, 0, 3102, 3105, 3, 564, 282, 0, 3103, 3105, 3, 584, 292, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3103, 1, 0, 0, 0, 3105, 3113, 1, 0, 0, 0, 3106, 3109, 5, 1135, 0, 0, 3107, 3110, 3, 564, 282, 0, 3108, 3110, 3, 584, 292, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3108, 1, 0, 0, 0, 3110, 3112, 1, 0, 0, 0, 3111, 3106, 1, 0, 0, 0, 3112, 3115, 1, 0, 0, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3120, 1, 0, 0, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3117, 5, 153, 0, 0, 3117, 3118, 5, 596, 0, 0, 3118, 3120, 3, 432, 216, 0, 3119, 3086, 1, 0, 0, 0, 3119, 3116, 1, 0, 0, 0, 3120, 175, 1, 0, 0, 0, 3121, 3122, 5, 139, 0, 0, 3122, 3123, 5, 172, 0, 0, 3123, 3128, 3, 178, 89, 0, 3124, 3125, 5, 1135, 0, 0, 3125, 3127, 3, 178, 89, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 177, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3132, 3, 550, 275, 0, 3132, 3133, 5, 175, 0, 0, 3133, 3134, 3, 550, 275, 0, 3134, 179, 1, 0, 0, 0, 3135, 3137, 5, 656, 0, 0, 3136, 3138, 5, 172, 0, 0, 3137, 3136, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3140, 3, 550, 275, 0, 3140, 181, 1, 0, 0, 0, 3141, 3142, 5, 20, 0, 0, 3142, 3149, 3, 548, 274, 0, 3143, 3146, 5, 1133, 0, 0, 3144, 3147, 3, 628, 314, 0, 3145, 3147, 3, 624, 312, 0, 3146, 3144, 1, 0, 0, 0, 3146, 3145, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 5, 1134, 0, 0, 3149, 3143, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 183, 1, 0, 0, 0, 3151, 3154, 3, 212, 106, 0, 3152, 3154, 3, 214, 107, 0, 3153, 3151, 1, 0, 0, 0, 3153, 3152, 1, 0, 0, 0, 3154, 185, 1, 0, 0, 0, 3155, 3156, 5, 399, 0, 0, 3156, 3157, 3, 624, 312, 0, 3157, 187, 1, 0, 0, 0, 3158, 3163, 3, 216, 108, 0, 3159, 3163, 3, 218, 109, 0, 3160, 3163, 3, 220, 110, 0, 3161, 3163, 3, 222, 111, 0, 3162, 3158, 1, 0, 0, 0, 3162, 3159, 1, 0, 0, 0, 3162, 3160, 1, 0, 0, 0, 3162, 3161, 1, 0, 0, 0, 3163, 189, 1, 0, 0, 0, 3164, 3166, 5, 85, 0, 0, 3165, 3167, 7, 39, 0, 0, 3166, 3165, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3169, 1, 0, 0, 0, 3168, 3170, 5, 78, 0, 0, 3169, 3168, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3172, 1, 0, 0, 0, 3171, 3173, 5, 87, 0, 0, 3172, 3171, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3181, 3, 550, 275, 0, 3175, 3176, 5, 129, 0, 0, 3176, 3178, 5, 1133, 0, 0, 3177, 3179, 3, 616, 308, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3182, 5, 1134, 0, 0, 3181, 3175, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3206, 1, 0, 0, 0, 3183, 3185, 5, 1133, 0, 0, 3184, 3186, 3, 618, 309, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3189, 5, 1134, 0, 0, 3188, 3183, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3195, 3, 204, 102, 0, 3191, 3193, 5, 12, 0, 0, 3192, 3191, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3196, 3, 584, 292, 0, 3195, 3192, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3207, 1, 0, 0, 0, 3197, 3198, 5, 153, 0, 0, 3198, 3203, 3, 206, 103, 0, 3199, 3200, 5, 1135, 0, 0, 3200, 3202, 3, 206, 103, 0, 3201, 3199, 1, 0, 0, 0, 3202, 3205, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3207, 1, 0, 0, 0, 3205, 3203, 1, 0, 0, 0, 3206, 3188, 1, 0, 0, 0, 3206, 3197, 1, 0, 0, 0, 3207, 3220, 1, 0, 0, 0, 3208, 3209, 5, 118, 0, 0, 3209, 3210, 5, 401, 0, 0, 3210, 3211, 5, 91, 0, 0, 3211, 3212, 5, 184, 0, 0, 3212, 3217, 3, 206, 103, 0, 3213, 3214, 5, 1135, 0, 0, 3214, 3216, 3, 206, 103, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3219, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3221, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3208, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 191, 1, 0, 0, 0, 3222, 3223, 5, 102, 0, 0, 3223, 3225, 5, 388, 0, 0, 3224, 3226, 7, 40, 0, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 5, 474, 0, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 5, 82, 0, 0, 3231, 3233, 5, 1148, 0, 0, 3232, 3234, 7, 6, 0, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3236, 5, 87, 0, 0, 3236, 3237, 5, 172, 0, 0, 3237, 3243, 3, 550, 275, 0, 3238, 3239, 5, 129, 0, 0, 3239, 3240, 5, 1133, 0, 0, 3240, 3241, 3, 616, 308, 0, 3241, 3242, 5, 1134, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3238, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3248, 1, 0, 0, 0, 3245, 3246, 5, 25, 0, 0, 3246, 3247, 5, 153, 0, 0, 3247, 3249, 3, 568, 284, 0, 3248, 3245, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3256, 1, 0, 0, 0, 3250, 3252, 7, 41, 0, 0, 3251, 3253, 3, 278, 139, 0, 3252, 3251, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3257, 1, 0, 0, 0, 3256, 3250, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3264, 1, 0, 0, 0, 3258, 3260, 5, 101, 0, 0, 3259, 3261, 3, 280, 140, 0, 3260, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3260, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3258, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3270, 1, 0, 0, 0, 3266, 3267, 5, 78, 0, 0, 3267, 3268, 3, 590, 295, 0, 3268, 3269, 7, 42, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3266, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3283, 1, 0, 0, 0, 3272, 3273, 5, 1133, 0, 0, 3273, 3278, 3, 208, 104, 0, 3274, 3275, 5, 1135, 0, 0, 3275, 3277, 3, 208, 104, 0, 3276, 3274, 1, 0, 0, 0, 3277, 3280, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 1, 0, 0, 0, 3280, 3278, 1, 0, 0, 0, 3281, 3282, 5, 1134, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3272, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3294, 1, 0, 0, 0, 3285, 3286, 5, 153, 0, 0, 3286, 3291, 3, 206, 103, 0, 3287, 3288, 5, 1135, 0, 0, 3288, 3290, 3, 206, 103, 0, 3289, 3287, 1, 0, 0, 0, 3290, 3293, 1, 0, 0, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3295, 1, 0, 0, 0, 3293, 3291, 1, 0, 0, 0, 3294, 3285, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 193, 1, 0, 0, 0, 3296, 3297, 5, 102, 0, 0, 3297, 3299, 5, 682, 0, 0, 3298, 3300, 7, 40, 0, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3302, 1, 0, 0, 0, 3301, 3303, 5, 474, 0, 0, 3302, 3301, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 1, 0, 0, 0, 3304, 3305, 5, 82, 0, 0, 3305, 3307, 5, 1148, 0, 0, 3306, 3308, 7, 6, 0, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 5, 87, 0, 0, 3310, 3311, 5, 172, 0, 0, 3311, 3315, 3, 550, 275, 0, 3312, 3313, 5, 25, 0, 0, 3313, 3314, 5, 153, 0, 0, 3314, 3316, 3, 568, 284, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 3323, 1, 0, 0, 0, 3317, 3318, 5, 601, 0, 0, 3318, 3319, 5, 448, 0, 0, 3319, 3320, 5, 19, 0, 0, 3320, 3321, 5, 1126, 0, 0, 3321, 3322, 5, 1148, 0, 0, 3322, 3324, 5, 1125, 0, 0, 3323, 3317, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3329, 1, 0, 0, 0, 3325, 3326, 5, 78, 0, 0, 3326, 3327, 3, 590, 295, 0, 3327, 3328, 7, 42, 0, 0, 3328, 3330, 1, 0, 0, 0, 3329, 3325, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3342, 1, 0, 0, 0, 3331, 3332, 5, 1133, 0, 0, 3332, 3337, 3, 208, 104, 0, 3333, 3334, 5, 1135, 0, 0, 3334, 3336, 3, 208, 104, 0, 3335, 3333, 1, 0, 0, 0, 3336, 3339, 1, 0, 0, 0, 3337, 3335, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3341, 5, 1134, 0, 0, 3341, 3343, 1, 0, 0, 0, 3342, 3331, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3353, 1, 0, 0, 0, 3344, 3345, 5, 153, 0, 0, 3345, 3350, 3, 206, 103, 0, 3346, 3347, 5, 1135, 0, 0, 3347, 3349, 3, 206, 103, 0, 3348, 3346, 1, 0, 0, 0, 3349, 3352, 1, 0, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3344, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 195, 1, 0, 0, 0, 3355, 3357, 5, 141, 0, 0, 3356, 3358, 7, 43, 0, 0, 3357, 3356, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3360, 1, 0, 0, 0, 3359, 3361, 5, 87, 0, 0, 3360, 3359, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3368, 3, 550, 275, 0, 3363, 3364, 5, 129, 0, 0, 3364, 3365, 5, 1133, 0, 0, 3365, 3366, 3, 616, 308, 0, 3366, 3367, 5, 1134, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3363, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3386, 1, 0, 0, 0, 3370, 3371, 5, 1133, 0, 0, 3371, 3372, 3, 616, 308, 0, 3372, 3373, 5, 1134, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3370, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3387, 3, 204, 102, 0, 3377, 3378, 5, 153, 0, 0, 3378, 3383, 3, 206, 103, 0, 3379, 3380, 5, 1135, 0, 0, 3380, 3382, 3, 206, 103, 0, 3381, 3379, 1, 0, 0, 0, 3382, 3385, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3387, 1, 0, 0, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3374, 1, 0, 0, 0, 3386, 3377, 1, 0, 0, 0, 3387, 197, 1, 0, 0, 0, 3388, 3390, 3, 250, 125, 0, 3389, 3391, 3, 210, 105, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3454, 1, 0, 0, 0, 3392, 3394, 3, 246, 123, 0, 3393, 3395, 3, 210, 105, 0, 3394, 3393, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3454, 1, 0, 0, 0, 3396, 3399, 3, 252, 126, 0, 3397, 3399, 3, 248, 124, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3397, 1, 0, 0, 0, 3399, 3401, 1, 0, 0, 0, 3400, 3402, 3, 256, 128, 0, 3401, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3413, 1, 0, 0, 0, 3405, 3407, 5, 180, 0, 0, 3406, 3408, 7, 44, 0, 0, 3407, 3406, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3412, 3, 250, 125, 0, 3410, 3412, 3, 246, 123, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3410, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3405, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3417, 3, 228, 114, 0, 3416, 3415, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3419, 1, 0, 0, 0, 3418, 3420, 3, 292, 146, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3423, 3, 210, 105, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3454, 1, 0, 0, 0, 3424, 3426, 3, 248, 124, 0, 3425, 3427, 3, 254, 127, 0, 3426, 3425, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3426, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3435, 1, 0, 0, 0, 3430, 3432, 5, 180, 0, 0, 3431, 3433, 7, 44, 0, 0, 3432, 3431, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3436, 3, 246, 123, 0, 3435, 3430, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3438, 1, 0, 0, 0, 3437, 3439, 3, 228, 114, 0, 3438, 3437, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3441, 1, 0, 0, 0, 3440, 3442, 3, 292, 146, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3445, 3, 210, 105, 0, 3444, 3443, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3454, 1, 0, 0, 0, 3446, 3449, 3, 252, 126, 0, 3447, 3448, 5, 1135, 0, 0, 3448, 3450, 3, 258, 129, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3388, 1, 0, 0, 0, 3453, 3392, 1, 0, 0, 0, 3453, 3398, 1, 0, 0, 0, 3453, 3424, 1, 0, 0, 0, 3453, 3446, 1, 0, 0, 0, 3454, 199, 1, 0, 0, 0, 3455, 3458, 3, 224, 112, 0, 3456, 3458, 3, 226, 113, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3456, 1, 0, 0, 0, 3458, 201, 1, 0, 0, 0, 3459, 3460, 5, 188, 0, 0, 3460, 3462, 5, 1133, 0, 0, 3461, 3463, 3, 626, 313, 0, 3462, 3461, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3473, 5, 1134, 0, 0, 3465, 3466, 5, 1135, 0, 0, 3466, 3468, 5, 1133, 0, 0, 3467, 3469, 3, 626, 313, 0, 3468, 3467, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3472, 5, 1134, 0, 0, 3471, 3465, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 203, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3495, 3, 198, 99, 0, 3477, 3478, 7, 45, 0, 0, 3478, 3480, 5, 1133, 0, 0, 3479, 3481, 3, 626, 313, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3491, 5, 1134, 0, 0, 3483, 3484, 5, 1135, 0, 0, 3484, 3486, 5, 1133, 0, 0, 3485, 3487, 3, 626, 313, 0, 3486, 3485, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 5, 1134, 0, 0, 3489, 3483, 1, 0, 0, 0, 3490, 3493, 1, 0, 0, 0, 3491, 3489, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3495, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3494, 3476, 1, 0, 0, 0, 3494, 3477, 1, 0, 0, 0, 3495, 205, 1, 0, 0, 0, 3496, 3497, 3, 556, 278, 0, 3497, 3500, 5, 1124, 0, 0, 3498, 3501, 3, 688, 344, 0, 3499, 3501, 5, 42, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3499, 1, 0, 0, 0, 3501, 207, 1, 0, 0, 0, 3502, 3505, 3, 584, 292, 0, 3503, 3505, 5, 1159, 0, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3503, 1, 0, 0, 0, 3505, 209, 1, 0, 0, 0, 3506, 3507, 5, 65, 0, 0, 3507, 3513, 5, 184, 0, 0, 3508, 3509, 5, 103, 0, 0, 3509, 3510, 5, 80, 0, 0, 3510, 3511, 5, 610, 0, 0, 3511, 3513, 5, 511, 0, 0, 3512, 3506, 1, 0, 0, 0, 3512, 3508, 1, 0, 0, 0, 3513, 211, 1, 0, 0, 0, 3514, 3516, 5, 44, 0, 0, 3515, 3517, 5, 106, 0, 0, 3516, 3515, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3519, 1, 0, 0, 0, 3518, 3520, 5, 568, 0, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3522, 1, 0, 0, 0, 3521, 3523, 5, 78, 0, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3525, 5, 68, 0, 0, 3525, 3530, 3, 550, 275, 0, 3526, 3528, 5, 12, 0, 0, 3527, 3526, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3531, 3, 584, 292, 0, 3530, 3527, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3537, 1, 0, 0, 0, 3532, 3533, 5, 129, 0, 0, 3533, 3534, 5, 1133, 0, 0, 3534, 3535, 3, 616, 308, 0, 3535, 3536, 5, 1134, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3532, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3541, 1, 0, 0, 0, 3539, 3540, 5, 190, 0, 0, 3540, 3542, 3, 688, 344, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3545, 3, 228, 114, 0, 3544, 3543, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3548, 1, 0, 0, 0, 3546, 3547, 5, 99, 0, 0, 3547, 3549, 3, 294, 147, 0, 3548, 3546, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 213, 1, 0, 0, 0, 3550, 3552, 5, 44, 0, 0, 3551, 3553, 5, 106, 0, 0, 3552, 3551, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3556, 5, 568, 0, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3558, 1, 0, 0, 0, 3557, 3559, 5, 78, 0, 0, 3558, 3557, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3599, 1, 0, 0, 0, 3560, 3563, 3, 550, 275, 0, 3561, 3562, 5, 1132, 0, 0, 3562, 3564, 5, 1117, 0, 0, 3563, 3561, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3573, 1, 0, 0, 0, 3565, 3566, 5, 1135, 0, 0, 3566, 3569, 3, 550, 275, 0, 3567, 3568, 5, 1132, 0, 0, 3568, 3570, 5, 1117, 0, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3572, 1, 0, 0, 0, 3571, 3565, 1, 0, 0, 0, 3572, 3575, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3573, 1, 0, 0, 0, 3576, 3577, 5, 68, 0, 0, 3577, 3578, 3, 232, 116, 0, 3578, 3600, 1, 0, 0, 0, 3579, 3580, 5, 68, 0, 0, 3580, 3583, 3, 550, 275, 0, 3581, 3582, 5, 1132, 0, 0, 3582, 3584, 5, 1117, 0, 0, 3583, 3581, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3593, 1, 0, 0, 0, 3585, 3586, 5, 1135, 0, 0, 3586, 3589, 3, 550, 275, 0, 3587, 3588, 5, 1132, 0, 0, 3588, 3590, 5, 1117, 0, 0, 3589, 3587, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3592, 1, 0, 0, 0, 3591, 3585, 1, 0, 0, 0, 3592, 3595, 1, 0, 0, 0, 3593, 3591, 1, 0, 0, 0, 3593, 3594, 1, 0, 0, 0, 3594, 3596, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3596, 3597, 5, 187, 0, 0, 3597, 3598, 3, 232, 116, 0, 3598, 3600, 1, 0, 0, 0, 3599, 3560, 1, 0, 0, 0, 3599, 3579, 1, 0, 0, 0, 3600, 3603, 1, 0, 0, 0, 3601, 3602, 5, 190, 0, 0, 3602, 3604, 3, 688, 344, 0, 3603, 3601, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 215, 1, 0, 0, 0, 3605, 3606, 5, 442, 0, 0, 3606, 3607, 3, 550, 275, 0, 3607, 3612, 5, 539, 0, 0, 3608, 3610, 5, 12, 0, 0, 3609, 3608, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3613, 3, 584, 292, 0, 3612, 3609, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 217, 1, 0, 0, 0, 3614, 3615, 5, 442, 0, 0, 3615, 3616, 3, 550, 275, 0, 3616, 3617, 5, 134, 0, 0, 3617, 3624, 3, 584, 292, 0, 3618, 3619, 3, 696, 348, 0, 3619, 3620, 5, 1133, 0, 0, 3620, 3621, 3, 628, 314, 0, 3621, 3622, 5, 1134, 0, 0, 3622, 3625, 1, 0, 0, 0, 3623, 3625, 7, 46, 0, 0, 3624, 3618, 1, 0, 0, 0, 3624, 3623, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3627, 5, 190, 0, 0, 3627, 3629, 3, 688, 344, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3631, 5, 99, 0, 0, 3631, 3633, 3, 294, 147, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 219, 1, 0, 0, 0, 3634, 3635, 5, 442, 0, 0, 3635, 3636, 3, 550, 275, 0, 3636, 3637, 5, 134, 0, 0, 3637, 3640, 7, 47, 0, 0, 3638, 3639, 5, 190, 0, 0, 3639, 3641, 3, 688, 344, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3644, 1, 0, 0, 0, 3642, 3643, 5, 99, 0, 0, 3643, 3645, 3, 294, 147, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 221, 1, 0, 0, 0, 3646, 3647, 5, 442, 0, 0, 3647, 3648, 3, 550, 275, 0, 3648, 3649, 5, 361, 0, 0, 3649, 223, 1, 0, 0, 0, 3650, 3652, 5, 184, 0, 0, 3651, 3653, 5, 106, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 1, 0, 0, 0, 3654, 3656, 5, 78, 0, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3662, 3, 550, 275, 0, 3658, 3660, 5, 12, 0, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 3663, 3, 584, 292, 0, 3662, 3659, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 5, 153, 0, 0, 3665, 3670, 3, 206, 103, 0, 3666, 3667, 5, 1135, 0, 0, 3667, 3669, 3, 206, 103, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3672, 1, 0, 0, 0, 3670, 3668, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3675, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3674, 5, 190, 0, 0, 3674, 3676, 3, 688, 344, 0, 3675, 3673, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3679, 3, 228, 114, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3681, 1, 0, 0, 0, 3680, 3682, 3, 292, 146, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 225, 1, 0, 0, 0, 3683, 3685, 5, 184, 0, 0, 3684, 3686, 5, 106, 0, 0, 3685, 3684, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 1, 0, 0, 0, 3687, 3689, 5, 78, 0, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 3691, 3, 552, 276, 0, 3691, 3692, 5, 153, 0, 0, 3692, 3697, 3, 206, 103, 0, 3693, 3694, 5, 1135, 0, 0, 3694, 3696, 3, 206, 103, 0, 3695, 3693, 1, 0, 0, 0, 3696, 3699, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3702, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3700, 3701, 5, 190, 0, 0, 3701, 3703, 3, 688, 344, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 227, 1, 0, 0, 0, 3704, 3705, 5, 124, 0, 0, 3705, 3706, 5, 19, 0, 0, 3706, 3711, 3, 230, 115, 0, 3707, 3708, 5, 1135, 0, 0, 3708, 3710, 3, 230, 115, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3713, 1, 0, 0, 0, 3711, 3709, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 229, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3714, 3716, 3, 688, 344, 0, 3715, 3717, 7, 48, 0, 0, 3716, 3715, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 231, 1, 0, 0, 0, 3718, 3723, 3, 234, 117, 0, 3719, 3720, 5, 1135, 0, 0, 3720, 3722, 3, 234, 117, 0, 3721, 3719, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 233, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3726, 3730, 3, 236, 118, 0, 3727, 3729, 3, 242, 121, 0, 3728, 3727, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3745, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3733, 3734, 5, 1133, 0, 0, 3734, 3738, 3, 236, 118, 0, 3735, 3737, 3, 242, 121, 0, 3736, 3735, 1, 0, 0, 0, 3737, 3740, 1, 0, 0, 0, 3738, 3736, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3741, 1, 0, 0, 0, 3740, 3738, 1, 0, 0, 0, 3741, 3742, 5, 1134, 0, 0, 3742, 3745, 1, 0, 0, 0, 3743, 3745, 3, 260, 130, 0, 3744, 3726, 1, 0, 0, 0, 3744, 3733, 1, 0, 0, 0, 3744, 3743, 1, 0, 0, 0, 3745, 235, 1, 0, 0, 0, 3746, 3752, 3, 550, 275, 0, 3747, 3748, 5, 129, 0, 0, 3748, 3749, 5, 1133, 0, 0, 3749, 3750, 3, 616, 308, 0, 3750, 3751, 5, 1134, 0, 0, 3751, 3753, 1, 0, 0, 0, 3752, 3747, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3758, 1, 0, 0, 0, 3754, 3756, 5, 12, 0, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3759, 3, 584, 292, 0, 3758, 3755, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3768, 1, 0, 0, 0, 3760, 3765, 3, 238, 119, 0, 3761, 3762, 5, 1135, 0, 0, 3762, 3764, 3, 238, 119, 0, 3763, 3761, 1, 0, 0, 0, 3764, 3767, 1, 0, 0, 0, 3765, 3763, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3769, 1, 0, 0, 0, 3767, 3765, 1, 0, 0, 0, 3768, 3760, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3784, 1, 0, 0, 0, 3770, 3771, 5, 1133, 0, 0, 3771, 3772, 3, 198, 99, 0, 3772, 3773, 5, 1134, 0, 0, 3773, 3775, 1, 0, 0, 0, 3774, 3776, 5, 12, 0, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 3, 584, 292, 0, 3778, 3784, 1, 0, 0, 0, 3779, 3780, 5, 1133, 0, 0, 3780, 3781, 3, 232, 116, 0, 3781, 3782, 5, 1134, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3746, 1, 0, 0, 0, 3783, 3770, 1, 0, 0, 0, 3783, 3779, 1, 0, 0, 0, 3784, 237, 1, 0, 0, 0, 3785, 3786, 7, 49, 0, 0, 3786, 3789, 7, 20, 0, 0, 3787, 3788, 5, 65, 0, 0, 3788, 3790, 3, 240, 120, 0, 3789, 3787, 1, 0, 0, 0, 3789, 3790, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 5, 1133, 0, 0, 3792, 3793, 3, 616, 308, 0, 3793, 3794, 5, 1134, 0, 0, 3794, 239, 1, 0, 0, 0, 3795, 3801, 5, 90, 0, 0, 3796, 3797, 5, 124, 0, 0, 3797, 3801, 5, 19, 0, 0, 3798, 3799, 5, 73, 0, 0, 3799, 3801, 5, 19, 0, 0, 3800, 3795, 1, 0, 0, 0, 3800, 3796, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3801, 241, 1, 0, 0, 0, 3802, 3804, 7, 50, 0, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3807, 5, 90, 0, 0, 3806, 3808, 5, 94, 0, 0, 3807, 3806, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3813, 3, 236, 118, 0, 3810, 3812, 3, 244, 122, 0, 3811, 3810, 1, 0, 0, 0, 3812, 3815, 1, 0, 0, 0, 3813, 3811, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3850, 1, 0, 0, 0, 3815, 3813, 1, 0, 0, 0, 3816, 3817, 5, 171, 0, 0, 3817, 3822, 3, 236, 118, 0, 3818, 3819, 5, 118, 0, 0, 3819, 3821, 3, 688, 344, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3824, 1, 0, 0, 0, 3822, 3820, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3850, 1, 0, 0, 0, 3824, 3822, 1, 0, 0, 0, 3825, 3827, 7, 51, 0, 0, 3826, 3828, 5, 126, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 5, 90, 0, 0, 3830, 3832, 5, 94, 0, 0, 3831, 3830, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3837, 3, 236, 118, 0, 3834, 3836, 3, 244, 122, 0, 3835, 3834, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3850, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3845, 5, 113, 0, 0, 3841, 3843, 7, 51, 0, 0, 3842, 3844, 5, 126, 0, 0, 3843, 3842, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3841, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3848, 5, 90, 0, 0, 3848, 3850, 3, 236, 118, 0, 3849, 3803, 1, 0, 0, 0, 3849, 3816, 1, 0, 0, 0, 3849, 3825, 1, 0, 0, 0, 3849, 3840, 1, 0, 0, 0, 3850, 243, 1, 0, 0, 0, 3851, 3852, 5, 118, 0, 0, 3852, 3859, 3, 688, 344, 0, 3853, 3854, 5, 187, 0, 0, 3854, 3855, 5, 1133, 0, 0, 3855, 3856, 3, 616, 308, 0, 3856, 3857, 5, 1134, 0, 0, 3857, 3859, 1, 0, 0, 0, 3858, 3851, 1, 0, 0, 0, 3858, 3853, 1, 0, 0, 0, 3859, 245, 1, 0, 0, 0, 3860, 3861, 5, 1133, 0, 0, 3861, 3862, 3, 250, 125, 0, 3862, 3863, 5, 1134, 0, 0, 3863, 3869, 1, 0, 0, 0, 3864, 3865, 5, 1133, 0, 0, 3865, 3866, 3, 246, 123, 0, 3866, 3867, 5, 1134, 0, 0, 3867, 3869, 1, 0, 0, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3864, 1, 0, 0, 0, 3869, 247, 1, 0, 0, 0, 3870, 3871, 5, 1133, 0, 0, 3871, 3872, 3, 252, 126, 0, 3872, 3873, 5, 1134, 0, 0, 3873, 3879, 1, 0, 0, 0, 3874, 3875, 5, 1133, 0, 0, 3875, 3876, 3, 248, 124, 0, 3876, 3877, 5, 1134, 0, 0, 3877, 3879, 1, 0, 0, 0, 3878, 3870, 1, 0, 0, 0, 3878, 3874, 1, 0, 0, 0, 3879, 249, 1, 0, 0, 0, 3880, 3884, 5, 152, 0, 0, 3881, 3883, 3, 270, 135, 0, 3882, 3881, 1, 0, 0, 0, 3883, 3886, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3887, 3889, 3, 272, 136, 0, 3888, 3890, 3, 276, 138, 0, 3889, 3888, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3893, 3, 282, 141, 0, 3892, 3894, 3, 284, 142, 0, 3893, 3892, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3896, 1, 0, 0, 0, 3895, 3897, 3, 286, 143, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3899, 1, 0, 0, 0, 3898, 3900, 3, 288, 144, 0, 3899, 3898, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3902, 1, 0, 0, 0, 3901, 3903, 3, 228, 114, 0, 3902, 3901, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3905, 1, 0, 0, 0, 3904, 3906, 3, 292, 146, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3935, 1, 0, 0, 0, 3907, 3911, 5, 152, 0, 0, 3908, 3910, 3, 270, 135, 0, 3909, 3908, 1, 0, 0, 0, 3910, 3913, 1, 0, 0, 0, 3911, 3909, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3914, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3914, 3915, 3, 272, 136, 0, 3915, 3917, 3, 282, 141, 0, 3916, 3918, 3, 284, 142, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3920, 1, 0, 0, 0, 3919, 3921, 3, 286, 143, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3923, 1, 0, 0, 0, 3922, 3924, 3, 288, 144, 0, 3923, 3922, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3926, 1, 0, 0, 0, 3925, 3927, 3, 228, 114, 0, 3926, 3925, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3929, 1, 0, 0, 0, 3928, 3930, 3, 292, 146, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3932, 1, 0, 0, 0, 3931, 3933, 3, 276, 138, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3935, 1, 0, 0, 0, 3934, 3880, 1, 0, 0, 0, 3934, 3907, 1, 0, 0, 0, 3935, 251, 1, 0, 0, 0, 3936, 3940, 5, 152, 0, 0, 3937, 3939, 3, 270, 135, 0, 3938, 3937, 1, 0, 0, 0, 3939, 3942, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3943, 3944, 3, 272, 136, 0, 3944, 3946, 3, 282, 141, 0, 3945, 3947, 3, 284, 142, 0, 3946, 3945, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3949, 1, 0, 0, 0, 3948, 3950, 3, 286, 143, 0, 3949, 3948, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3952, 1, 0, 0, 0, 3951, 3953, 3, 288, 144, 0, 3952, 3951, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3956, 3, 228, 114, 0, 3955, 3954, 1, 0, 0, 0, 3955, 3956, 1, 0, 0, 0, 3956, 3958, 1, 0, 0, 0, 3957, 3959, 3, 292, 146, 0, 3958, 3957, 1, 0, 0, 0, 3958, 3959, 1, 0, 0, 0, 3959, 3961, 1, 0, 0, 0, 3960, 3962, 3, 256, 128, 0, 3961, 3960, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 253, 1, 0, 0, 0, 3963, 3965, 5, 180, 0, 0, 3964, 3966, 7, 44, 0, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3968, 3, 248, 124, 0, 3968, 255, 1, 0, 0, 0, 3969, 3971, 5, 180, 0, 0, 3970, 3972, 7, 44, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3975, 1, 0, 0, 0, 3973, 3976, 3, 252, 126, 0, 3974, 3976, 3, 248, 124, 0, 3975, 3973, 1, 0, 0, 0, 3975, 3974, 1, 0, 0, 0, 3976, 257, 1, 0, 0, 0, 3977, 3992, 5, 94, 0, 0, 3978, 3993, 3, 252, 126, 0, 3979, 3993, 3, 248, 124, 0, 3980, 3983, 5, 1133, 0, 0, 3981, 3984, 3, 252, 126, 0, 3982, 3984, 3, 248, 124, 0, 3983, 3981, 1, 0, 0, 0, 3983, 3982, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3990, 5, 1134, 0, 0, 3986, 3988, 5, 12, 0, 0, 3987, 3986, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 3, 584, 292, 0, 3990, 3987, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3993, 1, 0, 0, 0, 3992, 3978, 1, 0, 0, 0, 3992, 3979, 1, 0, 0, 0, 3992, 3980, 1, 0, 0, 0, 3993, 259, 1, 0, 0, 0, 3994, 3995, 5, 278, 0, 0, 3995, 3996, 5, 1133, 0, 0, 3996, 3997, 5, 1148, 0, 0, 3997, 3998, 5, 1135, 0, 0, 3998, 3999, 5, 1148, 0, 0, 3999, 4000, 5, 365, 0, 0, 4000, 4001, 5, 1133, 0, 0, 4001, 4002, 3, 262, 131, 0, 4002, 4003, 5, 1134, 0, 0, 4003, 4008, 5, 1134, 0, 0, 4004, 4006, 5, 12, 0, 0, 4005, 4004, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4009, 3, 584, 292, 0, 4008, 4005, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 261, 1, 0, 0, 0, 4010, 4015, 3, 264, 132, 0, 4011, 4012, 5, 1135, 0, 0, 4012, 4014, 3, 264, 132, 0, 4013, 4011, 1, 0, 0, 0, 4014, 4017, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 263, 1, 0, 0, 0, 4017, 4015, 1, 0, 0, 0, 4018, 4035, 3, 556, 278, 0, 4019, 4020, 5, 65, 0, 0, 4020, 4036, 5, 284, 0, 0, 4021, 4033, 3, 604, 302, 0, 4022, 4023, 5, 285, 0, 0, 4023, 4025, 5, 1148, 0, 0, 4024, 4026, 3, 266, 133, 0, 4025, 4024, 1, 0, 0, 0, 4025, 4026, 1, 0, 0, 0, 4026, 4028, 1, 0, 0, 0, 4027, 4029, 3, 268, 134, 0, 4028, 4027, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4034, 1, 0, 0, 0, 4030, 4031, 5, 60, 0, 0, 4031, 4032, 5, 285, 0, 0, 4032, 4034, 5, 1148, 0, 0, 4033, 4022, 1, 0, 0, 0, 4033, 4030, 1, 0, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4019, 1, 0, 0, 0, 4035, 4021, 1, 0, 0, 0, 4036, 4048, 1, 0, 0, 0, 4037, 4039, 5, 283, 0, 0, 4038, 4040, 5, 285, 0, 0, 4039, 4038, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 5, 1148, 0, 0, 4042, 4043, 5, 365, 0, 0, 4043, 4044, 5, 1133, 0, 0, 4044, 4045, 3, 262, 131, 0, 4045, 4046, 5, 1134, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4018, 1, 0, 0, 0, 4047, 4037, 1, 0, 0, 0, 4048, 265, 1, 0, 0, 0, 4049, 4054, 5, 116, 0, 0, 4050, 4054, 5, 411, 0, 0, 4051, 4052, 5, 42, 0, 0, 4052, 4054, 3, 634, 317, 0, 4053, 4049, 1, 0, 0, 0, 4053, 4050, 1, 0, 0, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4056, 5, 118, 0, 0, 4056, 4057, 5, 55, 0, 0, 4057, 267, 1, 0, 0, 0, 4058, 4063, 5, 116, 0, 0, 4059, 4063, 5, 411, 0, 0, 4060, 4061, 5, 42, 0, 0, 4061, 4063, 3, 634, 317, 0, 4062, 4058, 1, 0, 0, 0, 4062, 4059, 1, 0, 0, 0, 4062, 4060, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 5, 118, 0, 0, 4065, 4066, 5, 411, 0, 0, 4066, 269, 1, 0, 0, 0, 4067, 4076, 7, 52, 0, 0, 4068, 4076, 5, 75, 0, 0, 4069, 4076, 5, 171, 0, 0, 4070, 4076, 5, 166, 0, 0, 4071, 4076, 5, 164, 0, 0, 4072, 4076, 5, 625, 0, 0, 4073, 4076, 7, 53, 0, 0, 4074, 4076, 5, 165, 0, 0, 4075, 4067, 1, 0, 0, 0, 4075, 4068, 1, 0, 0, 0, 4075, 4069, 1, 0, 0, 0, 4075, 4070, 1, 0, 0, 0, 4075, 4071, 1, 0, 0, 0, 4075, 4072, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4074, 1, 0, 0, 0, 4076, 271, 1, 0, 0, 0, 4077, 4080, 5, 1117, 0, 0, 4078, 4080, 3, 274, 137, 0, 4079, 4077, 1, 0, 0, 0, 4079, 4078, 1, 0, 0, 0, 4080, 4085, 1, 0, 0, 0, 4081, 4082, 5, 1135, 0, 0, 4082, 4084, 3, 274, 137, 0, 4083, 4081, 1, 0, 0, 0, 4084, 4087, 1, 0, 0, 0, 4085, 4083, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 273, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4088, 4089, 3, 548, 274, 0, 4089, 4090, 5, 1132, 0, 0, 4090, 4091, 5, 1117, 0, 0, 4091, 4118, 1, 0, 0, 0, 4092, 4097, 3, 556, 278, 0, 4093, 4095, 5, 12, 0, 0, 4094, 4093, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4098, 3, 584, 292, 0, 4097, 4094, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4118, 1, 0, 0, 0, 4099, 4104, 3, 648, 324, 0, 4100, 4102, 5, 12, 0, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4105, 3, 584, 292, 0, 4104, 4101, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4118, 1, 0, 0, 0, 4106, 4107, 5, 1159, 0, 0, 4107, 4109, 5, 1108, 0, 0, 4108, 4106, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4115, 3, 688, 344, 0, 4111, 4113, 5, 12, 0, 0, 4112, 4111, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 4116, 3, 584, 292, 0, 4115, 4112, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4118, 1, 0, 0, 0, 4117, 4088, 1, 0, 0, 0, 4117, 4092, 1, 0, 0, 0, 4117, 4099, 1, 0, 0, 0, 4117, 4108, 1, 0, 0, 0, 4118, 275, 1, 0, 0, 0, 4119, 4120, 5, 87, 0, 0, 4120, 4125, 3, 208, 104, 0, 4121, 4122, 5, 1135, 0, 0, 4122, 4124, 3, 208, 104, 0, 4123, 4121, 1, 0, 0, 0, 4124, 4127, 1, 0, 0, 0, 4125, 4123, 1, 0, 0, 0, 4125, 4126, 1, 0, 0, 0, 4126, 4156, 1, 0, 0, 0, 4127, 4125, 1, 0, 0, 0, 4128, 4129, 5, 87, 0, 0, 4129, 4130, 5, 400, 0, 0, 4130, 4156, 5, 1148, 0, 0, 4131, 4132, 5, 87, 0, 0, 4132, 4133, 5, 127, 0, 0, 4133, 4137, 5, 1148, 0, 0, 4134, 4135, 5, 25, 0, 0, 4135, 4136, 5, 153, 0, 0, 4136, 4138, 3, 568, 284, 0, 4137, 4134, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4145, 1, 0, 0, 0, 4139, 4141, 7, 41, 0, 0, 4140, 4142, 3, 278, 139, 0, 4141, 4140, 1, 0, 0, 0, 4142, 4143, 1, 0, 0, 0, 4143, 4141, 1, 0, 0, 0, 4143, 4144, 1, 0, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4139, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4153, 1, 0, 0, 0, 4147, 4149, 5, 101, 0, 0, 4148, 4150, 3, 280, 140, 0, 4149, 4148, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4149, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4154, 1, 0, 0, 0, 4153, 4147, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4119, 1, 0, 0, 0, 4155, 4128, 1, 0, 0, 0, 4155, 4131, 1, 0, 0, 0, 4156, 277, 1, 0, 0, 0, 4157, 4158, 5, 173, 0, 0, 4158, 4159, 5, 19, 0, 0, 4159, 4170, 5, 1148, 0, 0, 4160, 4162, 5, 122, 0, 0, 4161, 4160, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 5, 56, 0, 0, 4164, 4165, 5, 19, 0, 0, 4165, 4170, 5, 1148, 0, 0, 4166, 4167, 5, 58, 0, 0, 4167, 4168, 5, 19, 0, 0, 4168, 4170, 5, 1148, 0, 0, 4169, 4157, 1, 0, 0, 0, 4169, 4161, 1, 0, 0, 0, 4169, 4166, 1, 0, 0, 0, 4170, 279, 1, 0, 0, 0, 4171, 4172, 5, 169, 0, 0, 4172, 4173, 5, 19, 0, 0, 4173, 4178, 5, 1148, 0, 0, 4174, 4175, 5, 173, 0, 0, 4175, 4176, 5, 19, 0, 0, 4176, 4178, 5, 1148, 0, 0, 4177, 4171, 1, 0, 0, 0, 4177, 4174, 1, 0, 0, 0, 4178, 281, 1, 0, 0, 0, 4179, 4180, 5, 68, 0, 0, 4180, 4182, 3, 232, 116, 0, 4181, 4179, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4184, 5, 190, 0, 0, 4184, 4186, 3, 688, 344, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 283, 1, 0, 0, 0, 4187, 4188, 5, 73, 0, 0, 4188, 4189, 5, 19, 0, 0, 4189, 4194, 3, 290, 145, 0, 4190, 4191, 5, 1135, 0, 0, 4191, 4193, 3, 290, 145, 0, 4192, 4190, 1, 0, 0, 0, 4193, 4196, 1, 0, 0, 0, 4194, 4192, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 4199, 1, 0, 0, 0, 4196, 4194, 1, 0, 0, 0, 4197, 4198, 5, 192, 0, 0, 4198, 4200, 5, 598, 0, 0, 4199, 4197, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 285, 1, 0, 0, 0, 4201, 4202, 5, 74, 0, 0, 4202, 4203, 3, 688, 344, 0, 4203, 287, 1, 0, 0, 0, 4204, 4205, 5, 676, 0, 0, 4205, 4206, 3, 666, 333, 0, 4206, 4207, 5, 12, 0, 0, 4207, 4208, 5, 1133, 0, 0, 4208, 4209, 3, 664, 332, 0, 4209, 4219, 5, 1134, 0, 0, 4210, 4211, 5, 1135, 0, 0, 4211, 4212, 3, 666, 333, 0, 4212, 4213, 5, 12, 0, 0, 4213, 4214, 5, 1133, 0, 0, 4214, 4215, 3, 664, 332, 0, 4215, 4216, 5, 1134, 0, 0, 4216, 4218, 1, 0, 0, 0, 4217, 4210, 1, 0, 0, 0, 4218, 4221, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 289, 1, 0, 0, 0, 4221, 4219, 1, 0, 0, 0, 4222, 4224, 3, 688, 344, 0, 4223, 4225, 7, 48, 0, 0, 4224, 4223, 1, 0, 0, 0, 4224, 4225, 1, 0, 0, 0, 4225, 291, 1, 0, 0, 0, 4226, 4237, 5, 99, 0, 0, 4227, 4228, 3, 294, 147, 0, 4228, 4229, 5, 1135, 0, 0, 4229, 4231, 1, 0, 0, 0, 4230, 4227, 1, 0, 0, 0, 4230, 4231, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4238, 3, 294, 147, 0, 4233, 4234, 3, 294, 147, 0, 4234, 4235, 5, 532, 0, 0, 4235, 4236, 3, 294, 147, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4230, 1, 0, 0, 0, 4237, 4233, 1, 0, 0, 0, 4238, 293, 1, 0, 0, 0, 4239, 4243, 3, 590, 295, 0, 4240, 4243, 3, 566, 283, 0, 4241, 4243, 3, 586, 293, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4242, 4241, 1, 0, 0, 0, 4243, 295, 1, 0, 0, 0, 4244, 4245, 5, 629, 0, 0, 4245, 4254, 5, 653, 0, 0, 4246, 4251, 3, 318, 159, 0, 4247, 4248, 5, 1135, 0, 0, 4248, 4250, 3, 318, 159, 0, 4249, 4247, 1, 0, 0, 0, 4250, 4253, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4255, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4254, 4246, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 297, 1, 0, 0, 0, 4256, 4258, 5, 344, 0, 0, 4257, 4259, 5, 678, 0, 0, 4258, 4257, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, 4259, 299, 1, 0, 0, 0, 4260, 4262, 5, 369, 0, 0, 4261, 4263, 5, 678, 0, 0, 4262, 4261, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4269, 1, 0, 0, 0, 4264, 4266, 5, 10, 0, 0, 4265, 4267, 5, 521, 0, 0, 4266, 4265, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4268, 1, 0, 0, 0, 4268, 4270, 5, 353, 0, 0, 4269, 4264, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4275, 1, 0, 0, 0, 4271, 4273, 5, 521, 0, 0, 4272, 4271, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4276, 5, 138, 0, 0, 4275, 4272, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 301, 1, 0, 0, 0, 4277, 4279, 5, 597, 0, 0, 4278, 4280, 5, 678, 0, 0, 4279, 4278, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4286, 1, 0, 0, 0, 4281, 4283, 5, 10, 0, 0, 4282, 4284, 5, 521, 0, 0, 4283, 4282, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 5, 353, 0, 0, 4286, 4281, 1, 0, 0, 0, 4286, 4287, 1, 0, 0, 0, 4287, 4292, 1, 0, 0, 0, 4288, 4290, 5, 521, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 5, 138, 0, 0, 4292, 4289, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 303, 1, 0, 0, 0, 4294, 4295, 5, 604, 0, 0, 4295, 4296, 3, 584, 292, 0, 4296, 305, 1, 0, 0, 0, 4297, 4299, 5, 597, 0, 0, 4298, 4300, 5, 678, 0, 0, 4299, 4298, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 4303, 5, 175, 0, 0, 4302, 4304, 5, 604, 0, 0, 4303, 4302, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4306, 3, 584, 292, 0, 4306, 307, 1, 0, 0, 0, 4307, 4308, 5, 138, 0, 0, 4308, 4309, 5, 604, 0, 0, 4309, 4310, 3, 584, 292, 0, 4310, 309, 1, 0, 0, 0, 4311, 4312, 5, 103, 0, 0, 4312, 4313, 7, 54, 0, 0, 4313, 4318, 3, 320, 160, 0, 4314, 4315, 5, 1135, 0, 0, 4315, 4317, 3, 320, 160, 0, 4316, 4314, 1, 0, 0, 0, 4317, 4320, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4322, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4323, 3, 646, 323, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 311, 1, 0, 0, 0, 4324, 4325, 5, 182, 0, 0, 4325, 4326, 5, 742, 0, 0, 4326, 313, 1, 0, 0, 0, 4327, 4328, 5, 153, 0, 0, 4328, 4329, 5, 340, 0, 0, 4329, 4330, 5, 1124, 0, 0, 4330, 4331, 7, 24, 0, 0, 4331, 315, 1, 0, 0, 0, 4332, 4334, 5, 153, 0, 0, 4333, 4335, 7, 55, 0, 0, 4334, 4333, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4337, 5, 653, 0, 0, 4337, 4342, 3, 324, 162, 0, 4338, 4339, 5, 1135, 0, 0, 4339, 4341, 3, 324, 162, 0, 4340, 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 317, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4346, 5, 192, 0, 0, 4346, 4347, 5, 377, 0, 0, 4347, 4353, 5, 616, 0, 0, 4348, 4349, 5, 134, 0, 0, 4349, 4353, 5, 193, 0, 0, 4350, 4351, 5, 134, 0, 0, 4351, 4353, 5, 538, 0, 0, 4352, 4345, 1, 0, 0, 0, 4352, 4348, 1, 0, 0, 0, 4352, 4350, 1, 0, 0, 0, 4353, 319, 1, 0, 0, 0, 4354, 4359, 3, 550, 275, 0, 4355, 4357, 5, 12, 0, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 4360, 3, 584, 292, 0, 4359, 4356, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4362, 3, 322, 161, 0, 4362, 321, 1, 0, 0, 0, 4363, 4365, 5, 134, 0, 0, 4364, 4366, 5, 474, 0, 0, 4365, 4364, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 4372, 1, 0, 0, 0, 4367, 4369, 5, 106, 0, 0, 4368, 4367, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4372, 5, 193, 0, 0, 4371, 4363, 1, 0, 0, 0, 4371, 4368, 1, 0, 0, 0, 4372, 323, 1, 0, 0, 0, 4373, 4374, 5, 464, 0, 0, 4374, 4375, 5, 472, 0, 0, 4375, 4381, 3, 326, 163, 0, 4376, 4377, 5, 134, 0, 0, 4377, 4381, 5, 193, 0, 0, 4378, 4379, 5, 134, 0, 0, 4379, 4381, 5, 538, 0, 0, 4380, 4373, 1, 0, 0, 0, 4380, 4376, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4381, 325, 1, 0, 0, 0, 4382, 4383, 5, 799, 0, 0, 4383, 4390, 5, 134, 0, 0, 4384, 4385, 5, 134, 0, 0, 4385, 4390, 5, 800, 0, 0, 4386, 4387, 5, 134, 0, 0, 4387, 4390, 5, 801, 0, 0, 4388, 4390, 5, 802, 0, 0, 4389, 4382, 1, 0, 0, 0, 4389, 4384, 1, 0, 0, 0, 4389, 4386, 1, 0, 0, 0, 4389, 4388, 1, 0, 0, 0, 4390, 327, 1, 0, 0, 0, 4391, 4392, 5, 24, 0, 0, 4392, 4393, 5, 477, 0, 0, 4393, 4394, 5, 175, 0, 0, 4394, 4399, 3, 346, 173, 0, 4395, 4396, 5, 1135, 0, 0, 4396, 4398, 3, 346, 173, 0, 4397, 4395, 1, 0, 0, 0, 4398, 4401, 1, 0, 0, 0, 4399, 4397, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 4403, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4402, 4404, 3, 354, 177, 0, 4403, 4402, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 329, 1, 0, 0, 0, 4405, 4406, 5, 24, 0, 0, 4406, 4407, 5, 588, 0, 0, 4407, 4408, 5, 429, 0, 0, 4408, 4413, 3, 356, 178, 0, 4409, 4410, 5, 1135, 0, 0, 4410, 4412, 3, 356, 178, 0, 4411, 4409, 1, 0, 0, 0, 4412, 4415, 1, 0, 0, 0, 4413, 4411, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 331, 1, 0, 0, 0, 4415, 4413, 1, 0, 0, 0, 4416, 4417, 5, 132, 0, 0, 4417, 4418, 7, 56, 0, 0, 4418, 4423, 5, 476, 0, 0, 4419, 4420, 5, 175, 0, 0, 4420, 4424, 5, 1148, 0, 0, 4421, 4422, 5, 15, 0, 0, 4422, 4424, 5, 1148, 0, 0, 4423, 4419, 1, 0, 0, 0, 4423, 4421, 1, 0, 0, 0, 4424, 333, 1, 0, 0, 0, 4425, 4426, 5, 589, 0, 0, 4426, 4427, 5, 477, 0, 0, 4427, 335, 1, 0, 0, 0, 4428, 4429, 5, 589, 0, 0, 4429, 4431, 5, 614, 0, 0, 4430, 4432, 5, 6, 0, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4434, 1, 0, 0, 0, 4433, 4435, 3, 354, 177, 0, 4434, 4433, 1, 0, 0, 0, 4434, 4435, 1, 0, 0, 0, 4435, 337, 1, 0, 0, 0, 4436, 4437, 5, 629, 0, 0, 4437, 4446, 5, 614, 0, 0, 4438, 4443, 3, 360, 180, 0, 4439, 4440, 5, 1135, 0, 0, 4440, 4442, 3, 360, 180, 0, 4441, 4439, 1, 0, 0, 0, 4442, 4445, 1, 0, 0, 0, 4443, 4441, 1, 0, 0, 0, 4443, 4444, 1, 0, 0, 0, 4444, 4447, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4446, 4438, 1, 0, 0, 0, 4446, 4447, 1, 0, 0, 0, 4447, 4450, 1, 0, 0, 0, 4448, 4449, 5, 663, 0, 0, 4449, 4451, 3, 362, 181, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 4455, 1, 0, 0, 0, 4452, 4454, 3, 364, 182, 0, 4453, 4452, 1, 0, 0, 0, 4454, 4457, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4458, 4460, 3, 354, 177, 0, 4459, 4458, 1, 0, 0, 0, 4459, 4460, 1, 0, 0, 0, 4460, 339, 1, 0, 0, 0, 4461, 4462, 5, 635, 0, 0, 4462, 4471, 5, 614, 0, 0, 4463, 4468, 3, 360, 180, 0, 4464, 4465, 5, 1135, 0, 0, 4465, 4467, 3, 360, 180, 0, 4466, 4464, 1, 0, 0, 0, 4467, 4470, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4471, 4463, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 341, 1, 0, 0, 0, 4473, 4474, 5, 629, 0, 0, 4474, 4475, 5, 441, 0, 0, 4475, 343, 1, 0, 0, 0, 4476, 4477, 5, 635, 0, 0, 4477, 4478, 5, 441, 0, 0, 4478, 345, 1, 0, 0, 0, 4479, 4480, 3, 348, 174, 0, 4480, 4481, 5, 1124, 0, 0, 4481, 4482, 5, 1148, 0, 0, 4482, 4509, 1, 0, 0, 0, 4483, 4484, 3, 350, 175, 0, 4484, 4485, 5, 1124, 0, 0, 4485, 4486, 3, 590, 295, 0, 4486, 4509, 1, 0, 0, 0, 4487, 4488, 3, 352, 176, 0, 4488, 4489, 5, 1124, 0, 0, 4489, 4490, 7, 24, 0, 0, 4490, 4509, 1, 0, 0, 0, 4491, 4492, 5, 481, 0, 0, 4492, 4493, 5, 1124, 0, 0, 4493, 4509, 5, 1151, 0, 0, 4494, 4495, 5, 449, 0, 0, 4495, 4496, 5, 1124, 0, 0, 4496, 4505, 5, 1133, 0, 0, 4497, 4502, 3, 584, 292, 0, 4498, 4499, 5, 1135, 0, 0, 4499, 4501, 3, 584, 292, 0, 4500, 4498, 1, 0, 0, 0, 4501, 4504, 1, 0, 0, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 4506, 1, 0, 0, 0, 4504, 4502, 1, 0, 0, 0, 4505, 4497, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 4507, 1, 0, 0, 0, 4507, 4509, 5, 1134, 0, 0, 4508, 4479, 1, 0, 0, 0, 4508, 4483, 1, 0, 0, 0, 4508, 4487, 1, 0, 0, 0, 4508, 4491, 1, 0, 0, 0, 4508, 4494, 1, 0, 0, 0, 4509, 347, 1, 0, 0, 0, 4510, 4511, 7, 57, 0, 0, 4511, 349, 1, 0, 0, 0, 4512, 4513, 7, 58, 0, 0, 4513, 351, 1, 0, 0, 0, 4514, 4515, 7, 59, 0, 0, 4515, 353, 1, 0, 0, 0, 4516, 4517, 5, 65, 0, 0, 4517, 4518, 5, 355, 0, 0, 4518, 4519, 5, 1148, 0, 0, 4519, 355, 1, 0, 0, 0, 4520, 4521, 5, 581, 0, 0, 4521, 4522, 5, 1124, 0, 0, 4522, 4523, 5, 1133, 0, 0, 4523, 4524, 3, 616, 308, 0, 4524, 4525, 5, 1134, 0, 0, 4525, 4570, 1, 0, 0, 0, 4526, 4527, 5, 583, 0, 0, 4527, 4528, 5, 1124, 0, 0, 4528, 4529, 5, 1133, 0, 0, 4529, 4530, 3, 616, 308, 0, 4530, 4531, 5, 1134, 0, 0, 4531, 4570, 1, 0, 0, 0, 4532, 4533, 5, 582, 0, 0, 4533, 4534, 5, 1124, 0, 0, 4534, 4535, 5, 1133, 0, 0, 4535, 4536, 3, 620, 310, 0, 4536, 4537, 5, 1134, 0, 0, 4537, 4570, 1, 0, 0, 0, 4538, 4539, 5, 584, 0, 0, 4539, 4540, 5, 1124, 0, 0, 4540, 4541, 5, 1133, 0, 0, 4541, 4542, 3, 620, 310, 0, 4542, 4543, 5, 1134, 0, 0, 4543, 4570, 1, 0, 0, 0, 4544, 4545, 5, 586, 0, 0, 4545, 4546, 5, 1124, 0, 0, 4546, 4547, 5, 1133, 0, 0, 4547, 4548, 3, 630, 315, 0, 4548, 4549, 5, 1134, 0, 0, 4549, 4570, 1, 0, 0, 0, 4550, 4551, 5, 587, 0, 0, 4551, 4552, 5, 1124, 0, 0, 4552, 4553, 5, 1133, 0, 0, 4553, 4554, 3, 630, 315, 0, 4554, 4555, 5, 1134, 0, 0, 4555, 4570, 1, 0, 0, 0, 4556, 4557, 5, 585, 0, 0, 4557, 4558, 5, 1124, 0, 0, 4558, 4559, 5, 1133, 0, 0, 4559, 4564, 3, 358, 179, 0, 4560, 4561, 5, 1135, 0, 0, 4561, 4563, 3, 358, 179, 0, 4562, 4560, 1, 0, 0, 0, 4563, 4566, 1, 0, 0, 0, 4564, 4562, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4567, 1, 0, 0, 0, 4566, 4564, 1, 0, 0, 0, 4567, 4568, 5, 1134, 0, 0, 4568, 4570, 1, 0, 0, 0, 4569, 4520, 1, 0, 0, 0, 4569, 4526, 1, 0, 0, 0, 4569, 4532, 1, 0, 0, 0, 4569, 4538, 1, 0, 0, 0, 4569, 4544, 1, 0, 0, 0, 4569, 4550, 1, 0, 0, 0, 4569, 4556, 1, 0, 0, 0, 4570, 357, 1, 0, 0, 0, 4571, 4572, 5, 1133, 0, 0, 4572, 4573, 3, 550, 275, 0, 4573, 4574, 5, 1135, 0, 0, 4574, 4575, 3, 550, 275, 0, 4575, 4576, 5, 1134, 0, 0, 4576, 359, 1, 0, 0, 0, 4577, 4578, 7, 60, 0, 0, 4578, 361, 1, 0, 0, 0, 4579, 4580, 7, 61, 0, 0, 4580, 4581, 5, 1124, 0, 0, 4581, 4598, 3, 366, 183, 0, 4582, 4583, 5, 483, 0, 0, 4583, 4584, 5, 1124, 0, 0, 4584, 4585, 5, 1148, 0, 0, 4585, 4586, 5, 1135, 0, 0, 4586, 4587, 5, 484, 0, 0, 4587, 4588, 5, 1124, 0, 0, 4588, 4598, 3, 590, 295, 0, 4589, 4590, 5, 575, 0, 0, 4590, 4591, 5, 1124, 0, 0, 4591, 4592, 5, 1148, 0, 0, 4592, 4593, 5, 1135, 0, 0, 4593, 4594, 5, 576, 0, 0, 4594, 4595, 5, 1124, 0, 0, 4595, 4598, 3, 590, 295, 0, 4596, 4598, 5, 623, 0, 0, 4597, 4579, 1, 0, 0, 0, 4597, 4582, 1, 0, 0, 0, 4597, 4589, 1, 0, 0, 0, 4597, 4596, 1, 0, 0, 0, 4598, 363, 1, 0, 0, 0, 4599, 4600, 5, 665, 0, 0, 4600, 4601, 5, 1124, 0, 0, 4601, 4612, 5, 1148, 0, 0, 4602, 4603, 5, 551, 0, 0, 4603, 4604, 5, 1124, 0, 0, 4604, 4612, 5, 1148, 0, 0, 4605, 4606, 5, 391, 0, 0, 4606, 4607, 5, 1124, 0, 0, 4607, 4612, 5, 1148, 0, 0, 4608, 4609, 5, 555, 0, 0, 4609, 4610, 5, 1124, 0, 0, 4610, 4612, 5, 1148, 0, 0, 4611, 4599, 1, 0, 0, 0, 4611, 4602, 1, 0, 0, 0, 4611, 4605, 1, 0, 0, 0, 4611, 4608, 1, 0, 0, 0, 4612, 365, 1, 0, 0, 0, 4613, 4618, 3, 576, 288, 0, 4614, 4615, 5, 1135, 0, 0, 4615, 4617, 3, 576, 288, 0, 4616, 4614, 1, 0, 0, 0, 4617, 4620, 1, 0, 0, 0, 4618, 4616, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 4623, 1, 0, 0, 0, 4620, 4618, 1, 0, 0, 0, 4621, 4623, 5, 1148, 0, 0, 4622, 4613, 1, 0, 0, 0, 4622, 4621, 1, 0, 0, 0, 4623, 367, 1, 0, 0, 0, 4624, 4625, 5, 681, 0, 0, 4625, 4626, 7, 62, 0, 0, 4626, 4628, 3, 578, 289, 0, 4627, 4629, 7, 63, 0, 0, 4628, 4627, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 369, 1, 0, 0, 0, 4630, 4631, 5, 681, 0, 0, 4631, 4632, 5, 407, 0, 0, 4632, 4638, 3, 578, 289, 0, 4633, 4636, 5, 643, 0, 0, 4634, 4635, 5, 65, 0, 0, 4635, 4637, 5, 509, 0, 0, 4636, 4634, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4639, 1, 0, 0, 0, 4638, 4633, 1, 0, 0, 0, 4638, 4639, 1, 0, 0, 0, 4639, 371, 1, 0, 0, 0, 4640, 4641, 5, 681, 0, 0, 4641, 4642, 5, 560, 0, 0, 4642, 4643, 3, 578, 289, 0, 4643, 373, 1, 0, 0, 0, 4644, 4645, 5, 681, 0, 0, 4645, 4646, 5, 369, 0, 0, 4646, 4649, 3, 578, 289, 0, 4647, 4648, 5, 536, 0, 0, 4648, 4650, 5, 553, 0, 0, 4649, 4647, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 375, 1, 0, 0, 0, 4651, 4652, 5, 681, 0, 0, 4652, 4653, 5, 597, 0, 0, 4653, 4654, 3, 578, 289, 0, 4654, 377, 1, 0, 0, 0, 4655, 4656, 5, 681, 0, 0, 4656, 4659, 5, 570, 0, 0, 4657, 4658, 5, 32, 0, 0, 4658, 4660, 3, 578, 289, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 379, 1, 0, 0, 0, 4661, 4662, 5, 560, 0, 0, 4662, 4663, 3, 584, 292, 0, 4663, 4666, 5, 68, 0, 0, 4664, 4667, 5, 1148, 0, 0, 4665, 4667, 5, 1159, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4665, 1, 0, 0, 0, 4667, 381, 1, 0, 0, 0, 4668, 4669, 5, 708, 0, 0, 4669, 4672, 3, 584, 292, 0, 4670, 4671, 5, 187, 0, 0, 4671, 4673, 3, 632, 316, 0, 4672, 4670, 1, 0, 0, 0, 4672, 4673, 1, 0, 0, 0, 4673, 383, 1, 0, 0, 0, 4674, 4675, 7, 64, 0, 0, 4675, 4676, 5, 560, 0, 0, 4676, 4677, 3, 584, 292, 0, 4677, 385, 1, 0, 0, 0, 4678, 4681, 3, 388, 194, 0, 4679, 4681, 3, 4, 2, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4679, 1, 0, 0, 0, 4681, 387, 1, 0, 0, 0, 4682, 4683, 3, 584, 292, 0, 4683, 4684, 5, 1144, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4682, 1, 0, 0, 0, 4685, 4686, 1, 0, 0, 0, 4686, 4687, 1, 0, 0, 0, 4687, 4693, 5, 344, 0, 0, 4688, 4689, 3, 408, 204, 0, 4689, 4690, 5, 1136, 0, 0, 4690, 4692, 1, 0, 0, 0, 4691, 4688, 1, 0, 0, 0, 4692, 4695, 1, 0, 0, 0, 4693, 4691, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 4701, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4697, 3, 410, 205, 0, 4697, 4698, 5, 1136, 0, 0, 4698, 4700, 1, 0, 0, 0, 4699, 4696, 1, 0, 0, 0, 4700, 4703, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 4709, 1, 0, 0, 0, 4703, 4701, 1, 0, 0, 0, 4704, 4705, 3, 412, 206, 0, 4705, 4706, 5, 1136, 0, 0, 4706, 4708, 1, 0, 0, 0, 4707, 4704, 1, 0, 0, 0, 4708, 4711, 1, 0, 0, 0, 4709, 4707, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 4717, 1, 0, 0, 0, 4711, 4709, 1, 0, 0, 0, 4712, 4713, 3, 414, 207, 0, 4713, 4714, 5, 1136, 0, 0, 4714, 4716, 1, 0, 0, 0, 4715, 4712, 1, 0, 0, 0, 4716, 4719, 1, 0, 0, 0, 4717, 4715, 1, 0, 0, 0, 4717, 4718, 1, 0, 0, 0, 4718, 4723, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4720, 4722, 3, 418, 209, 0, 4721, 4720, 1, 0, 0, 0, 4722, 4725, 1, 0, 0, 0, 4723, 4721, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 4726, 1, 0, 0, 0, 4725, 4723, 1, 0, 0, 0, 4726, 4728, 5, 407, 0, 0, 4727, 4729, 3, 584, 292, 0, 4728, 4727, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 389, 1, 0, 0, 0, 4730, 4733, 5, 22, 0, 0, 4731, 4734, 3, 584, 292, 0, 4732, 4734, 3, 688, 344, 0, 4733, 4731, 1, 0, 0, 0, 4733, 4732, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4736, 1, 0, 0, 0, 4735, 4737, 3, 420, 210, 0, 4736, 4735, 1, 0, 0, 0, 4737, 4738, 1, 0, 0, 0, 4738, 4736, 1, 0, 0, 0, 4738, 4739, 1, 0, 0, 0, 4739, 4746, 1, 0, 0, 0, 4740, 4742, 5, 53, 0, 0, 4741, 4743, 3, 418, 209, 0, 4742, 4741, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4744, 4745, 1, 0, 0, 0, 4745, 4747, 1, 0, 0, 0, 4746, 4740, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4748, 1, 0, 0, 0, 4748, 4749, 5, 407, 0, 0, 4749, 4750, 5, 22, 0, 0, 4750, 391, 1, 0, 0, 0, 4751, 4752, 5, 77, 0, 0, 4752, 4753, 3, 688, 344, 0, 4753, 4755, 5, 174, 0, 0, 4754, 4756, 3, 418, 209, 0, 4755, 4754, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4755, 1, 0, 0, 0, 4757, 4758, 1, 0, 0, 0, 4758, 4762, 1, 0, 0, 0, 4759, 4761, 3, 422, 211, 0, 4760, 4759, 1, 0, 0, 0, 4761, 4764, 1, 0, 0, 0, 4762, 4760, 1, 0, 0, 0, 4762, 4763, 1, 0, 0, 0, 4763, 4771, 1, 0, 0, 0, 4764, 4762, 1, 0, 0, 0, 4765, 4767, 5, 53, 0, 0, 4766, 4768, 3, 418, 209, 0, 4767, 4766, 1, 0, 0, 0, 4768, 4769, 1, 0, 0, 0, 4769, 4767, 1, 0, 0, 0, 4769, 4770, 1, 0, 0, 0, 4770, 4772, 1, 0, 0, 0, 4771, 4765, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4773, 1, 0, 0, 0, 4773, 4774, 5, 407, 0, 0, 4774, 4775, 5, 77, 0, 0, 4775, 393, 1, 0, 0, 0, 4776, 4777, 5, 89, 0, 0, 4777, 4778, 3, 584, 292, 0, 4778, 395, 1, 0, 0, 0, 4779, 4780, 5, 96, 0, 0, 4780, 4781, 3, 584, 292, 0, 4781, 397, 1, 0, 0, 0, 4782, 4783, 3, 584, 292, 0, 4783, 4784, 5, 1144, 0, 0, 4784, 4786, 1, 0, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4787, 1, 0, 0, 0, 4787, 4789, 5, 105, 0, 0, 4788, 4790, 3, 418, 209, 0, 4789, 4788, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4789, 1, 0, 0, 0, 4791, 4792, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4794, 5, 407, 0, 0, 4794, 4796, 5, 105, 0, 0, 4795, 4797, 3, 584, 292, 0, 4796, 4795, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 399, 1, 0, 0, 0, 4798, 4799, 3, 584, 292, 0, 4799, 4800, 5, 1144, 0, 0, 4800, 4802, 1, 0, 0, 0, 4801, 4798, 1, 0, 0, 0, 4801, 4802, 1, 0, 0, 0, 4802, 4803, 1, 0, 0, 0, 4803, 4805, 5, 140, 0, 0, 4804, 4806, 3, 418, 209, 0, 4805, 4804, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 4805, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4809, 1, 0, 0, 0, 4809, 4810, 5, 663, 0, 0, 4810, 4811, 3, 688, 344, 0, 4811, 4812, 5, 407, 0, 0, 4812, 4814, 5, 140, 0, 0, 4813, 4815, 3, 584, 292, 0, 4814, 4813, 1, 0, 0, 0, 4814, 4815, 1, 0, 0, 0, 4815, 401, 1, 0, 0, 0, 4816, 4817, 5, 146, 0, 0, 4817, 4818, 3, 688, 344, 0, 4818, 403, 1, 0, 0, 0, 4819, 4820, 3, 584, 292, 0, 4820, 4821, 5, 1144, 0, 0, 4821, 4823, 1, 0, 0, 0, 4822, 4819, 1, 0, 0, 0, 4822, 4823, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4825, 5, 191, 0, 0, 4825, 4826, 3, 688, 344, 0, 4826, 4828, 5, 399, 0, 0, 4827, 4829, 3, 418, 209, 0, 4828, 4827, 1, 0, 0, 0, 4829, 4830, 1, 0, 0, 0, 4830, 4828, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4832, 1, 0, 0, 0, 4832, 4833, 5, 407, 0, 0, 4833, 4835, 5, 191, 0, 0, 4834, 4836, 3, 584, 292, 0, 4835, 4834, 1, 0, 0, 0, 4835, 4836, 1, 0, 0, 0, 4836, 405, 1, 0, 0, 0, 4837, 4838, 5, 361, 0, 0, 4838, 4853, 3, 584, 292, 0, 4839, 4844, 5, 64, 0, 0, 4840, 4842, 5, 520, 0, 0, 4841, 4840, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4843, 1, 0, 0, 0, 4843, 4845, 5, 68, 0, 0, 4844, 4841, 1, 0, 0, 0, 4844, 4845, 1, 0, 0, 0, 4845, 4846, 1, 0, 0, 0, 4846, 4847, 3, 584, 292, 0, 4847, 4848, 5, 87, 0, 0, 4848, 4849, 3, 616, 308, 0, 4849, 4853, 1, 0, 0, 0, 4850, 4851, 5, 539, 0, 0, 4851, 4853, 3, 584, 292, 0, 4852, 4837, 1, 0, 0, 0, 4852, 4839, 1, 0, 0, 0, 4852, 4850, 1, 0, 0, 0, 4853, 407, 1, 0, 0, 0, 4854, 4855, 5, 41, 0, 0, 4855, 4856, 3, 616, 308, 0, 4856, 4859, 3, 604, 302, 0, 4857, 4858, 5, 42, 0, 0, 4858, 4860, 3, 688, 344, 0, 4859, 4857, 1, 0, 0, 0, 4859, 4860, 1, 0, 0, 0, 4860, 409, 1, 0, 0, 0, 4861, 4862, 5, 41, 0, 0, 4862, 4863, 3, 584, 292, 0, 4863, 4864, 5, 29, 0, 0, 4864, 4871, 5, 65, 0, 0, 4865, 4872, 3, 590, 295, 0, 4866, 4868, 5, 162, 0, 0, 4867, 4869, 5, 669, 0, 0, 4868, 4867, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4870, 1, 0, 0, 0, 4870, 4872, 5, 1148, 0, 0, 4871, 4865, 1, 0, 0, 0, 4871, 4866, 1, 0, 0, 0, 4872, 411, 1, 0, 0, 0, 4873, 4874, 5, 41, 0, 0, 4874, 4875, 3, 584, 292, 0, 4875, 4876, 5, 38, 0, 0, 4876, 4877, 5, 65, 0, 0, 4877, 4878, 3, 198, 99, 0, 4878, 413, 1, 0, 0, 0, 4879, 4880, 5, 41, 0, 0, 4880, 4881, 7, 65, 0, 0, 4881, 4882, 5, 442, 0, 0, 4882, 4883, 5, 65, 0, 0, 4883, 4888, 3, 416, 208, 0, 4884, 4885, 5, 1135, 0, 0, 4885, 4887, 3, 416, 208, 0, 4886, 4884, 1, 0, 0, 0, 4887, 4890, 1, 0, 0, 0, 4888, 4886, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4891, 1, 0, 0, 0, 4890, 4888, 1, 0, 0, 0, 4891, 4892, 3, 386, 193, 0, 4892, 415, 1, 0, 0, 0, 4893, 4905, 3, 590, 295, 0, 4894, 4896, 5, 162, 0, 0, 4895, 4897, 5, 669, 0, 0, 4896, 4895, 1, 0, 0, 0, 4896, 4897, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4905, 5, 1148, 0, 0, 4899, 4905, 3, 584, 292, 0, 4900, 4905, 5, 163, 0, 0, 4901, 4902, 5, 114, 0, 0, 4902, 4905, 5, 435, 0, 0, 4903, 4905, 5, 161, 0, 0, 4904, 4893, 1, 0, 0, 0, 4904, 4894, 1, 0, 0, 0, 4904, 4899, 1, 0, 0, 0, 4904, 4900, 1, 0, 0, 0, 4904, 4901, 1, 0, 0, 0, 4904, 4903, 1, 0, 0, 0, 4905, 417, 1, 0, 0, 0, 4906, 4909, 3, 16, 8, 0, 4907, 4909, 3, 4, 2, 0, 4908, 4906, 1, 0, 0, 0, 4908, 4907, 1, 0, 0, 0, 4909, 4910, 1, 0, 0, 0, 4910, 4911, 5, 1136, 0, 0, 4911, 419, 1, 0, 0, 0, 4912, 4915, 5, 189, 0, 0, 4913, 4916, 3, 602, 301, 0, 4914, 4916, 3, 688, 344, 0, 4915, 4913, 1, 0, 0, 0, 4915, 4914, 1, 0, 0, 0, 4916, 4917, 1, 0, 0, 0, 4917, 4919, 5, 174, 0, 0, 4918, 4920, 3, 418, 209, 0, 4919, 4918, 1, 0, 0, 0, 4920, 4921, 1, 0, 0, 0, 4921, 4919, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 421, 1, 0, 0, 0, 4923, 4924, 5, 54, 0, 0, 4924, 4925, 3, 688, 344, 0, 4925, 4927, 5, 174, 0, 0, 4926, 4928, 3, 418, 209, 0, 4927, 4926, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 423, 1, 0, 0, 0, 4931, 4932, 5, 7, 0, 0, 4932, 4933, 5, 665, 0, 0, 4933, 4938, 3, 444, 222, 0, 4934, 4935, 5, 1135, 0, 0, 4935, 4937, 3, 444, 222, 0, 4936, 4934, 1, 0, 0, 0, 4937, 4940, 1, 0, 0, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 5005, 1, 0, 0, 0, 4940, 4938, 1, 0, 0, 0, 4941, 4942, 5, 7, 0, 0, 4942, 4944, 5, 665, 0, 0, 4943, 4945, 3, 640, 320, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4951, 3, 446, 223, 0, 4947, 4948, 5, 1135, 0, 0, 4948, 4950, 3, 446, 223, 0, 4949, 4947, 1, 0, 0, 0, 4950, 4953, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 4968, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4966, 5, 142, 0, 0, 4955, 4967, 5, 529, 0, 0, 4956, 4963, 3, 452, 226, 0, 4957, 4959, 5, 10, 0, 0, 4958, 4957, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 4962, 3, 452, 226, 0, 4961, 4958, 1, 0, 0, 0, 4962, 4965, 1, 0, 0, 0, 4963, 4961, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 4967, 1, 0, 0, 0, 4965, 4963, 1, 0, 0, 0, 4966, 4955, 1, 0, 0, 0, 4966, 4956, 1, 0, 0, 0, 4967, 4969, 1, 0, 0, 0, 4968, 4954, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4976, 1, 0, 0, 0, 4970, 4972, 5, 192, 0, 0, 4971, 4973, 3, 454, 227, 0, 4972, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4972, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4977, 1, 0, 0, 0, 4976, 4970, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4982, 1, 0, 0, 0, 4978, 4981, 3, 456, 228, 0, 4979, 4981, 3, 458, 229, 0, 4980, 4978, 1, 0, 0, 0, 4980, 4979, 1, 0, 0, 0, 4981, 4984, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4989, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 5, 368, 0, 0, 4986, 4990, 5, 1148, 0, 0, 4987, 4988, 5, 14, 0, 0, 4988, 4990, 5, 1148, 0, 0, 4989, 4985, 1, 0, 0, 0, 4989, 4987, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 5005, 1, 0, 0, 0, 4991, 4992, 5, 7, 0, 0, 4992, 4994, 5, 665, 0, 0, 4993, 4995, 3, 640, 320, 0, 4994, 4993, 1, 0, 0, 0, 4994, 4995, 1, 0, 0, 0, 4995, 4998, 1, 0, 0, 0, 4996, 4999, 3, 564, 282, 0, 4997, 4999, 3, 584, 292, 0, 4998, 4996, 1, 0, 0, 0, 4998, 4997, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5001, 5, 42, 0, 0, 5001, 5002, 5, 596, 0, 0, 5002, 5003, 3, 432, 216, 0, 5003, 5005, 1, 0, 0, 0, 5004, 4931, 1, 0, 0, 0, 5004, 4941, 1, 0, 0, 0, 5004, 4991, 1, 0, 0, 0, 5005, 425, 1, 0, 0, 0, 5006, 5007, 5, 33, 0, 0, 5007, 5008, 5, 665, 0, 0, 5008, 5013, 3, 446, 223, 0, 5009, 5010, 5, 1135, 0, 0, 5010, 5012, 3, 446, 223, 0, 5011, 5009, 1, 0, 0, 0, 5012, 5015, 1, 0, 0, 0, 5013, 5011, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5072, 1, 0, 0, 0, 5015, 5013, 1, 0, 0, 0, 5016, 5017, 5, 33, 0, 0, 5017, 5019, 5, 665, 0, 0, 5018, 5020, 3, 642, 321, 0, 5019, 5018, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5026, 3, 446, 223, 0, 5022, 5023, 5, 1135, 0, 0, 5023, 5025, 3, 446, 223, 0, 5024, 5022, 1, 0, 0, 0, 5025, 5028, 1, 0, 0, 0, 5026, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5032, 1, 0, 0, 0, 5028, 5026, 1, 0, 0, 0, 5029, 5030, 5, 42, 0, 0, 5030, 5031, 5, 596, 0, 0, 5031, 5033, 3, 432, 216, 0, 5032, 5029, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5048, 1, 0, 0, 0, 5034, 5046, 5, 142, 0, 0, 5035, 5047, 5, 529, 0, 0, 5036, 5043, 3, 452, 226, 0, 5037, 5039, 5, 10, 0, 0, 5038, 5037, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5042, 3, 452, 226, 0, 5041, 5038, 1, 0, 0, 0, 5042, 5045, 1, 0, 0, 0, 5043, 5041, 1, 0, 0, 0, 5043, 5044, 1, 0, 0, 0, 5044, 5047, 1, 0, 0, 0, 5045, 5043, 1, 0, 0, 0, 5046, 5035, 1, 0, 0, 0, 5046, 5036, 1, 0, 0, 0, 5047, 5049, 1, 0, 0, 0, 5048, 5034, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5056, 1, 0, 0, 0, 5050, 5052, 5, 192, 0, 0, 5051, 5053, 3, 454, 227, 0, 5052, 5051, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5052, 1, 0, 0, 0, 5054, 5055, 1, 0, 0, 0, 5055, 5057, 1, 0, 0, 0, 5056, 5050, 1, 0, 0, 0, 5056, 5057, 1, 0, 0, 0, 5057, 5062, 1, 0, 0, 0, 5058, 5061, 3, 456, 228, 0, 5059, 5061, 3, 458, 229, 0, 5060, 5058, 1, 0, 0, 0, 5060, 5059, 1, 0, 0, 0, 5061, 5064, 1, 0, 0, 0, 5062, 5060, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5069, 1, 0, 0, 0, 5064, 5062, 1, 0, 0, 0, 5065, 5066, 5, 368, 0, 0, 5066, 5070, 5, 1148, 0, 0, 5067, 5068, 5, 14, 0, 0, 5068, 5070, 5, 1148, 0, 0, 5069, 5065, 1, 0, 0, 0, 5069, 5067, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5072, 1, 0, 0, 0, 5071, 5006, 1, 0, 0, 0, 5071, 5016, 1, 0, 0, 0, 5072, 427, 1, 0, 0, 0, 5073, 5074, 5, 51, 0, 0, 5074, 5076, 5, 665, 0, 0, 5075, 5077, 3, 640, 320, 0, 5076, 5075, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5083, 3, 564, 282, 0, 5079, 5080, 5, 1135, 0, 0, 5080, 5082, 3, 564, 282, 0, 5081, 5079, 1, 0, 0, 0, 5082, 5085, 1, 0, 0, 0, 5083, 5081, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 429, 1, 0, 0, 0, 5085, 5083, 1, 0, 0, 0, 5086, 5087, 5, 72, 0, 0, 5087, 5092, 3, 460, 230, 0, 5088, 5089, 5, 1135, 0, 0, 5089, 5091, 3, 460, 230, 0, 5090, 5088, 1, 0, 0, 0, 5091, 5094, 1, 0, 0, 0, 5092, 5090, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5095, 1, 0, 0, 0, 5094, 5092, 1, 0, 0, 0, 5095, 5097, 5, 118, 0, 0, 5096, 5098, 7, 66, 0, 0, 5097, 5096, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 3, 464, 232, 0, 5100, 5101, 5, 175, 0, 0, 5101, 5106, 3, 446, 223, 0, 5102, 5103, 5, 1135, 0, 0, 5103, 5105, 3, 446, 223, 0, 5104, 5102, 1, 0, 0, 0, 5105, 5108, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5123, 1, 0, 0, 0, 5108, 5106, 1, 0, 0, 0, 5109, 5121, 5, 142, 0, 0, 5110, 5122, 5, 529, 0, 0, 5111, 5118, 3, 452, 226, 0, 5112, 5114, 5, 10, 0, 0, 5113, 5112, 1, 0, 0, 0, 5113, 5114, 1, 0, 0, 0, 5114, 5115, 1, 0, 0, 0, 5115, 5117, 3, 452, 226, 0, 5116, 5113, 1, 0, 0, 0, 5117, 5120, 1, 0, 0, 0, 5118, 5116, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5121, 5110, 1, 0, 0, 0, 5121, 5111, 1, 0, 0, 0, 5122, 5124, 1, 0, 0, 0, 5123, 5109, 1, 0, 0, 0, 5123, 5124, 1, 0, 0, 0, 5124, 5134, 1, 0, 0, 0, 5125, 5131, 5, 192, 0, 0, 5126, 5127, 5, 72, 0, 0, 5127, 5130, 5, 120, 0, 0, 5128, 5130, 3, 454, 227, 0, 5129, 5126, 1, 0, 0, 0, 5129, 5128, 1, 0, 0, 0, 5130, 5133, 1, 0, 0, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5135, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5134, 5125, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5142, 1, 0, 0, 0, 5136, 5137, 5, 12, 0, 0, 5137, 5138, 3, 564, 282, 0, 5138, 5139, 5, 192, 0, 0, 5139, 5140, 5, 596, 0, 0, 5140, 5141, 3, 432, 216, 0, 5141, 5143, 1, 0, 0, 0, 5142, 5136, 1, 0, 0, 0, 5142, 5143, 1, 0, 0, 0, 5143, 5180, 1, 0, 0, 0, 5144, 5147, 5, 72, 0, 0, 5145, 5148, 3, 564, 282, 0, 5146, 5148, 3, 584, 292, 0, 5147, 5145, 1, 0, 0, 0, 5147, 5146, 1, 0, 0, 0, 5148, 5156, 1, 0, 0, 0, 5149, 5152, 5, 1135, 0, 0, 5150, 5153, 3, 564, 282, 0, 5151, 5153, 3, 584, 292, 0, 5152, 5150, 1, 0, 0, 0, 5152, 5151, 1, 0, 0, 0, 5153, 5155, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5155, 5158, 1, 0, 0, 0, 5156, 5154, 1, 0, 0, 0, 5156, 5157, 1, 0, 0, 0, 5157, 5159, 1, 0, 0, 0, 5158, 5156, 1, 0, 0, 0, 5159, 5162, 5, 175, 0, 0, 5160, 5163, 3, 564, 282, 0, 5161, 5163, 3, 584, 292, 0, 5162, 5160, 1, 0, 0, 0, 5162, 5161, 1, 0, 0, 0, 5163, 5171, 1, 0, 0, 0, 5164, 5167, 5, 1135, 0, 0, 5165, 5168, 3, 564, 282, 0, 5166, 5168, 3, 584, 292, 0, 5167, 5165, 1, 0, 0, 0, 5167, 5166, 1, 0, 0, 0, 5168, 5170, 1, 0, 0, 0, 5169, 5164, 1, 0, 0, 0, 5170, 5173, 1, 0, 0, 0, 5171, 5169, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5177, 1, 0, 0, 0, 5173, 5171, 1, 0, 0, 0, 5174, 5175, 5, 192, 0, 0, 5175, 5176, 5, 697, 0, 0, 5176, 5178, 5, 120, 0, 0, 5177, 5174, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5086, 1, 0, 0, 0, 5179, 5144, 1, 0, 0, 0, 5180, 431, 1, 0, 0, 0, 5181, 5204, 5, 42, 0, 0, 5182, 5204, 5, 529, 0, 0, 5183, 5193, 5, 6, 0, 0, 5184, 5185, 5, 59, 0, 0, 5185, 5190, 3, 564, 282, 0, 5186, 5187, 5, 1135, 0, 0, 5187, 5189, 3, 564, 282, 0, 5188, 5186, 1, 0, 0, 0, 5189, 5192, 1, 0, 0, 0, 5190, 5188, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5194, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5193, 5184, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5204, 1, 0, 0, 0, 5195, 5200, 3, 564, 282, 0, 5196, 5197, 5, 1135, 0, 0, 5197, 5199, 3, 564, 282, 0, 5198, 5196, 1, 0, 0, 0, 5199, 5202, 1, 0, 0, 0, 5200, 5198, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5204, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5203, 5181, 1, 0, 0, 0, 5203, 5182, 1, 0, 0, 0, 5203, 5183, 1, 0, 0, 0, 5203, 5195, 1, 0, 0, 0, 5204, 433, 1, 0, 0, 0, 5205, 5206, 5, 72, 0, 0, 5206, 5207, 5, 566, 0, 0, 5207, 5208, 5, 118, 0, 0, 5208, 5209, 3, 564, 282, 0, 5209, 5210, 5, 175, 0, 0, 5210, 5215, 3, 564, 282, 0, 5211, 5212, 5, 1135, 0, 0, 5212, 5214, 3, 564, 282, 0, 5213, 5211, 1, 0, 0, 0, 5214, 5217, 1, 0, 0, 0, 5215, 5213, 1, 0, 0, 0, 5215, 5216, 1, 0, 0, 0, 5216, 5221, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5218, 5219, 5, 192, 0, 0, 5219, 5220, 5, 72, 0, 0, 5220, 5222, 5, 120, 0, 0, 5221, 5218, 1, 0, 0, 0, 5221, 5222, 1, 0, 0, 0, 5222, 435, 1, 0, 0, 0, 5223, 5224, 5, 139, 0, 0, 5224, 5225, 5, 665, 0, 0, 5225, 5230, 3, 466, 233, 0, 5226, 5227, 5, 1135, 0, 0, 5227, 5229, 3, 466, 233, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 437, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5234, 5, 147, 0, 0, 5234, 5239, 3, 460, 230, 0, 5235, 5236, 5, 1135, 0, 0, 5236, 5238, 3, 460, 230, 0, 5237, 5235, 1, 0, 0, 0, 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5242, 1, 0, 0, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5244, 5, 118, 0, 0, 5243, 5245, 7, 66, 0, 0, 5244, 5243, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5247, 3, 464, 232, 0, 5247, 5248, 5, 68, 0, 0, 5248, 5253, 3, 564, 282, 0, 5249, 5250, 5, 1135, 0, 0, 5250, 5252, 3, 564, 282, 0, 5251, 5249, 1, 0, 0, 0, 5252, 5255, 1, 0, 0, 0, 5253, 5251, 1, 0, 0, 0, 5253, 5254, 1, 0, 0, 0, 5254, 5304, 1, 0, 0, 0, 5255, 5253, 1, 0, 0, 0, 5256, 5257, 5, 147, 0, 0, 5257, 5259, 5, 6, 0, 0, 5258, 5260, 5, 725, 0, 0, 5259, 5258, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5262, 5, 1135, 0, 0, 5262, 5263, 5, 72, 0, 0, 5263, 5264, 5, 120, 0, 0, 5264, 5265, 5, 68, 0, 0, 5265, 5270, 3, 564, 282, 0, 5266, 5267, 5, 1135, 0, 0, 5267, 5269, 3, 564, 282, 0, 5268, 5266, 1, 0, 0, 0, 5269, 5272, 1, 0, 0, 0, 5270, 5268, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, 5304, 1, 0, 0, 0, 5272, 5270, 1, 0, 0, 0, 5273, 5276, 5, 147, 0, 0, 5274, 5277, 3, 564, 282, 0, 5275, 5277, 3, 584, 292, 0, 5276, 5274, 1, 0, 0, 0, 5276, 5275, 1, 0, 0, 0, 5277, 5285, 1, 0, 0, 0, 5278, 5281, 5, 1135, 0, 0, 5279, 5282, 3, 564, 282, 0, 5280, 5282, 3, 584, 292, 0, 5281, 5279, 1, 0, 0, 0, 5281, 5280, 1, 0, 0, 0, 5282, 5284, 1, 0, 0, 0, 5283, 5278, 1, 0, 0, 0, 5284, 5287, 1, 0, 0, 0, 5285, 5283, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, 5288, 1, 0, 0, 0, 5287, 5285, 1, 0, 0, 0, 5288, 5291, 5, 68, 0, 0, 5289, 5292, 3, 564, 282, 0, 5290, 5292, 3, 584, 292, 0, 5291, 5289, 1, 0, 0, 0, 5291, 5290, 1, 0, 0, 0, 5292, 5300, 1, 0, 0, 0, 5293, 5296, 5, 1135, 0, 0, 5294, 5297, 3, 564, 282, 0, 5295, 5297, 3, 584, 292, 0, 5296, 5294, 1, 0, 0, 0, 5296, 5295, 1, 0, 0, 0, 5297, 5299, 1, 0, 0, 0, 5298, 5293, 1, 0, 0, 0, 5299, 5302, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5304, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5303, 5233, 1, 0, 0, 0, 5303, 5256, 1, 0, 0, 0, 5303, 5273, 1, 0, 0, 0, 5304, 439, 1, 0, 0, 0, 5305, 5306, 5, 147, 0, 0, 5306, 5307, 5, 566, 0, 0, 5307, 5308, 5, 118, 0, 0, 5308, 5309, 3, 564, 282, 0, 5309, 5310, 5, 68, 0, 0, 5310, 5315, 3, 564, 282, 0, 5311, 5312, 5, 1135, 0, 0, 5312, 5314, 3, 564, 282, 0, 5313, 5311, 1, 0, 0, 0, 5314, 5317, 1, 0, 0, 0, 5315, 5313, 1, 0, 0, 0, 5315, 5316, 1, 0, 0, 0, 5316, 441, 1, 0, 0, 0, 5317, 5315, 1, 0, 0, 0, 5318, 5319, 5, 153, 0, 0, 5319, 5322, 5, 551, 0, 0, 5320, 5321, 5, 65, 0, 0, 5321, 5323, 3, 564, 282, 0, 5322, 5320, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5324, 1, 0, 0, 0, 5324, 5327, 5, 1124, 0, 0, 5325, 5328, 3, 682, 341, 0, 5326, 5328, 5, 1148, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5326, 1, 0, 0, 0, 5328, 443, 1, 0, 0, 0, 5329, 5330, 3, 564, 282, 0, 5330, 5331, 3, 456, 228, 0, 5331, 445, 1, 0, 0, 0, 5332, 5333, 3, 564, 282, 0, 5333, 5334, 5, 448, 0, 0, 5334, 5335, 5, 19, 0, 0, 5335, 5336, 5, 551, 0, 0, 5336, 5337, 5, 1148, 0, 0, 5337, 5358, 1, 0, 0, 0, 5338, 5339, 3, 564, 282, 0, 5339, 5340, 5, 448, 0, 0, 5340, 5341, 5, 19, 0, 0, 5341, 5342, 5, 991, 0, 0, 5342, 5343, 5, 551, 0, 0, 5343, 5344, 3, 448, 224, 0, 5344, 5358, 1, 0, 0, 0, 5345, 5346, 3, 564, 282, 0, 5346, 5347, 5, 448, 0, 0, 5347, 5348, 5, 19, 0, 0, 5348, 5349, 5, 1148, 0, 0, 5349, 5350, 3, 448, 224, 0, 5350, 5358, 1, 0, 0, 0, 5351, 5352, 3, 564, 282, 0, 5352, 5353, 5, 448, 0, 0, 5353, 5354, 5, 192, 0, 0, 5354, 5355, 3, 450, 225, 0, 5355, 5358, 1, 0, 0, 0, 5356, 5358, 3, 564, 282, 0, 5357, 5332, 1, 0, 0, 0, 5357, 5338, 1, 0, 0, 0, 5357, 5345, 1, 0, 0, 0, 5357, 5351, 1, 0, 0, 0, 5357, 5356, 1, 0, 0, 0, 5358, 447, 1, 0, 0, 0, 5359, 5360, 5, 141, 0, 0, 5360, 5362, 5, 1148, 0, 0, 5361, 5359, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5366, 1, 0, 0, 0, 5363, 5364, 5, 145, 0, 0, 5364, 5365, 5, 35, 0, 0, 5365, 5367, 5, 551, 0, 0, 5366, 5363, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 449, 1, 0, 0, 0, 5368, 5376, 3, 582, 291, 0, 5369, 5373, 7, 67, 0, 0, 5370, 5374, 5, 1148, 0, 0, 5371, 5372, 5, 991, 0, 0, 5372, 5374, 5, 551, 0, 0, 5373, 5370, 1, 0, 0, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 5377, 3, 448, 224, 0, 5376, 5369, 1, 0, 0, 0, 5376, 5377, 1, 0, 0, 0, 5377, 5383, 1, 0, 0, 0, 5378, 5379, 3, 582, 291, 0, 5379, 5380, 5, 187, 0, 0, 5380, 5381, 3, 682, 341, 0, 5381, 5383, 1, 0, 0, 0, 5382, 5368, 1, 0, 0, 0, 5382, 5378, 1, 0, 0, 0, 5383, 451, 1, 0, 0, 0, 5384, 5393, 5, 167, 0, 0, 5385, 5393, 5, 680, 0, 0, 5386, 5387, 5, 358, 0, 0, 5387, 5393, 5, 1148, 0, 0, 5388, 5389, 5, 465, 0, 0, 5389, 5393, 5, 1148, 0, 0, 5390, 5391, 5, 640, 0, 0, 5391, 5393, 5, 1148, 0, 0, 5392, 5384, 1, 0, 0, 0, 5392, 5385, 1, 0, 0, 0, 5392, 5386, 1, 0, 0, 0, 5392, 5388, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 453, 1, 0, 0, 0, 5394, 5395, 5, 499, 0, 0, 5395, 5403, 3, 590, 295, 0, 5396, 5397, 5, 502, 0, 0, 5397, 5403, 3, 590, 295, 0, 5398, 5399, 5, 498, 0, 0, 5399, 5403, 3, 590, 295, 0, 5400, 5401, 5, 503, 0, 0, 5401, 5403, 3, 590, 295, 0, 5402, 5394, 1, 0, 0, 0, 5402, 5396, 1, 0, 0, 0, 5402, 5398, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5403, 455, 1, 0, 0, 0, 5404, 5405, 5, 551, 0, 0, 5405, 5412, 5, 420, 0, 0, 5406, 5413, 5, 42, 0, 0, 5407, 5413, 5, 519, 0, 0, 5408, 5409, 5, 86, 0, 0, 5409, 5410, 3, 590, 295, 0, 5410, 5411, 5, 691, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5406, 1, 0, 0, 0, 5412, 5407, 1, 0, 0, 0, 5412, 5408, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5443, 1, 0, 0, 0, 5414, 5415, 5, 551, 0, 0, 5415, 5418, 5, 445, 0, 0, 5416, 5419, 5, 42, 0, 0, 5417, 5419, 3, 590, 295, 0, 5418, 5416, 1, 0, 0, 0, 5418, 5417, 1, 0, 0, 0, 5419, 5443, 1, 0, 0, 0, 5420, 5421, 5, 551, 0, 0, 5421, 5422, 5, 595, 0, 0, 5422, 5427, 5, 86, 0, 0, 5423, 5428, 5, 42, 0, 0, 5424, 5425, 3, 590, 295, 0, 5425, 5426, 5, 691, 0, 0, 5426, 5428, 1, 0, 0, 0, 5427, 5423, 1, 0, 0, 0, 5427, 5424, 1, 0, 0, 0, 5428, 5443, 1, 0, 0, 0, 5429, 5430, 5, 551, 0, 0, 5430, 5431, 5, 142, 0, 0, 5431, 5433, 5, 35, 0, 0, 5432, 5434, 7, 68, 0, 0, 5433, 5432, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5443, 1, 0, 0, 0, 5435, 5436, 5, 424, 0, 0, 5436, 5443, 3, 590, 295, 0, 5437, 5440, 5, 552, 0, 0, 5438, 5441, 3, 590, 295, 0, 5439, 5441, 5, 657, 0, 0, 5440, 5438, 1, 0, 0, 0, 5440, 5439, 1, 0, 0, 0, 5441, 5443, 1, 0, 0, 0, 5442, 5404, 1, 0, 0, 0, 5442, 5414, 1, 0, 0, 0, 5442, 5420, 1, 0, 0, 0, 5442, 5429, 1, 0, 0, 0, 5442, 5435, 1, 0, 0, 0, 5442, 5437, 1, 0, 0, 0, 5443, 457, 1, 0, 0, 0, 5444, 5445, 5, 332, 0, 0, 5445, 5446, 7, 69, 0, 0, 5446, 459, 1, 0, 0, 0, 5447, 5452, 3, 462, 231, 0, 5448, 5449, 5, 1133, 0, 0, 5449, 5450, 3, 616, 308, 0, 5450, 5451, 5, 1134, 0, 0, 5451, 5453, 1, 0, 0, 0, 5452, 5448, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 461, 1, 0, 0, 0, 5454, 5456, 5, 6, 0, 0, 5455, 5457, 5, 725, 0, 0, 5456, 5455, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5548, 1, 0, 0, 0, 5458, 5460, 5, 7, 0, 0, 5459, 5461, 5, 733, 0, 0, 5460, 5459, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5548, 1, 0, 0, 0, 5462, 5470, 5, 33, 0, 0, 5463, 5464, 5, 649, 0, 0, 5464, 5471, 5, 742, 0, 0, 5465, 5471, 5, 733, 0, 0, 5466, 5471, 5, 671, 0, 0, 5467, 5471, 5, 665, 0, 0, 5468, 5471, 5, 647, 0, 0, 5469, 5471, 5, 596, 0, 0, 5470, 5463, 1, 0, 0, 0, 5470, 5465, 1, 0, 0, 0, 5470, 5466, 1, 0, 0, 0, 5470, 5467, 1, 0, 0, 0, 5470, 5468, 1, 0, 0, 0, 5470, 5469, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5548, 1, 0, 0, 0, 5472, 5548, 5, 44, 0, 0, 5473, 5475, 5, 51, 0, 0, 5474, 5476, 5, 596, 0, 0, 5475, 5474, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5548, 1, 0, 0, 0, 5477, 5548, 5, 415, 0, 0, 5478, 5548, 5, 708, 0, 0, 5479, 5548, 5, 709, 0, 0, 5480, 5481, 5, 72, 0, 0, 5481, 5548, 5, 120, 0, 0, 5482, 5548, 5, 81, 0, 0, 5483, 5548, 5, 85, 0, 0, 5484, 5485, 5, 103, 0, 0, 5485, 5548, 5, 742, 0, 0, 5486, 5548, 5, 726, 0, 0, 5487, 5548, 5, 566, 0, 0, 5488, 5548, 5, 136, 0, 0, 5489, 5548, 5, 727, 0, 0, 5490, 5491, 5, 588, 0, 0, 5491, 5548, 7, 70, 0, 0, 5492, 5548, 5, 152, 0, 0, 5493, 5494, 5, 155, 0, 0, 5494, 5548, 7, 71, 0, 0, 5495, 5548, 5, 739, 0, 0, 5496, 5548, 5, 740, 0, 0, 5497, 5548, 5, 177, 0, 0, 5498, 5548, 5, 184, 0, 0, 5499, 5548, 5, 185, 0, 0, 5500, 5548, 5, 698, 0, 0, 5501, 5548, 5, 699, 0, 0, 5502, 5548, 5, 700, 0, 0, 5503, 5548, 5, 701, 0, 0, 5504, 5548, 5, 702, 0, 0, 5505, 5548, 5, 703, 0, 0, 5506, 5548, 5, 704, 0, 0, 5507, 5548, 5, 705, 0, 0, 5508, 5548, 5, 706, 0, 0, 5509, 5548, 5, 707, 0, 0, 5510, 5548, 5, 710, 0, 0, 5511, 5548, 5, 711, 0, 0, 5512, 5548, 5, 712, 0, 0, 5513, 5548, 5, 713, 0, 0, 5514, 5548, 5, 714, 0, 0, 5515, 5548, 5, 715, 0, 0, 5516, 5548, 5, 716, 0, 0, 5517, 5548, 5, 717, 0, 0, 5518, 5548, 5, 718, 0, 0, 5519, 5548, 5, 719, 0, 0, 5520, 5548, 5, 722, 0, 0, 5521, 5548, 5, 723, 0, 0, 5522, 5548, 5, 724, 0, 0, 5523, 5548, 5, 728, 0, 0, 5524, 5548, 5, 729, 0, 0, 5525, 5548, 5, 730, 0, 0, 5526, 5548, 5, 731, 0, 0, 5527, 5548, 5, 732, 0, 0, 5528, 5548, 5, 735, 0, 0, 5529, 5548, 5, 736, 0, 0, 5530, 5548, 5, 737, 0, 0, 5531, 5548, 5, 158, 0, 0, 5532, 5548, 5, 738, 0, 0, 5533, 5548, 5, 1077, 0, 0, 5534, 5548, 5, 741, 0, 0, 5535, 5548, 5, 743, 0, 0, 5536, 5548, 5, 1088, 0, 0, 5537, 5548, 5, 744, 0, 0, 5538, 5548, 5, 745, 0, 0, 5539, 5540, 5, 102, 0, 0, 5540, 5541, 5, 68, 0, 0, 5541, 5548, 5, 734, 0, 0, 5542, 5543, 5, 152, 0, 0, 5543, 5544, 5, 87, 0, 0, 5544, 5548, 5, 734, 0, 0, 5545, 5546, 5, 720, 0, 0, 5546, 5548, 5, 721, 0, 0, 5547, 5454, 1, 0, 0, 0, 5547, 5458, 1, 0, 0, 0, 5547, 5462, 1, 0, 0, 0, 5547, 5472, 1, 0, 0, 0, 5547, 5473, 1, 0, 0, 0, 5547, 5477, 1, 0, 0, 0, 5547, 5478, 1, 0, 0, 0, 5547, 5479, 1, 0, 0, 0, 5547, 5480, 1, 0, 0, 0, 5547, 5482, 1, 0, 0, 0, 5547, 5483, 1, 0, 0, 0, 5547, 5484, 1, 0, 0, 0, 5547, 5486, 1, 0, 0, 0, 5547, 5487, 1, 0, 0, 0, 5547, 5488, 1, 0, 0, 0, 5547, 5489, 1, 0, 0, 0, 5547, 5490, 1, 0, 0, 0, 5547, 5492, 1, 0, 0, 0, 5547, 5493, 1, 0, 0, 0, 5547, 5495, 1, 0, 0, 0, 5547, 5496, 1, 0, 0, 0, 5547, 5497, 1, 0, 0, 0, 5547, 5498, 1, 0, 0, 0, 5547, 5499, 1, 0, 0, 0, 5547, 5500, 1, 0, 0, 0, 5547, 5501, 1, 0, 0, 0, 5547, 5502, 1, 0, 0, 0, 5547, 5503, 1, 0, 0, 0, 5547, 5504, 1, 0, 0, 0, 5547, 5505, 1, 0, 0, 0, 5547, 5506, 1, 0, 0, 0, 5547, 5507, 1, 0, 0, 0, 5547, 5508, 1, 0, 0, 0, 5547, 5509, 1, 0, 0, 0, 5547, 5510, 1, 0, 0, 0, 5547, 5511, 1, 0, 0, 0, 5547, 5512, 1, 0, 0, 0, 5547, 5513, 1, 0, 0, 0, 5547, 5514, 1, 0, 0, 0, 5547, 5515, 1, 0, 0, 0, 5547, 5516, 1, 0, 0, 0, 5547, 5517, 1, 0, 0, 0, 5547, 5518, 1, 0, 0, 0, 5547, 5519, 1, 0, 0, 0, 5547, 5520, 1, 0, 0, 0, 5547, 5521, 1, 0, 0, 0, 5547, 5522, 1, 0, 0, 0, 5547, 5523, 1, 0, 0, 0, 5547, 5524, 1, 0, 0, 0, 5547, 5525, 1, 0, 0, 0, 5547, 5526, 1, 0, 0, 0, 5547, 5527, 1, 0, 0, 0, 5547, 5528, 1, 0, 0, 0, 5547, 5529, 1, 0, 0, 0, 5547, 5530, 1, 0, 0, 0, 5547, 5531, 1, 0, 0, 0, 5547, 5532, 1, 0, 0, 0, 5547, 5533, 1, 0, 0, 0, 5547, 5534, 1, 0, 0, 0, 5547, 5535, 1, 0, 0, 0, 5547, 5536, 1, 0, 0, 0, 5547, 5537, 1, 0, 0, 0, 5547, 5538, 1, 0, 0, 0, 5547, 5539, 1, 0, 0, 0, 5547, 5542, 1, 0, 0, 0, 5547, 5545, 1, 0, 0, 0, 5548, 463, 1, 0, 0, 0, 5549, 5566, 5, 1117, 0, 0, 5550, 5551, 5, 1117, 0, 0, 5551, 5552, 5, 1132, 0, 0, 5552, 5566, 5, 1117, 0, 0, 5553, 5554, 3, 584, 292, 0, 5554, 5555, 5, 1132, 0, 0, 5555, 5556, 5, 1117, 0, 0, 5556, 5566, 1, 0, 0, 0, 5557, 5558, 3, 584, 292, 0, 5558, 5559, 5, 1132, 0, 0, 5559, 5560, 3, 584, 292, 0, 5560, 5566, 1, 0, 0, 0, 5561, 5562, 3, 584, 292, 0, 5562, 5563, 3, 588, 294, 0, 5563, 5566, 1, 0, 0, 0, 5564, 5566, 3, 584, 292, 0, 5565, 5549, 1, 0, 0, 0, 5565, 5550, 1, 0, 0, 0, 5565, 5553, 1, 0, 0, 0, 5565, 5557, 1, 0, 0, 0, 5565, 5561, 1, 0, 0, 0, 5565, 5564, 1, 0, 0, 0, 5566, 465, 1, 0, 0, 0, 5567, 5568, 3, 564, 282, 0, 5568, 5569, 5, 175, 0, 0, 5569, 5570, 3, 564, 282, 0, 5570, 467, 1, 0, 0, 0, 5571, 5573, 5, 9, 0, 0, 5572, 5574, 7, 72, 0, 0, 5573, 5572, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 5575, 1, 0, 0, 0, 5575, 5576, 7, 54, 0, 0, 5576, 5594, 3, 620, 310, 0, 5577, 5578, 5, 184, 0, 0, 5578, 5579, 5, 76, 0, 0, 5579, 5580, 5, 118, 0, 0, 5580, 5585, 3, 556, 278, 0, 5581, 5582, 5, 1135, 0, 0, 5582, 5584, 3, 556, 278, 0, 5583, 5581, 1, 0, 0, 0, 5584, 5587, 1, 0, 0, 0, 5585, 5583, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5592, 1, 0, 0, 0, 5587, 5585, 1, 0, 0, 0, 5588, 5589, 5, 192, 0, 0, 5589, 5590, 3, 590, 295, 0, 5590, 5591, 5, 18, 0, 0, 5591, 5593, 1, 0, 0, 0, 5592, 5588, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5595, 1, 0, 0, 0, 5594, 5577, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5607, 1, 0, 0, 0, 5596, 5597, 5, 51, 0, 0, 5597, 5598, 5, 76, 0, 0, 5598, 5599, 5, 118, 0, 0, 5599, 5604, 3, 556, 278, 0, 5600, 5601, 5, 1135, 0, 0, 5601, 5603, 3, 556, 278, 0, 5602, 5600, 1, 0, 0, 0, 5603, 5606, 1, 0, 0, 0, 5604, 5602, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5608, 1, 0, 0, 0, 5606, 5604, 1, 0, 0, 0, 5607, 5596, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 469, 1, 0, 0, 0, 5609, 5610, 5, 26, 0, 0, 5610, 5611, 5, 172, 0, 0, 5611, 5615, 3, 620, 310, 0, 5612, 5614, 3, 478, 239, 0, 5613, 5612, 1, 0, 0, 0, 5614, 5617, 1, 0, 0, 0, 5615, 5613, 1, 0, 0, 0, 5615, 5616, 1, 0, 0, 0, 5616, 471, 1, 0, 0, 0, 5617, 5615, 1, 0, 0, 0, 5618, 5619, 5, 356, 0, 0, 5619, 5620, 5, 172, 0, 0, 5620, 5622, 3, 620, 310, 0, 5621, 5623, 7, 73, 0, 0, 5622, 5621, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 473, 1, 0, 0, 0, 5624, 5626, 5, 119, 0, 0, 5625, 5627, 7, 72, 0, 0, 5626, 5625, 1, 0, 0, 0, 5626, 5627, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5629, 7, 54, 0, 0, 5629, 5630, 3, 620, 310, 0, 5630, 475, 1, 0, 0, 0, 5631, 5633, 5, 580, 0, 0, 5632, 5634, 7, 72, 0, 0, 5633, 5632, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5636, 5, 172, 0, 0, 5636, 5638, 3, 620, 310, 0, 5637, 5639, 5, 568, 0, 0, 5638, 5637, 1, 0, 0, 0, 5638, 5639, 1, 0, 0, 0, 5639, 5641, 1, 0, 0, 0, 5640, 5642, 5, 422, 0, 0, 5641, 5640, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5644, 1, 0, 0, 0, 5643, 5645, 5, 666, 0, 0, 5644, 5643, 1, 0, 0, 0, 5644, 5645, 1, 0, 0, 0, 5645, 477, 1, 0, 0, 0, 5646, 5647, 5, 65, 0, 0, 5647, 5654, 5, 664, 0, 0, 5648, 5654, 5, 568, 0, 0, 5649, 5654, 5, 425, 0, 0, 5650, 5654, 5, 504, 0, 0, 5651, 5654, 5, 422, 0, 0, 5652, 5654, 5, 354, 0, 0, 5653, 5646, 1, 0, 0, 0, 5653, 5648, 1, 0, 0, 0, 5653, 5649, 1, 0, 0, 0, 5653, 5650, 1, 0, 0, 0, 5653, 5651, 1, 0, 0, 0, 5653, 5652, 1, 0, 0, 0, 5654, 479, 1, 0, 0, 0, 5655, 5657, 5, 33, 0, 0, 5656, 5658, 5, 335, 0, 0, 5657, 5656, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5659, 1, 0, 0, 0, 5659, 5661, 5, 437, 0, 0, 5660, 5662, 3, 642, 321, 0, 5661, 5660, 1, 0, 0, 0, 5661, 5662, 1, 0, 0, 0, 5662, 5663, 1, 0, 0, 0, 5663, 5664, 3, 584, 292, 0, 5664, 5665, 5, 594, 0, 0, 5665, 5666, 7, 74, 0, 0, 5666, 5667, 5, 619, 0, 0, 5667, 5668, 5, 1148, 0, 0, 5668, 481, 1, 0, 0, 0, 5669, 5670, 5, 456, 0, 0, 5670, 5671, 5, 554, 0, 0, 5671, 5672, 3, 584, 292, 0, 5672, 5673, 5, 619, 0, 0, 5673, 5674, 5, 1148, 0, 0, 5674, 483, 1, 0, 0, 0, 5675, 5676, 5, 661, 0, 0, 5676, 5677, 5, 554, 0, 0, 5677, 5678, 3, 584, 292, 0, 5678, 485, 1, 0, 0, 0, 5679, 5680, 5, 153, 0, 0, 5680, 5681, 3, 490, 245, 0, 5681, 5684, 7, 75, 0, 0, 5682, 5685, 3, 688, 344, 0, 5683, 5685, 5, 118, 0, 0, 5684, 5682, 1, 0, 0, 0, 5684, 5683, 1, 0, 0, 0, 5685, 5695, 1, 0, 0, 0, 5686, 5687, 5, 1135, 0, 0, 5687, 5688, 3, 490, 245, 0, 5688, 5691, 7, 75, 0, 0, 5689, 5692, 3, 688, 344, 0, 5690, 5692, 5, 118, 0, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5692, 5694, 1, 0, 0, 0, 5693, 5686, 1, 0, 0, 0, 5694, 5697, 1, 0, 0, 0, 5695, 5693, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5732, 1, 0, 0, 0, 5697, 5695, 1, 0, 0, 0, 5698, 5699, 5, 153, 0, 0, 5699, 5702, 3, 58, 29, 0, 5700, 5703, 3, 568, 284, 0, 5701, 5703, 5, 42, 0, 0, 5702, 5700, 1, 0, 0, 0, 5702, 5701, 1, 0, 0, 0, 5703, 5732, 1, 0, 0, 0, 5704, 5705, 5, 153, 0, 0, 5705, 5712, 5, 517, 0, 0, 5706, 5709, 3, 568, 284, 0, 5707, 5708, 5, 27, 0, 0, 5708, 5710, 3, 570, 285, 0, 5709, 5707, 1, 0, 0, 0, 5709, 5710, 1, 0, 0, 0, 5710, 5713, 1, 0, 0, 0, 5711, 5713, 5, 42, 0, 0, 5712, 5706, 1, 0, 0, 0, 5712, 5711, 1, 0, 0, 0, 5713, 5732, 1, 0, 0, 0, 5714, 5732, 3, 442, 221, 0, 5715, 5732, 3, 316, 158, 0, 5716, 5732, 3, 314, 157, 0, 5717, 5718, 5, 153, 0, 0, 5718, 5719, 3, 548, 274, 0, 5719, 5720, 7, 75, 0, 0, 5720, 5728, 3, 688, 344, 0, 5721, 5722, 5, 1135, 0, 0, 5722, 5723, 3, 548, 274, 0, 5723, 5724, 7, 75, 0, 0, 5724, 5725, 3, 688, 344, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5721, 1, 0, 0, 0, 5727, 5730, 1, 0, 0, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5732, 1, 0, 0, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5679, 1, 0, 0, 0, 5731, 5698, 1, 0, 0, 0, 5731, 5704, 1, 0, 0, 0, 5731, 5714, 1, 0, 0, 0, 5731, 5715, 1, 0, 0, 0, 5731, 5716, 1, 0, 0, 0, 5731, 5717, 1, 0, 0, 0, 5732, 487, 1, 0, 0, 0, 5733, 5734, 5, 155, 0, 0, 5734, 5735, 7, 56, 0, 0, 5735, 5887, 5, 476, 0, 0, 5736, 5737, 5, 155, 0, 0, 5737, 5738, 7, 76, 0, 0, 5738, 5741, 5, 416, 0, 0, 5739, 5740, 5, 80, 0, 0, 5740, 5742, 5, 1148, 0, 0, 5741, 5739, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5745, 1, 0, 0, 0, 5743, 5744, 5, 68, 0, 0, 5744, 5746, 3, 590, 295, 0, 5745, 5743, 1, 0, 0, 0, 5745, 5746, 1, 0, 0, 0, 5746, 5754, 1, 0, 0, 0, 5747, 5751, 5, 99, 0, 0, 5748, 5749, 3, 590, 295, 0, 5749, 5750, 5, 1135, 0, 0, 5750, 5752, 1, 0, 0, 0, 5751, 5748, 1, 0, 0, 0, 5751, 5752, 1, 0, 0, 0, 5752, 5753, 1, 0, 0, 0, 5753, 5755, 3, 590, 295, 0, 5754, 5747, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 5887, 1, 0, 0, 0, 5756, 5757, 5, 155, 0, 0, 5757, 5759, 3, 492, 246, 0, 5758, 5760, 3, 494, 247, 0, 5759, 5758, 1, 0, 0, 0, 5759, 5760, 1, 0, 0, 0, 5760, 5887, 1, 0, 0, 0, 5761, 5763, 5, 155, 0, 0, 5762, 5764, 5, 436, 0, 0, 5763, 5762, 1, 0, 0, 0, 5763, 5764, 1, 0, 0, 0, 5764, 5765, 1, 0, 0, 0, 5765, 5766, 7, 41, 0, 0, 5766, 5767, 7, 77, 0, 0, 5767, 5770, 3, 550, 275, 0, 5768, 5769, 7, 77, 0, 0, 5769, 5771, 3, 584, 292, 0, 5770, 5768, 1, 0, 0, 0, 5770, 5771, 1, 0, 0, 0, 5771, 5773, 1, 0, 0, 0, 5772, 5774, 3, 494, 247, 0, 5773, 5772, 1, 0, 0, 0, 5773, 5774, 1, 0, 0, 0, 5774, 5887, 1, 0, 0, 0, 5775, 5776, 5, 155, 0, 0, 5776, 5777, 5, 33, 0, 0, 5777, 5779, 7, 0, 0, 0, 5778, 5780, 3, 642, 321, 0, 5779, 5778, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 5887, 3, 584, 292, 0, 5782, 5783, 5, 155, 0, 0, 5783, 5784, 5, 33, 0, 0, 5784, 5785, 7, 78, 0, 0, 5785, 5887, 3, 548, 274, 0, 5786, 5787, 5, 155, 0, 0, 5787, 5788, 5, 33, 0, 0, 5788, 5789, 5, 665, 0, 0, 5789, 5887, 3, 564, 282, 0, 5790, 5791, 5, 155, 0, 0, 5791, 5792, 5, 409, 0, 0, 5792, 5793, 3, 572, 286, 0, 5793, 5794, 7, 79, 0, 0, 5794, 5887, 1, 0, 0, 0, 5795, 5796, 5, 155, 0, 0, 5796, 5887, 3, 496, 248, 0, 5797, 5798, 5, 155, 0, 0, 5798, 5806, 7, 80, 0, 0, 5799, 5803, 5, 99, 0, 0, 5800, 5801, 3, 590, 295, 0, 5801, 5802, 5, 1135, 0, 0, 5802, 5804, 1, 0, 0, 0, 5803, 5800, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5807, 3, 590, 295, 0, 5806, 5799, 1, 0, 0, 0, 5806, 5807, 1, 0, 0, 0, 5807, 5887, 1, 0, 0, 0, 5808, 5809, 5, 155, 0, 0, 5809, 5810, 5, 290, 0, 0, 5810, 5811, 5, 1133, 0, 0, 5811, 5812, 5, 1117, 0, 0, 5812, 5813, 5, 1134, 0, 0, 5813, 5887, 7, 80, 0, 0, 5814, 5815, 5, 155, 0, 0, 5815, 5818, 3, 498, 249, 0, 5816, 5817, 7, 77, 0, 0, 5817, 5819, 3, 584, 292, 0, 5818, 5816, 1, 0, 0, 0, 5818, 5819, 1, 0, 0, 0, 5819, 5821, 1, 0, 0, 0, 5820, 5822, 3, 494, 247, 0, 5821, 5820, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 5887, 1, 0, 0, 0, 5823, 5824, 5, 155, 0, 0, 5824, 5825, 7, 81, 0, 0, 5825, 5826, 5, 364, 0, 0, 5826, 5887, 3, 548, 274, 0, 5827, 5828, 5, 155, 0, 0, 5828, 5831, 5, 440, 0, 0, 5829, 5830, 5, 65, 0, 0, 5830, 5832, 3, 564, 282, 0, 5831, 5829, 1, 0, 0, 0, 5831, 5832, 1, 0, 0, 0, 5832, 5887, 1, 0, 0, 0, 5833, 5834, 5, 155, 0, 0, 5834, 5835, 7, 82, 0, 0, 5835, 5836, 7, 77, 0, 0, 5836, 5839, 3, 550, 275, 0, 5837, 5838, 7, 77, 0, 0, 5838, 5840, 3, 584, 292, 0, 5839, 5837, 1, 0, 0, 0, 5839, 5840, 1, 0, 0, 0, 5840, 5843, 1, 0, 0, 0, 5841, 5842, 5, 190, 0, 0, 5842, 5844, 3, 688, 344, 0, 5843, 5841, 1, 0, 0, 0, 5843, 5844, 1, 0, 0, 0, 5844, 5887, 1, 0, 0, 0, 5845, 5846, 5, 155, 0, 0, 5846, 5847, 5, 539, 0, 0, 5847, 5850, 5, 742, 0, 0, 5848, 5849, 7, 77, 0, 0, 5849, 5851, 3, 584, 292, 0, 5850, 5848, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5853, 1, 0, 0, 0, 5852, 5854, 3, 494, 247, 0, 5853, 5852, 1, 0, 0, 0, 5853, 5854, 1, 0, 0, 0, 5854, 5887, 1, 0, 0, 0, 5855, 5856, 5, 155, 0, 0, 5856, 5857, 5, 564, 0, 0, 5857, 5862, 3, 500, 250, 0, 5858, 5859, 5, 1135, 0, 0, 5859, 5861, 3, 500, 250, 0, 5860, 5858, 1, 0, 0, 0, 5861, 5864, 1, 0, 0, 0, 5862, 5860, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5868, 1, 0, 0, 0, 5864, 5862, 1, 0, 0, 0, 5865, 5866, 5, 65, 0, 0, 5866, 5867, 5, 567, 0, 0, 5867, 5869, 3, 590, 295, 0, 5868, 5865, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5870, 1, 0, 0, 0, 5870, 5874, 5, 99, 0, 0, 5871, 5872, 3, 590, 295, 0, 5872, 5873, 5, 1135, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5871, 1, 0, 0, 0, 5874, 5875, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5877, 3, 590, 295, 0, 5877, 5887, 1, 0, 0, 0, 5878, 5879, 5, 155, 0, 0, 5879, 5880, 5, 614, 0, 0, 5880, 5884, 5, 634, 0, 0, 5881, 5882, 5, 65, 0, 0, 5882, 5883, 5, 355, 0, 0, 5883, 5885, 5, 1148, 0, 0, 5884, 5881, 1, 0, 0, 0, 5884, 5885, 1, 0, 0, 0, 5885, 5887, 1, 0, 0, 0, 5886, 5733, 1, 0, 0, 0, 5886, 5736, 1, 0, 0, 0, 5886, 5756, 1, 0, 0, 0, 5886, 5761, 1, 0, 0, 0, 5886, 5775, 1, 0, 0, 0, 5886, 5782, 1, 0, 0, 0, 5886, 5786, 1, 0, 0, 0, 5886, 5790, 1, 0, 0, 0, 5886, 5795, 1, 0, 0, 0, 5886, 5797, 1, 0, 0, 0, 5886, 5808, 1, 0, 0, 0, 5886, 5814, 1, 0, 0, 0, 5886, 5823, 1, 0, 0, 0, 5886, 5827, 1, 0, 0, 0, 5886, 5833, 1, 0, 0, 0, 5886, 5845, 1, 0, 0, 0, 5886, 5855, 1, 0, 0, 0, 5886, 5878, 1, 0, 0, 0, 5887, 489, 1, 0, 0, 0, 5888, 5899, 5, 1159, 0, 0, 5889, 5899, 5, 1160, 0, 0, 5890, 5891, 5, 1137, 0, 0, 5891, 5893, 5, 1137, 0, 0, 5892, 5890, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5894, 1, 0, 0, 0, 5894, 5896, 7, 83, 0, 0, 5895, 5892, 1, 0, 0, 0, 5895, 5896, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5899, 3, 584, 292, 0, 5898, 5888, 1, 0, 0, 0, 5898, 5889, 1, 0, 0, 0, 5898, 5895, 1, 0, 0, 0, 5899, 491, 1, 0, 0, 0, 5900, 5901, 5, 25, 0, 0, 5901, 5914, 5, 153, 0, 0, 5902, 5914, 5, 844, 0, 0, 5903, 5914, 5, 40, 0, 0, 5904, 5914, 5, 151, 0, 0, 5905, 5906, 5, 437, 0, 0, 5906, 5914, 5, 634, 0, 0, 5907, 5908, 5, 131, 0, 0, 5908, 5914, 5, 634, 0, 0, 5909, 5911, 7, 55, 0, 0, 5910, 5909, 1, 0, 0, 0, 5910, 5911, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5914, 7, 84, 0, 0, 5913, 5900, 1, 0, 0, 0, 5913, 5902, 1, 0, 0, 0, 5913, 5903, 1, 0, 0, 0, 5913, 5904, 1, 0, 0, 0, 5913, 5905, 1, 0, 0, 0, 5913, 5907, 1, 0, 0, 0, 5913, 5910, 1, 0, 0, 0, 5914, 493, 1, 0, 0, 0, 5915, 5916, 5, 98, 0, 0, 5916, 5920, 5, 1148, 0, 0, 5917, 5918, 5, 190, 0, 0, 5918, 5920, 3, 688, 344, 0, 5919, 5915, 1, 0, 0, 0, 5919, 5917, 1, 0, 0, 0, 5920, 495, 1, 0, 0, 0, 5921, 5923, 5, 636, 0, 0, 5922, 5921, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 5939, 5, 410, 0, 0, 5925, 5926, 5, 477, 0, 0, 5926, 5939, 5, 634, 0, 0, 5927, 5939, 5, 556, 0, 0, 5928, 5939, 5, 725, 0, 0, 5929, 5931, 5, 436, 0, 0, 5930, 5929, 1, 0, 0, 0, 5930, 5931, 1, 0, 0, 0, 5931, 5932, 1, 0, 0, 0, 5932, 5939, 5, 563, 0, 0, 5933, 5939, 5, 565, 0, 0, 5934, 5935, 5, 614, 0, 0, 5935, 5939, 5, 447, 0, 0, 5936, 5939, 5, 339, 0, 0, 5937, 5939, 5, 383, 0, 0, 5938, 5922, 1, 0, 0, 0, 5938, 5925, 1, 0, 0, 0, 5938, 5927, 1, 0, 0, 0, 5938, 5928, 1, 0, 0, 0, 5938, 5930, 1, 0, 0, 0, 5938, 5933, 1, 0, 0, 0, 5938, 5934, 1, 0, 0, 0, 5938, 5936, 1, 0, 0, 0, 5938, 5937, 1, 0, 0, 0, 5939, 497, 1, 0, 0, 0, 5940, 5949, 5, 416, 0, 0, 5941, 5942, 5, 172, 0, 0, 5942, 5949, 5, 634, 0, 0, 5943, 5945, 5, 436, 0, 0, 5944, 5943, 1, 0, 0, 0, 5944, 5945, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 5949, 5, 742, 0, 0, 5947, 5949, 5, 655, 0, 0, 5948, 5940, 1, 0, 0, 0, 5948, 5941, 1, 0, 0, 0, 5948, 5944, 1, 0, 0, 0, 5948, 5947, 1, 0, 0, 0, 5949, 499, 1, 0, 0, 0, 5950, 5963, 5, 6, 0, 0, 5951, 5952, 5, 347, 0, 0, 5952, 5963, 5, 461, 0, 0, 5953, 5954, 5, 382, 0, 0, 5954, 5963, 5, 645, 0, 0, 5955, 5963, 5, 385, 0, 0, 5956, 5963, 5, 463, 0, 0, 5957, 5963, 5, 792, 0, 0, 5958, 5959, 5, 544, 0, 0, 5959, 5963, 5, 426, 0, 0, 5960, 5963, 5, 621, 0, 0, 5961, 5963, 5, 644, 0, 0, 5962, 5950, 1, 0, 0, 0, 5962, 5951, 1, 0, 0, 0, 5962, 5953, 1, 0, 0, 0, 5962, 5955, 1, 0, 0, 0, 5962, 5956, 1, 0, 0, 0, 5962, 5957, 1, 0, 0, 0, 5962, 5958, 1, 0, 0, 0, 5962, 5960, 1, 0, 0, 0, 5962, 5961, 1, 0, 0, 0, 5963, 501, 1, 0, 0, 0, 5964, 5965, 5, 345, 0, 0, 5965, 5966, 5, 1148, 0, 0, 5966, 503, 1, 0, 0, 0, 5967, 5968, 5, 351, 0, 0, 5968, 5969, 5, 81, 0, 0, 5969, 5974, 3, 516, 258, 0, 5970, 5971, 5, 1135, 0, 0, 5971, 5973, 3, 516, 258, 0, 5972, 5970, 1, 0, 0, 0, 5973, 5976, 1, 0, 0, 0, 5974, 5972, 1, 0, 0, 0, 5974, 5975, 1, 0, 0, 0, 5975, 5984, 1, 0, 0, 0, 5976, 5974, 1, 0, 0, 0, 5977, 5978, 5, 129, 0, 0, 5978, 5981, 5, 1133, 0, 0, 5979, 5982, 3, 616, 308, 0, 5980, 5982, 5, 6, 0, 0, 5981, 5979, 1, 0, 0, 0, 5981, 5980, 1, 0, 0, 0, 5982, 5983, 1, 0, 0, 0, 5983, 5985, 5, 1134, 0, 0, 5984, 5977, 1, 0, 0, 0, 5984, 5985, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5987, 5, 80, 0, 0, 5987, 5988, 3, 584, 292, 0, 5988, 505, 1, 0, 0, 0, 5989, 5991, 5, 432, 0, 0, 5990, 5992, 7, 72, 0, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 5998, 3, 518, 259, 0, 5994, 5995, 5, 1135, 0, 0, 5995, 5997, 3, 518, 259, 0, 5996, 5994, 1, 0, 0, 0, 5997, 6000, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 507, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 6003, 5, 93, 0, 0, 6002, 6004, 7, 85, 0, 0, 6003, 6002, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 6005, 1, 0, 0, 0, 6005, 6006, 3, 688, 344, 0, 6006, 509, 1, 0, 0, 0, 6007, 6008, 5, 102, 0, 0, 6008, 6009, 5, 81, 0, 0, 6009, 6010, 5, 87, 0, 0, 6010, 6011, 5, 351, 0, 0, 6011, 6016, 3, 522, 261, 0, 6012, 6013, 5, 1135, 0, 0, 6013, 6015, 3, 522, 261, 0, 6014, 6012, 1, 0, 0, 0, 6015, 6018, 1, 0, 0, 0, 6016, 6014, 1, 0, 0, 0, 6016, 6017, 1, 0, 0, 0, 6017, 511, 1, 0, 0, 0, 6018, 6016, 1, 0, 0, 0, 6019, 6020, 5, 589, 0, 0, 6020, 6021, 5, 567, 0, 0, 6021, 6022, 5, 351, 0, 0, 6022, 513, 1, 0, 0, 0, 6023, 6024, 5, 739, 0, 0, 6024, 515, 1, 0, 0, 0, 6025, 6033, 3, 550, 275, 0, 6026, 6028, 7, 20, 0, 0, 6027, 6026, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, 6030, 5, 1133, 0, 0, 6030, 6031, 3, 616, 308, 0, 6031, 6032, 5, 1134, 0, 0, 6032, 6034, 1, 0, 0, 0, 6033, 6027, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 517, 1, 0, 0, 0, 6035, 6054, 5, 394, 0, 0, 6036, 6054, 5, 447, 0, 0, 6037, 6039, 7, 86, 0, 0, 6038, 6037, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 1, 0, 0, 0, 6040, 6054, 5, 476, 0, 0, 6041, 6054, 5, 540, 0, 0, 6042, 6054, 5, 725, 0, 0, 6043, 6044, 5, 567, 0, 0, 6044, 6054, 5, 351, 0, 0, 6045, 6054, 5, 634, 0, 0, 6046, 6054, 5, 667, 0, 0, 6047, 6051, 5, 742, 0, 0, 6048, 6049, 5, 192, 0, 0, 6049, 6050, 5, 134, 0, 0, 6050, 6052, 5, 103, 0, 0, 6051, 6048, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6054, 1, 0, 0, 0, 6053, 6035, 1, 0, 0, 0, 6053, 6036, 1, 0, 0, 0, 6053, 6038, 1, 0, 0, 0, 6053, 6041, 1, 0, 0, 0, 6053, 6042, 1, 0, 0, 0, 6053, 6043, 1, 0, 0, 0, 6053, 6045, 1, 0, 0, 0, 6053, 6046, 1, 0, 0, 0, 6053, 6047, 1, 0, 0, 0, 6054, 6068, 1, 0, 0, 0, 6055, 6056, 5, 574, 0, 0, 6056, 6058, 5, 476, 0, 0, 6057, 6059, 3, 354, 177, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6068, 1, 0, 0, 0, 6060, 6062, 7, 54, 0, 0, 6061, 6063, 3, 620, 310, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6065, 1, 0, 0, 0, 6064, 6066, 3, 520, 260, 0, 6065, 6064, 1, 0, 0, 0, 6065, 6066, 1, 0, 0, 0, 6066, 6068, 1, 0, 0, 0, 6067, 6053, 1, 0, 0, 0, 6067, 6055, 1, 0, 0, 0, 6067, 6060, 1, 0, 0, 0, 6068, 519, 1, 0, 0, 0, 6069, 6070, 5, 192, 0, 0, 6070, 6071, 5, 134, 0, 0, 6071, 6075, 5, 103, 0, 0, 6072, 6073, 5, 65, 0, 0, 6073, 6075, 5, 421, 0, 0, 6074, 6069, 1, 0, 0, 0, 6074, 6072, 1, 0, 0, 0, 6075, 521, 1, 0, 0, 0, 6076, 6084, 3, 550, 275, 0, 6077, 6078, 5, 129, 0, 0, 6078, 6081, 5, 1133, 0, 0, 6079, 6082, 3, 616, 308, 0, 6080, 6082, 5, 6, 0, 0, 6081, 6079, 1, 0, 0, 0, 6081, 6080, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6085, 5, 1134, 0, 0, 6084, 6077, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6093, 1, 0, 0, 0, 6086, 6088, 7, 20, 0, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6089, 1, 0, 0, 0, 6089, 6090, 5, 1133, 0, 0, 6090, 6091, 3, 616, 308, 0, 6091, 6092, 5, 1134, 0, 0, 6092, 6094, 1, 0, 0, 0, 6093, 6087, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6097, 1, 0, 0, 0, 6095, 6096, 5, 78, 0, 0, 6096, 6098, 5, 470, 0, 0, 6097, 6095, 1, 0, 0, 0, 6097, 6098, 1, 0, 0, 0, 6098, 523, 1, 0, 0, 0, 6099, 6100, 7, 87, 0, 0, 6100, 6103, 3, 550, 275, 0, 6101, 6104, 3, 584, 292, 0, 6102, 6104, 5, 1148, 0, 0, 6103, 6101, 1, 0, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 525, 1, 0, 0, 0, 6105, 6109, 7, 87, 0, 0, 6106, 6107, 7, 88, 0, 0, 6107, 6108, 5, 1124, 0, 0, 6108, 6110, 7, 89, 0, 0, 6109, 6106, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6112, 3, 546, 273, 0, 6112, 527, 1, 0, 0, 0, 6113, 6114, 5, 444, 0, 0, 6114, 6115, 5, 1148, 0, 0, 6115, 529, 1, 0, 0, 0, 6116, 6117, 5, 186, 0, 0, 6117, 6118, 3, 584, 292, 0, 6118, 531, 1, 0, 0, 0, 6119, 6127, 5, 156, 0, 0, 6120, 6122, 5, 162, 0, 0, 6121, 6123, 5, 669, 0, 0, 6122, 6121, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6128, 3, 594, 297, 0, 6125, 6128, 5, 1156, 0, 0, 6126, 6128, 5, 1157, 0, 0, 6127, 6120, 1, 0, 0, 0, 6127, 6125, 1, 0, 0, 0, 6127, 6126, 1, 0, 0, 0, 6128, 6138, 1, 0, 0, 0, 6129, 6130, 5, 153, 0, 0, 6130, 6135, 3, 536, 268, 0, 6131, 6132, 5, 1135, 0, 0, 6132, 6134, 3, 536, 268, 0, 6133, 6131, 1, 0, 0, 0, 6134, 6137, 1, 0, 0, 0, 6135, 6133, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6139, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, 0, 6138, 6129, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 533, 1, 0, 0, 0, 6140, 6148, 5, 143, 0, 0, 6141, 6143, 5, 162, 0, 0, 6142, 6144, 5, 669, 0, 0, 6143, 6142, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6145, 1, 0, 0, 0, 6145, 6149, 3, 594, 297, 0, 6146, 6149, 5, 1156, 0, 0, 6147, 6149, 5, 1157, 0, 0, 6148, 6141, 1, 0, 0, 0, 6148, 6146, 1, 0, 0, 0, 6148, 6147, 1, 0, 0, 0, 6148, 6149, 1, 0, 0, 0, 6149, 6159, 1, 0, 0, 0, 6150, 6151, 5, 153, 0, 0, 6151, 6156, 3, 536, 268, 0, 6152, 6153, 5, 1135, 0, 0, 6153, 6155, 3, 536, 268, 0, 6154, 6152, 1, 0, 0, 0, 6155, 6158, 1, 0, 0, 0, 6156, 6154, 1, 0, 0, 0, 6156, 6157, 1, 0, 0, 0, 6157, 6160, 1, 0, 0, 0, 6158, 6156, 1, 0, 0, 0, 6159, 6150, 1, 0, 0, 0, 6159, 6160, 1, 0, 0, 0, 6160, 535, 1, 0, 0, 0, 6161, 6162, 7, 90, 0, 0, 6162, 6167, 5, 1124, 0, 0, 6163, 6168, 3, 594, 297, 0, 6164, 6168, 5, 1149, 0, 0, 6165, 6168, 3, 566, 283, 0, 6166, 6168, 3, 586, 293, 0, 6167, 6163, 1, 0, 0, 0, 6167, 6164, 1, 0, 0, 0, 6167, 6165, 1, 0, 0, 0, 6167, 6166, 1, 0, 0, 0, 6168, 537, 1, 0, 0, 0, 6169, 6171, 5, 192, 0, 0, 6170, 6172, 5, 571, 0, 0, 6171, 6170, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 6178, 3, 48, 24, 0, 6174, 6175, 5, 1135, 0, 0, 6175, 6177, 3, 48, 24, 0, 6176, 6174, 1, 0, 0, 0, 6177, 6180, 1, 0, 0, 0, 6178, 6176, 1, 0, 0, 0, 6178, 6179, 1, 0, 0, 0, 6179, 539, 1, 0, 0, 0, 6180, 6178, 1, 0, 0, 0, 6181, 6182, 5, 172, 0, 0, 6182, 6184, 3, 550, 275, 0, 6183, 6185, 3, 228, 114, 0, 6184, 6183, 1, 0, 0, 0, 6184, 6185, 1, 0, 0, 0, 6185, 6187, 1, 0, 0, 0, 6186, 6188, 3, 292, 146, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 541, 1, 0, 0, 0, 6189, 6191, 5, 71, 0, 0, 6190, 6192, 7, 91, 0, 0, 6191, 6190, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6225, 5, 48, 0, 0, 6194, 6195, 3, 490, 245, 0, 6195, 6196, 5, 1124, 0, 0, 6196, 6204, 7, 92, 0, 0, 6197, 6198, 5, 1135, 0, 0, 6198, 6199, 3, 490, 245, 0, 6199, 6200, 5, 1124, 0, 0, 6200, 6201, 7, 92, 0, 0, 6201, 6203, 1, 0, 0, 0, 6202, 6197, 1, 0, 0, 0, 6203, 6206, 1, 0, 0, 0, 6204, 6202, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 6226, 1, 0, 0, 0, 6206, 6204, 1, 0, 0, 0, 6207, 6210, 5, 29, 0, 0, 6208, 6211, 3, 590, 295, 0, 6209, 6211, 3, 490, 245, 0, 6210, 6208, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 6213, 3, 490, 245, 0, 6213, 6214, 5, 1124, 0, 0, 6214, 6222, 3, 544, 272, 0, 6215, 6216, 5, 1135, 0, 0, 6216, 6217, 3, 490, 245, 0, 6217, 6218, 5, 1124, 0, 0, 6218, 6219, 3, 544, 272, 0, 6219, 6221, 1, 0, 0, 0, 6220, 6215, 1, 0, 0, 0, 6221, 6224, 1, 0, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 6226, 1, 0, 0, 0, 6224, 6222, 1, 0, 0, 0, 6225, 6194, 1, 0, 0, 0, 6225, 6207, 1, 0, 0, 0, 6226, 543, 1, 0, 0, 0, 6227, 6228, 7, 93, 0, 0, 6228, 545, 1, 0, 0, 0, 6229, 6235, 3, 198, 99, 0, 6230, 6235, 3, 184, 92, 0, 6231, 6235, 3, 190, 95, 0, 6232, 6235, 3, 196, 98, 0, 6233, 6235, 3, 200, 100, 0, 6234, 6229, 1, 0, 0, 0, 6234, 6230, 1, 0, 0, 0, 6234, 6231, 1, 0, 0, 0, 6234, 6232, 1, 0, 0, 0, 6234, 6233, 1, 0, 0, 0, 6235, 6240, 1, 0, 0, 0, 6236, 6237, 5, 65, 0, 0, 6237, 6238, 5, 376, 0, 0, 6238, 6240, 3, 584, 292, 0, 6239, 6234, 1, 0, 0, 0, 6239, 6236, 1, 0, 0, 0, 6240, 547, 1, 0, 0, 0, 6241, 6245, 3, 584, 292, 0, 6242, 6246, 5, 1155, 0, 0, 6243, 6244, 5, 1132, 0, 0, 6244, 6246, 3, 584, 292, 0, 6245, 6242, 1, 0, 0, 0, 6245, 6243, 1, 0, 0, 0, 6245, 6246, 1, 0, 0, 0, 6246, 549, 1, 0, 0, 0, 6247, 6248, 3, 548, 274, 0, 6248, 551, 1, 0, 0, 0, 6249, 6254, 3, 550, 275, 0, 6250, 6251, 5, 1135, 0, 0, 6251, 6253, 3, 550, 275, 0, 6252, 6250, 1, 0, 0, 0, 6253, 6256, 1, 0, 0, 0, 6254, 6252, 1, 0, 0, 0, 6254, 6255, 1, 0, 0, 0, 6255, 553, 1, 0, 0, 0, 6256, 6254, 1, 0, 0, 0, 6257, 6260, 3, 564, 282, 0, 6258, 6260, 3, 584, 292, 0, 6259, 6257, 1, 0, 0, 0, 6259, 6258, 1, 0, 0, 0, 6260, 555, 1, 0, 0, 0, 6261, 6266, 3, 584, 292, 0, 6262, 6264, 3, 588, 294, 0, 6263, 6265, 3, 588, 294, 0, 6264, 6263, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 6267, 1, 0, 0, 0, 6266, 6262, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6276, 1, 0, 0, 0, 6268, 6270, 9, 0, 0, 0, 6269, 6268, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6271, 1, 0, 0, 0, 6271, 6273, 3, 588, 294, 0, 6272, 6274, 3, 588, 294, 0, 6273, 6272, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 1, 0, 0, 0, 6275, 6261, 1, 0, 0, 0, 6275, 6269, 1, 0, 0, 0, 6276, 557, 1, 0, 0, 0, 6277, 6280, 3, 584, 292, 0, 6278, 6280, 5, 1148, 0, 0, 6279, 6277, 1, 0, 0, 0, 6279, 6278, 1, 0, 0, 0, 6280, 6285, 1, 0, 0, 0, 6281, 6282, 5, 1133, 0, 0, 6282, 6283, 3, 590, 295, 0, 6283, 6284, 5, 1134, 0, 0, 6284, 6286, 1, 0, 0, 0, 6285, 6281, 1, 0, 0, 0, 6285, 6286, 1, 0, 0, 0, 6286, 6289, 1, 0, 0, 0, 6287, 6289, 3, 688, 344, 0, 6288, 6279, 1, 0, 0, 0, 6288, 6287, 1, 0, 0, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6292, 7, 48, 0, 0, 6291, 6290, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 559, 1, 0, 0, 0, 6293, 6298, 5, 1148, 0, 0, 6294, 6298, 5, 1156, 0, 0, 6295, 6298, 5, 697, 0, 0, 6296, 6298, 3, 718, 359, 0, 6297, 6293, 1, 0, 0, 0, 6297, 6294, 1, 0, 0, 0, 6297, 6295, 1, 0, 0, 0, 6297, 6296, 1, 0, 0, 0, 6298, 561, 1, 0, 0, 0, 6299, 6300, 7, 94, 0, 0, 6300, 563, 1, 0, 0, 0, 6301, 6307, 3, 560, 280, 0, 6302, 6303, 3, 560, 280, 0, 6303, 6304, 3, 562, 281, 0, 6304, 6307, 1, 0, 0, 0, 6305, 6307, 3, 60, 30, 0, 6306, 6301, 1, 0, 0, 0, 6306, 6302, 1, 0, 0, 0, 6306, 6305, 1, 0, 0, 0, 6307, 565, 1, 0, 0, 0, 6308, 6309, 7, 95, 0, 0, 6309, 567, 1, 0, 0, 0, 6310, 6315, 5, 226, 0, 0, 6311, 6315, 3, 708, 354, 0, 6312, 6315, 5, 1148, 0, 0, 6313, 6315, 5, 1145, 0, 0, 6314, 6310, 1, 0, 0, 0, 6314, 6311, 1, 0, 0, 0, 6314, 6312, 1, 0, 0, 0, 6314, 6313, 1, 0, 0, 0, 6315, 569, 1, 0, 0, 0, 6316, 6319, 3, 584, 292, 0, 6317, 6319, 5, 1148, 0, 0, 6318, 6316, 1, 0, 0, 0, 6318, 6317, 1, 0, 0, 0, 6319, 571, 1, 0, 0, 0, 6320, 6324, 3, 574, 287, 0, 6321, 6324, 5, 1156, 0, 0, 6322, 6324, 5, 1148, 0, 0, 6323, 6320, 1, 0, 0, 0, 6323, 6321, 1, 0, 0, 0, 6323, 6322, 1, 0, 0, 0, 6324, 573, 1, 0, 0, 0, 6325, 6326, 7, 96, 0, 0, 6326, 575, 1, 0, 0, 0, 6327, 6328, 3, 590, 295, 0, 6328, 6329, 5, 1121, 0, 0, 6329, 6330, 3, 590, 295, 0, 6330, 6331, 5, 1121, 0, 0, 6331, 6332, 3, 590, 295, 0, 6332, 6333, 5, 1121, 0, 0, 6333, 6334, 3, 590, 295, 0, 6334, 6335, 5, 1121, 0, 0, 6335, 6341, 3, 590, 295, 0, 6336, 6337, 5, 1144, 0, 0, 6337, 6338, 3, 590, 295, 0, 6338, 6339, 5, 1121, 0, 0, 6339, 6340, 3, 590, 295, 0, 6340, 6342, 1, 0, 0, 0, 6341, 6336, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6341, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 577, 1, 0, 0, 0, 6345, 6352, 3, 580, 290, 0, 6346, 6347, 5, 1135, 0, 0, 6347, 6350, 3, 580, 290, 0, 6348, 6349, 5, 1135, 0, 0, 6349, 6351, 3, 590, 295, 0, 6350, 6348, 1, 0, 0, 0, 6350, 6351, 1, 0, 0, 0, 6351, 6353, 1, 0, 0, 0, 6352, 6346, 1, 0, 0, 0, 6352, 6353, 1, 0, 0, 0, 6353, 579, 1, 0, 0, 0, 6354, 6362, 5, 1148, 0, 0, 6355, 6362, 5, 1153, 0, 0, 6356, 6358, 5, 1150, 0, 0, 6357, 6356, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 6357, 1, 0, 0, 0, 6359, 6360, 1, 0, 0, 0, 6360, 6362, 1, 0, 0, 0, 6361, 6354, 1, 0, 0, 0, 6361, 6355, 1, 0, 0, 0, 6361, 6357, 1, 0, 0, 0, 6362, 581, 1, 0, 0, 0, 6363, 6366, 3, 584, 292, 0, 6364, 6366, 5, 1148, 0, 0, 6365, 6363, 1, 0, 0, 0, 6365, 6364, 1, 0, 0, 0, 6366, 583, 1, 0, 0, 0, 6367, 6371, 3, 586, 293, 0, 6368, 6371, 5, 1145, 0, 0, 6369, 6371, 5, 1148, 0, 0, 6370, 6367, 1, 0, 0, 0, 6370, 6368, 1, 0, 0, 0, 6370, 6369, 1, 0, 0, 0, 6371, 585, 1, 0, 0, 0, 6372, 6382, 5, 1156, 0, 0, 6373, 6382, 3, 708, 354, 0, 6374, 6382, 3, 710, 355, 0, 6375, 6382, 3, 574, 287, 0, 6376, 6382, 3, 712, 356, 0, 6377, 6382, 3, 714, 357, 0, 6378, 6382, 3, 716, 358, 0, 6379, 6382, 3, 718, 359, 0, 6380, 6382, 3, 680, 340, 0, 6381, 6372, 1, 0, 0, 0, 6381, 6373, 1, 0, 0, 0, 6381, 6374, 1, 0, 0, 0, 6381, 6375, 1, 0, 0, 0, 6381, 6376, 1, 0, 0, 0, 6381, 6377, 1, 0, 0, 0, 6381, 6378, 1, 0, 0, 0, 6381, 6379, 1, 0, 0, 0, 6381, 6380, 1, 0, 0, 0, 6382, 587, 1, 0, 0, 0, 6383, 6387, 5, 1155, 0, 0, 6384, 6385, 5, 1132, 0, 0, 6385, 6387, 3, 584, 292, 0, 6386, 6383, 1, 0, 0, 0, 6386, 6384, 1, 0, 0, 0, 6387, 589, 1, 0, 0, 0, 6388, 6389, 7, 97, 0, 0, 6389, 591, 1, 0, 0, 0, 6390, 6393, 5, 1146, 0, 0, 6391, 6393, 3, 590, 295, 0, 6392, 6390, 1, 0, 0, 0, 6392, 6391, 1, 0, 0, 0, 6393, 593, 1, 0, 0, 0, 6394, 6396, 5, 1154, 0, 0, 6395, 6394, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6397, 1, 0, 0, 0, 6397, 6400, 5, 1148, 0, 0, 6398, 6400, 5, 1147, 0, 0, 6399, 6395, 1, 0, 0, 0, 6399, 6398, 1, 0, 0, 0, 6400, 6402, 1, 0, 0, 0, 6401, 6403, 5, 1148, 0, 0, 6402, 6401, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6402, 1, 0, 0, 0, 6404, 6405, 1, 0, 0, 0, 6405, 6418, 1, 0, 0, 0, 6406, 6408, 5, 1154, 0, 0, 6407, 6406, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6412, 5, 1148, 0, 0, 6410, 6412, 5, 1147, 0, 0, 6411, 6407, 1, 0, 0, 0, 6411, 6410, 1, 0, 0, 0, 6412, 6415, 1, 0, 0, 0, 6413, 6414, 5, 27, 0, 0, 6414, 6416, 3, 570, 285, 0, 6415, 6413, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6418, 1, 0, 0, 0, 6417, 6399, 1, 0, 0, 0, 6417, 6411, 1, 0, 0, 0, 6418, 595, 1, 0, 0, 0, 6419, 6420, 7, 98, 0, 0, 6420, 597, 1, 0, 0, 0, 6421, 6423, 5, 1154, 0, 0, 6422, 6421, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 5, 1150, 0, 0, 6425, 599, 1, 0, 0, 0, 6426, 6428, 5, 114, 0, 0, 6427, 6426, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6430, 7, 99, 0, 0, 6430, 601, 1, 0, 0, 0, 6431, 6444, 3, 594, 297, 0, 6432, 6444, 3, 590, 295, 0, 6433, 6434, 5, 1121, 0, 0, 6434, 6444, 3, 590, 295, 0, 6435, 6444, 3, 598, 299, 0, 6436, 6444, 3, 596, 298, 0, 6437, 6444, 5, 1151, 0, 0, 6438, 6444, 5, 1153, 0, 0, 6439, 6441, 5, 114, 0, 0, 6440, 6439, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6442, 1, 0, 0, 0, 6442, 6444, 7, 99, 0, 0, 6443, 6431, 1, 0, 0, 0, 6443, 6432, 1, 0, 0, 0, 6443, 6433, 1, 0, 0, 0, 6443, 6435, 1, 0, 0, 0, 6443, 6436, 1, 0, 0, 0, 6443, 6437, 1, 0, 0, 0, 6443, 6438, 1, 0, 0, 0, 6443, 6440, 1, 0, 0, 0, 6444, 603, 1, 0, 0, 0, 6445, 6447, 7, 100, 0, 0, 6446, 6448, 5, 238, 0, 0, 6447, 6446, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6450, 1, 0, 0, 0, 6449, 6451, 3, 610, 305, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6453, 1, 0, 0, 0, 6452, 6454, 5, 226, 0, 0, 6453, 6452, 1, 0, 0, 0, 6453, 6454, 1, 0, 0, 0, 6454, 6458, 1, 0, 0, 0, 6455, 6456, 3, 58, 29, 0, 6456, 6457, 3, 568, 284, 0, 6457, 6459, 1, 0, 0, 0, 6458, 6455, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6463, 1, 0, 0, 0, 6460, 6461, 5, 27, 0, 0, 6461, 6464, 3, 570, 285, 0, 6462, 6464, 5, 226, 0, 0, 6463, 6460, 1, 0, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6572, 1, 0, 0, 0, 6465, 6466, 5, 225, 0, 0, 6466, 6467, 7, 101, 0, 0, 6467, 6469, 5, 238, 0, 0, 6468, 6470, 3, 610, 305, 0, 6469, 6468, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6472, 1, 0, 0, 0, 6471, 6473, 5, 226, 0, 0, 6472, 6471, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 6572, 1, 0, 0, 0, 6474, 6475, 5, 225, 0, 0, 6475, 6477, 7, 102, 0, 0, 6476, 6478, 3, 610, 305, 0, 6477, 6476, 1, 0, 0, 0, 6477, 6478, 1, 0, 0, 0, 6478, 6480, 1, 0, 0, 0, 6479, 6481, 5, 226, 0, 0, 6480, 6479, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6572, 1, 0, 0, 0, 6482, 6483, 5, 518, 0, 0, 6483, 6485, 5, 223, 0, 0, 6484, 6486, 3, 610, 305, 0, 6485, 6484, 1, 0, 0, 0, 6485, 6486, 1, 0, 0, 0, 6486, 6488, 1, 0, 0, 0, 6487, 6489, 5, 226, 0, 0, 6488, 6487, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6572, 1, 0, 0, 0, 6490, 6492, 7, 103, 0, 0, 6491, 6493, 3, 610, 305, 0, 6492, 6491, 1, 0, 0, 0, 6492, 6493, 1, 0, 0, 0, 6493, 6497, 1, 0, 0, 0, 6494, 6496, 7, 104, 0, 0, 6495, 6494, 1, 0, 0, 0, 6496, 6499, 1, 0, 0, 0, 6497, 6495, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6572, 1, 0, 0, 0, 6499, 6497, 1, 0, 0, 0, 6500, 6502, 5, 208, 0, 0, 6501, 6503, 3, 612, 306, 0, 6502, 6501, 1, 0, 0, 0, 6502, 6503, 1, 0, 0, 0, 6503, 6507, 1, 0, 0, 0, 6504, 6506, 7, 104, 0, 0, 6505, 6504, 1, 0, 0, 0, 6506, 6509, 1, 0, 0, 0, 6507, 6505, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6572, 1, 0, 0, 0, 6509, 6507, 1, 0, 0, 0, 6510, 6512, 5, 209, 0, 0, 6511, 6513, 5, 210, 0, 0, 6512, 6511, 1, 0, 0, 0, 6512, 6513, 1, 0, 0, 0, 6513, 6515, 1, 0, 0, 0, 6514, 6516, 3, 612, 306, 0, 6515, 6514, 1, 0, 0, 0, 6515, 6516, 1, 0, 0, 0, 6516, 6520, 1, 0, 0, 0, 6517, 6519, 7, 104, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 6522, 1, 0, 0, 0, 6520, 6518, 1, 0, 0, 0, 6520, 6521, 1, 0, 0, 0, 6521, 6572, 1, 0, 0, 0, 6522, 6520, 1, 0, 0, 0, 6523, 6525, 7, 105, 0, 0, 6524, 6526, 3, 614, 307, 0, 6525, 6524, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6530, 1, 0, 0, 0, 6527, 6529, 7, 104, 0, 0, 6528, 6527, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6572, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6572, 7, 106, 0, 0, 6534, 6536, 7, 107, 0, 0, 6535, 6537, 3, 610, 305, 0, 6536, 6535, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 6572, 1, 0, 0, 0, 6538, 6539, 7, 108, 0, 0, 6539, 6541, 3, 606, 303, 0, 6540, 6542, 5, 226, 0, 0, 6541, 6540, 1, 0, 0, 0, 6541, 6542, 1, 0, 0, 0, 6542, 6546, 1, 0, 0, 0, 6543, 6544, 3, 58, 29, 0, 6544, 6545, 3, 568, 284, 0, 6545, 6547, 1, 0, 0, 0, 6546, 6543, 1, 0, 0, 0, 6546, 6547, 1, 0, 0, 0, 6547, 6572, 1, 0, 0, 0, 6548, 6551, 7, 109, 0, 0, 6549, 6550, 5, 1012, 0, 0, 6550, 6552, 3, 590, 295, 0, 6551, 6549, 1, 0, 0, 0, 6551, 6552, 1, 0, 0, 0, 6552, 6572, 1, 0, 0, 0, 6553, 6555, 5, 231, 0, 0, 6554, 6556, 5, 223, 0, 0, 6555, 6554, 1, 0, 0, 0, 6555, 6556, 1, 0, 0, 0, 6556, 6558, 1, 0, 0, 0, 6557, 6559, 5, 226, 0, 0, 6558, 6557, 1, 0, 0, 0, 6558, 6559, 1, 0, 0, 0, 6559, 6563, 1, 0, 0, 0, 6560, 6561, 3, 58, 29, 0, 6561, 6562, 3, 568, 284, 0, 6562, 6564, 1, 0, 0, 0, 6563, 6560, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6567, 1, 0, 0, 0, 6565, 6566, 5, 27, 0, 0, 6566, 6568, 3, 570, 285, 0, 6567, 6565, 1, 0, 0, 0, 6567, 6568, 1, 0, 0, 0, 6568, 6572, 1, 0, 0, 0, 6569, 6570, 5, 231, 0, 0, 6570, 6572, 5, 227, 0, 0, 6571, 6445, 1, 0, 0, 0, 6571, 6465, 1, 0, 0, 0, 6571, 6474, 1, 0, 0, 0, 6571, 6482, 1, 0, 0, 0, 6571, 6490, 1, 0, 0, 0, 6571, 6500, 1, 0, 0, 0, 6571, 6510, 1, 0, 0, 0, 6571, 6523, 1, 0, 0, 0, 6571, 6533, 1, 0, 0, 0, 6571, 6534, 1, 0, 0, 0, 6571, 6538, 1, 0, 0, 0, 6571, 6548, 1, 0, 0, 0, 6571, 6553, 1, 0, 0, 0, 6571, 6569, 1, 0, 0, 0, 6572, 605, 1, 0, 0, 0, 6573, 6574, 5, 1133, 0, 0, 6574, 6579, 5, 1148, 0, 0, 6575, 6576, 5, 1135, 0, 0, 6576, 6578, 5, 1148, 0, 0, 6577, 6575, 1, 0, 0, 0, 6578, 6581, 1, 0, 0, 0, 6579, 6577, 1, 0, 0, 0, 6579, 6580, 1, 0, 0, 0, 6580, 6582, 1, 0, 0, 0, 6581, 6579, 1, 0, 0, 0, 6582, 6583, 5, 1134, 0, 0, 6583, 607, 1, 0, 0, 0, 6584, 6586, 7, 110, 0, 0, 6585, 6587, 3, 610, 305, 0, 6586, 6585, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 6607, 1, 0, 0, 0, 6588, 6590, 5, 222, 0, 0, 6589, 6591, 3, 610, 305, 0, 6590, 6589, 1, 0, 0, 0, 6590, 6591, 1, 0, 0, 0, 6591, 6595, 1, 0, 0, 0, 6592, 6593, 3, 58, 29, 0, 6593, 6594, 3, 568, 284, 0, 6594, 6596, 1, 0, 0, 0, 6595, 6592, 1, 0, 0, 0, 6595, 6596, 1, 0, 0, 0, 6596, 6607, 1, 0, 0, 0, 6597, 6607, 7, 111, 0, 0, 6598, 6600, 7, 112, 0, 0, 6599, 6601, 3, 614, 307, 0, 6600, 6599, 1, 0, 0, 0, 6600, 6601, 1, 0, 0, 0, 6601, 6607, 1, 0, 0, 0, 6602, 6604, 7, 113, 0, 0, 6603, 6605, 7, 114, 0, 0, 6604, 6603, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6584, 1, 0, 0, 0, 6606, 6588, 1, 0, 0, 0, 6606, 6597, 1, 0, 0, 0, 6606, 6598, 1, 0, 0, 0, 6606, 6602, 1, 0, 0, 0, 6607, 6609, 1, 0, 0, 0, 6608, 6610, 5, 11, 0, 0, 6609, 6608, 1, 0, 0, 0, 6609, 6610, 1, 0, 0, 0, 6610, 609, 1, 0, 0, 0, 6611, 6612, 5, 1133, 0, 0, 6612, 6613, 3, 590, 295, 0, 6613, 6614, 5, 1134, 0, 0, 6614, 611, 1, 0, 0, 0, 6615, 6616, 5, 1133, 0, 0, 6616, 6617, 3, 590, 295, 0, 6617, 6618, 5, 1135, 0, 0, 6618, 6619, 3, 590, 295, 0, 6619, 6620, 5, 1134, 0, 0, 6620, 613, 1, 0, 0, 0, 6621, 6622, 5, 1133, 0, 0, 6622, 6625, 3, 590, 295, 0, 6623, 6624, 5, 1135, 0, 0, 6624, 6626, 3, 590, 295, 0, 6625, 6623, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 6628, 5, 1134, 0, 0, 6628, 615, 1, 0, 0, 0, 6629, 6634, 3, 584, 292, 0, 6630, 6631, 5, 1135, 0, 0, 6631, 6633, 3, 584, 292, 0, 6632, 6630, 1, 0, 0, 0, 6633, 6636, 1, 0, 0, 0, 6634, 6632, 1, 0, 0, 0, 6634, 6635, 1, 0, 0, 0, 6635, 617, 1, 0, 0, 0, 6636, 6634, 1, 0, 0, 0, 6637, 6642, 3, 556, 278, 0, 6638, 6639, 5, 1135, 0, 0, 6639, 6641, 3, 556, 278, 0, 6640, 6638, 1, 0, 0, 0, 6641, 6644, 1, 0, 0, 0, 6642, 6640, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 619, 1, 0, 0, 0, 6644, 6642, 1, 0, 0, 0, 6645, 6650, 3, 550, 275, 0, 6646, 6647, 5, 1135, 0, 0, 6647, 6649, 3, 550, 275, 0, 6648, 6646, 1, 0, 0, 0, 6649, 6652, 1, 0, 0, 0, 6650, 6648, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 621, 1, 0, 0, 0, 6652, 6650, 1, 0, 0, 0, 6653, 6654, 5, 1133, 0, 0, 6654, 6659, 3, 558, 279, 0, 6655, 6656, 5, 1135, 0, 0, 6656, 6658, 3, 558, 279, 0, 6657, 6655, 1, 0, 0, 0, 6658, 6661, 1, 0, 0, 0, 6659, 6657, 1, 0, 0, 0, 6659, 6660, 1, 0, 0, 0, 6660, 6662, 1, 0, 0, 0, 6661, 6659, 1, 0, 0, 0, 6662, 6663, 5, 1134, 0, 0, 6663, 623, 1, 0, 0, 0, 6664, 6669, 3, 688, 344, 0, 6665, 6666, 5, 1135, 0, 0, 6666, 6668, 3, 688, 344, 0, 6667, 6665, 1, 0, 0, 0, 6668, 6671, 1, 0, 0, 0, 6669, 6667, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 625, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6672, 6677, 3, 638, 319, 0, 6673, 6674, 5, 1135, 0, 0, 6674, 6676, 3, 638, 319, 0, 6675, 6673, 1, 0, 0, 0, 6676, 6679, 1, 0, 0, 0, 6677, 6675, 1, 0, 0, 0, 6677, 6678, 1, 0, 0, 0, 6678, 627, 1, 0, 0, 0, 6679, 6677, 1, 0, 0, 0, 6680, 6685, 3, 602, 301, 0, 6681, 6682, 5, 1135, 0, 0, 6682, 6684, 3, 602, 301, 0, 6683, 6681, 1, 0, 0, 0, 6684, 6687, 1, 0, 0, 0, 6685, 6683, 1, 0, 0, 0, 6685, 6686, 1, 0, 0, 0, 6686, 629, 1, 0, 0, 0, 6687, 6685, 1, 0, 0, 0, 6688, 6693, 5, 1148, 0, 0, 6689, 6690, 5, 1135, 0, 0, 6690, 6692, 5, 1148, 0, 0, 6691, 6689, 1, 0, 0, 0, 6692, 6695, 1, 0, 0, 0, 6693, 6691, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 631, 1, 0, 0, 0, 6695, 6693, 1, 0, 0, 0, 6696, 6701, 5, 1159, 0, 0, 6697, 6698, 5, 1135, 0, 0, 6698, 6700, 5, 1159, 0, 0, 6699, 6697, 1, 0, 0, 0, 6700, 6703, 1, 0, 0, 0, 6701, 6699, 1, 0, 0, 0, 6701, 6702, 1, 0, 0, 0, 6702, 633, 1, 0, 0, 0, 6703, 6701, 1, 0, 0, 0, 6704, 6731, 5, 116, 0, 0, 6705, 6706, 5, 23, 0, 0, 6706, 6707, 5, 1133, 0, 0, 6707, 6708, 3, 688, 344, 0, 6708, 6709, 5, 12, 0, 0, 6709, 6710, 3, 608, 304, 0, 6710, 6711, 5, 1134, 0, 0, 6711, 6731, 1, 0, 0, 0, 6712, 6714, 3, 694, 347, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6715, 1, 0, 0, 0, 6715, 6731, 3, 602, 301, 0, 6716, 6720, 3, 636, 318, 0, 6717, 6718, 5, 118, 0, 0, 6718, 6719, 5, 184, 0, 0, 6719, 6721, 3, 636, 318, 0, 6720, 6717, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6731, 1, 0, 0, 0, 6722, 6723, 5, 1133, 0, 0, 6723, 6724, 3, 688, 344, 0, 6724, 6725, 5, 1134, 0, 0, 6725, 6731, 1, 0, 0, 0, 6726, 6727, 5, 1133, 0, 0, 6727, 6728, 3, 548, 274, 0, 6728, 6729, 5, 1134, 0, 0, 6729, 6731, 1, 0, 0, 0, 6730, 6704, 1, 0, 0, 0, 6730, 6705, 1, 0, 0, 0, 6730, 6713, 1, 0, 0, 0, 6730, 6716, 1, 0, 0, 0, 6730, 6722, 1, 0, 0, 0, 6730, 6726, 1, 0, 0, 0, 6731, 635, 1, 0, 0, 0, 6732, 6738, 7, 115, 0, 0, 6733, 6735, 5, 1133, 0, 0, 6734, 6736, 3, 590, 295, 0, 6735, 6734, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 6737, 1, 0, 0, 0, 6737, 6739, 5, 1134, 0, 0, 6738, 6733, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 6747, 1, 0, 0, 0, 6740, 6741, 5, 323, 0, 0, 6741, 6743, 5, 1133, 0, 0, 6742, 6744, 3, 590, 295, 0, 6743, 6742, 1, 0, 0, 0, 6743, 6744, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6747, 5, 1134, 0, 0, 6746, 6732, 1, 0, 0, 0, 6746, 6740, 1, 0, 0, 0, 6747, 637, 1, 0, 0, 0, 6748, 6751, 3, 688, 344, 0, 6749, 6751, 5, 42, 0, 0, 6750, 6748, 1, 0, 0, 0, 6750, 6749, 1, 0, 0, 0, 6751, 639, 1, 0, 0, 0, 6752, 6753, 5, 77, 0, 0, 6753, 6754, 5, 60, 0, 0, 6754, 641, 1, 0, 0, 0, 6755, 6756, 5, 77, 0, 0, 6756, 6757, 5, 114, 0, 0, 6757, 6758, 5, 60, 0, 0, 6758, 643, 1, 0, 0, 0, 6759, 6760, 5, 123, 0, 0, 6760, 6761, 5, 141, 0, 0, 6761, 645, 1, 0, 0, 0, 6762, 6763, 5, 674, 0, 0, 6763, 6766, 3, 590, 295, 0, 6764, 6766, 5, 527, 0, 0, 6765, 6762, 1, 0, 0, 0, 6765, 6764, 1, 0, 0, 0, 6766, 647, 1, 0, 0, 0, 6767, 6786, 3, 650, 325, 0, 6768, 6786, 3, 658, 329, 0, 6769, 6786, 3, 660, 330, 0, 6770, 6771, 3, 680, 340, 0, 6771, 6773, 5, 1133, 0, 0, 6772, 6774, 3, 684, 342, 0, 6773, 6772, 1, 0, 0, 0, 6773, 6774, 1, 0, 0, 0, 6774, 6775, 1, 0, 0, 0, 6775, 6776, 5, 1134, 0, 0, 6776, 6786, 1, 0, 0, 0, 6777, 6778, 3, 548, 274, 0, 6778, 6780, 5, 1133, 0, 0, 6779, 6781, 3, 684, 342, 0, 6780, 6779, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6782, 1, 0, 0, 0, 6782, 6783, 5, 1134, 0, 0, 6783, 6786, 1, 0, 0, 0, 6784, 6786, 3, 682, 341, 0, 6785, 6767, 1, 0, 0, 0, 6785, 6768, 1, 0, 0, 0, 6785, 6769, 1, 0, 0, 0, 6785, 6770, 1, 0, 0, 0, 6785, 6777, 1, 0, 0, 0, 6785, 6784, 1, 0, 0, 0, 6786, 649, 1, 0, 0, 0, 6787, 6790, 7, 116, 0, 0, 6788, 6789, 5, 1133, 0, 0, 6789, 6791, 5, 1134, 0, 0, 6790, 6788, 1, 0, 0, 0, 6790, 6791, 1, 0, 0, 0, 6791, 6967, 1, 0, 0, 0, 6792, 6967, 3, 60, 30, 0, 6793, 6794, 5, 32, 0, 0, 6794, 6795, 5, 1133, 0, 0, 6795, 6796, 3, 688, 344, 0, 6796, 6797, 5, 1135, 0, 0, 6797, 6798, 3, 608, 304, 0, 6798, 6799, 5, 1134, 0, 0, 6799, 6967, 1, 0, 0, 0, 6800, 6801, 5, 32, 0, 0, 6801, 6802, 5, 1133, 0, 0, 6802, 6803, 3, 688, 344, 0, 6803, 6804, 5, 187, 0, 0, 6804, 6805, 3, 568, 284, 0, 6805, 6806, 5, 1134, 0, 0, 6806, 6967, 1, 0, 0, 0, 6807, 6808, 5, 23, 0, 0, 6808, 6809, 5, 1133, 0, 0, 6809, 6810, 3, 688, 344, 0, 6810, 6811, 5, 12, 0, 0, 6811, 6812, 3, 608, 304, 0, 6812, 6813, 5, 1134, 0, 0, 6813, 6967, 1, 0, 0, 0, 6814, 6815, 5, 188, 0, 0, 6815, 6816, 5, 1133, 0, 0, 6816, 6817, 3, 556, 278, 0, 6817, 6818, 5, 1134, 0, 0, 6818, 6967, 1, 0, 0, 0, 6819, 6820, 5, 22, 0, 0, 6820, 6822, 3, 688, 344, 0, 6821, 6823, 3, 652, 326, 0, 6822, 6821, 1, 0, 0, 0, 6823, 6824, 1, 0, 0, 0, 6824, 6822, 1, 0, 0, 0, 6824, 6825, 1, 0, 0, 0, 6825, 6828, 1, 0, 0, 0, 6826, 6827, 5, 53, 0, 0, 6827, 6829, 3, 686, 343, 0, 6828, 6826, 1, 0, 0, 0, 6828, 6829, 1, 0, 0, 0, 6829, 6830, 1, 0, 0, 0, 6830, 6831, 5, 407, 0, 0, 6831, 6967, 1, 0, 0, 0, 6832, 6834, 5, 22, 0, 0, 6833, 6835, 3, 652, 326, 0, 6834, 6833, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6834, 1, 0, 0, 0, 6836, 6837, 1, 0, 0, 0, 6837, 6840, 1, 0, 0, 0, 6838, 6839, 5, 53, 0, 0, 6839, 6841, 3, 686, 343, 0, 6840, 6838, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 1, 0, 0, 0, 6842, 6843, 5, 407, 0, 0, 6843, 6967, 1, 0, 0, 0, 6844, 6845, 5, 222, 0, 0, 6845, 6846, 5, 1133, 0, 0, 6846, 6849, 3, 684, 342, 0, 6847, 6848, 5, 187, 0, 0, 6848, 6850, 3, 568, 284, 0, 6849, 6847, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6852, 5, 1134, 0, 0, 6852, 6967, 1, 0, 0, 0, 6853, 6854, 5, 324, 0, 0, 6854, 6857, 5, 1133, 0, 0, 6855, 6858, 3, 594, 297, 0, 6856, 6858, 3, 688, 344, 0, 6857, 6855, 1, 0, 0, 0, 6857, 6856, 1, 0, 0, 0, 6858, 6859, 1, 0, 0, 0, 6859, 6862, 5, 80, 0, 0, 6860, 6863, 3, 594, 297, 0, 6861, 6863, 3, 688, 344, 0, 6862, 6860, 1, 0, 0, 0, 6862, 6861, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6865, 5, 1134, 0, 0, 6865, 6967, 1, 0, 0, 0, 6866, 6867, 7, 117, 0, 0, 6867, 6870, 5, 1133, 0, 0, 6868, 6871, 3, 594, 297, 0, 6869, 6871, 3, 688, 344, 0, 6870, 6868, 1, 0, 0, 0, 6870, 6869, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 6875, 5, 68, 0, 0, 6873, 6876, 3, 590, 295, 0, 6874, 6876, 3, 688, 344, 0, 6875, 6873, 1, 0, 0, 0, 6875, 6874, 1, 0, 0, 0, 6876, 6882, 1, 0, 0, 0, 6877, 6880, 5, 65, 0, 0, 6878, 6881, 3, 590, 295, 0, 6879, 6881, 3, 688, 344, 0, 6880, 6878, 1, 0, 0, 0, 6880, 6879, 1, 0, 0, 0, 6881, 6883, 1, 0, 0, 0, 6882, 6877, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 6885, 5, 1134, 0, 0, 6885, 6967, 1, 0, 0, 0, 6886, 6887, 5, 328, 0, 0, 6887, 6888, 5, 1133, 0, 0, 6888, 6891, 7, 118, 0, 0, 6889, 6892, 3, 594, 297, 0, 6890, 6892, 3, 688, 344, 0, 6891, 6889, 1, 0, 0, 0, 6891, 6890, 1, 0, 0, 0, 6891, 6892, 1, 0, 0, 0, 6892, 6893, 1, 0, 0, 0, 6893, 6896, 5, 68, 0, 0, 6894, 6897, 3, 594, 297, 0, 6895, 6897, 3, 688, 344, 0, 6896, 6894, 1, 0, 0, 0, 6896, 6895, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 6899, 5, 1134, 0, 0, 6899, 6967, 1, 0, 0, 0, 6900, 6901, 5, 328, 0, 0, 6901, 6904, 5, 1133, 0, 0, 6902, 6905, 3, 594, 297, 0, 6903, 6905, 3, 688, 344, 0, 6904, 6902, 1, 0, 0, 0, 6904, 6903, 1, 0, 0, 0, 6905, 6906, 1, 0, 0, 0, 6906, 6909, 5, 68, 0, 0, 6907, 6910, 3, 594, 297, 0, 6908, 6910, 3, 688, 344, 0, 6909, 6907, 1, 0, 0, 0, 6909, 6908, 1, 0, 0, 0, 6910, 6911, 1, 0, 0, 0, 6911, 6912, 5, 1134, 0, 0, 6912, 6967, 1, 0, 0, 0, 6913, 6914, 5, 1103, 0, 0, 6914, 6917, 5, 1133, 0, 0, 6915, 6918, 3, 594, 297, 0, 6916, 6918, 3, 688, 344, 0, 6917, 6915, 1, 0, 0, 0, 6917, 6916, 1, 0, 0, 0, 6918, 6925, 1, 0, 0, 0, 6919, 6920, 5, 12, 0, 0, 6920, 6921, 7, 119, 0, 0, 6921, 6922, 5, 1133, 0, 0, 6922, 6923, 3, 590, 295, 0, 6923, 6924, 5, 1134, 0, 0, 6924, 6926, 1, 0, 0, 0, 6925, 6919, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 6928, 1, 0, 0, 0, 6927, 6929, 3, 654, 327, 0, 6928, 6927, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 6930, 1, 0, 0, 0, 6930, 6931, 5, 1134, 0, 0, 6931, 6967, 1, 0, 0, 0, 6932, 6933, 5, 321, 0, 0, 6933, 6934, 5, 1133, 0, 0, 6934, 6935, 3, 70, 35, 0, 6935, 6938, 5, 68, 0, 0, 6936, 6939, 3, 594, 297, 0, 6937, 6939, 3, 688, 344, 0, 6938, 6936, 1, 0, 0, 0, 6938, 6937, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 5, 1134, 0, 0, 6941, 6967, 1, 0, 0, 0, 6942, 6943, 5, 900, 0, 0, 6943, 6944, 5, 1133, 0, 0, 6944, 6945, 7, 120, 0, 0, 6945, 6946, 5, 1135, 0, 0, 6946, 6947, 3, 594, 297, 0, 6947, 6948, 5, 1134, 0, 0, 6948, 6967, 1, 0, 0, 0, 6949, 6950, 5, 282, 0, 0, 6950, 6951, 5, 1133, 0, 0, 6951, 6952, 3, 688, 344, 0, 6952, 6953, 5, 1135, 0, 0, 6953, 6956, 3, 688, 344, 0, 6954, 6955, 5, 593, 0, 0, 6955, 6957, 3, 608, 304, 0, 6956, 6954, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6959, 1, 0, 0, 0, 6958, 6960, 3, 266, 133, 0, 6959, 6958, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6962, 1, 0, 0, 0, 6961, 6963, 3, 268, 134, 0, 6962, 6961, 1, 0, 0, 0, 6962, 6963, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6965, 5, 1134, 0, 0, 6965, 6967, 1, 0, 0, 0, 6966, 6787, 1, 0, 0, 0, 6966, 6792, 1, 0, 0, 0, 6966, 6793, 1, 0, 0, 0, 6966, 6800, 1, 0, 0, 0, 6966, 6807, 1, 0, 0, 0, 6966, 6814, 1, 0, 0, 0, 6966, 6819, 1, 0, 0, 0, 6966, 6832, 1, 0, 0, 0, 6966, 6844, 1, 0, 0, 0, 6966, 6853, 1, 0, 0, 0, 6966, 6866, 1, 0, 0, 0, 6966, 6886, 1, 0, 0, 0, 6966, 6900, 1, 0, 0, 0, 6966, 6913, 1, 0, 0, 0, 6966, 6932, 1, 0, 0, 0, 6966, 6942, 1, 0, 0, 0, 6966, 6949, 1, 0, 0, 0, 6967, 651, 1, 0, 0, 0, 6968, 6969, 5, 189, 0, 0, 6969, 6970, 3, 686, 343, 0, 6970, 6971, 5, 174, 0, 0, 6971, 6972, 3, 686, 343, 0, 6972, 653, 1, 0, 0, 0, 6973, 6974, 5, 472, 0, 0, 6974, 6979, 3, 656, 328, 0, 6975, 6976, 5, 1135, 0, 0, 6976, 6978, 3, 656, 328, 0, 6977, 6975, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6977, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 6988, 1, 0, 0, 0, 6981, 6979, 1, 0, 0, 0, 6982, 6983, 5, 472, 0, 0, 6983, 6984, 3, 590, 295, 0, 6984, 6985, 5, 1121, 0, 0, 6985, 6986, 3, 590, 295, 0, 6986, 6988, 1, 0, 0, 0, 6987, 6973, 1, 0, 0, 0, 6987, 6982, 1, 0, 0, 0, 6988, 655, 1, 0, 0, 0, 6989, 6991, 3, 590, 295, 0, 6990, 6992, 7, 121, 0, 0, 6991, 6990, 1, 0, 0, 0, 6991, 6992, 1, 0, 0, 0, 6992, 657, 1, 0, 0, 0, 6993, 6994, 7, 122, 0, 0, 6994, 6996, 5, 1133, 0, 0, 6995, 6997, 7, 44, 0, 0, 6996, 6995, 1, 0, 0, 0, 6996, 6997, 1, 0, 0, 0, 6997, 6998, 1, 0, 0, 0, 6998, 6999, 3, 686, 343, 0, 6999, 7001, 5, 1134, 0, 0, 7000, 7002, 3, 662, 331, 0, 7001, 7000, 1, 0, 0, 0, 7001, 7002, 1, 0, 0, 0, 7002, 7053, 1, 0, 0, 0, 7003, 7004, 5, 290, 0, 0, 7004, 7012, 5, 1133, 0, 0, 7005, 7013, 5, 1117, 0, 0, 7006, 7008, 5, 6, 0, 0, 7007, 7006, 1, 0, 0, 0, 7007, 7008, 1, 0, 0, 0, 7008, 7009, 1, 0, 0, 0, 7009, 7013, 3, 686, 343, 0, 7010, 7011, 5, 49, 0, 0, 7011, 7013, 3, 684, 342, 0, 7012, 7005, 1, 0, 0, 0, 7012, 7007, 1, 0, 0, 0, 7012, 7010, 1, 0, 0, 0, 7013, 7014, 1, 0, 0, 0, 7014, 7016, 5, 1134, 0, 0, 7015, 7017, 3, 662, 331, 0, 7016, 7015, 1, 0, 0, 0, 7016, 7017, 1, 0, 0, 0, 7017, 7053, 1, 0, 0, 0, 7018, 7019, 7, 123, 0, 0, 7019, 7021, 5, 1133, 0, 0, 7020, 7022, 5, 6, 0, 0, 7021, 7020, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7023, 1, 0, 0, 0, 7023, 7024, 3, 686, 343, 0, 7024, 7026, 5, 1134, 0, 0, 7025, 7027, 3, 662, 331, 0, 7026, 7025, 1, 0, 0, 0, 7026, 7027, 1, 0, 0, 0, 7027, 7053, 1, 0, 0, 0, 7028, 7029, 5, 294, 0, 0, 7029, 7031, 5, 1133, 0, 0, 7030, 7032, 5, 49, 0, 0, 7031, 7030, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7033, 1, 0, 0, 0, 7033, 7044, 3, 684, 342, 0, 7034, 7035, 5, 124, 0, 0, 7035, 7036, 5, 19, 0, 0, 7036, 7041, 3, 230, 115, 0, 7037, 7038, 5, 1135, 0, 0, 7038, 7040, 3, 230, 115, 0, 7039, 7037, 1, 0, 0, 0, 7040, 7043, 1, 0, 0, 0, 7041, 7039, 1, 0, 0, 0, 7041, 7042, 1, 0, 0, 0, 7042, 7045, 1, 0, 0, 0, 7043, 7041, 1, 0, 0, 0, 7044, 7034, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 7048, 1, 0, 0, 0, 7046, 7047, 5, 154, 0, 0, 7047, 7049, 5, 1148, 0, 0, 7048, 7046, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7051, 5, 1134, 0, 0, 7051, 7053, 1, 0, 0, 0, 7052, 6993, 1, 0, 0, 0, 7052, 7003, 1, 0, 0, 0, 7052, 7018, 1, 0, 0, 0, 7052, 7028, 1, 0, 0, 0, 7053, 659, 1, 0, 0, 0, 7054, 7055, 7, 124, 0, 0, 7055, 7056, 5, 1133, 0, 0, 7056, 7059, 3, 688, 344, 0, 7057, 7058, 5, 1135, 0, 0, 7058, 7060, 3, 590, 295, 0, 7059, 7057, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 7063, 1, 0, 0, 0, 7061, 7062, 5, 1135, 0, 0, 7062, 7064, 3, 590, 295, 0, 7063, 7061, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7066, 5, 1134, 0, 0, 7066, 7067, 3, 662, 331, 0, 7067, 7093, 1, 0, 0, 0, 7068, 7069, 7, 125, 0, 0, 7069, 7070, 5, 1133, 0, 0, 7070, 7071, 3, 688, 344, 0, 7071, 7072, 5, 1134, 0, 0, 7072, 7073, 3, 662, 331, 0, 7073, 7093, 1, 0, 0, 0, 7074, 7075, 7, 126, 0, 0, 7075, 7076, 5, 1133, 0, 0, 7076, 7077, 5, 1134, 0, 0, 7077, 7093, 3, 662, 331, 0, 7078, 7079, 5, 301, 0, 0, 7079, 7080, 5, 1133, 0, 0, 7080, 7081, 3, 688, 344, 0, 7081, 7082, 5, 1135, 0, 0, 7082, 7083, 3, 590, 295, 0, 7083, 7084, 5, 1134, 0, 0, 7084, 7085, 3, 662, 331, 0, 7085, 7093, 1, 0, 0, 0, 7086, 7087, 5, 300, 0, 0, 7087, 7088, 5, 1133, 0, 0, 7088, 7089, 3, 590, 295, 0, 7089, 7090, 5, 1134, 0, 0, 7090, 7091, 3, 662, 331, 0, 7091, 7093, 1, 0, 0, 0, 7092, 7054, 1, 0, 0, 0, 7092, 7068, 1, 0, 0, 0, 7092, 7074, 1, 0, 0, 0, 7092, 7078, 1, 0, 0, 0, 7092, 7086, 1, 0, 0, 0, 7093, 661, 1, 0, 0, 0, 7094, 7100, 5, 128, 0, 0, 7095, 7096, 5, 1133, 0, 0, 7096, 7097, 3, 664, 332, 0, 7097, 7098, 5, 1134, 0, 0, 7098, 7101, 1, 0, 0, 0, 7099, 7101, 3, 666, 333, 0, 7100, 7095, 1, 0, 0, 0, 7100, 7099, 1, 0, 0, 0, 7101, 663, 1, 0, 0, 0, 7102, 7104, 3, 666, 333, 0, 7103, 7102, 1, 0, 0, 0, 7103, 7104, 1, 0, 0, 0, 7104, 7106, 1, 0, 0, 0, 7105, 7107, 3, 678, 339, 0, 7106, 7105, 1, 0, 0, 0, 7106, 7107, 1, 0, 0, 0, 7107, 7109, 1, 0, 0, 0, 7108, 7110, 3, 228, 114, 0, 7109, 7108, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7112, 1, 0, 0, 0, 7111, 7113, 3, 668, 334, 0, 7112, 7111, 1, 0, 0, 0, 7112, 7113, 1, 0, 0, 0, 7113, 665, 1, 0, 0, 0, 7114, 7115, 3, 584, 292, 0, 7115, 667, 1, 0, 0, 0, 7116, 7117, 3, 670, 335, 0, 7117, 7118, 3, 672, 336, 0, 7118, 669, 1, 0, 0, 0, 7119, 7120, 7, 127, 0, 0, 7120, 671, 1, 0, 0, 0, 7121, 7124, 3, 676, 338, 0, 7122, 7124, 3, 674, 337, 0, 7123, 7121, 1, 0, 0, 0, 7123, 7122, 1, 0, 0, 0, 7124, 673, 1, 0, 0, 0, 7125, 7126, 5, 16, 0, 0, 7126, 7127, 3, 676, 338, 0, 7127, 7128, 5, 10, 0, 0, 7128, 7129, 3, 676, 338, 0, 7129, 675, 1, 0, 0, 0, 7130, 7131, 5, 35, 0, 0, 7131, 7138, 5, 600, 0, 0, 7132, 7133, 5, 657, 0, 0, 7133, 7138, 7, 128, 0, 0, 7134, 7135, 3, 688, 344, 0, 7135, 7136, 7, 128, 0, 0, 7136, 7138, 1, 0, 0, 0, 7137, 7130, 1, 0, 0, 0, 7137, 7132, 1, 0, 0, 0, 7137, 7134, 1, 0, 0, 0, 7138, 677, 1, 0, 0, 0, 7139, 7140, 5, 129, 0, 0, 7140, 7141, 5, 19, 0, 0, 7141, 7146, 3, 688, 344, 0, 7142, 7143, 5, 1135, 0, 0, 7143, 7145, 3, 688, 344, 0, 7144, 7142, 1, 0, 0, 0, 7145, 7148, 1, 0, 0, 0, 7146, 7144, 1, 0, 0, 0, 7146, 7147, 1, 0, 0, 0, 7147, 679, 1, 0, 0, 0, 7148, 7146, 1, 0, 0, 0, 7149, 7174, 3, 720, 360, 0, 7150, 7174, 5, 747, 0, 0, 7151, 7174, 5, 317, 0, 0, 7152, 7174, 5, 313, 0, 0, 7153, 7174, 5, 314, 0, 0, 7154, 7174, 5, 315, 0, 0, 7155, 7174, 5, 318, 0, 0, 7156, 7174, 5, 319, 0, 0, 7157, 7174, 5, 320, 0, 0, 7158, 7174, 5, 77, 0, 0, 7159, 7174, 5, 85, 0, 0, 7160, 7174, 5, 316, 0, 0, 7161, 7174, 5, 322, 0, 0, 7162, 7174, 5, 508, 0, 0, 7163, 7174, 5, 323, 0, 0, 7164, 7174, 5, 140, 0, 0, 7165, 7174, 5, 141, 0, 0, 7166, 7174, 5, 325, 0, 0, 7167, 7174, 5, 326, 0, 0, 7168, 7174, 5, 327, 0, 0, 7169, 7174, 5, 328, 0, 0, 7170, 7174, 5, 329, 0, 0, 7171, 7174, 5, 330, 0, 0, 7172, 7174, 5, 331, 0, 0, 7173, 7149, 1, 0, 0, 0, 7173, 7150, 1, 0, 0, 0, 7173, 7151, 1, 0, 0, 0, 7173, 7152, 1, 0, 0, 0, 7173, 7153, 1, 0, 0, 0, 7173, 7154, 1, 0, 0, 0, 7173, 7155, 1, 0, 0, 0, 7173, 7156, 1, 0, 0, 0, 7173, 7157, 1, 0, 0, 0, 7173, 7158, 1, 0, 0, 0, 7173, 7159, 1, 0, 0, 0, 7173, 7160, 1, 0, 0, 0, 7173, 7161, 1, 0, 0, 0, 7173, 7162, 1, 0, 0, 0, 7173, 7163, 1, 0, 0, 0, 7173, 7164, 1, 0, 0, 0, 7173, 7165, 1, 0, 0, 0, 7173, 7166, 1, 0, 0, 0, 7173, 7167, 1, 0, 0, 0, 7173, 7168, 1, 0, 0, 0, 7173, 7169, 1, 0, 0, 0, 7173, 7170, 1, 0, 0, 0, 7173, 7171, 1, 0, 0, 0, 7173, 7172, 1, 0, 0, 0, 7174, 681, 1, 0, 0, 0, 7175, 7176, 7, 129, 0, 0, 7176, 7177, 5, 1133, 0, 0, 7177, 7178, 3, 686, 343, 0, 7178, 7179, 5, 1134, 0, 0, 7179, 683, 1, 0, 0, 0, 7180, 7185, 3, 602, 301, 0, 7181, 7185, 3, 556, 278, 0, 7182, 7185, 3, 648, 324, 0, 7183, 7185, 3, 688, 344, 0, 7184, 7180, 1, 0, 0, 0, 7184, 7181, 1, 0, 0, 0, 7184, 7182, 1, 0, 0, 0, 7184, 7183, 1, 0, 0, 0, 7185, 7195, 1, 0, 0, 0, 7186, 7191, 5, 1135, 0, 0, 7187, 7192, 3, 602, 301, 0, 7188, 7192, 3, 556, 278, 0, 7189, 7192, 3, 648, 324, 0, 7190, 7192, 3, 688, 344, 0, 7191, 7187, 1, 0, 0, 0, 7191, 7188, 1, 0, 0, 0, 7191, 7189, 1, 0, 0, 0, 7191, 7190, 1, 0, 0, 0, 7192, 7194, 1, 0, 0, 0, 7193, 7186, 1, 0, 0, 0, 7194, 7197, 1, 0, 0, 0, 7195, 7193, 1, 0, 0, 0, 7195, 7196, 1, 0, 0, 0, 7196, 685, 1, 0, 0, 0, 7197, 7195, 1, 0, 0, 0, 7198, 7203, 3, 602, 301, 0, 7199, 7203, 3, 556, 278, 0, 7200, 7203, 3, 648, 324, 0, 7201, 7203, 3, 688, 344, 0, 7202, 7198, 1, 0, 0, 0, 7202, 7199, 1, 0, 0, 0, 7202, 7200, 1, 0, 0, 0, 7202, 7201, 1, 0, 0, 0, 7203, 687, 1, 0, 0, 0, 7204, 7205, 6, 344, -1, 0, 7205, 7206, 7, 130, 0, 0, 7206, 7216, 3, 688, 344, 4, 7207, 7208, 3, 690, 345, 0, 7208, 7210, 5, 88, 0, 0, 7209, 7211, 5, 114, 0, 0, 7210, 7209, 1, 0, 0, 0, 7210, 7211, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7213, 7, 131, 0, 0, 7213, 7216, 1, 0, 0, 0, 7214, 7216, 3, 690, 345, 0, 7215, 7204, 1, 0, 0, 0, 7215, 7207, 1, 0, 0, 0, 7215, 7214, 1, 0, 0, 0, 7216, 7223, 1, 0, 0, 0, 7217, 7218, 10, 3, 0, 0, 7218, 7219, 3, 698, 349, 0, 7219, 7220, 3, 688, 344, 4, 7220, 7222, 1, 0, 0, 0, 7221, 7217, 1, 0, 0, 0, 7222, 7225, 1, 0, 0, 0, 7223, 7221, 1, 0, 0, 0, 7223, 7224, 1, 0, 0, 0, 7224, 689, 1, 0, 0, 0, 7225, 7223, 1, 0, 0, 0, 7226, 7227, 6, 345, -1, 0, 7227, 7228, 3, 692, 346, 0, 7228, 7293, 1, 0, 0, 0, 7229, 7230, 10, 8, 0, 0, 7230, 7231, 3, 696, 348, 0, 7231, 7232, 3, 690, 345, 9, 7232, 7292, 1, 0, 0, 0, 7233, 7235, 10, 6, 0, 0, 7234, 7236, 5, 114, 0, 0, 7235, 7234, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7238, 5, 16, 0, 0, 7238, 7239, 3, 690, 345, 0, 7239, 7240, 5, 10, 0, 0, 7240, 7241, 3, 690, 345, 7, 7241, 7292, 1, 0, 0, 0, 7242, 7243, 10, 5, 0, 0, 7243, 7244, 5, 620, 0, 0, 7244, 7245, 5, 98, 0, 0, 7245, 7292, 3, 690, 345, 6, 7246, 7248, 10, 3, 0, 0, 7247, 7249, 5, 114, 0, 0, 7248, 7247, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7250, 1, 0, 0, 0, 7250, 7251, 7, 132, 0, 0, 7251, 7292, 3, 690, 345, 4, 7252, 7254, 10, 10, 0, 0, 7253, 7255, 5, 114, 0, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7257, 5, 80, 0, 0, 7257, 7260, 5, 1133, 0, 0, 7258, 7261, 3, 198, 99, 0, 7259, 7261, 3, 624, 312, 0, 7260, 7258, 1, 0, 0, 0, 7260, 7259, 1, 0, 0, 0, 7261, 7262, 1, 0, 0, 0, 7262, 7263, 5, 1134, 0, 0, 7263, 7292, 1, 0, 0, 0, 7264, 7265, 10, 9, 0, 0, 7265, 7266, 5, 88, 0, 0, 7266, 7292, 3, 600, 300, 0, 7267, 7268, 10, 7, 0, 0, 7268, 7269, 3, 696, 348, 0, 7269, 7270, 7, 133, 0, 0, 7270, 7271, 5, 1133, 0, 0, 7271, 7272, 3, 198, 99, 0, 7272, 7273, 5, 1134, 0, 0, 7273, 7292, 1, 0, 0, 0, 7274, 7276, 10, 4, 0, 0, 7275, 7277, 5, 114, 0, 0, 7276, 7275, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 7279, 5, 98, 0, 0, 7279, 7282, 3, 690, 345, 0, 7280, 7281, 5, 413, 0, 0, 7281, 7283, 5, 1148, 0, 0, 7282, 7280, 1, 0, 0, 0, 7282, 7283, 1, 0, 0, 0, 7283, 7292, 1, 0, 0, 0, 7284, 7285, 10, 2, 0, 0, 7285, 7286, 5, 505, 0, 0, 7286, 7287, 5, 533, 0, 0, 7287, 7288, 5, 1133, 0, 0, 7288, 7289, 3, 690, 345, 0, 7289, 7290, 5, 1134, 0, 0, 7290, 7292, 1, 0, 0, 0, 7291, 7229, 1, 0, 0, 0, 7291, 7233, 1, 0, 0, 0, 7291, 7242, 1, 0, 0, 0, 7291, 7246, 1, 0, 0, 0, 7291, 7252, 1, 0, 0, 0, 7291, 7264, 1, 0, 0, 0, 7291, 7267, 1, 0, 0, 0, 7291, 7274, 1, 0, 0, 0, 7291, 7284, 1, 0, 0, 0, 7292, 7295, 1, 0, 0, 0, 7293, 7291, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 691, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7296, 7297, 6, 346, -1, 0, 7297, 7345, 3, 602, 301, 0, 7298, 7345, 3, 556, 278, 0, 7299, 7345, 3, 648, 324, 0, 7300, 7345, 3, 566, 283, 0, 7301, 7302, 3, 694, 347, 0, 7302, 7303, 3, 692, 346, 12, 7303, 7345, 1, 0, 0, 0, 7304, 7305, 5, 226, 0, 0, 7305, 7345, 3, 692, 346, 11, 7306, 7307, 5, 1159, 0, 0, 7307, 7308, 5, 1108, 0, 0, 7308, 7345, 3, 692, 346, 10, 7309, 7310, 5, 1133, 0, 0, 7310, 7315, 3, 688, 344, 0, 7311, 7312, 5, 1135, 0, 0, 7312, 7314, 3, 688, 344, 0, 7313, 7311, 1, 0, 0, 0, 7314, 7317, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7315, 7316, 1, 0, 0, 0, 7316, 7318, 1, 0, 0, 0, 7317, 7315, 1, 0, 0, 0, 7318, 7319, 5, 1134, 0, 0, 7319, 7345, 1, 0, 0, 0, 7320, 7321, 5, 600, 0, 0, 7321, 7322, 5, 1133, 0, 0, 7322, 7325, 3, 688, 344, 0, 7323, 7324, 5, 1135, 0, 0, 7324, 7326, 3, 688, 344, 0, 7325, 7323, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 7325, 1, 0, 0, 0, 7327, 7328, 1, 0, 0, 0, 7328, 7329, 1, 0, 0, 0, 7329, 7330, 5, 1134, 0, 0, 7330, 7345, 1, 0, 0, 0, 7331, 7332, 5, 60, 0, 0, 7332, 7333, 5, 1133, 0, 0, 7333, 7334, 3, 198, 99, 0, 7334, 7335, 5, 1134, 0, 0, 7335, 7345, 1, 0, 0, 0, 7336, 7337, 5, 1133, 0, 0, 7337, 7338, 3, 198, 99, 0, 7338, 7339, 5, 1134, 0, 0, 7339, 7345, 1, 0, 0, 0, 7340, 7341, 5, 86, 0, 0, 7341, 7342, 3, 688, 344, 0, 7342, 7343, 3, 70, 35, 0, 7343, 7345, 1, 0, 0, 0, 7344, 7296, 1, 0, 0, 0, 7344, 7298, 1, 0, 0, 0, 7344, 7299, 1, 0, 0, 0, 7344, 7300, 1, 0, 0, 0, 7344, 7301, 1, 0, 0, 0, 7344, 7304, 1, 0, 0, 0, 7344, 7306, 1, 0, 0, 0, 7344, 7309, 1, 0, 0, 0, 7344, 7320, 1, 0, 0, 0, 7344, 7331, 1, 0, 0, 0, 7344, 7336, 1, 0, 0, 0, 7344, 7340, 1, 0, 0, 0, 7345, 7367, 1, 0, 0, 0, 7346, 7347, 10, 4, 0, 0, 7347, 7348, 3, 700, 350, 0, 7348, 7349, 3, 692, 346, 5, 7349, 7366, 1, 0, 0, 0, 7350, 7351, 10, 3, 0, 0, 7351, 7352, 3, 702, 351, 0, 7352, 7353, 3, 692, 346, 4, 7353, 7366, 1, 0, 0, 0, 7354, 7355, 10, 2, 0, 0, 7355, 7356, 3, 704, 352, 0, 7356, 7357, 3, 692, 346, 3, 7357, 7366, 1, 0, 0, 0, 7358, 7359, 10, 1, 0, 0, 7359, 7360, 3, 706, 353, 0, 7360, 7361, 3, 692, 346, 2, 7361, 7366, 1, 0, 0, 0, 7362, 7363, 10, 14, 0, 0, 7363, 7364, 5, 27, 0, 0, 7364, 7366, 3, 570, 285, 0, 7365, 7346, 1, 0, 0, 0, 7365, 7350, 1, 0, 0, 0, 7365, 7354, 1, 0, 0, 0, 7365, 7358, 1, 0, 0, 0, 7365, 7362, 1, 0, 0, 0, 7366, 7369, 1, 0, 0, 0, 7367, 7365, 1, 0, 0, 0, 7367, 7368, 1, 0, 0, 0, 7368, 693, 1, 0, 0, 0, 7369, 7367, 1, 0, 0, 0, 7370, 7371, 7, 134, 0, 0, 7371, 695, 1, 0, 0, 0, 7372, 7387, 5, 1124, 0, 0, 7373, 7387, 5, 1125, 0, 0, 7374, 7387, 5, 1126, 0, 0, 7375, 7376, 5, 1126, 0, 0, 7376, 7387, 5, 1124, 0, 0, 7377, 7378, 5, 1125, 0, 0, 7378, 7387, 5, 1124, 0, 0, 7379, 7380, 5, 1126, 0, 0, 7380, 7387, 5, 1125, 0, 0, 7381, 7382, 5, 1127, 0, 0, 7382, 7387, 5, 1124, 0, 0, 7383, 7384, 5, 1126, 0, 0, 7384, 7385, 5, 1124, 0, 0, 7385, 7387, 5, 1125, 0, 0, 7386, 7372, 1, 0, 0, 0, 7386, 7373, 1, 0, 0, 0, 7386, 7374, 1, 0, 0, 0, 7386, 7375, 1, 0, 0, 0, 7386, 7377, 1, 0, 0, 0, 7386, 7379, 1, 0, 0, 0, 7386, 7381, 1, 0, 0, 0, 7386, 7383, 1, 0, 0, 0, 7387, 697, 1, 0, 0, 0, 7388, 7396, 5, 10, 0, 0, 7389, 7390, 5, 1130, 0, 0, 7390, 7396, 5, 1130, 0, 0, 7391, 7396, 5, 194, 0, 0, 7392, 7396, 5, 123, 0, 0, 7393, 7394, 5, 1129, 0, 0, 7394, 7396, 5, 1129, 0, 0, 7395, 7388, 1, 0, 0, 0, 7395, 7389, 1, 0, 0, 0, 7395, 7391, 1, 0, 0, 0, 7395, 7392, 1, 0, 0, 0, 7395, 7393, 1, 0, 0, 0, 7396, 699, 1, 0, 0, 0, 7397, 7398, 5, 1126, 0, 0, 7398, 7405, 5, 1126, 0, 0, 7399, 7400, 5, 1125, 0, 0, 7400, 7405, 5, 1125, 0, 0, 7401, 7405, 5, 1130, 0, 0, 7402, 7405, 5, 1131, 0, 0, 7403, 7405, 5, 1129, 0, 0, 7404, 7397, 1, 0, 0, 0, 7404, 7399, 1, 0, 0, 0, 7404, 7401, 1, 0, 0, 0, 7404, 7402, 1, 0, 0, 0, 7404, 7403, 1, 0, 0, 0, 7405, 701, 1, 0, 0, 0, 7406, 7407, 7, 135, 0, 0, 7407, 703, 1, 0, 0, 0, 7408, 7409, 7, 136, 0, 0, 7409, 705, 1, 0, 0, 0, 7410, 7411, 5, 1121, 0, 0, 7411, 7416, 5, 1125, 0, 0, 7412, 7413, 5, 1121, 0, 0, 7413, 7414, 5, 1125, 0, 0, 7414, 7416, 5, 1125, 0, 0, 7415, 7410, 1, 0, 0, 0, 7415, 7412, 1, 0, 0, 0, 7416, 707, 1, 0, 0, 0, 7417, 7418, 7, 137, 0, 0, 7418, 709, 1, 0, 0, 0, 7419, 7420, 7, 138, 0, 0, 7420, 711, 1, 0, 0, 0, 7421, 7422, 7, 139, 0, 0, 7422, 713, 1, 0, 0, 0, 7423, 7424, 7, 140, 0, 0, 7424, 715, 1, 0, 0, 0, 7425, 7426, 7, 141, 0, 0, 7426, 717, 1, 0, 0, 0, 7427, 7428, 7, 142, 0, 0, 7428, 719, 1, 0, 0, 0, 7429, 7430, 7, 143, 0, 0, 7430, 721, 1, 0, 0, 0, 1081, 723, 729, 736, 745, 785, 800, 811, 828, 833, 845, 872, 881, 886, 892, 897, 901, 910, 913, 916, 920, 927, 930, 935, 943, 948, 953, 956, 958, 970, 973, 977, 980, 984, 987, 991, 994, 997, 1001, 1004, 1008, 1014, 1020, 1026, 1033, 1040, 1043, 1047, 1052, 1058, 1067, 1072, 1077, 1084, 1101, 1108, 1112, 1122, 1126, 1130, 1134, 1138, 1143, 1146, 1149, 1152, 1155, 1161, 1165, 1171, 1176, 1179, 1182, 1184, 1195, 1199, 1202, 1216, 1219, 1223, 1226, 1230, 1233, 1237, 1240, 1244, 1247, 1250, 1254, 1257, 1261, 1267, 1271, 1283, 1289, 1300, 1305, 1313, 1321, 1326, 1329, 1334, 1342, 1347, 1353, 1358, 1362, 1364, 1367, 1371, 1375, 1378, 1382, 1386, 1390, 1396, 1399, 1406, 1411, 1417, 1424, 1430, 1438, 1441, 1448, 1451, 1453, 1459, 1465, 1482, 1489, 1496, 1508, 1513, 1516, 1519, 1532, 1545, 1550, 1566, 1574, 1584, 1587, 1590, 1596, 1600, 1603, 1614, 1617, 1622, 1635, 1642, 1649, 1651, 1658, 1662, 1664, 1669, 1672, 1678, 1683, 1685, 1689, 1692, 1695, 1701, 1706, 1708, 1713, 1720, 1722, 1729, 1734, 1738, 1741, 1749, 1757, 1759, 1769, 1773, 1776, 1782, 1787, 1790, 1796, 1799, 1803, 1806, 1810, 1815, 1820, 1825, 1829, 1833, 1837, 1841, 1845, 1849, 1854, 1859, 1864, 1870, 1875, 1880, 1885, 1890, 1895, 1901, 1906, 1911, 1916, 1921, 1926, 1931, 1936, 1943, 1948, 1953, 1958, 1962, 1967, 1975, 1980, 1986, 1998, 2005, 2007, 2015, 2020, 2023, 2031, 2037, 2041, 2054, 2066, 2068, 2071, 2079, 2085, 2091, 2104, 2111, 2120, 2125, 2136, 2145, 2150, 2162, 2169, 2178, 2183, 2195, 2202, 2211, 2216, 2223, 2232, 2237, 2239, 2244, 2252, 2261, 2265, 2268, 2272, 2277, 2283, 2289, 2294, 2299, 2304, 2309, 2312, 2317, 2322, 2332, 2336, 2343, 2348, 2351, 2356, 2359, 2363, 2367, 2375, 2394, 2397, 2400, 2404, 2414, 2427, 2434, 2437, 2442, 2449, 2452, 2455, 2466, 2469, 2473, 2481, 2484, 2489, 2497, 2503, 2507, 2511, 2516, 2521, 2528, 2532, 2543, 2551, 2554, 2560, 2566, 2568, 2573, 2576, 2582, 2588, 2590, 2594, 2597, 2600, 2606, 2612, 2615, 2621, 2627, 2629, 2634, 2642, 2644, 2653, 2656, 2659, 2664, 2666, 2675, 2678, 2681, 2686, 2688, 2697, 2702, 2710, 2714, 2722, 2732, 2737, 2744, 2748, 2752, 2771, 2781, 2787, 2804, 2808, 2818, 2823, 2826, 2835, 2846, 2854, 2860, 2870, 2882, 2889, 2896, 2911, 2924, 2930, 2936, 2942, 2948, 2954, 2960, 2965, 2972, 2979, 2986, 2991, 2994, 2996, 3010, 3017, 3024, 3030, 3034, 3038, 3045, 3048, 3053, 3060, 3067, 3071, 3076, 3083, 3096, 3099, 3104, 3109, 3113, 3119, 3128, 3137, 3146, 3149, 3153, 3162, 3166, 3169, 3172, 3178, 3181, 3185, 3188, 3192, 3195, 3203, 3206, 3217, 3220, 3225, 3228, 3233, 3243, 3248, 3254, 3256, 3262, 3264, 3270, 3278, 3283, 3291, 3294, 3299, 3302, 3307, 3315, 3323, 3329, 3337, 3342, 3350, 3353, 3357, 3360, 3368, 3374, 3383, 3386, 3390, 3394, 3398, 3403, 3407, 3411, 3413, 3416, 3419, 3422, 3428, 3432, 3435, 3438, 3441, 3444, 3451, 3453, 3457, 3462, 3468, 3473, 3480, 3486, 3491, 3494, 3500, 3504, 3512, 3516, 3519, 3522, 3527, 3530, 3537, 3541, 3544, 3548, 3552, 3555, 3558, 3563, 3569, 3573, 3583, 3589, 3593, 3599, 3603, 3609, 3612, 3624, 3628, 3632, 3640, 3644, 3652, 3655, 3659, 3662, 3670, 3675, 3678, 3681, 3685, 3688, 3697, 3702, 3711, 3716, 3723, 3730, 3738, 3744, 3752, 3755, 3758, 3765, 3768, 3775, 3783, 3789, 3800, 3803, 3807, 3813, 3822, 3827, 3831, 3837, 3843, 3845, 3849, 3858, 3868, 3878, 3884, 3889, 3893, 3896, 3899, 3902, 3905, 3911, 3917, 3920, 3923, 3926, 3929, 3932, 3934, 3940, 3946, 3949, 3952, 3955, 3958, 3961, 3965, 3971, 3975, 3983, 3987, 3990, 3992, 4005, 4008, 4015, 4025, 4028, 4033, 4035, 4039, 4047, 4053, 4062, 4075, 4079, 4085, 4094, 4097, 4101, 4104, 4108, 4112, 4115, 4117, 4125, 4137, 4143, 4145, 4151, 4153, 4155, 4161, 4169, 4177, 4181, 4185, 4194, 4199, 4219, 4224, 4230, 4237, 4242, 4251, 4254, 4258, 4262, 4266, 4269, 4272, 4275, 4279, 4283, 4286, 4289, 4292, 4299, 4303, 4318, 4322, 4334, 4342, 4352, 4356, 4359, 4365, 4368, 4371, 4380, 4389, 4399, 4403, 4413, 4423, 4431, 4434, 4443, 4446, 4450, 4455, 4459, 4468, 4471, 4502, 4505, 4508, 4564, 4569, 4597, 4611, 4618, 4622, 4628, 4636, 4638, 4649, 4659, 4666, 4672, 4680, 4685, 4693, 4701, 4709, 4717, 4723, 4728, 4733, 4738, 4744, 4746, 4757, 4762, 4769, 4771, 4785, 4791, 4796, 4801, 4807, 4814, 4822, 4830, 4835, 4841, 4844, 4852, 4859, 4868, 4871, 4888, 4896, 4904, 4908, 4915, 4921, 4929, 4938, 4944, 4951, 4958, 4963, 4966, 4968, 4974, 4976, 4980, 4982, 4989, 4994, 4998, 5004, 5013, 5019, 5026, 5032, 5038, 5043, 5046, 5048, 5054, 5056, 5060, 5062, 5069, 5071, 5076, 5083, 5092, 5097, 5106, 5113, 5118, 5121, 5123, 5129, 5131, 5134, 5142, 5147, 5152, 5156, 5162, 5167, 5171, 5177, 5179, 5190, 5193, 5200, 5203, 5215, 5221, 5230, 5239, 5244, 5253, 5259, 5270, 5276, 5281, 5285, 5291, 5296, 5300, 5303, 5315, 5322, 5327, 5357, 5361, 5366, 5373, 5376, 5382, 5392, 5402, 5412, 5418, 5427, 5433, 5440, 5442, 5452, 5456, 5460, 5470, 5475, 5547, 5565, 5573, 5585, 5592, 5594, 5604, 5607, 5615, 5622, 5626, 5633, 5638, 5641, 5644, 5653, 5657, 5661, 5684, 5691, 5695, 5702, 5709, 5712, 5728, 5731, 5741, 5745, 5751, 5754, 5759, 5763, 5770, 5773, 5779, 5803, 5806, 5818, 5821, 5831, 5839, 5843, 5850, 5853, 5862, 5868, 5874, 5884, 5886, 5892, 5895, 5898, 5910, 5913, 5919, 5922, 5930, 5938, 5944, 5948, 5962, 5974, 5981, 5984, 5991, 5998, 6003, 6016, 6027, 6033, 6038, 6051, 6053, 6058, 6062, 6065, 6067, 6074, 6081, 6084, 6087, 6093, 6097, 6103, 6109, 6122, 6127, 6135, 6138, 6143, 6148, 6156, 6159, 6167, 6171, 6178, 6184, 6187, 6191, 6204, 6210, 6222, 6225, 6234, 6239, 6245, 6254, 6259, 6264, 6266, 6269, 6273, 6275, 6279, 6285, 6288, 6291, 6297, 6306, 6314, 6318, 6323, 6343, 6350, 6352, 6359, 6361, 6365, 6370, 6381, 6386, 6392, 6395, 6399, 6404, 6407, 6411, 6415, 6417, 6422, 6427, 6440, 6443, 6447, 6450, 6453, 6458, 6463, 6469, 6472, 6477, 6480, 6485, 6488, 6492, 6497, 6502, 6507, 6512, 6515, 6520, 6525, 6530, 6536, 6541, 6546, 6551, 6555, 6558, 6563, 6567, 6571, 6579, 6586, 6590, 6595, 6600, 6604, 6606, 6609, 6625, 6634, 6642, 6650, 6659, 6669, 6677, 6685, 6693, 6701, 6713, 6720, 6730, 6735, 6738, 6743, 6746, 6750, 6765, 6773, 6780, 6785, 6790, 6824, 6828, 6836, 6840, 6849, 6857, 6862, 6870, 6875, 6880, 6882, 6891, 6896, 6904, 6909, 6917, 6925, 6928, 6938, 6956, 6959, 6962, 6966, 6979, 6987, 6991, 6996, 7001, 7007, 7012, 7016, 7021, 7026, 7031, 7041, 7044, 7048, 7052, 7059, 7063, 7092, 7100, 7103, 7106, 7109, 7112, 7123, 7137, 7146, 7173, 7184, 7191, 7195, 7202, 7210, 7215, 7223, 7235, 7248, 7254, 7260, 7276, 7282, 7291, 7293, 7315, 7327, 7344, 7365, 7367, 7386, 7395, 7404, 7415] \ No newline at end of file +[4, 1, 1161, 7431, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 1, 0, 3, 0, 724, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 730, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 736, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 745, 8, 2, 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, 785, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 800, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 811, 8, 5, 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, 828, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 833, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 872, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 881, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 886, 8, 11, 1, 11, 1, 11, 5, 11, 890, 8, 11, 10, 11, 12, 11, 893, 9, 11, 1, 12, 1, 12, 3, 12, 897, 8, 12, 1, 12, 1, 12, 3, 12, 901, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 12, 3, 12, 913, 8, 12, 1, 12, 3, 12, 916, 8, 12, 1, 12, 1, 12, 3, 12, 920, 8, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 3, 13, 927, 8, 13, 1, 13, 3, 13, 930, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 935, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 941, 8, 13, 10, 13, 12, 13, 944, 9, 13, 1, 13, 1, 13, 3, 13, 948, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 953, 8, 13, 1, 13, 5, 13, 956, 8, 13, 10, 13, 12, 13, 959, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 970, 8, 14, 1, 14, 3, 14, 973, 8, 14, 1, 14, 1, 14, 3, 14, 977, 8, 14, 1, 14, 3, 14, 980, 8, 14, 1, 14, 1, 14, 3, 14, 984, 8, 14, 1, 14, 3, 14, 987, 8, 14, 1, 14, 1, 14, 3, 14, 991, 8, 14, 1, 14, 3, 14, 994, 8, 14, 1, 14, 3, 14, 997, 8, 14, 1, 14, 1, 14, 3, 14, 1001, 8, 14, 1, 14, 3, 14, 1004, 8, 14, 1, 14, 1, 14, 3, 14, 1008, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 1014, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1020, 8, 15, 1, 15, 1, 15, 5, 15, 1024, 8, 15, 10, 15, 12, 15, 1027, 9, 15, 1, 15, 1, 15, 5, 15, 1031, 8, 15, 10, 15, 12, 15, 1034, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1040, 8, 16, 1, 16, 3, 16, 1043, 8, 16, 1, 16, 1, 16, 3, 16, 1047, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1052, 8, 16, 1, 16, 1, 16, 5, 16, 1056, 8, 16, 10, 16, 12, 16, 1059, 9, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1065, 8, 16, 10, 16, 12, 16, 1068, 9, 16, 1, 16, 1, 16, 3, 16, 1072, 8, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1077, 8, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1082, 8, 17, 10, 17, 12, 17, 1085, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1099, 8, 18, 10, 18, 12, 18, 1102, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1108, 8, 19, 1, 19, 1, 19, 3, 19, 1112, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1122, 8, 19, 1, 19, 1, 19, 3, 19, 1126, 8, 19, 1, 19, 1, 19, 3, 19, 1130, 8, 19, 1, 19, 1, 19, 3, 19, 1134, 8, 19, 1, 19, 1, 19, 3, 19, 1138, 8, 19, 1, 19, 5, 19, 1141, 8, 19, 10, 19, 12, 19, 1144, 9, 19, 3, 19, 1146, 8, 19, 1, 19, 3, 19, 1149, 8, 19, 1, 19, 3, 19, 1152, 8, 19, 1, 19, 3, 19, 1155, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1161, 8, 19, 1, 19, 1, 19, 3, 19, 1165, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1171, 8, 19, 1, 19, 5, 19, 1174, 8, 19, 10, 19, 12, 19, 1177, 9, 19, 3, 19, 1179, 8, 19, 1, 19, 3, 19, 1182, 8, 19, 3, 19, 1184, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1195, 8, 20, 1, 20, 1, 20, 3, 20, 1199, 8, 20, 1, 20, 3, 20, 1202, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1216, 8, 21, 1, 21, 3, 21, 1219, 8, 21, 1, 21, 1, 21, 3, 21, 1223, 8, 21, 1, 21, 3, 21, 1226, 8, 21, 1, 21, 1, 21, 3, 21, 1230, 8, 21, 1, 21, 3, 21, 1233, 8, 21, 1, 21, 1, 21, 3, 21, 1237, 8, 21, 1, 21, 3, 21, 1240, 8, 21, 1, 21, 1, 21, 3, 21, 1244, 8, 21, 1, 21, 3, 21, 1247, 8, 21, 1, 21, 3, 21, 1250, 8, 21, 1, 21, 1, 21, 3, 21, 1254, 8, 21, 1, 21, 3, 21, 1257, 8, 21, 1, 21, 1, 21, 3, 21, 1261, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1267, 8, 22, 1, 22, 1, 22, 3, 22, 1271, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1283, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1289, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1298, 8, 24, 10, 24, 12, 24, 1301, 9, 24, 1, 24, 1, 24, 3, 24, 1305, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1313, 8, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1321, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1326, 8, 27, 1, 27, 3, 27, 1329, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1334, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1342, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1347, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1353, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1358, 8, 27, 1, 27, 1, 27, 3, 27, 1362, 8, 27, 3, 27, 1364, 8, 27, 1, 28, 3, 28, 1367, 8, 28, 1, 28, 1, 28, 3, 28, 1371, 8, 28, 1, 28, 1, 28, 3, 28, 1375, 8, 28, 1, 28, 3, 28, 1378, 8, 28, 1, 28, 1, 28, 3, 28, 1382, 8, 28, 1, 28, 1, 28, 3, 28, 1386, 8, 28, 1, 28, 1, 28, 3, 28, 1390, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1396, 8, 28, 1, 28, 3, 28, 1399, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1406, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1411, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1417, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1422, 8, 32, 10, 32, 12, 32, 1425, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1430, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1436, 8, 32, 10, 32, 12, 32, 1439, 9, 32, 3, 32, 1441, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1446, 8, 32, 10, 32, 12, 32, 1449, 9, 32, 3, 32, 1451, 8, 32, 3, 32, 1453, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1459, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1465, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1482, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1489, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1496, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1508, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1513, 8, 38, 1, 38, 3, 38, 1516, 8, 38, 1, 39, 3, 39, 1519, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1532, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1545, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1550, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1566, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1572, 8, 43, 10, 43, 12, 43, 1575, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1584, 8, 44, 1, 44, 3, 44, 1587, 8, 44, 1, 44, 3, 44, 1590, 8, 44, 1, 45, 1, 45, 5, 45, 1594, 8, 45, 10, 45, 12, 45, 1597, 9, 45, 1, 45, 3, 45, 1600, 8, 45, 1, 45, 3, 45, 1603, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1614, 8, 46, 1, 46, 3, 46, 1617, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1622, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1635, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1642, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1649, 8, 46, 3, 46, 1651, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1658, 8, 46, 1, 47, 1, 47, 3, 47, 1662, 8, 47, 3, 47, 1664, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1669, 8, 47, 1, 47, 3, 47, 1672, 8, 47, 1, 47, 1, 47, 5, 47, 1676, 8, 47, 10, 47, 12, 47, 1679, 9, 47, 1, 47, 1, 47, 3, 47, 1683, 8, 47, 3, 47, 1685, 8, 47, 1, 47, 1, 47, 3, 47, 1689, 8, 47, 1, 47, 3, 47, 1692, 8, 47, 1, 47, 3, 47, 1695, 8, 47, 1, 47, 1, 47, 5, 47, 1699, 8, 47, 10, 47, 12, 47, 1702, 9, 47, 1, 47, 1, 47, 3, 47, 1706, 8, 47, 3, 47, 1708, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1713, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1720, 8, 47, 3, 47, 1722, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1729, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 1734, 8, 48, 1, 48, 1, 48, 3, 48, 1738, 8, 48, 1, 48, 3, 48, 1741, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1749, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1757, 8, 49, 3, 49, 1759, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1769, 8, 50, 1, 51, 1, 51, 3, 51, 1773, 8, 51, 1, 51, 3, 51, 1776, 8, 51, 1, 51, 1, 51, 5, 51, 1780, 8, 51, 10, 51, 12, 51, 1783, 9, 51, 1, 51, 1, 51, 3, 51, 1787, 8, 51, 1, 51, 3, 51, 1790, 8, 51, 1, 51, 1, 51, 5, 51, 1794, 8, 51, 10, 51, 12, 51, 1797, 9, 51, 3, 51, 1799, 8, 51, 1, 52, 1, 52, 3, 52, 1803, 8, 52, 1, 52, 3, 52, 1806, 8, 52, 1, 52, 1, 52, 3, 52, 1810, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1815, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1820, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1825, 8, 52, 1, 52, 1, 52, 3, 52, 1829, 8, 52, 1, 52, 1, 52, 3, 52, 1833, 8, 52, 1, 52, 1, 52, 3, 52, 1837, 8, 52, 1, 52, 1, 52, 3, 52, 1841, 8, 52, 1, 52, 1, 52, 3, 52, 1845, 8, 52, 1, 52, 1, 52, 3, 52, 1849, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1854, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1859, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1864, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1870, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1875, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1880, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1885, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1890, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1895, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1901, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1906, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1911, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1916, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1921, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1926, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1931, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1936, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1943, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1948, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1953, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1958, 8, 52, 1, 52, 1, 52, 3, 52, 1962, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1967, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1975, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1998, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2005, 8, 55, 3, 55, 2007, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2013, 8, 55, 10, 55, 12, 55, 2016, 9, 55, 1, 55, 1, 55, 3, 55, 2020, 8, 55, 1, 56, 3, 56, 2023, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2031, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2037, 8, 56, 1, 56, 1, 56, 3, 56, 2041, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2054, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2066, 8, 56, 3, 56, 2068, 8, 56, 1, 57, 3, 57, 2071, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2079, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2085, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2091, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2102, 8, 58, 10, 58, 12, 58, 2105, 9, 58, 1, 58, 1, 58, 5, 58, 2109, 8, 58, 10, 58, 12, 58, 2112, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2118, 8, 58, 10, 58, 12, 58, 2121, 9, 58, 1, 58, 1, 58, 3, 58, 2125, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2134, 8, 58, 10, 58, 12, 58, 2137, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2143, 8, 58, 10, 58, 12, 58, 2146, 9, 58, 1, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2160, 8, 58, 10, 58, 12, 58, 2163, 9, 58, 1, 58, 1, 58, 5, 58, 2167, 8, 58, 10, 58, 12, 58, 2170, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2176, 8, 58, 10, 58, 12, 58, 2179, 9, 58, 1, 58, 1, 58, 3, 58, 2183, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2193, 8, 58, 10, 58, 12, 58, 2196, 9, 58, 1, 58, 1, 58, 5, 58, 2200, 8, 58, 10, 58, 12, 58, 2203, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2209, 8, 58, 10, 58, 12, 58, 2212, 9, 58, 1, 58, 1, 58, 3, 58, 2216, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2221, 8, 58, 10, 58, 12, 58, 2224, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2230, 8, 58, 10, 58, 12, 58, 2233, 9, 58, 1, 58, 1, 58, 3, 58, 2237, 8, 58, 3, 58, 2239, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2244, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2250, 8, 60, 11, 60, 12, 60, 2251, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2259, 8, 61, 10, 61, 12, 61, 2262, 9, 61, 1, 62, 3, 62, 2265, 8, 62, 1, 62, 3, 62, 2268, 8, 62, 1, 62, 1, 62, 3, 62, 2272, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2277, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2283, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2289, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2294, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2299, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2304, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2309, 8, 62, 1, 62, 3, 62, 2312, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2317, 8, 63, 1, 63, 4, 63, 2320, 8, 63, 11, 63, 12, 63, 2321, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2332, 8, 63, 1, 64, 1, 64, 3, 64, 2336, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2343, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2348, 8, 64, 1, 64, 3, 64, 2351, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2356, 8, 64, 1, 64, 3, 64, 2359, 8, 64, 1, 64, 1, 64, 3, 64, 2363, 8, 64, 1, 64, 1, 64, 3, 64, 2367, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2373, 8, 65, 10, 65, 12, 65, 2376, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2394, 8, 67, 1, 67, 3, 67, 2397, 8, 67, 1, 67, 3, 67, 2400, 8, 67, 1, 67, 1, 67, 3, 67, 2404, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2412, 8, 68, 10, 68, 12, 68, 2415, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2425, 8, 69, 10, 69, 12, 69, 2428, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 2434, 8, 70, 1, 70, 3, 70, 2437, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2442, 8, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2447, 8, 70, 10, 70, 12, 70, 2450, 9, 70, 3, 70, 2452, 8, 70, 1, 70, 3, 70, 2455, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2466, 8, 71, 1, 71, 3, 71, 2469, 8, 71, 1, 71, 1, 71, 3, 71, 2473, 8, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2481, 8, 72, 1, 72, 3, 72, 2484, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2489, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2497, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2503, 8, 72, 1, 72, 1, 72, 3, 72, 2507, 8, 72, 1, 73, 1, 73, 3, 73, 2511, 8, 73, 1, 73, 5, 73, 2514, 8, 73, 10, 73, 12, 73, 2517, 9, 73, 1, 73, 1, 73, 3, 73, 2521, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2528, 8, 73, 1, 73, 1, 73, 3, 73, 2532, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2541, 8, 73, 10, 73, 12, 73, 2544, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2551, 8, 73, 1, 73, 3, 73, 2554, 8, 73, 1, 73, 1, 73, 5, 73, 2558, 8, 73, 10, 73, 12, 73, 2561, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2566, 8, 73, 3, 73, 2568, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2573, 8, 73, 1, 73, 3, 73, 2576, 8, 73, 1, 73, 1, 73, 5, 73, 2580, 8, 73, 10, 73, 12, 73, 2583, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2588, 8, 73, 3, 73, 2590, 8, 73, 1, 73, 1, 73, 3, 73, 2594, 8, 73, 1, 73, 3, 73, 2597, 8, 73, 1, 73, 3, 73, 2600, 8, 73, 1, 73, 1, 73, 5, 73, 2604, 8, 73, 10, 73, 12, 73, 2607, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2612, 8, 73, 1, 73, 3, 73, 2615, 8, 73, 1, 73, 1, 73, 5, 73, 2619, 8, 73, 10, 73, 12, 73, 2622, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2627, 8, 73, 3, 73, 2629, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2634, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2642, 8, 73, 3, 73, 2644, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2653, 8, 73, 1, 73, 3, 73, 2656, 8, 73, 1, 73, 3, 73, 2659, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2664, 8, 73, 3, 73, 2666, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2675, 8, 73, 1, 73, 3, 73, 2678, 8, 73, 1, 73, 3, 73, 2681, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2686, 8, 73, 3, 73, 2688, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2702, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2710, 8, 73, 1, 73, 1, 73, 3, 73, 2714, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2722, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2732, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2737, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2744, 8, 73, 1, 73, 1, 73, 3, 73, 2748, 8, 73, 1, 73, 1, 73, 3, 73, 2752, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2771, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2781, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2787, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2804, 8, 73, 1, 73, 1, 73, 3, 73, 2808, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2818, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2823, 8, 73, 1, 73, 3, 73, 2826, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2835, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2846, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2852, 8, 73, 10, 73, 12, 73, 2855, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2860, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2868, 8, 74, 10, 74, 12, 74, 2871, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2882, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2889, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2896, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2909, 8, 74, 10, 74, 12, 74, 2912, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2924, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2930, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2936, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2942, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2948, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2954, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2960, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2965, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2972, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2979, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2986, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2991, 8, 77, 1, 77, 5, 77, 2994, 8, 77, 10, 77, 12, 77, 2997, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3010, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3017, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3024, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 3030, 8, 82, 1, 82, 1, 82, 3, 82, 3034, 8, 82, 1, 82, 1, 82, 3, 82, 3038, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 3045, 8, 83, 1, 83, 3, 83, 3048, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3053, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3060, 8, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3065, 8, 85, 10, 85, 12, 85, 3068, 9, 85, 1, 85, 3, 85, 3071, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3076, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3081, 8, 86, 10, 86, 12, 86, 3084, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 3094, 8, 87, 10, 87, 12, 87, 3097, 9, 87, 3, 87, 3099, 8, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3104, 8, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3109, 8, 87, 5, 87, 3111, 8, 87, 10, 87, 12, 87, 3114, 9, 87, 1, 87, 1, 87, 1, 87, 3, 87, 3119, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3126, 8, 88, 10, 88, 12, 88, 3129, 9, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 3137, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3146, 8, 91, 1, 91, 3, 91, 3149, 8, 91, 1, 92, 1, 92, 3, 92, 3153, 8, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3162, 8, 94, 1, 95, 1, 95, 3, 95, 3166, 8, 95, 1, 95, 3, 95, 3169, 8, 95, 1, 95, 3, 95, 3172, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3178, 8, 95, 1, 95, 3, 95, 3181, 8, 95, 1, 95, 1, 95, 3, 95, 3185, 8, 95, 1, 95, 3, 95, 3188, 8, 95, 1, 95, 1, 95, 3, 95, 3192, 8, 95, 1, 95, 3, 95, 3195, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 3201, 8, 95, 10, 95, 12, 95, 3204, 9, 95, 3, 95, 3206, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 3215, 8, 95, 10, 95, 12, 95, 3218, 9, 95, 3, 95, 3220, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3225, 8, 96, 1, 96, 3, 96, 3228, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3233, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3243, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3248, 8, 96, 1, 96, 1, 96, 4, 96, 3252, 8, 96, 11, 96, 12, 96, 3253, 3, 96, 3256, 8, 96, 1, 96, 1, 96, 4, 96, 3260, 8, 96, 11, 96, 12, 96, 3261, 3, 96, 3264, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3270, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3276, 8, 96, 10, 96, 12, 96, 3279, 9, 96, 1, 96, 1, 96, 3, 96, 3283, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3289, 8, 96, 10, 96, 12, 96, 3292, 9, 96, 3, 96, 3294, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3299, 8, 97, 1, 97, 3, 97, 3302, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3307, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3315, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3323, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3329, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3335, 8, 97, 10, 97, 12, 97, 3338, 9, 97, 1, 97, 1, 97, 3, 97, 3342, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3348, 8, 97, 10, 97, 12, 97, 3351, 9, 97, 3, 97, 3353, 8, 97, 1, 98, 1, 98, 3, 98, 3357, 8, 98, 1, 98, 3, 98, 3360, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3368, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3374, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3381, 8, 98, 10, 98, 12, 98, 3384, 9, 98, 3, 98, 3386, 8, 98, 1, 99, 1, 99, 3, 99, 3390, 8, 99, 1, 99, 1, 99, 3, 99, 3394, 8, 99, 1, 99, 1, 99, 3, 99, 3398, 8, 99, 1, 99, 4, 99, 3401, 8, 99, 11, 99, 12, 99, 3402, 1, 99, 1, 99, 3, 99, 3407, 8, 99, 1, 99, 1, 99, 3, 99, 3411, 8, 99, 3, 99, 3413, 8, 99, 1, 99, 3, 99, 3416, 8, 99, 1, 99, 3, 99, 3419, 8, 99, 1, 99, 3, 99, 3422, 8, 99, 1, 99, 1, 99, 4, 99, 3426, 8, 99, 11, 99, 12, 99, 3427, 1, 99, 1, 99, 3, 99, 3432, 8, 99, 1, 99, 3, 99, 3435, 8, 99, 1, 99, 3, 99, 3438, 8, 99, 1, 99, 3, 99, 3441, 8, 99, 1, 99, 3, 99, 3444, 8, 99, 1, 99, 1, 99, 1, 99, 4, 99, 3449, 8, 99, 11, 99, 12, 99, 3450, 3, 99, 3453, 8, 99, 1, 100, 1, 100, 3, 100, 3457, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3462, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3468, 8, 101, 1, 101, 5, 101, 3471, 8, 101, 10, 101, 12, 101, 3474, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3480, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3486, 8, 102, 1, 102, 5, 102, 3489, 8, 102, 10, 102, 12, 102, 3492, 9, 102, 3, 102, 3494, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3500, 8, 103, 1, 104, 1, 104, 3, 104, 3504, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3512, 8, 105, 1, 106, 1, 106, 3, 106, 3516, 8, 106, 1, 106, 3, 106, 3519, 8, 106, 1, 106, 3, 106, 3522, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3527, 8, 106, 1, 106, 3, 106, 3530, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3537, 8, 106, 1, 106, 1, 106, 3, 106, 3541, 8, 106, 1, 106, 3, 106, 3544, 8, 106, 1, 106, 1, 106, 3, 106, 3548, 8, 106, 1, 107, 1, 107, 3, 107, 3552, 8, 107, 1, 107, 3, 107, 3555, 8, 107, 1, 107, 3, 107, 3558, 8, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3563, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3569, 8, 107, 5, 107, 3571, 8, 107, 10, 107, 12, 107, 3574, 9, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3583, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3589, 8, 107, 5, 107, 3591, 8, 107, 10, 107, 12, 107, 3594, 9, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3599, 8, 107, 1, 107, 1, 107, 3, 107, 3603, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3609, 8, 108, 1, 108, 3, 108, 3612, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3624, 8, 109, 1, 109, 1, 109, 3, 109, 3628, 8, 109, 1, 109, 1, 109, 3, 109, 3632, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3640, 8, 110, 1, 110, 1, 110, 3, 110, 3644, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 3, 112, 3652, 8, 112, 1, 112, 3, 112, 3655, 8, 112, 1, 112, 1, 112, 3, 112, 3659, 8, 112, 1, 112, 3, 112, 3662, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3668, 8, 112, 10, 112, 12, 112, 3671, 9, 112, 1, 112, 1, 112, 3, 112, 3675, 8, 112, 1, 112, 3, 112, 3678, 8, 112, 1, 112, 3, 112, 3681, 8, 112, 1, 113, 1, 113, 3, 113, 3685, 8, 113, 1, 113, 3, 113, 3688, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3695, 8, 113, 10, 113, 12, 113, 3698, 9, 113, 1, 113, 1, 113, 3, 113, 3702, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3709, 8, 114, 10, 114, 12, 114, 3712, 9, 114, 1, 115, 1, 115, 3, 115, 3716, 8, 115, 1, 116, 1, 116, 1, 116, 5, 116, 3721, 8, 116, 10, 116, 12, 116, 3724, 9, 116, 1, 117, 1, 117, 5, 117, 3728, 8, 117, 10, 117, 12, 117, 3731, 9, 117, 1, 117, 1, 117, 1, 117, 5, 117, 3736, 8, 117, 10, 117, 12, 117, 3739, 9, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3744, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3752, 8, 118, 1, 118, 3, 118, 3755, 8, 118, 1, 118, 3, 118, 3758, 8, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3763, 8, 118, 10, 118, 12, 118, 3766, 9, 118, 3, 118, 3768, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3775, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3783, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3789, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3800, 8, 120, 1, 121, 3, 121, 3803, 8, 121, 1, 121, 1, 121, 3, 121, 3807, 8, 121, 1, 121, 1, 121, 5, 121, 3811, 8, 121, 10, 121, 12, 121, 3814, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3820, 8, 121, 10, 121, 12, 121, 3823, 9, 121, 1, 121, 1, 121, 3, 121, 3827, 8, 121, 1, 121, 1, 121, 3, 121, 3831, 8, 121, 1, 121, 1, 121, 5, 121, 3835, 8, 121, 10, 121, 12, 121, 3838, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3843, 8, 121, 3, 121, 3845, 8, 121, 1, 121, 1, 121, 3, 121, 3849, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3858, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3868, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3878, 8, 124, 1, 125, 1, 125, 5, 125, 3882, 8, 125, 10, 125, 12, 125, 3885, 9, 125, 1, 125, 1, 125, 3, 125, 3889, 8, 125, 1, 125, 1, 125, 3, 125, 3893, 8, 125, 1, 125, 3, 125, 3896, 8, 125, 1, 125, 3, 125, 3899, 8, 125, 1, 125, 3, 125, 3902, 8, 125, 1, 125, 3, 125, 3905, 8, 125, 1, 125, 1, 125, 5, 125, 3909, 8, 125, 10, 125, 12, 125, 3912, 9, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3917, 8, 125, 1, 125, 3, 125, 3920, 8, 125, 1, 125, 3, 125, 3923, 8, 125, 1, 125, 3, 125, 3926, 8, 125, 1, 125, 3, 125, 3929, 8, 125, 1, 125, 3, 125, 3932, 8, 125, 3, 125, 3934, 8, 125, 1, 126, 1, 126, 5, 126, 3938, 8, 126, 10, 126, 12, 126, 3941, 9, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3946, 8, 126, 1, 126, 3, 126, 3949, 8, 126, 1, 126, 3, 126, 3952, 8, 126, 1, 126, 3, 126, 3955, 8, 126, 1, 126, 3, 126, 3958, 8, 126, 1, 126, 3, 126, 3961, 8, 126, 1, 127, 1, 127, 3, 127, 3965, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3971, 8, 128, 1, 128, 1, 128, 3, 128, 3975, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3983, 8, 129, 1, 129, 1, 129, 3, 129, 3987, 8, 129, 1, 129, 3, 129, 3990, 8, 129, 3, 129, 3992, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 4005, 8, 130, 1, 130, 3, 130, 4008, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 4013, 8, 131, 10, 131, 12, 131, 4016, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4025, 8, 132, 1, 132, 3, 132, 4028, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4033, 8, 132, 3, 132, 4035, 8, 132, 1, 132, 1, 132, 3, 132, 4039, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 4047, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4053, 8, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4062, 8, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4075, 8, 135, 1, 136, 1, 136, 3, 136, 4079, 8, 136, 1, 136, 1, 136, 5, 136, 4083, 8, 136, 10, 136, 12, 136, 4086, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4094, 8, 137, 1, 137, 3, 137, 4097, 8, 137, 1, 137, 1, 137, 3, 137, 4101, 8, 137, 1, 137, 3, 137, 4104, 8, 137, 1, 137, 1, 137, 3, 137, 4108, 8, 137, 1, 137, 1, 137, 3, 137, 4112, 8, 137, 1, 137, 3, 137, 4115, 8, 137, 3, 137, 4117, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4123, 8, 138, 10, 138, 12, 138, 4126, 9, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4137, 8, 138, 1, 138, 1, 138, 4, 138, 4141, 8, 138, 11, 138, 12, 138, 4142, 3, 138, 4145, 8, 138, 1, 138, 1, 138, 4, 138, 4149, 8, 138, 11, 138, 12, 138, 4150, 3, 138, 4153, 8, 138, 3, 138, 4155, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4161, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4169, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4177, 8, 140, 1, 141, 1, 141, 3, 141, 4181, 8, 141, 1, 141, 1, 141, 3, 141, 4185, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 4192, 8, 142, 10, 142, 12, 142, 4195, 9, 142, 1, 142, 1, 142, 3, 142, 4199, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 4217, 8, 144, 10, 144, 12, 144, 4220, 9, 144, 1, 145, 1, 145, 3, 145, 4224, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4230, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4237, 8, 146, 1, 147, 1, 147, 1, 147, 3, 147, 4242, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 4249, 8, 148, 10, 148, 12, 148, 4252, 9, 148, 3, 148, 4254, 8, 148, 1, 149, 1, 149, 3, 149, 4258, 8, 149, 1, 150, 1, 150, 3, 150, 4262, 8, 150, 1, 150, 1, 150, 3, 150, 4266, 8, 150, 1, 150, 3, 150, 4269, 8, 150, 1, 150, 3, 150, 4272, 8, 150, 1, 150, 3, 150, 4275, 8, 150, 1, 151, 1, 151, 3, 151, 4279, 8, 151, 1, 151, 1, 151, 3, 151, 4283, 8, 151, 1, 151, 3, 151, 4286, 8, 151, 1, 151, 3, 151, 4289, 8, 151, 1, 151, 3, 151, 4292, 8, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 4299, 8, 153, 1, 153, 1, 153, 3, 153, 4303, 8, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 4316, 8, 155, 10, 155, 12, 155, 4319, 9, 155, 1, 155, 3, 155, 4322, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 3, 158, 4334, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 4340, 8, 158, 10, 158, 12, 158, 4343, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4352, 8, 159, 1, 160, 1, 160, 3, 160, 4356, 8, 160, 1, 160, 3, 160, 4359, 8, 160, 1, 160, 1, 160, 1, 161, 1, 161, 3, 161, 4365, 8, 161, 1, 161, 3, 161, 4368, 8, 161, 1, 161, 3, 161, 4371, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4380, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4389, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 4397, 8, 164, 10, 164, 12, 164, 4400, 9, 164, 1, 164, 3, 164, 4403, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 4411, 8, 165, 10, 165, 12, 165, 4414, 9, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 4423, 8, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 3, 168, 4431, 8, 168, 1, 168, 3, 168, 4434, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4441, 8, 169, 10, 169, 12, 169, 4444, 9, 169, 3, 169, 4446, 8, 169, 1, 169, 1, 169, 3, 169, 4450, 8, 169, 1, 169, 5, 169, 4453, 8, 169, 10, 169, 12, 169, 4456, 9, 169, 1, 169, 3, 169, 4459, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 4466, 8, 170, 10, 170, 12, 170, 4469, 9, 170, 3, 170, 4471, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4500, 8, 173, 10, 173, 12, 173, 4503, 9, 173, 3, 173, 4505, 8, 173, 1, 173, 3, 173, 4508, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4562, 8, 178, 10, 178, 12, 178, 4565, 9, 178, 1, 178, 1, 178, 3, 178, 4569, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4597, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4611, 8, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4616, 8, 183, 10, 183, 12, 183, 4619, 9, 183, 1, 183, 3, 183, 4622, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4628, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4636, 8, 185, 3, 185, 4638, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4649, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4659, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4666, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4672, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4680, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 4685, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4691, 8, 194, 10, 194, 12, 194, 4694, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4699, 8, 194, 10, 194, 12, 194, 4702, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4707, 8, 194, 10, 194, 12, 194, 4710, 9, 194, 1, 194, 1, 194, 1, 194, 5, 194, 4715, 8, 194, 10, 194, 12, 194, 4718, 9, 194, 1, 194, 5, 194, 4721, 8, 194, 10, 194, 12, 194, 4724, 9, 194, 1, 194, 1, 194, 3, 194, 4728, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4733, 8, 195, 1, 195, 4, 195, 4736, 8, 195, 11, 195, 12, 195, 4737, 1, 195, 1, 195, 4, 195, 4742, 8, 195, 11, 195, 12, 195, 4743, 3, 195, 4746, 8, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 4, 196, 4755, 8, 196, 11, 196, 12, 196, 4756, 1, 196, 5, 196, 4760, 8, 196, 10, 196, 12, 196, 4763, 9, 196, 1, 196, 1, 196, 4, 196, 4767, 8, 196, 11, 196, 12, 196, 4768, 3, 196, 4771, 8, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 3, 199, 4785, 8, 199, 1, 199, 1, 199, 4, 199, 4789, 8, 199, 11, 199, 12, 199, 4790, 1, 199, 1, 199, 1, 199, 3, 199, 4796, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4801, 8, 200, 1, 200, 1, 200, 4, 200, 4805, 8, 200, 11, 200, 12, 200, 4806, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4814, 8, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4822, 8, 202, 1, 202, 1, 202, 1, 202, 1, 202, 4, 202, 4828, 8, 202, 11, 202, 12, 202, 4829, 1, 202, 1, 202, 1, 202, 3, 202, 4835, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4841, 8, 203, 1, 203, 3, 203, 4844, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4852, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4859, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4868, 8, 205, 1, 205, 3, 205, 4871, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 4886, 8, 207, 10, 207, 12, 207, 4889, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 3, 208, 4896, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4904, 8, 208, 1, 209, 1, 209, 3, 209, 4908, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 3, 210, 4915, 8, 210, 1, 210, 1, 210, 4, 210, 4919, 8, 210, 11, 210, 12, 210, 4920, 1, 211, 1, 211, 1, 211, 1, 211, 4, 211, 4927, 8, 211, 11, 211, 12, 211, 4928, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4936, 8, 212, 10, 212, 12, 212, 4939, 9, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4944, 8, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4949, 8, 212, 10, 212, 12, 212, 4952, 9, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4958, 8, 212, 1, 212, 5, 212, 4961, 8, 212, 10, 212, 12, 212, 4964, 9, 212, 3, 212, 4966, 8, 212, 3, 212, 4968, 8, 212, 1, 212, 1, 212, 4, 212, 4972, 8, 212, 11, 212, 12, 212, 4973, 3, 212, 4976, 8, 212, 1, 212, 1, 212, 5, 212, 4980, 8, 212, 10, 212, 12, 212, 4983, 9, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4989, 8, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4994, 8, 212, 1, 212, 1, 212, 3, 212, 4998, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 5004, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 5011, 8, 213, 10, 213, 12, 213, 5014, 9, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5019, 8, 213, 1, 213, 1, 213, 1, 213, 5, 213, 5024, 8, 213, 10, 213, 12, 213, 5027, 9, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5032, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5038, 8, 213, 1, 213, 5, 213, 5041, 8, 213, 10, 213, 12, 213, 5044, 9, 213, 3, 213, 5046, 8, 213, 3, 213, 5048, 8, 213, 1, 213, 1, 213, 4, 213, 5052, 8, 213, 11, 213, 12, 213, 5053, 3, 213, 5056, 8, 213, 1, 213, 1, 213, 5, 213, 5060, 8, 213, 10, 213, 12, 213, 5063, 9, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5069, 8, 213, 3, 213, 5071, 8, 213, 1, 214, 1, 214, 1, 214, 3, 214, 5076, 8, 214, 1, 214, 1, 214, 1, 214, 5, 214, 5081, 8, 214, 10, 214, 12, 214, 5084, 9, 214, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5090, 8, 215, 10, 215, 12, 215, 5093, 9, 215, 1, 215, 1, 215, 3, 215, 5097, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5104, 8, 215, 10, 215, 12, 215, 5107, 9, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5113, 8, 215, 1, 215, 5, 215, 5116, 8, 215, 10, 215, 12, 215, 5119, 9, 215, 3, 215, 5121, 8, 215, 3, 215, 5123, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 5129, 8, 215, 10, 215, 12, 215, 5132, 9, 215, 3, 215, 5134, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5142, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5147, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5152, 8, 215, 5, 215, 5154, 8, 215, 10, 215, 12, 215, 5157, 9, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5162, 8, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5167, 8, 215, 5, 215, 5169, 8, 215, 10, 215, 12, 215, 5172, 9, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5177, 8, 215, 3, 215, 5179, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 5, 216, 5188, 8, 216, 10, 216, 12, 216, 5191, 9, 216, 3, 216, 5193, 8, 216, 1, 216, 1, 216, 1, 216, 5, 216, 5198, 8, 216, 10, 216, 12, 216, 5201, 9, 216, 3, 216, 5203, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5213, 8, 217, 10, 217, 12, 217, 5216, 9, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5221, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 5228, 8, 218, 10, 218, 12, 218, 5231, 9, 218, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5237, 8, 219, 10, 219, 12, 219, 5240, 9, 219, 1, 219, 1, 219, 3, 219, 5244, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5251, 8, 219, 10, 219, 12, 219, 5254, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5259, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 5, 219, 5268, 8, 219, 10, 219, 12, 219, 5271, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5276, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5281, 8, 219, 5, 219, 5283, 8, 219, 10, 219, 12, 219, 5286, 9, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5291, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5296, 8, 219, 5, 219, 5298, 8, 219, 10, 219, 12, 219, 5301, 9, 219, 3, 219, 5303, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5313, 8, 220, 10, 220, 12, 220, 5316, 9, 220, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5322, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5327, 8, 221, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5357, 8, 223, 1, 224, 1, 224, 3, 224, 5361, 8, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5366, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5373, 8, 225, 1, 225, 3, 225, 5376, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5382, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5392, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5402, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5412, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5418, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5427, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5433, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5440, 8, 228, 3, 228, 5442, 8, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5452, 8, 230, 1, 231, 1, 231, 3, 231, 5456, 8, 231, 1, 231, 1, 231, 3, 231, 5460, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5470, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5475, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5547, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 5565, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 3, 234, 5573, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 5583, 8, 234, 10, 234, 12, 234, 5586, 9, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5592, 8, 234, 3, 234, 5594, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 5602, 8, 234, 10, 234, 12, 234, 5605, 9, 234, 3, 234, 5607, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5613, 8, 235, 10, 235, 12, 235, 5616, 9, 235, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5622, 8, 236, 1, 237, 1, 237, 3, 237, 5626, 8, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 3, 238, 5633, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5638, 8, 238, 1, 238, 3, 238, 5641, 8, 238, 1, 238, 3, 238, 5644, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5653, 8, 239, 1, 240, 1, 240, 3, 240, 5657, 8, 240, 1, 240, 1, 240, 3, 240, 5661, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5684, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5691, 8, 243, 5, 243, 5693, 8, 243, 10, 243, 12, 243, 5696, 9, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5702, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5709, 8, 243, 1, 243, 3, 243, 5712, 8, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 5726, 8, 243, 10, 243, 12, 243, 5729, 9, 243, 3, 243, 5731, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5741, 8, 244, 1, 244, 1, 244, 3, 244, 5745, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5751, 8, 244, 1, 244, 3, 244, 5754, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5759, 8, 244, 1, 244, 1, 244, 3, 244, 5763, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5770, 8, 244, 1, 244, 3, 244, 5773, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5779, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5803, 8, 244, 1, 244, 3, 244, 5806, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5818, 8, 244, 1, 244, 3, 244, 5821, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5831, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5839, 8, 244, 1, 244, 1, 244, 3, 244, 5843, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5850, 8, 244, 1, 244, 3, 244, 5853, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5860, 8, 244, 10, 244, 12, 244, 5863, 9, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5868, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5874, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5884, 8, 244, 3, 244, 5886, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5892, 8, 245, 1, 245, 3, 245, 5895, 8, 245, 1, 245, 3, 245, 5898, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5910, 8, 246, 1, 246, 3, 246, 5913, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5919, 8, 247, 1, 248, 3, 248, 5922, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5930, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5938, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5944, 8, 249, 1, 249, 1, 249, 3, 249, 5948, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5962, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 5972, 8, 252, 10, 252, 12, 252, 5975, 9, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5981, 8, 252, 1, 252, 3, 252, 5984, 8, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 5991, 8, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5996, 8, 253, 10, 253, 12, 253, 5999, 9, 253, 1, 254, 1, 254, 3, 254, 6003, 8, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 5, 255, 6014, 8, 255, 10, 255, 12, 255, 6017, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 3, 258, 6027, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 6033, 8, 258, 1, 259, 1, 259, 1, 259, 3, 259, 6038, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 6051, 8, 259, 3, 259, 6053, 8, 259, 1, 259, 1, 259, 1, 259, 3, 259, 6058, 8, 259, 1, 259, 1, 259, 3, 259, 6062, 8, 259, 1, 259, 3, 259, 6065, 8, 259, 3, 259, 6067, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 6074, 8, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 6081, 8, 261, 1, 261, 3, 261, 6084, 8, 261, 1, 261, 3, 261, 6087, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 6093, 8, 261, 1, 261, 1, 261, 3, 261, 6097, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 6103, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 6109, 8, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 3, 266, 6122, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6127, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 5, 266, 6133, 8, 266, 10, 266, 12, 266, 6136, 9, 266, 3, 266, 6138, 8, 266, 1, 267, 1, 267, 1, 267, 3, 267, 6143, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6148, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 6154, 8, 267, 10, 267, 12, 267, 6157, 9, 267, 3, 267, 6159, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 6167, 8, 268, 1, 269, 1, 269, 3, 269, 6171, 8, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6176, 8, 269, 10, 269, 12, 269, 6179, 9, 269, 1, 270, 1, 270, 1, 270, 3, 270, 6184, 8, 270, 1, 270, 3, 270, 6187, 8, 270, 1, 271, 1, 271, 3, 271, 6191, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6202, 8, 271, 10, 271, 12, 271, 6205, 9, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6210, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6220, 8, 271, 10, 271, 12, 271, 6223, 9, 271, 3, 271, 6225, 8, 271, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6234, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6239, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6245, 8, 274, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 5, 276, 6252, 8, 276, 10, 276, 12, 276, 6255, 9, 276, 1, 277, 1, 277, 3, 277, 6259, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6264, 8, 278, 3, 278, 6266, 8, 278, 1, 278, 3, 278, 6269, 8, 278, 1, 278, 1, 278, 3, 278, 6273, 8, 278, 3, 278, 6275, 8, 278, 1, 279, 1, 279, 3, 279, 6279, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6285, 8, 279, 1, 279, 3, 279, 6288, 8, 279, 1, 279, 3, 279, 6291, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6297, 8, 280, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6306, 8, 282, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6314, 8, 284, 1, 285, 1, 285, 3, 285, 6318, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 6323, 8, 286, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 4, 288, 6341, 8, 288, 11, 288, 12, 288, 6342, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6350, 8, 289, 3, 289, 6352, 8, 289, 1, 290, 1, 290, 1, 290, 4, 290, 6357, 8, 290, 11, 290, 12, 290, 6358, 3, 290, 6361, 8, 290, 1, 291, 1, 291, 3, 291, 6365, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6370, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 6381, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6386, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 3, 296, 6392, 8, 296, 1, 297, 3, 297, 6395, 8, 297, 1, 297, 1, 297, 3, 297, 6399, 8, 297, 1, 297, 4, 297, 6402, 8, 297, 11, 297, 12, 297, 6403, 1, 297, 3, 297, 6407, 8, 297, 1, 297, 1, 297, 3, 297, 6411, 8, 297, 1, 297, 1, 297, 3, 297, 6415, 8, 297, 3, 297, 6417, 8, 297, 1, 298, 1, 298, 1, 299, 3, 299, 6422, 8, 299, 1, 299, 1, 299, 1, 300, 3, 300, 6427, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6440, 8, 301, 1, 301, 3, 301, 6443, 8, 301, 1, 302, 1, 302, 3, 302, 6447, 8, 302, 1, 302, 3, 302, 6450, 8, 302, 1, 302, 3, 302, 6453, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6458, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6463, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6469, 8, 302, 1, 302, 3, 302, 6472, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6477, 8, 302, 1, 302, 3, 302, 6480, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6485, 8, 302, 1, 302, 3, 302, 6488, 8, 302, 1, 302, 1, 302, 3, 302, 6492, 8, 302, 1, 302, 5, 302, 6495, 8, 302, 10, 302, 12, 302, 6498, 9, 302, 1, 302, 1, 302, 3, 302, 6502, 8, 302, 1, 302, 5, 302, 6505, 8, 302, 10, 302, 12, 302, 6508, 9, 302, 1, 302, 1, 302, 3, 302, 6512, 8, 302, 1, 302, 3, 302, 6515, 8, 302, 1, 302, 5, 302, 6518, 8, 302, 10, 302, 12, 302, 6521, 9, 302, 1, 302, 1, 302, 3, 302, 6525, 8, 302, 1, 302, 5, 302, 6528, 8, 302, 10, 302, 12, 302, 6531, 9, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6536, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6541, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6546, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6551, 8, 302, 1, 302, 1, 302, 3, 302, 6555, 8, 302, 1, 302, 3, 302, 6558, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6563, 8, 302, 1, 302, 1, 302, 3, 302, 6567, 8, 302, 1, 302, 1, 302, 3, 302, 6571, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 6577, 8, 303, 10, 303, 12, 303, 6580, 9, 303, 1, 303, 1, 303, 1, 304, 1, 304, 3, 304, 6586, 8, 304, 1, 304, 1, 304, 3, 304, 6590, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6595, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6600, 8, 304, 1, 304, 1, 304, 3, 304, 6604, 8, 304, 3, 304, 6606, 8, 304, 1, 304, 3, 304, 6609, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6625, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 6632, 8, 308, 10, 308, 12, 308, 6635, 9, 308, 1, 309, 1, 309, 1, 309, 5, 309, 6640, 8, 309, 10, 309, 12, 309, 6643, 9, 309, 1, 310, 1, 310, 1, 310, 5, 310, 6648, 8, 310, 10, 310, 12, 310, 6651, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6657, 8, 311, 10, 311, 12, 311, 6660, 9, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6667, 8, 312, 10, 312, 12, 312, 6670, 9, 312, 1, 313, 1, 313, 1, 313, 5, 313, 6675, 8, 313, 10, 313, 12, 313, 6678, 9, 313, 1, 314, 1, 314, 1, 314, 5, 314, 6683, 8, 314, 10, 314, 12, 314, 6686, 9, 314, 1, 315, 1, 315, 1, 315, 5, 315, 6691, 8, 315, 10, 315, 12, 315, 6694, 9, 315, 1, 316, 1, 316, 1, 316, 5, 316, 6699, 8, 316, 10, 316, 12, 316, 6702, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6713, 8, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6720, 8, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6730, 8, 317, 1, 318, 1, 318, 1, 318, 3, 318, 6735, 8, 318, 1, 318, 3, 318, 6738, 8, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6743, 8, 318, 1, 318, 3, 318, 6746, 8, 318, 1, 319, 1, 319, 3, 319, 6750, 8, 319, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 3, 323, 6765, 8, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6773, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6780, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6785, 8, 324, 1, 325, 1, 325, 1, 325, 3, 325, 6790, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 4, 325, 6822, 8, 325, 11, 325, 12, 325, 6823, 1, 325, 1, 325, 3, 325, 6828, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 4, 325, 6834, 8, 325, 11, 325, 12, 325, 6835, 1, 325, 1, 325, 3, 325, 6840, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6849, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6857, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6862, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6870, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6875, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6880, 8, 325, 3, 325, 6882, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6891, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6896, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6904, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6909, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6917, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6925, 8, 325, 1, 325, 3, 325, 6928, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6938, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6956, 8, 325, 1, 325, 3, 325, 6959, 8, 325, 1, 325, 3, 325, 6962, 8, 325, 1, 325, 1, 325, 3, 325, 6966, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 6977, 8, 327, 10, 327, 12, 327, 6980, 9, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6987, 8, 327, 1, 328, 1, 328, 3, 328, 6991, 8, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6996, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7001, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7007, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7012, 8, 329, 1, 329, 1, 329, 3, 329, 7016, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7021, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7026, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 7031, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 7039, 8, 329, 10, 329, 12, 329, 7042, 9, 329, 3, 329, 7044, 8, 329, 1, 329, 1, 329, 3, 329, 7048, 8, 329, 1, 329, 1, 329, 3, 329, 7052, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 7059, 8, 330, 1, 330, 1, 330, 3, 330, 7063, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 7092, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 7100, 8, 331, 1, 332, 3, 332, 7103, 8, 332, 1, 332, 3, 332, 7106, 8, 332, 1, 332, 3, 332, 7109, 8, 332, 1, 332, 3, 332, 7112, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 3, 336, 7123, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7137, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 7144, 8, 339, 10, 339, 12, 339, 7147, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7173, 8, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7184, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7191, 8, 342, 5, 342, 7193, 8, 342, 10, 342, 12, 342, 7196, 9, 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7202, 8, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7210, 8, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7215, 8, 344, 1, 344, 1, 344, 1, 344, 1, 344, 5, 344, 7221, 8, 344, 10, 344, 12, 344, 7224, 9, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7235, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7248, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7254, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7260, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7276, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7282, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 5, 345, 7291, 8, 345, 10, 345, 12, 345, 7294, 9, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 5, 346, 7313, 8, 346, 10, 346, 12, 346, 7316, 9, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 7325, 8, 346, 11, 346, 12, 346, 7326, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7344, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 5, 346, 7365, 8, 346, 10, 346, 12, 346, 7368, 9, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 7386, 8, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 7395, 8, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 7404, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7415, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 0, 3, 688, 690, 692, 361, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 0, 144, 2, 0, 39, 39, 150, 150, 2, 0, 531, 531, 537, 537, 3, 0, 69, 69, 159, 159, 181, 181, 3, 0, 42, 42, 384, 384, 454, 454, 4, 0, 42, 42, 419, 419, 529, 529, 611, 611, 2, 0, 514, 514, 1148, 1148, 2, 0, 78, 78, 141, 141, 2, 0, 15, 15, 334, 334, 3, 0, 44, 44, 85, 85, 184, 184, 2, 0, 434, 434, 558, 558, 3, 0, 506, 506, 650, 650, 658, 658, 2, 0, 392, 392, 460, 460, 2, 0, 352, 352, 474, 474, 2, 0, 42, 42, 1138, 1139, 2, 0, 350, 350, 443, 443, 2, 0, 459, 459, 673, 673, 3, 0, 80, 80, 84, 84, 125, 125, 3, 0, 42, 42, 402, 402, 431, 431, 3, 0, 42, 42, 398, 398, 792, 792, 2, 0, 637, 637, 672, 672, 2, 0, 81, 81, 91, 91, 3, 0, 436, 436, 548, 548, 613, 613, 2, 0, 69, 69, 159, 159, 1, 0, 356, 357, 1, 0, 1138, 1139, 2, 0, 1148, 1148, 1156, 1156, 2, 0, 81, 81, 388, 388, 2, 0, 545, 545, 1148, 1148, 2, 0, 546, 546, 1148, 1148, 3, 0, 430, 430, 469, 469, 521, 521, 7, 0, 42, 42, 370, 370, 372, 372, 402, 402, 431, 431, 573, 573, 1156, 1156, 2, 0, 514, 514, 530, 530, 1, 0, 1139, 1140, 2, 0, 5, 5, 51, 51, 4, 0, 42, 42, 384, 384, 454, 454, 458, 458, 2, 0, 26, 26, 30, 30, 2, 0, 12, 12, 175, 175, 2, 0, 192, 192, 677, 677, 2, 0, 21, 21, 144, 144, 3, 0, 43, 43, 75, 75, 106, 106, 2, 0, 106, 106, 374, 374, 2, 0, 365, 365, 427, 427, 2, 0, 101, 101, 601, 601, 2, 0, 43, 43, 106, 106, 2, 0, 6, 6, 49, 49, 2, 0, 188, 188, 669, 669, 4, 0, 430, 430, 469, 469, 520, 520, 562, 562, 2, 0, 430, 430, 520, 520, 2, 0, 13, 13, 45, 45, 3, 0, 66, 66, 78, 78, 186, 186, 2, 0, 34, 34, 83, 83, 2, 0, 97, 97, 148, 148, 2, 0, 6, 6, 49, 50, 1, 0, 626, 627, 2, 0, 172, 172, 742, 742, 2, 0, 439, 439, 609, 609, 2, 0, 226, 226, 477, 477, 5, 0, 107, 107, 482, 483, 485, 485, 489, 497, 575, 575, 4, 0, 479, 480, 484, 484, 486, 487, 576, 576, 3, 0, 108, 108, 478, 478, 488, 488, 2, 0, 462, 462, 628, 628, 2, 0, 622, 622, 624, 624, 2, 0, 344, 344, 629, 629, 2, 0, 90, 90, 591, 591, 2, 0, 51, 51, 390, 390, 3, 0, 31, 31, 61, 61, 179, 179, 3, 0, 131, 131, 172, 172, 437, 437, 3, 0, 12, 12, 19, 19, 187, 187, 2, 0, 42, 42, 121, 121, 2, 0, 103, 103, 182, 182, 2, 0, 360, 360, 614, 614, 2, 0, 40, 40, 671, 671, 2, 0, 115, 115, 474, 474, 2, 0, 422, 422, 568, 568, 4, 0, 206, 206, 208, 208, 214, 214, 638, 638, 2, 0, 1108, 1108, 1124, 1124, 2, 0, 345, 345, 577, 577, 2, 0, 68, 68, 80, 80, 6, 0, 131, 131, 172, 172, 177, 177, 415, 415, 437, 437, 671, 671, 2, 0, 513, 513, 634, 634, 2, 0, 412, 412, 675, 675, 2, 0, 131, 131, 437, 437, 3, 0, 81, 81, 92, 92, 452, 452, 3, 0, 439, 439, 474, 474, 609, 609, 2, 0, 634, 634, 670, 670, 2, 0, 376, 376, 567, 567, 6, 0, 226, 226, 409, 409, 411, 411, 438, 438, 574, 574, 615, 615, 2, 0, 45, 46, 62, 62, 3, 0, 422, 422, 550, 550, 885, 885, 2, 0, 466, 466, 652, 652, 10, 0, 359, 359, 367, 367, 378, 380, 387, 387, 507, 507, 515, 515, 639, 639, 646, 646, 836, 836, 1005, 1005, 2, 0, 35, 35, 168, 168, 2, 0, 117, 117, 996, 996, 11, 0, 359, 359, 367, 367, 378, 380, 387, 387, 507, 507, 515, 515, 592, 592, 639, 639, 646, 646, 836, 836, 1005, 1005, 2, 0, 1137, 1137, 1158, 1159, 1, 0, 1159, 1160, 2, 0, 375, 375, 787, 798, 3, 0, 1138, 1140, 1149, 1149, 1151, 1151, 2, 0, 63, 63, 178, 178, 2, 0, 116, 116, 1152, 1152, 5, 0, 25, 25, 222, 224, 231, 231, 233, 236, 518, 518, 2, 0, 25, 25, 222, 222, 2, 0, 25, 25, 222, 223, 1, 0, 196, 207, 3, 0, 183, 183, 195, 195, 612, 612, 2, 0, 211, 216, 431, 431, 6, 0, 217, 217, 228, 228, 230, 230, 232, 232, 239, 239, 348, 349, 4, 0, 218, 221, 226, 227, 229, 229, 346, 346, 2, 0, 153, 153, 237, 237, 2, 0, 466, 466, 803, 811, 3, 0, 211, 211, 226, 226, 518, 518, 6, 0, 200, 200, 206, 206, 209, 209, 217, 218, 220, 221, 466, 466, 1, 0, 214, 215, 2, 0, 183, 183, 612, 612, 2, 0, 200, 200, 206, 206, 2, 0, 315, 316, 322, 322, 3, 0, 150, 150, 313, 316, 331, 331, 1, 0, 325, 326, 3, 0, 17, 17, 95, 95, 176, 176, 2, 0, 222, 222, 226, 226, 2, 0, 217, 218, 220, 220, 3, 0, 13, 13, 45, 45, 994, 994, 3, 0, 286, 286, 298, 299, 309, 309, 3, 0, 287, 289, 305, 308, 310, 312, 2, 0, 295, 295, 297, 297, 2, 0, 293, 293, 296, 296, 2, 0, 291, 292, 302, 304, 2, 0, 133, 133, 601, 601, 2, 0, 433, 433, 559, 559, 2, 0, 535, 535, 551, 551, 2, 0, 114, 114, 1127, 1127, 3, 0, 63, 63, 178, 178, 662, 662, 2, 0, 137, 137, 149, 149, 3, 0, 6, 6, 337, 337, 618, 618, 3, 0, 114, 114, 1120, 1121, 1127, 1128, 2, 0, 1117, 1119, 1122, 1123, 1, 0, 1120, 1121, 2, 0, 226, 226, 746, 786, 1, 0, 799, 802, 5, 0, 708, 709, 725, 727, 733, 733, 739, 740, 742, 742, 1, 0, 689, 696, 3, 0, 217, 221, 234, 234, 237, 237, 59, 0, 11, 11, 14, 14, 18, 18, 29, 29, 35, 35, 37, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 73, 73, 79, 79, 94, 94, 117, 117, 121, 121, 124, 124, 130, 130, 158, 158, 168, 168, 239, 239, 283, 290, 294, 294, 298, 299, 305, 312, 332, 385, 387, 403, 405, 405, 407, 432, 434, 450, 452, 458, 460, 521, 523, 523, 527, 544, 547, 558, 560, 589, 591, 592, 594, 606, 608, 636, 638, 672, 674, 675, 677, 682, 684, 688, 697, 697, 699, 707, 710, 712, 717, 718, 720, 724, 728, 732, 734, 734, 736, 738, 741, 741, 743, 745, 792, 792, 836, 836, 875, 875, 1000, 1000, 1005, 1005, 1088, 1088, 23, 0, 39, 39, 97, 97, 148, 148, 150, 150, 217, 219, 221, 221, 251, 282, 290, 293, 295, 297, 300, 304, 324, 324, 459, 459, 673, 673, 689, 696, 736, 736, 803, 803, 806, 835, 837, 874, 876, 999, 1001, 1004, 1006, 1087, 1089, 1107, 1123, 1123, 8745, 0, 723, 1, 0, 0, 0, 2, 735, 1, 0, 0, 0, 4, 744, 1, 0, 0, 0, 6, 784, 1, 0, 0, 0, 8, 799, 1, 0, 0, 0, 10, 810, 1, 0, 0, 0, 12, 827, 1, 0, 0, 0, 14, 832, 1, 0, 0, 0, 16, 844, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 880, 1, 0, 0, 0, 22, 882, 1, 0, 0, 0, 24, 894, 1, 0, 0, 0, 26, 924, 1, 0, 0, 0, 28, 960, 1, 0, 0, 0, 30, 1011, 1, 0, 0, 0, 32, 1037, 1, 0, 0, 0, 34, 1073, 1, 0, 0, 0, 36, 1086, 1, 0, 0, 0, 38, 1183, 1, 0, 0, 0, 40, 1185, 1, 0, 0, 0, 42, 1203, 1, 0, 0, 0, 44, 1264, 1, 0, 0, 0, 46, 1286, 1, 0, 0, 0, 48, 1292, 1, 0, 0, 0, 50, 1314, 1, 0, 0, 0, 52, 1316, 1, 0, 0, 0, 54, 1318, 1, 0, 0, 0, 56, 1398, 1, 0, 0, 0, 58, 1405, 1, 0, 0, 0, 60, 1407, 1, 0, 0, 0, 62, 1412, 1, 0, 0, 0, 64, 1452, 1, 0, 0, 0, 66, 1458, 1, 0, 0, 0, 68, 1460, 1, 0, 0, 0, 70, 1481, 1, 0, 0, 0, 72, 1488, 1, 0, 0, 0, 74, 1490, 1, 0, 0, 0, 76, 1515, 1, 0, 0, 0, 78, 1518, 1, 0, 0, 0, 80, 1523, 1, 0, 0, 0, 82, 1549, 1, 0, 0, 0, 84, 1565, 1, 0, 0, 0, 86, 1567, 1, 0, 0, 0, 88, 1589, 1, 0, 0, 0, 90, 1591, 1, 0, 0, 0, 92, 1657, 1, 0, 0, 0, 94, 1728, 1, 0, 0, 0, 96, 1730, 1, 0, 0, 0, 98, 1758, 1, 0, 0, 0, 100, 1768, 1, 0, 0, 0, 102, 1798, 1, 0, 0, 0, 104, 1985, 1, 0, 0, 0, 106, 1987, 1, 0, 0, 0, 108, 1989, 1, 0, 0, 0, 110, 1992, 1, 0, 0, 0, 112, 2067, 1, 0, 0, 0, 114, 2090, 1, 0, 0, 0, 116, 2238, 1, 0, 0, 0, 118, 2243, 1, 0, 0, 0, 120, 2245, 1, 0, 0, 0, 122, 2255, 1, 0, 0, 0, 124, 2311, 1, 0, 0, 0, 126, 2331, 1, 0, 0, 0, 128, 2333, 1, 0, 0, 0, 130, 2368, 1, 0, 0, 0, 132, 2377, 1, 0, 0, 0, 134, 2384, 1, 0, 0, 0, 136, 2407, 1, 0, 0, 0, 138, 2416, 1, 0, 0, 0, 140, 2431, 1, 0, 0, 0, 142, 2456, 1, 0, 0, 0, 144, 2476, 1, 0, 0, 0, 146, 2859, 1, 0, 0, 0, 148, 2959, 1, 0, 0, 0, 150, 2961, 1, 0, 0, 0, 152, 2968, 1, 0, 0, 0, 154, 2975, 1, 0, 0, 0, 156, 2998, 1, 0, 0, 0, 158, 3006, 1, 0, 0, 0, 160, 3013, 1, 0, 0, 0, 162, 3020, 1, 0, 0, 0, 164, 3027, 1, 0, 0, 0, 166, 3039, 1, 0, 0, 0, 168, 3049, 1, 0, 0, 0, 170, 3056, 1, 0, 0, 0, 172, 3072, 1, 0, 0, 0, 174, 3118, 1, 0, 0, 0, 176, 3120, 1, 0, 0, 0, 178, 3130, 1, 0, 0, 0, 180, 3134, 1, 0, 0, 0, 182, 3140, 1, 0, 0, 0, 184, 3152, 1, 0, 0, 0, 186, 3154, 1, 0, 0, 0, 188, 3161, 1, 0, 0, 0, 190, 3163, 1, 0, 0, 0, 192, 3221, 1, 0, 0, 0, 194, 3295, 1, 0, 0, 0, 196, 3354, 1, 0, 0, 0, 198, 3452, 1, 0, 0, 0, 200, 3456, 1, 0, 0, 0, 202, 3458, 1, 0, 0, 0, 204, 3493, 1, 0, 0, 0, 206, 3495, 1, 0, 0, 0, 208, 3503, 1, 0, 0, 0, 210, 3511, 1, 0, 0, 0, 212, 3513, 1, 0, 0, 0, 214, 3549, 1, 0, 0, 0, 216, 3604, 1, 0, 0, 0, 218, 3613, 1, 0, 0, 0, 220, 3633, 1, 0, 0, 0, 222, 3645, 1, 0, 0, 0, 224, 3649, 1, 0, 0, 0, 226, 3682, 1, 0, 0, 0, 228, 3703, 1, 0, 0, 0, 230, 3713, 1, 0, 0, 0, 232, 3717, 1, 0, 0, 0, 234, 3743, 1, 0, 0, 0, 236, 3782, 1, 0, 0, 0, 238, 3784, 1, 0, 0, 0, 240, 3799, 1, 0, 0, 0, 242, 3848, 1, 0, 0, 0, 244, 3857, 1, 0, 0, 0, 246, 3867, 1, 0, 0, 0, 248, 3877, 1, 0, 0, 0, 250, 3933, 1, 0, 0, 0, 252, 3935, 1, 0, 0, 0, 254, 3962, 1, 0, 0, 0, 256, 3968, 1, 0, 0, 0, 258, 3976, 1, 0, 0, 0, 260, 3993, 1, 0, 0, 0, 262, 4009, 1, 0, 0, 0, 264, 4046, 1, 0, 0, 0, 266, 4052, 1, 0, 0, 0, 268, 4061, 1, 0, 0, 0, 270, 4074, 1, 0, 0, 0, 272, 4078, 1, 0, 0, 0, 274, 4116, 1, 0, 0, 0, 276, 4154, 1, 0, 0, 0, 278, 4168, 1, 0, 0, 0, 280, 4176, 1, 0, 0, 0, 282, 4180, 1, 0, 0, 0, 284, 4186, 1, 0, 0, 0, 286, 4200, 1, 0, 0, 0, 288, 4203, 1, 0, 0, 0, 290, 4221, 1, 0, 0, 0, 292, 4225, 1, 0, 0, 0, 294, 4241, 1, 0, 0, 0, 296, 4243, 1, 0, 0, 0, 298, 4255, 1, 0, 0, 0, 300, 4259, 1, 0, 0, 0, 302, 4276, 1, 0, 0, 0, 304, 4293, 1, 0, 0, 0, 306, 4296, 1, 0, 0, 0, 308, 4306, 1, 0, 0, 0, 310, 4310, 1, 0, 0, 0, 312, 4323, 1, 0, 0, 0, 314, 4326, 1, 0, 0, 0, 316, 4331, 1, 0, 0, 0, 318, 4351, 1, 0, 0, 0, 320, 4353, 1, 0, 0, 0, 322, 4370, 1, 0, 0, 0, 324, 4379, 1, 0, 0, 0, 326, 4388, 1, 0, 0, 0, 328, 4390, 1, 0, 0, 0, 330, 4404, 1, 0, 0, 0, 332, 4415, 1, 0, 0, 0, 334, 4424, 1, 0, 0, 0, 336, 4427, 1, 0, 0, 0, 338, 4435, 1, 0, 0, 0, 340, 4460, 1, 0, 0, 0, 342, 4472, 1, 0, 0, 0, 344, 4475, 1, 0, 0, 0, 346, 4507, 1, 0, 0, 0, 348, 4509, 1, 0, 0, 0, 350, 4511, 1, 0, 0, 0, 352, 4513, 1, 0, 0, 0, 354, 4515, 1, 0, 0, 0, 356, 4568, 1, 0, 0, 0, 358, 4570, 1, 0, 0, 0, 360, 4576, 1, 0, 0, 0, 362, 4596, 1, 0, 0, 0, 364, 4610, 1, 0, 0, 0, 366, 4621, 1, 0, 0, 0, 368, 4623, 1, 0, 0, 0, 370, 4629, 1, 0, 0, 0, 372, 4639, 1, 0, 0, 0, 374, 4643, 1, 0, 0, 0, 376, 4650, 1, 0, 0, 0, 378, 4654, 1, 0, 0, 0, 380, 4660, 1, 0, 0, 0, 382, 4667, 1, 0, 0, 0, 384, 4673, 1, 0, 0, 0, 386, 4679, 1, 0, 0, 0, 388, 4684, 1, 0, 0, 0, 390, 4729, 1, 0, 0, 0, 392, 4750, 1, 0, 0, 0, 394, 4775, 1, 0, 0, 0, 396, 4778, 1, 0, 0, 0, 398, 4784, 1, 0, 0, 0, 400, 4800, 1, 0, 0, 0, 402, 4815, 1, 0, 0, 0, 404, 4821, 1, 0, 0, 0, 406, 4851, 1, 0, 0, 0, 408, 4853, 1, 0, 0, 0, 410, 4860, 1, 0, 0, 0, 412, 4872, 1, 0, 0, 0, 414, 4878, 1, 0, 0, 0, 416, 4903, 1, 0, 0, 0, 418, 4907, 1, 0, 0, 0, 420, 4911, 1, 0, 0, 0, 422, 4922, 1, 0, 0, 0, 424, 5003, 1, 0, 0, 0, 426, 5070, 1, 0, 0, 0, 428, 5072, 1, 0, 0, 0, 430, 5178, 1, 0, 0, 0, 432, 5202, 1, 0, 0, 0, 434, 5204, 1, 0, 0, 0, 436, 5222, 1, 0, 0, 0, 438, 5302, 1, 0, 0, 0, 440, 5304, 1, 0, 0, 0, 442, 5317, 1, 0, 0, 0, 444, 5328, 1, 0, 0, 0, 446, 5356, 1, 0, 0, 0, 448, 5360, 1, 0, 0, 0, 450, 5381, 1, 0, 0, 0, 452, 5391, 1, 0, 0, 0, 454, 5401, 1, 0, 0, 0, 456, 5441, 1, 0, 0, 0, 458, 5443, 1, 0, 0, 0, 460, 5446, 1, 0, 0, 0, 462, 5546, 1, 0, 0, 0, 464, 5564, 1, 0, 0, 0, 466, 5566, 1, 0, 0, 0, 468, 5570, 1, 0, 0, 0, 470, 5608, 1, 0, 0, 0, 472, 5617, 1, 0, 0, 0, 474, 5623, 1, 0, 0, 0, 476, 5630, 1, 0, 0, 0, 478, 5652, 1, 0, 0, 0, 480, 5654, 1, 0, 0, 0, 482, 5668, 1, 0, 0, 0, 484, 5674, 1, 0, 0, 0, 486, 5730, 1, 0, 0, 0, 488, 5885, 1, 0, 0, 0, 490, 5897, 1, 0, 0, 0, 492, 5912, 1, 0, 0, 0, 494, 5918, 1, 0, 0, 0, 496, 5937, 1, 0, 0, 0, 498, 5947, 1, 0, 0, 0, 500, 5961, 1, 0, 0, 0, 502, 5963, 1, 0, 0, 0, 504, 5966, 1, 0, 0, 0, 506, 5988, 1, 0, 0, 0, 508, 6000, 1, 0, 0, 0, 510, 6006, 1, 0, 0, 0, 512, 6018, 1, 0, 0, 0, 514, 6022, 1, 0, 0, 0, 516, 6024, 1, 0, 0, 0, 518, 6066, 1, 0, 0, 0, 520, 6073, 1, 0, 0, 0, 522, 6075, 1, 0, 0, 0, 524, 6098, 1, 0, 0, 0, 526, 6104, 1, 0, 0, 0, 528, 6112, 1, 0, 0, 0, 530, 6115, 1, 0, 0, 0, 532, 6118, 1, 0, 0, 0, 534, 6139, 1, 0, 0, 0, 536, 6160, 1, 0, 0, 0, 538, 6168, 1, 0, 0, 0, 540, 6180, 1, 0, 0, 0, 542, 6188, 1, 0, 0, 0, 544, 6226, 1, 0, 0, 0, 546, 6238, 1, 0, 0, 0, 548, 6240, 1, 0, 0, 0, 550, 6246, 1, 0, 0, 0, 552, 6248, 1, 0, 0, 0, 554, 6258, 1, 0, 0, 0, 556, 6274, 1, 0, 0, 0, 558, 6287, 1, 0, 0, 0, 560, 6296, 1, 0, 0, 0, 562, 6298, 1, 0, 0, 0, 564, 6305, 1, 0, 0, 0, 566, 6307, 1, 0, 0, 0, 568, 6313, 1, 0, 0, 0, 570, 6317, 1, 0, 0, 0, 572, 6322, 1, 0, 0, 0, 574, 6324, 1, 0, 0, 0, 576, 6326, 1, 0, 0, 0, 578, 6344, 1, 0, 0, 0, 580, 6360, 1, 0, 0, 0, 582, 6364, 1, 0, 0, 0, 584, 6369, 1, 0, 0, 0, 586, 6380, 1, 0, 0, 0, 588, 6385, 1, 0, 0, 0, 590, 6387, 1, 0, 0, 0, 592, 6391, 1, 0, 0, 0, 594, 6416, 1, 0, 0, 0, 596, 6418, 1, 0, 0, 0, 598, 6421, 1, 0, 0, 0, 600, 6426, 1, 0, 0, 0, 602, 6442, 1, 0, 0, 0, 604, 6570, 1, 0, 0, 0, 606, 6572, 1, 0, 0, 0, 608, 6605, 1, 0, 0, 0, 610, 6610, 1, 0, 0, 0, 612, 6614, 1, 0, 0, 0, 614, 6620, 1, 0, 0, 0, 616, 6628, 1, 0, 0, 0, 618, 6636, 1, 0, 0, 0, 620, 6644, 1, 0, 0, 0, 622, 6652, 1, 0, 0, 0, 624, 6663, 1, 0, 0, 0, 626, 6671, 1, 0, 0, 0, 628, 6679, 1, 0, 0, 0, 630, 6687, 1, 0, 0, 0, 632, 6695, 1, 0, 0, 0, 634, 6729, 1, 0, 0, 0, 636, 6745, 1, 0, 0, 0, 638, 6749, 1, 0, 0, 0, 640, 6751, 1, 0, 0, 0, 642, 6754, 1, 0, 0, 0, 644, 6758, 1, 0, 0, 0, 646, 6764, 1, 0, 0, 0, 648, 6784, 1, 0, 0, 0, 650, 6965, 1, 0, 0, 0, 652, 6967, 1, 0, 0, 0, 654, 6986, 1, 0, 0, 0, 656, 6988, 1, 0, 0, 0, 658, 7051, 1, 0, 0, 0, 660, 7091, 1, 0, 0, 0, 662, 7093, 1, 0, 0, 0, 664, 7102, 1, 0, 0, 0, 666, 7113, 1, 0, 0, 0, 668, 7115, 1, 0, 0, 0, 670, 7118, 1, 0, 0, 0, 672, 7122, 1, 0, 0, 0, 674, 7124, 1, 0, 0, 0, 676, 7136, 1, 0, 0, 0, 678, 7138, 1, 0, 0, 0, 680, 7172, 1, 0, 0, 0, 682, 7174, 1, 0, 0, 0, 684, 7183, 1, 0, 0, 0, 686, 7201, 1, 0, 0, 0, 688, 7214, 1, 0, 0, 0, 690, 7225, 1, 0, 0, 0, 692, 7343, 1, 0, 0, 0, 694, 7369, 1, 0, 0, 0, 696, 7385, 1, 0, 0, 0, 698, 7394, 1, 0, 0, 0, 700, 7403, 1, 0, 0, 0, 702, 7405, 1, 0, 0, 0, 704, 7407, 1, 0, 0, 0, 706, 7414, 1, 0, 0, 0, 708, 7416, 1, 0, 0, 0, 710, 7418, 1, 0, 0, 0, 712, 7420, 1, 0, 0, 0, 714, 7422, 1, 0, 0, 0, 716, 7424, 1, 0, 0, 0, 718, 7426, 1, 0, 0, 0, 720, 7428, 1, 0, 0, 0, 722, 724, 3, 2, 1, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 5, 0, 0, 1, 726, 1, 1, 0, 0, 0, 727, 729, 3, 4, 2, 0, 728, 730, 5, 1136, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 736, 1, 0, 0, 0, 731, 732, 3, 4, 2, 0, 732, 733, 5, 1136, 0, 0, 733, 734, 3, 2, 1, 0, 734, 736, 1, 0, 0, 0, 735, 727, 1, 0, 0, 0, 735, 731, 1, 0, 0, 0, 736, 3, 1, 0, 0, 0, 737, 745, 3, 6, 3, 0, 738, 745, 3, 8, 4, 0, 739, 745, 3, 10, 5, 0, 740, 745, 3, 12, 6, 0, 741, 745, 3, 14, 7, 0, 742, 745, 3, 18, 9, 0, 743, 745, 3, 20, 10, 0, 744, 737, 1, 0, 0, 0, 744, 738, 1, 0, 0, 0, 744, 739, 1, 0, 0, 0, 744, 740, 1, 0, 0, 0, 744, 741, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 744, 743, 1, 0, 0, 0, 745, 5, 1, 0, 0, 0, 746, 785, 3, 22, 11, 0, 747, 785, 3, 24, 12, 0, 748, 785, 3, 26, 13, 0, 749, 785, 3, 28, 14, 0, 750, 785, 3, 30, 15, 0, 751, 785, 3, 32, 16, 0, 752, 785, 3, 36, 18, 0, 753, 785, 3, 38, 19, 0, 754, 785, 3, 40, 20, 0, 755, 785, 3, 42, 21, 0, 756, 785, 3, 44, 22, 0, 757, 785, 3, 54, 27, 0, 758, 785, 3, 34, 17, 0, 759, 785, 3, 126, 63, 0, 760, 785, 3, 128, 64, 0, 761, 785, 3, 130, 65, 0, 762, 785, 3, 132, 66, 0, 763, 785, 3, 134, 67, 0, 764, 785, 3, 136, 68, 0, 765, 785, 3, 138, 69, 0, 766, 785, 3, 140, 70, 0, 767, 785, 3, 142, 71, 0, 768, 785, 3, 144, 72, 0, 769, 785, 3, 150, 75, 0, 770, 785, 3, 152, 76, 0, 771, 785, 3, 154, 77, 0, 772, 785, 3, 156, 78, 0, 773, 785, 3, 158, 79, 0, 774, 785, 3, 160, 80, 0, 775, 785, 3, 162, 81, 0, 776, 785, 3, 164, 82, 0, 777, 785, 3, 166, 83, 0, 778, 785, 3, 168, 84, 0, 779, 785, 3, 170, 85, 0, 780, 785, 3, 172, 86, 0, 781, 785, 3, 174, 87, 0, 782, 785, 3, 176, 88, 0, 783, 785, 3, 180, 90, 0, 784, 746, 1, 0, 0, 0, 784, 747, 1, 0, 0, 0, 784, 748, 1, 0, 0, 0, 784, 749, 1, 0, 0, 0, 784, 750, 1, 0, 0, 0, 784, 751, 1, 0, 0, 0, 784, 752, 1, 0, 0, 0, 784, 753, 1, 0, 0, 0, 784, 754, 1, 0, 0, 0, 784, 755, 1, 0, 0, 0, 784, 756, 1, 0, 0, 0, 784, 757, 1, 0, 0, 0, 784, 758, 1, 0, 0, 0, 784, 759, 1, 0, 0, 0, 784, 760, 1, 0, 0, 0, 784, 761, 1, 0, 0, 0, 784, 762, 1, 0, 0, 0, 784, 763, 1, 0, 0, 0, 784, 764, 1, 0, 0, 0, 784, 765, 1, 0, 0, 0, 784, 766, 1, 0, 0, 0, 784, 767, 1, 0, 0, 0, 784, 768, 1, 0, 0, 0, 784, 769, 1, 0, 0, 0, 784, 770, 1, 0, 0, 0, 784, 771, 1, 0, 0, 0, 784, 772, 1, 0, 0, 0, 784, 773, 1, 0, 0, 0, 784, 774, 1, 0, 0, 0, 784, 775, 1, 0, 0, 0, 784, 776, 1, 0, 0, 0, 784, 777, 1, 0, 0, 0, 784, 778, 1, 0, 0, 0, 784, 779, 1, 0, 0, 0, 784, 780, 1, 0, 0, 0, 784, 781, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 783, 1, 0, 0, 0, 785, 7, 1, 0, 0, 0, 786, 800, 3, 198, 99, 0, 787, 800, 3, 190, 95, 0, 788, 800, 3, 200, 100, 0, 789, 800, 3, 184, 92, 0, 790, 800, 3, 196, 98, 0, 791, 800, 3, 182, 91, 0, 792, 800, 3, 192, 96, 0, 793, 800, 3, 194, 97, 0, 794, 800, 3, 186, 93, 0, 795, 800, 3, 188, 94, 0, 796, 800, 3, 202, 101, 0, 797, 800, 3, 538, 269, 0, 798, 800, 3, 540, 270, 0, 799, 786, 1, 0, 0, 0, 799, 787, 1, 0, 0, 0, 799, 788, 1, 0, 0, 0, 799, 789, 1, 0, 0, 0, 799, 790, 1, 0, 0, 0, 799, 791, 1, 0, 0, 0, 799, 792, 1, 0, 0, 0, 799, 793, 1, 0, 0, 0, 799, 794, 1, 0, 0, 0, 799, 795, 1, 0, 0, 0, 799, 796, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 798, 1, 0, 0, 0, 800, 9, 1, 0, 0, 0, 801, 811, 3, 296, 148, 0, 802, 811, 3, 298, 149, 0, 803, 811, 3, 300, 150, 0, 804, 811, 3, 302, 151, 0, 805, 811, 3, 304, 152, 0, 806, 811, 3, 306, 153, 0, 807, 811, 3, 308, 154, 0, 808, 811, 3, 310, 155, 0, 809, 811, 3, 312, 156, 0, 810, 801, 1, 0, 0, 0, 810, 802, 1, 0, 0, 0, 810, 803, 1, 0, 0, 0, 810, 804, 1, 0, 0, 0, 810, 805, 1, 0, 0, 0, 810, 806, 1, 0, 0, 0, 810, 807, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 809, 1, 0, 0, 0, 811, 11, 1, 0, 0, 0, 812, 828, 3, 328, 164, 0, 813, 828, 3, 330, 165, 0, 814, 828, 3, 332, 166, 0, 815, 828, 3, 334, 167, 0, 816, 828, 3, 336, 168, 0, 817, 828, 3, 338, 169, 0, 818, 828, 3, 340, 170, 0, 819, 828, 3, 342, 171, 0, 820, 828, 3, 344, 172, 0, 821, 828, 3, 368, 184, 0, 822, 828, 3, 370, 185, 0, 823, 828, 3, 372, 186, 0, 824, 828, 3, 374, 187, 0, 825, 828, 3, 376, 188, 0, 826, 828, 3, 378, 189, 0, 827, 812, 1, 0, 0, 0, 827, 813, 1, 0, 0, 0, 827, 814, 1, 0, 0, 0, 827, 815, 1, 0, 0, 0, 827, 816, 1, 0, 0, 0, 827, 817, 1, 0, 0, 0, 827, 818, 1, 0, 0, 0, 827, 819, 1, 0, 0, 0, 827, 820, 1, 0, 0, 0, 827, 821, 1, 0, 0, 0, 827, 822, 1, 0, 0, 0, 827, 823, 1, 0, 0, 0, 827, 824, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 826, 1, 0, 0, 0, 828, 13, 1, 0, 0, 0, 829, 833, 3, 380, 190, 0, 830, 833, 3, 382, 191, 0, 831, 833, 3, 384, 192, 0, 832, 829, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 832, 831, 1, 0, 0, 0, 833, 15, 1, 0, 0, 0, 834, 845, 3, 388, 194, 0, 835, 845, 3, 390, 195, 0, 836, 845, 3, 392, 196, 0, 837, 845, 3, 396, 198, 0, 838, 845, 3, 398, 199, 0, 839, 845, 3, 400, 200, 0, 840, 845, 3, 404, 202, 0, 841, 845, 3, 394, 197, 0, 842, 845, 3, 402, 201, 0, 843, 845, 3, 406, 203, 0, 844, 834, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 836, 1, 0, 0, 0, 844, 837, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 839, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 841, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 843, 1, 0, 0, 0, 845, 17, 1, 0, 0, 0, 846, 872, 3, 424, 212, 0, 847, 872, 3, 426, 213, 0, 848, 872, 3, 428, 214, 0, 849, 872, 3, 430, 215, 0, 850, 872, 3, 434, 217, 0, 851, 872, 3, 436, 218, 0, 852, 872, 3, 438, 219, 0, 853, 872, 3, 440, 220, 0, 854, 872, 3, 468, 234, 0, 855, 872, 3, 470, 235, 0, 856, 872, 3, 472, 236, 0, 857, 872, 3, 474, 237, 0, 858, 872, 3, 476, 238, 0, 859, 872, 3, 480, 240, 0, 860, 872, 3, 482, 241, 0, 861, 872, 3, 484, 242, 0, 862, 872, 3, 486, 243, 0, 863, 872, 3, 488, 244, 0, 864, 872, 3, 502, 251, 0, 865, 872, 3, 504, 252, 0, 866, 872, 3, 506, 253, 0, 867, 872, 3, 508, 254, 0, 868, 872, 3, 510, 255, 0, 869, 872, 3, 512, 256, 0, 870, 872, 3, 514, 257, 0, 871, 846, 1, 0, 0, 0, 871, 847, 1, 0, 0, 0, 871, 848, 1, 0, 0, 0, 871, 849, 1, 0, 0, 0, 871, 850, 1, 0, 0, 0, 871, 851, 1, 0, 0, 0, 871, 852, 1, 0, 0, 0, 871, 853, 1, 0, 0, 0, 871, 854, 1, 0, 0, 0, 871, 855, 1, 0, 0, 0, 871, 856, 1, 0, 0, 0, 871, 857, 1, 0, 0, 0, 871, 858, 1, 0, 0, 0, 871, 859, 1, 0, 0, 0, 871, 860, 1, 0, 0, 0, 871, 861, 1, 0, 0, 0, 871, 862, 1, 0, 0, 0, 871, 863, 1, 0, 0, 0, 871, 864, 1, 0, 0, 0, 871, 865, 1, 0, 0, 0, 871, 866, 1, 0, 0, 0, 871, 867, 1, 0, 0, 0, 871, 868, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 870, 1, 0, 0, 0, 872, 19, 1, 0, 0, 0, 873, 881, 3, 524, 262, 0, 874, 881, 3, 526, 263, 0, 875, 881, 3, 528, 264, 0, 876, 881, 3, 530, 265, 0, 877, 881, 3, 532, 266, 0, 878, 881, 3, 534, 267, 0, 879, 881, 3, 542, 271, 0, 880, 873, 1, 0, 0, 0, 880, 874, 1, 0, 0, 0, 880, 875, 1, 0, 0, 0, 880, 876, 1, 0, 0, 0, 880, 877, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 880, 879, 1, 0, 0, 0, 881, 21, 1, 0, 0, 0, 882, 883, 5, 33, 0, 0, 883, 885, 7, 0, 0, 0, 884, 886, 3, 642, 321, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 891, 3, 584, 292, 0, 888, 890, 3, 56, 28, 0, 889, 888, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 23, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 894, 896, 5, 33, 0, 0, 895, 897, 3, 62, 31, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 5, 415, 0, 0, 899, 901, 3, 642, 321, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 3, 548, 274, 0, 903, 904, 5, 118, 0, 0, 904, 905, 5, 605, 0, 0, 905, 912, 3, 64, 32, 0, 906, 907, 5, 118, 0, 0, 907, 909, 5, 371, 0, 0, 908, 910, 5, 114, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 913, 5, 561, 0, 0, 912, 906, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 915, 1, 0, 0, 0, 914, 916, 3, 72, 36, 0, 915, 914, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 918, 5, 368, 0, 0, 918, 920, 5, 1148, 0, 0, 919, 917, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 5, 399, 0, 0, 922, 923, 3, 386, 193, 0, 923, 25, 1, 0, 0, 0, 924, 926, 5, 33, 0, 0, 925, 927, 7, 1, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 1, 0, 0, 0, 928, 930, 7, 2, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 5, 81, 0, 0, 932, 934, 3, 584, 292, 0, 933, 935, 3, 74, 37, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 5, 118, 0, 0, 937, 938, 3, 550, 275, 0, 938, 942, 3, 622, 311, 0, 939, 941, 3, 76, 38, 0, 940, 939, 1, 0, 0, 0, 941, 944, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 957, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 947, 5, 336, 0, 0, 946, 948, 5, 1124, 0, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 956, 7, 3, 0, 0, 950, 952, 5, 103, 0, 0, 951, 953, 5, 1124, 0, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 7, 4, 0, 0, 955, 945, 1, 0, 0, 0, 955, 950, 1, 0, 0, 0, 956, 959, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 27, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 960, 961, 5, 33, 0, 0, 961, 962, 5, 475, 0, 0, 962, 963, 5, 73, 0, 0, 963, 964, 3, 584, 292, 0, 964, 965, 5, 5, 0, 0, 965, 966, 5, 659, 0, 0, 966, 972, 5, 1148, 0, 0, 967, 969, 5, 453, 0, 0, 968, 970, 5, 1124, 0, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 973, 3, 592, 296, 0, 972, 967, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 979, 1, 0, 0, 0, 974, 976, 5, 660, 0, 0, 975, 977, 5, 1124, 0, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 980, 3, 592, 296, 0, 979, 974, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 986, 1, 0, 0, 0, 981, 983, 5, 572, 0, 0, 982, 984, 5, 1124, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 987, 3, 592, 296, 0, 986, 981, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 993, 1, 0, 0, 0, 988, 990, 5, 528, 0, 0, 989, 991, 5, 1124, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 3, 584, 292, 0, 993, 988, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 997, 5, 674, 0, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 1003, 1, 0, 0, 0, 998, 1000, 5, 368, 0, 0, 999, 1001, 5, 1124, 0, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1004, 5, 1148, 0, 0, 1003, 998, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1007, 5, 409, 0, 0, 1006, 1008, 5, 1124, 0, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 3, 572, 286, 0, 1010, 29, 1, 0, 0, 0, 1011, 1013, 5, 33, 0, 0, 1012, 1014, 3, 62, 31, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 5, 131, 0, 0, 1016, 1017, 3, 548, 274, 0, 1017, 1019, 5, 1133, 0, 0, 1018, 1020, 3, 78, 39, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1025, 1, 0, 0, 0, 1021, 1022, 5, 1135, 0, 0, 1022, 1024, 3, 78, 39, 0, 1023, 1021, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1032, 5, 1134, 0, 0, 1029, 1031, 3, 82, 41, 0, 1030, 1029, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 1036, 3, 386, 193, 0, 1036, 31, 1, 0, 0, 0, 1037, 1039, 5, 33, 0, 0, 1038, 1040, 3, 62, 31, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 1, 0, 0, 0, 1041, 1043, 5, 335, 0, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1046, 5, 437, 0, 0, 1045, 1047, 3, 642, 321, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 3, 548, 274, 0, 1049, 1051, 5, 1133, 0, 0, 1050, 1052, 3, 80, 40, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1057, 1, 0, 0, 0, 1053, 1054, 5, 1135, 0, 0, 1054, 1056, 3, 80, 40, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1059, 1, 0, 0, 0, 1057, 1055, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1057, 1, 0, 0, 0, 1060, 1061, 5, 1134, 0, 0, 1061, 1062, 5, 594, 0, 0, 1062, 1066, 3, 604, 302, 0, 1063, 1065, 3, 82, 41, 0, 1064, 1063, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1071, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1072, 3, 386, 193, 0, 1070, 1072, 3, 402, 201, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1070, 1, 0, 0, 0, 1072, 33, 1, 0, 0, 0, 1073, 1074, 5, 33, 0, 0, 1074, 1076, 5, 596, 0, 0, 1075, 1077, 3, 642, 321, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1083, 3, 554, 277, 0, 1079, 1080, 5, 1135, 0, 0, 1080, 1082, 3, 554, 277, 0, 1081, 1079, 1, 0, 0, 0, 1082, 1085, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 35, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1086, 1087, 5, 33, 0, 0, 1087, 1088, 5, 608, 0, 0, 1088, 1089, 3, 584, 292, 0, 1089, 1090, 5, 67, 0, 0, 1090, 1091, 5, 388, 0, 0, 1091, 1092, 5, 679, 0, 0, 1092, 1093, 7, 5, 0, 0, 1093, 1094, 5, 541, 0, 0, 1094, 1095, 5, 1133, 0, 0, 1095, 1100, 3, 84, 42, 0, 1096, 1097, 5, 1135, 0, 0, 1097, 1099, 3, 84, 42, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1104, 5, 1134, 0, 0, 1104, 37, 1, 0, 0, 0, 1105, 1107, 5, 33, 0, 0, 1106, 1108, 5, 649, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 5, 172, 0, 0, 1110, 1112, 3, 642, 321, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1121, 3, 550, 275, 0, 1114, 1115, 5, 98, 0, 0, 1115, 1122, 3, 550, 275, 0, 1116, 1117, 5, 1133, 0, 0, 1117, 1118, 5, 98, 0, 0, 1118, 1119, 3, 550, 275, 0, 1119, 1120, 5, 1134, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1114, 1, 0, 0, 0, 1121, 1116, 1, 0, 0, 0, 1122, 1184, 1, 0, 0, 0, 1123, 1125, 5, 33, 0, 0, 1124, 1126, 5, 649, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 5, 172, 0, 0, 1128, 1130, 3, 642, 321, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1133, 3, 550, 275, 0, 1132, 1134, 3, 86, 43, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1145, 1, 0, 0, 0, 1135, 1142, 3, 104, 52, 0, 1136, 1138, 5, 1135, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1141, 3, 104, 52, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1145, 1135, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1149, 3, 110, 55, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1152, 7, 6, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1154, 1, 0, 0, 0, 1153, 1155, 5, 12, 0, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 3, 198, 99, 0, 1157, 1184, 1, 0, 0, 0, 1158, 1160, 5, 33, 0, 0, 1159, 1161, 5, 649, 0, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1164, 5, 172, 0, 0, 1163, 1165, 3, 642, 321, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 3, 550, 275, 0, 1167, 1178, 3, 86, 43, 0, 1168, 1175, 3, 104, 52, 0, 1169, 1171, 5, 1135, 0, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1174, 3, 104, 52, 0, 1173, 1170, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1168, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 110, 55, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1184, 1, 0, 0, 0, 1183, 1105, 1, 0, 0, 0, 1183, 1123, 1, 0, 0, 0, 1183, 1158, 1, 0, 0, 0, 1184, 39, 1, 0, 0, 0, 1185, 1186, 5, 33, 0, 0, 1186, 1187, 5, 647, 0, 0, 1187, 1188, 3, 584, 292, 0, 1188, 1189, 5, 5, 0, 0, 1189, 1190, 5, 389, 0, 0, 1190, 1194, 5, 1148, 0, 0, 1191, 1192, 5, 428, 0, 0, 1192, 1193, 5, 1124, 0, 0, 1193, 1195, 3, 592, 296, 0, 1194, 1191, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1201, 1, 0, 0, 0, 1196, 1198, 5, 409, 0, 0, 1197, 1199, 5, 1124, 0, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, 3, 572, 286, 0, 1201, 1196, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 41, 1, 0, 0, 0, 1203, 1204, 5, 33, 0, 0, 1204, 1205, 5, 647, 0, 0, 1205, 1206, 3, 584, 292, 0, 1206, 1207, 5, 5, 0, 0, 1207, 1208, 5, 389, 0, 0, 1208, 1209, 5, 1148, 0, 0, 1209, 1210, 5, 186, 0, 0, 1210, 1211, 5, 475, 0, 0, 1211, 1212, 5, 73, 0, 0, 1212, 1218, 3, 584, 292, 0, 1213, 1215, 5, 423, 0, 0, 1214, 1216, 5, 1124, 0, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1219, 3, 592, 296, 0, 1218, 1213, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1225, 1, 0, 0, 0, 1220, 1222, 5, 453, 0, 0, 1221, 1223, 5, 1124, 0, 0, 1222, 1221, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 3, 592, 296, 0, 1225, 1220, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1232, 1, 0, 0, 0, 1227, 1229, 5, 341, 0, 0, 1228, 1230, 5, 1124, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1233, 3, 592, 296, 0, 1232, 1227, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1239, 1, 0, 0, 0, 1234, 1236, 5, 501, 0, 0, 1235, 1237, 5, 1124, 0, 0, 1236, 1235, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1240, 3, 592, 296, 0, 1239, 1234, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1246, 1, 0, 0, 0, 1241, 1243, 5, 528, 0, 0, 1242, 1244, 5, 1124, 0, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1247, 3, 584, 292, 0, 1246, 1241, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 5, 674, 0, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1256, 1, 0, 0, 0, 1251, 1253, 5, 368, 0, 0, 1252, 1254, 5, 1124, 0, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1257, 5, 1148, 0, 0, 1256, 1251, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 5, 409, 0, 0, 1259, 1261, 5, 1124, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 3, 572, 286, 0, 1263, 43, 1, 0, 0, 0, 1264, 1266, 5, 33, 0, 0, 1265, 1267, 3, 62, 31, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 5, 177, 0, 0, 1269, 1271, 3, 642, 321, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 3, 548, 274, 0, 1273, 1274, 7, 7, 0, 0, 1274, 1275, 7, 8, 0, 0, 1275, 1276, 5, 118, 0, 0, 1276, 1277, 3, 550, 275, 0, 1277, 1278, 5, 65, 0, 0, 1278, 1279, 5, 52, 0, 0, 1279, 1282, 5, 600, 0, 0, 1280, 1281, 7, 9, 0, 0, 1281, 1283, 3, 548, 274, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 3, 386, 193, 0, 1285, 45, 1, 0, 0, 0, 1286, 1288, 5, 192, 0, 0, 1287, 1289, 5, 571, 0, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 3, 48, 24, 0, 1291, 47, 1, 0, 0, 0, 1292, 1304, 3, 50, 25, 0, 1293, 1294, 5, 1133, 0, 0, 1294, 1299, 3, 52, 26, 0, 1295, 1296, 5, 1135, 0, 0, 1296, 1298, 3, 52, 26, 0, 1297, 1295, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1303, 5, 1134, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1293, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 5, 12, 0, 0, 1307, 1308, 5, 1133, 0, 0, 1308, 1309, 3, 8, 4, 0, 1309, 1312, 5, 1134, 0, 0, 1310, 1311, 5, 1135, 0, 0, 1311, 1313, 3, 48, 24, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 49, 1, 0, 0, 0, 1314, 1315, 3, 584, 292, 0, 1315, 51, 1, 0, 0, 0, 1316, 1317, 3, 584, 292, 0, 1317, 53, 1, 0, 0, 0, 1318, 1320, 5, 33, 0, 0, 1319, 1321, 3, 644, 322, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1325, 1, 0, 0, 0, 1322, 1323, 5, 336, 0, 0, 1323, 1324, 5, 1124, 0, 0, 1324, 1326, 7, 10, 0, 0, 1325, 1322, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1328, 1, 0, 0, 0, 1327, 1329, 3, 62, 31, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1333, 1, 0, 0, 0, 1330, 1331, 5, 160, 0, 0, 1331, 1332, 5, 606, 0, 0, 1332, 1334, 7, 11, 0, 0, 1333, 1330, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 5, 671, 0, 0, 1336, 1341, 3, 548, 274, 0, 1337, 1338, 5, 1133, 0, 0, 1338, 1339, 3, 616, 308, 0, 1339, 1340, 5, 1134, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1337, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1363, 5, 12, 0, 0, 1344, 1346, 5, 1133, 0, 0, 1345, 1347, 3, 46, 23, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 3, 198, 99, 0, 1349, 1350, 5, 1134, 0, 0, 1350, 1364, 1, 0, 0, 0, 1351, 1353, 3, 46, 23, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1361, 3, 198, 99, 0, 1355, 1357, 5, 192, 0, 0, 1356, 1358, 7, 12, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 5, 26, 0, 0, 1360, 1362, 5, 120, 0, 0, 1361, 1355, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 1, 0, 0, 0, 1363, 1344, 1, 0, 0, 0, 1363, 1352, 1, 0, 0, 0, 1364, 55, 1, 0, 0, 0, 1365, 1367, 5, 42, 0, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1370, 3, 58, 29, 0, 1369, 1371, 5, 1124, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1374, 1, 0, 0, 0, 1372, 1375, 3, 568, 284, 0, 1373, 1375, 5, 42, 0, 0, 1374, 1372, 1, 0, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 1399, 1, 0, 0, 0, 1376, 1378, 5, 42, 0, 0, 1377, 1376, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1381, 5, 27, 0, 0, 1380, 1382, 5, 1124, 0, 0, 1381, 1380, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1399, 3, 570, 285, 0, 1384, 1386, 5, 42, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 5, 405, 0, 0, 1388, 1390, 5, 1124, 0, 0, 1389, 1388, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1399, 5, 1148, 0, 0, 1392, 1393, 5, 134, 0, 0, 1393, 1395, 5, 538, 0, 0, 1394, 1396, 5, 1124, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1399, 7, 13, 0, 0, 1398, 1366, 1, 0, 0, 0, 1398, 1377, 1, 0, 0, 0, 1398, 1385, 1, 0, 0, 0, 1398, 1392, 1, 0, 0, 0, 1399, 57, 1, 0, 0, 0, 1400, 1401, 5, 25, 0, 0, 1401, 1406, 5, 153, 0, 0, 1402, 1406, 5, 841, 0, 0, 1403, 1404, 5, 222, 0, 0, 1404, 1406, 5, 153, 0, 0, 1405, 1400, 1, 0, 0, 0, 1405, 1402, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1406, 59, 1, 0, 0, 0, 1407, 1410, 5, 37, 0, 0, 1408, 1409, 5, 1133, 0, 0, 1409, 1411, 5, 1134, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 61, 1, 0, 0, 0, 1412, 1413, 5, 392, 0, 0, 1413, 1416, 5, 1124, 0, 0, 1414, 1417, 3, 564, 282, 0, 1415, 1417, 3, 60, 30, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 63, 1, 0, 0, 0, 1418, 1419, 5, 338, 0, 0, 1419, 1423, 3, 66, 33, 0, 1420, 1422, 3, 68, 34, 0, 1421, 1420, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1453, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1429, 5, 417, 0, 0, 1427, 1430, 3, 590, 295, 0, 1428, 1430, 3, 688, 344, 0, 1429, 1427, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1440, 3, 70, 35, 0, 1432, 1433, 5, 630, 0, 0, 1433, 1437, 3, 66, 33, 0, 1434, 1436, 3, 68, 34, 0, 1435, 1434, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1441, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1432, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1450, 1, 0, 0, 0, 1442, 1443, 5, 408, 0, 0, 1443, 1447, 3, 66, 33, 0, 1444, 1446, 3, 68, 34, 0, 1445, 1444, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1451, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1450, 1442, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1418, 1, 0, 0, 0, 1452, 1426, 1, 0, 0, 0, 1453, 65, 1, 0, 0, 0, 1454, 1459, 5, 315, 0, 0, 1455, 1459, 3, 594, 297, 0, 1456, 1459, 3, 590, 295, 0, 1457, 1459, 3, 688, 344, 0, 1458, 1454, 1, 0, 0, 0, 1458, 1455, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1457, 1, 0, 0, 0, 1459, 67, 1, 0, 0, 0, 1460, 1461, 5, 1120, 0, 0, 1461, 1464, 5, 86, 0, 0, 1462, 1465, 3, 590, 295, 0, 1463, 1465, 3, 688, 344, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 3, 70, 35, 0, 1467, 69, 1, 0, 0, 0, 1468, 1482, 3, 714, 357, 0, 1469, 1482, 5, 221, 0, 0, 1470, 1482, 5, 240, 0, 0, 1471, 1482, 5, 241, 0, 0, 1472, 1482, 5, 242, 0, 0, 1473, 1482, 5, 243, 0, 0, 1474, 1482, 5, 244, 0, 0, 1475, 1482, 5, 245, 0, 0, 1476, 1482, 5, 246, 0, 0, 1477, 1482, 5, 247, 0, 0, 1478, 1482, 5, 248, 0, 0, 1479, 1482, 5, 249, 0, 0, 1480, 1482, 5, 250, 0, 0, 1481, 1468, 1, 0, 0, 0, 1481, 1469, 1, 0, 0, 0, 1481, 1470, 1, 0, 0, 0, 1481, 1471, 1, 0, 0, 0, 1481, 1472, 1, 0, 0, 0, 1481, 1473, 1, 0, 0, 0, 1481, 1474, 1, 0, 0, 0, 1481, 1475, 1, 0, 0, 0, 1481, 1476, 1, 0, 0, 0, 1481, 1477, 1, 0, 0, 0, 1481, 1478, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1481, 1480, 1, 0, 0, 0, 1482, 71, 1, 0, 0, 0, 1483, 1489, 5, 403, 0, 0, 1484, 1489, 5, 396, 0, 0, 1485, 1486, 5, 396, 0, 0, 1486, 1487, 5, 118, 0, 0, 1487, 1489, 5, 614, 0, 0, 1488, 1483, 1, 0, 0, 0, 1488, 1484, 1, 0, 0, 0, 1488, 1485, 1, 0, 0, 0, 1489, 73, 1, 0, 0, 0, 1490, 1491, 5, 187, 0, 0, 1491, 1492, 7, 14, 0, 0, 1492, 75, 1, 0, 0, 0, 1493, 1495, 5, 467, 0, 0, 1494, 1496, 5, 1124, 0, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1516, 3, 592, 296, 0, 1498, 1516, 3, 74, 37, 0, 1499, 1500, 5, 192, 0, 0, 1500, 1501, 5, 547, 0, 0, 1501, 1516, 3, 584, 292, 0, 1502, 1503, 5, 368, 0, 0, 1503, 1516, 5, 1148, 0, 0, 1504, 1516, 7, 15, 0, 0, 1505, 1507, 5, 875, 0, 0, 1506, 1508, 5, 1124, 0, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1516, 5, 1148, 0, 0, 1510, 1512, 5, 1000, 0, 0, 1511, 1513, 5, 1124, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1516, 5, 1148, 0, 0, 1515, 1493, 1, 0, 0, 0, 1515, 1498, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1502, 1, 0, 0, 0, 1515, 1504, 1, 0, 0, 0, 1515, 1505, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1516, 77, 1, 0, 0, 0, 1517, 1519, 7, 16, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 3, 584, 292, 0, 1521, 1522, 3, 604, 302, 0, 1522, 79, 1, 0, 0, 0, 1523, 1524, 3, 584, 292, 0, 1524, 1525, 3, 604, 302, 0, 1525, 81, 1, 0, 0, 0, 1526, 1527, 5, 368, 0, 0, 1527, 1550, 5, 1148, 0, 0, 1528, 1529, 5, 468, 0, 0, 1529, 1550, 5, 160, 0, 0, 1530, 1532, 5, 114, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1550, 5, 47, 0, 0, 1534, 1535, 5, 381, 0, 0, 1535, 1545, 5, 160, 0, 0, 1536, 1537, 5, 521, 0, 0, 1537, 1545, 5, 160, 0, 0, 1538, 1539, 5, 135, 0, 0, 1539, 1540, 5, 160, 0, 0, 1540, 1545, 5, 388, 0, 0, 1541, 1542, 5, 112, 0, 0, 1542, 1543, 5, 160, 0, 0, 1543, 1545, 5, 388, 0, 0, 1544, 1534, 1, 0, 0, 0, 1544, 1536, 1, 0, 0, 0, 1544, 1538, 1, 0, 0, 0, 1544, 1541, 1, 0, 0, 0, 1545, 1550, 1, 0, 0, 0, 1546, 1547, 5, 160, 0, 0, 1547, 1548, 5, 606, 0, 0, 1548, 1550, 7, 11, 0, 0, 1549, 1526, 1, 0, 0, 0, 1549, 1528, 1, 0, 0, 0, 1549, 1531, 1, 0, 0, 0, 1549, 1544, 1, 0, 0, 0, 1549, 1546, 1, 0, 0, 0, 1550, 83, 1, 0, 0, 0, 1551, 1552, 5, 446, 0, 0, 1552, 1566, 5, 1148, 0, 0, 1553, 1554, 5, 39, 0, 0, 1554, 1566, 5, 1148, 0, 0, 1555, 1556, 5, 665, 0, 0, 1556, 1566, 5, 1148, 0, 0, 1557, 1558, 5, 551, 0, 0, 1558, 1566, 5, 1148, 0, 0, 1559, 1560, 5, 617, 0, 0, 1560, 1566, 5, 1148, 0, 0, 1561, 1562, 5, 542, 0, 0, 1562, 1566, 5, 1148, 0, 0, 1563, 1564, 5, 557, 0, 0, 1564, 1566, 3, 590, 295, 0, 1565, 1551, 1, 0, 0, 0, 1565, 1553, 1, 0, 0, 0, 1565, 1555, 1, 0, 0, 0, 1565, 1557, 1, 0, 0, 0, 1565, 1559, 1, 0, 0, 0, 1565, 1561, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1566, 85, 1, 0, 0, 0, 1567, 1568, 5, 1133, 0, 0, 1568, 1573, 3, 88, 44, 0, 1569, 1570, 5, 1135, 0, 0, 1570, 1572, 3, 88, 44, 0, 1571, 1569, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 1134, 0, 0, 1577, 87, 1, 0, 0, 0, 1578, 1579, 3, 556, 278, 0, 1579, 1580, 3, 90, 45, 0, 1580, 1590, 1, 0, 0, 0, 1581, 1583, 3, 94, 47, 0, 1582, 1584, 5, 114, 0, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1587, 5, 57, 0, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1590, 1, 0, 0, 0, 1588, 1590, 3, 102, 51, 0, 1589, 1578, 1, 0, 0, 0, 1589, 1581, 1, 0, 0, 0, 1589, 1588, 1, 0, 0, 0, 1590, 89, 1, 0, 0, 0, 1591, 1595, 3, 604, 302, 0, 1592, 1594, 3, 92, 46, 0, 1593, 1592, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1599, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1600, 5, 114, 0, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1603, 5, 57, 0, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 91, 1, 0, 0, 0, 1604, 1658, 3, 600, 300, 0, 1605, 1606, 5, 42, 0, 0, 1606, 1658, 3, 634, 317, 0, 1607, 1658, 5, 673, 0, 0, 1608, 1658, 5, 459, 0, 0, 1609, 1614, 5, 342, 0, 0, 1610, 1611, 5, 118, 0, 0, 1611, 1612, 5, 184, 0, 0, 1612, 1614, 3, 636, 318, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1610, 1, 0, 0, 0, 1614, 1658, 1, 0, 0, 0, 1615, 1617, 5, 130, 0, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1658, 5, 91, 0, 0, 1619, 1621, 5, 181, 0, 0, 1620, 1622, 5, 91, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1658, 1, 0, 0, 0, 1623, 1624, 5, 368, 0, 0, 1624, 1658, 5, 1148, 0, 0, 1625, 1626, 5, 366, 0, 0, 1626, 1658, 7, 17, 0, 0, 1627, 1628, 5, 636, 0, 0, 1628, 1658, 7, 18, 0, 0, 1629, 1658, 3, 96, 48, 0, 1630, 1631, 5, 27, 0, 0, 1631, 1658, 3, 570, 285, 0, 1632, 1633, 5, 70, 0, 0, 1633, 1635, 5, 8, 0, 0, 1634, 1632, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 5, 12, 0, 0, 1637, 1638, 5, 1133, 0, 0, 1638, 1639, 3, 688, 344, 0, 1639, 1641, 5, 1134, 0, 0, 1640, 1642, 7, 19, 0, 0, 1641, 1640, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1658, 1, 0, 0, 0, 1643, 1644, 5, 239, 0, 0, 1644, 1645, 5, 42, 0, 0, 1645, 1658, 5, 669, 0, 0, 1646, 1648, 5, 30, 0, 0, 1647, 1649, 3, 584, 292, 0, 1648, 1647, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1646, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 5, 26, 0, 0, 1653, 1654, 5, 1133, 0, 0, 1654, 1655, 3, 688, 344, 0, 1655, 1656, 5, 1134, 0, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1604, 1, 0, 0, 0, 1657, 1605, 1, 0, 0, 0, 1657, 1607, 1, 0, 0, 0, 1657, 1608, 1, 0, 0, 0, 1657, 1613, 1, 0, 0, 0, 1657, 1616, 1, 0, 0, 0, 1657, 1619, 1, 0, 0, 0, 1657, 1623, 1, 0, 0, 0, 1657, 1625, 1, 0, 0, 0, 1657, 1627, 1, 0, 0, 0, 1657, 1629, 1, 0, 0, 0, 1657, 1630, 1, 0, 0, 0, 1657, 1634, 1, 0, 0, 0, 1657, 1643, 1, 0, 0, 0, 1657, 1650, 1, 0, 0, 0, 1658, 93, 1, 0, 0, 0, 1659, 1661, 5, 30, 0, 0, 1660, 1662, 3, 584, 292, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1659, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 5, 130, 0, 0, 1666, 1668, 5, 91, 0, 0, 1667, 1669, 3, 584, 292, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 3, 74, 37, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1677, 3, 622, 311, 0, 1674, 1676, 3, 76, 38, 0, 1675, 1674, 1, 0, 0, 0, 1676, 1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1729, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1682, 5, 30, 0, 0, 1681, 1683, 3, 584, 292, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1685, 1, 0, 0, 0, 1684, 1680, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1688, 5, 181, 0, 0, 1687, 1689, 7, 20, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1692, 3, 584, 292, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1694, 1, 0, 0, 0, 1693, 1695, 3, 74, 37, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1700, 3, 622, 311, 0, 1697, 1699, 3, 76, 38, 0, 1698, 1697, 1, 0, 0, 0, 1699, 1702, 1, 0, 0, 0, 1700, 1698, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1729, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1705, 5, 30, 0, 0, 1704, 1706, 3, 584, 292, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1708, 1, 0, 0, 0, 1707, 1703, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 5, 67, 0, 0, 1710, 1712, 5, 91, 0, 0, 1711, 1713, 3, 584, 292, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 3, 622, 311, 0, 1715, 1716, 3, 96, 48, 0, 1716, 1729, 1, 0, 0, 0, 1717, 1719, 5, 30, 0, 0, 1718, 1720, 3, 584, 292, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1722, 1, 0, 0, 0, 1721, 1717, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 5, 26, 0, 0, 1724, 1725, 5, 1133, 0, 0, 1725, 1726, 3, 688, 344, 0, 1726, 1727, 5, 1134, 0, 0, 1727, 1729, 1, 0, 0, 0, 1728, 1663, 1, 0, 0, 0, 1728, 1684, 1, 0, 0, 0, 1728, 1707, 1, 0, 0, 0, 1728, 1721, 1, 0, 0, 0, 1729, 95, 1, 0, 0, 0, 1730, 1731, 5, 136, 0, 0, 1731, 1733, 3, 550, 275, 0, 1732, 1734, 3, 622, 311, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1737, 1, 0, 0, 0, 1735, 1736, 5, 109, 0, 0, 1736, 1738, 7, 21, 0, 0, 1737, 1735, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 1, 0, 0, 0, 1739, 1741, 3, 98, 49, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 97, 1, 0, 0, 0, 1742, 1743, 5, 118, 0, 0, 1743, 1744, 5, 44, 0, 0, 1744, 1748, 3, 100, 50, 0, 1745, 1746, 5, 118, 0, 0, 1746, 1747, 5, 184, 0, 0, 1747, 1749, 3, 100, 50, 0, 1748, 1745, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1759, 1, 0, 0, 0, 1750, 1751, 5, 118, 0, 0, 1751, 1752, 5, 184, 0, 0, 1752, 1756, 3, 100, 50, 0, 1753, 1754, 5, 118, 0, 0, 1754, 1755, 5, 44, 0, 0, 1755, 1757, 3, 100, 50, 0, 1756, 1753, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1759, 1, 0, 0, 0, 1758, 1742, 1, 0, 0, 0, 1758, 1750, 1, 0, 0, 0, 1759, 99, 1, 0, 0, 0, 1760, 1769, 5, 144, 0, 0, 1761, 1769, 5, 21, 0, 0, 1762, 1763, 5, 153, 0, 0, 1763, 1769, 5, 116, 0, 0, 1764, 1765, 5, 521, 0, 0, 1765, 1769, 5, 333, 0, 0, 1766, 1767, 5, 153, 0, 0, 1767, 1769, 5, 42, 0, 0, 1768, 1760, 1, 0, 0, 0, 1768, 1761, 1, 0, 0, 0, 1768, 1762, 1, 0, 0, 0, 1768, 1764, 1, 0, 0, 0, 1768, 1766, 1, 0, 0, 0, 1769, 101, 1, 0, 0, 0, 1770, 1772, 7, 20, 0, 0, 1771, 1773, 3, 584, 292, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1776, 3, 74, 37, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1781, 3, 622, 311, 0, 1778, 1780, 3, 76, 38, 0, 1779, 1778, 1, 0, 0, 0, 1780, 1783, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1799, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1786, 7, 22, 0, 0, 1785, 1787, 7, 20, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 584, 292, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1795, 3, 622, 311, 0, 1792, 1794, 3, 76, 38, 0, 1793, 1792, 1, 0, 0, 0, 1794, 1797, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1798, 1770, 1, 0, 0, 0, 1798, 1784, 1, 0, 0, 0, 1799, 103, 1, 0, 0, 0, 1800, 1802, 5, 409, 0, 0, 1801, 1803, 5, 1124, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1805, 1, 0, 0, 0, 1804, 1806, 3, 572, 286, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1986, 1, 0, 0, 0, 1807, 1809, 5, 875, 0, 0, 1808, 1810, 5, 1124, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1986, 5, 1148, 0, 0, 1812, 1814, 5, 341, 0, 0, 1813, 1815, 5, 1124, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1986, 3, 590, 295, 0, 1817, 1819, 5, 342, 0, 0, 1818, 1820, 5, 1124, 0, 0, 1819, 1818, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1986, 3, 590, 295, 0, 1822, 1824, 5, 343, 0, 0, 1823, 1825, 5, 1124, 0, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1986, 3, 590, 295, 0, 1827, 1829, 5, 42, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1832, 3, 58, 29, 0, 1831, 1833, 5, 1124, 0, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1836, 1, 0, 0, 0, 1834, 1837, 3, 568, 284, 0, 1835, 1837, 5, 42, 0, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1835, 1, 0, 0, 0, 1837, 1986, 1, 0, 0, 0, 1838, 1840, 7, 23, 0, 0, 1839, 1841, 5, 1124, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1986, 7, 24, 0, 0, 1843, 1845, 5, 42, 0, 0, 1844, 1843, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1848, 5, 27, 0, 0, 1847, 1849, 5, 1124, 0, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1986, 3, 570, 285, 0, 1851, 1853, 5, 368, 0, 0, 1852, 1854, 5, 1124, 0, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1986, 5, 1148, 0, 0, 1856, 1858, 5, 373, 0, 0, 1857, 1859, 5, 1124, 0, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1986, 7, 25, 0, 0, 1861, 1863, 5, 376, 0, 0, 1862, 1864, 5, 1124, 0, 0, 1863, 1862, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1986, 5, 1148, 0, 0, 1866, 1867, 7, 26, 0, 0, 1867, 1869, 5, 395, 0, 0, 1868, 1870, 5, 1124, 0, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1986, 5, 1148, 0, 0, 1872, 1874, 5, 393, 0, 0, 1873, 1875, 5, 1124, 0, 0, 1874, 1873, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1986, 7, 24, 0, 0, 1877, 1879, 5, 405, 0, 0, 1878, 1880, 5, 1124, 0, 0, 1879, 1878, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1986, 5, 1148, 0, 0, 1882, 1884, 7, 27, 0, 0, 1883, 1885, 5, 1124, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1986, 7, 24, 0, 0, 1887, 1889, 7, 28, 0, 0, 1888, 1890, 5, 1124, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1986, 3, 590, 295, 0, 1892, 1894, 5, 406, 0, 0, 1893, 1895, 5, 1124, 0, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1986, 3, 590, 295, 0, 1897, 1898, 5, 81, 0, 0, 1898, 1900, 5, 395, 0, 0, 1899, 1901, 5, 1124, 0, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1986, 5, 1148, 0, 0, 1903, 1905, 5, 455, 0, 0, 1904, 1906, 5, 1124, 0, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1986, 7, 29, 0, 0, 1908, 1910, 5, 467, 0, 0, 1909, 1911, 5, 1124, 0, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1986, 3, 592, 296, 0, 1913, 1915, 5, 500, 0, 0, 1914, 1916, 5, 1124, 0, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1986, 3, 590, 295, 0, 1918, 1920, 5, 510, 0, 0, 1919, 1921, 5, 1124, 0, 0, 1920, 1919, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1986, 3, 590, 295, 0, 1923, 1925, 5, 543, 0, 0, 1924, 1926, 5, 1124, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1986, 7, 13, 0, 0, 1928, 1930, 5, 551, 0, 0, 1929, 1931, 5, 1124, 0, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1986, 5, 1148, 0, 0, 1933, 1935, 5, 602, 0, 0, 1934, 1936, 5, 1124, 0, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1986, 7, 30, 0, 0, 1938, 1939, 5, 629, 0, 0, 1939, 1986, 5, 653, 0, 0, 1940, 1942, 5, 1000, 0, 0, 1941, 1943, 5, 1124, 0, 0, 1942, 1941, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1986, 5, 1148, 0, 0, 1945, 1947, 5, 631, 0, 0, 1946, 1948, 5, 1124, 0, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1986, 7, 13, 0, 0, 1950, 1952, 5, 632, 0, 0, 1951, 1953, 5, 1124, 0, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1986, 7, 13, 0, 0, 1955, 1957, 5, 633, 0, 0, 1956, 1958, 5, 1124, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1962, 5, 42, 0, 0, 1960, 1962, 3, 590, 295, 0, 1961, 1959, 1, 0, 0, 0, 1961, 1960, 1, 0, 0, 0, 1962, 1986, 1, 0, 0, 0, 1963, 1964, 5, 647, 0, 0, 1964, 1966, 3, 584, 292, 0, 1965, 1967, 3, 108, 54, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1986, 1, 0, 0, 0, 1968, 1969, 5, 648, 0, 0, 1969, 1970, 5, 1124, 0, 0, 1970, 1986, 3, 106, 53, 0, 1971, 1986, 3, 108, 54, 0, 1972, 1974, 5, 654, 0, 0, 1973, 1975, 5, 1124, 0, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1986, 7, 24, 0, 0, 1977, 1979, 5, 180, 0, 0, 1978, 1980, 5, 1124, 0, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 5, 1133, 0, 0, 1982, 1983, 3, 620, 310, 0, 1983, 1984, 5, 1134, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1800, 1, 0, 0, 0, 1985, 1807, 1, 0, 0, 0, 1985, 1812, 1, 0, 0, 0, 1985, 1817, 1, 0, 0, 0, 1985, 1822, 1, 0, 0, 0, 1985, 1828, 1, 0, 0, 0, 1985, 1838, 1, 0, 0, 0, 1985, 1844, 1, 0, 0, 0, 1985, 1851, 1, 0, 0, 0, 1985, 1856, 1, 0, 0, 0, 1985, 1861, 1, 0, 0, 0, 1985, 1866, 1, 0, 0, 0, 1985, 1872, 1, 0, 0, 0, 1985, 1877, 1, 0, 0, 0, 1985, 1882, 1, 0, 0, 0, 1985, 1887, 1, 0, 0, 0, 1985, 1892, 1, 0, 0, 0, 1985, 1897, 1, 0, 0, 0, 1985, 1903, 1, 0, 0, 0, 1985, 1908, 1, 0, 0, 0, 1985, 1913, 1, 0, 0, 0, 1985, 1918, 1, 0, 0, 0, 1985, 1923, 1, 0, 0, 0, 1985, 1928, 1, 0, 0, 0, 1985, 1933, 1, 0, 0, 0, 1985, 1938, 1, 0, 0, 0, 1985, 1940, 1, 0, 0, 0, 1985, 1945, 1, 0, 0, 0, 1985, 1950, 1, 0, 0, 0, 1985, 1955, 1, 0, 0, 0, 1985, 1963, 1, 0, 0, 0, 1985, 1968, 1, 0, 0, 0, 1985, 1971, 1, 0, 0, 0, 1985, 1972, 1, 0, 0, 0, 1985, 1977, 1, 0, 0, 0, 1986, 105, 1, 0, 0, 0, 1987, 1988, 7, 31, 0, 0, 1988, 107, 1, 0, 0, 0, 1989, 1990, 5, 636, 0, 0, 1990, 1991, 7, 18, 0, 0, 1991, 109, 1, 0, 0, 0, 1992, 1993, 5, 129, 0, 0, 1993, 1994, 5, 19, 0, 0, 1994, 1997, 3, 112, 56, 0, 1995, 1996, 5, 550, 0, 0, 1996, 1998, 3, 590, 295, 0, 1997, 1995, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2006, 1, 0, 0, 0, 1999, 2000, 5, 641, 0, 0, 2000, 2001, 5, 19, 0, 0, 2001, 2004, 3, 114, 57, 0, 2002, 2003, 5, 642, 0, 0, 2003, 2005, 3, 590, 295, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 1, 0, 0, 0, 2006, 1999, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2019, 1, 0, 0, 0, 2008, 2009, 5, 1133, 0, 0, 2009, 2014, 3, 116, 58, 0, 2010, 2011, 5, 1135, 0, 0, 2011, 2013, 3, 116, 58, 0, 2012, 2010, 1, 0, 0, 0, 2013, 2016, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2017, 2018, 5, 1134, 0, 0, 2018, 2020, 1, 0, 0, 0, 2019, 2008, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 111, 1, 0, 0, 0, 2021, 2023, 5, 100, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2025, 5, 443, 0, 0, 2025, 2026, 5, 1133, 0, 0, 2026, 2027, 3, 688, 344, 0, 2027, 2028, 5, 1134, 0, 0, 2028, 2068, 1, 0, 0, 0, 2029, 2031, 5, 100, 0, 0, 2030, 2029, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2036, 5, 91, 0, 0, 2033, 2034, 5, 336, 0, 0, 2034, 2035, 5, 1124, 0, 0, 2035, 2037, 7, 32, 0, 0, 2036, 2033, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2040, 5, 1133, 0, 0, 2039, 2041, 3, 616, 308, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2068, 5, 1134, 0, 0, 2043, 2053, 5, 133, 0, 0, 2044, 2045, 5, 1133, 0, 0, 2045, 2046, 3, 688, 344, 0, 2046, 2047, 5, 1134, 0, 0, 2047, 2054, 1, 0, 0, 0, 2048, 2049, 5, 365, 0, 0, 2049, 2050, 5, 1133, 0, 0, 2050, 2051, 3, 616, 308, 0, 2051, 2052, 5, 1134, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2044, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2054, 2068, 1, 0, 0, 0, 2055, 2065, 5, 473, 0, 0, 2056, 2057, 5, 1133, 0, 0, 2057, 2058, 3, 688, 344, 0, 2058, 2059, 5, 1134, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2061, 5, 365, 0, 0, 2061, 2062, 5, 1133, 0, 0, 2062, 2063, 3, 616, 308, 0, 2063, 2064, 5, 1134, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2056, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2022, 1, 0, 0, 0, 2067, 2030, 1, 0, 0, 0, 2067, 2043, 1, 0, 0, 0, 2067, 2055, 1, 0, 0, 0, 2068, 113, 1, 0, 0, 0, 2069, 2071, 5, 100, 0, 0, 2070, 2069, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 5, 443, 0, 0, 2073, 2074, 5, 1133, 0, 0, 2074, 2075, 3, 688, 344, 0, 2075, 2076, 5, 1134, 0, 0, 2076, 2091, 1, 0, 0, 0, 2077, 2079, 5, 100, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 5, 91, 0, 0, 2081, 2082, 5, 336, 0, 0, 2082, 2083, 5, 1124, 0, 0, 2083, 2085, 7, 32, 0, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 5, 1133, 0, 0, 2087, 2088, 3, 616, 308, 0, 2088, 2089, 5, 1134, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2070, 1, 0, 0, 0, 2090, 2078, 1, 0, 0, 0, 2091, 115, 1, 0, 0, 0, 2092, 2093, 5, 129, 0, 0, 2093, 2094, 3, 584, 292, 0, 2094, 2095, 5, 188, 0, 0, 2095, 2096, 5, 471, 0, 0, 2096, 2097, 5, 651, 0, 0, 2097, 2098, 5, 1133, 0, 0, 2098, 2103, 3, 118, 59, 0, 2099, 2100, 5, 1135, 0, 0, 2100, 2102, 3, 118, 59, 0, 2101, 2099, 1, 0, 0, 0, 2102, 2105, 1, 0, 0, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2106, 2110, 5, 1134, 0, 0, 2107, 2109, 3, 124, 62, 0, 2108, 2107, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2108, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2124, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2113, 2114, 5, 1133, 0, 0, 2114, 2119, 3, 122, 61, 0, 2115, 2116, 5, 1135, 0, 0, 2116, 2118, 3, 122, 61, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2123, 5, 1134, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2113, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2239, 1, 0, 0, 0, 2126, 2127, 5, 129, 0, 0, 2127, 2128, 3, 584, 292, 0, 2128, 2129, 5, 188, 0, 0, 2129, 2130, 5, 471, 0, 0, 2130, 2131, 5, 651, 0, 0, 2131, 2135, 3, 118, 59, 0, 2132, 2134, 3, 124, 62, 0, 2133, 2132, 1, 0, 0, 0, 2134, 2137, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2149, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2139, 5, 1133, 0, 0, 2139, 2144, 3, 122, 61, 0, 2140, 2141, 5, 1135, 0, 0, 2141, 2143, 3, 122, 61, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2146, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2148, 5, 1134, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2138, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2239, 1, 0, 0, 0, 2151, 2152, 5, 129, 0, 0, 2152, 2153, 3, 584, 292, 0, 2153, 2154, 5, 188, 0, 0, 2154, 2155, 5, 80, 0, 0, 2155, 2156, 5, 1133, 0, 0, 2156, 2161, 3, 118, 59, 0, 2157, 2158, 5, 1135, 0, 0, 2158, 2160, 3, 118, 59, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2163, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2168, 5, 1134, 0, 0, 2165, 2167, 3, 124, 62, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2182, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 1133, 0, 0, 2172, 2177, 3, 122, 61, 0, 2173, 2174, 5, 1135, 0, 0, 2174, 2176, 3, 122, 61, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2180, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2181, 5, 1134, 0, 0, 2181, 2183, 1, 0, 0, 0, 2182, 2171, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2239, 1, 0, 0, 0, 2184, 2185, 5, 129, 0, 0, 2185, 2186, 3, 584, 292, 0, 2186, 2187, 5, 188, 0, 0, 2187, 2188, 5, 80, 0, 0, 2188, 2189, 5, 1133, 0, 0, 2189, 2194, 3, 120, 60, 0, 2190, 2191, 5, 1135, 0, 0, 2191, 2193, 3, 120, 60, 0, 2192, 2190, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2201, 5, 1134, 0, 0, 2198, 2200, 3, 124, 62, 0, 2199, 2198, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2215, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 1133, 0, 0, 2205, 2210, 3, 122, 61, 0, 2206, 2207, 5, 1135, 0, 0, 2207, 2209, 3, 122, 61, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2213, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 5, 1134, 0, 0, 2214, 2216, 1, 0, 0, 0, 2215, 2204, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2239, 1, 0, 0, 0, 2217, 2218, 5, 129, 0, 0, 2218, 2222, 3, 584, 292, 0, 2219, 2221, 3, 124, 62, 0, 2220, 2219, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2236, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 1133, 0, 0, 2226, 2231, 3, 122, 61, 0, 2227, 2228, 5, 1135, 0, 0, 2228, 2230, 3, 122, 61, 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, 2234, 1, 0, 0, 0, 2233, 2231, 1, 0, 0, 0, 2234, 2235, 5, 1134, 0, 0, 2235, 2237, 1, 0, 0, 0, 2236, 2225, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2239, 1, 0, 0, 0, 2238, 2092, 1, 0, 0, 0, 2238, 2126, 1, 0, 0, 0, 2238, 2151, 1, 0, 0, 0, 2238, 2184, 1, 0, 0, 0, 2238, 2217, 1, 0, 0, 0, 2239, 117, 1, 0, 0, 0, 2240, 2244, 3, 602, 301, 0, 2241, 2244, 3, 688, 344, 0, 2242, 2244, 5, 110, 0, 0, 2243, 2240, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2242, 1, 0, 0, 0, 2244, 119, 1, 0, 0, 0, 2245, 2246, 5, 1133, 0, 0, 2246, 2249, 3, 118, 59, 0, 2247, 2248, 5, 1135, 0, 0, 2248, 2250, 3, 118, 59, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2254, 5, 1134, 0, 0, 2254, 121, 1, 0, 0, 0, 2255, 2256, 5, 641, 0, 0, 2256, 2260, 3, 584, 292, 0, 2257, 2259, 3, 124, 62, 0, 2258, 2257, 1, 0, 0, 0, 2259, 2262, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 123, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2265, 5, 42, 0, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2267, 1, 0, 0, 0, 2266, 2268, 5, 636, 0, 0, 2267, 2266, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2271, 5, 409, 0, 0, 2270, 2272, 5, 1124, 0, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2312, 3, 572, 286, 0, 2274, 2276, 5, 368, 0, 0, 2275, 2277, 5, 1124, 0, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2312, 5, 1148, 0, 0, 2279, 2280, 5, 388, 0, 0, 2280, 2282, 5, 395, 0, 0, 2281, 2283, 5, 1124, 0, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2312, 5, 1148, 0, 0, 2285, 2286, 5, 81, 0, 0, 2286, 2288, 5, 395, 0, 0, 2287, 2289, 5, 1124, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2312, 5, 1148, 0, 0, 2291, 2293, 5, 500, 0, 0, 2292, 2294, 5, 1124, 0, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2312, 3, 590, 295, 0, 2296, 2298, 5, 510, 0, 0, 2297, 2299, 5, 1124, 0, 0, 2298, 2297, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2312, 3, 590, 295, 0, 2301, 2303, 5, 647, 0, 0, 2302, 2304, 5, 1124, 0, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2312, 3, 584, 292, 0, 2306, 2308, 5, 528, 0, 0, 2307, 2309, 5, 1124, 0, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2312, 3, 584, 292, 0, 2311, 2264, 1, 0, 0, 0, 2311, 2274, 1, 0, 0, 0, 2311, 2279, 1, 0, 0, 0, 2311, 2285, 1, 0, 0, 0, 2311, 2291, 1, 0, 0, 0, 2311, 2296, 1, 0, 0, 0, 2311, 2301, 1, 0, 0, 0, 2311, 2306, 1, 0, 0, 0, 2312, 125, 1, 0, 0, 0, 2313, 2314, 5, 7, 0, 0, 2314, 2316, 7, 0, 0, 0, 2315, 2317, 3, 584, 292, 0, 2316, 2315, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2320, 3, 56, 28, 0, 2319, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2332, 1, 0, 0, 0, 2323, 2324, 5, 7, 0, 0, 2324, 2325, 7, 0, 0, 0, 2325, 2326, 3, 584, 292, 0, 2326, 2327, 5, 664, 0, 0, 2327, 2328, 5, 388, 0, 0, 2328, 2329, 5, 395, 0, 0, 2329, 2330, 5, 516, 0, 0, 2330, 2332, 1, 0, 0, 0, 2331, 2313, 1, 0, 0, 0, 2331, 2323, 1, 0, 0, 0, 2332, 127, 1, 0, 0, 0, 2333, 2335, 5, 7, 0, 0, 2334, 2336, 3, 62, 31, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 415, 0, 0, 2338, 2342, 3, 548, 274, 0, 2339, 2340, 5, 118, 0, 0, 2340, 2341, 5, 605, 0, 0, 2341, 2343, 3, 64, 32, 0, 2342, 2339, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2350, 1, 0, 0, 0, 2344, 2345, 5, 118, 0, 0, 2345, 2347, 5, 371, 0, 0, 2346, 2348, 5, 114, 0, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2351, 5, 561, 0, 0, 2350, 2344, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2355, 1, 0, 0, 0, 2352, 2353, 5, 139, 0, 0, 2353, 2354, 5, 175, 0, 0, 2354, 2356, 3, 548, 274, 0, 2355, 2352, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2359, 3, 72, 36, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2361, 5, 368, 0, 0, 2361, 2363, 5, 1148, 0, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2366, 1, 0, 0, 0, 2364, 2365, 5, 399, 0, 0, 2365, 2367, 3, 386, 193, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 129, 1, 0, 0, 0, 2368, 2369, 5, 7, 0, 0, 2369, 2370, 5, 437, 0, 0, 2370, 2374, 3, 548, 274, 0, 2371, 2373, 3, 82, 41, 0, 2372, 2371, 1, 0, 0, 0, 2373, 2376, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 131, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2377, 2378, 5, 7, 0, 0, 2378, 2379, 5, 457, 0, 0, 2379, 2380, 5, 599, 0, 0, 2380, 2381, 5, 791, 0, 0, 2381, 2382, 5, 477, 0, 0, 2382, 2383, 5, 91, 0, 0, 2383, 133, 1, 0, 0, 0, 2384, 2385, 5, 7, 0, 0, 2385, 2386, 5, 475, 0, 0, 2386, 2387, 5, 73, 0, 0, 2387, 2388, 3, 584, 292, 0, 2388, 2389, 5, 5, 0, 0, 2389, 2390, 5, 659, 0, 0, 2390, 2396, 5, 1148, 0, 0, 2391, 2393, 5, 453, 0, 0, 2392, 2394, 5, 1124, 0, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2397, 3, 592, 296, 0, 2396, 2391, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2400, 5, 674, 0, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2403, 5, 409, 0, 0, 2402, 2404, 5, 1124, 0, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 3, 572, 286, 0, 2406, 135, 1, 0, 0, 0, 2407, 2408, 5, 7, 0, 0, 2408, 2409, 5, 131, 0, 0, 2409, 2413, 3, 548, 274, 0, 2410, 2412, 3, 82, 41, 0, 2411, 2410, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 137, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2417, 5, 7, 0, 0, 2417, 2418, 5, 608, 0, 0, 2418, 2419, 3, 584, 292, 0, 2419, 2420, 5, 541, 0, 0, 2420, 2421, 5, 1133, 0, 0, 2421, 2426, 3, 84, 42, 0, 2422, 2423, 5, 1135, 0, 0, 2423, 2425, 3, 84, 42, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2428, 1, 0, 0, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2429, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2430, 5, 1134, 0, 0, 2430, 139, 1, 0, 0, 0, 2431, 2433, 5, 7, 0, 0, 2432, 2434, 7, 1, 0, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2437, 5, 78, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 5, 172, 0, 0, 2439, 2441, 3, 550, 275, 0, 2440, 2442, 3, 646, 323, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2451, 1, 0, 0, 0, 2443, 2448, 3, 146, 73, 0, 2444, 2445, 5, 1135, 0, 0, 2445, 2447, 3, 146, 73, 0, 2446, 2444, 1, 0, 0, 0, 2447, 2450, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2452, 1, 0, 0, 0, 2450, 2448, 1, 0, 0, 0, 2451, 2443, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 1, 0, 0, 0, 2453, 2455, 3, 110, 55, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 141, 1, 0, 0, 0, 2456, 2457, 5, 7, 0, 0, 2457, 2458, 5, 647, 0, 0, 2458, 2459, 3, 584, 292, 0, 2459, 2460, 7, 33, 0, 0, 2460, 2461, 5, 389, 0, 0, 2461, 2465, 5, 1148, 0, 0, 2462, 2463, 5, 453, 0, 0, 2463, 2464, 5, 1124, 0, 0, 2464, 2466, 3, 592, 296, 0, 2465, 2462, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2468, 1, 0, 0, 0, 2467, 2469, 5, 674, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 5, 409, 0, 0, 2471, 2473, 5, 1124, 0, 0, 2472, 2471, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 3, 572, 286, 0, 2475, 143, 1, 0, 0, 0, 2476, 2480, 5, 7, 0, 0, 2477, 2478, 5, 336, 0, 0, 2478, 2479, 5, 1124, 0, 0, 2479, 2481, 7, 10, 0, 0, 2480, 2477, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2483, 1, 0, 0, 0, 2482, 2484, 3, 62, 31, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2488, 1, 0, 0, 0, 2485, 2486, 5, 160, 0, 0, 2486, 2487, 5, 606, 0, 0, 2487, 2489, 7, 11, 0, 0, 2488, 2485, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 671, 0, 0, 2491, 2496, 3, 548, 274, 0, 2492, 2493, 5, 1133, 0, 0, 2493, 2494, 3, 616, 308, 0, 2494, 2495, 5, 1134, 0, 0, 2495, 2497, 1, 0, 0, 0, 2496, 2492, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 5, 12, 0, 0, 2499, 2506, 3, 198, 99, 0, 2500, 2502, 5, 192, 0, 0, 2501, 2503, 7, 12, 0, 0, 2502, 2501, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2505, 5, 26, 0, 0, 2505, 2507, 5, 120, 0, 0, 2506, 2500, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 145, 1, 0, 0, 0, 2508, 2515, 3, 104, 52, 0, 2509, 2511, 5, 1135, 0, 0, 2510, 2509, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 3, 104, 52, 0, 2513, 2510, 1, 0, 0, 0, 2514, 2517, 1, 0, 0, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2860, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2520, 5, 5, 0, 0, 2519, 2521, 5, 28, 0, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2523, 3, 584, 292, 0, 2523, 2527, 3, 90, 45, 0, 2524, 2528, 5, 430, 0, 0, 2525, 2526, 5, 334, 0, 0, 2526, 2528, 3, 584, 292, 0, 2527, 2524, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2860, 1, 0, 0, 0, 2529, 2531, 5, 5, 0, 0, 2530, 2532, 5, 28, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 5, 1133, 0, 0, 2534, 2535, 3, 584, 292, 0, 2535, 2542, 3, 90, 45, 0, 2536, 2537, 5, 1135, 0, 0, 2537, 2538, 3, 584, 292, 0, 2538, 2539, 3, 90, 45, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2536, 1, 0, 0, 0, 2541, 2544, 1, 0, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2546, 5, 1134, 0, 0, 2546, 2860, 1, 0, 0, 0, 2547, 2548, 5, 5, 0, 0, 2548, 2550, 7, 20, 0, 0, 2549, 2551, 3, 584, 292, 0, 2550, 2549, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2553, 1, 0, 0, 0, 2552, 2554, 3, 74, 37, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2559, 3, 622, 311, 0, 2556, 2558, 3, 76, 38, 0, 2557, 2556, 1, 0, 0, 0, 2558, 2561, 1, 0, 0, 0, 2559, 2557, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2860, 1, 0, 0, 0, 2561, 2559, 1, 0, 0, 0, 2562, 2567, 5, 5, 0, 0, 2563, 2565, 5, 30, 0, 0, 2564, 2566, 3, 584, 292, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2563, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2570, 5, 130, 0, 0, 2570, 2572, 5, 91, 0, 0, 2571, 2573, 3, 584, 292, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 1, 0, 0, 0, 2574, 2576, 3, 74, 37, 0, 2575, 2574, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2581, 3, 622, 311, 0, 2578, 2580, 3, 76, 38, 0, 2579, 2578, 1, 0, 0, 0, 2580, 2583, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2860, 1, 0, 0, 0, 2583, 2581, 1, 0, 0, 0, 2584, 2589, 5, 5, 0, 0, 2585, 2587, 5, 30, 0, 0, 2586, 2588, 3, 584, 292, 0, 2587, 2586, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2590, 1, 0, 0, 0, 2589, 2585, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 5, 181, 0, 0, 2592, 2594, 7, 20, 0, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2596, 1, 0, 0, 0, 2595, 2597, 3, 584, 292, 0, 2596, 2595, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2599, 1, 0, 0, 0, 2598, 2600, 3, 74, 37, 0, 2599, 2598, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2605, 3, 622, 311, 0, 2602, 2604, 3, 76, 38, 0, 2603, 2602, 1, 0, 0, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2860, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2608, 2609, 5, 5, 0, 0, 2609, 2611, 7, 22, 0, 0, 2610, 2612, 7, 20, 0, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2614, 1, 0, 0, 0, 2613, 2615, 3, 584, 292, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2620, 3, 622, 311, 0, 2617, 2619, 3, 76, 38, 0, 2618, 2617, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2860, 1, 0, 0, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2628, 5, 5, 0, 0, 2624, 2626, 5, 30, 0, 0, 2625, 2627, 3, 584, 292, 0, 2626, 2625, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2624, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 5, 67, 0, 0, 2631, 2633, 5, 91, 0, 0, 2632, 2634, 3, 584, 292, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 3, 622, 311, 0, 2636, 2637, 3, 96, 48, 0, 2637, 2860, 1, 0, 0, 0, 2638, 2643, 5, 5, 0, 0, 2639, 2641, 5, 30, 0, 0, 2640, 2642, 3, 584, 292, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2639, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2652, 5, 26, 0, 0, 2646, 2653, 3, 584, 292, 0, 2647, 2653, 3, 594, 297, 0, 2648, 2649, 5, 1133, 0, 0, 2649, 2650, 3, 688, 344, 0, 2650, 2651, 5, 1134, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2646, 1, 0, 0, 0, 2652, 2647, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2656, 5, 114, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 1, 0, 0, 0, 2657, 2659, 5, 57, 0, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2860, 1, 0, 0, 0, 2660, 2665, 5, 7, 0, 0, 2661, 2663, 5, 30, 0, 0, 2662, 2664, 3, 584, 292, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2666, 1, 0, 0, 0, 2665, 2661, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2674, 5, 26, 0, 0, 2668, 2675, 3, 584, 292, 0, 2669, 2675, 3, 594, 297, 0, 2670, 2671, 5, 1133, 0, 0, 2671, 2672, 3, 688, 344, 0, 2672, 2673, 5, 1134, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2668, 1, 0, 0, 0, 2674, 2669, 1, 0, 0, 0, 2674, 2670, 1, 0, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2678, 5, 114, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2680, 1, 0, 0, 0, 2679, 2681, 5, 57, 0, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2860, 1, 0, 0, 0, 2682, 2687, 5, 5, 0, 0, 2683, 2685, 5, 30, 0, 0, 2684, 2686, 3, 584, 292, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2683, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 5, 26, 0, 0, 2690, 2691, 5, 1133, 0, 0, 2691, 2692, 3, 688, 344, 0, 2692, 2693, 5, 1134, 0, 0, 2693, 2860, 1, 0, 0, 0, 2694, 2696, 5, 336, 0, 0, 2695, 2697, 5, 1124, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2860, 7, 34, 0, 0, 2699, 2701, 5, 7, 0, 0, 2700, 2702, 5, 28, 0, 0, 2701, 2700, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2709, 3, 584, 292, 0, 2704, 2705, 5, 153, 0, 0, 2705, 2706, 5, 42, 0, 0, 2706, 2710, 3, 634, 317, 0, 2707, 2708, 5, 51, 0, 0, 2708, 2710, 5, 42, 0, 0, 2709, 2704, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2860, 1, 0, 0, 0, 2711, 2713, 5, 24, 0, 0, 2712, 2714, 5, 28, 0, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2716, 3, 584, 292, 0, 2716, 2717, 3, 584, 292, 0, 2717, 2721, 3, 90, 45, 0, 2718, 2722, 5, 430, 0, 0, 2719, 2720, 5, 334, 0, 0, 2720, 2722, 3, 584, 292, 0, 2721, 2718, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2860, 1, 0, 0, 0, 2723, 2724, 5, 139, 0, 0, 2724, 2725, 5, 28, 0, 0, 2725, 2726, 3, 584, 292, 0, 2726, 2727, 5, 175, 0, 0, 2727, 2728, 3, 584, 292, 0, 2728, 2860, 1, 0, 0, 0, 2729, 2731, 5, 103, 0, 0, 2730, 2732, 5, 1124, 0, 0, 2731, 2730, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2860, 7, 4, 0, 0, 2734, 2736, 5, 512, 0, 0, 2735, 2737, 5, 28, 0, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2739, 3, 584, 292, 0, 2739, 2743, 3, 90, 45, 0, 2740, 2744, 5, 430, 0, 0, 2741, 2742, 5, 334, 0, 0, 2742, 2744, 3, 584, 292, 0, 2743, 2740, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2860, 1, 0, 0, 0, 2745, 2747, 5, 51, 0, 0, 2746, 2748, 5, 28, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2751, 3, 584, 292, 0, 2750, 2752, 5, 144, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2860, 1, 0, 0, 0, 2753, 2754, 5, 51, 0, 0, 2754, 2755, 7, 35, 0, 0, 2755, 2860, 3, 584, 292, 0, 2756, 2757, 5, 51, 0, 0, 2757, 2758, 5, 130, 0, 0, 2758, 2860, 5, 91, 0, 0, 2759, 2760, 5, 51, 0, 0, 2760, 2761, 7, 20, 0, 0, 2761, 2860, 3, 584, 292, 0, 2762, 2763, 5, 139, 0, 0, 2763, 2764, 7, 20, 0, 0, 2764, 2765, 3, 584, 292, 0, 2765, 2766, 5, 175, 0, 0, 2766, 2767, 3, 584, 292, 0, 2767, 2860, 1, 0, 0, 0, 2768, 2770, 5, 7, 0, 0, 2769, 2771, 5, 28, 0, 0, 2770, 2769, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2786, 3, 584, 292, 0, 2773, 2774, 5, 153, 0, 0, 2774, 2780, 5, 42, 0, 0, 2775, 2781, 3, 594, 297, 0, 2776, 2777, 5, 1133, 0, 0, 2777, 2778, 3, 688, 344, 0, 2778, 2779, 5, 1134, 0, 0, 2779, 2781, 1, 0, 0, 0, 2780, 2775, 1, 0, 0, 0, 2780, 2776, 1, 0, 0, 0, 2781, 2787, 1, 0, 0, 0, 2782, 2783, 5, 153, 0, 0, 2783, 2787, 7, 15, 0, 0, 2784, 2785, 5, 51, 0, 0, 2785, 2787, 5, 42, 0, 0, 2786, 2773, 1, 0, 0, 0, 2786, 2782, 1, 0, 0, 0, 2786, 2784, 1, 0, 0, 0, 2787, 2860, 1, 0, 0, 0, 2788, 2789, 5, 7, 0, 0, 2789, 2790, 5, 81, 0, 0, 2790, 2791, 3, 584, 292, 0, 2791, 2792, 7, 15, 0, 0, 2792, 2860, 1, 0, 0, 0, 2793, 2794, 5, 51, 0, 0, 2794, 2795, 5, 67, 0, 0, 2795, 2796, 5, 91, 0, 0, 2796, 2860, 3, 584, 292, 0, 2797, 2798, 5, 396, 0, 0, 2798, 2860, 5, 92, 0, 0, 2799, 2800, 5, 403, 0, 0, 2800, 2860, 5, 92, 0, 0, 2801, 2803, 5, 139, 0, 0, 2802, 2804, 7, 36, 0, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2808, 3, 584, 292, 0, 2806, 2808, 3, 548, 274, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2860, 1, 0, 0, 0, 2809, 2810, 5, 124, 0, 0, 2810, 2811, 5, 19, 0, 0, 2811, 2860, 3, 616, 308, 0, 2812, 2813, 5, 32, 0, 0, 2813, 2817, 5, 175, 0, 0, 2814, 2818, 5, 841, 0, 0, 2815, 2816, 5, 25, 0, 0, 2816, 2818, 5, 153, 0, 0, 2817, 2814, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2822, 3, 568, 284, 0, 2820, 2821, 5, 27, 0, 0, 2821, 2823, 3, 570, 285, 0, 2822, 2820, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2860, 1, 0, 0, 0, 2824, 2826, 5, 42, 0, 0, 2825, 2824, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2827, 1, 0, 0, 0, 2827, 2828, 5, 25, 0, 0, 2828, 2829, 5, 153, 0, 0, 2829, 2830, 5, 1124, 0, 0, 2830, 2834, 3, 568, 284, 0, 2831, 2832, 5, 27, 0, 0, 2832, 2833, 5, 1124, 0, 0, 2833, 2835, 3, 570, 285, 0, 2834, 2831, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2860, 1, 0, 0, 0, 2836, 2837, 5, 397, 0, 0, 2837, 2860, 5, 647, 0, 0, 2838, 2839, 5, 450, 0, 0, 2839, 2860, 5, 647, 0, 0, 2840, 2860, 5, 66, 0, 0, 2841, 2842, 7, 37, 0, 0, 2842, 2860, 5, 668, 0, 0, 2843, 2845, 5, 5, 0, 0, 2844, 2846, 5, 28, 0, 0, 2845, 2844, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 1, 0, 0, 0, 2847, 2848, 5, 1133, 0, 0, 2848, 2853, 3, 88, 44, 0, 2849, 2850, 5, 1135, 0, 0, 2850, 2852, 3, 88, 44, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2856, 2857, 5, 1134, 0, 0, 2857, 2860, 1, 0, 0, 0, 2858, 2860, 3, 148, 74, 0, 2859, 2508, 1, 0, 0, 0, 2859, 2518, 1, 0, 0, 0, 2859, 2529, 1, 0, 0, 0, 2859, 2547, 1, 0, 0, 0, 2859, 2562, 1, 0, 0, 0, 2859, 2584, 1, 0, 0, 0, 2859, 2608, 1, 0, 0, 0, 2859, 2623, 1, 0, 0, 0, 2859, 2638, 1, 0, 0, 0, 2859, 2660, 1, 0, 0, 0, 2859, 2682, 1, 0, 0, 0, 2859, 2694, 1, 0, 0, 0, 2859, 2699, 1, 0, 0, 0, 2859, 2711, 1, 0, 0, 0, 2859, 2723, 1, 0, 0, 0, 2859, 2729, 1, 0, 0, 0, 2859, 2734, 1, 0, 0, 0, 2859, 2745, 1, 0, 0, 0, 2859, 2753, 1, 0, 0, 0, 2859, 2756, 1, 0, 0, 0, 2859, 2759, 1, 0, 0, 0, 2859, 2762, 1, 0, 0, 0, 2859, 2768, 1, 0, 0, 0, 2859, 2788, 1, 0, 0, 0, 2859, 2793, 1, 0, 0, 0, 2859, 2797, 1, 0, 0, 0, 2859, 2799, 1, 0, 0, 0, 2859, 2801, 1, 0, 0, 0, 2859, 2809, 1, 0, 0, 0, 2859, 2812, 1, 0, 0, 0, 2859, 2825, 1, 0, 0, 0, 2859, 2836, 1, 0, 0, 0, 2859, 2838, 1, 0, 0, 0, 2859, 2840, 1, 0, 0, 0, 2859, 2841, 1, 0, 0, 0, 2859, 2843, 1, 0, 0, 0, 2859, 2858, 1, 0, 0, 0, 2860, 147, 1, 0, 0, 0, 2861, 2862, 5, 5, 0, 0, 2862, 2863, 5, 129, 0, 0, 2863, 2864, 5, 1133, 0, 0, 2864, 2869, 3, 116, 58, 0, 2865, 2866, 5, 1135, 0, 0, 2866, 2868, 3, 116, 58, 0, 2867, 2865, 1, 0, 0, 0, 2868, 2871, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2869, 2870, 1, 0, 0, 0, 2870, 2872, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2872, 2873, 5, 1134, 0, 0, 2873, 2960, 1, 0, 0, 0, 2874, 2875, 5, 51, 0, 0, 2875, 2876, 5, 129, 0, 0, 2876, 2960, 3, 616, 308, 0, 2877, 2878, 5, 397, 0, 0, 2878, 2881, 5, 129, 0, 0, 2879, 2882, 3, 616, 308, 0, 2880, 2882, 5, 6, 0, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2960, 5, 647, 0, 0, 2884, 2885, 5, 450, 0, 0, 2885, 2888, 5, 129, 0, 0, 2886, 2889, 3, 616, 308, 0, 2887, 2889, 5, 6, 0, 0, 2888, 2886, 1, 0, 0, 0, 2888, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2960, 5, 647, 0, 0, 2891, 2892, 5, 656, 0, 0, 2892, 2895, 5, 129, 0, 0, 2893, 2896, 3, 616, 308, 0, 2894, 2896, 5, 6, 0, 0, 2895, 2893, 1, 0, 0, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2960, 1, 0, 0, 0, 2897, 2898, 5, 363, 0, 0, 2898, 2899, 5, 129, 0, 0, 2899, 2960, 3, 590, 295, 0, 2900, 2901, 5, 579, 0, 0, 2901, 2902, 5, 129, 0, 0, 2902, 2903, 3, 616, 308, 0, 2903, 2904, 5, 87, 0, 0, 2904, 2905, 5, 1133, 0, 0, 2905, 2910, 3, 116, 58, 0, 2906, 2907, 5, 1135, 0, 0, 2907, 2909, 3, 116, 58, 0, 2908, 2906, 1, 0, 0, 0, 2909, 2912, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2913, 1, 0, 0, 0, 2912, 2910, 1, 0, 0, 0, 2913, 2914, 5, 1134, 0, 0, 2914, 2960, 1, 0, 0, 0, 2915, 2916, 5, 418, 0, 0, 2916, 2917, 5, 129, 0, 0, 2917, 2918, 3, 584, 292, 0, 2918, 2919, 5, 192, 0, 0, 2919, 2920, 5, 172, 0, 0, 2920, 2923, 3, 550, 275, 0, 2921, 2922, 7, 37, 0, 0, 2922, 2924, 5, 668, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2960, 1, 0, 0, 0, 2925, 2926, 5, 9, 0, 0, 2926, 2929, 5, 129, 0, 0, 2927, 2930, 3, 616, 308, 0, 2928, 2930, 5, 6, 0, 0, 2929, 2927, 1, 0, 0, 0, 2929, 2928, 1, 0, 0, 0, 2930, 2960, 1, 0, 0, 0, 2931, 2932, 5, 26, 0, 0, 2932, 2935, 5, 129, 0, 0, 2933, 2936, 3, 616, 308, 0, 2934, 2936, 5, 6, 0, 0, 2935, 2933, 1, 0, 0, 0, 2935, 2934, 1, 0, 0, 0, 2936, 2960, 1, 0, 0, 0, 2937, 2938, 5, 119, 0, 0, 2938, 2941, 5, 129, 0, 0, 2939, 2942, 3, 616, 308, 0, 2940, 2942, 5, 6, 0, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2940, 1, 0, 0, 0, 2942, 2960, 1, 0, 0, 0, 2943, 2944, 5, 569, 0, 0, 2944, 2947, 5, 129, 0, 0, 2945, 2948, 3, 616, 308, 0, 2946, 2948, 5, 6, 0, 0, 2947, 2945, 1, 0, 0, 0, 2947, 2946, 1, 0, 0, 0, 2948, 2960, 1, 0, 0, 0, 2949, 2950, 5, 580, 0, 0, 2950, 2953, 5, 129, 0, 0, 2951, 2954, 3, 616, 308, 0, 2952, 2954, 5, 6, 0, 0, 2953, 2951, 1, 0, 0, 0, 2953, 2952, 1, 0, 0, 0, 2954, 2960, 1, 0, 0, 0, 2955, 2956, 5, 578, 0, 0, 2956, 2960, 5, 549, 0, 0, 2957, 2958, 5, 664, 0, 0, 2958, 2960, 5, 549, 0, 0, 2959, 2861, 1, 0, 0, 0, 2959, 2874, 1, 0, 0, 0, 2959, 2877, 1, 0, 0, 0, 2959, 2884, 1, 0, 0, 0, 2959, 2891, 1, 0, 0, 0, 2959, 2897, 1, 0, 0, 0, 2959, 2900, 1, 0, 0, 0, 2959, 2915, 1, 0, 0, 0, 2959, 2925, 1, 0, 0, 0, 2959, 2931, 1, 0, 0, 0, 2959, 2937, 1, 0, 0, 0, 2959, 2943, 1, 0, 0, 0, 2959, 2949, 1, 0, 0, 0, 2959, 2955, 1, 0, 0, 0, 2959, 2957, 1, 0, 0, 0, 2960, 149, 1, 0, 0, 0, 2961, 2962, 5, 51, 0, 0, 2962, 2964, 7, 0, 0, 0, 2963, 2965, 3, 640, 320, 0, 2964, 2963, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2967, 3, 584, 292, 0, 2967, 151, 1, 0, 0, 0, 2968, 2969, 5, 51, 0, 0, 2969, 2971, 5, 415, 0, 0, 2970, 2972, 3, 640, 320, 0, 2971, 2970, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2974, 3, 548, 274, 0, 2974, 153, 1, 0, 0, 0, 2975, 2976, 5, 51, 0, 0, 2976, 2978, 5, 81, 0, 0, 2977, 2979, 7, 1, 0, 0, 2978, 2977, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 3, 584, 292, 0, 2981, 2982, 5, 118, 0, 0, 2982, 2995, 3, 550, 275, 0, 2983, 2985, 5, 336, 0, 0, 2984, 2986, 5, 1124, 0, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2994, 7, 3, 0, 0, 2988, 2990, 5, 103, 0, 0, 2989, 2991, 5, 1124, 0, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2994, 7, 4, 0, 0, 2993, 2983, 1, 0, 0, 0, 2993, 2988, 1, 0, 0, 0, 2994, 2997, 1, 0, 0, 0, 2995, 2993, 1, 0, 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 155, 1, 0, 0, 0, 2997, 2995, 1, 0, 0, 0, 2998, 2999, 5, 51, 0, 0, 2999, 3000, 5, 475, 0, 0, 3000, 3001, 5, 73, 0, 0, 3001, 3002, 3, 584, 292, 0, 3002, 3003, 5, 409, 0, 0, 3003, 3004, 5, 1124, 0, 0, 3004, 3005, 3, 572, 286, 0, 3005, 157, 1, 0, 0, 0, 3006, 3007, 5, 51, 0, 0, 3007, 3009, 5, 131, 0, 0, 3008, 3010, 3, 640, 320, 0, 3009, 3008, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 3, 548, 274, 0, 3012, 159, 1, 0, 0, 0, 3013, 3014, 5, 51, 0, 0, 3014, 3016, 5, 437, 0, 0, 3015, 3017, 3, 640, 320, 0, 3016, 3015, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 3, 548, 274, 0, 3019, 161, 1, 0, 0, 0, 3020, 3021, 5, 51, 0, 0, 3021, 3023, 5, 608, 0, 0, 3022, 3024, 3, 640, 320, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 584, 292, 0, 3026, 163, 1, 0, 0, 0, 3027, 3029, 5, 51, 0, 0, 3028, 3030, 5, 649, 0, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3033, 5, 172, 0, 0, 3032, 3034, 3, 640, 320, 0, 3033, 3032, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3037, 3, 620, 310, 0, 3036, 3038, 7, 38, 0, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 165, 1, 0, 0, 0, 3039, 3040, 5, 51, 0, 0, 3040, 3041, 5, 647, 0, 0, 3041, 3047, 3, 584, 292, 0, 3042, 3044, 5, 409, 0, 0, 3043, 3045, 5, 1124, 0, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3048, 3, 572, 286, 0, 3047, 3042, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 167, 1, 0, 0, 0, 3049, 3050, 5, 51, 0, 0, 3050, 3052, 5, 177, 0, 0, 3051, 3053, 3, 640, 320, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 3, 548, 274, 0, 3055, 169, 1, 0, 0, 0, 3056, 3057, 5, 51, 0, 0, 3057, 3059, 5, 671, 0, 0, 3058, 3060, 3, 640, 320, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3066, 3, 548, 274, 0, 3062, 3063, 5, 1135, 0, 0, 3063, 3065, 3, 548, 274, 0, 3064, 3062, 1, 0, 0, 0, 3065, 3068, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3070, 1, 0, 0, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3071, 7, 38, 0, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 171, 1, 0, 0, 0, 3072, 3073, 5, 51, 0, 0, 3073, 3075, 5, 596, 0, 0, 3074, 3076, 3, 640, 320, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3082, 3, 554, 277, 0, 3078, 3079, 5, 1135, 0, 0, 3079, 3081, 3, 554, 277, 0, 3080, 3078, 1, 0, 0, 0, 3081, 3084, 1, 0, 0, 0, 3082, 3080, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 173, 1, 0, 0, 0, 3084, 3082, 1, 0, 0, 0, 3085, 3086, 5, 153, 0, 0, 3086, 3087, 5, 42, 0, 0, 3087, 3098, 5, 596, 0, 0, 3088, 3099, 5, 529, 0, 0, 3089, 3099, 5, 6, 0, 0, 3090, 3095, 3, 554, 277, 0, 3091, 3092, 5, 1135, 0, 0, 3092, 3094, 3, 554, 277, 0, 3093, 3091, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3099, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3088, 1, 0, 0, 0, 3098, 3089, 1, 0, 0, 0, 3098, 3090, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3103, 5, 175, 0, 0, 3101, 3104, 3, 564, 282, 0, 3102, 3104, 3, 584, 292, 0, 3103, 3101, 1, 0, 0, 0, 3103, 3102, 1, 0, 0, 0, 3104, 3112, 1, 0, 0, 0, 3105, 3108, 5, 1135, 0, 0, 3106, 3109, 3, 564, 282, 0, 3107, 3109, 3, 584, 292, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3107, 1, 0, 0, 0, 3109, 3111, 1, 0, 0, 0, 3110, 3105, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3119, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3116, 5, 153, 0, 0, 3116, 3117, 5, 596, 0, 0, 3117, 3119, 3, 432, 216, 0, 3118, 3085, 1, 0, 0, 0, 3118, 3115, 1, 0, 0, 0, 3119, 175, 1, 0, 0, 0, 3120, 3121, 5, 139, 0, 0, 3121, 3122, 5, 172, 0, 0, 3122, 3127, 3, 178, 89, 0, 3123, 3124, 5, 1135, 0, 0, 3124, 3126, 3, 178, 89, 0, 3125, 3123, 1, 0, 0, 0, 3126, 3129, 1, 0, 0, 0, 3127, 3125, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 177, 1, 0, 0, 0, 3129, 3127, 1, 0, 0, 0, 3130, 3131, 3, 550, 275, 0, 3131, 3132, 5, 175, 0, 0, 3132, 3133, 3, 550, 275, 0, 3133, 179, 1, 0, 0, 0, 3134, 3136, 5, 656, 0, 0, 3135, 3137, 5, 172, 0, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 3, 550, 275, 0, 3139, 181, 1, 0, 0, 0, 3140, 3141, 5, 20, 0, 0, 3141, 3148, 3, 548, 274, 0, 3142, 3145, 5, 1133, 0, 0, 3143, 3146, 3, 628, 314, 0, 3144, 3146, 3, 624, 312, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3144, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3149, 5, 1134, 0, 0, 3148, 3142, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 183, 1, 0, 0, 0, 3150, 3153, 3, 212, 106, 0, 3151, 3153, 3, 214, 107, 0, 3152, 3150, 1, 0, 0, 0, 3152, 3151, 1, 0, 0, 0, 3153, 185, 1, 0, 0, 0, 3154, 3155, 5, 399, 0, 0, 3155, 3156, 3, 624, 312, 0, 3156, 187, 1, 0, 0, 0, 3157, 3162, 3, 216, 108, 0, 3158, 3162, 3, 218, 109, 0, 3159, 3162, 3, 220, 110, 0, 3160, 3162, 3, 222, 111, 0, 3161, 3157, 1, 0, 0, 0, 3161, 3158, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 189, 1, 0, 0, 0, 3163, 3165, 5, 85, 0, 0, 3164, 3166, 7, 39, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3168, 1, 0, 0, 0, 3167, 3169, 5, 78, 0, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3171, 1, 0, 0, 0, 3170, 3172, 5, 87, 0, 0, 3171, 3170, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3180, 3, 550, 275, 0, 3174, 3175, 5, 129, 0, 0, 3175, 3177, 5, 1133, 0, 0, 3176, 3178, 3, 616, 308, 0, 3177, 3176, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3181, 5, 1134, 0, 0, 3180, 3174, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3205, 1, 0, 0, 0, 3182, 3184, 5, 1133, 0, 0, 3183, 3185, 3, 618, 309, 0, 3184, 3183, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3188, 5, 1134, 0, 0, 3187, 3182, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3194, 3, 204, 102, 0, 3190, 3192, 5, 12, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3195, 3, 584, 292, 0, 3194, 3191, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3206, 1, 0, 0, 0, 3196, 3197, 5, 153, 0, 0, 3197, 3202, 3, 206, 103, 0, 3198, 3199, 5, 1135, 0, 0, 3199, 3201, 3, 206, 103, 0, 3200, 3198, 1, 0, 0, 0, 3201, 3204, 1, 0, 0, 0, 3202, 3200, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3206, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3187, 1, 0, 0, 0, 3205, 3196, 1, 0, 0, 0, 3206, 3219, 1, 0, 0, 0, 3207, 3208, 5, 118, 0, 0, 3208, 3209, 5, 401, 0, 0, 3209, 3210, 5, 91, 0, 0, 3210, 3211, 5, 184, 0, 0, 3211, 3216, 3, 206, 103, 0, 3212, 3213, 5, 1135, 0, 0, 3213, 3215, 3, 206, 103, 0, 3214, 3212, 1, 0, 0, 0, 3215, 3218, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3220, 1, 0, 0, 0, 3218, 3216, 1, 0, 0, 0, 3219, 3207, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 191, 1, 0, 0, 0, 3221, 3222, 5, 102, 0, 0, 3222, 3224, 5, 388, 0, 0, 3223, 3225, 7, 40, 0, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3228, 5, 474, 0, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 5, 82, 0, 0, 3230, 3232, 5, 1148, 0, 0, 3231, 3233, 7, 6, 0, 0, 3232, 3231, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 87, 0, 0, 3235, 3236, 5, 172, 0, 0, 3236, 3242, 3, 550, 275, 0, 3237, 3238, 5, 129, 0, 0, 3238, 3239, 5, 1133, 0, 0, 3239, 3240, 3, 616, 308, 0, 3240, 3241, 5, 1134, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3237, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3247, 1, 0, 0, 0, 3244, 3245, 5, 25, 0, 0, 3245, 3246, 5, 153, 0, 0, 3246, 3248, 3, 568, 284, 0, 3247, 3244, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3255, 1, 0, 0, 0, 3249, 3251, 7, 41, 0, 0, 3250, 3252, 3, 278, 139, 0, 3251, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3251, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3256, 1, 0, 0, 0, 3255, 3249, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3263, 1, 0, 0, 0, 3257, 3259, 5, 101, 0, 0, 3258, 3260, 3, 280, 140, 0, 3259, 3258, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3257, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3269, 1, 0, 0, 0, 3265, 3266, 5, 78, 0, 0, 3266, 3267, 3, 590, 295, 0, 3267, 3268, 7, 42, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3265, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3282, 1, 0, 0, 0, 3271, 3272, 5, 1133, 0, 0, 3272, 3277, 3, 208, 104, 0, 3273, 3274, 5, 1135, 0, 0, 3274, 3276, 3, 208, 104, 0, 3275, 3273, 1, 0, 0, 0, 3276, 3279, 1, 0, 0, 0, 3277, 3275, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3280, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3280, 3281, 5, 1134, 0, 0, 3281, 3283, 1, 0, 0, 0, 3282, 3271, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3293, 1, 0, 0, 0, 3284, 3285, 5, 153, 0, 0, 3285, 3290, 3, 206, 103, 0, 3286, 3287, 5, 1135, 0, 0, 3287, 3289, 3, 206, 103, 0, 3288, 3286, 1, 0, 0, 0, 3289, 3292, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3294, 1, 0, 0, 0, 3292, 3290, 1, 0, 0, 0, 3293, 3284, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 193, 1, 0, 0, 0, 3295, 3296, 5, 102, 0, 0, 3296, 3298, 5, 682, 0, 0, 3297, 3299, 7, 40, 0, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3302, 5, 474, 0, 0, 3301, 3300, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 5, 82, 0, 0, 3304, 3306, 5, 1148, 0, 0, 3305, 3307, 7, 6, 0, 0, 3306, 3305, 1, 0, 0, 0, 3306, 3307, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3309, 5, 87, 0, 0, 3309, 3310, 5, 172, 0, 0, 3310, 3314, 3, 550, 275, 0, 3311, 3312, 5, 25, 0, 0, 3312, 3313, 5, 153, 0, 0, 3313, 3315, 3, 568, 284, 0, 3314, 3311, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3322, 1, 0, 0, 0, 3316, 3317, 5, 601, 0, 0, 3317, 3318, 5, 448, 0, 0, 3318, 3319, 5, 19, 0, 0, 3319, 3320, 5, 1126, 0, 0, 3320, 3321, 5, 1148, 0, 0, 3321, 3323, 5, 1125, 0, 0, 3322, 3316, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3328, 1, 0, 0, 0, 3324, 3325, 5, 78, 0, 0, 3325, 3326, 3, 590, 295, 0, 3326, 3327, 7, 42, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3324, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3341, 1, 0, 0, 0, 3330, 3331, 5, 1133, 0, 0, 3331, 3336, 3, 208, 104, 0, 3332, 3333, 5, 1135, 0, 0, 3333, 3335, 3, 208, 104, 0, 3334, 3332, 1, 0, 0, 0, 3335, 3338, 1, 0, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3336, 1, 0, 0, 0, 3339, 3340, 5, 1134, 0, 0, 3340, 3342, 1, 0, 0, 0, 3341, 3330, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3352, 1, 0, 0, 0, 3343, 3344, 5, 153, 0, 0, 3344, 3349, 3, 206, 103, 0, 3345, 3346, 5, 1135, 0, 0, 3346, 3348, 3, 206, 103, 0, 3347, 3345, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3343, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 195, 1, 0, 0, 0, 3354, 3356, 5, 141, 0, 0, 3355, 3357, 7, 43, 0, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3359, 1, 0, 0, 0, 3358, 3360, 5, 87, 0, 0, 3359, 3358, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3367, 3, 550, 275, 0, 3362, 3363, 5, 129, 0, 0, 3363, 3364, 5, 1133, 0, 0, 3364, 3365, 3, 616, 308, 0, 3365, 3366, 5, 1134, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3362, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3385, 1, 0, 0, 0, 3369, 3370, 5, 1133, 0, 0, 3370, 3371, 3, 616, 308, 0, 3371, 3372, 5, 1134, 0, 0, 3372, 3374, 1, 0, 0, 0, 3373, 3369, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3386, 3, 204, 102, 0, 3376, 3377, 5, 153, 0, 0, 3377, 3382, 3, 206, 103, 0, 3378, 3379, 5, 1135, 0, 0, 3379, 3381, 3, 206, 103, 0, 3380, 3378, 1, 0, 0, 0, 3381, 3384, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3373, 1, 0, 0, 0, 3385, 3376, 1, 0, 0, 0, 3386, 197, 1, 0, 0, 0, 3387, 3389, 3, 250, 125, 0, 3388, 3390, 3, 210, 105, 0, 3389, 3388, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3453, 1, 0, 0, 0, 3391, 3393, 3, 246, 123, 0, 3392, 3394, 3, 210, 105, 0, 3393, 3392, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3453, 1, 0, 0, 0, 3395, 3398, 3, 252, 126, 0, 3396, 3398, 3, 248, 124, 0, 3397, 3395, 1, 0, 0, 0, 3397, 3396, 1, 0, 0, 0, 3398, 3400, 1, 0, 0, 0, 3399, 3401, 3, 256, 128, 0, 3400, 3399, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3412, 1, 0, 0, 0, 3404, 3406, 5, 180, 0, 0, 3405, 3407, 7, 44, 0, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3411, 3, 250, 125, 0, 3409, 3411, 3, 246, 123, 0, 3410, 3408, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 3413, 1, 0, 0, 0, 3412, 3404, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3416, 3, 228, 114, 0, 3415, 3414, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3418, 1, 0, 0, 0, 3417, 3419, 3, 292, 146, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 210, 105, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3453, 1, 0, 0, 0, 3423, 3425, 3, 248, 124, 0, 3424, 3426, 3, 254, 127, 0, 3425, 3424, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3434, 1, 0, 0, 0, 3429, 3431, 5, 180, 0, 0, 3430, 3432, 7, 44, 0, 0, 3431, 3430, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3435, 3, 246, 123, 0, 3434, 3429, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3437, 1, 0, 0, 0, 3436, 3438, 3, 228, 114, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3441, 3, 292, 146, 0, 3440, 3439, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3443, 1, 0, 0, 0, 3442, 3444, 3, 210, 105, 0, 3443, 3442, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3453, 1, 0, 0, 0, 3445, 3448, 3, 252, 126, 0, 3446, 3447, 5, 1135, 0, 0, 3447, 3449, 3, 258, 129, 0, 3448, 3446, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3453, 1, 0, 0, 0, 3452, 3387, 1, 0, 0, 0, 3452, 3391, 1, 0, 0, 0, 3452, 3397, 1, 0, 0, 0, 3452, 3423, 1, 0, 0, 0, 3452, 3445, 1, 0, 0, 0, 3453, 199, 1, 0, 0, 0, 3454, 3457, 3, 224, 112, 0, 3455, 3457, 3, 226, 113, 0, 3456, 3454, 1, 0, 0, 0, 3456, 3455, 1, 0, 0, 0, 3457, 201, 1, 0, 0, 0, 3458, 3459, 5, 188, 0, 0, 3459, 3461, 5, 1133, 0, 0, 3460, 3462, 3, 626, 313, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3472, 5, 1134, 0, 0, 3464, 3465, 5, 1135, 0, 0, 3465, 3467, 5, 1133, 0, 0, 3466, 3468, 3, 626, 313, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3471, 5, 1134, 0, 0, 3470, 3464, 1, 0, 0, 0, 3471, 3474, 1, 0, 0, 0, 3472, 3470, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 203, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3475, 3494, 3, 198, 99, 0, 3476, 3477, 7, 45, 0, 0, 3477, 3479, 5, 1133, 0, 0, 3478, 3480, 3, 626, 313, 0, 3479, 3478, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3490, 5, 1134, 0, 0, 3482, 3483, 5, 1135, 0, 0, 3483, 3485, 5, 1133, 0, 0, 3484, 3486, 3, 626, 313, 0, 3485, 3484, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3489, 5, 1134, 0, 0, 3488, 3482, 1, 0, 0, 0, 3489, 3492, 1, 0, 0, 0, 3490, 3488, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3494, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3475, 1, 0, 0, 0, 3493, 3476, 1, 0, 0, 0, 3494, 205, 1, 0, 0, 0, 3495, 3496, 3, 556, 278, 0, 3496, 3499, 5, 1124, 0, 0, 3497, 3500, 3, 688, 344, 0, 3498, 3500, 5, 42, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3498, 1, 0, 0, 0, 3500, 207, 1, 0, 0, 0, 3501, 3504, 3, 584, 292, 0, 3502, 3504, 5, 1159, 0, 0, 3503, 3501, 1, 0, 0, 0, 3503, 3502, 1, 0, 0, 0, 3504, 209, 1, 0, 0, 0, 3505, 3506, 5, 65, 0, 0, 3506, 3512, 5, 184, 0, 0, 3507, 3508, 5, 103, 0, 0, 3508, 3509, 5, 80, 0, 0, 3509, 3510, 5, 610, 0, 0, 3510, 3512, 5, 511, 0, 0, 3511, 3505, 1, 0, 0, 0, 3511, 3507, 1, 0, 0, 0, 3512, 211, 1, 0, 0, 0, 3513, 3515, 5, 44, 0, 0, 3514, 3516, 5, 106, 0, 0, 3515, 3514, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3519, 5, 568, 0, 0, 3518, 3517, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3521, 1, 0, 0, 0, 3520, 3522, 5, 78, 0, 0, 3521, 3520, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 5, 68, 0, 0, 3524, 3529, 3, 550, 275, 0, 3525, 3527, 5, 12, 0, 0, 3526, 3525, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3530, 3, 584, 292, 0, 3529, 3526, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3536, 1, 0, 0, 0, 3531, 3532, 5, 129, 0, 0, 3532, 3533, 5, 1133, 0, 0, 3533, 3534, 3, 616, 308, 0, 3534, 3535, 5, 1134, 0, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3531, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3540, 1, 0, 0, 0, 3538, 3539, 5, 190, 0, 0, 3539, 3541, 3, 688, 344, 0, 3540, 3538, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3543, 1, 0, 0, 0, 3542, 3544, 3, 228, 114, 0, 3543, 3542, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3547, 1, 0, 0, 0, 3545, 3546, 5, 99, 0, 0, 3546, 3548, 3, 294, 147, 0, 3547, 3545, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 213, 1, 0, 0, 0, 3549, 3551, 5, 44, 0, 0, 3550, 3552, 5, 106, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3554, 1, 0, 0, 0, 3553, 3555, 5, 568, 0, 0, 3554, 3553, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3557, 1, 0, 0, 0, 3556, 3558, 5, 78, 0, 0, 3557, 3556, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3598, 1, 0, 0, 0, 3559, 3562, 3, 550, 275, 0, 3560, 3561, 5, 1132, 0, 0, 3561, 3563, 5, 1117, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3572, 1, 0, 0, 0, 3564, 3565, 5, 1135, 0, 0, 3565, 3568, 3, 550, 275, 0, 3566, 3567, 5, 1132, 0, 0, 3567, 3569, 5, 1117, 0, 0, 3568, 3566, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3564, 1, 0, 0, 0, 3571, 3574, 1, 0, 0, 0, 3572, 3570, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3572, 1, 0, 0, 0, 3575, 3576, 5, 68, 0, 0, 3576, 3577, 3, 232, 116, 0, 3577, 3599, 1, 0, 0, 0, 3578, 3579, 5, 68, 0, 0, 3579, 3582, 3, 550, 275, 0, 3580, 3581, 5, 1132, 0, 0, 3581, 3583, 5, 1117, 0, 0, 3582, 3580, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3592, 1, 0, 0, 0, 3584, 3585, 5, 1135, 0, 0, 3585, 3588, 3, 550, 275, 0, 3586, 3587, 5, 1132, 0, 0, 3587, 3589, 5, 1117, 0, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3584, 1, 0, 0, 0, 3591, 3594, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 3595, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 3596, 5, 187, 0, 0, 3596, 3597, 3, 232, 116, 0, 3597, 3599, 1, 0, 0, 0, 3598, 3559, 1, 0, 0, 0, 3598, 3578, 1, 0, 0, 0, 3599, 3602, 1, 0, 0, 0, 3600, 3601, 5, 190, 0, 0, 3601, 3603, 3, 688, 344, 0, 3602, 3600, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 215, 1, 0, 0, 0, 3604, 3605, 5, 442, 0, 0, 3605, 3606, 3, 550, 275, 0, 3606, 3611, 5, 539, 0, 0, 3607, 3609, 5, 12, 0, 0, 3608, 3607, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3612, 3, 584, 292, 0, 3611, 3608, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 217, 1, 0, 0, 0, 3613, 3614, 5, 442, 0, 0, 3614, 3615, 3, 550, 275, 0, 3615, 3616, 5, 134, 0, 0, 3616, 3623, 3, 584, 292, 0, 3617, 3618, 3, 696, 348, 0, 3618, 3619, 5, 1133, 0, 0, 3619, 3620, 3, 628, 314, 0, 3620, 3621, 5, 1134, 0, 0, 3621, 3624, 1, 0, 0, 0, 3622, 3624, 7, 46, 0, 0, 3623, 3617, 1, 0, 0, 0, 3623, 3622, 1, 0, 0, 0, 3624, 3627, 1, 0, 0, 0, 3625, 3626, 5, 190, 0, 0, 3626, 3628, 3, 688, 344, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3631, 1, 0, 0, 0, 3629, 3630, 5, 99, 0, 0, 3630, 3632, 3, 294, 147, 0, 3631, 3629, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 219, 1, 0, 0, 0, 3633, 3634, 5, 442, 0, 0, 3634, 3635, 3, 550, 275, 0, 3635, 3636, 5, 134, 0, 0, 3636, 3639, 7, 47, 0, 0, 3637, 3638, 5, 190, 0, 0, 3638, 3640, 3, 688, 344, 0, 3639, 3637, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3642, 5, 99, 0, 0, 3642, 3644, 3, 294, 147, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 221, 1, 0, 0, 0, 3645, 3646, 5, 442, 0, 0, 3646, 3647, 3, 550, 275, 0, 3647, 3648, 5, 361, 0, 0, 3648, 223, 1, 0, 0, 0, 3649, 3651, 5, 184, 0, 0, 3650, 3652, 5, 106, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 5, 78, 0, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3661, 3, 550, 275, 0, 3657, 3659, 5, 12, 0, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 3, 584, 292, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 5, 153, 0, 0, 3664, 3669, 3, 206, 103, 0, 3665, 3666, 5, 1135, 0, 0, 3666, 3668, 3, 206, 103, 0, 3667, 3665, 1, 0, 0, 0, 3668, 3671, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3674, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3672, 3673, 5, 190, 0, 0, 3673, 3675, 3, 688, 344, 0, 3674, 3672, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3678, 3, 228, 114, 0, 3677, 3676, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3680, 1, 0, 0, 0, 3679, 3681, 3, 292, 146, 0, 3680, 3679, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 225, 1, 0, 0, 0, 3682, 3684, 5, 184, 0, 0, 3683, 3685, 5, 106, 0, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3688, 5, 78, 0, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 3, 552, 276, 0, 3690, 3691, 5, 153, 0, 0, 3691, 3696, 3, 206, 103, 0, 3692, 3693, 5, 1135, 0, 0, 3693, 3695, 3, 206, 103, 0, 3694, 3692, 1, 0, 0, 0, 3695, 3698, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3697, 1, 0, 0, 0, 3697, 3701, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3699, 3700, 5, 190, 0, 0, 3700, 3702, 3, 688, 344, 0, 3701, 3699, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 227, 1, 0, 0, 0, 3703, 3704, 5, 124, 0, 0, 3704, 3705, 5, 19, 0, 0, 3705, 3710, 3, 230, 115, 0, 3706, 3707, 5, 1135, 0, 0, 3707, 3709, 3, 230, 115, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 229, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3715, 3, 688, 344, 0, 3714, 3716, 7, 48, 0, 0, 3715, 3714, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 231, 1, 0, 0, 0, 3717, 3722, 3, 234, 117, 0, 3718, 3719, 5, 1135, 0, 0, 3719, 3721, 3, 234, 117, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 233, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3729, 3, 236, 118, 0, 3726, 3728, 3, 242, 121, 0, 3727, 3726, 1, 0, 0, 0, 3728, 3731, 1, 0, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3744, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3732, 3733, 5, 1133, 0, 0, 3733, 3737, 3, 236, 118, 0, 3734, 3736, 3, 242, 121, 0, 3735, 3734, 1, 0, 0, 0, 3736, 3739, 1, 0, 0, 0, 3737, 3735, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3740, 3741, 5, 1134, 0, 0, 3741, 3744, 1, 0, 0, 0, 3742, 3744, 3, 260, 130, 0, 3743, 3725, 1, 0, 0, 0, 3743, 3732, 1, 0, 0, 0, 3743, 3742, 1, 0, 0, 0, 3744, 235, 1, 0, 0, 0, 3745, 3751, 3, 550, 275, 0, 3746, 3747, 5, 129, 0, 0, 3747, 3748, 5, 1133, 0, 0, 3748, 3749, 3, 616, 308, 0, 3749, 3750, 5, 1134, 0, 0, 3750, 3752, 1, 0, 0, 0, 3751, 3746, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3757, 1, 0, 0, 0, 3753, 3755, 5, 12, 0, 0, 3754, 3753, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3758, 3, 584, 292, 0, 3757, 3754, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3767, 1, 0, 0, 0, 3759, 3764, 3, 238, 119, 0, 3760, 3761, 5, 1135, 0, 0, 3761, 3763, 3, 238, 119, 0, 3762, 3760, 1, 0, 0, 0, 3763, 3766, 1, 0, 0, 0, 3764, 3762, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3768, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3767, 3759, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3783, 1, 0, 0, 0, 3769, 3770, 5, 1133, 0, 0, 3770, 3771, 3, 198, 99, 0, 3771, 3772, 5, 1134, 0, 0, 3772, 3774, 1, 0, 0, 0, 3773, 3775, 5, 12, 0, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 3, 584, 292, 0, 3777, 3783, 1, 0, 0, 0, 3778, 3779, 5, 1133, 0, 0, 3779, 3780, 3, 232, 116, 0, 3780, 3781, 5, 1134, 0, 0, 3781, 3783, 1, 0, 0, 0, 3782, 3745, 1, 0, 0, 0, 3782, 3769, 1, 0, 0, 0, 3782, 3778, 1, 0, 0, 0, 3783, 237, 1, 0, 0, 0, 3784, 3785, 7, 49, 0, 0, 3785, 3788, 7, 20, 0, 0, 3786, 3787, 5, 65, 0, 0, 3787, 3789, 3, 240, 120, 0, 3788, 3786, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3790, 1, 0, 0, 0, 3790, 3791, 5, 1133, 0, 0, 3791, 3792, 3, 616, 308, 0, 3792, 3793, 5, 1134, 0, 0, 3793, 239, 1, 0, 0, 0, 3794, 3800, 5, 90, 0, 0, 3795, 3796, 5, 124, 0, 0, 3796, 3800, 5, 19, 0, 0, 3797, 3798, 5, 73, 0, 0, 3798, 3800, 5, 19, 0, 0, 3799, 3794, 1, 0, 0, 0, 3799, 3795, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3800, 241, 1, 0, 0, 0, 3801, 3803, 7, 50, 0, 0, 3802, 3801, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 5, 90, 0, 0, 3805, 3807, 5, 94, 0, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3812, 3, 236, 118, 0, 3809, 3811, 3, 244, 122, 0, 3810, 3809, 1, 0, 0, 0, 3811, 3814, 1, 0, 0, 0, 3812, 3810, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3849, 1, 0, 0, 0, 3814, 3812, 1, 0, 0, 0, 3815, 3816, 5, 171, 0, 0, 3816, 3821, 3, 236, 118, 0, 3817, 3818, 5, 118, 0, 0, 3818, 3820, 3, 688, 344, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3849, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3826, 7, 51, 0, 0, 3825, 3827, 5, 126, 0, 0, 3826, 3825, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3830, 5, 90, 0, 0, 3829, 3831, 5, 94, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3836, 3, 236, 118, 0, 3833, 3835, 3, 244, 122, 0, 3834, 3833, 1, 0, 0, 0, 3835, 3838, 1, 0, 0, 0, 3836, 3834, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3849, 1, 0, 0, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3844, 5, 113, 0, 0, 3840, 3842, 7, 51, 0, 0, 3841, 3843, 5, 126, 0, 0, 3842, 3841, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3845, 1, 0, 0, 0, 3844, 3840, 1, 0, 0, 0, 3844, 3845, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3847, 5, 90, 0, 0, 3847, 3849, 3, 236, 118, 0, 3848, 3802, 1, 0, 0, 0, 3848, 3815, 1, 0, 0, 0, 3848, 3824, 1, 0, 0, 0, 3848, 3839, 1, 0, 0, 0, 3849, 243, 1, 0, 0, 0, 3850, 3851, 5, 118, 0, 0, 3851, 3858, 3, 688, 344, 0, 3852, 3853, 5, 187, 0, 0, 3853, 3854, 5, 1133, 0, 0, 3854, 3855, 3, 616, 308, 0, 3855, 3856, 5, 1134, 0, 0, 3856, 3858, 1, 0, 0, 0, 3857, 3850, 1, 0, 0, 0, 3857, 3852, 1, 0, 0, 0, 3858, 245, 1, 0, 0, 0, 3859, 3860, 5, 1133, 0, 0, 3860, 3861, 3, 250, 125, 0, 3861, 3862, 5, 1134, 0, 0, 3862, 3868, 1, 0, 0, 0, 3863, 3864, 5, 1133, 0, 0, 3864, 3865, 3, 246, 123, 0, 3865, 3866, 5, 1134, 0, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3859, 1, 0, 0, 0, 3867, 3863, 1, 0, 0, 0, 3868, 247, 1, 0, 0, 0, 3869, 3870, 5, 1133, 0, 0, 3870, 3871, 3, 252, 126, 0, 3871, 3872, 5, 1134, 0, 0, 3872, 3878, 1, 0, 0, 0, 3873, 3874, 5, 1133, 0, 0, 3874, 3875, 3, 248, 124, 0, 3875, 3876, 5, 1134, 0, 0, 3876, 3878, 1, 0, 0, 0, 3877, 3869, 1, 0, 0, 0, 3877, 3873, 1, 0, 0, 0, 3878, 249, 1, 0, 0, 0, 3879, 3883, 5, 152, 0, 0, 3880, 3882, 3, 270, 135, 0, 3881, 3880, 1, 0, 0, 0, 3882, 3885, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3883, 3884, 1, 0, 0, 0, 3884, 3886, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3888, 3, 272, 136, 0, 3887, 3889, 3, 276, 138, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 3, 282, 141, 0, 3891, 3893, 3, 284, 142, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3895, 1, 0, 0, 0, 3894, 3896, 3, 286, 143, 0, 3895, 3894, 1, 0, 0, 0, 3895, 3896, 1, 0, 0, 0, 3896, 3898, 1, 0, 0, 0, 3897, 3899, 3, 288, 144, 0, 3898, 3897, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3901, 1, 0, 0, 0, 3900, 3902, 3, 228, 114, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3904, 1, 0, 0, 0, 3903, 3905, 3, 292, 146, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3934, 1, 0, 0, 0, 3906, 3910, 5, 152, 0, 0, 3907, 3909, 3, 270, 135, 0, 3908, 3907, 1, 0, 0, 0, 3909, 3912, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3910, 1, 0, 0, 0, 3913, 3914, 3, 272, 136, 0, 3914, 3916, 3, 282, 141, 0, 3915, 3917, 3, 284, 142, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3919, 1, 0, 0, 0, 3918, 3920, 3, 286, 143, 0, 3919, 3918, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3922, 1, 0, 0, 0, 3921, 3923, 3, 288, 144, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3925, 1, 0, 0, 0, 3924, 3926, 3, 228, 114, 0, 3925, 3924, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3928, 1, 0, 0, 0, 3927, 3929, 3, 292, 146, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3931, 1, 0, 0, 0, 3930, 3932, 3, 276, 138, 0, 3931, 3930, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 3934, 1, 0, 0, 0, 3933, 3879, 1, 0, 0, 0, 3933, 3906, 1, 0, 0, 0, 3934, 251, 1, 0, 0, 0, 3935, 3939, 5, 152, 0, 0, 3936, 3938, 3, 270, 135, 0, 3937, 3936, 1, 0, 0, 0, 3938, 3941, 1, 0, 0, 0, 3939, 3937, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3942, 1, 0, 0, 0, 3941, 3939, 1, 0, 0, 0, 3942, 3943, 3, 272, 136, 0, 3943, 3945, 3, 282, 141, 0, 3944, 3946, 3, 284, 142, 0, 3945, 3944, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3949, 3, 286, 143, 0, 3948, 3947, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3951, 1, 0, 0, 0, 3950, 3952, 3, 288, 144, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3954, 1, 0, 0, 0, 3953, 3955, 3, 228, 114, 0, 3954, 3953, 1, 0, 0, 0, 3954, 3955, 1, 0, 0, 0, 3955, 3957, 1, 0, 0, 0, 3956, 3958, 3, 292, 146, 0, 3957, 3956, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3960, 1, 0, 0, 0, 3959, 3961, 3, 256, 128, 0, 3960, 3959, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 253, 1, 0, 0, 0, 3962, 3964, 5, 180, 0, 0, 3963, 3965, 7, 44, 0, 0, 3964, 3963, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3967, 3, 248, 124, 0, 3967, 255, 1, 0, 0, 0, 3968, 3970, 5, 180, 0, 0, 3969, 3971, 7, 44, 0, 0, 3970, 3969, 1, 0, 0, 0, 3970, 3971, 1, 0, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3975, 3, 252, 126, 0, 3973, 3975, 3, 248, 124, 0, 3974, 3972, 1, 0, 0, 0, 3974, 3973, 1, 0, 0, 0, 3975, 257, 1, 0, 0, 0, 3976, 3991, 5, 94, 0, 0, 3977, 3992, 3, 252, 126, 0, 3978, 3992, 3, 248, 124, 0, 3979, 3982, 5, 1133, 0, 0, 3980, 3983, 3, 252, 126, 0, 3981, 3983, 3, 248, 124, 0, 3982, 3980, 1, 0, 0, 0, 3982, 3981, 1, 0, 0, 0, 3983, 3984, 1, 0, 0, 0, 3984, 3989, 5, 1134, 0, 0, 3985, 3987, 5, 12, 0, 0, 3986, 3985, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3990, 3, 584, 292, 0, 3989, 3986, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3992, 1, 0, 0, 0, 3991, 3977, 1, 0, 0, 0, 3991, 3978, 1, 0, 0, 0, 3991, 3979, 1, 0, 0, 0, 3992, 259, 1, 0, 0, 0, 3993, 3994, 5, 278, 0, 0, 3994, 3995, 5, 1133, 0, 0, 3995, 3996, 5, 1148, 0, 0, 3996, 3997, 5, 1135, 0, 0, 3997, 3998, 5, 1148, 0, 0, 3998, 3999, 5, 365, 0, 0, 3999, 4000, 5, 1133, 0, 0, 4000, 4001, 3, 262, 131, 0, 4001, 4002, 5, 1134, 0, 0, 4002, 4007, 5, 1134, 0, 0, 4003, 4005, 5, 12, 0, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4008, 3, 584, 292, 0, 4007, 4004, 1, 0, 0, 0, 4007, 4008, 1, 0, 0, 0, 4008, 261, 1, 0, 0, 0, 4009, 4014, 3, 264, 132, 0, 4010, 4011, 5, 1135, 0, 0, 4011, 4013, 3, 264, 132, 0, 4012, 4010, 1, 0, 0, 0, 4013, 4016, 1, 0, 0, 0, 4014, 4012, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 263, 1, 0, 0, 0, 4016, 4014, 1, 0, 0, 0, 4017, 4034, 3, 556, 278, 0, 4018, 4019, 5, 65, 0, 0, 4019, 4035, 5, 284, 0, 0, 4020, 4032, 3, 604, 302, 0, 4021, 4022, 5, 285, 0, 0, 4022, 4024, 5, 1148, 0, 0, 4023, 4025, 3, 266, 133, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 1, 0, 0, 0, 4026, 4028, 3, 268, 134, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4033, 1, 0, 0, 0, 4029, 4030, 5, 60, 0, 0, 4030, 4031, 5, 285, 0, 0, 4031, 4033, 5, 1148, 0, 0, 4032, 4021, 1, 0, 0, 0, 4032, 4029, 1, 0, 0, 0, 4033, 4035, 1, 0, 0, 0, 4034, 4018, 1, 0, 0, 0, 4034, 4020, 1, 0, 0, 0, 4035, 4047, 1, 0, 0, 0, 4036, 4038, 5, 283, 0, 0, 4037, 4039, 5, 285, 0, 0, 4038, 4037, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 5, 1148, 0, 0, 4041, 4042, 5, 365, 0, 0, 4042, 4043, 5, 1133, 0, 0, 4043, 4044, 3, 262, 131, 0, 4044, 4045, 5, 1134, 0, 0, 4045, 4047, 1, 0, 0, 0, 4046, 4017, 1, 0, 0, 0, 4046, 4036, 1, 0, 0, 0, 4047, 265, 1, 0, 0, 0, 4048, 4053, 5, 116, 0, 0, 4049, 4053, 5, 411, 0, 0, 4050, 4051, 5, 42, 0, 0, 4051, 4053, 3, 634, 317, 0, 4052, 4048, 1, 0, 0, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4050, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4055, 5, 118, 0, 0, 4055, 4056, 5, 55, 0, 0, 4056, 267, 1, 0, 0, 0, 4057, 4062, 5, 116, 0, 0, 4058, 4062, 5, 411, 0, 0, 4059, 4060, 5, 42, 0, 0, 4060, 4062, 3, 634, 317, 0, 4061, 4057, 1, 0, 0, 0, 4061, 4058, 1, 0, 0, 0, 4061, 4059, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4064, 5, 118, 0, 0, 4064, 4065, 5, 411, 0, 0, 4065, 269, 1, 0, 0, 0, 4066, 4075, 7, 52, 0, 0, 4067, 4075, 5, 75, 0, 0, 4068, 4075, 5, 171, 0, 0, 4069, 4075, 5, 166, 0, 0, 4070, 4075, 5, 164, 0, 0, 4071, 4075, 5, 625, 0, 0, 4072, 4075, 7, 53, 0, 0, 4073, 4075, 5, 165, 0, 0, 4074, 4066, 1, 0, 0, 0, 4074, 4067, 1, 0, 0, 0, 4074, 4068, 1, 0, 0, 0, 4074, 4069, 1, 0, 0, 0, 4074, 4070, 1, 0, 0, 0, 4074, 4071, 1, 0, 0, 0, 4074, 4072, 1, 0, 0, 0, 4074, 4073, 1, 0, 0, 0, 4075, 271, 1, 0, 0, 0, 4076, 4079, 5, 1117, 0, 0, 4077, 4079, 3, 274, 137, 0, 4078, 4076, 1, 0, 0, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4084, 1, 0, 0, 0, 4080, 4081, 5, 1135, 0, 0, 4081, 4083, 3, 274, 137, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4086, 1, 0, 0, 0, 4084, 4082, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 273, 1, 0, 0, 0, 4086, 4084, 1, 0, 0, 0, 4087, 4088, 3, 548, 274, 0, 4088, 4089, 5, 1132, 0, 0, 4089, 4090, 5, 1117, 0, 0, 4090, 4117, 1, 0, 0, 0, 4091, 4096, 3, 556, 278, 0, 4092, 4094, 5, 12, 0, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4097, 3, 584, 292, 0, 4096, 4093, 1, 0, 0, 0, 4096, 4097, 1, 0, 0, 0, 4097, 4117, 1, 0, 0, 0, 4098, 4103, 3, 648, 324, 0, 4099, 4101, 5, 12, 0, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4104, 3, 584, 292, 0, 4103, 4100, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4117, 1, 0, 0, 0, 4105, 4106, 5, 1159, 0, 0, 4106, 4108, 5, 1108, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4114, 3, 688, 344, 0, 4110, 4112, 5, 12, 0, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4115, 3, 584, 292, 0, 4114, 4111, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 4117, 1, 0, 0, 0, 4116, 4087, 1, 0, 0, 0, 4116, 4091, 1, 0, 0, 0, 4116, 4098, 1, 0, 0, 0, 4116, 4107, 1, 0, 0, 0, 4117, 275, 1, 0, 0, 0, 4118, 4119, 5, 87, 0, 0, 4119, 4124, 3, 208, 104, 0, 4120, 4121, 5, 1135, 0, 0, 4121, 4123, 3, 208, 104, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4126, 1, 0, 0, 0, 4124, 4122, 1, 0, 0, 0, 4124, 4125, 1, 0, 0, 0, 4125, 4155, 1, 0, 0, 0, 4126, 4124, 1, 0, 0, 0, 4127, 4128, 5, 87, 0, 0, 4128, 4129, 5, 400, 0, 0, 4129, 4155, 5, 1148, 0, 0, 4130, 4131, 5, 87, 0, 0, 4131, 4132, 5, 127, 0, 0, 4132, 4136, 5, 1148, 0, 0, 4133, 4134, 5, 25, 0, 0, 4134, 4135, 5, 153, 0, 0, 4135, 4137, 3, 568, 284, 0, 4136, 4133, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4144, 1, 0, 0, 0, 4138, 4140, 7, 41, 0, 0, 4139, 4141, 3, 278, 139, 0, 4140, 4139, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4140, 1, 0, 0, 0, 4142, 4143, 1, 0, 0, 0, 4143, 4145, 1, 0, 0, 0, 4144, 4138, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4152, 1, 0, 0, 0, 4146, 4148, 5, 101, 0, 0, 4147, 4149, 3, 280, 140, 0, 4148, 4147, 1, 0, 0, 0, 4149, 4150, 1, 0, 0, 0, 4150, 4148, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4153, 1, 0, 0, 0, 4152, 4146, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4118, 1, 0, 0, 0, 4154, 4127, 1, 0, 0, 0, 4154, 4130, 1, 0, 0, 0, 4155, 277, 1, 0, 0, 0, 4156, 4157, 5, 173, 0, 0, 4157, 4158, 5, 19, 0, 0, 4158, 4169, 5, 1148, 0, 0, 4159, 4161, 5, 122, 0, 0, 4160, 4159, 1, 0, 0, 0, 4160, 4161, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 5, 56, 0, 0, 4163, 4164, 5, 19, 0, 0, 4164, 4169, 5, 1148, 0, 0, 4165, 4166, 5, 58, 0, 0, 4166, 4167, 5, 19, 0, 0, 4167, 4169, 5, 1148, 0, 0, 4168, 4156, 1, 0, 0, 0, 4168, 4160, 1, 0, 0, 0, 4168, 4165, 1, 0, 0, 0, 4169, 279, 1, 0, 0, 0, 4170, 4171, 5, 169, 0, 0, 4171, 4172, 5, 19, 0, 0, 4172, 4177, 5, 1148, 0, 0, 4173, 4174, 5, 173, 0, 0, 4174, 4175, 5, 19, 0, 0, 4175, 4177, 5, 1148, 0, 0, 4176, 4170, 1, 0, 0, 0, 4176, 4173, 1, 0, 0, 0, 4177, 281, 1, 0, 0, 0, 4178, 4179, 5, 68, 0, 0, 4179, 4181, 3, 232, 116, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4184, 1, 0, 0, 0, 4182, 4183, 5, 190, 0, 0, 4183, 4185, 3, 688, 344, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 283, 1, 0, 0, 0, 4186, 4187, 5, 73, 0, 0, 4187, 4188, 5, 19, 0, 0, 4188, 4193, 3, 290, 145, 0, 4189, 4190, 5, 1135, 0, 0, 4190, 4192, 3, 290, 145, 0, 4191, 4189, 1, 0, 0, 0, 4192, 4195, 1, 0, 0, 0, 4193, 4191, 1, 0, 0, 0, 4193, 4194, 1, 0, 0, 0, 4194, 4198, 1, 0, 0, 0, 4195, 4193, 1, 0, 0, 0, 4196, 4197, 5, 192, 0, 0, 4197, 4199, 5, 598, 0, 0, 4198, 4196, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 285, 1, 0, 0, 0, 4200, 4201, 5, 74, 0, 0, 4201, 4202, 3, 688, 344, 0, 4202, 287, 1, 0, 0, 0, 4203, 4204, 5, 676, 0, 0, 4204, 4205, 3, 666, 333, 0, 4205, 4206, 5, 12, 0, 0, 4206, 4207, 5, 1133, 0, 0, 4207, 4208, 3, 664, 332, 0, 4208, 4218, 5, 1134, 0, 0, 4209, 4210, 5, 1135, 0, 0, 4210, 4211, 3, 666, 333, 0, 4211, 4212, 5, 12, 0, 0, 4212, 4213, 5, 1133, 0, 0, 4213, 4214, 3, 664, 332, 0, 4214, 4215, 5, 1134, 0, 0, 4215, 4217, 1, 0, 0, 0, 4216, 4209, 1, 0, 0, 0, 4217, 4220, 1, 0, 0, 0, 4218, 4216, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 289, 1, 0, 0, 0, 4220, 4218, 1, 0, 0, 0, 4221, 4223, 3, 688, 344, 0, 4222, 4224, 7, 48, 0, 0, 4223, 4222, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 291, 1, 0, 0, 0, 4225, 4236, 5, 99, 0, 0, 4226, 4227, 3, 294, 147, 0, 4227, 4228, 5, 1135, 0, 0, 4228, 4230, 1, 0, 0, 0, 4229, 4226, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4231, 1, 0, 0, 0, 4231, 4237, 3, 294, 147, 0, 4232, 4233, 3, 294, 147, 0, 4233, 4234, 5, 532, 0, 0, 4234, 4235, 3, 294, 147, 0, 4235, 4237, 1, 0, 0, 0, 4236, 4229, 1, 0, 0, 0, 4236, 4232, 1, 0, 0, 0, 4237, 293, 1, 0, 0, 0, 4238, 4242, 3, 590, 295, 0, 4239, 4242, 3, 566, 283, 0, 4240, 4242, 3, 586, 293, 0, 4241, 4238, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4240, 1, 0, 0, 0, 4242, 295, 1, 0, 0, 0, 4243, 4244, 5, 629, 0, 0, 4244, 4253, 5, 653, 0, 0, 4245, 4250, 3, 318, 159, 0, 4246, 4247, 5, 1135, 0, 0, 4247, 4249, 3, 318, 159, 0, 4248, 4246, 1, 0, 0, 0, 4249, 4252, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4254, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4245, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 297, 1, 0, 0, 0, 4255, 4257, 5, 344, 0, 0, 4256, 4258, 5, 678, 0, 0, 4257, 4256, 1, 0, 0, 0, 4257, 4258, 1, 0, 0, 0, 4258, 299, 1, 0, 0, 0, 4259, 4261, 5, 369, 0, 0, 4260, 4262, 5, 678, 0, 0, 4261, 4260, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 4268, 1, 0, 0, 0, 4263, 4265, 5, 10, 0, 0, 4264, 4266, 5, 521, 0, 0, 4265, 4264, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4269, 5, 353, 0, 0, 4268, 4263, 1, 0, 0, 0, 4268, 4269, 1, 0, 0, 0, 4269, 4274, 1, 0, 0, 0, 4270, 4272, 5, 521, 0, 0, 4271, 4270, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4275, 5, 138, 0, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 301, 1, 0, 0, 0, 4276, 4278, 5, 597, 0, 0, 4277, 4279, 5, 678, 0, 0, 4278, 4277, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4285, 1, 0, 0, 0, 4280, 4282, 5, 10, 0, 0, 4281, 4283, 5, 521, 0, 0, 4282, 4281, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4286, 5, 353, 0, 0, 4285, 4280, 1, 0, 0, 0, 4285, 4286, 1, 0, 0, 0, 4286, 4291, 1, 0, 0, 0, 4287, 4289, 5, 521, 0, 0, 4288, 4287, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4292, 5, 138, 0, 0, 4291, 4288, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 303, 1, 0, 0, 0, 4293, 4294, 5, 604, 0, 0, 4294, 4295, 3, 584, 292, 0, 4295, 305, 1, 0, 0, 0, 4296, 4298, 5, 597, 0, 0, 4297, 4299, 5, 678, 0, 0, 4298, 4297, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4302, 5, 175, 0, 0, 4301, 4303, 5, 604, 0, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4305, 3, 584, 292, 0, 4305, 307, 1, 0, 0, 0, 4306, 4307, 5, 138, 0, 0, 4307, 4308, 5, 604, 0, 0, 4308, 4309, 3, 584, 292, 0, 4309, 309, 1, 0, 0, 0, 4310, 4311, 5, 103, 0, 0, 4311, 4312, 7, 54, 0, 0, 4312, 4317, 3, 320, 160, 0, 4313, 4314, 5, 1135, 0, 0, 4314, 4316, 3, 320, 160, 0, 4315, 4313, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4321, 1, 0, 0, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4322, 3, 646, 323, 0, 4321, 4320, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 311, 1, 0, 0, 0, 4323, 4324, 5, 182, 0, 0, 4324, 4325, 5, 742, 0, 0, 4325, 313, 1, 0, 0, 0, 4326, 4327, 5, 153, 0, 0, 4327, 4328, 5, 340, 0, 0, 4328, 4329, 5, 1124, 0, 0, 4329, 4330, 7, 24, 0, 0, 4330, 315, 1, 0, 0, 0, 4331, 4333, 5, 153, 0, 0, 4332, 4334, 7, 55, 0, 0, 4333, 4332, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 4336, 5, 653, 0, 0, 4336, 4341, 3, 324, 162, 0, 4337, 4338, 5, 1135, 0, 0, 4338, 4340, 3, 324, 162, 0, 4339, 4337, 1, 0, 0, 0, 4340, 4343, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 317, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4344, 4345, 5, 192, 0, 0, 4345, 4346, 5, 377, 0, 0, 4346, 4352, 5, 616, 0, 0, 4347, 4348, 5, 134, 0, 0, 4348, 4352, 5, 193, 0, 0, 4349, 4350, 5, 134, 0, 0, 4350, 4352, 5, 538, 0, 0, 4351, 4344, 1, 0, 0, 0, 4351, 4347, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4352, 319, 1, 0, 0, 0, 4353, 4358, 3, 550, 275, 0, 4354, 4356, 5, 12, 0, 0, 4355, 4354, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4359, 3, 584, 292, 0, 4358, 4355, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 4361, 3, 322, 161, 0, 4361, 321, 1, 0, 0, 0, 4362, 4364, 5, 134, 0, 0, 4363, 4365, 5, 474, 0, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4371, 1, 0, 0, 0, 4366, 4368, 5, 106, 0, 0, 4367, 4366, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4371, 5, 193, 0, 0, 4370, 4362, 1, 0, 0, 0, 4370, 4367, 1, 0, 0, 0, 4371, 323, 1, 0, 0, 0, 4372, 4373, 5, 464, 0, 0, 4373, 4374, 5, 472, 0, 0, 4374, 4380, 3, 326, 163, 0, 4375, 4376, 5, 134, 0, 0, 4376, 4380, 5, 193, 0, 0, 4377, 4378, 5, 134, 0, 0, 4378, 4380, 5, 538, 0, 0, 4379, 4372, 1, 0, 0, 0, 4379, 4375, 1, 0, 0, 0, 4379, 4377, 1, 0, 0, 0, 4380, 325, 1, 0, 0, 0, 4381, 4382, 5, 799, 0, 0, 4382, 4389, 5, 134, 0, 0, 4383, 4384, 5, 134, 0, 0, 4384, 4389, 5, 800, 0, 0, 4385, 4386, 5, 134, 0, 0, 4386, 4389, 5, 801, 0, 0, 4387, 4389, 5, 802, 0, 0, 4388, 4381, 1, 0, 0, 0, 4388, 4383, 1, 0, 0, 0, 4388, 4385, 1, 0, 0, 0, 4388, 4387, 1, 0, 0, 0, 4389, 327, 1, 0, 0, 0, 4390, 4391, 5, 24, 0, 0, 4391, 4392, 5, 477, 0, 0, 4392, 4393, 5, 175, 0, 0, 4393, 4398, 3, 346, 173, 0, 4394, 4395, 5, 1135, 0, 0, 4395, 4397, 3, 346, 173, 0, 4396, 4394, 1, 0, 0, 0, 4397, 4400, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 4402, 1, 0, 0, 0, 4400, 4398, 1, 0, 0, 0, 4401, 4403, 3, 354, 177, 0, 4402, 4401, 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 329, 1, 0, 0, 0, 4404, 4405, 5, 24, 0, 0, 4405, 4406, 5, 588, 0, 0, 4406, 4407, 5, 429, 0, 0, 4407, 4412, 3, 356, 178, 0, 4408, 4409, 5, 1135, 0, 0, 4409, 4411, 3, 356, 178, 0, 4410, 4408, 1, 0, 0, 0, 4411, 4414, 1, 0, 0, 0, 4412, 4410, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 331, 1, 0, 0, 0, 4414, 4412, 1, 0, 0, 0, 4415, 4416, 5, 132, 0, 0, 4416, 4417, 7, 56, 0, 0, 4417, 4422, 5, 476, 0, 0, 4418, 4419, 5, 175, 0, 0, 4419, 4423, 5, 1148, 0, 0, 4420, 4421, 5, 15, 0, 0, 4421, 4423, 5, 1148, 0, 0, 4422, 4418, 1, 0, 0, 0, 4422, 4420, 1, 0, 0, 0, 4423, 333, 1, 0, 0, 0, 4424, 4425, 5, 589, 0, 0, 4425, 4426, 5, 477, 0, 0, 4426, 335, 1, 0, 0, 0, 4427, 4428, 5, 589, 0, 0, 4428, 4430, 5, 614, 0, 0, 4429, 4431, 5, 6, 0, 0, 4430, 4429, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 4433, 1, 0, 0, 0, 4432, 4434, 3, 354, 177, 0, 4433, 4432, 1, 0, 0, 0, 4433, 4434, 1, 0, 0, 0, 4434, 337, 1, 0, 0, 0, 4435, 4436, 5, 629, 0, 0, 4436, 4445, 5, 614, 0, 0, 4437, 4442, 3, 360, 180, 0, 4438, 4439, 5, 1135, 0, 0, 4439, 4441, 3, 360, 180, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4444, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 4446, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4445, 4437, 1, 0, 0, 0, 4445, 4446, 1, 0, 0, 0, 4446, 4449, 1, 0, 0, 0, 4447, 4448, 5, 663, 0, 0, 4448, 4450, 3, 362, 181, 0, 4449, 4447, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4454, 1, 0, 0, 0, 4451, 4453, 3, 364, 182, 0, 4452, 4451, 1, 0, 0, 0, 4453, 4456, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4458, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4457, 4459, 3, 354, 177, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 339, 1, 0, 0, 0, 4460, 4461, 5, 635, 0, 0, 4461, 4470, 5, 614, 0, 0, 4462, 4467, 3, 360, 180, 0, 4463, 4464, 5, 1135, 0, 0, 4464, 4466, 3, 360, 180, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 4471, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4462, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 341, 1, 0, 0, 0, 4472, 4473, 5, 629, 0, 0, 4473, 4474, 5, 441, 0, 0, 4474, 343, 1, 0, 0, 0, 4475, 4476, 5, 635, 0, 0, 4476, 4477, 5, 441, 0, 0, 4477, 345, 1, 0, 0, 0, 4478, 4479, 3, 348, 174, 0, 4479, 4480, 5, 1124, 0, 0, 4480, 4481, 5, 1148, 0, 0, 4481, 4508, 1, 0, 0, 0, 4482, 4483, 3, 350, 175, 0, 4483, 4484, 5, 1124, 0, 0, 4484, 4485, 3, 590, 295, 0, 4485, 4508, 1, 0, 0, 0, 4486, 4487, 3, 352, 176, 0, 4487, 4488, 5, 1124, 0, 0, 4488, 4489, 7, 24, 0, 0, 4489, 4508, 1, 0, 0, 0, 4490, 4491, 5, 481, 0, 0, 4491, 4492, 5, 1124, 0, 0, 4492, 4508, 5, 1151, 0, 0, 4493, 4494, 5, 449, 0, 0, 4494, 4495, 5, 1124, 0, 0, 4495, 4504, 5, 1133, 0, 0, 4496, 4501, 3, 584, 292, 0, 4497, 4498, 5, 1135, 0, 0, 4498, 4500, 3, 584, 292, 0, 4499, 4497, 1, 0, 0, 0, 4500, 4503, 1, 0, 0, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4505, 1, 0, 0, 0, 4503, 4501, 1, 0, 0, 0, 4504, 4496, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 4508, 5, 1134, 0, 0, 4507, 4478, 1, 0, 0, 0, 4507, 4482, 1, 0, 0, 0, 4507, 4486, 1, 0, 0, 0, 4507, 4490, 1, 0, 0, 0, 4507, 4493, 1, 0, 0, 0, 4508, 347, 1, 0, 0, 0, 4509, 4510, 7, 57, 0, 0, 4510, 349, 1, 0, 0, 0, 4511, 4512, 7, 58, 0, 0, 4512, 351, 1, 0, 0, 0, 4513, 4514, 7, 59, 0, 0, 4514, 353, 1, 0, 0, 0, 4515, 4516, 5, 65, 0, 0, 4516, 4517, 5, 355, 0, 0, 4517, 4518, 5, 1148, 0, 0, 4518, 355, 1, 0, 0, 0, 4519, 4520, 5, 581, 0, 0, 4520, 4521, 5, 1124, 0, 0, 4521, 4522, 5, 1133, 0, 0, 4522, 4523, 3, 616, 308, 0, 4523, 4524, 5, 1134, 0, 0, 4524, 4569, 1, 0, 0, 0, 4525, 4526, 5, 583, 0, 0, 4526, 4527, 5, 1124, 0, 0, 4527, 4528, 5, 1133, 0, 0, 4528, 4529, 3, 616, 308, 0, 4529, 4530, 5, 1134, 0, 0, 4530, 4569, 1, 0, 0, 0, 4531, 4532, 5, 582, 0, 0, 4532, 4533, 5, 1124, 0, 0, 4533, 4534, 5, 1133, 0, 0, 4534, 4535, 3, 620, 310, 0, 4535, 4536, 5, 1134, 0, 0, 4536, 4569, 1, 0, 0, 0, 4537, 4538, 5, 584, 0, 0, 4538, 4539, 5, 1124, 0, 0, 4539, 4540, 5, 1133, 0, 0, 4540, 4541, 3, 620, 310, 0, 4541, 4542, 5, 1134, 0, 0, 4542, 4569, 1, 0, 0, 0, 4543, 4544, 5, 586, 0, 0, 4544, 4545, 5, 1124, 0, 0, 4545, 4546, 5, 1133, 0, 0, 4546, 4547, 3, 630, 315, 0, 4547, 4548, 5, 1134, 0, 0, 4548, 4569, 1, 0, 0, 0, 4549, 4550, 5, 587, 0, 0, 4550, 4551, 5, 1124, 0, 0, 4551, 4552, 5, 1133, 0, 0, 4552, 4553, 3, 630, 315, 0, 4553, 4554, 5, 1134, 0, 0, 4554, 4569, 1, 0, 0, 0, 4555, 4556, 5, 585, 0, 0, 4556, 4557, 5, 1124, 0, 0, 4557, 4558, 5, 1133, 0, 0, 4558, 4563, 3, 358, 179, 0, 4559, 4560, 5, 1135, 0, 0, 4560, 4562, 3, 358, 179, 0, 4561, 4559, 1, 0, 0, 0, 4562, 4565, 1, 0, 0, 0, 4563, 4561, 1, 0, 0, 0, 4563, 4564, 1, 0, 0, 0, 4564, 4566, 1, 0, 0, 0, 4565, 4563, 1, 0, 0, 0, 4566, 4567, 5, 1134, 0, 0, 4567, 4569, 1, 0, 0, 0, 4568, 4519, 1, 0, 0, 0, 4568, 4525, 1, 0, 0, 0, 4568, 4531, 1, 0, 0, 0, 4568, 4537, 1, 0, 0, 0, 4568, 4543, 1, 0, 0, 0, 4568, 4549, 1, 0, 0, 0, 4568, 4555, 1, 0, 0, 0, 4569, 357, 1, 0, 0, 0, 4570, 4571, 5, 1133, 0, 0, 4571, 4572, 3, 550, 275, 0, 4572, 4573, 5, 1135, 0, 0, 4573, 4574, 3, 550, 275, 0, 4574, 4575, 5, 1134, 0, 0, 4575, 359, 1, 0, 0, 0, 4576, 4577, 7, 60, 0, 0, 4577, 361, 1, 0, 0, 0, 4578, 4579, 7, 61, 0, 0, 4579, 4580, 5, 1124, 0, 0, 4580, 4597, 3, 366, 183, 0, 4581, 4582, 5, 483, 0, 0, 4582, 4583, 5, 1124, 0, 0, 4583, 4584, 5, 1148, 0, 0, 4584, 4585, 5, 1135, 0, 0, 4585, 4586, 5, 484, 0, 0, 4586, 4587, 5, 1124, 0, 0, 4587, 4597, 3, 590, 295, 0, 4588, 4589, 5, 575, 0, 0, 4589, 4590, 5, 1124, 0, 0, 4590, 4591, 5, 1148, 0, 0, 4591, 4592, 5, 1135, 0, 0, 4592, 4593, 5, 576, 0, 0, 4593, 4594, 5, 1124, 0, 0, 4594, 4597, 3, 590, 295, 0, 4595, 4597, 5, 623, 0, 0, 4596, 4578, 1, 0, 0, 0, 4596, 4581, 1, 0, 0, 0, 4596, 4588, 1, 0, 0, 0, 4596, 4595, 1, 0, 0, 0, 4597, 363, 1, 0, 0, 0, 4598, 4599, 5, 665, 0, 0, 4599, 4600, 5, 1124, 0, 0, 4600, 4611, 5, 1148, 0, 0, 4601, 4602, 5, 551, 0, 0, 4602, 4603, 5, 1124, 0, 0, 4603, 4611, 5, 1148, 0, 0, 4604, 4605, 5, 391, 0, 0, 4605, 4606, 5, 1124, 0, 0, 4606, 4611, 5, 1148, 0, 0, 4607, 4608, 5, 555, 0, 0, 4608, 4609, 5, 1124, 0, 0, 4609, 4611, 5, 1148, 0, 0, 4610, 4598, 1, 0, 0, 0, 4610, 4601, 1, 0, 0, 0, 4610, 4604, 1, 0, 0, 0, 4610, 4607, 1, 0, 0, 0, 4611, 365, 1, 0, 0, 0, 4612, 4617, 3, 576, 288, 0, 4613, 4614, 5, 1135, 0, 0, 4614, 4616, 3, 576, 288, 0, 4615, 4613, 1, 0, 0, 0, 4616, 4619, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4622, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4622, 5, 1148, 0, 0, 4621, 4612, 1, 0, 0, 0, 4621, 4620, 1, 0, 0, 0, 4622, 367, 1, 0, 0, 0, 4623, 4624, 5, 681, 0, 0, 4624, 4625, 7, 62, 0, 0, 4625, 4627, 3, 578, 289, 0, 4626, 4628, 7, 63, 0, 0, 4627, 4626, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 369, 1, 0, 0, 0, 4629, 4630, 5, 681, 0, 0, 4630, 4631, 5, 407, 0, 0, 4631, 4637, 3, 578, 289, 0, 4632, 4635, 5, 643, 0, 0, 4633, 4634, 5, 65, 0, 0, 4634, 4636, 5, 509, 0, 0, 4635, 4633, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4638, 1, 0, 0, 0, 4637, 4632, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 371, 1, 0, 0, 0, 4639, 4640, 5, 681, 0, 0, 4640, 4641, 5, 560, 0, 0, 4641, 4642, 3, 578, 289, 0, 4642, 373, 1, 0, 0, 0, 4643, 4644, 5, 681, 0, 0, 4644, 4645, 5, 369, 0, 0, 4645, 4648, 3, 578, 289, 0, 4646, 4647, 5, 536, 0, 0, 4647, 4649, 5, 553, 0, 0, 4648, 4646, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 375, 1, 0, 0, 0, 4650, 4651, 5, 681, 0, 0, 4651, 4652, 5, 597, 0, 0, 4652, 4653, 3, 578, 289, 0, 4653, 377, 1, 0, 0, 0, 4654, 4655, 5, 681, 0, 0, 4655, 4658, 5, 570, 0, 0, 4656, 4657, 5, 32, 0, 0, 4657, 4659, 3, 578, 289, 0, 4658, 4656, 1, 0, 0, 0, 4658, 4659, 1, 0, 0, 0, 4659, 379, 1, 0, 0, 0, 4660, 4661, 5, 560, 0, 0, 4661, 4662, 3, 584, 292, 0, 4662, 4665, 5, 68, 0, 0, 4663, 4666, 5, 1148, 0, 0, 4664, 4666, 5, 1159, 0, 0, 4665, 4663, 1, 0, 0, 0, 4665, 4664, 1, 0, 0, 0, 4666, 381, 1, 0, 0, 0, 4667, 4668, 5, 708, 0, 0, 4668, 4671, 3, 584, 292, 0, 4669, 4670, 5, 187, 0, 0, 4670, 4672, 3, 632, 316, 0, 4671, 4669, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 383, 1, 0, 0, 0, 4673, 4674, 7, 64, 0, 0, 4674, 4675, 5, 560, 0, 0, 4675, 4676, 3, 584, 292, 0, 4676, 385, 1, 0, 0, 0, 4677, 4680, 3, 388, 194, 0, 4678, 4680, 3, 4, 2, 0, 4679, 4677, 1, 0, 0, 0, 4679, 4678, 1, 0, 0, 0, 4680, 387, 1, 0, 0, 0, 4681, 4682, 3, 584, 292, 0, 4682, 4683, 5, 1144, 0, 0, 4683, 4685, 1, 0, 0, 0, 4684, 4681, 1, 0, 0, 0, 4684, 4685, 1, 0, 0, 0, 4685, 4686, 1, 0, 0, 0, 4686, 4692, 5, 344, 0, 0, 4687, 4688, 3, 408, 204, 0, 4688, 4689, 5, 1136, 0, 0, 4689, 4691, 1, 0, 0, 0, 4690, 4687, 1, 0, 0, 0, 4691, 4694, 1, 0, 0, 0, 4692, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4700, 1, 0, 0, 0, 4694, 4692, 1, 0, 0, 0, 4695, 4696, 3, 410, 205, 0, 4696, 4697, 5, 1136, 0, 0, 4697, 4699, 1, 0, 0, 0, 4698, 4695, 1, 0, 0, 0, 4699, 4702, 1, 0, 0, 0, 4700, 4698, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4708, 1, 0, 0, 0, 4702, 4700, 1, 0, 0, 0, 4703, 4704, 3, 412, 206, 0, 4704, 4705, 5, 1136, 0, 0, 4705, 4707, 1, 0, 0, 0, 4706, 4703, 1, 0, 0, 0, 4707, 4710, 1, 0, 0, 0, 4708, 4706, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4716, 1, 0, 0, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4712, 3, 414, 207, 0, 4712, 4713, 5, 1136, 0, 0, 4713, 4715, 1, 0, 0, 0, 4714, 4711, 1, 0, 0, 0, 4715, 4718, 1, 0, 0, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4722, 1, 0, 0, 0, 4718, 4716, 1, 0, 0, 0, 4719, 4721, 3, 418, 209, 0, 4720, 4719, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4725, 1, 0, 0, 0, 4724, 4722, 1, 0, 0, 0, 4725, 4727, 5, 407, 0, 0, 4726, 4728, 3, 584, 292, 0, 4727, 4726, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 389, 1, 0, 0, 0, 4729, 4732, 5, 22, 0, 0, 4730, 4733, 3, 584, 292, 0, 4731, 4733, 3, 688, 344, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4731, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4735, 1, 0, 0, 0, 4734, 4736, 3, 420, 210, 0, 4735, 4734, 1, 0, 0, 0, 4736, 4737, 1, 0, 0, 0, 4737, 4735, 1, 0, 0, 0, 4737, 4738, 1, 0, 0, 0, 4738, 4745, 1, 0, 0, 0, 4739, 4741, 5, 53, 0, 0, 4740, 4742, 3, 418, 209, 0, 4741, 4740, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4741, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4746, 1, 0, 0, 0, 4745, 4739, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4748, 5, 407, 0, 0, 4748, 4749, 5, 22, 0, 0, 4749, 391, 1, 0, 0, 0, 4750, 4751, 5, 77, 0, 0, 4751, 4752, 3, 688, 344, 0, 4752, 4754, 5, 174, 0, 0, 4753, 4755, 3, 418, 209, 0, 4754, 4753, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4754, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4761, 1, 0, 0, 0, 4758, 4760, 3, 422, 211, 0, 4759, 4758, 1, 0, 0, 0, 4760, 4763, 1, 0, 0, 0, 4761, 4759, 1, 0, 0, 0, 4761, 4762, 1, 0, 0, 0, 4762, 4770, 1, 0, 0, 0, 4763, 4761, 1, 0, 0, 0, 4764, 4766, 5, 53, 0, 0, 4765, 4767, 3, 418, 209, 0, 4766, 4765, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4766, 1, 0, 0, 0, 4768, 4769, 1, 0, 0, 0, 4769, 4771, 1, 0, 0, 0, 4770, 4764, 1, 0, 0, 0, 4770, 4771, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4773, 5, 407, 0, 0, 4773, 4774, 5, 77, 0, 0, 4774, 393, 1, 0, 0, 0, 4775, 4776, 5, 89, 0, 0, 4776, 4777, 3, 584, 292, 0, 4777, 395, 1, 0, 0, 0, 4778, 4779, 5, 96, 0, 0, 4779, 4780, 3, 584, 292, 0, 4780, 397, 1, 0, 0, 0, 4781, 4782, 3, 584, 292, 0, 4782, 4783, 5, 1144, 0, 0, 4783, 4785, 1, 0, 0, 0, 4784, 4781, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4788, 5, 105, 0, 0, 4787, 4789, 3, 418, 209, 0, 4788, 4787, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4788, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4792, 1, 0, 0, 0, 4792, 4793, 5, 407, 0, 0, 4793, 4795, 5, 105, 0, 0, 4794, 4796, 3, 584, 292, 0, 4795, 4794, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 399, 1, 0, 0, 0, 4797, 4798, 3, 584, 292, 0, 4798, 4799, 5, 1144, 0, 0, 4799, 4801, 1, 0, 0, 0, 4800, 4797, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4802, 1, 0, 0, 0, 4802, 4804, 5, 140, 0, 0, 4803, 4805, 3, 418, 209, 0, 4804, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4804, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4809, 5, 663, 0, 0, 4809, 4810, 3, 688, 344, 0, 4810, 4811, 5, 407, 0, 0, 4811, 4813, 5, 140, 0, 0, 4812, 4814, 3, 584, 292, 0, 4813, 4812, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 401, 1, 0, 0, 0, 4815, 4816, 5, 146, 0, 0, 4816, 4817, 3, 688, 344, 0, 4817, 403, 1, 0, 0, 0, 4818, 4819, 3, 584, 292, 0, 4819, 4820, 5, 1144, 0, 0, 4820, 4822, 1, 0, 0, 0, 4821, 4818, 1, 0, 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4823, 1, 0, 0, 0, 4823, 4824, 5, 191, 0, 0, 4824, 4825, 3, 688, 344, 0, 4825, 4827, 5, 399, 0, 0, 4826, 4828, 3, 418, 209, 0, 4827, 4826, 1, 0, 0, 0, 4828, 4829, 1, 0, 0, 0, 4829, 4827, 1, 0, 0, 0, 4829, 4830, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4832, 5, 407, 0, 0, 4832, 4834, 5, 191, 0, 0, 4833, 4835, 3, 584, 292, 0, 4834, 4833, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 405, 1, 0, 0, 0, 4836, 4837, 5, 361, 0, 0, 4837, 4852, 3, 584, 292, 0, 4838, 4843, 5, 64, 0, 0, 4839, 4841, 5, 520, 0, 0, 4840, 4839, 1, 0, 0, 0, 4840, 4841, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4844, 5, 68, 0, 0, 4843, 4840, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 4845, 1, 0, 0, 0, 4845, 4846, 3, 584, 292, 0, 4846, 4847, 5, 87, 0, 0, 4847, 4848, 3, 616, 308, 0, 4848, 4852, 1, 0, 0, 0, 4849, 4850, 5, 539, 0, 0, 4850, 4852, 3, 584, 292, 0, 4851, 4836, 1, 0, 0, 0, 4851, 4838, 1, 0, 0, 0, 4851, 4849, 1, 0, 0, 0, 4852, 407, 1, 0, 0, 0, 4853, 4854, 5, 41, 0, 0, 4854, 4855, 3, 616, 308, 0, 4855, 4858, 3, 604, 302, 0, 4856, 4857, 5, 42, 0, 0, 4857, 4859, 3, 688, 344, 0, 4858, 4856, 1, 0, 0, 0, 4858, 4859, 1, 0, 0, 0, 4859, 409, 1, 0, 0, 0, 4860, 4861, 5, 41, 0, 0, 4861, 4862, 3, 584, 292, 0, 4862, 4863, 5, 29, 0, 0, 4863, 4870, 5, 65, 0, 0, 4864, 4871, 3, 590, 295, 0, 4865, 4867, 5, 162, 0, 0, 4866, 4868, 5, 669, 0, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4871, 5, 1148, 0, 0, 4870, 4864, 1, 0, 0, 0, 4870, 4865, 1, 0, 0, 0, 4871, 411, 1, 0, 0, 0, 4872, 4873, 5, 41, 0, 0, 4873, 4874, 3, 584, 292, 0, 4874, 4875, 5, 38, 0, 0, 4875, 4876, 5, 65, 0, 0, 4876, 4877, 3, 198, 99, 0, 4877, 413, 1, 0, 0, 0, 4878, 4879, 5, 41, 0, 0, 4879, 4880, 7, 65, 0, 0, 4880, 4881, 5, 442, 0, 0, 4881, 4882, 5, 65, 0, 0, 4882, 4887, 3, 416, 208, 0, 4883, 4884, 5, 1135, 0, 0, 4884, 4886, 3, 416, 208, 0, 4885, 4883, 1, 0, 0, 0, 4886, 4889, 1, 0, 0, 0, 4887, 4885, 1, 0, 0, 0, 4887, 4888, 1, 0, 0, 0, 4888, 4890, 1, 0, 0, 0, 4889, 4887, 1, 0, 0, 0, 4890, 4891, 3, 386, 193, 0, 4891, 415, 1, 0, 0, 0, 4892, 4904, 3, 590, 295, 0, 4893, 4895, 5, 162, 0, 0, 4894, 4896, 5, 669, 0, 0, 4895, 4894, 1, 0, 0, 0, 4895, 4896, 1, 0, 0, 0, 4896, 4897, 1, 0, 0, 0, 4897, 4904, 5, 1148, 0, 0, 4898, 4904, 3, 584, 292, 0, 4899, 4904, 5, 163, 0, 0, 4900, 4901, 5, 114, 0, 0, 4901, 4904, 5, 435, 0, 0, 4902, 4904, 5, 161, 0, 0, 4903, 4892, 1, 0, 0, 0, 4903, 4893, 1, 0, 0, 0, 4903, 4898, 1, 0, 0, 0, 4903, 4899, 1, 0, 0, 0, 4903, 4900, 1, 0, 0, 0, 4903, 4902, 1, 0, 0, 0, 4904, 417, 1, 0, 0, 0, 4905, 4908, 3, 16, 8, 0, 4906, 4908, 3, 4, 2, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4906, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 4910, 5, 1136, 0, 0, 4910, 419, 1, 0, 0, 0, 4911, 4914, 5, 189, 0, 0, 4912, 4915, 3, 602, 301, 0, 4913, 4915, 3, 688, 344, 0, 4914, 4912, 1, 0, 0, 0, 4914, 4913, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 174, 0, 0, 4917, 4919, 3, 418, 209, 0, 4918, 4917, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4918, 1, 0, 0, 0, 4920, 4921, 1, 0, 0, 0, 4921, 421, 1, 0, 0, 0, 4922, 4923, 5, 54, 0, 0, 4923, 4924, 3, 688, 344, 0, 4924, 4926, 5, 174, 0, 0, 4925, 4927, 3, 418, 209, 0, 4926, 4925, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4926, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 423, 1, 0, 0, 0, 4930, 4931, 5, 7, 0, 0, 4931, 4932, 5, 665, 0, 0, 4932, 4937, 3, 444, 222, 0, 4933, 4934, 5, 1135, 0, 0, 4934, 4936, 3, 444, 222, 0, 4935, 4933, 1, 0, 0, 0, 4936, 4939, 1, 0, 0, 0, 4937, 4935, 1, 0, 0, 0, 4937, 4938, 1, 0, 0, 0, 4938, 5004, 1, 0, 0, 0, 4939, 4937, 1, 0, 0, 0, 4940, 4941, 5, 7, 0, 0, 4941, 4943, 5, 665, 0, 0, 4942, 4944, 3, 640, 320, 0, 4943, 4942, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4950, 3, 446, 223, 0, 4946, 4947, 5, 1135, 0, 0, 4947, 4949, 3, 446, 223, 0, 4948, 4946, 1, 0, 0, 0, 4949, 4952, 1, 0, 0, 0, 4950, 4948, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4967, 1, 0, 0, 0, 4952, 4950, 1, 0, 0, 0, 4953, 4965, 5, 142, 0, 0, 4954, 4966, 5, 529, 0, 0, 4955, 4962, 3, 452, 226, 0, 4956, 4958, 5, 10, 0, 0, 4957, 4956, 1, 0, 0, 0, 4957, 4958, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4961, 3, 452, 226, 0, 4960, 4957, 1, 0, 0, 0, 4961, 4964, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4966, 1, 0, 0, 0, 4964, 4962, 1, 0, 0, 0, 4965, 4954, 1, 0, 0, 0, 4965, 4955, 1, 0, 0, 0, 4966, 4968, 1, 0, 0, 0, 4967, 4953, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4975, 1, 0, 0, 0, 4969, 4971, 5, 192, 0, 0, 4970, 4972, 3, 454, 227, 0, 4971, 4970, 1, 0, 0, 0, 4972, 4973, 1, 0, 0, 0, 4973, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4976, 1, 0, 0, 0, 4975, 4969, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 4981, 1, 0, 0, 0, 4977, 4980, 3, 456, 228, 0, 4978, 4980, 3, 458, 229, 0, 4979, 4977, 1, 0, 0, 0, 4979, 4978, 1, 0, 0, 0, 4980, 4983, 1, 0, 0, 0, 4981, 4979, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 4988, 1, 0, 0, 0, 4983, 4981, 1, 0, 0, 0, 4984, 4985, 5, 368, 0, 0, 4985, 4989, 5, 1148, 0, 0, 4986, 4987, 5, 14, 0, 0, 4987, 4989, 5, 1148, 0, 0, 4988, 4984, 1, 0, 0, 0, 4988, 4986, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 5004, 1, 0, 0, 0, 4990, 4991, 5, 7, 0, 0, 4991, 4993, 5, 665, 0, 0, 4992, 4994, 3, 640, 320, 0, 4993, 4992, 1, 0, 0, 0, 4993, 4994, 1, 0, 0, 0, 4994, 4997, 1, 0, 0, 0, 4995, 4998, 3, 564, 282, 0, 4996, 4998, 3, 584, 292, 0, 4997, 4995, 1, 0, 0, 0, 4997, 4996, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5000, 5, 42, 0, 0, 5000, 5001, 5, 596, 0, 0, 5001, 5002, 3, 432, 216, 0, 5002, 5004, 1, 0, 0, 0, 5003, 4930, 1, 0, 0, 0, 5003, 4940, 1, 0, 0, 0, 5003, 4990, 1, 0, 0, 0, 5004, 425, 1, 0, 0, 0, 5005, 5006, 5, 33, 0, 0, 5006, 5007, 5, 665, 0, 0, 5007, 5012, 3, 446, 223, 0, 5008, 5009, 5, 1135, 0, 0, 5009, 5011, 3, 446, 223, 0, 5010, 5008, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5071, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5016, 5, 33, 0, 0, 5016, 5018, 5, 665, 0, 0, 5017, 5019, 3, 642, 321, 0, 5018, 5017, 1, 0, 0, 0, 5018, 5019, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5025, 3, 446, 223, 0, 5021, 5022, 5, 1135, 0, 0, 5022, 5024, 3, 446, 223, 0, 5023, 5021, 1, 0, 0, 0, 5024, 5027, 1, 0, 0, 0, 5025, 5023, 1, 0, 0, 0, 5025, 5026, 1, 0, 0, 0, 5026, 5031, 1, 0, 0, 0, 5027, 5025, 1, 0, 0, 0, 5028, 5029, 5, 42, 0, 0, 5029, 5030, 5, 596, 0, 0, 5030, 5032, 3, 432, 216, 0, 5031, 5028, 1, 0, 0, 0, 5031, 5032, 1, 0, 0, 0, 5032, 5047, 1, 0, 0, 0, 5033, 5045, 5, 142, 0, 0, 5034, 5046, 5, 529, 0, 0, 5035, 5042, 3, 452, 226, 0, 5036, 5038, 5, 10, 0, 0, 5037, 5036, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5041, 3, 452, 226, 0, 5040, 5037, 1, 0, 0, 0, 5041, 5044, 1, 0, 0, 0, 5042, 5040, 1, 0, 0, 0, 5042, 5043, 1, 0, 0, 0, 5043, 5046, 1, 0, 0, 0, 5044, 5042, 1, 0, 0, 0, 5045, 5034, 1, 0, 0, 0, 5045, 5035, 1, 0, 0, 0, 5046, 5048, 1, 0, 0, 0, 5047, 5033, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5055, 1, 0, 0, 0, 5049, 5051, 5, 192, 0, 0, 5050, 5052, 3, 454, 227, 0, 5051, 5050, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5051, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5056, 1, 0, 0, 0, 5055, 5049, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 5061, 1, 0, 0, 0, 5057, 5060, 3, 456, 228, 0, 5058, 5060, 3, 458, 229, 0, 5059, 5057, 1, 0, 0, 0, 5059, 5058, 1, 0, 0, 0, 5060, 5063, 1, 0, 0, 0, 5061, 5059, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5068, 1, 0, 0, 0, 5063, 5061, 1, 0, 0, 0, 5064, 5065, 5, 368, 0, 0, 5065, 5069, 5, 1148, 0, 0, 5066, 5067, 5, 14, 0, 0, 5067, 5069, 5, 1148, 0, 0, 5068, 5064, 1, 0, 0, 0, 5068, 5066, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5071, 1, 0, 0, 0, 5070, 5005, 1, 0, 0, 0, 5070, 5015, 1, 0, 0, 0, 5071, 427, 1, 0, 0, 0, 5072, 5073, 5, 51, 0, 0, 5073, 5075, 5, 665, 0, 0, 5074, 5076, 3, 640, 320, 0, 5075, 5074, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5082, 3, 564, 282, 0, 5078, 5079, 5, 1135, 0, 0, 5079, 5081, 3, 564, 282, 0, 5080, 5078, 1, 0, 0, 0, 5081, 5084, 1, 0, 0, 0, 5082, 5080, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 429, 1, 0, 0, 0, 5084, 5082, 1, 0, 0, 0, 5085, 5086, 5, 72, 0, 0, 5086, 5091, 3, 460, 230, 0, 5087, 5088, 5, 1135, 0, 0, 5088, 5090, 3, 460, 230, 0, 5089, 5087, 1, 0, 0, 0, 5090, 5093, 1, 0, 0, 0, 5091, 5089, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 1, 0, 0, 0, 5093, 5091, 1, 0, 0, 0, 5094, 5096, 5, 118, 0, 0, 5095, 5097, 7, 66, 0, 0, 5096, 5095, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 3, 464, 232, 0, 5099, 5100, 5, 175, 0, 0, 5100, 5105, 3, 446, 223, 0, 5101, 5102, 5, 1135, 0, 0, 5102, 5104, 3, 446, 223, 0, 5103, 5101, 1, 0, 0, 0, 5104, 5107, 1, 0, 0, 0, 5105, 5103, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5122, 1, 0, 0, 0, 5107, 5105, 1, 0, 0, 0, 5108, 5120, 5, 142, 0, 0, 5109, 5121, 5, 529, 0, 0, 5110, 5117, 3, 452, 226, 0, 5111, 5113, 5, 10, 0, 0, 5112, 5111, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5114, 1, 0, 0, 0, 5114, 5116, 3, 452, 226, 0, 5115, 5112, 1, 0, 0, 0, 5116, 5119, 1, 0, 0, 0, 5117, 5115, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 5121, 1, 0, 0, 0, 5119, 5117, 1, 0, 0, 0, 5120, 5109, 1, 0, 0, 0, 5120, 5110, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5108, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 5133, 1, 0, 0, 0, 5124, 5130, 5, 192, 0, 0, 5125, 5126, 5, 72, 0, 0, 5126, 5129, 5, 120, 0, 0, 5127, 5129, 3, 454, 227, 0, 5128, 5125, 1, 0, 0, 0, 5128, 5127, 1, 0, 0, 0, 5129, 5132, 1, 0, 0, 0, 5130, 5128, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5134, 1, 0, 0, 0, 5132, 5130, 1, 0, 0, 0, 5133, 5124, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5141, 1, 0, 0, 0, 5135, 5136, 5, 12, 0, 0, 5136, 5137, 3, 564, 282, 0, 5137, 5138, 5, 192, 0, 0, 5138, 5139, 5, 596, 0, 0, 5139, 5140, 3, 432, 216, 0, 5140, 5142, 1, 0, 0, 0, 5141, 5135, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5179, 1, 0, 0, 0, 5143, 5146, 5, 72, 0, 0, 5144, 5147, 3, 564, 282, 0, 5145, 5147, 3, 584, 292, 0, 5146, 5144, 1, 0, 0, 0, 5146, 5145, 1, 0, 0, 0, 5147, 5155, 1, 0, 0, 0, 5148, 5151, 5, 1135, 0, 0, 5149, 5152, 3, 564, 282, 0, 5150, 5152, 3, 584, 292, 0, 5151, 5149, 1, 0, 0, 0, 5151, 5150, 1, 0, 0, 0, 5152, 5154, 1, 0, 0, 0, 5153, 5148, 1, 0, 0, 0, 5154, 5157, 1, 0, 0, 0, 5155, 5153, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5158, 1, 0, 0, 0, 5157, 5155, 1, 0, 0, 0, 5158, 5161, 5, 175, 0, 0, 5159, 5162, 3, 564, 282, 0, 5160, 5162, 3, 584, 292, 0, 5161, 5159, 1, 0, 0, 0, 5161, 5160, 1, 0, 0, 0, 5162, 5170, 1, 0, 0, 0, 5163, 5166, 5, 1135, 0, 0, 5164, 5167, 3, 564, 282, 0, 5165, 5167, 3, 584, 292, 0, 5166, 5164, 1, 0, 0, 0, 5166, 5165, 1, 0, 0, 0, 5167, 5169, 1, 0, 0, 0, 5168, 5163, 1, 0, 0, 0, 5169, 5172, 1, 0, 0, 0, 5170, 5168, 1, 0, 0, 0, 5170, 5171, 1, 0, 0, 0, 5171, 5176, 1, 0, 0, 0, 5172, 5170, 1, 0, 0, 0, 5173, 5174, 5, 192, 0, 0, 5174, 5175, 5, 697, 0, 0, 5175, 5177, 5, 120, 0, 0, 5176, 5173, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5179, 1, 0, 0, 0, 5178, 5085, 1, 0, 0, 0, 5178, 5143, 1, 0, 0, 0, 5179, 431, 1, 0, 0, 0, 5180, 5203, 5, 42, 0, 0, 5181, 5203, 5, 529, 0, 0, 5182, 5192, 5, 6, 0, 0, 5183, 5184, 5, 59, 0, 0, 5184, 5189, 3, 564, 282, 0, 5185, 5186, 5, 1135, 0, 0, 5186, 5188, 3, 564, 282, 0, 5187, 5185, 1, 0, 0, 0, 5188, 5191, 1, 0, 0, 0, 5189, 5187, 1, 0, 0, 0, 5189, 5190, 1, 0, 0, 0, 5190, 5193, 1, 0, 0, 0, 5191, 5189, 1, 0, 0, 0, 5192, 5183, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5203, 1, 0, 0, 0, 5194, 5199, 3, 564, 282, 0, 5195, 5196, 5, 1135, 0, 0, 5196, 5198, 3, 564, 282, 0, 5197, 5195, 1, 0, 0, 0, 5198, 5201, 1, 0, 0, 0, 5199, 5197, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5203, 1, 0, 0, 0, 5201, 5199, 1, 0, 0, 0, 5202, 5180, 1, 0, 0, 0, 5202, 5181, 1, 0, 0, 0, 5202, 5182, 1, 0, 0, 0, 5202, 5194, 1, 0, 0, 0, 5203, 433, 1, 0, 0, 0, 5204, 5205, 5, 72, 0, 0, 5205, 5206, 5, 566, 0, 0, 5206, 5207, 5, 118, 0, 0, 5207, 5208, 3, 564, 282, 0, 5208, 5209, 5, 175, 0, 0, 5209, 5214, 3, 564, 282, 0, 5210, 5211, 5, 1135, 0, 0, 5211, 5213, 3, 564, 282, 0, 5212, 5210, 1, 0, 0, 0, 5213, 5216, 1, 0, 0, 0, 5214, 5212, 1, 0, 0, 0, 5214, 5215, 1, 0, 0, 0, 5215, 5220, 1, 0, 0, 0, 5216, 5214, 1, 0, 0, 0, 5217, 5218, 5, 192, 0, 0, 5218, 5219, 5, 72, 0, 0, 5219, 5221, 5, 120, 0, 0, 5220, 5217, 1, 0, 0, 0, 5220, 5221, 1, 0, 0, 0, 5221, 435, 1, 0, 0, 0, 5222, 5223, 5, 139, 0, 0, 5223, 5224, 5, 665, 0, 0, 5224, 5229, 3, 466, 233, 0, 5225, 5226, 5, 1135, 0, 0, 5226, 5228, 3, 466, 233, 0, 5227, 5225, 1, 0, 0, 0, 5228, 5231, 1, 0, 0, 0, 5229, 5227, 1, 0, 0, 0, 5229, 5230, 1, 0, 0, 0, 5230, 437, 1, 0, 0, 0, 5231, 5229, 1, 0, 0, 0, 5232, 5233, 5, 147, 0, 0, 5233, 5238, 3, 460, 230, 0, 5234, 5235, 5, 1135, 0, 0, 5235, 5237, 3, 460, 230, 0, 5236, 5234, 1, 0, 0, 0, 5237, 5240, 1, 0, 0, 0, 5238, 5236, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5241, 1, 0, 0, 0, 5240, 5238, 1, 0, 0, 0, 5241, 5243, 5, 118, 0, 0, 5242, 5244, 7, 66, 0, 0, 5243, 5242, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5246, 3, 464, 232, 0, 5246, 5247, 5, 68, 0, 0, 5247, 5252, 3, 564, 282, 0, 5248, 5249, 5, 1135, 0, 0, 5249, 5251, 3, 564, 282, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5303, 1, 0, 0, 0, 5254, 5252, 1, 0, 0, 0, 5255, 5256, 5, 147, 0, 0, 5256, 5258, 5, 6, 0, 0, 5257, 5259, 5, 725, 0, 0, 5258, 5257, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5261, 5, 1135, 0, 0, 5261, 5262, 5, 72, 0, 0, 5262, 5263, 5, 120, 0, 0, 5263, 5264, 5, 68, 0, 0, 5264, 5269, 3, 564, 282, 0, 5265, 5266, 5, 1135, 0, 0, 5266, 5268, 3, 564, 282, 0, 5267, 5265, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5303, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5275, 5, 147, 0, 0, 5273, 5276, 3, 564, 282, 0, 5274, 5276, 3, 584, 292, 0, 5275, 5273, 1, 0, 0, 0, 5275, 5274, 1, 0, 0, 0, 5276, 5284, 1, 0, 0, 0, 5277, 5280, 5, 1135, 0, 0, 5278, 5281, 3, 564, 282, 0, 5279, 5281, 3, 584, 292, 0, 5280, 5278, 1, 0, 0, 0, 5280, 5279, 1, 0, 0, 0, 5281, 5283, 1, 0, 0, 0, 5282, 5277, 1, 0, 0, 0, 5283, 5286, 1, 0, 0, 0, 5284, 5282, 1, 0, 0, 0, 5284, 5285, 1, 0, 0, 0, 5285, 5287, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5287, 5290, 5, 68, 0, 0, 5288, 5291, 3, 564, 282, 0, 5289, 5291, 3, 584, 292, 0, 5290, 5288, 1, 0, 0, 0, 5290, 5289, 1, 0, 0, 0, 5291, 5299, 1, 0, 0, 0, 5292, 5295, 5, 1135, 0, 0, 5293, 5296, 3, 564, 282, 0, 5294, 5296, 3, 584, 292, 0, 5295, 5293, 1, 0, 0, 0, 5295, 5294, 1, 0, 0, 0, 5296, 5298, 1, 0, 0, 0, 5297, 5292, 1, 0, 0, 0, 5298, 5301, 1, 0, 0, 0, 5299, 5297, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5303, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5232, 1, 0, 0, 0, 5302, 5255, 1, 0, 0, 0, 5302, 5272, 1, 0, 0, 0, 5303, 439, 1, 0, 0, 0, 5304, 5305, 5, 147, 0, 0, 5305, 5306, 5, 566, 0, 0, 5306, 5307, 5, 118, 0, 0, 5307, 5308, 3, 564, 282, 0, 5308, 5309, 5, 68, 0, 0, 5309, 5314, 3, 564, 282, 0, 5310, 5311, 5, 1135, 0, 0, 5311, 5313, 3, 564, 282, 0, 5312, 5310, 1, 0, 0, 0, 5313, 5316, 1, 0, 0, 0, 5314, 5312, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 441, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5317, 5318, 5, 153, 0, 0, 5318, 5321, 5, 551, 0, 0, 5319, 5320, 5, 65, 0, 0, 5320, 5322, 3, 564, 282, 0, 5321, 5319, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5326, 5, 1124, 0, 0, 5324, 5327, 3, 682, 341, 0, 5325, 5327, 5, 1148, 0, 0, 5326, 5324, 1, 0, 0, 0, 5326, 5325, 1, 0, 0, 0, 5327, 443, 1, 0, 0, 0, 5328, 5329, 3, 564, 282, 0, 5329, 5330, 3, 456, 228, 0, 5330, 445, 1, 0, 0, 0, 5331, 5332, 3, 564, 282, 0, 5332, 5333, 5, 448, 0, 0, 5333, 5334, 5, 19, 0, 0, 5334, 5335, 5, 551, 0, 0, 5335, 5336, 5, 1148, 0, 0, 5336, 5357, 1, 0, 0, 0, 5337, 5338, 3, 564, 282, 0, 5338, 5339, 5, 448, 0, 0, 5339, 5340, 5, 19, 0, 0, 5340, 5341, 5, 991, 0, 0, 5341, 5342, 5, 551, 0, 0, 5342, 5343, 3, 448, 224, 0, 5343, 5357, 1, 0, 0, 0, 5344, 5345, 3, 564, 282, 0, 5345, 5346, 5, 448, 0, 0, 5346, 5347, 5, 19, 0, 0, 5347, 5348, 5, 1148, 0, 0, 5348, 5349, 3, 448, 224, 0, 5349, 5357, 1, 0, 0, 0, 5350, 5351, 3, 564, 282, 0, 5351, 5352, 5, 448, 0, 0, 5352, 5353, 5, 192, 0, 0, 5353, 5354, 3, 450, 225, 0, 5354, 5357, 1, 0, 0, 0, 5355, 5357, 3, 564, 282, 0, 5356, 5331, 1, 0, 0, 0, 5356, 5337, 1, 0, 0, 0, 5356, 5344, 1, 0, 0, 0, 5356, 5350, 1, 0, 0, 0, 5356, 5355, 1, 0, 0, 0, 5357, 447, 1, 0, 0, 0, 5358, 5359, 5, 141, 0, 0, 5359, 5361, 5, 1148, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5365, 1, 0, 0, 0, 5362, 5363, 5, 145, 0, 0, 5363, 5364, 5, 35, 0, 0, 5364, 5366, 5, 551, 0, 0, 5365, 5362, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 449, 1, 0, 0, 0, 5367, 5375, 3, 582, 291, 0, 5368, 5372, 7, 67, 0, 0, 5369, 5373, 5, 1148, 0, 0, 5370, 5371, 5, 991, 0, 0, 5371, 5373, 5, 551, 0, 0, 5372, 5369, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5376, 3, 448, 224, 0, 5375, 5368, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5382, 1, 0, 0, 0, 5377, 5378, 3, 582, 291, 0, 5378, 5379, 5, 187, 0, 0, 5379, 5380, 3, 682, 341, 0, 5380, 5382, 1, 0, 0, 0, 5381, 5367, 1, 0, 0, 0, 5381, 5377, 1, 0, 0, 0, 5382, 451, 1, 0, 0, 0, 5383, 5392, 5, 167, 0, 0, 5384, 5392, 5, 680, 0, 0, 5385, 5386, 5, 358, 0, 0, 5386, 5392, 5, 1148, 0, 0, 5387, 5388, 5, 465, 0, 0, 5388, 5392, 5, 1148, 0, 0, 5389, 5390, 5, 640, 0, 0, 5390, 5392, 5, 1148, 0, 0, 5391, 5383, 1, 0, 0, 0, 5391, 5384, 1, 0, 0, 0, 5391, 5385, 1, 0, 0, 0, 5391, 5387, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5392, 453, 1, 0, 0, 0, 5393, 5394, 5, 499, 0, 0, 5394, 5402, 3, 590, 295, 0, 5395, 5396, 5, 502, 0, 0, 5396, 5402, 3, 590, 295, 0, 5397, 5398, 5, 498, 0, 0, 5398, 5402, 3, 590, 295, 0, 5399, 5400, 5, 503, 0, 0, 5400, 5402, 3, 590, 295, 0, 5401, 5393, 1, 0, 0, 0, 5401, 5395, 1, 0, 0, 0, 5401, 5397, 1, 0, 0, 0, 5401, 5399, 1, 0, 0, 0, 5402, 455, 1, 0, 0, 0, 5403, 5404, 5, 551, 0, 0, 5404, 5411, 5, 420, 0, 0, 5405, 5412, 5, 42, 0, 0, 5406, 5412, 5, 519, 0, 0, 5407, 5408, 5, 86, 0, 0, 5408, 5409, 3, 590, 295, 0, 5409, 5410, 5, 691, 0, 0, 5410, 5412, 1, 0, 0, 0, 5411, 5405, 1, 0, 0, 0, 5411, 5406, 1, 0, 0, 0, 5411, 5407, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5442, 1, 0, 0, 0, 5413, 5414, 5, 551, 0, 0, 5414, 5417, 5, 445, 0, 0, 5415, 5418, 5, 42, 0, 0, 5416, 5418, 3, 590, 295, 0, 5417, 5415, 1, 0, 0, 0, 5417, 5416, 1, 0, 0, 0, 5418, 5442, 1, 0, 0, 0, 5419, 5420, 5, 551, 0, 0, 5420, 5421, 5, 595, 0, 0, 5421, 5426, 5, 86, 0, 0, 5422, 5427, 5, 42, 0, 0, 5423, 5424, 3, 590, 295, 0, 5424, 5425, 5, 691, 0, 0, 5425, 5427, 1, 0, 0, 0, 5426, 5422, 1, 0, 0, 0, 5426, 5423, 1, 0, 0, 0, 5427, 5442, 1, 0, 0, 0, 5428, 5429, 5, 551, 0, 0, 5429, 5430, 5, 142, 0, 0, 5430, 5432, 5, 35, 0, 0, 5431, 5433, 7, 68, 0, 0, 5432, 5431, 1, 0, 0, 0, 5432, 5433, 1, 0, 0, 0, 5433, 5442, 1, 0, 0, 0, 5434, 5435, 5, 424, 0, 0, 5435, 5442, 3, 590, 295, 0, 5436, 5439, 5, 552, 0, 0, 5437, 5440, 3, 590, 295, 0, 5438, 5440, 5, 657, 0, 0, 5439, 5437, 1, 0, 0, 0, 5439, 5438, 1, 0, 0, 0, 5440, 5442, 1, 0, 0, 0, 5441, 5403, 1, 0, 0, 0, 5441, 5413, 1, 0, 0, 0, 5441, 5419, 1, 0, 0, 0, 5441, 5428, 1, 0, 0, 0, 5441, 5434, 1, 0, 0, 0, 5441, 5436, 1, 0, 0, 0, 5442, 457, 1, 0, 0, 0, 5443, 5444, 5, 332, 0, 0, 5444, 5445, 7, 69, 0, 0, 5445, 459, 1, 0, 0, 0, 5446, 5451, 3, 462, 231, 0, 5447, 5448, 5, 1133, 0, 0, 5448, 5449, 3, 616, 308, 0, 5449, 5450, 5, 1134, 0, 0, 5450, 5452, 1, 0, 0, 0, 5451, 5447, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 461, 1, 0, 0, 0, 5453, 5455, 5, 6, 0, 0, 5454, 5456, 5, 725, 0, 0, 5455, 5454, 1, 0, 0, 0, 5455, 5456, 1, 0, 0, 0, 5456, 5547, 1, 0, 0, 0, 5457, 5459, 5, 7, 0, 0, 5458, 5460, 5, 733, 0, 0, 5459, 5458, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5547, 1, 0, 0, 0, 5461, 5469, 5, 33, 0, 0, 5462, 5463, 5, 649, 0, 0, 5463, 5470, 5, 742, 0, 0, 5464, 5470, 5, 733, 0, 0, 5465, 5470, 5, 671, 0, 0, 5466, 5470, 5, 665, 0, 0, 5467, 5470, 5, 647, 0, 0, 5468, 5470, 5, 596, 0, 0, 5469, 5462, 1, 0, 0, 0, 5469, 5464, 1, 0, 0, 0, 5469, 5465, 1, 0, 0, 0, 5469, 5466, 1, 0, 0, 0, 5469, 5467, 1, 0, 0, 0, 5469, 5468, 1, 0, 0, 0, 5469, 5470, 1, 0, 0, 0, 5470, 5547, 1, 0, 0, 0, 5471, 5547, 5, 44, 0, 0, 5472, 5474, 5, 51, 0, 0, 5473, 5475, 5, 596, 0, 0, 5474, 5473, 1, 0, 0, 0, 5474, 5475, 1, 0, 0, 0, 5475, 5547, 1, 0, 0, 0, 5476, 5547, 5, 415, 0, 0, 5477, 5547, 5, 708, 0, 0, 5478, 5547, 5, 709, 0, 0, 5479, 5480, 5, 72, 0, 0, 5480, 5547, 5, 120, 0, 0, 5481, 5547, 5, 81, 0, 0, 5482, 5547, 5, 85, 0, 0, 5483, 5484, 5, 103, 0, 0, 5484, 5547, 5, 742, 0, 0, 5485, 5547, 5, 726, 0, 0, 5486, 5547, 5, 566, 0, 0, 5487, 5547, 5, 136, 0, 0, 5488, 5547, 5, 727, 0, 0, 5489, 5490, 5, 588, 0, 0, 5490, 5547, 7, 70, 0, 0, 5491, 5547, 5, 152, 0, 0, 5492, 5493, 5, 155, 0, 0, 5493, 5547, 7, 71, 0, 0, 5494, 5547, 5, 739, 0, 0, 5495, 5547, 5, 740, 0, 0, 5496, 5547, 5, 177, 0, 0, 5497, 5547, 5, 184, 0, 0, 5498, 5547, 5, 185, 0, 0, 5499, 5547, 5, 698, 0, 0, 5500, 5547, 5, 699, 0, 0, 5501, 5547, 5, 700, 0, 0, 5502, 5547, 5, 701, 0, 0, 5503, 5547, 5, 702, 0, 0, 5504, 5547, 5, 703, 0, 0, 5505, 5547, 5, 704, 0, 0, 5506, 5547, 5, 705, 0, 0, 5507, 5547, 5, 706, 0, 0, 5508, 5547, 5, 707, 0, 0, 5509, 5547, 5, 710, 0, 0, 5510, 5547, 5, 711, 0, 0, 5511, 5547, 5, 712, 0, 0, 5512, 5547, 5, 713, 0, 0, 5513, 5547, 5, 714, 0, 0, 5514, 5547, 5, 715, 0, 0, 5515, 5547, 5, 716, 0, 0, 5516, 5547, 5, 717, 0, 0, 5517, 5547, 5, 718, 0, 0, 5518, 5547, 5, 719, 0, 0, 5519, 5547, 5, 722, 0, 0, 5520, 5547, 5, 723, 0, 0, 5521, 5547, 5, 724, 0, 0, 5522, 5547, 5, 728, 0, 0, 5523, 5547, 5, 729, 0, 0, 5524, 5547, 5, 730, 0, 0, 5525, 5547, 5, 731, 0, 0, 5526, 5547, 5, 732, 0, 0, 5527, 5547, 5, 735, 0, 0, 5528, 5547, 5, 736, 0, 0, 5529, 5547, 5, 737, 0, 0, 5530, 5547, 5, 158, 0, 0, 5531, 5547, 5, 738, 0, 0, 5532, 5547, 5, 1077, 0, 0, 5533, 5547, 5, 741, 0, 0, 5534, 5547, 5, 743, 0, 0, 5535, 5547, 5, 1088, 0, 0, 5536, 5547, 5, 744, 0, 0, 5537, 5547, 5, 745, 0, 0, 5538, 5539, 5, 102, 0, 0, 5539, 5540, 5, 68, 0, 0, 5540, 5547, 5, 734, 0, 0, 5541, 5542, 5, 152, 0, 0, 5542, 5543, 5, 87, 0, 0, 5543, 5547, 5, 734, 0, 0, 5544, 5545, 5, 720, 0, 0, 5545, 5547, 5, 721, 0, 0, 5546, 5453, 1, 0, 0, 0, 5546, 5457, 1, 0, 0, 0, 5546, 5461, 1, 0, 0, 0, 5546, 5471, 1, 0, 0, 0, 5546, 5472, 1, 0, 0, 0, 5546, 5476, 1, 0, 0, 0, 5546, 5477, 1, 0, 0, 0, 5546, 5478, 1, 0, 0, 0, 5546, 5479, 1, 0, 0, 0, 5546, 5481, 1, 0, 0, 0, 5546, 5482, 1, 0, 0, 0, 5546, 5483, 1, 0, 0, 0, 5546, 5485, 1, 0, 0, 0, 5546, 5486, 1, 0, 0, 0, 5546, 5487, 1, 0, 0, 0, 5546, 5488, 1, 0, 0, 0, 5546, 5489, 1, 0, 0, 0, 5546, 5491, 1, 0, 0, 0, 5546, 5492, 1, 0, 0, 0, 5546, 5494, 1, 0, 0, 0, 5546, 5495, 1, 0, 0, 0, 5546, 5496, 1, 0, 0, 0, 5546, 5497, 1, 0, 0, 0, 5546, 5498, 1, 0, 0, 0, 5546, 5499, 1, 0, 0, 0, 5546, 5500, 1, 0, 0, 0, 5546, 5501, 1, 0, 0, 0, 5546, 5502, 1, 0, 0, 0, 5546, 5503, 1, 0, 0, 0, 5546, 5504, 1, 0, 0, 0, 5546, 5505, 1, 0, 0, 0, 5546, 5506, 1, 0, 0, 0, 5546, 5507, 1, 0, 0, 0, 5546, 5508, 1, 0, 0, 0, 5546, 5509, 1, 0, 0, 0, 5546, 5510, 1, 0, 0, 0, 5546, 5511, 1, 0, 0, 0, 5546, 5512, 1, 0, 0, 0, 5546, 5513, 1, 0, 0, 0, 5546, 5514, 1, 0, 0, 0, 5546, 5515, 1, 0, 0, 0, 5546, 5516, 1, 0, 0, 0, 5546, 5517, 1, 0, 0, 0, 5546, 5518, 1, 0, 0, 0, 5546, 5519, 1, 0, 0, 0, 5546, 5520, 1, 0, 0, 0, 5546, 5521, 1, 0, 0, 0, 5546, 5522, 1, 0, 0, 0, 5546, 5523, 1, 0, 0, 0, 5546, 5524, 1, 0, 0, 0, 5546, 5525, 1, 0, 0, 0, 5546, 5526, 1, 0, 0, 0, 5546, 5527, 1, 0, 0, 0, 5546, 5528, 1, 0, 0, 0, 5546, 5529, 1, 0, 0, 0, 5546, 5530, 1, 0, 0, 0, 5546, 5531, 1, 0, 0, 0, 5546, 5532, 1, 0, 0, 0, 5546, 5533, 1, 0, 0, 0, 5546, 5534, 1, 0, 0, 0, 5546, 5535, 1, 0, 0, 0, 5546, 5536, 1, 0, 0, 0, 5546, 5537, 1, 0, 0, 0, 5546, 5538, 1, 0, 0, 0, 5546, 5541, 1, 0, 0, 0, 5546, 5544, 1, 0, 0, 0, 5547, 463, 1, 0, 0, 0, 5548, 5565, 5, 1117, 0, 0, 5549, 5550, 5, 1117, 0, 0, 5550, 5551, 5, 1132, 0, 0, 5551, 5565, 5, 1117, 0, 0, 5552, 5553, 3, 584, 292, 0, 5553, 5554, 5, 1132, 0, 0, 5554, 5555, 5, 1117, 0, 0, 5555, 5565, 1, 0, 0, 0, 5556, 5557, 3, 584, 292, 0, 5557, 5558, 5, 1132, 0, 0, 5558, 5559, 3, 584, 292, 0, 5559, 5565, 1, 0, 0, 0, 5560, 5561, 3, 584, 292, 0, 5561, 5562, 3, 588, 294, 0, 5562, 5565, 1, 0, 0, 0, 5563, 5565, 3, 584, 292, 0, 5564, 5548, 1, 0, 0, 0, 5564, 5549, 1, 0, 0, 0, 5564, 5552, 1, 0, 0, 0, 5564, 5556, 1, 0, 0, 0, 5564, 5560, 1, 0, 0, 0, 5564, 5563, 1, 0, 0, 0, 5565, 465, 1, 0, 0, 0, 5566, 5567, 3, 564, 282, 0, 5567, 5568, 5, 175, 0, 0, 5568, 5569, 3, 564, 282, 0, 5569, 467, 1, 0, 0, 0, 5570, 5572, 5, 9, 0, 0, 5571, 5573, 7, 72, 0, 0, 5572, 5571, 1, 0, 0, 0, 5572, 5573, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 5575, 7, 54, 0, 0, 5575, 5593, 3, 620, 310, 0, 5576, 5577, 5, 184, 0, 0, 5577, 5578, 5, 76, 0, 0, 5578, 5579, 5, 118, 0, 0, 5579, 5584, 3, 556, 278, 0, 5580, 5581, 5, 1135, 0, 0, 5581, 5583, 3, 556, 278, 0, 5582, 5580, 1, 0, 0, 0, 5583, 5586, 1, 0, 0, 0, 5584, 5582, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5591, 1, 0, 0, 0, 5586, 5584, 1, 0, 0, 0, 5587, 5588, 5, 192, 0, 0, 5588, 5589, 3, 590, 295, 0, 5589, 5590, 5, 18, 0, 0, 5590, 5592, 1, 0, 0, 0, 5591, 5587, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5594, 1, 0, 0, 0, 5593, 5576, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5606, 1, 0, 0, 0, 5595, 5596, 5, 51, 0, 0, 5596, 5597, 5, 76, 0, 0, 5597, 5598, 5, 118, 0, 0, 5598, 5603, 3, 556, 278, 0, 5599, 5600, 5, 1135, 0, 0, 5600, 5602, 3, 556, 278, 0, 5601, 5599, 1, 0, 0, 0, 5602, 5605, 1, 0, 0, 0, 5603, 5601, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5607, 1, 0, 0, 0, 5605, 5603, 1, 0, 0, 0, 5606, 5595, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 469, 1, 0, 0, 0, 5608, 5609, 5, 26, 0, 0, 5609, 5610, 5, 172, 0, 0, 5610, 5614, 3, 620, 310, 0, 5611, 5613, 3, 478, 239, 0, 5612, 5611, 1, 0, 0, 0, 5613, 5616, 1, 0, 0, 0, 5614, 5612, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 471, 1, 0, 0, 0, 5616, 5614, 1, 0, 0, 0, 5617, 5618, 5, 356, 0, 0, 5618, 5619, 5, 172, 0, 0, 5619, 5621, 3, 620, 310, 0, 5620, 5622, 7, 73, 0, 0, 5621, 5620, 1, 0, 0, 0, 5621, 5622, 1, 0, 0, 0, 5622, 473, 1, 0, 0, 0, 5623, 5625, 5, 119, 0, 0, 5624, 5626, 7, 72, 0, 0, 5625, 5624, 1, 0, 0, 0, 5625, 5626, 1, 0, 0, 0, 5626, 5627, 1, 0, 0, 0, 5627, 5628, 7, 54, 0, 0, 5628, 5629, 3, 620, 310, 0, 5629, 475, 1, 0, 0, 0, 5630, 5632, 5, 580, 0, 0, 5631, 5633, 7, 72, 0, 0, 5632, 5631, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5635, 5, 172, 0, 0, 5635, 5637, 3, 620, 310, 0, 5636, 5638, 5, 568, 0, 0, 5637, 5636, 1, 0, 0, 0, 5637, 5638, 1, 0, 0, 0, 5638, 5640, 1, 0, 0, 0, 5639, 5641, 5, 422, 0, 0, 5640, 5639, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5643, 1, 0, 0, 0, 5642, 5644, 5, 666, 0, 0, 5643, 5642, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 477, 1, 0, 0, 0, 5645, 5646, 5, 65, 0, 0, 5646, 5653, 5, 664, 0, 0, 5647, 5653, 5, 568, 0, 0, 5648, 5653, 5, 425, 0, 0, 5649, 5653, 5, 504, 0, 0, 5650, 5653, 5, 422, 0, 0, 5651, 5653, 5, 354, 0, 0, 5652, 5645, 1, 0, 0, 0, 5652, 5647, 1, 0, 0, 0, 5652, 5648, 1, 0, 0, 0, 5652, 5649, 1, 0, 0, 0, 5652, 5650, 1, 0, 0, 0, 5652, 5651, 1, 0, 0, 0, 5653, 479, 1, 0, 0, 0, 5654, 5656, 5, 33, 0, 0, 5655, 5657, 5, 335, 0, 0, 5656, 5655, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5660, 5, 437, 0, 0, 5659, 5661, 3, 642, 321, 0, 5660, 5659, 1, 0, 0, 0, 5660, 5661, 1, 0, 0, 0, 5661, 5662, 1, 0, 0, 0, 5662, 5663, 3, 584, 292, 0, 5663, 5664, 5, 594, 0, 0, 5664, 5665, 7, 74, 0, 0, 5665, 5666, 5, 619, 0, 0, 5666, 5667, 5, 1148, 0, 0, 5667, 481, 1, 0, 0, 0, 5668, 5669, 5, 456, 0, 0, 5669, 5670, 5, 554, 0, 0, 5670, 5671, 3, 584, 292, 0, 5671, 5672, 5, 619, 0, 0, 5672, 5673, 5, 1148, 0, 0, 5673, 483, 1, 0, 0, 0, 5674, 5675, 5, 661, 0, 0, 5675, 5676, 5, 554, 0, 0, 5676, 5677, 3, 584, 292, 0, 5677, 485, 1, 0, 0, 0, 5678, 5679, 5, 153, 0, 0, 5679, 5680, 3, 490, 245, 0, 5680, 5683, 7, 75, 0, 0, 5681, 5684, 3, 688, 344, 0, 5682, 5684, 5, 118, 0, 0, 5683, 5681, 1, 0, 0, 0, 5683, 5682, 1, 0, 0, 0, 5684, 5694, 1, 0, 0, 0, 5685, 5686, 5, 1135, 0, 0, 5686, 5687, 3, 490, 245, 0, 5687, 5690, 7, 75, 0, 0, 5688, 5691, 3, 688, 344, 0, 5689, 5691, 5, 118, 0, 0, 5690, 5688, 1, 0, 0, 0, 5690, 5689, 1, 0, 0, 0, 5691, 5693, 1, 0, 0, 0, 5692, 5685, 1, 0, 0, 0, 5693, 5696, 1, 0, 0, 0, 5694, 5692, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5731, 1, 0, 0, 0, 5696, 5694, 1, 0, 0, 0, 5697, 5698, 5, 153, 0, 0, 5698, 5701, 3, 58, 29, 0, 5699, 5702, 3, 568, 284, 0, 5700, 5702, 5, 42, 0, 0, 5701, 5699, 1, 0, 0, 0, 5701, 5700, 1, 0, 0, 0, 5702, 5731, 1, 0, 0, 0, 5703, 5704, 5, 153, 0, 0, 5704, 5711, 5, 517, 0, 0, 5705, 5708, 3, 568, 284, 0, 5706, 5707, 5, 27, 0, 0, 5707, 5709, 3, 570, 285, 0, 5708, 5706, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5712, 1, 0, 0, 0, 5710, 5712, 5, 42, 0, 0, 5711, 5705, 1, 0, 0, 0, 5711, 5710, 1, 0, 0, 0, 5712, 5731, 1, 0, 0, 0, 5713, 5731, 3, 442, 221, 0, 5714, 5731, 3, 316, 158, 0, 5715, 5731, 3, 314, 157, 0, 5716, 5717, 5, 153, 0, 0, 5717, 5718, 3, 548, 274, 0, 5718, 5719, 7, 75, 0, 0, 5719, 5727, 3, 688, 344, 0, 5720, 5721, 5, 1135, 0, 0, 5721, 5722, 3, 548, 274, 0, 5722, 5723, 7, 75, 0, 0, 5723, 5724, 3, 688, 344, 0, 5724, 5726, 1, 0, 0, 0, 5725, 5720, 1, 0, 0, 0, 5726, 5729, 1, 0, 0, 0, 5727, 5725, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5731, 1, 0, 0, 0, 5729, 5727, 1, 0, 0, 0, 5730, 5678, 1, 0, 0, 0, 5730, 5697, 1, 0, 0, 0, 5730, 5703, 1, 0, 0, 0, 5730, 5713, 1, 0, 0, 0, 5730, 5714, 1, 0, 0, 0, 5730, 5715, 1, 0, 0, 0, 5730, 5716, 1, 0, 0, 0, 5731, 487, 1, 0, 0, 0, 5732, 5733, 5, 155, 0, 0, 5733, 5734, 7, 56, 0, 0, 5734, 5886, 5, 476, 0, 0, 5735, 5736, 5, 155, 0, 0, 5736, 5737, 7, 76, 0, 0, 5737, 5740, 5, 416, 0, 0, 5738, 5739, 5, 80, 0, 0, 5739, 5741, 5, 1148, 0, 0, 5740, 5738, 1, 0, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 5744, 1, 0, 0, 0, 5742, 5743, 5, 68, 0, 0, 5743, 5745, 3, 590, 295, 0, 5744, 5742, 1, 0, 0, 0, 5744, 5745, 1, 0, 0, 0, 5745, 5753, 1, 0, 0, 0, 5746, 5750, 5, 99, 0, 0, 5747, 5748, 3, 590, 295, 0, 5748, 5749, 5, 1135, 0, 0, 5749, 5751, 1, 0, 0, 0, 5750, 5747, 1, 0, 0, 0, 5750, 5751, 1, 0, 0, 0, 5751, 5752, 1, 0, 0, 0, 5752, 5754, 3, 590, 295, 0, 5753, 5746, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 5886, 1, 0, 0, 0, 5755, 5756, 5, 155, 0, 0, 5756, 5758, 3, 492, 246, 0, 5757, 5759, 3, 494, 247, 0, 5758, 5757, 1, 0, 0, 0, 5758, 5759, 1, 0, 0, 0, 5759, 5886, 1, 0, 0, 0, 5760, 5762, 5, 155, 0, 0, 5761, 5763, 5, 436, 0, 0, 5762, 5761, 1, 0, 0, 0, 5762, 5763, 1, 0, 0, 0, 5763, 5764, 1, 0, 0, 0, 5764, 5765, 7, 41, 0, 0, 5765, 5766, 7, 77, 0, 0, 5766, 5769, 3, 550, 275, 0, 5767, 5768, 7, 77, 0, 0, 5768, 5770, 3, 584, 292, 0, 5769, 5767, 1, 0, 0, 0, 5769, 5770, 1, 0, 0, 0, 5770, 5772, 1, 0, 0, 0, 5771, 5773, 3, 494, 247, 0, 5772, 5771, 1, 0, 0, 0, 5772, 5773, 1, 0, 0, 0, 5773, 5886, 1, 0, 0, 0, 5774, 5775, 5, 155, 0, 0, 5775, 5776, 5, 33, 0, 0, 5776, 5778, 7, 0, 0, 0, 5777, 5779, 3, 642, 321, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5886, 3, 584, 292, 0, 5781, 5782, 5, 155, 0, 0, 5782, 5783, 5, 33, 0, 0, 5783, 5784, 7, 78, 0, 0, 5784, 5886, 3, 548, 274, 0, 5785, 5786, 5, 155, 0, 0, 5786, 5787, 5, 33, 0, 0, 5787, 5788, 5, 665, 0, 0, 5788, 5886, 3, 564, 282, 0, 5789, 5790, 5, 155, 0, 0, 5790, 5791, 5, 409, 0, 0, 5791, 5792, 3, 572, 286, 0, 5792, 5793, 7, 79, 0, 0, 5793, 5886, 1, 0, 0, 0, 5794, 5795, 5, 155, 0, 0, 5795, 5886, 3, 496, 248, 0, 5796, 5797, 5, 155, 0, 0, 5797, 5805, 7, 80, 0, 0, 5798, 5802, 5, 99, 0, 0, 5799, 5800, 3, 590, 295, 0, 5800, 5801, 5, 1135, 0, 0, 5801, 5803, 1, 0, 0, 0, 5802, 5799, 1, 0, 0, 0, 5802, 5803, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5806, 3, 590, 295, 0, 5805, 5798, 1, 0, 0, 0, 5805, 5806, 1, 0, 0, 0, 5806, 5886, 1, 0, 0, 0, 5807, 5808, 5, 155, 0, 0, 5808, 5809, 5, 290, 0, 0, 5809, 5810, 5, 1133, 0, 0, 5810, 5811, 5, 1117, 0, 0, 5811, 5812, 5, 1134, 0, 0, 5812, 5886, 7, 80, 0, 0, 5813, 5814, 5, 155, 0, 0, 5814, 5817, 3, 498, 249, 0, 5815, 5816, 7, 77, 0, 0, 5816, 5818, 3, 584, 292, 0, 5817, 5815, 1, 0, 0, 0, 5817, 5818, 1, 0, 0, 0, 5818, 5820, 1, 0, 0, 0, 5819, 5821, 3, 494, 247, 0, 5820, 5819, 1, 0, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5886, 1, 0, 0, 0, 5822, 5823, 5, 155, 0, 0, 5823, 5824, 7, 81, 0, 0, 5824, 5825, 5, 364, 0, 0, 5825, 5886, 3, 548, 274, 0, 5826, 5827, 5, 155, 0, 0, 5827, 5830, 5, 440, 0, 0, 5828, 5829, 5, 65, 0, 0, 5829, 5831, 3, 564, 282, 0, 5830, 5828, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5886, 1, 0, 0, 0, 5832, 5833, 5, 155, 0, 0, 5833, 5834, 7, 82, 0, 0, 5834, 5835, 7, 77, 0, 0, 5835, 5838, 3, 550, 275, 0, 5836, 5837, 7, 77, 0, 0, 5837, 5839, 3, 584, 292, 0, 5838, 5836, 1, 0, 0, 0, 5838, 5839, 1, 0, 0, 0, 5839, 5842, 1, 0, 0, 0, 5840, 5841, 5, 190, 0, 0, 5841, 5843, 3, 688, 344, 0, 5842, 5840, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5886, 1, 0, 0, 0, 5844, 5845, 5, 155, 0, 0, 5845, 5846, 5, 539, 0, 0, 5846, 5849, 5, 742, 0, 0, 5847, 5848, 7, 77, 0, 0, 5848, 5850, 3, 584, 292, 0, 5849, 5847, 1, 0, 0, 0, 5849, 5850, 1, 0, 0, 0, 5850, 5852, 1, 0, 0, 0, 5851, 5853, 3, 494, 247, 0, 5852, 5851, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5886, 1, 0, 0, 0, 5854, 5855, 5, 155, 0, 0, 5855, 5856, 5, 564, 0, 0, 5856, 5861, 3, 500, 250, 0, 5857, 5858, 5, 1135, 0, 0, 5858, 5860, 3, 500, 250, 0, 5859, 5857, 1, 0, 0, 0, 5860, 5863, 1, 0, 0, 0, 5861, 5859, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5867, 1, 0, 0, 0, 5863, 5861, 1, 0, 0, 0, 5864, 5865, 5, 65, 0, 0, 5865, 5866, 5, 567, 0, 0, 5866, 5868, 3, 590, 295, 0, 5867, 5864, 1, 0, 0, 0, 5867, 5868, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5873, 5, 99, 0, 0, 5870, 5871, 3, 590, 295, 0, 5871, 5872, 5, 1135, 0, 0, 5872, 5874, 1, 0, 0, 0, 5873, 5870, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5875, 1, 0, 0, 0, 5875, 5876, 3, 590, 295, 0, 5876, 5886, 1, 0, 0, 0, 5877, 5878, 5, 155, 0, 0, 5878, 5879, 5, 614, 0, 0, 5879, 5883, 5, 634, 0, 0, 5880, 5881, 5, 65, 0, 0, 5881, 5882, 5, 355, 0, 0, 5882, 5884, 5, 1148, 0, 0, 5883, 5880, 1, 0, 0, 0, 5883, 5884, 1, 0, 0, 0, 5884, 5886, 1, 0, 0, 0, 5885, 5732, 1, 0, 0, 0, 5885, 5735, 1, 0, 0, 0, 5885, 5755, 1, 0, 0, 0, 5885, 5760, 1, 0, 0, 0, 5885, 5774, 1, 0, 0, 0, 5885, 5781, 1, 0, 0, 0, 5885, 5785, 1, 0, 0, 0, 5885, 5789, 1, 0, 0, 0, 5885, 5794, 1, 0, 0, 0, 5885, 5796, 1, 0, 0, 0, 5885, 5807, 1, 0, 0, 0, 5885, 5813, 1, 0, 0, 0, 5885, 5822, 1, 0, 0, 0, 5885, 5826, 1, 0, 0, 0, 5885, 5832, 1, 0, 0, 0, 5885, 5844, 1, 0, 0, 0, 5885, 5854, 1, 0, 0, 0, 5885, 5877, 1, 0, 0, 0, 5886, 489, 1, 0, 0, 0, 5887, 5898, 5, 1159, 0, 0, 5888, 5898, 5, 1160, 0, 0, 5889, 5890, 5, 1137, 0, 0, 5890, 5892, 5, 1137, 0, 0, 5891, 5889, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5895, 7, 83, 0, 0, 5894, 5891, 1, 0, 0, 0, 5894, 5895, 1, 0, 0, 0, 5895, 5896, 1, 0, 0, 0, 5896, 5898, 3, 584, 292, 0, 5897, 5887, 1, 0, 0, 0, 5897, 5888, 1, 0, 0, 0, 5897, 5894, 1, 0, 0, 0, 5898, 491, 1, 0, 0, 0, 5899, 5900, 5, 25, 0, 0, 5900, 5913, 5, 153, 0, 0, 5901, 5913, 5, 844, 0, 0, 5902, 5913, 5, 40, 0, 0, 5903, 5913, 5, 151, 0, 0, 5904, 5905, 5, 437, 0, 0, 5905, 5913, 5, 634, 0, 0, 5906, 5907, 5, 131, 0, 0, 5907, 5913, 5, 634, 0, 0, 5908, 5910, 7, 55, 0, 0, 5909, 5908, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 5911, 1, 0, 0, 0, 5911, 5913, 7, 84, 0, 0, 5912, 5899, 1, 0, 0, 0, 5912, 5901, 1, 0, 0, 0, 5912, 5902, 1, 0, 0, 0, 5912, 5903, 1, 0, 0, 0, 5912, 5904, 1, 0, 0, 0, 5912, 5906, 1, 0, 0, 0, 5912, 5909, 1, 0, 0, 0, 5913, 493, 1, 0, 0, 0, 5914, 5915, 5, 98, 0, 0, 5915, 5919, 5, 1148, 0, 0, 5916, 5917, 5, 190, 0, 0, 5917, 5919, 3, 688, 344, 0, 5918, 5914, 1, 0, 0, 0, 5918, 5916, 1, 0, 0, 0, 5919, 495, 1, 0, 0, 0, 5920, 5922, 5, 636, 0, 0, 5921, 5920, 1, 0, 0, 0, 5921, 5922, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5938, 5, 410, 0, 0, 5924, 5925, 5, 477, 0, 0, 5925, 5938, 5, 634, 0, 0, 5926, 5938, 5, 556, 0, 0, 5927, 5938, 5, 725, 0, 0, 5928, 5930, 5, 436, 0, 0, 5929, 5928, 1, 0, 0, 0, 5929, 5930, 1, 0, 0, 0, 5930, 5931, 1, 0, 0, 0, 5931, 5938, 5, 563, 0, 0, 5932, 5938, 5, 565, 0, 0, 5933, 5934, 5, 614, 0, 0, 5934, 5938, 5, 447, 0, 0, 5935, 5938, 5, 339, 0, 0, 5936, 5938, 5, 383, 0, 0, 5937, 5921, 1, 0, 0, 0, 5937, 5924, 1, 0, 0, 0, 5937, 5926, 1, 0, 0, 0, 5937, 5927, 1, 0, 0, 0, 5937, 5929, 1, 0, 0, 0, 5937, 5932, 1, 0, 0, 0, 5937, 5933, 1, 0, 0, 0, 5937, 5935, 1, 0, 0, 0, 5937, 5936, 1, 0, 0, 0, 5938, 497, 1, 0, 0, 0, 5939, 5948, 5, 416, 0, 0, 5940, 5941, 5, 172, 0, 0, 5941, 5948, 5, 634, 0, 0, 5942, 5944, 5, 436, 0, 0, 5943, 5942, 1, 0, 0, 0, 5943, 5944, 1, 0, 0, 0, 5944, 5945, 1, 0, 0, 0, 5945, 5948, 5, 742, 0, 0, 5946, 5948, 5, 655, 0, 0, 5947, 5939, 1, 0, 0, 0, 5947, 5940, 1, 0, 0, 0, 5947, 5943, 1, 0, 0, 0, 5947, 5946, 1, 0, 0, 0, 5948, 499, 1, 0, 0, 0, 5949, 5962, 5, 6, 0, 0, 5950, 5951, 5, 347, 0, 0, 5951, 5962, 5, 461, 0, 0, 5952, 5953, 5, 382, 0, 0, 5953, 5962, 5, 645, 0, 0, 5954, 5962, 5, 385, 0, 0, 5955, 5962, 5, 463, 0, 0, 5956, 5962, 5, 792, 0, 0, 5957, 5958, 5, 544, 0, 0, 5958, 5962, 5, 426, 0, 0, 5959, 5962, 5, 621, 0, 0, 5960, 5962, 5, 644, 0, 0, 5961, 5949, 1, 0, 0, 0, 5961, 5950, 1, 0, 0, 0, 5961, 5952, 1, 0, 0, 0, 5961, 5954, 1, 0, 0, 0, 5961, 5955, 1, 0, 0, 0, 5961, 5956, 1, 0, 0, 0, 5961, 5957, 1, 0, 0, 0, 5961, 5959, 1, 0, 0, 0, 5961, 5960, 1, 0, 0, 0, 5962, 501, 1, 0, 0, 0, 5963, 5964, 5, 345, 0, 0, 5964, 5965, 5, 1148, 0, 0, 5965, 503, 1, 0, 0, 0, 5966, 5967, 5, 351, 0, 0, 5967, 5968, 5, 81, 0, 0, 5968, 5973, 3, 516, 258, 0, 5969, 5970, 5, 1135, 0, 0, 5970, 5972, 3, 516, 258, 0, 5971, 5969, 1, 0, 0, 0, 5972, 5975, 1, 0, 0, 0, 5973, 5971, 1, 0, 0, 0, 5973, 5974, 1, 0, 0, 0, 5974, 5983, 1, 0, 0, 0, 5975, 5973, 1, 0, 0, 0, 5976, 5977, 5, 129, 0, 0, 5977, 5980, 5, 1133, 0, 0, 5978, 5981, 3, 616, 308, 0, 5979, 5981, 5, 6, 0, 0, 5980, 5978, 1, 0, 0, 0, 5980, 5979, 1, 0, 0, 0, 5981, 5982, 1, 0, 0, 0, 5982, 5984, 5, 1134, 0, 0, 5983, 5976, 1, 0, 0, 0, 5983, 5984, 1, 0, 0, 0, 5984, 5985, 1, 0, 0, 0, 5985, 5986, 5, 80, 0, 0, 5986, 5987, 3, 584, 292, 0, 5987, 505, 1, 0, 0, 0, 5988, 5990, 5, 432, 0, 0, 5989, 5991, 7, 72, 0, 0, 5990, 5989, 1, 0, 0, 0, 5990, 5991, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 5997, 3, 518, 259, 0, 5993, 5994, 5, 1135, 0, 0, 5994, 5996, 3, 518, 259, 0, 5995, 5993, 1, 0, 0, 0, 5996, 5999, 1, 0, 0, 0, 5997, 5995, 1, 0, 0, 0, 5997, 5998, 1, 0, 0, 0, 5998, 507, 1, 0, 0, 0, 5999, 5997, 1, 0, 0, 0, 6000, 6002, 5, 93, 0, 0, 6001, 6003, 7, 85, 0, 0, 6002, 6001, 1, 0, 0, 0, 6002, 6003, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 6005, 3, 688, 344, 0, 6005, 509, 1, 0, 0, 0, 6006, 6007, 5, 102, 0, 0, 6007, 6008, 5, 81, 0, 0, 6008, 6009, 5, 87, 0, 0, 6009, 6010, 5, 351, 0, 0, 6010, 6015, 3, 522, 261, 0, 6011, 6012, 5, 1135, 0, 0, 6012, 6014, 3, 522, 261, 0, 6013, 6011, 1, 0, 0, 0, 6014, 6017, 1, 0, 0, 0, 6015, 6013, 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 511, 1, 0, 0, 0, 6017, 6015, 1, 0, 0, 0, 6018, 6019, 5, 589, 0, 0, 6019, 6020, 5, 567, 0, 0, 6020, 6021, 5, 351, 0, 0, 6021, 513, 1, 0, 0, 0, 6022, 6023, 5, 739, 0, 0, 6023, 515, 1, 0, 0, 0, 6024, 6032, 3, 550, 275, 0, 6025, 6027, 7, 20, 0, 0, 6026, 6025, 1, 0, 0, 0, 6026, 6027, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 5, 1133, 0, 0, 6029, 6030, 3, 616, 308, 0, 6030, 6031, 5, 1134, 0, 0, 6031, 6033, 1, 0, 0, 0, 6032, 6026, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 517, 1, 0, 0, 0, 6034, 6053, 5, 394, 0, 0, 6035, 6053, 5, 447, 0, 0, 6036, 6038, 7, 86, 0, 0, 6037, 6036, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6053, 5, 476, 0, 0, 6040, 6053, 5, 540, 0, 0, 6041, 6053, 5, 725, 0, 0, 6042, 6043, 5, 567, 0, 0, 6043, 6053, 5, 351, 0, 0, 6044, 6053, 5, 634, 0, 0, 6045, 6053, 5, 667, 0, 0, 6046, 6050, 5, 742, 0, 0, 6047, 6048, 5, 192, 0, 0, 6048, 6049, 5, 134, 0, 0, 6049, 6051, 5, 103, 0, 0, 6050, 6047, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6053, 1, 0, 0, 0, 6052, 6034, 1, 0, 0, 0, 6052, 6035, 1, 0, 0, 0, 6052, 6037, 1, 0, 0, 0, 6052, 6040, 1, 0, 0, 0, 6052, 6041, 1, 0, 0, 0, 6052, 6042, 1, 0, 0, 0, 6052, 6044, 1, 0, 0, 0, 6052, 6045, 1, 0, 0, 0, 6052, 6046, 1, 0, 0, 0, 6053, 6067, 1, 0, 0, 0, 6054, 6055, 5, 574, 0, 0, 6055, 6057, 5, 476, 0, 0, 6056, 6058, 3, 354, 177, 0, 6057, 6056, 1, 0, 0, 0, 6057, 6058, 1, 0, 0, 0, 6058, 6067, 1, 0, 0, 0, 6059, 6061, 7, 54, 0, 0, 6060, 6062, 3, 620, 310, 0, 6061, 6060, 1, 0, 0, 0, 6061, 6062, 1, 0, 0, 0, 6062, 6064, 1, 0, 0, 0, 6063, 6065, 3, 520, 260, 0, 6064, 6063, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6067, 1, 0, 0, 0, 6066, 6052, 1, 0, 0, 0, 6066, 6054, 1, 0, 0, 0, 6066, 6059, 1, 0, 0, 0, 6067, 519, 1, 0, 0, 0, 6068, 6069, 5, 192, 0, 0, 6069, 6070, 5, 134, 0, 0, 6070, 6074, 5, 103, 0, 0, 6071, 6072, 5, 65, 0, 0, 6072, 6074, 5, 421, 0, 0, 6073, 6068, 1, 0, 0, 0, 6073, 6071, 1, 0, 0, 0, 6074, 521, 1, 0, 0, 0, 6075, 6083, 3, 550, 275, 0, 6076, 6077, 5, 129, 0, 0, 6077, 6080, 5, 1133, 0, 0, 6078, 6081, 3, 616, 308, 0, 6079, 6081, 5, 6, 0, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6079, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 6084, 5, 1134, 0, 0, 6083, 6076, 1, 0, 0, 0, 6083, 6084, 1, 0, 0, 0, 6084, 6092, 1, 0, 0, 0, 6085, 6087, 7, 20, 0, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6089, 5, 1133, 0, 0, 6089, 6090, 3, 616, 308, 0, 6090, 6091, 5, 1134, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6086, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6096, 1, 0, 0, 0, 6094, 6095, 5, 78, 0, 0, 6095, 6097, 5, 470, 0, 0, 6096, 6094, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 523, 1, 0, 0, 0, 6098, 6099, 7, 87, 0, 0, 6099, 6102, 3, 550, 275, 0, 6100, 6103, 3, 584, 292, 0, 6101, 6103, 5, 1148, 0, 0, 6102, 6100, 1, 0, 0, 0, 6102, 6101, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 525, 1, 0, 0, 0, 6104, 6108, 7, 87, 0, 0, 6105, 6106, 7, 88, 0, 0, 6106, 6107, 5, 1124, 0, 0, 6107, 6109, 7, 89, 0, 0, 6108, 6105, 1, 0, 0, 0, 6108, 6109, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 6111, 3, 546, 273, 0, 6111, 527, 1, 0, 0, 0, 6112, 6113, 5, 444, 0, 0, 6113, 6114, 5, 1148, 0, 0, 6114, 529, 1, 0, 0, 0, 6115, 6116, 5, 186, 0, 0, 6116, 6117, 3, 584, 292, 0, 6117, 531, 1, 0, 0, 0, 6118, 6126, 5, 156, 0, 0, 6119, 6121, 5, 162, 0, 0, 6120, 6122, 5, 669, 0, 0, 6121, 6120, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6127, 3, 594, 297, 0, 6124, 6127, 5, 1156, 0, 0, 6125, 6127, 5, 1157, 0, 0, 6126, 6119, 1, 0, 0, 0, 6126, 6124, 1, 0, 0, 0, 6126, 6125, 1, 0, 0, 0, 6127, 6137, 1, 0, 0, 0, 6128, 6129, 5, 153, 0, 0, 6129, 6134, 3, 536, 268, 0, 6130, 6131, 5, 1135, 0, 0, 6131, 6133, 3, 536, 268, 0, 6132, 6130, 1, 0, 0, 0, 6133, 6136, 1, 0, 0, 0, 6134, 6132, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6138, 1, 0, 0, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6128, 1, 0, 0, 0, 6137, 6138, 1, 0, 0, 0, 6138, 533, 1, 0, 0, 0, 6139, 6147, 5, 143, 0, 0, 6140, 6142, 5, 162, 0, 0, 6141, 6143, 5, 669, 0, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6148, 3, 594, 297, 0, 6145, 6148, 5, 1156, 0, 0, 6146, 6148, 5, 1157, 0, 0, 6147, 6140, 1, 0, 0, 0, 6147, 6145, 1, 0, 0, 0, 6147, 6146, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6158, 1, 0, 0, 0, 6149, 6150, 5, 153, 0, 0, 6150, 6155, 3, 536, 268, 0, 6151, 6152, 5, 1135, 0, 0, 6152, 6154, 3, 536, 268, 0, 6153, 6151, 1, 0, 0, 0, 6154, 6157, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 6159, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6149, 1, 0, 0, 0, 6158, 6159, 1, 0, 0, 0, 6159, 535, 1, 0, 0, 0, 6160, 6161, 7, 90, 0, 0, 6161, 6166, 5, 1124, 0, 0, 6162, 6167, 3, 594, 297, 0, 6163, 6167, 5, 1149, 0, 0, 6164, 6167, 3, 566, 283, 0, 6165, 6167, 3, 586, 293, 0, 6166, 6162, 1, 0, 0, 0, 6166, 6163, 1, 0, 0, 0, 6166, 6164, 1, 0, 0, 0, 6166, 6165, 1, 0, 0, 0, 6167, 537, 1, 0, 0, 0, 6168, 6170, 5, 192, 0, 0, 6169, 6171, 5, 571, 0, 0, 6170, 6169, 1, 0, 0, 0, 6170, 6171, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6177, 3, 48, 24, 0, 6173, 6174, 5, 1135, 0, 0, 6174, 6176, 3, 48, 24, 0, 6175, 6173, 1, 0, 0, 0, 6176, 6179, 1, 0, 0, 0, 6177, 6175, 1, 0, 0, 0, 6177, 6178, 1, 0, 0, 0, 6178, 539, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6180, 6181, 5, 172, 0, 0, 6181, 6183, 3, 550, 275, 0, 6182, 6184, 3, 228, 114, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6187, 3, 292, 146, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 541, 1, 0, 0, 0, 6188, 6190, 5, 71, 0, 0, 6189, 6191, 7, 91, 0, 0, 6190, 6189, 1, 0, 0, 0, 6190, 6191, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6224, 5, 48, 0, 0, 6193, 6194, 3, 490, 245, 0, 6194, 6195, 5, 1124, 0, 0, 6195, 6203, 7, 92, 0, 0, 6196, 6197, 5, 1135, 0, 0, 6197, 6198, 3, 490, 245, 0, 6198, 6199, 5, 1124, 0, 0, 6199, 6200, 7, 92, 0, 0, 6200, 6202, 1, 0, 0, 0, 6201, 6196, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6225, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6209, 5, 29, 0, 0, 6207, 6210, 3, 590, 295, 0, 6208, 6210, 3, 490, 245, 0, 6209, 6207, 1, 0, 0, 0, 6209, 6208, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6212, 3, 490, 245, 0, 6212, 6213, 5, 1124, 0, 0, 6213, 6221, 3, 544, 272, 0, 6214, 6215, 5, 1135, 0, 0, 6215, 6216, 3, 490, 245, 0, 6216, 6217, 5, 1124, 0, 0, 6217, 6218, 3, 544, 272, 0, 6218, 6220, 1, 0, 0, 0, 6219, 6214, 1, 0, 0, 0, 6220, 6223, 1, 0, 0, 0, 6221, 6219, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6225, 1, 0, 0, 0, 6223, 6221, 1, 0, 0, 0, 6224, 6193, 1, 0, 0, 0, 6224, 6206, 1, 0, 0, 0, 6225, 543, 1, 0, 0, 0, 6226, 6227, 7, 93, 0, 0, 6227, 545, 1, 0, 0, 0, 6228, 6234, 3, 198, 99, 0, 6229, 6234, 3, 184, 92, 0, 6230, 6234, 3, 190, 95, 0, 6231, 6234, 3, 196, 98, 0, 6232, 6234, 3, 200, 100, 0, 6233, 6228, 1, 0, 0, 0, 6233, 6229, 1, 0, 0, 0, 6233, 6230, 1, 0, 0, 0, 6233, 6231, 1, 0, 0, 0, 6233, 6232, 1, 0, 0, 0, 6234, 6239, 1, 0, 0, 0, 6235, 6236, 5, 65, 0, 0, 6236, 6237, 5, 376, 0, 0, 6237, 6239, 3, 584, 292, 0, 6238, 6233, 1, 0, 0, 0, 6238, 6235, 1, 0, 0, 0, 6239, 547, 1, 0, 0, 0, 6240, 6244, 3, 584, 292, 0, 6241, 6245, 5, 1155, 0, 0, 6242, 6243, 5, 1132, 0, 0, 6243, 6245, 3, 584, 292, 0, 6244, 6241, 1, 0, 0, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 549, 1, 0, 0, 0, 6246, 6247, 3, 548, 274, 0, 6247, 551, 1, 0, 0, 0, 6248, 6253, 3, 550, 275, 0, 6249, 6250, 5, 1135, 0, 0, 6250, 6252, 3, 550, 275, 0, 6251, 6249, 1, 0, 0, 0, 6252, 6255, 1, 0, 0, 0, 6253, 6251, 1, 0, 0, 0, 6253, 6254, 1, 0, 0, 0, 6254, 553, 1, 0, 0, 0, 6255, 6253, 1, 0, 0, 0, 6256, 6259, 3, 564, 282, 0, 6257, 6259, 3, 584, 292, 0, 6258, 6256, 1, 0, 0, 0, 6258, 6257, 1, 0, 0, 0, 6259, 555, 1, 0, 0, 0, 6260, 6265, 3, 584, 292, 0, 6261, 6263, 3, 588, 294, 0, 6262, 6264, 3, 588, 294, 0, 6263, 6262, 1, 0, 0, 0, 6263, 6264, 1, 0, 0, 0, 6264, 6266, 1, 0, 0, 0, 6265, 6261, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6275, 1, 0, 0, 0, 6267, 6269, 9, 0, 0, 0, 6268, 6267, 1, 0, 0, 0, 6268, 6269, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6272, 3, 588, 294, 0, 6271, 6273, 3, 588, 294, 0, 6272, 6271, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6275, 1, 0, 0, 0, 6274, 6260, 1, 0, 0, 0, 6274, 6268, 1, 0, 0, 0, 6275, 557, 1, 0, 0, 0, 6276, 6279, 3, 584, 292, 0, 6277, 6279, 5, 1148, 0, 0, 6278, 6276, 1, 0, 0, 0, 6278, 6277, 1, 0, 0, 0, 6279, 6284, 1, 0, 0, 0, 6280, 6281, 5, 1133, 0, 0, 6281, 6282, 3, 590, 295, 0, 6282, 6283, 5, 1134, 0, 0, 6283, 6285, 1, 0, 0, 0, 6284, 6280, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6288, 1, 0, 0, 0, 6286, 6288, 3, 688, 344, 0, 6287, 6278, 1, 0, 0, 0, 6287, 6286, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 7, 48, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 559, 1, 0, 0, 0, 6292, 6297, 5, 1148, 0, 0, 6293, 6297, 5, 1156, 0, 0, 6294, 6297, 5, 697, 0, 0, 6295, 6297, 3, 718, 359, 0, 6296, 6292, 1, 0, 0, 0, 6296, 6293, 1, 0, 0, 0, 6296, 6294, 1, 0, 0, 0, 6296, 6295, 1, 0, 0, 0, 6297, 561, 1, 0, 0, 0, 6298, 6299, 7, 94, 0, 0, 6299, 563, 1, 0, 0, 0, 6300, 6306, 3, 560, 280, 0, 6301, 6302, 3, 560, 280, 0, 6302, 6303, 3, 562, 281, 0, 6303, 6306, 1, 0, 0, 0, 6304, 6306, 3, 60, 30, 0, 6305, 6300, 1, 0, 0, 0, 6305, 6301, 1, 0, 0, 0, 6305, 6304, 1, 0, 0, 0, 6306, 565, 1, 0, 0, 0, 6307, 6308, 7, 95, 0, 0, 6308, 567, 1, 0, 0, 0, 6309, 6314, 5, 226, 0, 0, 6310, 6314, 3, 708, 354, 0, 6311, 6314, 5, 1148, 0, 0, 6312, 6314, 5, 1145, 0, 0, 6313, 6309, 1, 0, 0, 0, 6313, 6310, 1, 0, 0, 0, 6313, 6311, 1, 0, 0, 0, 6313, 6312, 1, 0, 0, 0, 6314, 569, 1, 0, 0, 0, 6315, 6318, 3, 584, 292, 0, 6316, 6318, 5, 1148, 0, 0, 6317, 6315, 1, 0, 0, 0, 6317, 6316, 1, 0, 0, 0, 6318, 571, 1, 0, 0, 0, 6319, 6323, 3, 574, 287, 0, 6320, 6323, 5, 1156, 0, 0, 6321, 6323, 5, 1148, 0, 0, 6322, 6319, 1, 0, 0, 0, 6322, 6320, 1, 0, 0, 0, 6322, 6321, 1, 0, 0, 0, 6323, 573, 1, 0, 0, 0, 6324, 6325, 7, 96, 0, 0, 6325, 575, 1, 0, 0, 0, 6326, 6327, 3, 590, 295, 0, 6327, 6328, 5, 1121, 0, 0, 6328, 6329, 3, 590, 295, 0, 6329, 6330, 5, 1121, 0, 0, 6330, 6331, 3, 590, 295, 0, 6331, 6332, 5, 1121, 0, 0, 6332, 6333, 3, 590, 295, 0, 6333, 6334, 5, 1121, 0, 0, 6334, 6340, 3, 590, 295, 0, 6335, 6336, 5, 1144, 0, 0, 6336, 6337, 3, 590, 295, 0, 6337, 6338, 5, 1121, 0, 0, 6338, 6339, 3, 590, 295, 0, 6339, 6341, 1, 0, 0, 0, 6340, 6335, 1, 0, 0, 0, 6341, 6342, 1, 0, 0, 0, 6342, 6340, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 577, 1, 0, 0, 0, 6344, 6351, 3, 580, 290, 0, 6345, 6346, 5, 1135, 0, 0, 6346, 6349, 3, 580, 290, 0, 6347, 6348, 5, 1135, 0, 0, 6348, 6350, 3, 590, 295, 0, 6349, 6347, 1, 0, 0, 0, 6349, 6350, 1, 0, 0, 0, 6350, 6352, 1, 0, 0, 0, 6351, 6345, 1, 0, 0, 0, 6351, 6352, 1, 0, 0, 0, 6352, 579, 1, 0, 0, 0, 6353, 6361, 5, 1148, 0, 0, 6354, 6361, 5, 1153, 0, 0, 6355, 6357, 5, 1150, 0, 0, 6356, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6356, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 6361, 1, 0, 0, 0, 6360, 6353, 1, 0, 0, 0, 6360, 6354, 1, 0, 0, 0, 6360, 6356, 1, 0, 0, 0, 6361, 581, 1, 0, 0, 0, 6362, 6365, 3, 584, 292, 0, 6363, 6365, 5, 1148, 0, 0, 6364, 6362, 1, 0, 0, 0, 6364, 6363, 1, 0, 0, 0, 6365, 583, 1, 0, 0, 0, 6366, 6370, 3, 586, 293, 0, 6367, 6370, 5, 1145, 0, 0, 6368, 6370, 5, 1148, 0, 0, 6369, 6366, 1, 0, 0, 0, 6369, 6367, 1, 0, 0, 0, 6369, 6368, 1, 0, 0, 0, 6370, 585, 1, 0, 0, 0, 6371, 6381, 5, 1156, 0, 0, 6372, 6381, 3, 708, 354, 0, 6373, 6381, 3, 710, 355, 0, 6374, 6381, 3, 574, 287, 0, 6375, 6381, 3, 712, 356, 0, 6376, 6381, 3, 714, 357, 0, 6377, 6381, 3, 716, 358, 0, 6378, 6381, 3, 718, 359, 0, 6379, 6381, 3, 680, 340, 0, 6380, 6371, 1, 0, 0, 0, 6380, 6372, 1, 0, 0, 0, 6380, 6373, 1, 0, 0, 0, 6380, 6374, 1, 0, 0, 0, 6380, 6375, 1, 0, 0, 0, 6380, 6376, 1, 0, 0, 0, 6380, 6377, 1, 0, 0, 0, 6380, 6378, 1, 0, 0, 0, 6380, 6379, 1, 0, 0, 0, 6381, 587, 1, 0, 0, 0, 6382, 6386, 5, 1155, 0, 0, 6383, 6384, 5, 1132, 0, 0, 6384, 6386, 3, 584, 292, 0, 6385, 6382, 1, 0, 0, 0, 6385, 6383, 1, 0, 0, 0, 6386, 589, 1, 0, 0, 0, 6387, 6388, 7, 97, 0, 0, 6388, 591, 1, 0, 0, 0, 6389, 6392, 5, 1146, 0, 0, 6390, 6392, 3, 590, 295, 0, 6391, 6389, 1, 0, 0, 0, 6391, 6390, 1, 0, 0, 0, 6392, 593, 1, 0, 0, 0, 6393, 6395, 5, 1154, 0, 0, 6394, 6393, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6399, 5, 1148, 0, 0, 6397, 6399, 5, 1147, 0, 0, 6398, 6394, 1, 0, 0, 0, 6398, 6397, 1, 0, 0, 0, 6399, 6401, 1, 0, 0, 0, 6400, 6402, 5, 1148, 0, 0, 6401, 6400, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6401, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6417, 1, 0, 0, 0, 6405, 6407, 5, 1154, 0, 0, 6406, 6405, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6411, 5, 1148, 0, 0, 6409, 6411, 5, 1147, 0, 0, 6410, 6406, 1, 0, 0, 0, 6410, 6409, 1, 0, 0, 0, 6411, 6414, 1, 0, 0, 0, 6412, 6413, 5, 27, 0, 0, 6413, 6415, 3, 570, 285, 0, 6414, 6412, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 6417, 1, 0, 0, 0, 6416, 6398, 1, 0, 0, 0, 6416, 6410, 1, 0, 0, 0, 6417, 595, 1, 0, 0, 0, 6418, 6419, 7, 98, 0, 0, 6419, 597, 1, 0, 0, 0, 6420, 6422, 5, 1154, 0, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 1150, 0, 0, 6424, 599, 1, 0, 0, 0, 6425, 6427, 5, 114, 0, 0, 6426, 6425, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 7, 99, 0, 0, 6429, 601, 1, 0, 0, 0, 6430, 6443, 3, 594, 297, 0, 6431, 6443, 3, 590, 295, 0, 6432, 6433, 5, 1121, 0, 0, 6433, 6443, 3, 590, 295, 0, 6434, 6443, 3, 598, 299, 0, 6435, 6443, 3, 596, 298, 0, 6436, 6443, 5, 1151, 0, 0, 6437, 6443, 5, 1153, 0, 0, 6438, 6440, 5, 114, 0, 0, 6439, 6438, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6443, 7, 99, 0, 0, 6442, 6430, 1, 0, 0, 0, 6442, 6431, 1, 0, 0, 0, 6442, 6432, 1, 0, 0, 0, 6442, 6434, 1, 0, 0, 0, 6442, 6435, 1, 0, 0, 0, 6442, 6436, 1, 0, 0, 0, 6442, 6437, 1, 0, 0, 0, 6442, 6439, 1, 0, 0, 0, 6443, 603, 1, 0, 0, 0, 6444, 6446, 7, 100, 0, 0, 6445, 6447, 5, 238, 0, 0, 6446, 6445, 1, 0, 0, 0, 6446, 6447, 1, 0, 0, 0, 6447, 6449, 1, 0, 0, 0, 6448, 6450, 3, 610, 305, 0, 6449, 6448, 1, 0, 0, 0, 6449, 6450, 1, 0, 0, 0, 6450, 6452, 1, 0, 0, 0, 6451, 6453, 5, 226, 0, 0, 6452, 6451, 1, 0, 0, 0, 6452, 6453, 1, 0, 0, 0, 6453, 6457, 1, 0, 0, 0, 6454, 6455, 3, 58, 29, 0, 6455, 6456, 3, 568, 284, 0, 6456, 6458, 1, 0, 0, 0, 6457, 6454, 1, 0, 0, 0, 6457, 6458, 1, 0, 0, 0, 6458, 6462, 1, 0, 0, 0, 6459, 6460, 5, 27, 0, 0, 6460, 6463, 3, 570, 285, 0, 6461, 6463, 5, 226, 0, 0, 6462, 6459, 1, 0, 0, 0, 6462, 6461, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6571, 1, 0, 0, 0, 6464, 6465, 5, 225, 0, 0, 6465, 6466, 7, 101, 0, 0, 6466, 6468, 5, 238, 0, 0, 6467, 6469, 3, 610, 305, 0, 6468, 6467, 1, 0, 0, 0, 6468, 6469, 1, 0, 0, 0, 6469, 6471, 1, 0, 0, 0, 6470, 6472, 5, 226, 0, 0, 6471, 6470, 1, 0, 0, 0, 6471, 6472, 1, 0, 0, 0, 6472, 6571, 1, 0, 0, 0, 6473, 6474, 5, 225, 0, 0, 6474, 6476, 7, 102, 0, 0, 6475, 6477, 3, 610, 305, 0, 6476, 6475, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 6479, 1, 0, 0, 0, 6478, 6480, 5, 226, 0, 0, 6479, 6478, 1, 0, 0, 0, 6479, 6480, 1, 0, 0, 0, 6480, 6571, 1, 0, 0, 0, 6481, 6482, 5, 518, 0, 0, 6482, 6484, 5, 223, 0, 0, 6483, 6485, 3, 610, 305, 0, 6484, 6483, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6488, 5, 226, 0, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6571, 1, 0, 0, 0, 6489, 6491, 7, 103, 0, 0, 6490, 6492, 3, 610, 305, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6496, 1, 0, 0, 0, 6493, 6495, 7, 104, 0, 0, 6494, 6493, 1, 0, 0, 0, 6495, 6498, 1, 0, 0, 0, 6496, 6494, 1, 0, 0, 0, 6496, 6497, 1, 0, 0, 0, 6497, 6571, 1, 0, 0, 0, 6498, 6496, 1, 0, 0, 0, 6499, 6501, 5, 208, 0, 0, 6500, 6502, 3, 612, 306, 0, 6501, 6500, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6506, 1, 0, 0, 0, 6503, 6505, 7, 104, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 6508, 1, 0, 0, 0, 6506, 6504, 1, 0, 0, 0, 6506, 6507, 1, 0, 0, 0, 6507, 6571, 1, 0, 0, 0, 6508, 6506, 1, 0, 0, 0, 6509, 6511, 5, 209, 0, 0, 6510, 6512, 5, 210, 0, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 6514, 1, 0, 0, 0, 6513, 6515, 3, 612, 306, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6519, 1, 0, 0, 0, 6516, 6518, 7, 104, 0, 0, 6517, 6516, 1, 0, 0, 0, 6518, 6521, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6520, 1, 0, 0, 0, 6520, 6571, 1, 0, 0, 0, 6521, 6519, 1, 0, 0, 0, 6522, 6524, 7, 105, 0, 0, 6523, 6525, 3, 614, 307, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6529, 1, 0, 0, 0, 6526, 6528, 7, 104, 0, 0, 6527, 6526, 1, 0, 0, 0, 6528, 6531, 1, 0, 0, 0, 6529, 6527, 1, 0, 0, 0, 6529, 6530, 1, 0, 0, 0, 6530, 6571, 1, 0, 0, 0, 6531, 6529, 1, 0, 0, 0, 6532, 6571, 7, 106, 0, 0, 6533, 6535, 7, 107, 0, 0, 6534, 6536, 3, 610, 305, 0, 6535, 6534, 1, 0, 0, 0, 6535, 6536, 1, 0, 0, 0, 6536, 6571, 1, 0, 0, 0, 6537, 6538, 7, 108, 0, 0, 6538, 6540, 3, 606, 303, 0, 6539, 6541, 5, 226, 0, 0, 6540, 6539, 1, 0, 0, 0, 6540, 6541, 1, 0, 0, 0, 6541, 6545, 1, 0, 0, 0, 6542, 6543, 3, 58, 29, 0, 6543, 6544, 3, 568, 284, 0, 6544, 6546, 1, 0, 0, 0, 6545, 6542, 1, 0, 0, 0, 6545, 6546, 1, 0, 0, 0, 6546, 6571, 1, 0, 0, 0, 6547, 6550, 7, 109, 0, 0, 6548, 6549, 5, 1012, 0, 0, 6549, 6551, 3, 590, 295, 0, 6550, 6548, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 6571, 1, 0, 0, 0, 6552, 6554, 5, 231, 0, 0, 6553, 6555, 5, 223, 0, 0, 6554, 6553, 1, 0, 0, 0, 6554, 6555, 1, 0, 0, 0, 6555, 6557, 1, 0, 0, 0, 6556, 6558, 5, 226, 0, 0, 6557, 6556, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6562, 1, 0, 0, 0, 6559, 6560, 3, 58, 29, 0, 6560, 6561, 3, 568, 284, 0, 6561, 6563, 1, 0, 0, 0, 6562, 6559, 1, 0, 0, 0, 6562, 6563, 1, 0, 0, 0, 6563, 6566, 1, 0, 0, 0, 6564, 6565, 5, 27, 0, 0, 6565, 6567, 3, 570, 285, 0, 6566, 6564, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 6571, 1, 0, 0, 0, 6568, 6569, 5, 231, 0, 0, 6569, 6571, 5, 227, 0, 0, 6570, 6444, 1, 0, 0, 0, 6570, 6464, 1, 0, 0, 0, 6570, 6473, 1, 0, 0, 0, 6570, 6481, 1, 0, 0, 0, 6570, 6489, 1, 0, 0, 0, 6570, 6499, 1, 0, 0, 0, 6570, 6509, 1, 0, 0, 0, 6570, 6522, 1, 0, 0, 0, 6570, 6532, 1, 0, 0, 0, 6570, 6533, 1, 0, 0, 0, 6570, 6537, 1, 0, 0, 0, 6570, 6547, 1, 0, 0, 0, 6570, 6552, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6571, 605, 1, 0, 0, 0, 6572, 6573, 5, 1133, 0, 0, 6573, 6578, 5, 1148, 0, 0, 6574, 6575, 5, 1135, 0, 0, 6575, 6577, 5, 1148, 0, 0, 6576, 6574, 1, 0, 0, 0, 6577, 6580, 1, 0, 0, 0, 6578, 6576, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 6581, 1, 0, 0, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6582, 5, 1134, 0, 0, 6582, 607, 1, 0, 0, 0, 6583, 6585, 7, 110, 0, 0, 6584, 6586, 3, 610, 305, 0, 6585, 6584, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 6606, 1, 0, 0, 0, 6587, 6589, 5, 222, 0, 0, 6588, 6590, 3, 610, 305, 0, 6589, 6588, 1, 0, 0, 0, 6589, 6590, 1, 0, 0, 0, 6590, 6594, 1, 0, 0, 0, 6591, 6592, 3, 58, 29, 0, 6592, 6593, 3, 568, 284, 0, 6593, 6595, 1, 0, 0, 0, 6594, 6591, 1, 0, 0, 0, 6594, 6595, 1, 0, 0, 0, 6595, 6606, 1, 0, 0, 0, 6596, 6606, 7, 111, 0, 0, 6597, 6599, 7, 112, 0, 0, 6598, 6600, 3, 614, 307, 0, 6599, 6598, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6606, 1, 0, 0, 0, 6601, 6603, 7, 113, 0, 0, 6602, 6604, 7, 114, 0, 0, 6603, 6602, 1, 0, 0, 0, 6603, 6604, 1, 0, 0, 0, 6604, 6606, 1, 0, 0, 0, 6605, 6583, 1, 0, 0, 0, 6605, 6587, 1, 0, 0, 0, 6605, 6596, 1, 0, 0, 0, 6605, 6597, 1, 0, 0, 0, 6605, 6601, 1, 0, 0, 0, 6606, 6608, 1, 0, 0, 0, 6607, 6609, 5, 11, 0, 0, 6608, 6607, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 609, 1, 0, 0, 0, 6610, 6611, 5, 1133, 0, 0, 6611, 6612, 3, 590, 295, 0, 6612, 6613, 5, 1134, 0, 0, 6613, 611, 1, 0, 0, 0, 6614, 6615, 5, 1133, 0, 0, 6615, 6616, 3, 590, 295, 0, 6616, 6617, 5, 1135, 0, 0, 6617, 6618, 3, 590, 295, 0, 6618, 6619, 5, 1134, 0, 0, 6619, 613, 1, 0, 0, 0, 6620, 6621, 5, 1133, 0, 0, 6621, 6624, 3, 590, 295, 0, 6622, 6623, 5, 1135, 0, 0, 6623, 6625, 3, 590, 295, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6627, 5, 1134, 0, 0, 6627, 615, 1, 0, 0, 0, 6628, 6633, 3, 584, 292, 0, 6629, 6630, 5, 1135, 0, 0, 6630, 6632, 3, 584, 292, 0, 6631, 6629, 1, 0, 0, 0, 6632, 6635, 1, 0, 0, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 617, 1, 0, 0, 0, 6635, 6633, 1, 0, 0, 0, 6636, 6641, 3, 556, 278, 0, 6637, 6638, 5, 1135, 0, 0, 6638, 6640, 3, 556, 278, 0, 6639, 6637, 1, 0, 0, 0, 6640, 6643, 1, 0, 0, 0, 6641, 6639, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 619, 1, 0, 0, 0, 6643, 6641, 1, 0, 0, 0, 6644, 6649, 3, 550, 275, 0, 6645, 6646, 5, 1135, 0, 0, 6646, 6648, 3, 550, 275, 0, 6647, 6645, 1, 0, 0, 0, 6648, 6651, 1, 0, 0, 0, 6649, 6647, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 621, 1, 0, 0, 0, 6651, 6649, 1, 0, 0, 0, 6652, 6653, 5, 1133, 0, 0, 6653, 6658, 3, 558, 279, 0, 6654, 6655, 5, 1135, 0, 0, 6655, 6657, 3, 558, 279, 0, 6656, 6654, 1, 0, 0, 0, 6657, 6660, 1, 0, 0, 0, 6658, 6656, 1, 0, 0, 0, 6658, 6659, 1, 0, 0, 0, 6659, 6661, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 6662, 5, 1134, 0, 0, 6662, 623, 1, 0, 0, 0, 6663, 6668, 3, 688, 344, 0, 6664, 6665, 5, 1135, 0, 0, 6665, 6667, 3, 688, 344, 0, 6666, 6664, 1, 0, 0, 0, 6667, 6670, 1, 0, 0, 0, 6668, 6666, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 625, 1, 0, 0, 0, 6670, 6668, 1, 0, 0, 0, 6671, 6676, 3, 638, 319, 0, 6672, 6673, 5, 1135, 0, 0, 6673, 6675, 3, 638, 319, 0, 6674, 6672, 1, 0, 0, 0, 6675, 6678, 1, 0, 0, 0, 6676, 6674, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 627, 1, 0, 0, 0, 6678, 6676, 1, 0, 0, 0, 6679, 6684, 3, 602, 301, 0, 6680, 6681, 5, 1135, 0, 0, 6681, 6683, 3, 602, 301, 0, 6682, 6680, 1, 0, 0, 0, 6683, 6686, 1, 0, 0, 0, 6684, 6682, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 629, 1, 0, 0, 0, 6686, 6684, 1, 0, 0, 0, 6687, 6692, 5, 1148, 0, 0, 6688, 6689, 5, 1135, 0, 0, 6689, 6691, 5, 1148, 0, 0, 6690, 6688, 1, 0, 0, 0, 6691, 6694, 1, 0, 0, 0, 6692, 6690, 1, 0, 0, 0, 6692, 6693, 1, 0, 0, 0, 6693, 631, 1, 0, 0, 0, 6694, 6692, 1, 0, 0, 0, 6695, 6700, 5, 1159, 0, 0, 6696, 6697, 5, 1135, 0, 0, 6697, 6699, 5, 1159, 0, 0, 6698, 6696, 1, 0, 0, 0, 6699, 6702, 1, 0, 0, 0, 6700, 6698, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 633, 1, 0, 0, 0, 6702, 6700, 1, 0, 0, 0, 6703, 6730, 5, 116, 0, 0, 6704, 6705, 5, 23, 0, 0, 6705, 6706, 5, 1133, 0, 0, 6706, 6707, 3, 688, 344, 0, 6707, 6708, 5, 12, 0, 0, 6708, 6709, 3, 608, 304, 0, 6709, 6710, 5, 1134, 0, 0, 6710, 6730, 1, 0, 0, 0, 6711, 6713, 3, 694, 347, 0, 6712, 6711, 1, 0, 0, 0, 6712, 6713, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6730, 3, 602, 301, 0, 6715, 6719, 3, 636, 318, 0, 6716, 6717, 5, 118, 0, 0, 6717, 6718, 5, 184, 0, 0, 6718, 6720, 3, 636, 318, 0, 6719, 6716, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6730, 1, 0, 0, 0, 6721, 6722, 5, 1133, 0, 0, 6722, 6723, 3, 688, 344, 0, 6723, 6724, 5, 1134, 0, 0, 6724, 6730, 1, 0, 0, 0, 6725, 6726, 5, 1133, 0, 0, 6726, 6727, 3, 548, 274, 0, 6727, 6728, 5, 1134, 0, 0, 6728, 6730, 1, 0, 0, 0, 6729, 6703, 1, 0, 0, 0, 6729, 6704, 1, 0, 0, 0, 6729, 6712, 1, 0, 0, 0, 6729, 6715, 1, 0, 0, 0, 6729, 6721, 1, 0, 0, 0, 6729, 6725, 1, 0, 0, 0, 6730, 635, 1, 0, 0, 0, 6731, 6737, 7, 115, 0, 0, 6732, 6734, 5, 1133, 0, 0, 6733, 6735, 3, 590, 295, 0, 6734, 6733, 1, 0, 0, 0, 6734, 6735, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 6738, 5, 1134, 0, 0, 6737, 6732, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6746, 1, 0, 0, 0, 6739, 6740, 5, 323, 0, 0, 6740, 6742, 5, 1133, 0, 0, 6741, 6743, 3, 590, 295, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 6744, 1, 0, 0, 0, 6744, 6746, 5, 1134, 0, 0, 6745, 6731, 1, 0, 0, 0, 6745, 6739, 1, 0, 0, 0, 6746, 637, 1, 0, 0, 0, 6747, 6750, 3, 688, 344, 0, 6748, 6750, 5, 42, 0, 0, 6749, 6747, 1, 0, 0, 0, 6749, 6748, 1, 0, 0, 0, 6750, 639, 1, 0, 0, 0, 6751, 6752, 5, 77, 0, 0, 6752, 6753, 5, 60, 0, 0, 6753, 641, 1, 0, 0, 0, 6754, 6755, 5, 77, 0, 0, 6755, 6756, 5, 114, 0, 0, 6756, 6757, 5, 60, 0, 0, 6757, 643, 1, 0, 0, 0, 6758, 6759, 5, 123, 0, 0, 6759, 6760, 5, 141, 0, 0, 6760, 645, 1, 0, 0, 0, 6761, 6762, 5, 674, 0, 0, 6762, 6765, 3, 590, 295, 0, 6763, 6765, 5, 527, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6763, 1, 0, 0, 0, 6765, 647, 1, 0, 0, 0, 6766, 6785, 3, 650, 325, 0, 6767, 6785, 3, 658, 329, 0, 6768, 6785, 3, 660, 330, 0, 6769, 6770, 3, 680, 340, 0, 6770, 6772, 5, 1133, 0, 0, 6771, 6773, 3, 684, 342, 0, 6772, 6771, 1, 0, 0, 0, 6772, 6773, 1, 0, 0, 0, 6773, 6774, 1, 0, 0, 0, 6774, 6775, 5, 1134, 0, 0, 6775, 6785, 1, 0, 0, 0, 6776, 6777, 3, 548, 274, 0, 6777, 6779, 5, 1133, 0, 0, 6778, 6780, 3, 684, 342, 0, 6779, 6778, 1, 0, 0, 0, 6779, 6780, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6782, 5, 1134, 0, 0, 6782, 6785, 1, 0, 0, 0, 6783, 6785, 3, 682, 341, 0, 6784, 6766, 1, 0, 0, 0, 6784, 6767, 1, 0, 0, 0, 6784, 6768, 1, 0, 0, 0, 6784, 6769, 1, 0, 0, 0, 6784, 6776, 1, 0, 0, 0, 6784, 6783, 1, 0, 0, 0, 6785, 649, 1, 0, 0, 0, 6786, 6789, 7, 116, 0, 0, 6787, 6788, 5, 1133, 0, 0, 6788, 6790, 5, 1134, 0, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6966, 1, 0, 0, 0, 6791, 6966, 3, 60, 30, 0, 6792, 6793, 5, 32, 0, 0, 6793, 6794, 5, 1133, 0, 0, 6794, 6795, 3, 688, 344, 0, 6795, 6796, 5, 1135, 0, 0, 6796, 6797, 3, 608, 304, 0, 6797, 6798, 5, 1134, 0, 0, 6798, 6966, 1, 0, 0, 0, 6799, 6800, 5, 32, 0, 0, 6800, 6801, 5, 1133, 0, 0, 6801, 6802, 3, 688, 344, 0, 6802, 6803, 5, 187, 0, 0, 6803, 6804, 3, 568, 284, 0, 6804, 6805, 5, 1134, 0, 0, 6805, 6966, 1, 0, 0, 0, 6806, 6807, 5, 23, 0, 0, 6807, 6808, 5, 1133, 0, 0, 6808, 6809, 3, 688, 344, 0, 6809, 6810, 5, 12, 0, 0, 6810, 6811, 3, 608, 304, 0, 6811, 6812, 5, 1134, 0, 0, 6812, 6966, 1, 0, 0, 0, 6813, 6814, 5, 188, 0, 0, 6814, 6815, 5, 1133, 0, 0, 6815, 6816, 3, 556, 278, 0, 6816, 6817, 5, 1134, 0, 0, 6817, 6966, 1, 0, 0, 0, 6818, 6819, 5, 22, 0, 0, 6819, 6821, 3, 688, 344, 0, 6820, 6822, 3, 652, 326, 0, 6821, 6820, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 6821, 1, 0, 0, 0, 6823, 6824, 1, 0, 0, 0, 6824, 6827, 1, 0, 0, 0, 6825, 6826, 5, 53, 0, 0, 6826, 6828, 3, 686, 343, 0, 6827, 6825, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 1, 0, 0, 0, 6829, 6830, 5, 407, 0, 0, 6830, 6966, 1, 0, 0, 0, 6831, 6833, 5, 22, 0, 0, 6832, 6834, 3, 652, 326, 0, 6833, 6832, 1, 0, 0, 0, 6834, 6835, 1, 0, 0, 0, 6835, 6833, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6839, 1, 0, 0, 0, 6837, 6838, 5, 53, 0, 0, 6838, 6840, 3, 686, 343, 0, 6839, 6837, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 5, 407, 0, 0, 6842, 6966, 1, 0, 0, 0, 6843, 6844, 5, 222, 0, 0, 6844, 6845, 5, 1133, 0, 0, 6845, 6848, 3, 684, 342, 0, 6846, 6847, 5, 187, 0, 0, 6847, 6849, 3, 568, 284, 0, 6848, 6846, 1, 0, 0, 0, 6848, 6849, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 5, 1134, 0, 0, 6851, 6966, 1, 0, 0, 0, 6852, 6853, 5, 324, 0, 0, 6853, 6856, 5, 1133, 0, 0, 6854, 6857, 3, 594, 297, 0, 6855, 6857, 3, 688, 344, 0, 6856, 6854, 1, 0, 0, 0, 6856, 6855, 1, 0, 0, 0, 6857, 6858, 1, 0, 0, 0, 6858, 6861, 5, 80, 0, 0, 6859, 6862, 3, 594, 297, 0, 6860, 6862, 3, 688, 344, 0, 6861, 6859, 1, 0, 0, 0, 6861, 6860, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6864, 5, 1134, 0, 0, 6864, 6966, 1, 0, 0, 0, 6865, 6866, 7, 117, 0, 0, 6866, 6869, 5, 1133, 0, 0, 6867, 6870, 3, 594, 297, 0, 6868, 6870, 3, 688, 344, 0, 6869, 6867, 1, 0, 0, 0, 6869, 6868, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 6874, 5, 68, 0, 0, 6872, 6875, 3, 590, 295, 0, 6873, 6875, 3, 688, 344, 0, 6874, 6872, 1, 0, 0, 0, 6874, 6873, 1, 0, 0, 0, 6875, 6881, 1, 0, 0, 0, 6876, 6879, 5, 65, 0, 0, 6877, 6880, 3, 590, 295, 0, 6878, 6880, 3, 688, 344, 0, 6879, 6877, 1, 0, 0, 0, 6879, 6878, 1, 0, 0, 0, 6880, 6882, 1, 0, 0, 0, 6881, 6876, 1, 0, 0, 0, 6881, 6882, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6884, 5, 1134, 0, 0, 6884, 6966, 1, 0, 0, 0, 6885, 6886, 5, 328, 0, 0, 6886, 6887, 5, 1133, 0, 0, 6887, 6890, 7, 118, 0, 0, 6888, 6891, 3, 594, 297, 0, 6889, 6891, 3, 688, 344, 0, 6890, 6888, 1, 0, 0, 0, 6890, 6889, 1, 0, 0, 0, 6890, 6891, 1, 0, 0, 0, 6891, 6892, 1, 0, 0, 0, 6892, 6895, 5, 68, 0, 0, 6893, 6896, 3, 594, 297, 0, 6894, 6896, 3, 688, 344, 0, 6895, 6893, 1, 0, 0, 0, 6895, 6894, 1, 0, 0, 0, 6896, 6897, 1, 0, 0, 0, 6897, 6898, 5, 1134, 0, 0, 6898, 6966, 1, 0, 0, 0, 6899, 6900, 5, 328, 0, 0, 6900, 6903, 5, 1133, 0, 0, 6901, 6904, 3, 594, 297, 0, 6902, 6904, 3, 688, 344, 0, 6903, 6901, 1, 0, 0, 0, 6903, 6902, 1, 0, 0, 0, 6904, 6905, 1, 0, 0, 0, 6905, 6908, 5, 68, 0, 0, 6906, 6909, 3, 594, 297, 0, 6907, 6909, 3, 688, 344, 0, 6908, 6906, 1, 0, 0, 0, 6908, 6907, 1, 0, 0, 0, 6909, 6910, 1, 0, 0, 0, 6910, 6911, 5, 1134, 0, 0, 6911, 6966, 1, 0, 0, 0, 6912, 6913, 5, 1103, 0, 0, 6913, 6916, 5, 1133, 0, 0, 6914, 6917, 3, 594, 297, 0, 6915, 6917, 3, 688, 344, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 6924, 1, 0, 0, 0, 6918, 6919, 5, 12, 0, 0, 6919, 6920, 7, 119, 0, 0, 6920, 6921, 5, 1133, 0, 0, 6921, 6922, 3, 590, 295, 0, 6922, 6923, 5, 1134, 0, 0, 6923, 6925, 1, 0, 0, 0, 6924, 6918, 1, 0, 0, 0, 6924, 6925, 1, 0, 0, 0, 6925, 6927, 1, 0, 0, 0, 6926, 6928, 3, 654, 327, 0, 6927, 6926, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 6930, 5, 1134, 0, 0, 6930, 6966, 1, 0, 0, 0, 6931, 6932, 5, 321, 0, 0, 6932, 6933, 5, 1133, 0, 0, 6933, 6934, 3, 70, 35, 0, 6934, 6937, 5, 68, 0, 0, 6935, 6938, 3, 594, 297, 0, 6936, 6938, 3, 688, 344, 0, 6937, 6935, 1, 0, 0, 0, 6937, 6936, 1, 0, 0, 0, 6938, 6939, 1, 0, 0, 0, 6939, 6940, 5, 1134, 0, 0, 6940, 6966, 1, 0, 0, 0, 6941, 6942, 5, 900, 0, 0, 6942, 6943, 5, 1133, 0, 0, 6943, 6944, 7, 120, 0, 0, 6944, 6945, 5, 1135, 0, 0, 6945, 6946, 3, 594, 297, 0, 6946, 6947, 5, 1134, 0, 0, 6947, 6966, 1, 0, 0, 0, 6948, 6949, 5, 282, 0, 0, 6949, 6950, 5, 1133, 0, 0, 6950, 6951, 3, 688, 344, 0, 6951, 6952, 5, 1135, 0, 0, 6952, 6955, 3, 688, 344, 0, 6953, 6954, 5, 593, 0, 0, 6954, 6956, 3, 608, 304, 0, 6955, 6953, 1, 0, 0, 0, 6955, 6956, 1, 0, 0, 0, 6956, 6958, 1, 0, 0, 0, 6957, 6959, 3, 266, 133, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 6961, 1, 0, 0, 0, 6960, 6962, 3, 268, 134, 0, 6961, 6960, 1, 0, 0, 0, 6961, 6962, 1, 0, 0, 0, 6962, 6963, 1, 0, 0, 0, 6963, 6964, 5, 1134, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6786, 1, 0, 0, 0, 6965, 6791, 1, 0, 0, 0, 6965, 6792, 1, 0, 0, 0, 6965, 6799, 1, 0, 0, 0, 6965, 6806, 1, 0, 0, 0, 6965, 6813, 1, 0, 0, 0, 6965, 6818, 1, 0, 0, 0, 6965, 6831, 1, 0, 0, 0, 6965, 6843, 1, 0, 0, 0, 6965, 6852, 1, 0, 0, 0, 6965, 6865, 1, 0, 0, 0, 6965, 6885, 1, 0, 0, 0, 6965, 6899, 1, 0, 0, 0, 6965, 6912, 1, 0, 0, 0, 6965, 6931, 1, 0, 0, 0, 6965, 6941, 1, 0, 0, 0, 6965, 6948, 1, 0, 0, 0, 6966, 651, 1, 0, 0, 0, 6967, 6968, 5, 189, 0, 0, 6968, 6969, 3, 686, 343, 0, 6969, 6970, 5, 174, 0, 0, 6970, 6971, 3, 686, 343, 0, 6971, 653, 1, 0, 0, 0, 6972, 6973, 5, 472, 0, 0, 6973, 6978, 3, 656, 328, 0, 6974, 6975, 5, 1135, 0, 0, 6975, 6977, 3, 656, 328, 0, 6976, 6974, 1, 0, 0, 0, 6977, 6980, 1, 0, 0, 0, 6978, 6976, 1, 0, 0, 0, 6978, 6979, 1, 0, 0, 0, 6979, 6987, 1, 0, 0, 0, 6980, 6978, 1, 0, 0, 0, 6981, 6982, 5, 472, 0, 0, 6982, 6983, 3, 590, 295, 0, 6983, 6984, 5, 1121, 0, 0, 6984, 6985, 3, 590, 295, 0, 6985, 6987, 1, 0, 0, 0, 6986, 6972, 1, 0, 0, 0, 6986, 6981, 1, 0, 0, 0, 6987, 655, 1, 0, 0, 0, 6988, 6990, 3, 590, 295, 0, 6989, 6991, 7, 121, 0, 0, 6990, 6989, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 657, 1, 0, 0, 0, 6992, 6993, 7, 122, 0, 0, 6993, 6995, 5, 1133, 0, 0, 6994, 6996, 7, 44, 0, 0, 6995, 6994, 1, 0, 0, 0, 6995, 6996, 1, 0, 0, 0, 6996, 6997, 1, 0, 0, 0, 6997, 6998, 3, 686, 343, 0, 6998, 7000, 5, 1134, 0, 0, 6999, 7001, 3, 662, 331, 0, 7000, 6999, 1, 0, 0, 0, 7000, 7001, 1, 0, 0, 0, 7001, 7052, 1, 0, 0, 0, 7002, 7003, 5, 290, 0, 0, 7003, 7011, 5, 1133, 0, 0, 7004, 7012, 5, 1117, 0, 0, 7005, 7007, 5, 6, 0, 0, 7006, 7005, 1, 0, 0, 0, 7006, 7007, 1, 0, 0, 0, 7007, 7008, 1, 0, 0, 0, 7008, 7012, 3, 686, 343, 0, 7009, 7010, 5, 49, 0, 0, 7010, 7012, 3, 684, 342, 0, 7011, 7004, 1, 0, 0, 0, 7011, 7006, 1, 0, 0, 0, 7011, 7009, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 7015, 5, 1134, 0, 0, 7014, 7016, 3, 662, 331, 0, 7015, 7014, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 7052, 1, 0, 0, 0, 7017, 7018, 7, 123, 0, 0, 7018, 7020, 5, 1133, 0, 0, 7019, 7021, 5, 6, 0, 0, 7020, 7019, 1, 0, 0, 0, 7020, 7021, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7023, 3, 686, 343, 0, 7023, 7025, 5, 1134, 0, 0, 7024, 7026, 3, 662, 331, 0, 7025, 7024, 1, 0, 0, 0, 7025, 7026, 1, 0, 0, 0, 7026, 7052, 1, 0, 0, 0, 7027, 7028, 5, 294, 0, 0, 7028, 7030, 5, 1133, 0, 0, 7029, 7031, 5, 49, 0, 0, 7030, 7029, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7043, 3, 684, 342, 0, 7033, 7034, 5, 124, 0, 0, 7034, 7035, 5, 19, 0, 0, 7035, 7040, 3, 230, 115, 0, 7036, 7037, 5, 1135, 0, 0, 7037, 7039, 3, 230, 115, 0, 7038, 7036, 1, 0, 0, 0, 7039, 7042, 1, 0, 0, 0, 7040, 7038, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 7044, 1, 0, 0, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7033, 1, 0, 0, 0, 7043, 7044, 1, 0, 0, 0, 7044, 7047, 1, 0, 0, 0, 7045, 7046, 5, 154, 0, 0, 7046, 7048, 5, 1148, 0, 0, 7047, 7045, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7050, 5, 1134, 0, 0, 7050, 7052, 1, 0, 0, 0, 7051, 6992, 1, 0, 0, 0, 7051, 7002, 1, 0, 0, 0, 7051, 7017, 1, 0, 0, 0, 7051, 7027, 1, 0, 0, 0, 7052, 659, 1, 0, 0, 0, 7053, 7054, 7, 124, 0, 0, 7054, 7055, 5, 1133, 0, 0, 7055, 7058, 3, 688, 344, 0, 7056, 7057, 5, 1135, 0, 0, 7057, 7059, 3, 590, 295, 0, 7058, 7056, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7062, 1, 0, 0, 0, 7060, 7061, 5, 1135, 0, 0, 7061, 7063, 3, 590, 295, 0, 7062, 7060, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 5, 1134, 0, 0, 7065, 7066, 3, 662, 331, 0, 7066, 7092, 1, 0, 0, 0, 7067, 7068, 7, 125, 0, 0, 7068, 7069, 5, 1133, 0, 0, 7069, 7070, 3, 688, 344, 0, 7070, 7071, 5, 1134, 0, 0, 7071, 7072, 3, 662, 331, 0, 7072, 7092, 1, 0, 0, 0, 7073, 7074, 7, 126, 0, 0, 7074, 7075, 5, 1133, 0, 0, 7075, 7076, 5, 1134, 0, 0, 7076, 7092, 3, 662, 331, 0, 7077, 7078, 5, 301, 0, 0, 7078, 7079, 5, 1133, 0, 0, 7079, 7080, 3, 688, 344, 0, 7080, 7081, 5, 1135, 0, 0, 7081, 7082, 3, 590, 295, 0, 7082, 7083, 5, 1134, 0, 0, 7083, 7084, 3, 662, 331, 0, 7084, 7092, 1, 0, 0, 0, 7085, 7086, 5, 300, 0, 0, 7086, 7087, 5, 1133, 0, 0, 7087, 7088, 3, 590, 295, 0, 7088, 7089, 5, 1134, 0, 0, 7089, 7090, 3, 662, 331, 0, 7090, 7092, 1, 0, 0, 0, 7091, 7053, 1, 0, 0, 0, 7091, 7067, 1, 0, 0, 0, 7091, 7073, 1, 0, 0, 0, 7091, 7077, 1, 0, 0, 0, 7091, 7085, 1, 0, 0, 0, 7092, 661, 1, 0, 0, 0, 7093, 7099, 5, 128, 0, 0, 7094, 7095, 5, 1133, 0, 0, 7095, 7096, 3, 664, 332, 0, 7096, 7097, 5, 1134, 0, 0, 7097, 7100, 1, 0, 0, 0, 7098, 7100, 3, 666, 333, 0, 7099, 7094, 1, 0, 0, 0, 7099, 7098, 1, 0, 0, 0, 7100, 663, 1, 0, 0, 0, 7101, 7103, 3, 666, 333, 0, 7102, 7101, 1, 0, 0, 0, 7102, 7103, 1, 0, 0, 0, 7103, 7105, 1, 0, 0, 0, 7104, 7106, 3, 678, 339, 0, 7105, 7104, 1, 0, 0, 0, 7105, 7106, 1, 0, 0, 0, 7106, 7108, 1, 0, 0, 0, 7107, 7109, 3, 228, 114, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7111, 1, 0, 0, 0, 7110, 7112, 3, 668, 334, 0, 7111, 7110, 1, 0, 0, 0, 7111, 7112, 1, 0, 0, 0, 7112, 665, 1, 0, 0, 0, 7113, 7114, 3, 584, 292, 0, 7114, 667, 1, 0, 0, 0, 7115, 7116, 3, 670, 335, 0, 7116, 7117, 3, 672, 336, 0, 7117, 669, 1, 0, 0, 0, 7118, 7119, 7, 127, 0, 0, 7119, 671, 1, 0, 0, 0, 7120, 7123, 3, 676, 338, 0, 7121, 7123, 3, 674, 337, 0, 7122, 7120, 1, 0, 0, 0, 7122, 7121, 1, 0, 0, 0, 7123, 673, 1, 0, 0, 0, 7124, 7125, 5, 16, 0, 0, 7125, 7126, 3, 676, 338, 0, 7126, 7127, 5, 10, 0, 0, 7127, 7128, 3, 676, 338, 0, 7128, 675, 1, 0, 0, 0, 7129, 7130, 5, 35, 0, 0, 7130, 7137, 5, 600, 0, 0, 7131, 7132, 5, 657, 0, 0, 7132, 7137, 7, 128, 0, 0, 7133, 7134, 3, 688, 344, 0, 7134, 7135, 7, 128, 0, 0, 7135, 7137, 1, 0, 0, 0, 7136, 7129, 1, 0, 0, 0, 7136, 7131, 1, 0, 0, 0, 7136, 7133, 1, 0, 0, 0, 7137, 677, 1, 0, 0, 0, 7138, 7139, 5, 129, 0, 0, 7139, 7140, 5, 19, 0, 0, 7140, 7145, 3, 688, 344, 0, 7141, 7142, 5, 1135, 0, 0, 7142, 7144, 3, 688, 344, 0, 7143, 7141, 1, 0, 0, 0, 7144, 7147, 1, 0, 0, 0, 7145, 7143, 1, 0, 0, 0, 7145, 7146, 1, 0, 0, 0, 7146, 679, 1, 0, 0, 0, 7147, 7145, 1, 0, 0, 0, 7148, 7173, 3, 720, 360, 0, 7149, 7173, 5, 747, 0, 0, 7150, 7173, 5, 317, 0, 0, 7151, 7173, 5, 313, 0, 0, 7152, 7173, 5, 314, 0, 0, 7153, 7173, 5, 315, 0, 0, 7154, 7173, 5, 318, 0, 0, 7155, 7173, 5, 319, 0, 0, 7156, 7173, 5, 320, 0, 0, 7157, 7173, 5, 77, 0, 0, 7158, 7173, 5, 85, 0, 0, 7159, 7173, 5, 316, 0, 0, 7160, 7173, 5, 322, 0, 0, 7161, 7173, 5, 508, 0, 0, 7162, 7173, 5, 323, 0, 0, 7163, 7173, 5, 140, 0, 0, 7164, 7173, 5, 141, 0, 0, 7165, 7173, 5, 325, 0, 0, 7166, 7173, 5, 326, 0, 0, 7167, 7173, 5, 327, 0, 0, 7168, 7173, 5, 328, 0, 0, 7169, 7173, 5, 329, 0, 0, 7170, 7173, 5, 330, 0, 0, 7171, 7173, 5, 331, 0, 0, 7172, 7148, 1, 0, 0, 0, 7172, 7149, 1, 0, 0, 0, 7172, 7150, 1, 0, 0, 0, 7172, 7151, 1, 0, 0, 0, 7172, 7152, 1, 0, 0, 0, 7172, 7153, 1, 0, 0, 0, 7172, 7154, 1, 0, 0, 0, 7172, 7155, 1, 0, 0, 0, 7172, 7156, 1, 0, 0, 0, 7172, 7157, 1, 0, 0, 0, 7172, 7158, 1, 0, 0, 0, 7172, 7159, 1, 0, 0, 0, 7172, 7160, 1, 0, 0, 0, 7172, 7161, 1, 0, 0, 0, 7172, 7162, 1, 0, 0, 0, 7172, 7163, 1, 0, 0, 0, 7172, 7164, 1, 0, 0, 0, 7172, 7165, 1, 0, 0, 0, 7172, 7166, 1, 0, 0, 0, 7172, 7167, 1, 0, 0, 0, 7172, 7168, 1, 0, 0, 0, 7172, 7169, 1, 0, 0, 0, 7172, 7170, 1, 0, 0, 0, 7172, 7171, 1, 0, 0, 0, 7173, 681, 1, 0, 0, 0, 7174, 7175, 7, 129, 0, 0, 7175, 7176, 5, 1133, 0, 0, 7176, 7177, 3, 686, 343, 0, 7177, 7178, 5, 1134, 0, 0, 7178, 683, 1, 0, 0, 0, 7179, 7184, 3, 602, 301, 0, 7180, 7184, 3, 556, 278, 0, 7181, 7184, 3, 648, 324, 0, 7182, 7184, 3, 688, 344, 0, 7183, 7179, 1, 0, 0, 0, 7183, 7180, 1, 0, 0, 0, 7183, 7181, 1, 0, 0, 0, 7183, 7182, 1, 0, 0, 0, 7184, 7194, 1, 0, 0, 0, 7185, 7190, 5, 1135, 0, 0, 7186, 7191, 3, 602, 301, 0, 7187, 7191, 3, 556, 278, 0, 7188, 7191, 3, 648, 324, 0, 7189, 7191, 3, 688, 344, 0, 7190, 7186, 1, 0, 0, 0, 7190, 7187, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7190, 7189, 1, 0, 0, 0, 7191, 7193, 1, 0, 0, 0, 7192, 7185, 1, 0, 0, 0, 7193, 7196, 1, 0, 0, 0, 7194, 7192, 1, 0, 0, 0, 7194, 7195, 1, 0, 0, 0, 7195, 685, 1, 0, 0, 0, 7196, 7194, 1, 0, 0, 0, 7197, 7202, 3, 602, 301, 0, 7198, 7202, 3, 556, 278, 0, 7199, 7202, 3, 648, 324, 0, 7200, 7202, 3, 688, 344, 0, 7201, 7197, 1, 0, 0, 0, 7201, 7198, 1, 0, 0, 0, 7201, 7199, 1, 0, 0, 0, 7201, 7200, 1, 0, 0, 0, 7202, 687, 1, 0, 0, 0, 7203, 7204, 6, 344, -1, 0, 7204, 7205, 7, 130, 0, 0, 7205, 7215, 3, 688, 344, 4, 7206, 7207, 3, 690, 345, 0, 7207, 7209, 5, 88, 0, 0, 7208, 7210, 5, 114, 0, 0, 7209, 7208, 1, 0, 0, 0, 7209, 7210, 1, 0, 0, 0, 7210, 7211, 1, 0, 0, 0, 7211, 7212, 7, 131, 0, 0, 7212, 7215, 1, 0, 0, 0, 7213, 7215, 3, 690, 345, 0, 7214, 7203, 1, 0, 0, 0, 7214, 7206, 1, 0, 0, 0, 7214, 7213, 1, 0, 0, 0, 7215, 7222, 1, 0, 0, 0, 7216, 7217, 10, 3, 0, 0, 7217, 7218, 3, 698, 349, 0, 7218, 7219, 3, 688, 344, 4, 7219, 7221, 1, 0, 0, 0, 7220, 7216, 1, 0, 0, 0, 7221, 7224, 1, 0, 0, 0, 7222, 7220, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 689, 1, 0, 0, 0, 7224, 7222, 1, 0, 0, 0, 7225, 7226, 6, 345, -1, 0, 7226, 7227, 3, 692, 346, 0, 7227, 7292, 1, 0, 0, 0, 7228, 7229, 10, 8, 0, 0, 7229, 7230, 3, 696, 348, 0, 7230, 7231, 3, 690, 345, 9, 7231, 7291, 1, 0, 0, 0, 7232, 7234, 10, 6, 0, 0, 7233, 7235, 5, 114, 0, 0, 7234, 7233, 1, 0, 0, 0, 7234, 7235, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 5, 16, 0, 0, 7237, 7238, 3, 690, 345, 0, 7238, 7239, 5, 10, 0, 0, 7239, 7240, 3, 690, 345, 7, 7240, 7291, 1, 0, 0, 0, 7241, 7242, 10, 5, 0, 0, 7242, 7243, 5, 620, 0, 0, 7243, 7244, 5, 98, 0, 0, 7244, 7291, 3, 690, 345, 6, 7245, 7247, 10, 3, 0, 0, 7246, 7248, 5, 114, 0, 0, 7247, 7246, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7250, 7, 132, 0, 0, 7250, 7291, 3, 690, 345, 4, 7251, 7253, 10, 10, 0, 0, 7252, 7254, 5, 114, 0, 0, 7253, 7252, 1, 0, 0, 0, 7253, 7254, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7256, 5, 80, 0, 0, 7256, 7259, 5, 1133, 0, 0, 7257, 7260, 3, 198, 99, 0, 7258, 7260, 3, 624, 312, 0, 7259, 7257, 1, 0, 0, 0, 7259, 7258, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7262, 5, 1134, 0, 0, 7262, 7291, 1, 0, 0, 0, 7263, 7264, 10, 9, 0, 0, 7264, 7265, 5, 88, 0, 0, 7265, 7291, 3, 600, 300, 0, 7266, 7267, 10, 7, 0, 0, 7267, 7268, 3, 696, 348, 0, 7268, 7269, 7, 133, 0, 0, 7269, 7270, 5, 1133, 0, 0, 7270, 7271, 3, 198, 99, 0, 7271, 7272, 5, 1134, 0, 0, 7272, 7291, 1, 0, 0, 0, 7273, 7275, 10, 4, 0, 0, 7274, 7276, 5, 114, 0, 0, 7275, 7274, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7278, 5, 98, 0, 0, 7278, 7281, 3, 690, 345, 0, 7279, 7280, 5, 413, 0, 0, 7280, 7282, 5, 1148, 0, 0, 7281, 7279, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7291, 1, 0, 0, 0, 7283, 7284, 10, 2, 0, 0, 7284, 7285, 5, 505, 0, 0, 7285, 7286, 5, 533, 0, 0, 7286, 7287, 5, 1133, 0, 0, 7287, 7288, 3, 690, 345, 0, 7288, 7289, 5, 1134, 0, 0, 7289, 7291, 1, 0, 0, 0, 7290, 7228, 1, 0, 0, 0, 7290, 7232, 1, 0, 0, 0, 7290, 7241, 1, 0, 0, 0, 7290, 7245, 1, 0, 0, 0, 7290, 7251, 1, 0, 0, 0, 7290, 7263, 1, 0, 0, 0, 7290, 7266, 1, 0, 0, 0, 7290, 7273, 1, 0, 0, 0, 7290, 7283, 1, 0, 0, 0, 7291, 7294, 1, 0, 0, 0, 7292, 7290, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 691, 1, 0, 0, 0, 7294, 7292, 1, 0, 0, 0, 7295, 7296, 6, 346, -1, 0, 7296, 7344, 3, 602, 301, 0, 7297, 7344, 3, 556, 278, 0, 7298, 7344, 3, 648, 324, 0, 7299, 7344, 3, 566, 283, 0, 7300, 7301, 3, 694, 347, 0, 7301, 7302, 3, 692, 346, 12, 7302, 7344, 1, 0, 0, 0, 7303, 7304, 5, 226, 0, 0, 7304, 7344, 3, 692, 346, 11, 7305, 7306, 5, 1159, 0, 0, 7306, 7307, 5, 1108, 0, 0, 7307, 7344, 3, 692, 346, 10, 7308, 7309, 5, 1133, 0, 0, 7309, 7314, 3, 688, 344, 0, 7310, 7311, 5, 1135, 0, 0, 7311, 7313, 3, 688, 344, 0, 7312, 7310, 1, 0, 0, 0, 7313, 7316, 1, 0, 0, 0, 7314, 7312, 1, 0, 0, 0, 7314, 7315, 1, 0, 0, 0, 7315, 7317, 1, 0, 0, 0, 7316, 7314, 1, 0, 0, 0, 7317, 7318, 5, 1134, 0, 0, 7318, 7344, 1, 0, 0, 0, 7319, 7320, 5, 600, 0, 0, 7320, 7321, 5, 1133, 0, 0, 7321, 7324, 3, 688, 344, 0, 7322, 7323, 5, 1135, 0, 0, 7323, 7325, 3, 688, 344, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7324, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 7328, 1, 0, 0, 0, 7328, 7329, 5, 1134, 0, 0, 7329, 7344, 1, 0, 0, 0, 7330, 7331, 5, 60, 0, 0, 7331, 7332, 5, 1133, 0, 0, 7332, 7333, 3, 198, 99, 0, 7333, 7334, 5, 1134, 0, 0, 7334, 7344, 1, 0, 0, 0, 7335, 7336, 5, 1133, 0, 0, 7336, 7337, 3, 198, 99, 0, 7337, 7338, 5, 1134, 0, 0, 7338, 7344, 1, 0, 0, 0, 7339, 7340, 5, 86, 0, 0, 7340, 7341, 3, 688, 344, 0, 7341, 7342, 3, 70, 35, 0, 7342, 7344, 1, 0, 0, 0, 7343, 7295, 1, 0, 0, 0, 7343, 7297, 1, 0, 0, 0, 7343, 7298, 1, 0, 0, 0, 7343, 7299, 1, 0, 0, 0, 7343, 7300, 1, 0, 0, 0, 7343, 7303, 1, 0, 0, 0, 7343, 7305, 1, 0, 0, 0, 7343, 7308, 1, 0, 0, 0, 7343, 7319, 1, 0, 0, 0, 7343, 7330, 1, 0, 0, 0, 7343, 7335, 1, 0, 0, 0, 7343, 7339, 1, 0, 0, 0, 7344, 7366, 1, 0, 0, 0, 7345, 7346, 10, 4, 0, 0, 7346, 7347, 3, 700, 350, 0, 7347, 7348, 3, 692, 346, 5, 7348, 7365, 1, 0, 0, 0, 7349, 7350, 10, 3, 0, 0, 7350, 7351, 3, 702, 351, 0, 7351, 7352, 3, 692, 346, 4, 7352, 7365, 1, 0, 0, 0, 7353, 7354, 10, 2, 0, 0, 7354, 7355, 3, 704, 352, 0, 7355, 7356, 3, 692, 346, 3, 7356, 7365, 1, 0, 0, 0, 7357, 7358, 10, 1, 0, 0, 7358, 7359, 3, 706, 353, 0, 7359, 7360, 3, 692, 346, 2, 7360, 7365, 1, 0, 0, 0, 7361, 7362, 10, 14, 0, 0, 7362, 7363, 5, 27, 0, 0, 7363, 7365, 3, 570, 285, 0, 7364, 7345, 1, 0, 0, 0, 7364, 7349, 1, 0, 0, 0, 7364, 7353, 1, 0, 0, 0, 7364, 7357, 1, 0, 0, 0, 7364, 7361, 1, 0, 0, 0, 7365, 7368, 1, 0, 0, 0, 7366, 7364, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 693, 1, 0, 0, 0, 7368, 7366, 1, 0, 0, 0, 7369, 7370, 7, 134, 0, 0, 7370, 695, 1, 0, 0, 0, 7371, 7386, 5, 1124, 0, 0, 7372, 7386, 5, 1125, 0, 0, 7373, 7386, 5, 1126, 0, 0, 7374, 7375, 5, 1126, 0, 0, 7375, 7386, 5, 1124, 0, 0, 7376, 7377, 5, 1125, 0, 0, 7377, 7386, 5, 1124, 0, 0, 7378, 7379, 5, 1126, 0, 0, 7379, 7386, 5, 1125, 0, 0, 7380, 7381, 5, 1127, 0, 0, 7381, 7386, 5, 1124, 0, 0, 7382, 7383, 5, 1126, 0, 0, 7383, 7384, 5, 1124, 0, 0, 7384, 7386, 5, 1125, 0, 0, 7385, 7371, 1, 0, 0, 0, 7385, 7372, 1, 0, 0, 0, 7385, 7373, 1, 0, 0, 0, 7385, 7374, 1, 0, 0, 0, 7385, 7376, 1, 0, 0, 0, 7385, 7378, 1, 0, 0, 0, 7385, 7380, 1, 0, 0, 0, 7385, 7382, 1, 0, 0, 0, 7386, 697, 1, 0, 0, 0, 7387, 7395, 5, 10, 0, 0, 7388, 7389, 5, 1130, 0, 0, 7389, 7395, 5, 1130, 0, 0, 7390, 7395, 5, 194, 0, 0, 7391, 7395, 5, 123, 0, 0, 7392, 7393, 5, 1129, 0, 0, 7393, 7395, 5, 1129, 0, 0, 7394, 7387, 1, 0, 0, 0, 7394, 7388, 1, 0, 0, 0, 7394, 7390, 1, 0, 0, 0, 7394, 7391, 1, 0, 0, 0, 7394, 7392, 1, 0, 0, 0, 7395, 699, 1, 0, 0, 0, 7396, 7397, 5, 1126, 0, 0, 7397, 7404, 5, 1126, 0, 0, 7398, 7399, 5, 1125, 0, 0, 7399, 7404, 5, 1125, 0, 0, 7400, 7404, 5, 1130, 0, 0, 7401, 7404, 5, 1131, 0, 0, 7402, 7404, 5, 1129, 0, 0, 7403, 7396, 1, 0, 0, 0, 7403, 7398, 1, 0, 0, 0, 7403, 7400, 1, 0, 0, 0, 7403, 7401, 1, 0, 0, 0, 7403, 7402, 1, 0, 0, 0, 7404, 701, 1, 0, 0, 0, 7405, 7406, 7, 135, 0, 0, 7406, 703, 1, 0, 0, 0, 7407, 7408, 7, 136, 0, 0, 7408, 705, 1, 0, 0, 0, 7409, 7410, 5, 1121, 0, 0, 7410, 7415, 5, 1125, 0, 0, 7411, 7412, 5, 1121, 0, 0, 7412, 7413, 5, 1125, 0, 0, 7413, 7415, 5, 1125, 0, 0, 7414, 7409, 1, 0, 0, 0, 7414, 7411, 1, 0, 0, 0, 7415, 707, 1, 0, 0, 0, 7416, 7417, 7, 137, 0, 0, 7417, 709, 1, 0, 0, 0, 7418, 7419, 7, 138, 0, 0, 7419, 711, 1, 0, 0, 0, 7420, 7421, 7, 139, 0, 0, 7421, 713, 1, 0, 0, 0, 7422, 7423, 7, 140, 0, 0, 7423, 715, 1, 0, 0, 0, 7424, 7425, 7, 141, 0, 0, 7425, 717, 1, 0, 0, 0, 7426, 7427, 7, 142, 0, 0, 7427, 719, 1, 0, 0, 0, 7428, 7429, 7, 143, 0, 0, 7429, 721, 1, 0, 0, 0, 1081, 723, 729, 735, 744, 784, 799, 810, 827, 832, 844, 871, 880, 885, 891, 896, 900, 909, 912, 915, 919, 926, 929, 934, 942, 947, 952, 955, 957, 969, 972, 976, 979, 983, 986, 990, 993, 996, 1000, 1003, 1007, 1013, 1019, 1025, 1032, 1039, 1042, 1046, 1051, 1057, 1066, 1071, 1076, 1083, 1100, 1107, 1111, 1121, 1125, 1129, 1133, 1137, 1142, 1145, 1148, 1151, 1154, 1160, 1164, 1170, 1175, 1178, 1181, 1183, 1194, 1198, 1201, 1215, 1218, 1222, 1225, 1229, 1232, 1236, 1239, 1243, 1246, 1249, 1253, 1256, 1260, 1266, 1270, 1282, 1288, 1299, 1304, 1312, 1320, 1325, 1328, 1333, 1341, 1346, 1352, 1357, 1361, 1363, 1366, 1370, 1374, 1377, 1381, 1385, 1389, 1395, 1398, 1405, 1410, 1416, 1423, 1429, 1437, 1440, 1447, 1450, 1452, 1458, 1464, 1481, 1488, 1495, 1507, 1512, 1515, 1518, 1531, 1544, 1549, 1565, 1573, 1583, 1586, 1589, 1595, 1599, 1602, 1613, 1616, 1621, 1634, 1641, 1648, 1650, 1657, 1661, 1663, 1668, 1671, 1677, 1682, 1684, 1688, 1691, 1694, 1700, 1705, 1707, 1712, 1719, 1721, 1728, 1733, 1737, 1740, 1748, 1756, 1758, 1768, 1772, 1775, 1781, 1786, 1789, 1795, 1798, 1802, 1805, 1809, 1814, 1819, 1824, 1828, 1832, 1836, 1840, 1844, 1848, 1853, 1858, 1863, 1869, 1874, 1879, 1884, 1889, 1894, 1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1942, 1947, 1952, 1957, 1961, 1966, 1974, 1979, 1985, 1997, 2004, 2006, 2014, 2019, 2022, 2030, 2036, 2040, 2053, 2065, 2067, 2070, 2078, 2084, 2090, 2103, 2110, 2119, 2124, 2135, 2144, 2149, 2161, 2168, 2177, 2182, 2194, 2201, 2210, 2215, 2222, 2231, 2236, 2238, 2243, 2251, 2260, 2264, 2267, 2271, 2276, 2282, 2288, 2293, 2298, 2303, 2308, 2311, 2316, 2321, 2331, 2335, 2342, 2347, 2350, 2355, 2358, 2362, 2366, 2374, 2393, 2396, 2399, 2403, 2413, 2426, 2433, 2436, 2441, 2448, 2451, 2454, 2465, 2468, 2472, 2480, 2483, 2488, 2496, 2502, 2506, 2510, 2515, 2520, 2527, 2531, 2542, 2550, 2553, 2559, 2565, 2567, 2572, 2575, 2581, 2587, 2589, 2593, 2596, 2599, 2605, 2611, 2614, 2620, 2626, 2628, 2633, 2641, 2643, 2652, 2655, 2658, 2663, 2665, 2674, 2677, 2680, 2685, 2687, 2696, 2701, 2709, 2713, 2721, 2731, 2736, 2743, 2747, 2751, 2770, 2780, 2786, 2803, 2807, 2817, 2822, 2825, 2834, 2845, 2853, 2859, 2869, 2881, 2888, 2895, 2910, 2923, 2929, 2935, 2941, 2947, 2953, 2959, 2964, 2971, 2978, 2985, 2990, 2993, 2995, 3009, 3016, 3023, 3029, 3033, 3037, 3044, 3047, 3052, 3059, 3066, 3070, 3075, 3082, 3095, 3098, 3103, 3108, 3112, 3118, 3127, 3136, 3145, 3148, 3152, 3161, 3165, 3168, 3171, 3177, 3180, 3184, 3187, 3191, 3194, 3202, 3205, 3216, 3219, 3224, 3227, 3232, 3242, 3247, 3253, 3255, 3261, 3263, 3269, 3277, 3282, 3290, 3293, 3298, 3301, 3306, 3314, 3322, 3328, 3336, 3341, 3349, 3352, 3356, 3359, 3367, 3373, 3382, 3385, 3389, 3393, 3397, 3402, 3406, 3410, 3412, 3415, 3418, 3421, 3427, 3431, 3434, 3437, 3440, 3443, 3450, 3452, 3456, 3461, 3467, 3472, 3479, 3485, 3490, 3493, 3499, 3503, 3511, 3515, 3518, 3521, 3526, 3529, 3536, 3540, 3543, 3547, 3551, 3554, 3557, 3562, 3568, 3572, 3582, 3588, 3592, 3598, 3602, 3608, 3611, 3623, 3627, 3631, 3639, 3643, 3651, 3654, 3658, 3661, 3669, 3674, 3677, 3680, 3684, 3687, 3696, 3701, 3710, 3715, 3722, 3729, 3737, 3743, 3751, 3754, 3757, 3764, 3767, 3774, 3782, 3788, 3799, 3802, 3806, 3812, 3821, 3826, 3830, 3836, 3842, 3844, 3848, 3857, 3867, 3877, 3883, 3888, 3892, 3895, 3898, 3901, 3904, 3910, 3916, 3919, 3922, 3925, 3928, 3931, 3933, 3939, 3945, 3948, 3951, 3954, 3957, 3960, 3964, 3970, 3974, 3982, 3986, 3989, 3991, 4004, 4007, 4014, 4024, 4027, 4032, 4034, 4038, 4046, 4052, 4061, 4074, 4078, 4084, 4093, 4096, 4100, 4103, 4107, 4111, 4114, 4116, 4124, 4136, 4142, 4144, 4150, 4152, 4154, 4160, 4168, 4176, 4180, 4184, 4193, 4198, 4218, 4223, 4229, 4236, 4241, 4250, 4253, 4257, 4261, 4265, 4268, 4271, 4274, 4278, 4282, 4285, 4288, 4291, 4298, 4302, 4317, 4321, 4333, 4341, 4351, 4355, 4358, 4364, 4367, 4370, 4379, 4388, 4398, 4402, 4412, 4422, 4430, 4433, 4442, 4445, 4449, 4454, 4458, 4467, 4470, 4501, 4504, 4507, 4563, 4568, 4596, 4610, 4617, 4621, 4627, 4635, 4637, 4648, 4658, 4665, 4671, 4679, 4684, 4692, 4700, 4708, 4716, 4722, 4727, 4732, 4737, 4743, 4745, 4756, 4761, 4768, 4770, 4784, 4790, 4795, 4800, 4806, 4813, 4821, 4829, 4834, 4840, 4843, 4851, 4858, 4867, 4870, 4887, 4895, 4903, 4907, 4914, 4920, 4928, 4937, 4943, 4950, 4957, 4962, 4965, 4967, 4973, 4975, 4979, 4981, 4988, 4993, 4997, 5003, 5012, 5018, 5025, 5031, 5037, 5042, 5045, 5047, 5053, 5055, 5059, 5061, 5068, 5070, 5075, 5082, 5091, 5096, 5105, 5112, 5117, 5120, 5122, 5128, 5130, 5133, 5141, 5146, 5151, 5155, 5161, 5166, 5170, 5176, 5178, 5189, 5192, 5199, 5202, 5214, 5220, 5229, 5238, 5243, 5252, 5258, 5269, 5275, 5280, 5284, 5290, 5295, 5299, 5302, 5314, 5321, 5326, 5356, 5360, 5365, 5372, 5375, 5381, 5391, 5401, 5411, 5417, 5426, 5432, 5439, 5441, 5451, 5455, 5459, 5469, 5474, 5546, 5564, 5572, 5584, 5591, 5593, 5603, 5606, 5614, 5621, 5625, 5632, 5637, 5640, 5643, 5652, 5656, 5660, 5683, 5690, 5694, 5701, 5708, 5711, 5727, 5730, 5740, 5744, 5750, 5753, 5758, 5762, 5769, 5772, 5778, 5802, 5805, 5817, 5820, 5830, 5838, 5842, 5849, 5852, 5861, 5867, 5873, 5883, 5885, 5891, 5894, 5897, 5909, 5912, 5918, 5921, 5929, 5937, 5943, 5947, 5961, 5973, 5980, 5983, 5990, 5997, 6002, 6015, 6026, 6032, 6037, 6050, 6052, 6057, 6061, 6064, 6066, 6073, 6080, 6083, 6086, 6092, 6096, 6102, 6108, 6121, 6126, 6134, 6137, 6142, 6147, 6155, 6158, 6166, 6170, 6177, 6183, 6186, 6190, 6203, 6209, 6221, 6224, 6233, 6238, 6244, 6253, 6258, 6263, 6265, 6268, 6272, 6274, 6278, 6284, 6287, 6290, 6296, 6305, 6313, 6317, 6322, 6342, 6349, 6351, 6358, 6360, 6364, 6369, 6380, 6385, 6391, 6394, 6398, 6403, 6406, 6410, 6414, 6416, 6421, 6426, 6439, 6442, 6446, 6449, 6452, 6457, 6462, 6468, 6471, 6476, 6479, 6484, 6487, 6491, 6496, 6501, 6506, 6511, 6514, 6519, 6524, 6529, 6535, 6540, 6545, 6550, 6554, 6557, 6562, 6566, 6570, 6578, 6585, 6589, 6594, 6599, 6603, 6605, 6608, 6624, 6633, 6641, 6649, 6658, 6668, 6676, 6684, 6692, 6700, 6712, 6719, 6729, 6734, 6737, 6742, 6745, 6749, 6764, 6772, 6779, 6784, 6789, 6823, 6827, 6835, 6839, 6848, 6856, 6861, 6869, 6874, 6879, 6881, 6890, 6895, 6903, 6908, 6916, 6924, 6927, 6937, 6955, 6958, 6961, 6965, 6978, 6986, 6990, 6995, 7000, 7006, 7011, 7015, 7020, 7025, 7030, 7040, 7043, 7047, 7051, 7058, 7062, 7091, 7099, 7102, 7105, 7108, 7111, 7122, 7136, 7145, 7172, 7183, 7190, 7194, 7201, 7209, 7214, 7222, 7234, 7247, 7253, 7259, 7275, 7281, 7290, 7292, 7314, 7326, 7343, 7364, 7366, 7385, 7394, 7403, 7414] \ No newline at end of file diff --git a/src/autocomplete/mysql/generated/MySqlParser.ts b/src/autocomplete/mysql/generated/MySqlParser.ts index 1e74c0ff..3775f2a0 100644 --- a/src/autocomplete/mysql/generated/MySqlParser.ts +++ b/src/autocomplete/mysql/generated/MySqlParser.ts @@ -1182,8 +1182,8 @@ export class MySqlParser extends antlr.Parser { public static readonly GLOBAL_ID = 1160; public static readonly ERROR_RECONGNIGION = 1161; public static readonly RULE_root = 0; - public static readonly RULE_sqlStatements = 1; - public static readonly RULE_sqlStatement = 2; + public static readonly RULE_statements = 1; + public static readonly RULE_statement = 2; public static readonly RULE_ddlStatement = 3; public static readonly RULE_dmlStatement = 4; public static readonly RULE_transactionStatement = 5; @@ -1997,7 +1997,7 @@ export class MySqlParser extends antlr.Parser { "LOCAL_ID", "GLOBAL_ID", "ERROR_RECONGNIGION" ]; public static readonly ruleNames = [ - "root", "sqlStatements", "sqlStatement", "ddlStatement", "dmlStatement", + "root", "statements", "statement", "ddlStatement", "dmlStatement", "transactionStatement", "replicationStatement", "preparedStatement", "compoundStatement", "administrationStatement", "utilityStatement", "createDatabase", "createEvent", "createIndex", "createLogfileGroup", @@ -2108,19 +2108,20 @@ export class MySqlParser extends antlr.Parser { public root(): RootContext { let localContext = new RootContext(this.context, this.state); this.enterRule(localContext, 0, MySqlParser.RULE_root); + let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 723; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 0, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 84935296) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 537147393) !== 0) || ((((_la - 71)) & ~0x1F) === 0 && ((1 << (_la - 71)) & 2151694339) !== 0) || ((((_la - 103)) & ~0x1F) === 0 && ((1 << (_la - 103)) & 536936449) !== 0) || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 442923) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 1135617) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 33558659) !== 0) || _la === 390 || _la === 399 || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 16782337) !== 0) || ((((_la - 560)) & ~0x1F) === 0 && ((1 << (_la - 560)) & 537919489) !== 0) || _la === 597 || _la === 604 || ((((_la - 629)) & ~0x1F) === 0 && ((1 << (_la - 629)) & 134217793) !== 0) || _la === 661 || _la === 681 || _la === 708 || _la === 739 || _la === 1133) { { this.state = 722; - this.sqlStatements(); + this.statements(); } - break; } + this.state = 725; this.match(MySqlParser.EOF); } @@ -2139,19 +2140,19 @@ export class MySqlParser extends antlr.Parser { } return localContext; } - public sqlStatements(): SqlStatementsContext { - let localContext = new SqlStatementsContext(this.context, this.state); - this.enterRule(localContext, 2, MySqlParser.RULE_sqlStatements); + public statements(): StatementsContext { + let localContext = new StatementsContext(this.context, this.state); + this.enterRule(localContext, 2, MySqlParser.RULE_statements); let _la: number; try { - this.state = 736; + this.state = 735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { this.state = 727; - this.sqlStatement(); + this.statement(); this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -2168,17 +2169,11 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { this.state = 731; - this.sqlStatement(); + this.statement(); this.state = 732; this.match(MySqlParser.SEMI); this.state = 733; - this.sqlStatements(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty - { + this.statements(); } break; } @@ -2197,59 +2192,59 @@ export class MySqlParser extends antlr.Parser { } return localContext; } - public sqlStatement(): SqlStatementContext { - let localContext = new SqlStatementContext(this.context, this.state); - this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); + public statement(): StatementContext { + let localContext = new StatementContext(this.context, this.state); + this.enterRule(localContext, 4, MySqlParser.RULE_statement); try { - this.state = 745; + this.state = 744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 738; + this.state = 737; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 739; + this.state = 738; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 740; + this.state = 739; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 741; + this.state = 740; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 742; + this.state = 741; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 743; + this.state = 742; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 744; + this.state = 743; this.utilityStatement(); } break; @@ -2273,272 +2268,272 @@ export class MySqlParser extends antlr.Parser { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 6, MySqlParser.RULE_ddlStatement); try { - this.state = 785; + this.state = 784; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 746; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 748; + this.state = 747; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 749; + this.state = 748; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 750; + this.state = 749; this.createLogfileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 751; + this.state = 750; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 752; + this.state = 751; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 753; + this.state = 752; this.createServer(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 754; + this.state = 753; this.createTable(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 755; + this.state = 754; this.createTablespaceInnodb(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 756; + this.state = 755; this.createTablespaceNdb(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 757; + this.state = 756; this.createTrigger(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 758; + this.state = 757; this.createView(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 759; + this.state = 758; this.createRole(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 760; + this.state = 759; this.alterDatabase(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 761; + this.state = 760; this.alterEvent(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 762; + this.state = 761; this.alterFunction(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 763; + this.state = 762; this.alterInstance(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 764; + this.state = 763; this.alterLogfileGroup(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 765; + this.state = 764; this.alterProcedure(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 766; + this.state = 765; this.alterServer(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 767; + this.state = 766; this.alterTable(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 768; + this.state = 767; this.alterTablespace(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 769; + this.state = 768; this.alterView(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 770; + this.state = 769; this.dropDatabase(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 771; + this.state = 770; this.dropEvent(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 772; + this.state = 771; this.dropIndex(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 773; + this.state = 772; this.dropLogfileGroup(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 774; + this.state = 773; this.dropProcedure(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 775; + this.state = 774; this.dropFunction(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 776; + this.state = 775; this.dropServer(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 777; + this.state = 776; this.dropTable(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 778; + this.state = 777; this.dropTablespace(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 779; + this.state = 778; this.dropTrigger(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 780; + this.state = 779; this.dropView(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 781; + this.state = 780; this.dropRole(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 782; + this.state = 781; this.setRole(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 783; + this.state = 782; this.renameTable(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 784; + this.state = 783; this.truncateTable(); } break; @@ -2562,97 +2557,97 @@ export class MySqlParser extends antlr.Parser { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_dmlStatement); try { - this.state = 800; + this.state = 799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 787; + this.state = 786; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 788; + this.state = 787; this.insertStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 789; + this.state = 788; this.updateStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 790; + this.state = 789; this.deleteStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 791; + this.state = 790; this.replaceStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 792; + this.state = 791; this.callStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 793; + this.state = 792; this.loadDataStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 794; + this.state = 793; this.loadXmlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 795; + this.state = 794; this.doStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 796; + this.state = 795; this.handlerStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 797; + this.state = 796; this.valuesStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 798; + this.state = 797; this.withStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 799; + this.state = 798; this.tableStatement(); } break; @@ -2676,69 +2671,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_transactionStatement); try { - this.state = 811; + this.state = 810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 802; + this.state = 801; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 803; + this.state = 802; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 804; + this.state = 803; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 805; + this.state = 804; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 806; + this.state = 805; this.savepointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 807; + this.state = 806; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 808; + this.state = 807; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 809; + this.state = 808; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 810; + this.state = 809; this.unlockTables(); } break; @@ -2762,111 +2757,111 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_replicationStatement); try { - this.state = 828; + this.state = 827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 813; + this.state = 812; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 814; + this.state = 813; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 815; + this.state = 814; this.purgeBinaryLogs(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 816; + this.state = 815; this.resetMaster(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 817; + this.state = 816; this.resetSlave(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 818; + this.state = 817; this.startSlave(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 819; + this.state = 818; this.stopSlave(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 820; + this.state = 819; this.startGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 821; + this.state = 820; this.stopGroupReplication(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 822; + this.state = 821; this.xaStartTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 823; + this.state = 822; this.xaEndTransaction(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 824; + this.state = 823; this.xaPrepareStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 825; + this.state = 824; this.xaCommitWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 826; + this.state = 825; this.xaRollbackWork(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 827; + this.state = 826; this.xaRecoverWork(); } break; @@ -2890,20 +2885,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_preparedStatement); try { - this.state = 833; + this.state = 832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 830; + this.state = 829; this.prepareStatement(); } break; case MySqlParser.EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 831; + this.state = 830; this.executeStatement(); } break; @@ -2911,7 +2906,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 832; + this.state = 831; this.deallocatePrepare(); } break; @@ -2937,76 +2932,76 @@ export class MySqlParser extends antlr.Parser { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_compoundStatement); try { - this.state = 845; + this.state = 844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 834; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 836; + this.state = 835; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 837; + this.state = 836; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 838; + this.state = 837; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 839; + this.state = 838; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 840; + this.state = 839; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 841; + this.state = 840; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 842; + this.state = 841; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 843; + this.state = 842; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 844; + this.state = 843; this.cursorStatement(); } break; @@ -3030,181 +3025,181 @@ export class MySqlParser extends antlr.Parser { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_administrationStatement); try { - this.state = 872; + this.state = 871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 846; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 848; + this.state = 847; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 849; + this.state = 848; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 850; + this.state = 849; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 851; + this.state = 850; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 852; + this.state = 851; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 853; + this.state = 852; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 854; + this.state = 853; this.revokeProxy(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 855; + this.state = 854; this.analyzeTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 856; + this.state = 855; this.checkTable(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 857; + this.state = 856; this.checksumTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 858; + this.state = 857; this.optimizeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 859; + this.state = 858; this.repairTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 860; + this.state = 859; this.createUdfunction(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 861; + this.state = 860; this.installPlugin(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 862; + this.state = 861; this.uninstallPlugin(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 863; + this.state = 862; this.setStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 864; + this.state = 863; this.showStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 865; + this.state = 864; this.binlogStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 866; + this.state = 865; this.cacheIndexStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 867; + this.state = 866; this.flushStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 868; + this.state = 867; this.killStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 869; + this.state = 868; this.loadIndexIntoCache(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 870; + this.state = 869; this.resetStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 871; + this.state = 870; this.shutdownStatement(); } break; @@ -3228,55 +3223,55 @@ export class MySqlParser extends antlr.Parser { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_utilityStatement); try { - this.state = 881; + this.state = 880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 873; this.simpleDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 875; + this.state = 874; this.fullDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 876; + this.state = 875; this.helpStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 877; + this.state = 876; this.useStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 878; + this.state = 877; this.signalStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 879; + this.state = 878; this.resignalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 880; + this.state = 879; this.diagnosticsStatement(); } break; @@ -3303,9 +3298,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 883; + this.state = 882; this.match(MySqlParser.CREATE); - this.state = 884; + this.state = 883; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 150)) { @@ -3315,29 +3310,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 886; + this.state = 885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 885; + this.state = 884; this.ifNotExists(); } break; } - this.state = 888; + this.state = 887; this.uid(); - this.state = 892; + this.state = 891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 134 || _la === 222 || _la === 405 || _la === 841) { { { - this.state = 889; + this.state = 888; this.createDatabaseOption(); } } - this.state = 894; + this.state = 893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3364,87 +3359,87 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 894; this.match(MySqlParser.CREATE); - this.state = 897; + this.state = 896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 896; + this.state = 895; this.ownerStatement(); } } - this.state = 899; + this.state = 898; this.match(MySqlParser.EVENT); - this.state = 901; + this.state = 900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 900; + this.state = 899; this.ifNotExists(); } break; } - this.state = 903; + this.state = 902; this.fullId(); - this.state = 904; + this.state = 903; this.match(MySqlParser.ON); - this.state = 905; + this.state = 904; this.match(MySqlParser.SCHEDULE); - this.state = 906; + this.state = 905; this.scheduleExpression(); - this.state = 913; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118) { { - this.state = 907; + this.state = 906; this.match(MySqlParser.ON); - this.state = 908; + this.state = 907; this.match(MySqlParser.COMPLETION); - this.state = 910; + this.state = 909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 909; + this.state = 908; this.match(MySqlParser.NOT); } } - this.state = 912; + this.state = 911; this.match(MySqlParser.PRESERVE); } } - this.state = 916; + this.state = 915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 396 || _la === 403) { { - this.state = 915; + this.state = 914; this.enableType(); } } - this.state = 920; + this.state = 919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368) { { - this.state = 918; + this.state = 917; this.match(MySqlParser.COMMENT); - this.state = 919; + this.state = 918; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 922; + this.state = 921; this.match(MySqlParser.DO); - this.state = 923; + this.state = 922; this.routineBody(); } } @@ -3469,14 +3464,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 924; this.match(MySqlParser.CREATE); - this.state = 927; + this.state = 926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 531 || _la === 537) { { - this.state = 926; + this.state = 925; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 531 || _la === 537)) { @@ -3489,12 +3484,12 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 930; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 159 || _la === 181) { { - this.state = 929; + this.state = 928; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 159 || _la === 181)) { @@ -3507,63 +3502,63 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 932; + this.state = 931; this.match(MySqlParser.INDEX); - this.state = 933; + this.state = 932; this.uid(); - this.state = 935; + this.state = 934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 934; + this.state = 933; this.indexType(); } } - this.state = 937; + this.state = 936; this.match(MySqlParser.ON); - this.state = 938; + this.state = 937; this.tableName(); - this.state = 939; + this.state = 938; this.indexColumnNames(); - this.state = 943; + this.state = 942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 940; + this.state = 939; this.indexOption(); } } - this.state = 945; + this.state = 944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 958; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 103 || _la === 336) { { - this.state = 956; + this.state = 955; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ALGORITHM: { - this.state = 946; + this.state = 945; this.match(MySqlParser.ALGORITHM); - this.state = 948; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 947; + this.state = 946; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 950; + this.state = 949; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 384 || _la === 454)) { @@ -3577,19 +3572,19 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.LOCK: { - this.state = 951; + this.state = 950; this.match(MySqlParser.LOCK); - this.state = 953; + this.state = 952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 952; + this.state = 951; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 955; + this.state = 954; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 419 || _la === 529 || _la === 611)) { @@ -3605,7 +3600,7 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 960; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3632,153 +3627,153 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 960; this.match(MySqlParser.CREATE); - this.state = 962; + this.state = 961; this.match(MySqlParser.LOGFILE); - this.state = 963; + this.state = 962; this.match(MySqlParser.GROUP); - this.state = 964; + this.state = 963; this.uid(); - this.state = 965; + this.state = 964; this.match(MySqlParser.ADD); - this.state = 966; + this.state = 965; this.match(MySqlParser.UNDOFILE); - this.state = 967; + this.state = 966; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 973; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 453) { { - this.state = 968; + this.state = 967; this.match(MySqlParser.INITIAL_SIZE); - this.state = 970; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 969; + this.state = 968; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 972; + this.state = 971; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 980; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 975; + this.state = 974; this.match(MySqlParser.UNDO_BUFFER_SIZE); - this.state = 977; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 976; + this.state = 975; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 979; + this.state = 978; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 987; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 572) { { - this.state = 982; + this.state = 981; this.match(MySqlParser.REDO_BUFFER_SIZE); - this.state = 984; + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 983; + this.state = 982; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 986; + this.state = 985; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 994; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 989; + this.state = 988; this.match(MySqlParser.NODEGROUP); - this.state = 991; + this.state = 990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 990; + this.state = 989; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 993; + this.state = 992; this.uid(); } } - this.state = 997; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 674) { { - this.state = 996; + this.state = 995; this.match(MySqlParser.WAIT); } } - this.state = 1004; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368) { { - this.state = 999; + this.state = 998; this.match(MySqlParser.COMMENT); - this.state = 1001; + this.state = 1000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1000; + this.state = 999; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1003; + this.state = 1002; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1006; + this.state = 1005; this.match(MySqlParser.ENGINE); - this.state = 1008; + this.state = 1007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1007; + this.state = 1006; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1010; + this.state = 1009; this.engineName(); } } @@ -3804,69 +3799,69 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1012; + this.state = 1011; this.match(MySqlParser.CREATE); - this.state = 1014; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 1013; + this.state = 1012; this.ownerStatement(); } } - this.state = 1016; + this.state = 1015; this.match(MySqlParser.PROCEDURE); - this.state = 1017; + this.state = 1016; this.fullId(); - this.state = 1018; + this.state = 1017; this.match(MySqlParser.LR_BRACKET); - this.state = 1020; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18880721) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172658065) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1019; + this.state = 1018; this.procedureParameter(); } } - this.state = 1026; + this.state = 1025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1022; + this.state = 1021; this.match(MySqlParser.COMMA); - this.state = 1023; + this.state = 1022; this.procedureParameter(); } } - this.state = 1028; + this.state = 1027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1029; + this.state = 1028; this.match(MySqlParser.RR_BRACKET); - this.state = 1033; + this.state = 1032; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 43, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1030; + this.state = 1029; this.routineOption(); } } } - this.state = 1035; + this.state = 1034; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 43, this.context); } - this.state = 1036; + this.state = 1035; this.routineBody(); } } @@ -3892,93 +3887,93 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1038; + this.state = 1037; this.match(MySqlParser.CREATE); - this.state = 1040; + this.state = 1039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 1039; + this.state = 1038; this.ownerStatement(); } } - this.state = 1043; + this.state = 1042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 335) { { - this.state = 1042; + this.state = 1041; this.match(MySqlParser.AGGREGATE); } } - this.state = 1045; + this.state = 1044; this.match(MySqlParser.FUNCTION); - this.state = 1047; + this.state = 1046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1046; + this.state = 1045; this.ifNotExists(); } break; } - this.state = 1049; + this.state = 1048; this.fullId(); - this.state = 1050; + this.state = 1049; this.match(MySqlParser.LR_BRACKET); - this.state = 1052; + this.state = 1051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1051; + this.state = 1050; this.functionParameter(); } } - this.state = 1058; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1054; + this.state = 1053; this.match(MySqlParser.COMMA); - this.state = 1055; + this.state = 1054; this.functionParameter(); } } - this.state = 1060; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1061; + this.state = 1060; this.match(MySqlParser.RR_BRACKET); - this.state = 1062; + this.state = 1061; this.match(MySqlParser.RETURNS); - this.state = 1063; + this.state = 1062; this.dataType(); - this.state = 1067; + this.state = 1066; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 49, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1064; + this.state = 1063; this.routineOption(); } } } - this.state = 1069; + this.state = 1068; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 49, this.context); } - this.state = 1072; + this.state = 1071; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ALTER: @@ -4885,13 +4880,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 1070; + this.state = 1069; this.routineBody(); } break; case MySqlParser.RETURN: { - this.state = 1071; + this.state = 1070; this.returnStatement(); } break; @@ -4921,35 +4916,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1074; + this.state = 1073; this.match(MySqlParser.CREATE); - this.state = 1075; + this.state = 1074; this.match(MySqlParser.ROLE); - this.state = 1077; + this.state = 1076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 1076; + this.state = 1075; this.ifNotExists(); } break; } - this.state = 1079; + this.state = 1078; this.roleName(); - this.state = 1084; + this.state = 1083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1080; + this.state = 1079; this.match(MySqlParser.COMMA); - this.state = 1081; + this.state = 1080; this.roleName(); } } - this.state = 1086; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4976,19 +4971,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1086; this.match(MySqlParser.CREATE); - this.state = 1088; + this.state = 1087; this.match(MySqlParser.SERVER); - this.state = 1089; + this.state = 1088; this.uid(); - this.state = 1090; + this.state = 1089; this.match(MySqlParser.FOREIGN); - this.state = 1091; + this.state = 1090; this.match(MySqlParser.DATA); - this.state = 1092; + this.state = 1091; this.match(MySqlParser.WRAPPER); - this.state = 1093; + this.state = 1092; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 514 || _la === 1148)) { @@ -4998,29 +4993,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1094; + this.state = 1093; this.match(MySqlParser.OPTIONS); - this.state = 1095; + this.state = 1094; this.match(MySqlParser.LR_BRACKET); - this.state = 1096; + this.state = 1095; this.serverOption(); - this.state = 1101; + this.state = 1100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1097; + this.state = 1096; this.match(MySqlParser.COMMA); - this.state = 1098; + this.state = 1097; this.serverOption(); } } - this.state = 1103; + this.state = 1102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1104; + this.state = 1103; this.match(MySqlParser.RR_BRACKET); } } @@ -5043,59 +5038,59 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 38, MySqlParser.RULE_createTable); let _la: number; try { - this.state = 1184; + this.state = 1183; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1106; + this.state = 1105; this.match(MySqlParser.CREATE); - this.state = 1108; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 649) { { - this.state = 1107; + this.state = 1106; this.match(MySqlParser.TEMPORARY); } } - this.state = 1110; + this.state = 1109; this.match(MySqlParser.TABLE); - this.state = 1112; + this.state = 1111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 1111; + this.state = 1110; this.ifNotExists(); } break; } - this.state = 1114; + this.state = 1113; this.tableName(); - this.state = 1122; + this.state = 1121; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LIKE: { - this.state = 1115; + this.state = 1114; this.match(MySqlParser.LIKE); - this.state = 1116; + this.state = 1115; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1117; + this.state = 1116; this.match(MySqlParser.LR_BRACKET); - this.state = 1118; + this.state = 1117; this.match(MySqlParser.LIKE); - this.state = 1119; + this.state = 1118; (localContext as CopyCreateTableContext)._parenthesisTable = this.tableName(); - this.state = 1120; + this.state = 1119; this.match(MySqlParser.RR_BRACKET); } break; @@ -5108,92 +5103,92 @@ export class MySqlParser extends antlr.Parser { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1124; + this.state = 1123; this.match(MySqlParser.CREATE); - this.state = 1126; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 649) { { - this.state = 1125; + this.state = 1124; this.match(MySqlParser.TEMPORARY); } } - this.state = 1128; + this.state = 1127; this.match(MySqlParser.TABLE); - this.state = 1130; + this.state = 1129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1129; + this.state = 1128; this.ifNotExists(); } break; } - this.state = 1132; + this.state = 1131; this.tableName(); - this.state = 1134; + this.state = 1133; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1133; + this.state = 1132; this.createDefinitions(); } break; } - this.state = 1146; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 81 || _la === 180 || _la === 222 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 134316039) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 1081353) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0) || _la === 455 || _la === 467 || _la === 500 || _la === 510 || ((((_la - 543)) & ~0x1F) === 0 && ((1 << (_la - 543)) & 269) !== 0) || ((((_la - 602)) & ~0x1F) === 0 && ((1 << (_la - 602)) & 3892314113) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 268289) !== 0) || _la === 841 || _la === 875 || _la === 1000 || _la === 1148) { { - this.state = 1136; + this.state = 1135; this.tableOption(); - this.state = 1143; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 81 || _la === 180 || _la === 222 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 134316039) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 1081353) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0) || _la === 455 || _la === 467 || _la === 500 || _la === 510 || ((((_la - 543)) & ~0x1F) === 0 && ((1 << (_la - 543)) & 269) !== 0) || ((((_la - 602)) & ~0x1F) === 0 && ((1 << (_la - 602)) & 3892314113) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 268289) !== 0) || _la === 841 || _la === 875 || _la === 1000 || _la === 1135 || _la === 1148) { { { - this.state = 1138; + this.state = 1137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 1137; + this.state = 1136; this.match(MySqlParser.COMMA); } } - this.state = 1140; + this.state = 1139; this.tableOption(); } } - this.state = 1145; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1149; + this.state = 1148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 1148; + this.state = 1147; this.partitionDefinitions(); } } - this.state = 1152; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78 || _la === 141) { { - this.state = 1151; + this.state = 1150; (localContext as QueryCreateTableContext)._keyViolate = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 141)) { @@ -5206,17 +5201,17 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1155; + this.state = 1154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1154; + this.state = 1153; this.match(MySqlParser.AS); } } - this.state = 1157; + this.state = 1156; this.selectStatement(); } break; @@ -5224,74 +5219,74 @@ export class MySqlParser extends antlr.Parser { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1159; + this.state = 1158; this.match(MySqlParser.CREATE); - this.state = 1161; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 649) { { - this.state = 1160; + this.state = 1159; this.match(MySqlParser.TEMPORARY); } } - this.state = 1163; + this.state = 1162; this.match(MySqlParser.TABLE); - this.state = 1165; + this.state = 1164; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1164; + this.state = 1163; this.ifNotExists(); } break; } - this.state = 1167; + this.state = 1166; this.tableName(); - this.state = 1168; + this.state = 1167; this.createDefinitions(); - this.state = 1179; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 81 || _la === 180 || _la === 222 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 134316039) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 1081353) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0) || _la === 455 || _la === 467 || _la === 500 || _la === 510 || ((((_la - 543)) & ~0x1F) === 0 && ((1 << (_la - 543)) & 269) !== 0) || ((((_la - 602)) & ~0x1F) === 0 && ((1 << (_la - 602)) & 3892314113) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 268289) !== 0) || _la === 841 || _la === 875 || _la === 1000 || _la === 1148) { { - this.state = 1169; + this.state = 1168; this.tableOption(); - this.state = 1176; + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 81 || _la === 180 || _la === 222 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 134316039) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 1081353) !== 0) || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 19) !== 0) || _la === 455 || _la === 467 || _la === 500 || _la === 510 || ((((_la - 543)) & ~0x1F) === 0 && ((1 << (_la - 543)) & 269) !== 0) || ((((_la - 602)) & ~0x1F) === 0 && ((1 << (_la - 602)) & 3892314113) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 268289) !== 0) || _la === 841 || _la === 875 || _la === 1000 || _la === 1135 || _la === 1148) { { { - this.state = 1171; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 1170; + this.state = 1169; this.match(MySqlParser.COMMA); } } - this.state = 1173; + this.state = 1172; this.tableOption(); } } - this.state = 1178; + this.state = 1177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1182; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 1181; + this.state = 1180; this.partitionDefinitions(); } } @@ -5321,50 +5316,50 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1186; + this.state = 1185; this.match(MySqlParser.CREATE); - this.state = 1187; + this.state = 1186; this.match(MySqlParser.TABLESPACE); - this.state = 1188; + this.state = 1187; this.uid(); - this.state = 1189; + this.state = 1188; this.match(MySqlParser.ADD); - this.state = 1190; + this.state = 1189; this.match(MySqlParser.DATAFILE); - this.state = 1191; + this.state = 1190; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1195; + this.state = 1194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1192; + this.state = 1191; this.match(MySqlParser.FILE_BLOCK_SIZE); - this.state = 1193; + this.state = 1192; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1194; + this.state = 1193; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1202; + this.state = 1201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 409) { { - this.state = 1197; + this.state = 1196; this.match(MySqlParser.ENGINE); - this.state = 1199; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1198; + this.state = 1197; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1201; + this.state = 1200; this.engineName(); } } @@ -5392,181 +5387,181 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1204; + this.state = 1203; this.match(MySqlParser.CREATE); - this.state = 1205; + this.state = 1204; this.match(MySqlParser.TABLESPACE); - this.state = 1206; + this.state = 1205; this.uid(); - this.state = 1207; + this.state = 1206; this.match(MySqlParser.ADD); - this.state = 1208; + this.state = 1207; this.match(MySqlParser.DATAFILE); - this.state = 1209; + this.state = 1208; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1210; + this.state = 1209; this.match(MySqlParser.USE); - this.state = 1211; + this.state = 1210; this.match(MySqlParser.LOGFILE); - this.state = 1212; + this.state = 1211; this.match(MySqlParser.GROUP); - this.state = 1213; + this.state = 1212; this.uid(); - this.state = 1219; + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 1214; + this.state = 1213; this.match(MySqlParser.EXTENT_SIZE); - this.state = 1216; + this.state = 1215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1215; + this.state = 1214; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1218; + this.state = 1217; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1226; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 453) { { - this.state = 1221; + this.state = 1220; this.match(MySqlParser.INITIAL_SIZE); - this.state = 1223; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1222; + this.state = 1221; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1225; + this.state = 1224; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1233; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 1228; + this.state = 1227; this.match(MySqlParser.AUTOEXTEND_SIZE); - this.state = 1230; + this.state = 1229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1229; + this.state = 1228; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1232; + this.state = 1231; localContext._autoextendSize = this.fileSizeLiteral(); } } - this.state = 1240; + this.state = 1239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 1235; + this.state = 1234; this.match(MySqlParser.MAX_SIZE); - this.state = 1237; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1236; + this.state = 1235; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1239; + this.state = 1238; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1247; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 1242; + this.state = 1241; this.match(MySqlParser.NODEGROUP); - this.state = 1244; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1243; + this.state = 1242; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1246; + this.state = 1245; this.uid(); } } - this.state = 1250; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 674) { { - this.state = 1249; + this.state = 1248; this.match(MySqlParser.WAIT); } } - this.state = 1257; + this.state = 1256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368) { { - this.state = 1252; + this.state = 1251; this.match(MySqlParser.COMMENT); - this.state = 1254; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1253; + this.state = 1252; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1256; + this.state = 1255; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1259; + this.state = 1258; this.match(MySqlParser.ENGINE); - this.state = 1261; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1260; + this.state = 1259; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1263; + this.state = 1262; this.engineName(); } } @@ -5591,33 +5586,33 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1264; this.match(MySqlParser.CREATE); - this.state = 1267; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 1266; + this.state = 1265; this.ownerStatement(); } } - this.state = 1269; + this.state = 1268; this.match(MySqlParser.TRIGGER); - this.state = 1271; + this.state = 1270; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1270; + this.state = 1269; this.ifNotExists(); } break; } - this.state = 1273; + this.state = 1272; localContext._thisTrigger = this.fullId(); - this.state = 1274; + this.state = 1273; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 334)) { @@ -5627,7 +5622,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1275; + this.state = 1274; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 85 || _la === 184)) { @@ -5637,22 +5632,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1276; + this.state = 1275; this.match(MySqlParser.ON); - this.state = 1277; + this.state = 1276; this.tableName(); - this.state = 1278; + this.state = 1277; this.match(MySqlParser.FOR); - this.state = 1279; + this.state = 1278; this.match(MySqlParser.EACH); - this.state = 1280; + this.state = 1279; this.match(MySqlParser.ROW); - this.state = 1283; + this.state = 1282; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1281; + this.state = 1280; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 558)) { @@ -5662,12 +5657,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1282; + this.state = 1281; localContext._otherTrigger = this.fullId(); } break; } - this.state = 1285; + this.state = 1284; this.routineBody(); } } @@ -5691,19 +5686,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1287; + this.state = 1286; this.match(MySqlParser.WITH); - this.state = 1289; + this.state = 1288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1288; + this.state = 1287; this.match(MySqlParser.RECURSIVE); } break; } - this.state = 1291; + this.state = 1290; this.commonTableExpressions(); } } @@ -5728,54 +5723,54 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1293; + this.state = 1292; this.cteName(); - this.state = 1305; + this.state = 1304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 1294; + this.state = 1293; this.match(MySqlParser.LR_BRACKET); - this.state = 1295; + this.state = 1294; this.cteColumnName(); - this.state = 1300; + this.state = 1299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1296; + this.state = 1295; this.match(MySqlParser.COMMA); - this.state = 1297; + this.state = 1296; this.cteColumnName(); } } - this.state = 1302; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1303; + this.state = 1302; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1307; + this.state = 1306; this.match(MySqlParser.AS); - this.state = 1308; + this.state = 1307; this.match(MySqlParser.LR_BRACKET); - this.state = 1309; + this.state = 1308; this.dmlStatement(); - this.state = 1310; + this.state = 1309; this.match(MySqlParser.RR_BRACKET); - this.state = 1313; + this.state = 1312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1311; + this.state = 1310; this.match(MySqlParser.COMMA); - this.state = 1312; + this.state = 1311; this.commonTableExpressions(); } break; @@ -5802,7 +5797,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1315; + this.state = 1314; this.uid(); } } @@ -5826,7 +5821,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1317; + this.state = 1316; this.uid(); } } @@ -5851,28 +5846,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1319; + this.state = 1318; this.match(MySqlParser.CREATE); - this.state = 1321; + this.state = 1320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 1320; + this.state = 1319; this.orReplace(); } } - this.state = 1326; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 336) { { - this.state = 1323; + this.state = 1322; this.match(MySqlParser.ALGORITHM); - this.state = 1324; + this.state = 1323; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1325; + this.state = 1324; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 506 || _la === 650 || _la === 658)) { @@ -5885,26 +5880,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1329; + this.state = 1328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 1328; + this.state = 1327; this.ownerStatement(); } } - this.state = 1334; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 1331; + this.state = 1330; this.match(MySqlParser.SQL); - this.state = 1332; + this.state = 1331; this.match(MySqlParser.SECURITY); - this.state = 1333; + this.state = 1332; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 460)) { @@ -5917,76 +5912,76 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1336; + this.state = 1335; this.match(MySqlParser.VIEW); - this.state = 1337; + this.state = 1336; this.fullId(); - this.state = 1342; + this.state = 1341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 1338; + this.state = 1337; this.match(MySqlParser.LR_BRACKET); - this.state = 1339; + this.state = 1338; this.uidList(); - this.state = 1340; + this.state = 1339; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1344; + this.state = 1343; this.match(MySqlParser.AS); - this.state = 1364; + this.state = 1363; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1345; + this.state = 1344; this.match(MySqlParser.LR_BRACKET); - this.state = 1347; + this.state = 1346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 1346; + this.state = 1345; this.withClause(); } } - this.state = 1349; + this.state = 1348; this.selectStatement(); - this.state = 1350; + this.state = 1349; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1353; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 1352; + this.state = 1351; this.withClause(); } } - this.state = 1355; + this.state = 1354; this.selectStatement(); - this.state = 1362; + this.state = 1361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 1356; + this.state = 1355; this.match(MySqlParser.WITH); - this.state = 1358; + this.state = 1357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352 || _la === 474) { { - this.state = 1357; + this.state = 1356; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 474)) { @@ -5999,9 +5994,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1360; + this.state = 1359; this.match(MySqlParser.CHECK); - this.state = 1361; + this.state = 1360; this.match(MySqlParser.OPTION); } } @@ -6030,35 +6025,35 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 56, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1399; + this.state = 1398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1366; + this.state = 1365; this.match(MySqlParser.DEFAULT); } } - this.state = 1369; + this.state = 1368; this.charSet(); - this.state = 1371; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1370; + this.state = 1369; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1375; + this.state = 1374; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.BINARY: @@ -6106,13 +6101,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1373; + this.state = 1372; this.charsetName(); } break; case MySqlParser.DEFAULT: { - this.state = 1374; + this.state = 1373; this.match(MySqlParser.DEFAULT); } break; @@ -6124,79 +6119,79 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1378; + this.state = 1377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1377; + this.state = 1376; this.match(MySqlParser.DEFAULT); } } - this.state = 1380; + this.state = 1379; this.match(MySqlParser.COLLATE); - this.state = 1382; + this.state = 1381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1381; + this.state = 1380; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1384; + this.state = 1383; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1386; + this.state = 1385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1385; + this.state = 1384; this.match(MySqlParser.DEFAULT); } } - this.state = 1388; + this.state = 1387; this.match(MySqlParser.ENCRYPTION); - this.state = 1390; + this.state = 1389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1389; + this.state = 1388; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1392; + this.state = 1391; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1393; + this.state = 1392; this.match(MySqlParser.READ); - this.state = 1394; + this.state = 1393; this.match(MySqlParser.ONLY); - this.state = 1396; + this.state = 1395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1395; + this.state = 1394; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1398; + this.state = 1397; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 1138 || _la === 1139)) { this.errorHandler.recoverInline(this); @@ -6227,31 +6222,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 58, MySqlParser.RULE_charSet); try { - this.state = 1406; + this.state = 1405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1401; + this.state = 1400; this.match(MySqlParser.CHARACTER); - this.state = 1402; + this.state = 1401; this.match(MySqlParser.SET); } break; case MySqlParser.CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1403; + this.state = 1402; this.match(MySqlParser.CHARSET); } break; case MySqlParser.CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1404; + this.state = 1403; this.match(MySqlParser.CHAR); - this.state = 1405; + this.state = 1404; this.match(MySqlParser.SET); } break; @@ -6279,16 +6274,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1407; this.match(MySqlParser.CURRENT_USER); - this.state = 1411; + this.state = 1410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1409; + this.state = 1408; this.match(MySqlParser.LR_BRACKET); - this.state = 1410; + this.state = 1409; this.match(MySqlParser.RR_BRACKET); } break; @@ -6315,22 +6310,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1413; + this.state = 1412; this.match(MySqlParser.DEFINER); - this.state = 1414; + this.state = 1413; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1417; + this.state = 1416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1415; + this.state = 1414; this.userName(); } break; case 2: { - this.state = 1416; + this.state = 1415; this.currentUserExpression(); } break; @@ -6356,28 +6351,28 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 64, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1453; + this.state = 1452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1419; + this.state = 1418; this.match(MySqlParser.AT); - this.state = 1420; + this.state = 1419; this.timestampValue(); - this.state = 1424; + this.state = 1423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1120) { { { - this.state = 1421; + this.state = 1420; this.intervalExpr(); } } - this.state = 1426; + this.state = 1425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6387,74 +6382,74 @@ export class MySqlParser extends antlr.Parser { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1427; + this.state = 1426; this.match(MySqlParser.EVERY); - this.state = 1430; + this.state = 1429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1428; + this.state = 1427; this.decimalLiteral(); } break; case 2: { - this.state = 1429; + this.state = 1428; this.expression(0); } break; } - this.state = 1432; + this.state = 1431; this.intervalType(); - this.state = 1441; + this.state = 1440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 630) { { - this.state = 1433; + this.state = 1432; this.match(MySqlParser.STARTS); - this.state = 1434; + this.state = 1433; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1438; + this.state = 1437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1120) { { { - this.state = 1435; + this.state = 1434; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1440; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1451; + this.state = 1450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 1443; + this.state = 1442; this.match(MySqlParser.ENDS); - this.state = 1444; + this.state = 1443; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1448; + this.state = 1447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1120) { { { - this.state = 1445; + this.state = 1444; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1450; + this.state = 1449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6485,34 +6480,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_timestampValue); try { - this.state = 1459; + this.state = 1458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1454; this.match(MySqlParser.CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1456; + this.state = 1455; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1457; + this.state = 1456; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1458; + this.state = 1457; this.expression(0); } break; @@ -6538,27 +6533,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1460; this.match(MySqlParser.PLUS); - this.state = 1462; + this.state = 1461; this.match(MySqlParser.INTERVAL); - this.state = 1465; + this.state = 1464; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1463; + this.state = 1462; this.decimalLiteral(); } break; case 2: { - this.state = 1464; + this.state = 1463; this.expression(0); } break; } - this.state = 1467; + this.state = 1466; this.intervalType(); } } @@ -6580,7 +6575,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 70, MySqlParser.RULE_intervalType); try { - this.state = 1482; + this.state = 1481; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.QUARTER: @@ -6593,91 +6588,91 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1468; this.intervalTypeBase(); } break; case MySqlParser.YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1470; + this.state = 1469; this.match(MySqlParser.YEAR); } break; case MySqlParser.YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1471; + this.state = 1470; this.match(MySqlParser.YEAR_MONTH); } break; case MySqlParser.DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1472; + this.state = 1471; this.match(MySqlParser.DAY_HOUR); } break; case MySqlParser.DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1473; + this.state = 1472; this.match(MySqlParser.DAY_MINUTE); } break; case MySqlParser.DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1474; + this.state = 1473; this.match(MySqlParser.DAY_SECOND); } break; case MySqlParser.HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1475; + this.state = 1474; this.match(MySqlParser.HOUR_MINUTE); } break; case MySqlParser.HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1476; + this.state = 1475; this.match(MySqlParser.HOUR_SECOND); } break; case MySqlParser.MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1477; + this.state = 1476; this.match(MySqlParser.MINUTE_SECOND); } break; case MySqlParser.SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1478; + this.state = 1477; this.match(MySqlParser.SECOND_MICROSECOND); } break; case MySqlParser.MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1479; + this.state = 1478; this.match(MySqlParser.MINUTE_MICROSECOND); } break; case MySqlParser.HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1480; + this.state = 1479; this.match(MySqlParser.HOUR_MICROSECOND); } break; case MySqlParser.DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1481; + this.state = 1480; this.match(MySqlParser.DAY_MICROSECOND); } break; @@ -6703,31 +6698,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 72, MySqlParser.RULE_enableType); try { - this.state = 1489; + this.state = 1488; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1484; + this.state = 1483; this.match(MySqlParser.ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1485; + this.state = 1484; this.match(MySqlParser.DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1486; + this.state = 1485; this.match(MySqlParser.DISABLE); - this.state = 1487; + this.state = 1486; this.match(MySqlParser.ON); - this.state = 1488; + this.state = 1487; this.match(MySqlParser.SLAVE); } break; @@ -6754,9 +6749,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1491; + this.state = 1490; this.match(MySqlParser.USING); - this.state = 1492; + this.state = 1491; _la = this.tokenStream.LA(1); if(!(_la === 350 || _la === 443)) { this.errorHandler.recoverInline(this); @@ -6786,52 +6781,52 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 76, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1516; + this.state = 1515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1494; + this.state = 1493; this.match(MySqlParser.KEY_BLOCK_SIZE); - this.state = 1496; + this.state = 1495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1495; + this.state = 1494; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1498; + this.state = 1497; this.fileSizeLiteral(); } break; case MySqlParser.USING: this.enterOuterAlt(localContext, 2); { - this.state = 1499; + this.state = 1498; this.indexType(); } break; case MySqlParser.WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1500; + this.state = 1499; this.match(MySqlParser.WITH); - this.state = 1501; + this.state = 1500; this.match(MySqlParser.PARSER); - this.state = 1502; + this.state = 1501; this.uid(); } break; case MySqlParser.COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1503; + this.state = 1502; this.match(MySqlParser.COMMENT); - this.state = 1504; + this.state = 1503; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6839,7 +6834,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1505; + this.state = 1504; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 673)) { this.errorHandler.recoverInline(this); @@ -6853,38 +6848,38 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1506; + this.state = 1505; this.match(MySqlParser.ENGINE_ATTRIBUTE); - this.state = 1508; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1507; + this.state = 1506; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1510; + this.state = 1509; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1511; + this.state = 1510; this.match(MySqlParser.SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1513; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1512; + this.state = 1511; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1515; + this.state = 1514; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6913,12 +6908,12 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 84 || _la === 125) { { - this.state = 1518; + this.state = 1517; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 84 || _la === 125)) { @@ -6931,9 +6926,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1521; + this.state = 1520; this.uid(); - this.state = 1522; + this.state = 1521; this.dataType(); } } @@ -6957,9 +6952,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1524; + this.state = 1523; this.uid(); - this.state = 1525; + this.state = 1524; this.dataType(); } } @@ -6982,16 +6977,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 82, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1550; + this.state = 1549; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1527; + this.state = 1526; this.match(MySqlParser.COMMENT); - this.state = 1528; + this.state = 1527; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6999,9 +6994,9 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1529; + this.state = 1528; this.match(MySqlParser.LANGUAGE); - this.state = 1530; + this.state = 1529; this.match(MySqlParser.SQL); } break; @@ -7010,17 +7005,17 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1532; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1531; + this.state = 1530; this.match(MySqlParser.NOT); } } - this.state = 1534; + this.state = 1533; this.match(MySqlParser.DETERMINISTIC); } break; @@ -7031,42 +7026,42 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1545; + this.state = 1544; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CONTAINS: { - this.state = 1535; + this.state = 1534; this.match(MySqlParser.CONTAINS); - this.state = 1536; + this.state = 1535; this.match(MySqlParser.SQL); } break; case MySqlParser.NO: { - this.state = 1537; + this.state = 1536; this.match(MySqlParser.NO); - this.state = 1538; + this.state = 1537; this.match(MySqlParser.SQL); } break; case MySqlParser.READS: { - this.state = 1539; + this.state = 1538; this.match(MySqlParser.READS); - this.state = 1540; + this.state = 1539; this.match(MySqlParser.SQL); - this.state = 1541; + this.state = 1540; this.match(MySqlParser.DATA); } break; case MySqlParser.MODIFIES: { - this.state = 1542; + this.state = 1541; this.match(MySqlParser.MODIFIES); - this.state = 1543; + this.state = 1542; this.match(MySqlParser.SQL); - this.state = 1544; + this.state = 1543; this.match(MySqlParser.DATA); } break; @@ -7079,11 +7074,11 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1547; + this.state = 1546; this.match(MySqlParser.SQL); - this.state = 1548; + this.state = 1547; this.match(MySqlParser.SECURITY); - this.state = 1549; + this.state = 1548; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 460)) { @@ -7117,69 +7112,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 84, MySqlParser.RULE_serverOption); try { - this.state = 1566; + this.state = 1565; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1552; + this.state = 1551; this.match(MySqlParser.HOST); - this.state = 1553; + this.state = 1552; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1554; + this.state = 1553; this.match(MySqlParser.DATABASE); - this.state = 1555; + this.state = 1554; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.USER: this.enterOuterAlt(localContext, 3); { - this.state = 1556; + this.state = 1555; this.match(MySqlParser.USER); - this.state = 1557; + this.state = 1556; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1558; + this.state = 1557; this.match(MySqlParser.PASSWORD); - this.state = 1559; + this.state = 1558; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1560; + this.state = 1559; this.match(MySqlParser.SOCKET); - this.state = 1561; + this.state = 1560; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1562; + this.state = 1561; this.match(MySqlParser.OWNER); - this.state = 1563; + this.state = 1562; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1564; + this.state = 1563; this.match(MySqlParser.PORT); - this.state = 1565; + this.state = 1564; this.decimalLiteral(); } break; @@ -7208,27 +7203,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1567; this.match(MySqlParser.LR_BRACKET); - this.state = 1569; + this.state = 1568; this.createDefinition(); - this.state = 1574; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 1570; + this.state = 1569; this.match(MySqlParser.COMMA); - this.state = 1571; + this.state = 1570; this.createDefinition(); } } - this.state = 1576; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1577; + this.state = 1576; this.match(MySqlParser.RR_BRACKET); } } @@ -7251,16 +7246,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 88, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1590; + this.state = 1589; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: localContext = new ColumnDeclarationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1579; + this.state = 1578; this.fullColumnName(); - this.state = 1580; + this.state = 1579; this.columnDefinition(); } break; @@ -7268,24 +7263,24 @@ export class MySqlParser extends antlr.Parser { localContext = new ConstraintDeclarationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1582; + this.state = 1581; this.tableConstraint(); - this.state = 1584; + this.state = 1583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1583; + this.state = 1582; this.match(MySqlParser.NOT); } } - this.state = 1587; + this.state = 1586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 1586; + this.state = 1585; this.match(MySqlParser.ENFORCED); } } @@ -7296,7 +7291,7 @@ export class MySqlParser extends antlr.Parser { localContext = new IndexDeclarationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1589; + this.state = 1588; this.indexColumnDefinition(); } break; @@ -7324,40 +7319,40 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1592; + this.state = 1591; this.dataType(); - this.state = 1596; + this.state = 1595; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1593; + this.state = 1592; this.columnConstraint(); } } } - this.state = 1598; + this.state = 1597; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } - this.state = 1600; + this.state = 1599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1599; + this.state = 1598; this.match(MySqlParser.NOT); } } - this.state = 1603; + this.state = 1602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 1602; + this.state = 1601; this.match(MySqlParser.ENFORCED); } } @@ -7383,7 +7378,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 92, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1658; + this.state = 1657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NOT: @@ -7392,7 +7387,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1605; + this.state = 1604; this.nullNotnull(); } break; @@ -7400,9 +7395,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1606; + this.state = 1605; this.match(MySqlParser.DEFAULT); - this.state = 1607; + this.state = 1606; this.defaultValue(); } break; @@ -7410,7 +7405,7 @@ export class MySqlParser extends antlr.Parser { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1608; + this.state = 1607; this.match(MySqlParser.VISIBLE); } break; @@ -7418,7 +7413,7 @@ export class MySqlParser extends antlr.Parser { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1609; + this.state = 1608; this.match(MySqlParser.INVISIBLE); } break; @@ -7427,22 +7422,22 @@ export class MySqlParser extends antlr.Parser { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1614; + this.state = 1613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.AUTO_INCREMENT: { - this.state = 1610; + this.state = 1609; this.match(MySqlParser.AUTO_INCREMENT); } break; case MySqlParser.ON: { - this.state = 1611; + this.state = 1610; this.match(MySqlParser.ON); - this.state = 1612; + this.state = 1611; this.match(MySqlParser.UPDATE); - this.state = 1613; + this.state = 1612; this.currentTimestamp(); } break; @@ -7456,17 +7451,17 @@ export class MySqlParser extends antlr.Parser { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1617; + this.state = 1616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1616; + this.state = 1615; this.match(MySqlParser.PRIMARY); } } - this.state = 1619; + this.state = 1618; this.match(MySqlParser.KEY); } break; @@ -7474,14 +7469,14 @@ export class MySqlParser extends antlr.Parser { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1620; + this.state = 1619; this.match(MySqlParser.UNIQUE); - this.state = 1622; + this.state = 1621; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1621; + this.state = 1620; this.match(MySqlParser.KEY); } break; @@ -7492,9 +7487,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1624; + this.state = 1623; this.match(MySqlParser.COMMENT); - this.state = 1625; + this.state = 1624; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7502,9 +7497,9 @@ export class MySqlParser extends antlr.Parser { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1626; + this.state = 1625; this.match(MySqlParser.COLUMN_FORMAT); - this.state = 1627; + this.state = 1626; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 402 || _la === 431)) { @@ -7520,9 +7515,9 @@ export class MySqlParser extends antlr.Parser { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1628; + this.state = 1627; this.match(MySqlParser.STORAGE); - this.state = 1629; + this.state = 1628; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 398 || _la === 792)) { @@ -7538,7 +7533,7 @@ export class MySqlParser extends antlr.Parser { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1630; + this.state = 1629; this.referenceDefinition(); } break; @@ -7546,9 +7541,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1631; + this.state = 1630; this.match(MySqlParser.COLLATE); - this.state = 1632; + this.state = 1631; this.collationName(); } break; @@ -7557,32 +7552,32 @@ export class MySqlParser extends antlr.Parser { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1635; + this.state = 1634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 1633; + this.state = 1632; this.match(MySqlParser.GENERATED); - this.state = 1634; + this.state = 1633; this.match(MySqlParser.ALWAYS); } } - this.state = 1637; + this.state = 1636; this.match(MySqlParser.AS); - this.state = 1638; + this.state = 1637; this.match(MySqlParser.LR_BRACKET); - this.state = 1639; + this.state = 1638; this.expression(0); - this.state = 1640; + this.state = 1639; this.match(MySqlParser.RR_BRACKET); - this.state = 1642; + this.state = 1641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 637 || _la === 672) { { - this.state = 1641; + this.state = 1640; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 672)) { this.errorHandler.recoverInline(this); @@ -7600,11 +7595,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1644; + this.state = 1643; this.match(MySqlParser.SERIAL); - this.state = 1645; + this.state = 1644; this.match(MySqlParser.DEFAULT); - this.state = 1646; + this.state = 1645; this.match(MySqlParser.VALUE); } break; @@ -7613,19 +7608,19 @@ export class MySqlParser extends antlr.Parser { localContext = new CheckColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1651; + this.state = 1650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1647; + this.state = 1646; this.match(MySqlParser.CONSTRAINT); - this.state = 1649; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1648; + this.state = 1647; (localContext as CheckColumnConstraintContext)._name = this.uid(); } } @@ -7633,13 +7628,13 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1653; + this.state = 1652; this.match(MySqlParser.CHECK); - this.state = 1654; + this.state = 1653; this.match(MySqlParser.LR_BRACKET); - this.state = 1655; + this.state = 1654; this.expression(0); - this.state = 1656; + this.state = 1655; this.match(MySqlParser.RR_BRACKET); } break; @@ -7666,26 +7661,26 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 94, MySqlParser.RULE_tableConstraint); let _la: number; try { - this.state = 1729; + this.state = 1728; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: localContext = new PrimaryKeyTableConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1660; + this.state = 1659; this.match(MySqlParser.CONSTRAINT); - this.state = 1662; + this.state = 1661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: { - this.state = 1661; + this.state = 1660; (localContext as PrimaryKeyTableConstraintContext)._name = this.uid(); } break; @@ -7693,43 +7688,43 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1666; + this.state = 1665; this.match(MySqlParser.PRIMARY); - this.state = 1667; + this.state = 1666; this.match(MySqlParser.KEY); - this.state = 1669; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1668; + this.state = 1667; (localContext as PrimaryKeyTableConstraintContext)._index = this.uid(); } } - this.state = 1672; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 1671; + this.state = 1670; this.indexType(); } } - this.state = 1674; + this.state = 1673; this.indexColumnNames(); - this.state = 1678; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 1675; + this.state = 1674; this.indexOption(); } } - this.state = 1680; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7739,19 +7734,19 @@ export class MySqlParser extends antlr.Parser { localContext = new UniqueKeyTableConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1681; + this.state = 1680; this.match(MySqlParser.CONSTRAINT); - this.state = 1683; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1682; + this.state = 1681; (localContext as UniqueKeyTableConstraintContext)._name = this.uid(); } } @@ -7759,14 +7754,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1687; + this.state = 1686; this.match(MySqlParser.UNIQUE); - this.state = 1689; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 1688; + this.state = 1687; (localContext as UniqueKeyTableConstraintContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -7779,39 +7774,39 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1692; + this.state = 1691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1691; + this.state = 1690; (localContext as UniqueKeyTableConstraintContext)._index = this.uid(); } } - this.state = 1695; + this.state = 1694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 1694; + this.state = 1693; this.indexType(); } } - this.state = 1697; + this.state = 1696; this.indexColumnNames(); - this.state = 1701; + this.state = 1700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 1698; + this.state = 1697; this.indexOption(); } } - this.state = 1703; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7821,19 +7816,19 @@ export class MySqlParser extends antlr.Parser { localContext = new ForeignKeyTableConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1708; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1704; + this.state = 1703; this.match(MySqlParser.CONSTRAINT); - this.state = 1706; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1705; + this.state = 1704; (localContext as ForeignKeyTableConstraintContext)._name = this.uid(); } } @@ -7841,23 +7836,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1710; + this.state = 1709; this.match(MySqlParser.FOREIGN); - this.state = 1711; + this.state = 1710; this.match(MySqlParser.KEY); - this.state = 1713; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1712; + this.state = 1711; (localContext as ForeignKeyTableConstraintContext)._index = this.uid(); } } - this.state = 1715; + this.state = 1714; this.indexColumnNames(); - this.state = 1716; + this.state = 1715; this.referenceDefinition(); } break; @@ -7865,19 +7860,19 @@ export class MySqlParser extends antlr.Parser { localContext = new CheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1722; + this.state = 1721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1718; + this.state = 1717; this.match(MySqlParser.CONSTRAINT); - this.state = 1720; + this.state = 1719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1719; + this.state = 1718; (localContext as CheckTableConstraintContext)._name = this.uid(); } } @@ -7885,13 +7880,13 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1724; + this.state = 1723; this.match(MySqlParser.CHECK); - this.state = 1725; + this.state = 1724; this.match(MySqlParser.LR_BRACKET); - this.state = 1726; + this.state = 1725; this.expression(0); - this.state = 1727; + this.state = 1726; this.match(MySqlParser.RR_BRACKET); } break; @@ -7918,28 +7913,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1731; + this.state = 1730; this.match(MySqlParser.REFERENCES); - this.state = 1732; + this.state = 1731; this.tableName(); - this.state = 1734; + this.state = 1733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 1733; + this.state = 1732; this.indexColumnNames(); } } - this.state = 1738; + this.state = 1737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 1736; + this.state = 1735; this.match(MySqlParser.MATCH); - this.state = 1737; + this.state = 1736; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 436 || _la === 548 || _la === 613)) { @@ -7952,12 +7947,12 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1741; + this.state = 1740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { case 1: { - this.state = 1740; + this.state = 1739; this.referenceAction(); } break; @@ -7982,28 +7977,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 98, MySqlParser.RULE_referenceAction); try { - this.state = 1759; + this.state = 1758; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1742; this.match(MySqlParser.ON); - this.state = 1744; + this.state = 1743; this.match(MySqlParser.DELETE); - this.state = 1745; + this.state = 1744; localContext._onDelete = this.referenceControlType(); - this.state = 1749; + this.state = 1748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 1746; + this.state = 1745; this.match(MySqlParser.ON); - this.state = 1747; + this.state = 1746; this.match(MySqlParser.UPDATE); - this.state = 1748; + this.state = 1747; localContext._onUpdate = this.referenceControlType(); } break; @@ -8013,22 +8008,22 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1751; + this.state = 1750; this.match(MySqlParser.ON); - this.state = 1752; + this.state = 1751; this.match(MySqlParser.UPDATE); - this.state = 1753; + this.state = 1752; localContext._onUpdate = this.referenceControlType(); - this.state = 1757; + this.state = 1756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1754; + this.state = 1753; this.match(MySqlParser.ON); - this.state = 1755; + this.state = 1754; this.match(MySqlParser.DELETE); - this.state = 1756; + this.state = 1755; localContext._onDelete = this.referenceControlType(); } break; @@ -8055,47 +8050,47 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 100, MySqlParser.RULE_referenceControlType); try { - this.state = 1769; + this.state = 1768; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1761; + this.state = 1760; this.match(MySqlParser.RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1762; + this.state = 1761; this.match(MySqlParser.CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1763; + this.state = 1762; this.match(MySqlParser.SET); - this.state = 1764; + this.state = 1763; this.match(MySqlParser.NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1765; + this.state = 1764; this.match(MySqlParser.NO); - this.state = 1766; + this.state = 1765; this.match(MySqlParser.ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1767; + this.state = 1766; this.match(MySqlParser.SET); - this.state = 1768; + this.state = 1767; this.match(MySqlParser.DEFAULT); } break; @@ -8120,7 +8115,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 102, MySqlParser.RULE_indexColumnDefinition); let _la: number; try { - this.state = 1799; + this.state = 1798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.INDEX: @@ -8128,7 +8123,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleIndexDeclarationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1771; + this.state = 1770; (localContext as SimpleIndexDeclarationContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -8138,39 +8133,39 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1773; + this.state = 1772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1772; + this.state = 1771; this.uid(); } } - this.state = 1776; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 1775; + this.state = 1774; this.indexType(); } } - this.state = 1778; + this.state = 1777; this.indexColumnNames(); - this.state = 1782; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 1779; + this.state = 1778; this.indexOption(); } } - this.state = 1784; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8181,7 +8176,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SpecialIndexDeclarationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1785; + this.state = 1784; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -8190,12 +8185,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1787; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 1786; + this.state = 1785; (localContext as SpecialIndexDeclarationContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -8208,29 +8203,29 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1790; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 1789; + this.state = 1788; this.uid(); } } - this.state = 1792; + this.state = 1791; this.indexColumnNames(); - this.state = 1796; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 1793; + this.state = 1792; this.indexOption(); } } - this.state = 1798; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8259,31 +8254,31 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 104, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 1986; + this.state = 1985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1801; + this.state = 1800; this.match(MySqlParser.ENGINE); - this.state = 1803; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1802; + this.state = 1801; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1806; + this.state = 1805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1805; + this.state = 1804; this.engineName(); } break; @@ -8294,19 +8289,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1808; + this.state = 1807; this.match(MySqlParser.ENGINE_ATTRIBUTE); - this.state = 1810; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1809; + this.state = 1808; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1812; + this.state = 1811; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8314,19 +8309,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoextendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1813; + this.state = 1812; this.match(MySqlParser.AUTOEXTEND_SIZE); - this.state = 1815; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1814; + this.state = 1813; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1817; + this.state = 1816; this.decimalLiteral(); } break; @@ -8334,19 +8329,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1818; + this.state = 1817; this.match(MySqlParser.AUTO_INCREMENT); - this.state = 1820; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1819; + this.state = 1818; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1822; + this.state = 1821; this.decimalLiteral(); } break; @@ -8354,19 +8349,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1823; + this.state = 1822; this.match(MySqlParser.AVG_ROW_LENGTH); - this.state = 1825; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1824; + this.state = 1823; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1827; + this.state = 1826; this.decimalLiteral(); } break; @@ -8374,29 +8369,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1829; + this.state = 1828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1828; + this.state = 1827; this.match(MySqlParser.DEFAULT); } } - this.state = 1831; + this.state = 1830; this.charSet(); - this.state = 1833; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1832; + this.state = 1831; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1837; + this.state = 1836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.BINARY: @@ -8444,13 +8439,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1835; + this.state = 1834; this.charsetName(); } break; case MySqlParser.DEFAULT: { - this.state = 1836; + this.state = 1835; this.match(MySqlParser.DEFAULT); } break; @@ -8463,7 +8458,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1839; + this.state = 1838; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 357)) { this.errorHandler.recoverInline(this); @@ -8472,17 +8467,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1841; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1840; + this.state = 1839; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1843; + this.state = 1842; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { @@ -8498,29 +8493,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1845; + this.state = 1844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1844; + this.state = 1843; this.match(MySqlParser.DEFAULT); } } - this.state = 1847; + this.state = 1846; this.match(MySqlParser.COLLATE); - this.state = 1849; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1848; + this.state = 1847; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1851; + this.state = 1850; this.collationName(); } break; @@ -8528,19 +8523,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1852; + this.state = 1851; this.match(MySqlParser.COMMENT); - this.state = 1854; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1853; + this.state = 1852; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1856; + this.state = 1855; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8548,19 +8543,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1857; + this.state = 1856; this.match(MySqlParser.COMPRESSION); - this.state = 1859; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1858; + this.state = 1857; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1861; + this.state = 1860; _la = this.tokenStream.LA(1); if(!(_la === 1148 || _la === 1156)) { this.errorHandler.recoverInline(this); @@ -8575,19 +8570,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1862; + this.state = 1861; this.match(MySqlParser.CONNECTION); - this.state = 1864; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1863; + this.state = 1862; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1866; + this.state = 1865; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8595,7 +8590,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1867; + this.state = 1866; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 388)) { this.errorHandler.recoverInline(this); @@ -8604,19 +8599,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1868; + this.state = 1867; this.match(MySqlParser.DIRECTORY); - this.state = 1870; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1869; + this.state = 1868; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1872; + this.state = 1871; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8624,19 +8619,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1873; + this.state = 1872; this.match(MySqlParser.DELAY_KEY_WRITE); - this.state = 1875; + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1874; + this.state = 1873; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1877; + this.state = 1876; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { @@ -8652,19 +8647,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1878; + this.state = 1877; this.match(MySqlParser.ENCRYPTION); - this.state = 1880; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1879; + this.state = 1878; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1882; + this.state = 1881; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8672,7 +8667,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1883; + this.state = 1882; _la = this.tokenStream.LA(1); if(!(_la === 545 || _la === 1148)) { this.errorHandler.recoverInline(this); @@ -8681,17 +8676,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1885; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1884; + this.state = 1883; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1887; + this.state = 1886; _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { this.errorHandler.recoverInline(this); @@ -8706,7 +8701,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 1888; + this.state = 1887; _la = this.tokenStream.LA(1); if(!(_la === 546 || _la === 1148)) { this.errorHandler.recoverInline(this); @@ -8715,17 +8710,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1890; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1889; + this.state = 1888; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1892; + this.state = 1891; this.decimalLiteral(); } break; @@ -8733,19 +8728,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 1893; + this.state = 1892; this.match(MySqlParser.ENCRYPTION_KEY_ID); - this.state = 1895; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1894; + this.state = 1893; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1897; + this.state = 1896; this.decimalLiteral(); } break; @@ -8753,21 +8748,21 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 1898; + this.state = 1897; this.match(MySqlParser.INDEX); - this.state = 1899; + this.state = 1898; this.match(MySqlParser.DIRECTORY); - this.state = 1901; + this.state = 1900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1900; + this.state = 1899; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1903; + this.state = 1902; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8775,19 +8770,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 1904; + this.state = 1903; this.match(MySqlParser.INSERT_METHOD); - this.state = 1906; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1905; + this.state = 1904; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1908; + this.state = 1907; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 430 || _la === 469 || _la === 521)) { @@ -8803,19 +8798,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 1909; + this.state = 1908; this.match(MySqlParser.KEY_BLOCK_SIZE); - this.state = 1911; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1910; + this.state = 1909; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1913; + this.state = 1912; this.fileSizeLiteral(); } break; @@ -8823,19 +8818,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 1914; + this.state = 1913; this.match(MySqlParser.MAX_ROWS); - this.state = 1916; + this.state = 1915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1915; + this.state = 1914; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1918; + this.state = 1917; this.decimalLiteral(); } break; @@ -8843,19 +8838,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 1919; + this.state = 1918; this.match(MySqlParser.MIN_ROWS); - this.state = 1921; + this.state = 1920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1920; + this.state = 1919; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1923; + this.state = 1922; this.decimalLiteral(); } break; @@ -8863,19 +8858,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 1924; + this.state = 1923; this.match(MySqlParser.PACK_KEYS); - this.state = 1926; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1925; + this.state = 1924; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1928; + this.state = 1927; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 1138 || _la === 1139)) { @@ -8891,19 +8886,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 1929; + this.state = 1928; this.match(MySqlParser.PASSWORD); - this.state = 1931; + this.state = 1930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1930; + this.state = 1929; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1933; + this.state = 1932; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8911,19 +8906,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 1934; + this.state = 1933; this.match(MySqlParser.ROW_FORMAT); - this.state = 1936; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1935; + this.state = 1934; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1938; + this.state = 1937; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 372 || _la === 402 || _la === 431 || _la === 573 || _la === 1156)) { @@ -8939,9 +8934,9 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 1939; + this.state = 1938; this.match(MySqlParser.START); - this.state = 1940; + this.state = 1939; this.match(MySqlParser.TRANSACTION); } break; @@ -8949,19 +8944,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 1941; + this.state = 1940; this.match(MySqlParser.SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1943; + this.state = 1942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1942; + this.state = 1941; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1945; + this.state = 1944; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8969,19 +8964,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 1946; + this.state = 1945; this.match(MySqlParser.STATS_AUTO_RECALC); - this.state = 1948; + this.state = 1947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1947; + this.state = 1946; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1950; + this.state = 1949; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 1138 || _la === 1139)) { @@ -8997,19 +8992,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 1951; + this.state = 1950; this.match(MySqlParser.STATS_PERSISTENT); - this.state = 1953; + this.state = 1952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1952; + this.state = 1951; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1955; + this.state = 1954; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 1138 || _la === 1139)) { @@ -9025,24 +9020,24 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 1956; + this.state = 1955; this.match(MySqlParser.STATS_SAMPLE_PAGES); - this.state = 1958; + this.state = 1957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1957; + this.state = 1956; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1962; + this.state = 1961; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DEFAULT: { - this.state = 1960; + this.state = 1959; this.match(MySqlParser.DEFAULT); } break; @@ -9052,7 +9047,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 1961; + this.state = 1960; this.decimalLiteral(); } break; @@ -9065,16 +9060,16 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 1964; + this.state = 1963; this.match(MySqlParser.TABLESPACE); - this.state = 1965; + this.state = 1964; this.uid(); - this.state = 1967; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1966; + this.state = 1965; this.tablespaceStorage(); } break; @@ -9085,11 +9080,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 1969; + this.state = 1968; this.match(MySqlParser.TABLE_TYPE); - this.state = 1970; + this.state = 1969; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1971; + this.state = 1970; this.tableType(); } break; @@ -9097,7 +9092,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 1972; + this.state = 1971; this.tablespaceStorage(); } break; @@ -9105,19 +9100,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 1973; + this.state = 1972; this.match(MySqlParser.TRANSACTIONAL); - this.state = 1975; + this.state = 1974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1974; + this.state = 1973; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1977; + this.state = 1976; _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { this.errorHandler.recoverInline(this); @@ -9132,23 +9127,23 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 1978; + this.state = 1977; this.match(MySqlParser.UNION); - this.state = 1980; + this.state = 1979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 1979; + this.state = 1978; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1982; + this.state = 1981; this.match(MySqlParser.LR_BRACKET); - this.state = 1983; + this.state = 1982; this.tables(); - this.state = 1984; + this.state = 1983; this.match(MySqlParser.RR_BRACKET); } break; @@ -9175,7 +9170,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1988; + this.state = 1987; _la = this.tokenStream.LA(1); if(!(_la === 514 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -9207,9 +9202,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1990; + this.state = 1989; this.match(MySqlParser.STORAGE); - this.state = 1991; + this.state = 1990; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 398 || _la === 792)) { this.errorHandler.recoverInline(this); @@ -9241,43 +9236,43 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1993; + this.state = 1992; this.match(MySqlParser.PARTITION); - this.state = 1994; + this.state = 1993; this.match(MySqlParser.BY); - this.state = 1995; + this.state = 1994; this.partitionFunctionDefinition(); - this.state = 1998; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 550) { { - this.state = 1996; + this.state = 1995; this.match(MySqlParser.PARTITIONS); - this.state = 1997; + this.state = 1996; localContext._count = this.decimalLiteral(); } } - this.state = 2007; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 2000; + this.state = 1999; this.match(MySqlParser.SUBPARTITION); - this.state = 2001; + this.state = 2000; this.match(MySqlParser.BY); - this.state = 2002; + this.state = 2001; this.subpartitionFunctionDefinition(); - this.state = 2005; + this.state = 2004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 642) { { - this.state = 2003; + this.state = 2002; this.match(MySqlParser.SUBPARTITIONS); - this.state = 2004; + this.state = 2003; localContext._subCount = this.decimalLiteral(); } } @@ -9285,32 +9280,32 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2020; + this.state = 2019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 2009; + this.state = 2008; this.match(MySqlParser.LR_BRACKET); - this.state = 2010; + this.state = 2009; this.partitionDefinition(); - this.state = 2015; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2011; + this.state = 2010; this.match(MySqlParser.COMMA); - this.state = 2012; + this.state = 2011; this.partitionDefinition(); } } - this.state = 2017; + this.state = 2016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2018; + this.state = 2017; this.match(MySqlParser.RR_BRACKET); } break; @@ -9336,30 +9331,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 112, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2068; + this.state = 2067; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2023; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2022; + this.state = 2021; this.match(MySqlParser.LINEAR); } } - this.state = 2025; + this.state = 2024; this.match(MySqlParser.HASH); - this.state = 2026; + this.state = 2025; this.match(MySqlParser.LR_BRACKET); - this.state = 2027; + this.state = 2026; this.expression(0); - this.state = 2028; + this.state = 2027; this.match(MySqlParser.RR_BRACKET); } break; @@ -9367,28 +9362,28 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2031; + this.state = 2030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2030; + this.state = 2029; this.match(MySqlParser.LINEAR); } } - this.state = 2033; + this.state = 2032; this.match(MySqlParser.KEY); - this.state = 2037; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 336) { { - this.state = 2034; + this.state = 2033; this.match(MySqlParser.ALGORITHM); - this.state = 2035; + this.state = 2034; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2036; + this.state = 2035; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1139 || _la === 1140)) { @@ -9401,19 +9396,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2039; + this.state = 2038; this.match(MySqlParser.LR_BRACKET); - this.state = 2041; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2040; + this.state = 2039; this.uidList(); } } - this.state = 2043; + this.state = 2042; this.match(MySqlParser.RR_BRACKET); } break; @@ -9421,30 +9416,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2044; + this.state = 2043; this.match(MySqlParser.RANGE); - this.state = 2054; + this.state = 2053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2045; + this.state = 2044; this.match(MySqlParser.LR_BRACKET); - this.state = 2046; + this.state = 2045; this.expression(0); - this.state = 2047; + this.state = 2046; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.COLUMNS: { - this.state = 2049; + this.state = 2048; this.match(MySqlParser.COLUMNS); - this.state = 2050; + this.state = 2049; this.match(MySqlParser.LR_BRACKET); - this.state = 2051; + this.state = 2050; this.uidList(); - this.state = 2052; + this.state = 2051; this.match(MySqlParser.RR_BRACKET); } break; @@ -9457,30 +9452,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2056; + this.state = 2055; this.match(MySqlParser.LIST); - this.state = 2066; + this.state = 2065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2057; + this.state = 2056; this.match(MySqlParser.LR_BRACKET); - this.state = 2058; + this.state = 2057; this.expression(0); - this.state = 2059; + this.state = 2058; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.COLUMNS: { - this.state = 2061; + this.state = 2060; this.match(MySqlParser.COLUMNS); - this.state = 2062; + this.state = 2061; this.match(MySqlParser.LR_BRACKET); - this.state = 2063; + this.state = 2062; this.uidList(); - this.state = 2064; + this.state = 2063; this.match(MySqlParser.RR_BRACKET); } break; @@ -9510,30 +9505,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 114, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2091; + this.state = 2090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2071; + this.state = 2070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2070; + this.state = 2069; this.match(MySqlParser.LINEAR); } } - this.state = 2073; + this.state = 2072; this.match(MySqlParser.HASH); - this.state = 2074; + this.state = 2073; this.match(MySqlParser.LR_BRACKET); - this.state = 2075; + this.state = 2074; this.expression(0); - this.state = 2076; + this.state = 2075; this.match(MySqlParser.RR_BRACKET); } break; @@ -9541,28 +9536,28 @@ export class MySqlParser extends antlr.Parser { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2079; + this.state = 2078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2078; + this.state = 2077; this.match(MySqlParser.LINEAR); } } - this.state = 2081; + this.state = 2080; this.match(MySqlParser.KEY); - this.state = 2085; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 336) { { - this.state = 2082; + this.state = 2081; this.match(MySqlParser.ALGORITHM); - this.state = 2083; + this.state = 2082; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2084; + this.state = 2083; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1139 || _la === 1140)) { @@ -9575,11 +9570,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2087; + this.state = 2086; this.match(MySqlParser.LR_BRACKET); - this.state = 2088; + this.state = 2087; this.uidList(); - this.state = 2089; + this.state = 2088; this.match(MySqlParser.RR_BRACKET); } break; @@ -9604,85 +9599,85 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 116, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2239; + this.state = 2238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2093; + this.state = 2092; this.match(MySqlParser.PARTITION); - this.state = 2094; + this.state = 2093; this.uid(); - this.state = 2095; + this.state = 2094; this.match(MySqlParser.VALUES); - this.state = 2096; + this.state = 2095; this.match(MySqlParser.LESS); - this.state = 2097; + this.state = 2096; this.match(MySqlParser.THAN); - this.state = 2098; + this.state = 2097; this.match(MySqlParser.LR_BRACKET); - this.state = 2099; + this.state = 2098; this.partitionDefinerAtom(); - this.state = 2104; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2100; + this.state = 2099; this.match(MySqlParser.COMMA); - this.state = 2101; + this.state = 2100; this.partitionDefinerAtom(); } } - this.state = 2106; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2107; + this.state = 2106; this.match(MySqlParser.RR_BRACKET); - this.state = 2111; + this.state = 2110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2108; + this.state = 2107; this.partitionOption(); } } - this.state = 2113; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2125; + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2114; + this.state = 2113; this.match(MySqlParser.LR_BRACKET); - this.state = 2115; + this.state = 2114; this.subpartitionDefinition(); - this.state = 2120; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2116; + this.state = 2115; this.match(MySqlParser.COMMA); - this.state = 2117; + this.state = 2116; this.subpartitionDefinition(); } } - this.state = 2122; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2123; + this.state = 2122; this.match(MySqlParser.RR_BRACKET); } } @@ -9693,58 +9688,58 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2127; + this.state = 2126; this.match(MySqlParser.PARTITION); - this.state = 2128; + this.state = 2127; this.uid(); - this.state = 2129; + this.state = 2128; this.match(MySqlParser.VALUES); - this.state = 2130; + this.state = 2129; this.match(MySqlParser.LESS); - this.state = 2131; + this.state = 2130; this.match(MySqlParser.THAN); - this.state = 2132; + this.state = 2131; this.partitionDefinerAtom(); - this.state = 2136; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2133; + this.state = 2132; this.partitionOption(); } } - this.state = 2138; + this.state = 2137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2150; + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2139; + this.state = 2138; this.match(MySqlParser.LR_BRACKET); - this.state = 2140; + this.state = 2139; this.subpartitionDefinition(); - this.state = 2145; + this.state = 2144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2141; + this.state = 2140; this.match(MySqlParser.COMMA); - this.state = 2142; + this.state = 2141; this.subpartitionDefinition(); } } - this.state = 2147; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2148; + this.state = 2147; this.match(MySqlParser.RR_BRACKET); } } @@ -9755,76 +9750,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2152; + this.state = 2151; this.match(MySqlParser.PARTITION); - this.state = 2153; + this.state = 2152; this.uid(); - this.state = 2154; + this.state = 2153; this.match(MySqlParser.VALUES); - this.state = 2155; + this.state = 2154; this.match(MySqlParser.IN); - this.state = 2156; + this.state = 2155; this.match(MySqlParser.LR_BRACKET); - this.state = 2157; + this.state = 2156; this.partitionDefinerAtom(); - this.state = 2162; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2158; + this.state = 2157; this.match(MySqlParser.COMMA); - this.state = 2159; + this.state = 2158; this.partitionDefinerAtom(); } } - this.state = 2164; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2165; + this.state = 2164; this.match(MySqlParser.RR_BRACKET); - this.state = 2169; + this.state = 2168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2166; + this.state = 2165; this.partitionOption(); } } - this.state = 2171; + this.state = 2170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2183; + this.state = 2182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2172; + this.state = 2171; this.match(MySqlParser.LR_BRACKET); - this.state = 2173; + this.state = 2172; this.subpartitionDefinition(); - this.state = 2178; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2174; + this.state = 2173; this.match(MySqlParser.COMMA); - this.state = 2175; + this.state = 2174; this.subpartitionDefinition(); } } - this.state = 2180; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2181; + this.state = 2180; this.match(MySqlParser.RR_BRACKET); } } @@ -9835,76 +9830,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2185; + this.state = 2184; this.match(MySqlParser.PARTITION); - this.state = 2186; + this.state = 2185; this.uid(); - this.state = 2187; + this.state = 2186; this.match(MySqlParser.VALUES); - this.state = 2188; + this.state = 2187; this.match(MySqlParser.IN); - this.state = 2189; + this.state = 2188; this.match(MySqlParser.LR_BRACKET); - this.state = 2190; + this.state = 2189; this.partitionDefinerVector(); - this.state = 2195; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2191; + this.state = 2190; this.match(MySqlParser.COMMA); - this.state = 2192; + this.state = 2191; this.partitionDefinerVector(); } } - this.state = 2197; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2198; + this.state = 2197; this.match(MySqlParser.RR_BRACKET); - this.state = 2202; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2199; + this.state = 2198; this.partitionOption(); } } - this.state = 2204; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2216; + this.state = 2215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2205; + this.state = 2204; this.match(MySqlParser.LR_BRACKET); - this.state = 2206; + this.state = 2205; this.subpartitionDefinition(); - this.state = 2211; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2207; + this.state = 2206; this.match(MySqlParser.COMMA); - this.state = 2208; + this.state = 2207; this.subpartitionDefinition(); } } - this.state = 2213; + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2213; this.match(MySqlParser.RR_BRACKET); } } @@ -9915,50 +9910,50 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2218; + this.state = 2217; this.match(MySqlParser.PARTITION); - this.state = 2219; + this.state = 2218; this.uid(); - this.state = 2223; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2220; + this.state = 2219; this.partitionOption(); } } - this.state = 2225; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2237; + this.state = 2236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2226; + this.state = 2225; this.match(MySqlParser.LR_BRACKET); - this.state = 2227; + this.state = 2226; this.subpartitionDefinition(); - this.state = 2232; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2228; + this.state = 2227; this.match(MySqlParser.COMMA); - this.state = 2229; + this.state = 2228; this.subpartitionDefinition(); } } - this.state = 2234; + this.state = 2233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2235; + this.state = 2234; this.match(MySqlParser.RR_BRACKET); } } @@ -9985,27 +9980,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 118, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2244; + this.state = 2243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2241; + this.state = 2240; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2241; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2243; + this.state = 2242; this.match(MySqlParser.MAXVALUE); } break; @@ -10032,27 +10027,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2245; this.match(MySqlParser.LR_BRACKET); - this.state = 2247; + this.state = 2246; this.partitionDefinerAtom(); - this.state = 2250; + this.state = 2249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2248; + this.state = 2247; this.match(MySqlParser.COMMA); - this.state = 2249; + this.state = 2248; this.partitionDefinerAtom(); } } - this.state = 2252; + this.state = 2251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 1135); - this.state = 2254; + this.state = 2253; this.match(MySqlParser.RR_BRACKET); } } @@ -10077,21 +10072,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2256; + this.state = 2255; this.match(MySqlParser.SUBPARTITION); - this.state = 2257; + this.state = 2256; this.uid(); - this.state = 2261; + this.state = 2260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 81 || _la === 368 || _la === 388 || _la === 409 || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 268436481) !== 0) || _la === 636 || _la === 647) { { { - this.state = 2258; + this.state = 2257; this.partitionOption(); } } - this.state = 2263; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10116,7 +10111,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 124, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2312; + this.state = 2311; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DEFAULT: @@ -10125,39 +10120,39 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2265; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2264; + this.state = 2263; this.match(MySqlParser.DEFAULT); } } - this.state = 2268; + this.state = 2267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 636) { { - this.state = 2267; + this.state = 2266; this.match(MySqlParser.STORAGE); } } - this.state = 2270; + this.state = 2269; this.match(MySqlParser.ENGINE); - this.state = 2272; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2271; + this.state = 2270; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2274; + this.state = 2273; this.engineName(); } break; @@ -10165,19 +10160,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2275; + this.state = 2274; this.match(MySqlParser.COMMENT); - this.state = 2277; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2276; + this.state = 2275; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2279; + this.state = 2278; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -10185,21 +10180,21 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2280; + this.state = 2279; this.match(MySqlParser.DATA); - this.state = 2281; + this.state = 2280; this.match(MySqlParser.DIRECTORY); - this.state = 2283; + this.state = 2282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2282; + this.state = 2281; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2285; + this.state = 2284; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -10207,21 +10202,21 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2286; + this.state = 2285; this.match(MySqlParser.INDEX); - this.state = 2287; + this.state = 2286; this.match(MySqlParser.DIRECTORY); - this.state = 2289; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2288; + this.state = 2287; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2291; + this.state = 2290; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -10229,19 +10224,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2292; + this.state = 2291; this.match(MySqlParser.MAX_ROWS); - this.state = 2294; + this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2293; + this.state = 2292; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2296; + this.state = 2295; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -10249,19 +10244,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2297; + this.state = 2296; this.match(MySqlParser.MIN_ROWS); - this.state = 2299; + this.state = 2298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2298; + this.state = 2297; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2301; + this.state = 2300; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -10269,19 +10264,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2302; + this.state = 2301; this.match(MySqlParser.TABLESPACE); - this.state = 2304; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2303; + this.state = 2302; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2306; + this.state = 2305; (localContext as PartitionOptionTablespaceContext)._tablespace = this.uid(); } break; @@ -10289,19 +10284,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2307; + this.state = 2306; this.match(MySqlParser.NODEGROUP); - this.state = 2309; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2308; + this.state = 2307; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2311; + this.state = 2310; (localContext as PartitionOptionNodeGroupContext)._nodegroup = this.uid(); } break; @@ -10328,16 +10323,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 126, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2332; + this.state = 2331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2314; + this.state = 2313; this.match(MySqlParser.ALTER); - this.state = 2315; + this.state = 2314; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 150)) { @@ -10347,27 +10342,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2317; + this.state = 2316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2316; + this.state = 2315; this.uid(); } break; } - this.state = 2320; + this.state = 2319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2319; + this.state = 2318; this.createDatabaseOption(); } } - this.state = 2322; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 25)) & ~0x1F) === 0 && ((1 << (_la - 25)) & 131077) !== 0) || _la === 134 || _la === 222 || _la === 405 || _la === 841); @@ -10377,9 +10372,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2324; + this.state = 2323; this.match(MySqlParser.ALTER); - this.state = 2325; + this.state = 2324; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 150)) { @@ -10389,15 +10384,15 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2326; + this.state = 2325; this.uid(); - this.state = 2327; + this.state = 2326; this.match(MySqlParser.UPGRADE); - this.state = 2328; + this.state = 2327; this.match(MySqlParser.DATA); - this.state = 2329; + this.state = 2328; this.match(MySqlParser.DIRECTORY); - this.state = 2330; + this.state = 2329; this.match(MySqlParser.NAME); } break; @@ -10424,104 +10419,104 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2334; + this.state = 2333; this.match(MySqlParser.ALTER); - this.state = 2336; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 2335; + this.state = 2334; this.ownerStatement(); } } - this.state = 2338; + this.state = 2337; this.match(MySqlParser.EVENT); - this.state = 2339; + this.state = 2338; this.fullId(); - this.state = 2343; + this.state = 2342; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2340; + this.state = 2339; this.match(MySqlParser.ON); - this.state = 2341; + this.state = 2340; this.match(MySqlParser.SCHEDULE); - this.state = 2342; + this.state = 2341; this.scheduleExpression(); } break; } - this.state = 2351; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118) { { - this.state = 2345; + this.state = 2344; this.match(MySqlParser.ON); - this.state = 2346; + this.state = 2345; this.match(MySqlParser.COMPLETION); - this.state = 2348; + this.state = 2347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2347; + this.state = 2346; this.match(MySqlParser.NOT); } } - this.state = 2350; + this.state = 2349; this.match(MySqlParser.PRESERVE); } } - this.state = 2356; + this.state = 2355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2353; + this.state = 2352; this.match(MySqlParser.RENAME); - this.state = 2354; + this.state = 2353; this.match(MySqlParser.TO); - this.state = 2355; + this.state = 2354; this.fullId(); } } - this.state = 2359; + this.state = 2358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 396 || _la === 403) { { - this.state = 2358; + this.state = 2357; this.enableType(); } } - this.state = 2363; + this.state = 2362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368) { { - this.state = 2361; + this.state = 2360; this.match(MySqlParser.COMMENT); - this.state = 2362; + this.state = 2361; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2367; + this.state = 2366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2365; + this.state = 2364; this.match(MySqlParser.DO); - this.state = 2366; + this.state = 2365; this.routineBody(); } } @@ -10549,23 +10544,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2368; this.match(MySqlParser.ALTER); - this.state = 2370; + this.state = 2369; this.match(MySqlParser.FUNCTION); - this.state = 2371; + this.state = 2370; this.fullId(); - this.state = 2375; + this.state = 2374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 8388613) !== 0) || _la === 160 || _la === 368 || _la === 381 || _la === 468 || _la === 521) { { { - this.state = 2372; + this.state = 2371; this.routineOption(); } } - this.state = 2377; + this.state = 2376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10591,17 +10586,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2378; + this.state = 2377; this.match(MySqlParser.ALTER); - this.state = 2379; + this.state = 2378; this.match(MySqlParser.INSTANCE); - this.state = 2380; + this.state = 2379; this.match(MySqlParser.ROTATE); - this.state = 2381; + this.state = 2380; this.match(MySqlParser.INNODB); - this.state = 2382; + this.state = 2381; this.match(MySqlParser.MASTER); - this.state = 2383; + this.state = 2382; this.match(MySqlParser.KEY); } } @@ -10626,65 +10621,65 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2385; + this.state = 2384; this.match(MySqlParser.ALTER); - this.state = 2386; + this.state = 2385; this.match(MySqlParser.LOGFILE); - this.state = 2387; + this.state = 2386; this.match(MySqlParser.GROUP); - this.state = 2388; + this.state = 2387; this.uid(); - this.state = 2389; + this.state = 2388; this.match(MySqlParser.ADD); - this.state = 2390; + this.state = 2389; this.match(MySqlParser.UNDOFILE); - this.state = 2391; + this.state = 2390; this.match(MySqlParser.STRING_LITERAL); - this.state = 2397; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 453) { { - this.state = 2392; + this.state = 2391; this.match(MySqlParser.INITIAL_SIZE); - this.state = 2394; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2393; + this.state = 2392; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2396; + this.state = 2395; this.fileSizeLiteral(); } } - this.state = 2400; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 674) { { - this.state = 2399; + this.state = 2398; this.match(MySqlParser.WAIT); } } - this.state = 2402; + this.state = 2401; this.match(MySqlParser.ENGINE); - this.state = 2404; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2403; + this.state = 2402; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2406; + this.state = 2405; this.engineName(); } } @@ -10709,23 +10704,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2408; + this.state = 2407; this.match(MySqlParser.ALTER); - this.state = 2409; + this.state = 2408; this.match(MySqlParser.PROCEDURE); - this.state = 2410; + this.state = 2409; this.fullId(); - this.state = 2414; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 8388613) !== 0) || _la === 160 || _la === 368 || _la === 381 || _la === 468 || _la === 521) { { { - this.state = 2411; + this.state = 2410; this.routineOption(); } } - this.state = 2416; + this.state = 2415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10752,35 +10747,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2417; + this.state = 2416; this.match(MySqlParser.ALTER); - this.state = 2418; + this.state = 2417; this.match(MySqlParser.SERVER); - this.state = 2419; + this.state = 2418; this.uid(); - this.state = 2420; + this.state = 2419; this.match(MySqlParser.OPTIONS); - this.state = 2421; + this.state = 2420; this.match(MySqlParser.LR_BRACKET); - this.state = 2422; + this.state = 2421; this.serverOption(); - this.state = 2427; + this.state = 2426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2423; + this.state = 2422; this.match(MySqlParser.COMMA); - this.state = 2424; + this.state = 2423; this.serverOption(); } } - this.state = 2429; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2430; + this.state = 2429; this.match(MySqlParser.RR_BRACKET); } } @@ -10805,14 +10800,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2432; + this.state = 2431; this.match(MySqlParser.ALTER); - this.state = 2434; + this.state = 2433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 531 || _la === 537) { { - this.state = 2433; + this.state = 2432; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 531 || _la === 537)) { @@ -10825,62 +10820,62 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2437; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2436; + this.state = 2435; this.match(MySqlParser.IGNORE); } } - this.state = 2439; + this.state = 2438; this.match(MySqlParser.TABLE); - this.state = 2440; + this.state = 2439; this.tableName(); - this.state = 2442; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 527 || _la === 674) { { - this.state = 2441; + this.state = 2440; this.waitNowaitClause(); } } - this.state = 2452; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 142082069) !== 0) || ((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 16777729) !== 0) || _la === 81 || _la === 103 || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 1048609) !== 0) || _la === 180 || _la === 192 || _la === 222 || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 137363681) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 839909665) !== 0) || ((((_la - 403)) & ~0x1F) === 0 && ((1 << (_la - 403)) & 32845) !== 0) || ((((_la - 450)) & ~0x1F) === 0 && ((1 << (_la - 450)) & 131105) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 5121) !== 0) || ((((_la - 543)) & ~0x1F) === 0 && ((1 << (_la - 543)) & 67109133) !== 0) || ((((_la - 578)) & ~0x1F) === 0 && ((1 << (_la - 578)) & 16777223) !== 0) || ((((_la - 629)) & ~0x1F) === 0 && ((1 << (_la - 629)) & 168558749) !== 0) || _la === 664 || _la === 677 || _la === 841 || _la === 875 || _la === 1000 || _la === 1148) { { - this.state = 2444; + this.state = 2443; this.alterSpecification(); - this.state = 2449; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2445; + this.state = 2444; this.match(MySqlParser.COMMA); - this.state = 2446; + this.state = 2445; this.alterSpecification(); } } - this.state = 2451; + this.state = 2450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2455; + this.state = 2454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 2454; + this.state = 2453; this.partitionDefinitions(); } } @@ -10908,13 +10903,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2457; + this.state = 2456; this.match(MySqlParser.ALTER); - this.state = 2458; + this.state = 2457; this.match(MySqlParser.TABLESPACE); - this.state = 2459; + this.state = 2458; this.uid(); - this.state = 2460; + this.state = 2459; localContext._objectAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 51)) { @@ -10924,47 +10919,47 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2461; + this.state = 2460; this.match(MySqlParser.DATAFILE); - this.state = 2462; + this.state = 2461; this.match(MySqlParser.STRING_LITERAL); - this.state = 2466; + this.state = 2465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 453) { { - this.state = 2463; + this.state = 2462; this.match(MySqlParser.INITIAL_SIZE); - this.state = 2464; + this.state = 2463; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2465; + this.state = 2464; this.fileSizeLiteral(); } } - this.state = 2469; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 674) { { - this.state = 2468; + this.state = 2467; this.match(MySqlParser.WAIT); } } - this.state = 2471; + this.state = 2470; this.match(MySqlParser.ENGINE); - this.state = 2473; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2472; + this.state = 2471; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2475; + this.state = 2474; this.engineName(); } } @@ -10989,18 +10984,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2477; + this.state = 2476; this.match(MySqlParser.ALTER); - this.state = 2481; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 336) { { - this.state = 2478; + this.state = 2477; this.match(MySqlParser.ALGORITHM); - this.state = 2479; + this.state = 2478; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2480; + this.state = 2479; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 506 || _la === 650 || _la === 658)) { @@ -11013,26 +11008,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2484; + this.state = 2483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 2483; + this.state = 2482; this.ownerStatement(); } } - this.state = 2489; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 2486; + this.state = 2485; this.match(MySqlParser.SQL); - this.state = 2487; + this.state = 2486; this.match(MySqlParser.SECURITY); - this.state = 2488; + this.state = 2487; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 460)) { @@ -11045,41 +11040,41 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2491; + this.state = 2490; this.match(MySqlParser.VIEW); - this.state = 2492; + this.state = 2491; this.fullId(); - this.state = 2497; + this.state = 2496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 2493; + this.state = 2492; this.match(MySqlParser.LR_BRACKET); - this.state = 2494; + this.state = 2493; this.uidList(); - this.state = 2495; + this.state = 2494; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2499; + this.state = 2498; this.match(MySqlParser.AS); - this.state = 2500; + this.state = 2499; this.selectStatement(); - this.state = 2507; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 2501; + this.state = 2500; this.match(MySqlParser.WITH); - this.state = 2503; + this.state = 2502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352 || _la === 474) { { - this.state = 2502; + this.state = 2501; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 474)) { @@ -11092,9 +11087,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2505; + this.state = 2504; this.match(MySqlParser.CHECK); - this.state = 2506; + this.state = 2505; this.match(MySqlParser.OPTION); } } @@ -11121,38 +11116,38 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 2860; + this.state = 2859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2508; this.tableOption(); - this.state = 2516; + this.state = 2515; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 306, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2511; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 2510; + this.state = 2509; this.match(MySqlParser.COMMA); } } - this.state = 2513; + this.state = 2512; this.tableOption(); } } } - this.state = 2518; + this.state = 2517; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 306, this.context); } @@ -11162,36 +11157,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2519; + this.state = 2518; this.match(MySqlParser.ADD); - this.state = 2521; + this.state = 2520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2520; + this.state = 2519; this.match(MySqlParser.COLUMN); } } - this.state = 2523; + this.state = 2522; this.uid(); - this.state = 2524; + this.state = 2523; this.columnDefinition(); - this.state = 2528; + this.state = 2527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FIRST: { - this.state = 2525; + this.state = 2524; this.match(MySqlParser.FIRST); } break; case MySqlParser.AFTER: { - this.state = 2526; + this.state = 2525; this.match(MySqlParser.AFTER); - this.state = 2527; + this.state = 2526; this.uid(); } break; @@ -11209,43 +11204,43 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2530; + this.state = 2529; this.match(MySqlParser.ADD); - this.state = 2532; + this.state = 2531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2531; + this.state = 2530; this.match(MySqlParser.COLUMN); } } - this.state = 2534; + this.state = 2533; this.match(MySqlParser.LR_BRACKET); - this.state = 2535; + this.state = 2534; this.uid(); - this.state = 2536; + this.state = 2535; this.columnDefinition(); - this.state = 2543; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2537; + this.state = 2536; this.match(MySqlParser.COMMA); - this.state = 2538; + this.state = 2537; this.uid(); - this.state = 2539; + this.state = 2538; this.columnDefinition(); } } - this.state = 2545; + this.state = 2544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2546; + this.state = 2545; this.match(MySqlParser.RR_BRACKET); } break; @@ -11253,9 +11248,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2548; + this.state = 2547; this.match(MySqlParser.ADD); - this.state = 2549; + this.state = 2548; (localContext as AlterByAddIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -11265,39 +11260,39 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2551; + this.state = 2550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2550; + this.state = 2549; this.uid(); } } - this.state = 2554; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 2553; + this.state = 2552; this.indexType(); } } - this.state = 2556; + this.state = 2555; this.indexColumnNames(); - this.state = 2560; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 2557; + this.state = 2556; this.indexOption(); } } - this.state = 2562; + this.state = 2561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11307,21 +11302,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2563; + this.state = 2562; this.match(MySqlParser.ADD); - this.state = 2568; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2564; + this.state = 2563; this.match(MySqlParser.CONSTRAINT); - this.state = 2566; + this.state = 2565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2565; + this.state = 2564; (localContext as AlterByAddPrimaryKeyContext)._name = this.uid(); } break; @@ -11329,43 +11324,43 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2570; + this.state = 2569; this.match(MySqlParser.PRIMARY); - this.state = 2571; + this.state = 2570; this.match(MySqlParser.KEY); - this.state = 2573; + this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2572; + this.state = 2571; (localContext as AlterByAddPrimaryKeyContext)._index = this.uid(); } } - this.state = 2576; + this.state = 2575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 2575; + this.state = 2574; this.indexType(); } } - this.state = 2578; + this.state = 2577; this.indexColumnNames(); - this.state = 2582; + this.state = 2581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 2579; + this.state = 2578; this.indexOption(); } } - this.state = 2584; + this.state = 2583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11375,21 +11370,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2585; + this.state = 2584; this.match(MySqlParser.ADD); - this.state = 2590; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2586; + this.state = 2585; this.match(MySqlParser.CONSTRAINT); - this.state = 2588; + this.state = 2587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2587; + this.state = 2586; (localContext as AlterByAddUniqueKeyContext)._name = this.uid(); } } @@ -11397,14 +11392,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2592; + this.state = 2591; this.match(MySqlParser.UNIQUE); - this.state = 2594; + this.state = 2593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 2593; + this.state = 2592; (localContext as AlterByAddUniqueKeyContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -11417,39 +11412,39 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2597; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2596; + this.state = 2595; (localContext as AlterByAddUniqueKeyContext)._indexName = this.uid(); } } - this.state = 2600; + this.state = 2599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 2599; + this.state = 2598; this.indexType(); } } - this.state = 2602; + this.state = 2601; this.indexColumnNames(); - this.state = 2606; + this.state = 2605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 2603; + this.state = 2602; this.indexOption(); } } - this.state = 2608; + this.state = 2607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11459,9 +11454,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2609; + this.state = 2608; this.match(MySqlParser.ADD); - this.state = 2610; + this.state = 2609; (localContext as AlterByAddSpecialIndexContext)._keyType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 159)) { @@ -11471,12 +11466,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2612; + this.state = 2611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 2611; + this.state = 2610; (localContext as AlterByAddSpecialIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -11489,29 +11484,29 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2615; + this.state = 2614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2614; + this.state = 2613; this.uid(); } } - this.state = 2617; + this.state = 2616; this.indexColumnNames(); - this.state = 2621; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 187 || _la === 192 || _la === 368 || _la === 459 || _la === 467 || _la === 673 || _la === 875 || _la === 1000) { { { - this.state = 2618; + this.state = 2617; this.indexOption(); } } - this.state = 2623; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11521,21 +11516,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2624; + this.state = 2623; this.match(MySqlParser.ADD); - this.state = 2629; + this.state = 2628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2625; + this.state = 2624; this.match(MySqlParser.CONSTRAINT); - this.state = 2627; + this.state = 2626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2626; + this.state = 2625; (localContext as AlterByAddForeignKeyContext)._name = this.uid(); } } @@ -11543,23 +11538,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2631; + this.state = 2630; this.match(MySqlParser.FOREIGN); - this.state = 2632; + this.state = 2631; this.match(MySqlParser.KEY); - this.state = 2634; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2633; + this.state = 2632; (localContext as AlterByAddForeignKeyContext)._indexName = this.uid(); } } - this.state = 2636; + this.state = 2635; this.indexColumnNames(); - this.state = 2637; + this.state = 2636; this.referenceDefinition(); } break; @@ -11567,21 +11562,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2639; + this.state = 2638; this.match(MySqlParser.ADD); - this.state = 2644; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2640; + this.state = 2639; this.match(MySqlParser.CONSTRAINT); - this.state = 2642; + this.state = 2641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2641; + this.state = 2640; (localContext as AlterByAddCheckTableConstraintContext)._name = this.uid(); } } @@ -11589,50 +11584,50 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2646; + this.state = 2645; this.match(MySqlParser.CHECK); - this.state = 2653; + this.state = 2652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2647; + this.state = 2646; this.uid(); } break; case 2: { - this.state = 2648; + this.state = 2647; this.stringLiteral(); } break; case 3: { - this.state = 2649; + this.state = 2648; this.match(MySqlParser.LR_BRACKET); - this.state = 2650; + this.state = 2649; this.expression(0); - this.state = 2651; + this.state = 2650; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 2656; + this.state = 2655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2655; + this.state = 2654; this.match(MySqlParser.NOT); } } - this.state = 2659; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2658; + this.state = 2657; this.match(MySqlParser.ENFORCED); } } @@ -11643,21 +11638,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2661; + this.state = 2660; this.match(MySqlParser.ALTER); - this.state = 2666; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2662; + this.state = 2661; this.match(MySqlParser.CONSTRAINT); - this.state = 2664; + this.state = 2663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2663; + this.state = 2662; (localContext as AlterByAlterCheckTableConstraintContext)._name = this.uid(); } } @@ -11665,50 +11660,50 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2668; + this.state = 2667; this.match(MySqlParser.CHECK); - this.state = 2675; + this.state = 2674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: { - this.state = 2669; + this.state = 2668; this.uid(); } break; case 2: { - this.state = 2670; + this.state = 2669; this.stringLiteral(); } break; case 3: { - this.state = 2671; + this.state = 2670; this.match(MySqlParser.LR_BRACKET); - this.state = 2672; + this.state = 2671; this.expression(0); - this.state = 2673; + this.state = 2672; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 2678; + this.state = 2677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2677; + this.state = 2676; this.match(MySqlParser.NOT); } } - this.state = 2681; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2680; + this.state = 2679; this.match(MySqlParser.ENFORCED); } } @@ -11719,21 +11714,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2683; + this.state = 2682; this.match(MySqlParser.ADD); - this.state = 2688; + this.state = 2687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 2684; + this.state = 2683; this.match(MySqlParser.CONSTRAINT); - this.state = 2686; + this.state = 2685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 2685; + this.state = 2684; (localContext as AlterByAddCheckTableConstraintContext)._name = this.uid(); } } @@ -11741,13 +11736,13 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2690; + this.state = 2689; this.match(MySqlParser.CHECK); - this.state = 2691; + this.state = 2690; this.match(MySqlParser.LR_BRACKET); - this.state = 2692; + this.state = 2691; this.expression(0); - this.state = 2693; + this.state = 2692; this.match(MySqlParser.RR_BRACKET); } break; @@ -11755,19 +11750,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2695; + this.state = 2694; this.match(MySqlParser.ALGORITHM); - this.state = 2697; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2696; + this.state = 2695; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2699; + this.state = 2698; (localContext as AlterBySetAlgorithmContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 384 || _la === 454 || _la === 458)) { @@ -11783,38 +11778,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByChangeDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2700; + this.state = 2699; this.match(MySqlParser.ALTER); - this.state = 2702; + this.state = 2701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2701; + this.state = 2700; this.match(MySqlParser.COLUMN); } } - this.state = 2704; + this.state = 2703; this.uid(); - this.state = 2710; + this.state = 2709; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SET: { - this.state = 2705; + this.state = 2704; this.match(MySqlParser.SET); - this.state = 2706; + this.state = 2705; this.match(MySqlParser.DEFAULT); - this.state = 2707; + this.state = 2706; this.defaultValue(); } break; case MySqlParser.DROP: { - this.state = 2708; + this.state = 2707; this.match(MySqlParser.DROP); - this.state = 2709; + this.state = 2708; this.match(MySqlParser.DEFAULT); } break; @@ -11827,38 +11822,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2712; + this.state = 2711; this.match(MySqlParser.CHANGE); - this.state = 2714; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2713; + this.state = 2712; this.match(MySqlParser.COLUMN); } } - this.state = 2716; + this.state = 2715; (localContext as AlterByChangeColumnContext)._oldColumn = this.uid(); - this.state = 2717; + this.state = 2716; (localContext as AlterByChangeColumnContext)._newColumn = this.uid(); - this.state = 2718; + this.state = 2717; this.columnDefinition(); - this.state = 2722; + this.state = 2721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FIRST: { - this.state = 2719; + this.state = 2718; this.match(MySqlParser.FIRST); } break; case MySqlParser.AFTER: { - this.state = 2720; + this.state = 2719; this.match(MySqlParser.AFTER); - this.state = 2721; + this.state = 2720; (localContext as AlterByChangeColumnContext)._afterColumn = this.uid(); } break; @@ -11876,15 +11871,15 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2724; + this.state = 2723; this.match(MySqlParser.RENAME); - this.state = 2725; + this.state = 2724; this.match(MySqlParser.COLUMN); - this.state = 2726; + this.state = 2725; (localContext as AlterByRenameColumnContext)._oldColumn = this.uid(); - this.state = 2727; + this.state = 2726; this.match(MySqlParser.TO); - this.state = 2728; + this.state = 2727; (localContext as AlterByRenameColumnContext)._newColumn = this.uid(); } break; @@ -11892,19 +11887,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2730; + this.state = 2729; this.match(MySqlParser.LOCK); - this.state = 2732; + this.state = 2731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2731; + this.state = 2730; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2734; + this.state = 2733; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 419 || _la === 529 || _la === 611)) { @@ -11920,36 +11915,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2735; + this.state = 2734; this.match(MySqlParser.MODIFY); - this.state = 2737; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2736; + this.state = 2735; this.match(MySqlParser.COLUMN); } } - this.state = 2739; + this.state = 2738; this.uid(); - this.state = 2740; + this.state = 2739; this.columnDefinition(); - this.state = 2744; + this.state = 2743; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FIRST: { - this.state = 2741; + this.state = 2740; this.match(MySqlParser.FIRST); } break; case MySqlParser.AFTER: { - this.state = 2742; + this.state = 2741; this.match(MySqlParser.AFTER); - this.state = 2743; + this.state = 2742; this.uid(); } break; @@ -11967,26 +11962,26 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2746; + this.state = 2745; this.match(MySqlParser.DROP); - this.state = 2748; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2747; + this.state = 2746; this.match(MySqlParser.COLUMN); } } - this.state = 2750; + this.state = 2749; this.uid(); - this.state = 2752; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2751; + this.state = 2750; this.match(MySqlParser.RESTRICT); } } @@ -11997,9 +11992,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2754; + this.state = 2753; this.match(MySqlParser.DROP); - this.state = 2755; + this.state = 2754; _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 30)) { this.errorHandler.recoverInline(this); @@ -12008,7 +12003,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2756; + this.state = 2755; this.uid(); } break; @@ -12016,11 +12011,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2757; + this.state = 2756; this.match(MySqlParser.DROP); - this.state = 2758; + this.state = 2757; this.match(MySqlParser.PRIMARY); - this.state = 2759; + this.state = 2758; this.match(MySqlParser.KEY); } break; @@ -12028,9 +12023,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2760; + this.state = 2759; this.match(MySqlParser.DROP); - this.state = 2761; + this.state = 2760; (localContext as AlterByDropIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -12040,7 +12035,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2762; + this.state = 2761; this.uid(); } break; @@ -12048,9 +12043,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2763; + this.state = 2762; this.match(MySqlParser.RENAME); - this.state = 2764; + this.state = 2763; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -12060,11 +12055,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2765; + this.state = 2764; this.uid(); - this.state = 2766; + this.state = 2765; this.match(MySqlParser.TO); - this.state = 2767; + this.state = 2766; this.uid(); } break; @@ -12072,47 +12067,47 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2769; + this.state = 2768; this.match(MySqlParser.ALTER); - this.state = 2771; + this.state = 2770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2770; + this.state = 2769; this.match(MySqlParser.COLUMN); } } - this.state = 2773; + this.state = 2772; this.uid(); - this.state = 2787; + this.state = 2786; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2774; + this.state = 2773; this.match(MySqlParser.SET); - this.state = 2775; + this.state = 2774; this.match(MySqlParser.DEFAULT); - this.state = 2781; + this.state = 2780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 2776; + this.state = 2775; this.stringLiteral(); } break; case MySqlParser.LR_BRACKET: { - this.state = 2777; + this.state = 2776; this.match(MySqlParser.LR_BRACKET); - this.state = 2778; + this.state = 2777; this.expression(0); - this.state = 2779; + this.state = 2778; this.match(MySqlParser.RR_BRACKET); } break; @@ -12123,9 +12118,9 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 2783; + this.state = 2782; this.match(MySqlParser.SET); - this.state = 2784; + this.state = 2783; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 673)) { this.errorHandler.recoverInline(this); @@ -12138,9 +12133,9 @@ export class MySqlParser extends antlr.Parser { break; case 3: { - this.state = 2785; + this.state = 2784; this.match(MySqlParser.DROP); - this.state = 2786; + this.state = 2785; this.match(MySqlParser.DEFAULT); } break; @@ -12151,13 +12146,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2789; + this.state = 2788; this.match(MySqlParser.ALTER); - this.state = 2790; + this.state = 2789; this.match(MySqlParser.INDEX); - this.state = 2791; + this.state = 2790; this.uid(); - this.state = 2792; + this.state = 2791; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 673)) { this.errorHandler.recoverInline(this); @@ -12172,13 +12167,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2794; + this.state = 2793; this.match(MySqlParser.DROP); - this.state = 2795; + this.state = 2794; this.match(MySqlParser.FOREIGN); - this.state = 2796; + this.state = 2795; this.match(MySqlParser.KEY); - this.state = 2797; + this.state = 2796; this.uid(); } break; @@ -12186,9 +12181,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDisableKeysContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2798; + this.state = 2797; this.match(MySqlParser.DISABLE); - this.state = 2799; + this.state = 2798; this.match(MySqlParser.KEYS); } break; @@ -12196,9 +12191,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByEnableKeysContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2800; + this.state = 2799; this.match(MySqlParser.ENABLE); - this.state = 2801; + this.state = 2800; this.match(MySqlParser.KEYS); } break; @@ -12206,14 +12201,14 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2802; + this.state = 2801; this.match(MySqlParser.RENAME); - this.state = 2804; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 175) { { - this.state = 2803; + this.state = 2802; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 175)) { @@ -12226,18 +12221,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2808; + this.state = 2807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2806; + this.state = 2805; this.uid(); } break; case 2: { - this.state = 2807; + this.state = 2806; this.fullId(); } break; @@ -12248,11 +12243,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2810; + this.state = 2809; this.match(MySqlParser.ORDER); - this.state = 2811; + this.state = 2810; this.match(MySqlParser.BY); - this.state = 2812; + this.state = 2811; this.uidList(); } break; @@ -12260,40 +12255,40 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2813; + this.state = 2812; this.match(MySqlParser.CONVERT); - this.state = 2814; + this.state = 2813; this.match(MySqlParser.TO); - this.state = 2818; + this.state = 2817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CHARSET: { - this.state = 2815; + this.state = 2814; this.match(MySqlParser.CHARSET); } break; case MySqlParser.CHARACTER: { - this.state = 2816; + this.state = 2815; this.match(MySqlParser.CHARACTER); - this.state = 2817; + this.state = 2816; this.match(MySqlParser.SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2820; + this.state = 2819; this.charsetName(); - this.state = 2823; + this.state = 2822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2821; + this.state = 2820; this.match(MySqlParser.COLLATE); - this.state = 2822; + this.state = 2821; this.collationName(); } } @@ -12304,34 +12299,34 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2826; + this.state = 2825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2825; + this.state = 2824; this.match(MySqlParser.DEFAULT); } } - this.state = 2828; + this.state = 2827; this.match(MySqlParser.CHARACTER); - this.state = 2829; + this.state = 2828; this.match(MySqlParser.SET); - this.state = 2830; + this.state = 2829; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2831; + this.state = 2830; this.charsetName(); - this.state = 2835; + this.state = 2834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2832; + this.state = 2831; this.match(MySqlParser.COLLATE); - this.state = 2833; + this.state = 2832; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2834; + this.state = 2833; this.collationName(); } } @@ -12342,9 +12337,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDiscardTablespaceContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2837; + this.state = 2836; this.match(MySqlParser.DISCARD); - this.state = 2838; + this.state = 2837; this.match(MySqlParser.TABLESPACE); } break; @@ -12352,9 +12347,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByImportTablespaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2839; + this.state = 2838; this.match(MySqlParser.IMPORT); - this.state = 2840; + this.state = 2839; this.match(MySqlParser.TABLESPACE); } break; @@ -12362,7 +12357,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2841; + this.state = 2840; this.match(MySqlParser.FORCE); } break; @@ -12370,7 +12365,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2842; + this.state = 2841; (localContext as AlterByValidateContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 677)) { @@ -12380,7 +12375,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2843; + this.state = 2842; this.match(MySqlParser.VALIDATION); } break; @@ -12388,39 +12383,39 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddDefinitionsContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 2844; + this.state = 2843; this.match(MySqlParser.ADD); - this.state = 2846; + this.state = 2845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2845; + this.state = 2844; this.match(MySqlParser.COLUMN); } } - this.state = 2848; + this.state = 2847; this.match(MySqlParser.LR_BRACKET); - this.state = 2849; + this.state = 2848; this.createDefinition(); - this.state = 2854; + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2850; + this.state = 2849; this.match(MySqlParser.COMMA); - this.state = 2851; + this.state = 2850; this.createDefinition(); } } - this.state = 2856; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2857; + this.state = 2856; this.match(MySqlParser.RR_BRACKET); } break; @@ -12428,7 +12423,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 2859; + this.state = 2858; this.alterPartitionSpecification(); } break; @@ -12453,38 +12448,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 148, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 2960; + this.state = 2959; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2861; this.match(MySqlParser.ADD); - this.state = 2863; + this.state = 2862; this.match(MySqlParser.PARTITION); - this.state = 2864; + this.state = 2863; this.match(MySqlParser.LR_BRACKET); - this.state = 2865; + this.state = 2864; this.partitionDefinition(); - this.state = 2870; + this.state = 2869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2866; + this.state = 2865; this.match(MySqlParser.COMMA); - this.state = 2867; + this.state = 2866; this.partitionDefinition(); } } - this.state = 2872; + this.state = 2871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2873; + this.state = 2872; this.match(MySqlParser.RR_BRACKET); } break; @@ -12492,11 +12487,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2874; this.match(MySqlParser.DROP); - this.state = 2876; + this.state = 2875; this.match(MySqlParser.PARTITION); - this.state = 2877; + this.state = 2876; this.uidList(); } break; @@ -12504,11 +12499,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2878; + this.state = 2877; this.match(MySqlParser.DISCARD); - this.state = 2879; + this.state = 2878; this.match(MySqlParser.PARTITION); - this.state = 2882; + this.state = 2881; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -13382,20 +13377,20 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2880; + this.state = 2879; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2881; + this.state = 2880; this.match(MySqlParser.ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2884; + this.state = 2883; this.match(MySqlParser.TABLESPACE); } break; @@ -13403,11 +13398,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2885; + this.state = 2884; this.match(MySqlParser.IMPORT); - this.state = 2886; + this.state = 2885; this.match(MySqlParser.PARTITION); - this.state = 2889; + this.state = 2888; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -14281,20 +14276,20 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2887; + this.state = 2886; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2888; + this.state = 2887; this.match(MySqlParser.ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2891; + this.state = 2890; this.match(MySqlParser.TABLESPACE); } break; @@ -14302,11 +14297,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2892; + this.state = 2891; this.match(MySqlParser.TRUNCATE); - this.state = 2893; + this.state = 2892; this.match(MySqlParser.PARTITION); - this.state = 2896; + this.state = 2895; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -15180,13 +15175,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2894; + this.state = 2893; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2895; + this.state = 2894; this.match(MySqlParser.ALL); } break; @@ -15199,11 +15194,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2898; + this.state = 2897; this.match(MySqlParser.COALESCE); - this.state = 2899; + this.state = 2898; this.match(MySqlParser.PARTITION); - this.state = 2900; + this.state = 2899; this.decimalLiteral(); } break; @@ -15211,35 +15206,35 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2901; + this.state = 2900; this.match(MySqlParser.REORGANIZE); - this.state = 2902; + this.state = 2901; this.match(MySqlParser.PARTITION); - this.state = 2903; + this.state = 2902; this.uidList(); - this.state = 2904; + this.state = 2903; this.match(MySqlParser.INTO); - this.state = 2905; + this.state = 2904; this.match(MySqlParser.LR_BRACKET); - this.state = 2906; + this.state = 2905; this.partitionDefinition(); - this.state = 2911; + this.state = 2910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 2907; + this.state = 2906; this.match(MySqlParser.COMMA); - this.state = 2908; + this.state = 2907; this.partitionDefinition(); } } - this.state = 2913; + this.state = 2912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2914; + this.state = 2913; this.match(MySqlParser.RR_BRACKET); } break; @@ -15247,24 +15242,24 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2916; + this.state = 2915; this.match(MySqlParser.EXCHANGE); - this.state = 2917; + this.state = 2916; this.match(MySqlParser.PARTITION); - this.state = 2918; + this.state = 2917; this.uid(); - this.state = 2919; + this.state = 2918; this.match(MySqlParser.WITH); - this.state = 2920; + this.state = 2919; this.match(MySqlParser.TABLE); - this.state = 2921; + this.state = 2920; this.tableName(); - this.state = 2924; + this.state = 2923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192 || _la === 677) { { - this.state = 2922; + this.state = 2921; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 677)) { @@ -15274,7 +15269,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2923; + this.state = 2922; this.match(MySqlParser.VALIDATION); } } @@ -15285,11 +15280,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2926; + this.state = 2925; this.match(MySqlParser.ANALYZE); - this.state = 2927; + this.state = 2926; this.match(MySqlParser.PARTITION); - this.state = 2930; + this.state = 2929; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -16163,13 +16158,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2928; + this.state = 2927; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2929; + this.state = 2928; this.match(MySqlParser.ALL); } break; @@ -16182,11 +16177,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2932; + this.state = 2931; this.match(MySqlParser.CHECK); - this.state = 2933; + this.state = 2932; this.match(MySqlParser.PARTITION); - this.state = 2936; + this.state = 2935; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -17060,13 +17055,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2934; + this.state = 2933; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2935; + this.state = 2934; this.match(MySqlParser.ALL); } break; @@ -17079,11 +17074,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2938; + this.state = 2937; this.match(MySqlParser.OPTIMIZE); - this.state = 2939; + this.state = 2938; this.match(MySqlParser.PARTITION); - this.state = 2942; + this.state = 2941; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -17957,13 +17952,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2940; + this.state = 2939; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2941; + this.state = 2940; this.match(MySqlParser.ALL); } break; @@ -17976,11 +17971,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2944; + this.state = 2943; this.match(MySqlParser.REBUILD); - this.state = 2945; + this.state = 2944; this.match(MySqlParser.PARTITION); - this.state = 2948; + this.state = 2947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -18854,13 +18849,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2946; + this.state = 2945; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2947; + this.state = 2946; this.match(MySqlParser.ALL); } break; @@ -18873,11 +18868,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2950; + this.state = 2949; this.match(MySqlParser.REPAIR); - this.state = 2951; + this.state = 2950; this.match(MySqlParser.PARTITION); - this.state = 2954; + this.state = 2953; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -19751,13 +19746,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2952; + this.state = 2951; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 2953; + this.state = 2952; this.match(MySqlParser.ALL); } break; @@ -19770,9 +19765,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2956; + this.state = 2955; this.match(MySqlParser.REMOVE); - this.state = 2957; + this.state = 2956; this.match(MySqlParser.PARTITIONING); } break; @@ -19780,9 +19775,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2958; + this.state = 2957; this.match(MySqlParser.UPGRADE); - this.state = 2959; + this.state = 2958; this.match(MySqlParser.PARTITIONING); } break; @@ -19811,9 +19806,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2962; + this.state = 2961; this.match(MySqlParser.DROP); - this.state = 2963; + this.state = 2962; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 150)) { @@ -19823,17 +19818,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2965; + this.state = 2964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2964; + this.state = 2963; this.ifExists(); } break; } - this.state = 2967; + this.state = 2966; this.uid(); } } @@ -19857,21 +19852,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2969; + this.state = 2968; this.match(MySqlParser.DROP); - this.state = 2970; + this.state = 2969; this.match(MySqlParser.EVENT); - this.state = 2972; + this.state = 2971; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2971; + this.state = 2970; this.ifExists(); } break; } - this.state = 2974; + this.state = 2973; this.fullId(); } } @@ -19896,16 +19891,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2976; + this.state = 2975; this.match(MySqlParser.DROP); - this.state = 2977; + this.state = 2976; this.match(MySqlParser.INDEX); - this.state = 2979; + this.state = 2978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2978; + this.state = 2977; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 531 || _la === 537)) { @@ -19918,35 +19913,35 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 2981; + this.state = 2980; this.uid(); - this.state = 2982; + this.state = 2981; this.match(MySqlParser.ON); - this.state = 2983; + this.state = 2982; this.tableName(); - this.state = 2996; + this.state = 2995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 103 || _la === 336) { { - this.state = 2994; + this.state = 2993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ALGORITHM: { - this.state = 2984; + this.state = 2983; this.match(MySqlParser.ALGORITHM); - this.state = 2986; + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2985; + this.state = 2984; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2988; + this.state = 2987; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 384 || _la === 454)) { @@ -19960,19 +19955,19 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.LOCK: { - this.state = 2989; + this.state = 2988; this.match(MySqlParser.LOCK); - this.state = 2991; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 2990; + this.state = 2989; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2993; + this.state = 2992; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 419 || _la === 529 || _la === 611)) { @@ -19988,7 +19983,7 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 2998; + this.state = 2997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20014,19 +20009,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2999; + this.state = 2998; this.match(MySqlParser.DROP); - this.state = 3000; + this.state = 2999; this.match(MySqlParser.LOGFILE); - this.state = 3001; + this.state = 3000; this.match(MySqlParser.GROUP); - this.state = 3002; + this.state = 3001; this.uid(); - this.state = 3003; + this.state = 3002; this.match(MySqlParser.ENGINE); - this.state = 3004; + this.state = 3003; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3005; + this.state = 3004; this.engineName(); } } @@ -20050,21 +20045,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3007; + this.state = 3006; this.match(MySqlParser.DROP); - this.state = 3008; + this.state = 3007; this.match(MySqlParser.PROCEDURE); - this.state = 3010; + this.state = 3009; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3009; + this.state = 3008; this.ifExists(); } break; } - this.state = 3012; + this.state = 3011; this.fullId(); } } @@ -20088,21 +20083,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3014; + this.state = 3013; this.match(MySqlParser.DROP); - this.state = 3015; + this.state = 3014; this.match(MySqlParser.FUNCTION); - this.state = 3017; + this.state = 3016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 3016; + this.state = 3015; this.ifExists(); } break; } - this.state = 3019; + this.state = 3018; this.fullId(); } } @@ -20126,21 +20121,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 3020; this.match(MySqlParser.DROP); - this.state = 3022; + this.state = 3021; this.match(MySqlParser.SERVER); - this.state = 3024; + this.state = 3023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 3023; + this.state = 3022; this.ifExists(); } break; } - this.state = 3026; + this.state = 3025; this.uid(); } } @@ -20165,38 +20160,38 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3028; + this.state = 3027; this.match(MySqlParser.DROP); - this.state = 3030; + this.state = 3029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 649) { { - this.state = 3029; + this.state = 3028; this.match(MySqlParser.TEMPORARY); } } - this.state = 3032; + this.state = 3031; this.match(MySqlParser.TABLE); - this.state = 3034; + this.state = 3033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 3033; + this.state = 3032; this.ifExists(); } break; } - this.state = 3036; + this.state = 3035; this.tables(); - this.state = 3038; + this.state = 3037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 144) { { - this.state = 3037; + this.state = 3036; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 144)) { @@ -20232,30 +20227,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3040; + this.state = 3039; this.match(MySqlParser.DROP); - this.state = 3041; + this.state = 3040; this.match(MySqlParser.TABLESPACE); - this.state = 3042; + this.state = 3041; this.uid(); - this.state = 3048; + this.state = 3047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 409) { { - this.state = 3043; + this.state = 3042; this.match(MySqlParser.ENGINE); - this.state = 3045; + this.state = 3044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1124) { { - this.state = 3044; + this.state = 3043; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3047; + this.state = 3046; this.engineName(); } } @@ -20282,21 +20277,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3049; this.match(MySqlParser.DROP); - this.state = 3051; + this.state = 3050; this.match(MySqlParser.TRIGGER); - this.state = 3053; + this.state = 3052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3052; + this.state = 3051; this.ifExists(); } break; } - this.state = 3055; + this.state = 3054; this.fullId(); } } @@ -20321,44 +20316,44 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3056; this.match(MySqlParser.DROP); - this.state = 3058; + this.state = 3057; this.match(MySqlParser.VIEW); - this.state = 3060; + this.state = 3059; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3059; + this.state = 3058; this.ifExists(); } break; } - this.state = 3062; + this.state = 3061; this.fullId(); - this.state = 3067; + this.state = 3066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3063; + this.state = 3062; this.match(MySqlParser.COMMA); - this.state = 3064; + this.state = 3063; this.fullId(); } } - this.state = 3069; + this.state = 3068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3071; + this.state = 3070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 144) { { - this.state = 3070; + this.state = 3069; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 144)) { @@ -20394,35 +20389,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3073; + this.state = 3072; this.match(MySqlParser.DROP); - this.state = 3074; + this.state = 3073; this.match(MySqlParser.ROLE); - this.state = 3076; + this.state = 3075; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: { - this.state = 3075; + this.state = 3074; this.ifExists(); } break; } - this.state = 3078; + this.state = 3077; this.roleName(); - this.state = 3083; + this.state = 3082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3079; + this.state = 3078; this.match(MySqlParser.COMMA); - this.state = 3080; + this.state = 3079; this.roleName(); } } - this.state = 3085; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20447,101 +20442,101 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 174, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3119; + this.state = 3118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3086; + this.state = 3085; this.match(MySqlParser.SET); - this.state = 3087; + this.state = 3086; this.match(MySqlParser.DEFAULT); - this.state = 3088; + this.state = 3087; this.match(MySqlParser.ROLE); - this.state = 3099; + this.state = 3098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3089; + this.state = 3088; this.match(MySqlParser.NONE); } break; case 2: { - this.state = 3090; + this.state = 3089; this.match(MySqlParser.ALL); } break; case 3: { - this.state = 3091; + this.state = 3090; this.roleName(); - this.state = 3096; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3092; + this.state = 3091; this.match(MySqlParser.COMMA); - this.state = 3093; + this.state = 3092; this.roleName(); } } - this.state = 3098; + this.state = 3097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3101; + this.state = 3100; this.match(MySqlParser.TO); - this.state = 3104; + this.state = 3103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3102; + this.state = 3101; this.userName(); } break; case 2: { - this.state = 3103; + this.state = 3102; this.uid(); } break; } - this.state = 3113; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3106; + this.state = 3105; this.match(MySqlParser.COMMA); - this.state = 3109; + this.state = 3108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: { - this.state = 3107; + this.state = 3106; this.userName(); } break; case 2: { - this.state = 3108; + this.state = 3107; this.uid(); } break; } } } - this.state = 3115; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20550,11 +20545,11 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3116; + this.state = 3115; this.match(MySqlParser.SET); - this.state = 3117; + this.state = 3116; this.match(MySqlParser.ROLE); - this.state = 3118; + this.state = 3117; this.roleOption(); } break; @@ -20581,25 +20576,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3121; + this.state = 3120; this.match(MySqlParser.RENAME); - this.state = 3122; + this.state = 3121; this.match(MySqlParser.TABLE); - this.state = 3123; + this.state = 3122; this.renameTableClause(); - this.state = 3128; + this.state = 3127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3124; + this.state = 3123; this.match(MySqlParser.COMMA); - this.state = 3125; + this.state = 3124; this.renameTableClause(); } } - this.state = 3130; + this.state = 3129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20625,11 +20620,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3131; + this.state = 3130; this.tableName(); - this.state = 3132; + this.state = 3131; this.match(MySqlParser.TO); - this.state = 3133; + this.state = 3132; this.tableName(); } } @@ -20654,19 +20649,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3135; + this.state = 3134; this.match(MySqlParser.TRUNCATE); - this.state = 3137; + this.state = 3136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 172) { { - this.state = 3136; + this.state = 3135; this.match(MySqlParser.TABLE); } } - this.state = 3139; + this.state = 3138; this.tableName(); } } @@ -20691,34 +20686,34 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3141; + this.state = 3140; this.match(MySqlParser.CALL); - this.state = 3142; + this.state = 3141; this.fullId(); - this.state = 3149; + this.state = 3148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 3143; + this.state = 3142; this.match(MySqlParser.LR_BRACKET); - this.state = 3146; + this.state = 3145; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { - this.state = 3144; + this.state = 3143; this.constants(); } break; case 2: { - this.state = 3145; + this.state = 3144; this.expressions(); } break; } - this.state = 3148; + this.state = 3147; this.match(MySqlParser.RR_BRACKET); } } @@ -20743,20 +20738,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 184, MySqlParser.RULE_deleteStatement); try { - this.state = 3153; + this.state = 3152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3151; + this.state = 3150; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3152; + this.state = 3151; this.multipleDeleteStatement(); } break; @@ -20782,9 +20777,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3155; + this.state = 3154; this.match(MySqlParser.DO); - this.state = 3156; + this.state = 3155; this.expressions(); } } @@ -20806,34 +20801,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 188, MySqlParser.RULE_handlerStatement); try { - this.state = 3162; + this.state = 3161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3158; + this.state = 3157; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3159; + this.state = 3158; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3160; + this.state = 3159; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3161; + this.state = 3160; this.handlerCloseStatement(); } break; @@ -20860,14 +20855,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3164; + this.state = 3163; this.match(MySqlParser.INSERT); - this.state = 3166; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 75 || _la === 106) { { - this.state = 3165; + this.state = 3164; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 75 || _la === 106)) { @@ -20880,53 +20875,53 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3169; + this.state = 3168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3168; + this.state = 3167; this.match(MySqlParser.IGNORE); } } - this.state = 3172; + this.state = 3171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 3171; + this.state = 3170; this.match(MySqlParser.INTO); } } - this.state = 3174; + this.state = 3173; this.tableName(); - this.state = 3181; + this.state = 3180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 3175; + this.state = 3174; this.match(MySqlParser.PARTITION); - this.state = 3176; + this.state = 3175; this.match(MySqlParser.LR_BRACKET); - this.state = 3178; + this.state = 3177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 3177; + this.state = 3176; localContext._partitions = this.uidList(); } } - this.state = 3180; + this.state = 3179; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3206; + this.state = 3205; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: @@ -20934,46 +20929,46 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3188; + this.state = 3187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3183; + this.state = 3182; this.match(MySqlParser.LR_BRACKET); - this.state = 3185; + this.state = 3184; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3184; + this.state = 3183; localContext._columns = this.fullColumnNameList(); } break; } - this.state = 3187; + this.state = 3186; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3190; + this.state = 3189; this.insertStatementValue(); - this.state = 3195; + this.state = 3194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537155584) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 3192; + this.state = 3191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3191; + this.state = 3190; this.match(MySqlParser.AS); } } - this.state = 3194; + this.state = 3193; this.uid(); } } @@ -20982,24 +20977,24 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.SET: { - this.state = 3197; + this.state = 3196; this.match(MySqlParser.SET); - this.state = 3198; + this.state = 3197; localContext._setFirst = this.updatedElement(); - this.state = 3203; + this.state = 3202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3199; + this.state = 3198; this.match(MySqlParser.COMMA); - this.state = 3200; + this.state = 3199; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3205; + this.state = 3204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21008,35 +21003,35 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3220; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118) { { - this.state = 3208; + this.state = 3207; this.match(MySqlParser.ON); - this.state = 3209; + this.state = 3208; this.match(MySqlParser.DUPLICATE); - this.state = 3210; + this.state = 3209; this.match(MySqlParser.KEY); - this.state = 3211; + this.state = 3210; this.match(MySqlParser.UPDATE); - this.state = 3212; + this.state = 3211; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3217; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3213; + this.state = 3212; this.match(MySqlParser.COMMA); - this.state = 3214; + this.state = 3213; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3219; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21066,16 +21061,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3222; + this.state = 3221; this.match(MySqlParser.LOAD); - this.state = 3223; + this.state = 3222; this.match(MySqlParser.DATA); - this.state = 3225; + this.state = 3224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 374) { { - this.state = 3224; + this.state = 3223; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 374)) { @@ -21088,26 +21083,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3228; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 474) { { - this.state = 3227; + this.state = 3226; this.match(MySqlParser.LOCAL); } } - this.state = 3230; + this.state = 3229; this.match(MySqlParser.INFILE); - this.state = 3231; + this.state = 3230; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3233; + this.state = 3232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78 || _la === 141) { { - this.state = 3232; + this.state = 3231; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 141)) { @@ -21120,48 +21115,48 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3235; + this.state = 3234; this.match(MySqlParser.INTO); - this.state = 3236; + this.state = 3235; this.match(MySqlParser.TABLE); - this.state = 3237; + this.state = 3236; this.tableName(); - this.state = 3243; + this.state = 3242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 3238; + this.state = 3237; this.match(MySqlParser.PARTITION); - this.state = 3239; + this.state = 3238; this.match(MySqlParser.LR_BRACKET); - this.state = 3240; + this.state = 3239; this.uidList(); - this.state = 3241; + this.state = 3240; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3248; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3245; + this.state = 3244; this.match(MySqlParser.CHARACTER); - this.state = 3246; + this.state = 3245; this.match(MySqlParser.SET); - this.state = 3247; + this.state = 3246; localContext._charset = this.charsetName(); } } - this.state = 3256; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 365 || _la === 427) { { - this.state = 3250; + this.state = 3249; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 365 || _la === 427)) { @@ -21171,57 +21166,57 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3252; + this.state = 3251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3251; + this.state = 3250; this.selectFieldsInto(); } } - this.state = 3254; + this.state = 3253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 122 || _la === 173); } } - this.state = 3264; + this.state = 3263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 3258; + this.state = 3257; this.match(MySqlParser.LINES); - this.state = 3260; + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3259; + this.state = 3258; this.selectLinesInto(); } } - this.state = 3262; + this.state = 3261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 169 || _la === 173); } } - this.state = 3270; + this.state = 3269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3266; + this.state = 3265; this.match(MySqlParser.IGNORE); - this.state = 3267; + this.state = 3266; this.decimalLiteral(); - this.state = 3268; + this.state = 3267; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 601)) { @@ -21234,58 +21229,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3283; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 3272; + this.state = 3271; this.match(MySqlParser.LR_BRACKET); - this.state = 3273; + this.state = 3272; this.assignmentField(); - this.state = 3278; + this.state = 3277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3274; + this.state = 3273; this.match(MySqlParser.COMMA); - this.state = 3275; + this.state = 3274; this.assignmentField(); } } - this.state = 3280; + this.state = 3279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3281; + this.state = 3280; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3294; + this.state = 3293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153) { { - this.state = 3285; + this.state = 3284; this.match(MySqlParser.SET); - this.state = 3286; + this.state = 3285; this.updatedElement(); - this.state = 3291; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3287; + this.state = 3286; this.match(MySqlParser.COMMA); - this.state = 3288; + this.state = 3287; this.updatedElement(); } } - this.state = 3293; + this.state = 3292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21315,16 +21310,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3296; + this.state = 3295; this.match(MySqlParser.LOAD); - this.state = 3297; + this.state = 3296; this.match(MySqlParser.XML); - this.state = 3299; + this.state = 3298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 374) { { - this.state = 3298; + this.state = 3297; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 374)) { @@ -21337,26 +21332,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3302; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 474) { { - this.state = 3301; + this.state = 3300; this.match(MySqlParser.LOCAL); } } - this.state = 3304; + this.state = 3303; this.match(MySqlParser.INFILE); - this.state = 3305; + this.state = 3304; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3307; + this.state = 3306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78 || _la === 141) { { - this.state = 3306; + this.state = 3305; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 141)) { @@ -21369,56 +21364,56 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3309; + this.state = 3308; this.match(MySqlParser.INTO); - this.state = 3310; + this.state = 3309; this.match(MySqlParser.TABLE); - this.state = 3311; + this.state = 3310; this.tableName(); - this.state = 3315; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3312; + this.state = 3311; this.match(MySqlParser.CHARACTER); - this.state = 3313; + this.state = 3312; this.match(MySqlParser.SET); - this.state = 3314; + this.state = 3313; localContext._charset = this.charsetName(); } } - this.state = 3323; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 601) { { - this.state = 3317; + this.state = 3316; this.match(MySqlParser.ROWS); - this.state = 3318; + this.state = 3317; this.match(MySqlParser.IDENTIFIED); - this.state = 3319; + this.state = 3318; this.match(MySqlParser.BY); - this.state = 3320; + this.state = 3319; this.match(MySqlParser.LESS_SYMBOL); - this.state = 3321; + this.state = 3320; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3322; + this.state = 3321; this.match(MySqlParser.GREATER_SYMBOL); } } - this.state = 3329; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3325; + this.state = 3324; this.match(MySqlParser.IGNORE); - this.state = 3326; + this.state = 3325; this.decimalLiteral(); - this.state = 3327; + this.state = 3326; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 601)) { @@ -21431,58 +21426,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3342; + this.state = 3341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 3331; + this.state = 3330; this.match(MySqlParser.LR_BRACKET); - this.state = 3332; + this.state = 3331; this.assignmentField(); - this.state = 3337; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3333; + this.state = 3332; this.match(MySqlParser.COMMA); - this.state = 3334; + this.state = 3333; this.assignmentField(); } } - this.state = 3339; + this.state = 3338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3340; + this.state = 3339; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3353; + this.state = 3352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153) { { - this.state = 3344; + this.state = 3343; this.match(MySqlParser.SET); - this.state = 3345; + this.state = 3344; this.updatedElement(); - this.state = 3350; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3346; + this.state = 3345; this.match(MySqlParser.COMMA); - this.state = 3347; + this.state = 3346; this.updatedElement(); } } - this.state = 3352; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21512,14 +21507,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3355; + this.state = 3354; this.match(MySqlParser.REPLACE); - this.state = 3357; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 106) { { - this.state = 3356; + this.state = 3355; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 106)) { @@ -21532,35 +21527,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3360; + this.state = 3359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 3359; + this.state = 3358; this.match(MySqlParser.INTO); } } - this.state = 3362; + this.state = 3361; this.tableName(); - this.state = 3368; + this.state = 3367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 3363; + this.state = 3362; this.match(MySqlParser.PARTITION); - this.state = 3364; + this.state = 3363; this.match(MySqlParser.LR_BRACKET); - this.state = 3365; + this.state = 3364; localContext._partitions = this.uidList(); - this.state = 3366; + this.state = 3365; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3386; + this.state = 3385; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: @@ -21568,44 +21563,44 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3374; + this.state = 3373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3370; + this.state = 3369; this.match(MySqlParser.LR_BRACKET); - this.state = 3371; + this.state = 3370; localContext._columns = this.uidList(); - this.state = 3372; + this.state = 3371; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3376; + this.state = 3375; this.insertStatementValue(); } break; case MySqlParser.SET: { - this.state = 3377; + this.state = 3376; this.match(MySqlParser.SET); - this.state = 3378; + this.state = 3377; localContext._setFirst = this.updatedElement(); - this.state = 3383; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3379; + this.state = 3378; this.match(MySqlParser.COMMA); - this.state = 3380; + this.state = 3379; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3385; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21636,21 +21631,21 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3453; + this.state = 3452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: localContext = new SimpleSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3388; + this.state = 3387; this.querySpecification(); - this.state = 3390; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 103) { { - this.state = 3389; + this.state = 3388; this.lockClause(); } } @@ -21661,14 +21656,14 @@ export class MySqlParser extends antlr.Parser { localContext = new ParenthesisSelectContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3392; + this.state = 3391; this.queryExpression(); - this.state = 3394; + this.state = 3393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 103) { { - this.state = 3393; + this.state = 3392; this.lockClause(); } } @@ -21679,25 +21674,25 @@ export class MySqlParser extends antlr.Parser { localContext = new UnionSelectContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3398; + this.state = 3397; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: { - this.state = 3396; + this.state = 3395; this.querySpecificationNointo(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3397; + this.state = 3396; this.queryExpressionNointo(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3401; + this.state = 3400; this.errorHandler.sync(this); alternative = 1; do { @@ -21705,7 +21700,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 3400; + this.state = 3399; this.unionStatement(); } } @@ -21713,23 +21708,23 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3403; + this.state = 3402; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 3413; + this.state = 3412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3405; + this.state = 3404; this.match(MySqlParser.UNION); - this.state = 3407; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6 || _la === 49) { { - this.state = 3406; + this.state = 3405; (localContext as UnionSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49)) { @@ -21742,18 +21737,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3411; + this.state = 3410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: { - this.state = 3409; + this.state = 3408; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3410; + this.state = 3409; this.queryExpression(); } break; @@ -21763,32 +21758,32 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3416; + this.state = 3415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3415; + this.state = 3414; this.orderByClause(); } break; } - this.state = 3419; + this.state = 3418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3418; + this.state = 3417; this.limitClause(); } } - this.state = 3422; + this.state = 3421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 103) { { - this.state = 3421; + this.state = 3420; this.lockClause(); } } @@ -21799,9 +21794,9 @@ export class MySqlParser extends antlr.Parser { localContext = new UnionParenthesisSelectContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3424; + this.state = 3423; this.queryExpressionNointo(); - this.state = 3426; + this.state = 3425; this.errorHandler.sync(this); alternative = 1; do { @@ -21809,7 +21804,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 3425; + this.state = 3424; this.unionParenthesis(); } } @@ -21817,23 +21812,23 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3428; + this.state = 3427; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 463, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 3435; + this.state = 3434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3430; + this.state = 3429; this.match(MySqlParser.UNION); - this.state = 3432; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6 || _la === 49) { { - this.state = 3431; + this.state = 3430; (localContext as UnionParenthesisSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49)) { @@ -21846,37 +21841,37 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3434; + this.state = 3433; this.queryExpression(); } } - this.state = 3438; + this.state = 3437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3437; + this.state = 3436; this.orderByClause(); } break; } - this.state = 3441; + this.state = 3440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3440; + this.state = 3439; this.limitClause(); } } - this.state = 3444; + this.state = 3443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 103) { { - this.state = 3443; + this.state = 3442; this.lockClause(); } } @@ -21887,21 +21882,21 @@ export class MySqlParser extends antlr.Parser { localContext = new WithLateralStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3446; + this.state = 3445; this.querySpecificationNointo(); - this.state = 3449; + this.state = 3448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3447; + this.state = 3446; this.match(MySqlParser.COMMA); - this.state = 3448; + this.state = 3447; this.lateralStatement(); } } - this.state = 3451; + this.state = 3450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 1135); @@ -21927,20 +21922,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 200, MySqlParser.RULE_updateStatement); try { - this.state = 3457; + this.state = 3456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3455; + this.state = 3454; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3456; + this.state = 3455; this.multipleUpdateStatement(); } break; @@ -21967,47 +21962,47 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3459; + this.state = 3458; this.match(MySqlParser.VALUES); - this.state = 3460; + this.state = 3459; this.match(MySqlParser.LR_BRACKET); - this.state = 3462; + this.state = 3461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3461; + this.state = 3460; this.expressionsWithDefaults(); } break; } - this.state = 3464; + this.state = 3463; this.match(MySqlParser.RR_BRACKET); - this.state = 3473; + this.state = 3472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3465; + this.state = 3464; this.match(MySqlParser.COMMA); - this.state = 3466; + this.state = 3465; this.match(MySqlParser.LR_BRACKET); - this.state = 3468; + this.state = 3467; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 3467; + this.state = 3466; this.expressionsWithDefaults(); } break; } - this.state = 3470; + this.state = 3469; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3475; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22032,14 +22027,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 204, MySqlParser.RULE_insertStatementValue); let _la: number; try { - this.state = 3494; + this.state = 3493; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3476; + this.state = 3475; this.selectStatement(); } break; @@ -22047,7 +22042,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 3477; + this.state = 3476; localContext._insertFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 188 || _la === 669)) { @@ -22057,45 +22052,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3478; + this.state = 3477; this.match(MySqlParser.LR_BRACKET); - this.state = 3480; + this.state = 3479; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3479; + this.state = 3478; this.expressionsWithDefaults(); } break; } - this.state = 3482; + this.state = 3481; this.match(MySqlParser.RR_BRACKET); - this.state = 3491; + this.state = 3490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3483; + this.state = 3482; this.match(MySqlParser.COMMA); - this.state = 3484; + this.state = 3483; this.match(MySqlParser.LR_BRACKET); - this.state = 3486; + this.state = 3485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3485; + this.state = 3484; this.expressionsWithDefaults(); } break; } - this.state = 3488; + this.state = 3487; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3493; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22125,22 +22120,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3496; + this.state = 3495; this.fullColumnName(); - this.state = 3497; + this.state = 3496; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3500; + this.state = 3499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 3498; + this.state = 3497; this.expression(0); } break; case 2: { - this.state = 3499; + this.state = 3498; this.match(MySqlParser.DEFAULT); } break; @@ -22165,7 +22160,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 208, MySqlParser.RULE_assignmentField); try { - this.state = 3504; + this.state = 3503; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -23040,14 +23035,14 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3502; + this.state = 3501; this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3503; + this.state = 3502; this.match(MySqlParser.LOCAL_ID); } break; @@ -23073,28 +23068,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new LockClauseContext(this.context, this.state); this.enterRule(localContext, 210, MySqlParser.RULE_lockClause); try { - this.state = 3512; + this.state = 3511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3506; + this.state = 3505; this.match(MySqlParser.FOR); - this.state = 3507; + this.state = 3506; this.match(MySqlParser.UPDATE); } break; case MySqlParser.LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3508; + this.state = 3507; this.match(MySqlParser.LOCK); - this.state = 3509; + this.state = 3508; this.match(MySqlParser.IN); - this.state = 3510; + this.state = 3509; this.match(MySqlParser.SHARE); - this.state = 3511; + this.state = 3510; this.match(MySqlParser.MODE); } break; @@ -23123,108 +23118,108 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3514; + this.state = 3513; this.match(MySqlParser.DELETE); - this.state = 3516; + this.state = 3515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106) { { - this.state = 3515; + this.state = 3514; localContext._priority = this.match(MySqlParser.LOW_PRIORITY); } } - this.state = 3519; + this.state = 3518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 568) { { - this.state = 3518; + this.state = 3517; this.match(MySqlParser.QUICK); } } - this.state = 3522; + this.state = 3521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3521; + this.state = 3520; this.match(MySqlParser.IGNORE); } } - this.state = 3524; + this.state = 3523; this.match(MySqlParser.FROM); - this.state = 3525; + this.state = 3524; this.tableName(); - this.state = 3530; + this.state = 3529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: { - this.state = 3527; + this.state = 3526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3526; + this.state = 3525; this.match(MySqlParser.AS); } } - this.state = 3529; + this.state = 3528; this.uid(); } break; } - this.state = 3537; + this.state = 3536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 3532; + this.state = 3531; this.match(MySqlParser.PARTITION); - this.state = 3533; + this.state = 3532; this.match(MySqlParser.LR_BRACKET); - this.state = 3534; + this.state = 3533; this.uidList(); - this.state = 3535; + this.state = 3534; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3541; + this.state = 3540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3539; + this.state = 3538; this.match(MySqlParser.WHERE); - this.state = 3540; + this.state = 3539; this.expression(0); } } - this.state = 3544; + this.state = 3543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 3543; + this.state = 3542; this.orderByClause(); } } - this.state = 3548; + this.state = 3547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3546; + this.state = 3545; this.match(MySqlParser.LIMIT); - this.state = 3547; + this.state = 3546; this.limitClauseAtom(); } } @@ -23252,39 +23247,39 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3549; this.match(MySqlParser.DELETE); - this.state = 3552; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106) { { - this.state = 3551; + this.state = 3550; localContext._priority = this.match(MySqlParser.LOW_PRIORITY); } } - this.state = 3555; + this.state = 3554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3554; + this.state = 3553; this.match(MySqlParser.QUICK); } break; } - this.state = 3558; + this.state = 3557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3557; + this.state = 3556; this.match(MySqlParser.IGNORE); } } - this.state = 3599; + this.state = 3598; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -24158,117 +24153,117 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3560; + this.state = 3559; this.tableName(); - this.state = 3563; + this.state = 3562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1132) { { - this.state = 3561; + this.state = 3560; this.match(MySqlParser.DOT); - this.state = 3562; + this.state = 3561; this.match(MySqlParser.STAR); } } - this.state = 3573; + this.state = 3572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3565; + this.state = 3564; this.match(MySqlParser.COMMA); - this.state = 3566; + this.state = 3565; this.tableName(); - this.state = 3569; + this.state = 3568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1132) { { - this.state = 3567; + this.state = 3566; this.match(MySqlParser.DOT); - this.state = 3568; + this.state = 3567; this.match(MySqlParser.STAR); } } } } - this.state = 3575; + this.state = 3574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3576; + this.state = 3575; this.match(MySqlParser.FROM); - this.state = 3577; + this.state = 3576; this.tableSources(); } break; case MySqlParser.FROM: { - this.state = 3579; + this.state = 3578; this.match(MySqlParser.FROM); - this.state = 3580; + this.state = 3579; this.tableName(); - this.state = 3583; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1132) { { - this.state = 3581; + this.state = 3580; this.match(MySqlParser.DOT); - this.state = 3582; + this.state = 3581; this.match(MySqlParser.STAR); } } - this.state = 3593; + this.state = 3592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3585; + this.state = 3584; this.match(MySqlParser.COMMA); - this.state = 3586; + this.state = 3585; this.tableName(); - this.state = 3589; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1132) { { - this.state = 3587; + this.state = 3586; this.match(MySqlParser.DOT); - this.state = 3588; + this.state = 3587; this.match(MySqlParser.STAR); } } } } - this.state = 3595; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3596; + this.state = 3595; this.match(MySqlParser.USING); - this.state = 3597; + this.state = 3596; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3603; + this.state = 3602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3601; + this.state = 3600; this.match(MySqlParser.WHERE); - this.state = 3602; + this.state = 3601; this.expression(0); } } @@ -24296,28 +24291,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3604; this.match(MySqlParser.HANDLER); - this.state = 3606; + this.state = 3605; this.tableName(); - this.state = 3607; + this.state = 3606; this.match(MySqlParser.OPEN); - this.state = 3612; + this.state = 3611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537155584) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 3609; + this.state = 3608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3608; + this.state = 3607; this.match(MySqlParser.AS); } } - this.state = 3611; + this.state = 3610; this.uid(); } } @@ -24345,15 +24340,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3614; + this.state = 3613; this.match(MySqlParser.HANDLER); - this.state = 3615; + this.state = 3614; this.tableName(); - this.state = 3616; + this.state = 3615; this.match(MySqlParser.READ); - this.state = 3617; + this.state = 3616; localContext._index = this.uid(); - this.state = 3624; + this.state = 3623; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: @@ -24361,13 +24356,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LESS_SYMBOL: case MySqlParser.EXCLAMATION_SYMBOL: { - this.state = 3618; + this.state = 3617; this.comparisonOperator(); - this.state = 3619; + this.state = 3618; this.match(MySqlParser.LR_BRACKET); - this.state = 3620; + this.state = 3619; this.constants(); - this.state = 3621; + this.state = 3620; this.match(MySqlParser.RR_BRACKET); } break; @@ -24376,7 +24371,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.NEXT: case MySqlParser.PREV: { - this.state = 3623; + this.state = 3622; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 430 || _la === 469 || _la === 520 || _la === 562)) { @@ -24391,26 +24386,26 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3628; + this.state = 3627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3626; + this.state = 3625; this.match(MySqlParser.WHERE); - this.state = 3627; + this.state = 3626; this.expression(0); } } - this.state = 3632; + this.state = 3631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3630; + this.state = 3629; this.match(MySqlParser.LIMIT); - this.state = 3631; + this.state = 3630; this.limitClauseAtom(); } } @@ -24438,13 +24433,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3634; + this.state = 3633; this.match(MySqlParser.HANDLER); - this.state = 3635; + this.state = 3634; this.tableName(); - this.state = 3636; + this.state = 3635; this.match(MySqlParser.READ); - this.state = 3637; + this.state = 3636; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 430 || _la === 520)) { @@ -24454,26 +24449,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3640; + this.state = 3639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3638; + this.state = 3637; this.match(MySqlParser.WHERE); - this.state = 3639; + this.state = 3638; this.expression(0); } } - this.state = 3644; + this.state = 3643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3642; + this.state = 3641; this.match(MySqlParser.LIMIT); - this.state = 3643; + this.state = 3642; this.limitClauseAtom(); } } @@ -24500,11 +24495,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3646; + this.state = 3645; this.match(MySqlParser.HANDLER); - this.state = 3647; + this.state = 3646; this.tableName(); - this.state = 3648; + this.state = 3647; this.match(MySqlParser.CLOSE); } } @@ -24529,98 +24524,98 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3650; + this.state = 3649; this.match(MySqlParser.UPDATE); - this.state = 3652; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106) { { - this.state = 3651; + this.state = 3650; localContext._priority = this.match(MySqlParser.LOW_PRIORITY); } } - this.state = 3655; + this.state = 3654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3654; + this.state = 3653; this.match(MySqlParser.IGNORE); } } - this.state = 3657; + this.state = 3656; this.tableName(); - this.state = 3662; + this.state = 3661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537155584) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 3659; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3658; + this.state = 3657; this.match(MySqlParser.AS); } } - this.state = 3661; + this.state = 3660; this.uid(); } } - this.state = 3664; + this.state = 3663; this.match(MySqlParser.SET); - this.state = 3665; + this.state = 3664; this.updatedElement(); - this.state = 3670; + this.state = 3669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3666; + this.state = 3665; this.match(MySqlParser.COMMA); - this.state = 3667; + this.state = 3666; this.updatedElement(); } } - this.state = 3672; + this.state = 3671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3675; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3673; + this.state = 3672; this.match(MySqlParser.WHERE); - this.state = 3674; + this.state = 3673; this.expression(0); } } - this.state = 3678; + this.state = 3677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 3677; + this.state = 3676; this.orderByClause(); } } - this.state = 3681; + this.state = 3680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 3680; + this.state = 3679; this.limitClause(); } } @@ -24648,58 +24643,58 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3683; + this.state = 3682; this.match(MySqlParser.UPDATE); - this.state = 3685; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106) { { - this.state = 3684; + this.state = 3683; localContext._priority = this.match(MySqlParser.LOW_PRIORITY); } } - this.state = 3688; + this.state = 3687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3687; + this.state = 3686; this.match(MySqlParser.IGNORE); } } - this.state = 3690; + this.state = 3689; this.tableNames(); - this.state = 3691; + this.state = 3690; this.match(MySqlParser.SET); - this.state = 3692; + this.state = 3691; this.updatedElement(); - this.state = 3697; + this.state = 3696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 3693; + this.state = 3692; this.match(MySqlParser.COMMA); - this.state = 3694; + this.state = 3693; this.updatedElement(); } } - this.state = 3699; + this.state = 3698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3702; + this.state = 3701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 3700; + this.state = 3699; this.match(MySqlParser.WHERE); - this.state = 3701; + this.state = 3700; this.expression(0); } } @@ -24727,27 +24722,27 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3704; + this.state = 3703; this.match(MySqlParser.ORDER); - this.state = 3705; + this.state = 3704; this.match(MySqlParser.BY); - this.state = 3706; + this.state = 3705; this.orderByExpression(); - this.state = 3711; + this.state = 3710; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 521, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3707; + this.state = 3706; this.match(MySqlParser.COMMA); - this.state = 3708; + this.state = 3707; this.orderByExpression(); } } } - this.state = 3713; + this.state = 3712; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 521, this.context); } @@ -24774,14 +24769,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3714; + this.state = 3713; this.expression(0); - this.state = 3716; + this.state = 3715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 45) { { - this.state = 3715; + this.state = 3714; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 45)) { @@ -24817,23 +24812,23 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3718; + this.state = 3717; this.tableSource(); - this.state = 3723; + this.state = 3722; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 523, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3719; + this.state = 3718; this.match(MySqlParser.COMMA); - this.state = 3720; + this.state = 3719; this.tableSource(); } } } - this.state = 3725; + this.state = 3724; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 523, this.context); } @@ -24859,28 +24854,28 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3744; + this.state = 3743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3726; + this.state = 3725; this.tableSourceItem(); - this.state = 3730; + this.state = 3729; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 524, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3727; + this.state = 3726; this.joinPart(); } } } - this.state = 3732; + this.state = 3731; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 524, this.context); } @@ -24890,25 +24885,25 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3733; + this.state = 3732; this.match(MySqlParser.LR_BRACKET); - this.state = 3734; + this.state = 3733; this.tableSourceItem(); - this.state = 3738; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 34 || ((((_la - 83)) & ~0x1F) === 0 && ((1 << (_la - 83)) & 1073758337) !== 0) || _la === 148 || _la === 171) { { { - this.state = 3735; + this.state = 3734; this.joinPart(); } } - this.state = 3740; + this.state = 3739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3741; + this.state = 3740; this.match(MySqlParser.RR_BRACKET); } break; @@ -24916,7 +24911,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3743; + this.state = 3742; this.jsonTable(); } break; @@ -24942,73 +24937,73 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3783; + this.state = 3782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3746; + this.state = 3745; this.tableName(); - this.state = 3752; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 3747; + this.state = 3746; this.match(MySqlParser.PARTITION); - this.state = 3748; + this.state = 3747; this.match(MySqlParser.LR_BRACKET); - this.state = 3749; + this.state = 3748; this.uidList(); - this.state = 3750; + this.state = 3749; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3758; + this.state = 3757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 3755; + this.state = 3754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3754; + this.state = 3753; this.match(MySqlParser.AS); } } - this.state = 3757; + this.state = 3756; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3768; + this.state = 3767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66 || _la === 78 || _la === 186) { { - this.state = 3760; + this.state = 3759; this.indexHint(); - this.state = 3765; + this.state = 3764; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 530, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3761; + this.state = 3760; this.match(MySqlParser.COMMA); - this.state = 3762; + this.state = 3761; this.indexHint(); } } } - this.state = 3767; + this.state = 3766; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 530, this.context); } @@ -25022,24 +25017,24 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 3770; + this.state = 3769; this.match(MySqlParser.LR_BRACKET); - this.state = 3771; + this.state = 3770; (localContext as SubqueryTableItemContext)._parenthesisSubquery = this.selectStatement(); - this.state = 3772; + this.state = 3771; this.match(MySqlParser.RR_BRACKET); } - this.state = 3775; + this.state = 3774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3774; + this.state = 3773; this.match(MySqlParser.AS); } } - this.state = 3777; + this.state = 3776; (localContext as SubqueryTableItemContext)._alias = this.uid(); } break; @@ -25047,11 +25042,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3779; + this.state = 3778; this.match(MySqlParser.LR_BRACKET); - this.state = 3780; + this.state = 3779; this.tableSources(); - this.state = 3781; + this.state = 3780; this.match(MySqlParser.RR_BRACKET); } break; @@ -25078,7 +25073,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3785; + this.state = 3784; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 78 || _la === 186)) { @@ -25088,7 +25083,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3785; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -25098,23 +25093,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3789; + this.state = 3788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 3787; + this.state = 3786; this.match(MySqlParser.FOR); - this.state = 3788; + this.state = 3787; this.indexHintType(); } } - this.state = 3791; + this.state = 3790; this.match(MySqlParser.LR_BRACKET); - this.state = 3792; + this.state = 3791; this.uidList(); - this.state = 3793; + this.state = 3792; this.match(MySqlParser.RR_BRACKET); } } @@ -25136,31 +25131,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 240, MySqlParser.RULE_indexHintType); try { - this.state = 3800; + this.state = 3799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3795; + this.state = 3794; this.match(MySqlParser.JOIN); } break; case MySqlParser.ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3796; + this.state = 3795; this.match(MySqlParser.ORDER); - this.state = 3797; + this.state = 3796; this.match(MySqlParser.BY); } break; case MySqlParser.GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 3798; + this.state = 3797; this.match(MySqlParser.GROUP); - this.state = 3799; + this.state = 3798; this.match(MySqlParser.BY); } break; @@ -25188,7 +25183,7 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3849; + this.state = 3848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CROSS: @@ -25197,12 +25192,12 @@ export class MySqlParser extends antlr.Parser { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3803; + this.state = 3802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 83) { { - this.state = 3802; + this.state = 3801; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 83)) { this.errorHandler.recoverInline(this); @@ -25214,33 +25209,33 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3805; + this.state = 3804; this.match(MySqlParser.JOIN); - this.state = 3807; + this.state = 3806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { case 1: { - this.state = 3806; + this.state = 3805; this.match(MySqlParser.LATERAL); } break; } - this.state = 3809; + this.state = 3808; this.tableSourceItem(); - this.state = 3813; + this.state = 3812; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 538, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3810; + this.state = 3809; this.joinSpec(); } } } - this.state = 3815; + this.state = 3814; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 538, this.context); } @@ -25250,25 +25245,25 @@ export class MySqlParser extends antlr.Parser { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3816; + this.state = 3815; this.match(MySqlParser.STRAIGHT_JOIN); - this.state = 3817; + this.state = 3816; this.tableSourceItem(); - this.state = 3822; + this.state = 3821; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 539, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3818; + this.state = 3817; this.match(MySqlParser.ON); - this.state = 3819; + this.state = 3818; this.expression(0); } } } - this.state = 3824; + this.state = 3823; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 539, this.context); } @@ -25279,7 +25274,7 @@ export class MySqlParser extends antlr.Parser { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3825; + this.state = 3824; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 148)) { this.errorHandler.recoverInline(this); @@ -25288,43 +25283,43 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3827; + this.state = 3826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 126) { { - this.state = 3826; + this.state = 3825; this.match(MySqlParser.OUTER); } } - this.state = 3829; + this.state = 3828; this.match(MySqlParser.JOIN); - this.state = 3831; + this.state = 3830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { case 1: { - this.state = 3830; + this.state = 3829; this.match(MySqlParser.LATERAL); } break; } - this.state = 3833; + this.state = 3832; this.tableSourceItem(); - this.state = 3837; + this.state = 3836; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 542, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3834; + this.state = 3833; this.joinSpec(); } } } - this.state = 3839; + this.state = 3838; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 542, this.context); } @@ -25334,14 +25329,14 @@ export class MySqlParser extends antlr.Parser { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3840; + this.state = 3839; this.match(MySqlParser.NATURAL); - this.state = 3845; + this.state = 3844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97 || _la === 148) { { - this.state = 3841; + this.state = 3840; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 148)) { this.errorHandler.recoverInline(this); @@ -25350,12 +25345,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3843; + this.state = 3842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 126) { { - this.state = 3842; + this.state = 3841; this.match(MySqlParser.OUTER); } } @@ -25363,9 +25358,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3847; + this.state = 3846; this.match(MySqlParser.JOIN); - this.state = 3848; + this.state = 3847; this.tableSourceItem(); } break; @@ -25391,16 +25386,16 @@ export class MySqlParser extends antlr.Parser { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 244, MySqlParser.RULE_joinSpec); try { - this.state = 3858; + this.state = 3857; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ON: this.enterOuterAlt(localContext, 1); { { - this.state = 3851; + this.state = 3850; this.match(MySqlParser.ON); - this.state = 3852; + this.state = 3851; this.expression(0); } } @@ -25408,13 +25403,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.USING: this.enterOuterAlt(localContext, 2); { - this.state = 3853; + this.state = 3852; this.match(MySqlParser.USING); - this.state = 3854; + this.state = 3853; this.match(MySqlParser.LR_BRACKET); - this.state = 3855; + this.state = 3854; this.uidList(); - this.state = 3856; + this.state = 3855; this.match(MySqlParser.RR_BRACKET); } break; @@ -25440,28 +25435,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 246, MySqlParser.RULE_queryExpression); try { - this.state = 3868; + this.state = 3867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3860; + this.state = 3859; this.match(MySqlParser.LR_BRACKET); - this.state = 3861; + this.state = 3860; this.querySpecification(); - this.state = 3862; + this.state = 3861; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3864; + this.state = 3863; this.match(MySqlParser.LR_BRACKET); - this.state = 3865; + this.state = 3864; this.queryExpression(); - this.state = 3866; + this.state = 3865; this.match(MySqlParser.RR_BRACKET); } break; @@ -25485,28 +25480,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryExpressionNointoContext(this.context, this.state); this.enterRule(localContext, 248, MySqlParser.RULE_queryExpressionNointo); try { - this.state = 3878; + this.state = 3877; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3870; + this.state = 3869; this.match(MySqlParser.LR_BRACKET); - this.state = 3871; + this.state = 3870; this.querySpecificationNointo(); - this.state = 3872; + this.state = 3871; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3874; + this.state = 3873; this.match(MySqlParser.LR_BRACKET); - this.state = 3875; + this.state = 3874; this.queryExpressionNointo(); - this.state = 3876; + this.state = 3875; this.match(MySqlParser.RR_BRACKET); } break; @@ -25532,90 +25527,90 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3934; + this.state = 3933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3880; + this.state = 3879; this.match(MySqlParser.SELECT); - this.state = 3884; + this.state = 3883; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 549, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3881; + this.state = 3880; this.selectSpec(); } } } - this.state = 3886; + this.state = 3885; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 549, this.context); } - this.state = 3887; + this.state = 3886; this.selectElements(); - this.state = 3889; + this.state = 3888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 3888; + this.state = 3887; this.selectIntoExpression(); } } - this.state = 3891; + this.state = 3890; this.fromClause(); - this.state = 3893; + this.state = 3892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 3892; + this.state = 3891; this.groupByClause(); } break; } - this.state = 3896; + this.state = 3895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 74) { { - this.state = 3895; + this.state = 3894; this.havingClause(); } } - this.state = 3899; + this.state = 3898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 3898; + this.state = 3897; this.windowClause(); } } - this.state = 3902; + this.state = 3901; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: { - this.state = 3901; + this.state = 3900; this.orderByClause(); } break; } - this.state = 3905; + this.state = 3904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 3904; + this.state = 3903; this.limitClause(); } break; @@ -25625,84 +25620,84 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3907; + this.state = 3906; this.match(MySqlParser.SELECT); - this.state = 3911; + this.state = 3910; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 556, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3908; + this.state = 3907; this.selectSpec(); } } } - this.state = 3913; + this.state = 3912; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 556, this.context); } - this.state = 3914; + this.state = 3913; this.selectElements(); - this.state = 3915; + this.state = 3914; this.fromClause(); - this.state = 3917; + this.state = 3916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 3916; + this.state = 3915; this.groupByClause(); } break; } - this.state = 3920; + this.state = 3919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 74) { { - this.state = 3919; + this.state = 3918; this.havingClause(); } } - this.state = 3923; + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 3922; + this.state = 3921; this.windowClause(); } } - this.state = 3926; + this.state = 3925; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: { - this.state = 3925; + this.state = 3924; this.orderByClause(); } break; } - this.state = 3929; + this.state = 3928; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: { - this.state = 3928; + this.state = 3927; this.limitClause(); } break; } - this.state = 3932; + this.state = 3931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 3931; + this.state = 3930; this.selectIntoExpression(); } } @@ -25733,84 +25728,84 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3936; + this.state = 3935; this.match(MySqlParser.SELECT); - this.state = 3940; + this.state = 3939; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3937; + this.state = 3936; this.selectSpec(); } } } - this.state = 3942; + this.state = 3941; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } - this.state = 3943; + this.state = 3942; this.selectElements(); - this.state = 3944; + this.state = 3943; this.fromClause(); - this.state = 3946; + this.state = 3945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: { - this.state = 3945; + this.state = 3944; this.groupByClause(); } break; } - this.state = 3949; + this.state = 3948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 74) { { - this.state = 3948; + this.state = 3947; this.havingClause(); } } - this.state = 3952; + this.state = 3951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 3951; + this.state = 3950; this.windowClause(); } } - this.state = 3955; + this.state = 3954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 3954; + this.state = 3953; this.orderByClause(); } break; } - this.state = 3958; + this.state = 3957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: { - this.state = 3957; + this.state = 3956; this.limitClause(); } break; } - this.state = 3961; + this.state = 3960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: { - this.state = 3960; + this.state = 3959; this.unionStatement(); } break; @@ -25838,14 +25833,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3963; + this.state = 3962; this.match(MySqlParser.UNION); - this.state = 3965; + this.state = 3964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6 || _la === 49) { { - this.state = 3964; + this.state = 3963; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49)) { @@ -25858,7 +25853,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3967; + this.state = 3966; this.queryExpressionNointo(); } } @@ -25883,14 +25878,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3969; + this.state = 3968; this.match(MySqlParser.UNION); - this.state = 3971; + this.state = 3970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6 || _la === 49) { { - this.state = 3970; + this.state = 3969; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49)) { @@ -25903,18 +25898,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3975; + this.state = 3974; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: { - this.state = 3973; + this.state = 3972; this.querySpecificationNointo(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3974; + this.state = 3973; this.queryExpressionNointo(); } break; @@ -25944,64 +25939,64 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3977; + this.state = 3976; this.match(MySqlParser.LATERAL); - this.state = 3992; + this.state = 3991; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 3978; + this.state = 3977; this.querySpecificationNointo(); } break; case 2: { - this.state = 3979; + this.state = 3978; this.queryExpressionNointo(); } break; case 3: { { - this.state = 3980; + this.state = 3979; this.match(MySqlParser.LR_BRACKET); - this.state = 3983; + this.state = 3982; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: { - this.state = 3981; + this.state = 3980; this.querySpecificationNointo(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3982; + this.state = 3981; this.queryExpressionNointo(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3985; + this.state = 3984; this.match(MySqlParser.RR_BRACKET); - this.state = 3990; + this.state = 3989; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 3987; + this.state = 3986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 3986; + this.state = 3985; this.match(MySqlParser.AS); } } - this.state = 3989; + this.state = 3988; this.uid(); } break; @@ -26033,42 +26028,42 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3994; + this.state = 3993; this.match(MySqlParser.JSON_TABLE); - this.state = 3995; + this.state = 3994; this.match(MySqlParser.LR_BRACKET); - this.state = 3996; + this.state = 3995; this.match(MySqlParser.STRING_LITERAL); - this.state = 3997; + this.state = 3996; this.match(MySqlParser.COMMA); - this.state = 3998; + this.state = 3997; this.match(MySqlParser.STRING_LITERAL); - this.state = 3999; + this.state = 3998; this.match(MySqlParser.COLUMNS); - this.state = 4000; + this.state = 3999; this.match(MySqlParser.LR_BRACKET); - this.state = 4001; + this.state = 4000; this.jsonColumnList(); - this.state = 4002; + this.state = 4001; this.match(MySqlParser.RR_BRACKET); - this.state = 4003; + this.state = 4002; this.match(MySqlParser.RR_BRACKET); - this.state = 4008; + this.state = 4007; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4005; + this.state = 4004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 4004; + this.state = 4003; this.match(MySqlParser.AS); } } - this.state = 4007; + this.state = 4006; this.uid(); } break; @@ -26096,21 +26091,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4010; + this.state = 4009; this.jsonColumn(); - this.state = 4015; + this.state = 4014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4011; + this.state = 4010; this.match(MySqlParser.COMMA); - this.state = 4012; + this.state = 4011; this.jsonColumn(); } } - this.state = 4017; + this.state = 4016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26135,22 +26130,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 264, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4047; + this.state = 4046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4018; + this.state = 4017; this.fullColumnName(); - this.state = 4035; + this.state = 4034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FOR: { - this.state = 4019; + this.state = 4018; this.match(MySqlParser.FOR); - this.state = 4020; + this.state = 4019; this.match(MySqlParser.ORDINALITY); } break; @@ -26214,33 +26209,33 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.POINT: case MySqlParser.POLYGON: { - this.state = 4021; + this.state = 4020; this.dataType(); - this.state = 4033; + this.state = 4032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.PATH: { - this.state = 4022; + this.state = 4021; this.match(MySqlParser.PATH); - this.state = 4023; + this.state = 4022; this.match(MySqlParser.STRING_LITERAL); - this.state = 4025; + this.state = 4024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4024; + this.state = 4023; this.jsonOnEmpty(); } break; } - this.state = 4028; + this.state = 4027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 411) { { - this.state = 4027; + this.state = 4026; this.jsonOnError(); } } @@ -26249,11 +26244,11 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.EXISTS: { - this.state = 4030; + this.state = 4029; this.match(MySqlParser.EXISTS); - this.state = 4031; + this.state = 4030; this.match(MySqlParser.PATH); - this.state = 4032; + this.state = 4031; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26270,27 +26265,27 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4037; + this.state = 4036; this.match(MySqlParser.NESTED); - this.state = 4039; + this.state = 4038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 4038; + this.state = 4037; this.match(MySqlParser.PATH); } } - this.state = 4041; + this.state = 4040; this.match(MySqlParser.STRING_LITERAL); - this.state = 4042; + this.state = 4041; this.match(MySqlParser.COLUMNS); - this.state = 4043; + this.state = 4042; this.match(MySqlParser.LR_BRACKET); - this.state = 4044; + this.state = 4043; this.jsonColumnList(); - this.state = 4045; + this.state = 4044; this.match(MySqlParser.RR_BRACKET); } break; @@ -26316,35 +26311,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4053; + this.state = 4052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NULL_LITERAL: { - this.state = 4049; + this.state = 4048; this.match(MySqlParser.NULL_LITERAL); } break; case MySqlParser.ERROR: { - this.state = 4050; + this.state = 4049; this.match(MySqlParser.ERROR); } break; case MySqlParser.DEFAULT: { - this.state = 4051; + this.state = 4050; this.match(MySqlParser.DEFAULT); - this.state = 4052; + this.state = 4051; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4055; + this.state = 4054; this.match(MySqlParser.ON); - this.state = 4056; + this.state = 4055; this.match(MySqlParser.EMPTY); } } @@ -26368,35 +26363,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4062; + this.state = 4061; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NULL_LITERAL: { - this.state = 4058; + this.state = 4057; this.match(MySqlParser.NULL_LITERAL); } break; case MySqlParser.ERROR: { - this.state = 4059; + this.state = 4058; this.match(MySqlParser.ERROR); } break; case MySqlParser.DEFAULT: { - this.state = 4060; + this.state = 4059; this.match(MySqlParser.DEFAULT); - this.state = 4061; + this.state = 4060; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4064; + this.state = 4063; this.match(MySqlParser.ON); - this.state = 4065; + this.state = 4064; this.match(MySqlParser.ERROR); } } @@ -26419,7 +26414,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 270, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4075; + this.state = 4074; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ALL: @@ -26427,7 +26422,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4067; + this.state = 4066; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -26441,35 +26436,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4068; + this.state = 4067; this.match(MySqlParser.HIGH_PRIORITY); } break; case MySqlParser.STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4069; + this.state = 4068; this.match(MySqlParser.STRAIGHT_JOIN); } break; case MySqlParser.SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4070; + this.state = 4069; this.match(MySqlParser.SQL_SMALL_RESULT); } break; case MySqlParser.SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4071; + this.state = 4070; this.match(MySqlParser.SQL_BIG_RESULT); } break; case MySqlParser.SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4072; + this.state = 4071; this.match(MySqlParser.SQL_BUFFER_RESULT); } break; @@ -26477,7 +26472,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4073; + this.state = 4072; _la = this.tokenStream.LA(1); if(!(_la === 626 || _la === 627)) { this.errorHandler.recoverInline(this); @@ -26491,7 +26486,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4074; + this.state = 4073; this.match(MySqlParser.SQL_CALC_FOUND_ROWS); } break; @@ -26520,37 +26515,37 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4079; + this.state = 4078; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { case 1: { - this.state = 4077; + this.state = 4076; localContext._star = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 4078; + this.state = 4077; this.selectElement(); } break; } - this.state = 4085; + this.state = 4084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4081; + this.state = 4080; this.match(MySqlParser.COMMA); - this.state = 4082; + this.state = 4081; this.selectElement(); } } } - this.state = 4087; + this.state = 4086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); } @@ -26575,18 +26570,18 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 274, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4117; + this.state = 4116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: localContext = new SelectStarElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4088; + this.state = 4087; this.fullId(); - this.state = 4089; + this.state = 4088; this.match(MySqlParser.DOT); - this.state = 4090; + this.state = 4089; this.match(MySqlParser.STAR); } break; @@ -26594,24 +26589,24 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectColumnElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4092; + this.state = 4091; this.fullColumnName(); - this.state = 4097; + this.state = 4096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4094; + this.state = 4093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 4093; + this.state = 4092; this.match(MySqlParser.AS); } } - this.state = 4096; + this.state = 4095; this.uid(); } break; @@ -26622,24 +26617,24 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4099; + this.state = 4098; this.functionCall(); - this.state = 4104; + this.state = 4103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { case 1: { - this.state = 4101; + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 4100; + this.state = 4099; this.match(MySqlParser.AS); } } - this.state = 4103; + this.state = 4102; this.uid(); } break; @@ -26650,36 +26645,36 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4108; + this.state = 4107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { case 1: { - this.state = 4106; + this.state = 4105; this.match(MySqlParser.LOCAL_ID); - this.state = 4107; + this.state = 4106; this.match(MySqlParser.VAR_ASSIGN); } break; } - this.state = 4110; + this.state = 4109; this.expression(0); - this.state = 4115; + this.state = 4114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4112; + this.state = 4111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 4111; + this.state = 4110; this.match(MySqlParser.AS); } } - this.state = 4114; + this.state = 4113; this.uid(); } break; @@ -26707,30 +26702,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 276, MySqlParser.RULE_selectIntoExpression); let _la: number; try { - this.state = 4155; + this.state = 4154; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4119; + this.state = 4118; this.match(MySqlParser.INTO); - this.state = 4120; + this.state = 4119; this.assignmentField(); - this.state = 4125; + this.state = 4124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4121; + this.state = 4120; this.match(MySqlParser.COMMA); - this.state = 4122; + this.state = 4121; this.assignmentField(); } } - this.state = 4127; + this.state = 4126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26740,11 +26735,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4128; + this.state = 4127; this.match(MySqlParser.INTO); - this.state = 4129; + this.state = 4128; this.match(MySqlParser.DUMPFILE); - this.state = 4130; + this.state = 4129; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26753,32 +26748,32 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 4131; + this.state = 4130; this.match(MySqlParser.INTO); - this.state = 4132; + this.state = 4131; this.match(MySqlParser.OUTFILE); - this.state = 4133; + this.state = 4132; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4137; + this.state = 4136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 4134; + this.state = 4133; this.match(MySqlParser.CHARACTER); - this.state = 4135; + this.state = 4134; this.match(MySqlParser.SET); - this.state = 4136; + this.state = 4135; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } } - this.state = 4145; + this.state = 4144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4139; + this.state = 4138; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 365 || _la === 427)) { @@ -26788,41 +26783,41 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4141; + this.state = 4140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4140; + this.state = 4139; this.selectFieldsInto(); } } - this.state = 4143; + this.state = 4142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 122 || _la === 173); } break; } - this.state = 4153; + this.state = 4152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 4147; + this.state = 4146; this.match(MySqlParser.LINES); - this.state = 4149; + this.state = 4148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4148; + this.state = 4147; this.selectLinesInto(); } } - this.state = 4151; + this.state = 4150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 169 || _la === 173); @@ -26853,17 +26848,17 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 278, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4169; + this.state = 4168; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4157; + this.state = 4156; this.match(MySqlParser.TERMINATED); - this.state = 4158; + this.state = 4157; this.match(MySqlParser.BY); - this.state = 4159; + this.state = 4158; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26871,32 +26866,32 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4161; + this.state = 4160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 4160; + this.state = 4159; this.match(MySqlParser.OPTIONALLY); } } - this.state = 4163; + this.state = 4162; this.match(MySqlParser.ENCLOSED); - this.state = 4164; + this.state = 4163; this.match(MySqlParser.BY); - this.state = 4165; + this.state = 4164; localContext._enclosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4166; + this.state = 4165; this.match(MySqlParser.ESCAPED); - this.state = 4167; + this.state = 4166; this.match(MySqlParser.BY); - this.state = 4168; + this.state = 4167; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26922,28 +26917,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new SelectLinesIntoContext(this.context, this.state); this.enterRule(localContext, 280, MySqlParser.RULE_selectLinesInto); try { - this.state = 4177; + this.state = 4176; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4171; + this.state = 4170; this.match(MySqlParser.STARTING); - this.state = 4172; + this.state = 4171; this.match(MySqlParser.BY); - this.state = 4173; + this.state = 4172; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4174; + this.state = 4173; this.match(MySqlParser.TERMINATED); - this.state = 4175; + this.state = 4174; this.match(MySqlParser.BY); - this.state = 4176; + this.state = 4175; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26972,26 +26967,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4181; + this.state = 4180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 4179; + this.state = 4178; this.match(MySqlParser.FROM); - this.state = 4180; + this.state = 4179; this.tableSources(); } } - this.state = 4185; + this.state = 4184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 4183; + this.state = 4182; this.match(MySqlParser.WHERE); - this.state = 4184; + this.state = 4183; localContext._whereExpr = this.expression(0); } } @@ -27019,38 +27014,38 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4187; + this.state = 4186; this.match(MySqlParser.GROUP); - this.state = 4188; + this.state = 4187; this.match(MySqlParser.BY); - this.state = 4189; + this.state = 4188; this.groupByItem(); - this.state = 4194; + this.state = 4193; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4190; + this.state = 4189; this.match(MySqlParser.COMMA); - this.state = 4191; + this.state = 4190; this.groupByItem(); } } } - this.state = 4196; + this.state = 4195; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); } - this.state = 4199; + this.state = 4198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4197; + this.state = 4196; this.match(MySqlParser.WITH); - this.state = 4198; + this.state = 4197; this.match(MySqlParser.ROLLUP); } break; @@ -27077,9 +27072,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4201; + this.state = 4200; this.match(MySqlParser.HAVING); - this.state = 4202; + this.state = 4201; localContext._havingExpr = this.expression(0); } } @@ -27104,41 +27099,41 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4204; + this.state = 4203; this.match(MySqlParser.WINDOW); - this.state = 4205; + this.state = 4204; this.windowName(); - this.state = 4206; + this.state = 4205; this.match(MySqlParser.AS); - this.state = 4207; + this.state = 4206; this.match(MySqlParser.LR_BRACKET); - this.state = 4208; + this.state = 4207; this.windowSpec(); - this.state = 4209; + this.state = 4208; this.match(MySqlParser.RR_BRACKET); - this.state = 4219; + this.state = 4218; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4210; + this.state = 4209; this.match(MySqlParser.COMMA); - this.state = 4211; + this.state = 4210; this.windowName(); - this.state = 4212; + this.state = 4211; this.match(MySqlParser.AS); - this.state = 4213; + this.state = 4212; this.match(MySqlParser.LR_BRACKET); - this.state = 4214; + this.state = 4213; this.windowSpec(); - this.state = 4215; + this.state = 4214; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4221; + this.state = 4220; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); } @@ -27165,14 +27160,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4222; + this.state = 4221; this.expression(0); - this.state = 4224; + this.state = 4223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 45) { { - this.state = 4223; + this.state = 4222; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 45)) { @@ -27207,36 +27202,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4226; + this.state = 4225; this.match(MySqlParser.LIMIT); - this.state = 4237; + this.state = 4236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4230; + this.state = 4229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4227; + this.state = 4226; localContext._offset = this.limitClauseAtom(); - this.state = 4228; + this.state = 4227; this.match(MySqlParser.COMMA); } break; } - this.state = 4232; + this.state = 4231; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4233; + this.state = 4232; localContext._limit = this.limitClauseAtom(); - this.state = 4234; + this.state = 4233; this.match(MySqlParser.OFFSET); - this.state = 4235; + this.state = 4234; localContext._offset = this.limitClauseAtom(); } break; @@ -27261,7 +27256,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new LimitClauseAtomContext(this.context, this.state); this.enterRule(localContext, 294, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4242; + this.state = 4241; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27271,7 +27266,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4239; + this.state = 4238; this.decimalLiteral(); } break; @@ -27279,7 +27274,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4240; + this.state = 4239; this.mysqlVariable(); } break; @@ -28153,7 +28148,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4241; + this.state = 4240; this.simpleId(); } break; @@ -28182,30 +28177,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4244; + this.state = 4243; this.match(MySqlParser.START); - this.state = 4245; + this.state = 4244; this.match(MySqlParser.TRANSACTION); - this.state = 4254; + this.state = 4253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 192) { { - this.state = 4246; + this.state = 4245; this.transactionMode(); - this.state = 4251; + this.state = 4250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4247; + this.state = 4246; this.match(MySqlParser.COMMA); - this.state = 4248; + this.state = 4247; this.transactionMode(); } } - this.state = 4253; + this.state = 4252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28235,14 +28230,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4256; + this.state = 4255; this.match(MySqlParser.BEGIN); - this.state = 4258; + this.state = 4257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4257; + this.state = 4256; this.match(MySqlParser.WORK); } } @@ -28270,56 +28265,56 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4260; + this.state = 4259; this.match(MySqlParser.COMMIT); - this.state = 4262; + this.state = 4261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4261; + this.state = 4260; this.match(MySqlParser.WORK); } } - this.state = 4269; + this.state = 4268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4264; + this.state = 4263; this.match(MySqlParser.AND); - this.state = 4266; + this.state = 4265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 4265; + this.state = 4264; localContext._nochain = this.match(MySqlParser.NO); } } - this.state = 4268; + this.state = 4267; this.match(MySqlParser.CHAIN); } } - this.state = 4275; + this.state = 4274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138 || _la === 521) { { - this.state = 4272; + this.state = 4271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 4271; + this.state = 4270; localContext._norelease = this.match(MySqlParser.NO); } } - this.state = 4274; + this.state = 4273; this.match(MySqlParser.RELEASE); } } @@ -28347,56 +28342,56 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4277; + this.state = 4276; this.match(MySqlParser.ROLLBACK); - this.state = 4279; + this.state = 4278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4278; + this.state = 4277; this.match(MySqlParser.WORK); } } - this.state = 4286; + this.state = 4285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4281; + this.state = 4280; this.match(MySqlParser.AND); - this.state = 4283; + this.state = 4282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 4282; + this.state = 4281; localContext._nochain = this.match(MySqlParser.NO); } } - this.state = 4285; + this.state = 4284; this.match(MySqlParser.CHAIN); } } - this.state = 4292; + this.state = 4291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138 || _la === 521) { { - this.state = 4289; + this.state = 4288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 4288; + this.state = 4287; localContext._norelease = this.match(MySqlParser.NO); } } - this.state = 4291; + this.state = 4290; this.match(MySqlParser.RELEASE); } } @@ -28423,9 +28418,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4294; + this.state = 4293; this.match(MySqlParser.SAVEPOINT); - this.state = 4295; + this.state = 4294; this.uid(); } } @@ -28450,31 +28445,31 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4297; + this.state = 4296; this.match(MySqlParser.ROLLBACK); - this.state = 4299; + this.state = 4298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4298; + this.state = 4297; this.match(MySqlParser.WORK); } } - this.state = 4301; + this.state = 4300; this.match(MySqlParser.TO); - this.state = 4303; + this.state = 4302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 4302; + this.state = 4301; this.match(MySqlParser.SAVEPOINT); } break; } - this.state = 4305; + this.state = 4304; this.uid(); } } @@ -28498,11 +28493,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4307; + this.state = 4306; this.match(MySqlParser.RELEASE); - this.state = 4308; + this.state = 4307; this.match(MySqlParser.SAVEPOINT); - this.state = 4309; + this.state = 4308; this.uid(); } } @@ -28527,9 +28522,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4311; + this.state = 4310; this.match(MySqlParser.LOCK); - this.state = 4312; + this.state = 4311; _la = this.tokenStream.LA(1); if(!(_la === 172 || _la === 742)) { this.errorHandler.recoverInline(this); @@ -28538,30 +28533,30 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4313; + this.state = 4312; this.lockTableElement(); - this.state = 4318; + this.state = 4317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4314; + this.state = 4313; this.match(MySqlParser.COMMA); - this.state = 4315; + this.state = 4314; this.lockTableElement(); } } - this.state = 4320; + this.state = 4319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4322; + this.state = 4321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 527 || _la === 674) { { - this.state = 4321; + this.state = 4320; this.waitNowaitClause(); } } @@ -28588,9 +28583,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4324; + this.state = 4323; this.match(MySqlParser.UNLOCK); - this.state = 4325; + this.state = 4324; this.match(MySqlParser.TABLES); } } @@ -28615,13 +28610,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4327; + this.state = 4326; this.match(MySqlParser.SET); - this.state = 4328; + this.state = 4327; this.match(MySqlParser.AUTOCOMMIT); - this.state = 4329; + this.state = 4328; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4330; + this.state = 4329; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { @@ -28654,14 +28649,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4332; + this.state = 4331; this.match(MySqlParser.SET); - this.state = 4334; + this.state = 4333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439 || _la === 609) { { - this.state = 4333; + this.state = 4332; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 609)) { @@ -28674,23 +28669,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4336; + this.state = 4335; this.match(MySqlParser.TRANSACTION); - this.state = 4337; + this.state = 4336; this.transactionOption(); - this.state = 4342; + this.state = 4341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4338; + this.state = 4337; this.match(MySqlParser.COMMA); - this.state = 4339; + this.state = 4338; this.transactionOption(); } } - this.state = 4344; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28714,35 +28709,35 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionModeContext(this.context, this.state); this.enterRule(localContext, 318, MySqlParser.RULE_transactionMode); try { - this.state = 4352; + this.state = 4351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4345; + this.state = 4344; this.match(MySqlParser.WITH); - this.state = 4346; + this.state = 4345; this.match(MySqlParser.CONSISTENT); - this.state = 4347; + this.state = 4346; this.match(MySqlParser.SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4348; + this.state = 4347; this.match(MySqlParser.READ); - this.state = 4349; + this.state = 4348; this.match(MySqlParser.WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4350; + this.state = 4349; this.match(MySqlParser.READ); - this.state = 4351; + this.state = 4350; this.match(MySqlParser.ONLY); } break; @@ -28769,29 +28764,29 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4354; + this.state = 4353; this.tableName(); - this.state = 4359; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537155584) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4356; + this.state = 4355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 4355; + this.state = 4354; this.match(MySqlParser.AS); } } - this.state = 4358; + this.state = 4357; this.uid(); } } - this.state = 4361; + this.state = 4360; this.lockAction(); } } @@ -28814,20 +28809,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 322, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4371; + this.state = 4370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.READ: this.enterOuterAlt(localContext, 1); { - this.state = 4363; + this.state = 4362; this.match(MySqlParser.READ); - this.state = 4365; + this.state = 4364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 474) { { - this.state = 4364; + this.state = 4363; this.match(MySqlParser.LOCAL); } } @@ -28838,17 +28833,17 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4368; + this.state = 4367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106) { { - this.state = 4367; + this.state = 4366; this.match(MySqlParser.LOW_PRIORITY); } } - this.state = 4370; + this.state = 4369; this.match(MySqlParser.WRITE); } break; @@ -28874,35 +28869,35 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionOptionContext(this.context, this.state); this.enterRule(localContext, 324, MySqlParser.RULE_transactionOption); try { - this.state = 4380; + this.state = 4379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4373; + this.state = 4372; this.match(MySqlParser.ISOLATION); - this.state = 4374; + this.state = 4373; this.match(MySqlParser.LEVEL); - this.state = 4375; + this.state = 4374; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4376; + this.state = 4375; this.match(MySqlParser.READ); - this.state = 4377; + this.state = 4376; this.match(MySqlParser.WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4378; + this.state = 4377; this.match(MySqlParser.READ); - this.state = 4379; + this.state = 4378; this.match(MySqlParser.ONLY); } break; @@ -28926,40 +28921,40 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionLevelContext(this.context, this.state); this.enterRule(localContext, 326, MySqlParser.RULE_transactionLevel); try { - this.state = 4389; + this.state = 4388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4382; + this.state = 4381; this.match(MySqlParser.REPEATABLE); - this.state = 4383; + this.state = 4382; this.match(MySqlParser.READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4384; + this.state = 4383; this.match(MySqlParser.READ); - this.state = 4385; + this.state = 4384; this.match(MySqlParser.COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4386; + this.state = 4385; this.match(MySqlParser.READ); - this.state = 4387; + this.state = 4386; this.match(MySqlParser.UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4388; + this.state = 4387; this.match(MySqlParser.SERIALIZABLE); } break; @@ -28986,36 +28981,36 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4391; + this.state = 4390; this.match(MySqlParser.CHANGE); - this.state = 4392; + this.state = 4391; this.match(MySqlParser.MASTER); - this.state = 4393; + this.state = 4392; this.match(MySqlParser.TO); - this.state = 4394; + this.state = 4393; this.masterOption(); - this.state = 4399; + this.state = 4398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4395; + this.state = 4394; this.match(MySqlParser.COMMA); - this.state = 4396; + this.state = 4395; this.masterOption(); } } - this.state = 4401; + this.state = 4400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4403; + this.state = 4402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4402; + this.state = 4401; this.channelOption(); } } @@ -29043,27 +29038,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4405; + this.state = 4404; this.match(MySqlParser.CHANGE); - this.state = 4406; + this.state = 4405; this.match(MySqlParser.REPLICATION); - this.state = 4407; + this.state = 4406; this.match(MySqlParser.FILTER); - this.state = 4408; + this.state = 4407; this.replicationFilter(); - this.state = 4413; + this.state = 4412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4409; + this.state = 4408; this.match(MySqlParser.COMMA); - this.state = 4410; + this.state = 4409; this.replicationFilter(); } } - this.state = 4415; + this.state = 4414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29090,9 +29085,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4416; + this.state = 4415; this.match(MySqlParser.PURGE); - this.state = 4417; + this.state = 4416; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 477)) { @@ -29102,24 +29097,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4418; + this.state = 4417; this.match(MySqlParser.LOGS); - this.state = 4423; + this.state = 4422; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.TO: { - this.state = 4419; + this.state = 4418; this.match(MySqlParser.TO); - this.state = 4420; + this.state = 4419; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BEFORE: { - this.state = 4421; + this.state = 4420; this.match(MySqlParser.BEFORE); - this.state = 4422; + this.state = 4421; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -29148,9 +29143,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4424; this.match(MySqlParser.RESET); - this.state = 4426; + this.state = 4425; this.match(MySqlParser.MASTER); } } @@ -29175,26 +29170,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4428; + this.state = 4427; this.match(MySqlParser.RESET); - this.state = 4429; + this.state = 4428; this.match(MySqlParser.SLAVE); - this.state = 4431; + this.state = 4430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4430; + this.state = 4429; this.match(MySqlParser.ALL); } } - this.state = 4434; + this.state = 4433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4433; + this.state = 4432; this.channelOption(); } } @@ -29222,68 +29217,68 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4436; + this.state = 4435; this.match(MySqlParser.START); - this.state = 4437; + this.state = 4436; this.match(MySqlParser.SLAVE); - this.state = 4446; + this.state = 4445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462 || _la === 628) { { - this.state = 4438; + this.state = 4437; this.threadType(); - this.state = 4443; + this.state = 4442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4439; + this.state = 4438; this.match(MySqlParser.COMMA); - this.state = 4440; + this.state = 4439; this.threadType(); } } - this.state = 4445; + this.state = 4444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4450; + this.state = 4449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 663) { { - this.state = 4448; + this.state = 4447; this.match(MySqlParser.UNTIL); - this.state = 4449; + this.state = 4448; this.untilOption(); } } - this.state = 4455; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 391 || _la === 551 || _la === 555 || _la === 665) { { { - this.state = 4452; + this.state = 4451; this.connectionOption(); } } - this.state = 4457; + this.state = 4456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4459; + this.state = 4458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4458; + this.state = 4457; this.channelOption(); } } @@ -29311,30 +29306,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4461; + this.state = 4460; this.match(MySqlParser.STOP); - this.state = 4462; + this.state = 4461; this.match(MySqlParser.SLAVE); - this.state = 4471; + this.state = 4470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462 || _la === 628) { { - this.state = 4463; + this.state = 4462; this.threadType(); - this.state = 4468; + this.state = 4467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4464; + this.state = 4463; this.match(MySqlParser.COMMA); - this.state = 4465; + this.state = 4464; this.threadType(); } } - this.state = 4470; + this.state = 4469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29363,9 +29358,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4473; + this.state = 4472; this.match(MySqlParser.START); - this.state = 4474; + this.state = 4473; this.match(MySqlParser.GROUP_REPLICATION); } } @@ -29389,9 +29384,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4475; this.match(MySqlParser.STOP); - this.state = 4477; + this.state = 4476; this.match(MySqlParser.GROUP_REPLICATION); } } @@ -29414,7 +29409,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 346, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4508; + this.state = 4507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.MASTER_BIND: @@ -29434,11 +29429,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4479; + this.state = 4478; this.stringMasterOption(); - this.state = 4480; + this.state = 4479; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4481; + this.state = 4480; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29451,11 +29446,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4483; + this.state = 4482; this.decimalMasterOption(); - this.state = 4484; + this.state = 4483; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4485; + this.state = 4484; this.decimalLiteral(); } break; @@ -29465,11 +29460,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4487; + this.state = 4486; this.boolMasterOption(); - this.state = 4488; + this.state = 4487; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4489; + this.state = 4488; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 1138 || _la === 1139)) { @@ -29485,11 +29480,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterRealOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4491; + this.state = 4490; this.match(MySqlParser.MASTER_HEARTBEAT_PERIOD); - this.state = 4492; + this.state = 4491; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4493; + this.state = 4492; this.match(MySqlParser.REAL_LITERAL); } break; @@ -29497,39 +29492,39 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4494; + this.state = 4493; this.match(MySqlParser.IGNORE_SERVER_IDS); - this.state = 4495; + this.state = 4494; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4496; + this.state = 4495; this.match(MySqlParser.LR_BRACKET); - this.state = 4505; + this.state = 4504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4497; + this.state = 4496; this.uid(); - this.state = 4502; + this.state = 4501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4498; + this.state = 4497; this.match(MySqlParser.COMMA); - this.state = 4499; + this.state = 4498; this.uid(); } } - this.state = 4504; + this.state = 4503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4507; + this.state = 4506; this.match(MySqlParser.RR_BRACKET); } break; @@ -29558,7 +29553,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4510; + this.state = 4509; _la = this.tokenStream.LA(1); if(!(_la === 107 || ((((_la - 482)) & ~0x1F) === 0 && ((1 << (_la - 482)) & 65419) !== 0) || _la === 575)) { this.errorHandler.recoverInline(this); @@ -29590,7 +29585,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4512; + this.state = 4511; _la = this.tokenStream.LA(1); if(!(((((_la - 479)) & ~0x1F) === 0 && ((1 << (_la - 479)) & 419) !== 0) || _la === 576)) { this.errorHandler.recoverInline(this); @@ -29622,7 +29617,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4513; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 478 || _la === 488)) { this.errorHandler.recoverInline(this); @@ -29653,11 +29648,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4516; + this.state = 4515; this.match(MySqlParser.FOR); - this.state = 4517; + this.state = 4516; this.match(MySqlParser.CHANNEL); - this.state = 4518; + this.state = 4517; this.match(MySqlParser.STRING_LITERAL); } } @@ -29680,22 +29675,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 356, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4569; + this.state = 4568; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4519; this.match(MySqlParser.REPLICATE_DO_DB); - this.state = 4521; + this.state = 4520; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4522; + this.state = 4521; this.match(MySqlParser.LR_BRACKET); - this.state = 4523; + this.state = 4522; this.uidList(); - this.state = 4524; + this.state = 4523; this.match(MySqlParser.RR_BRACKET); } break; @@ -29703,15 +29698,15 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4526; + this.state = 4525; this.match(MySqlParser.REPLICATE_IGNORE_DB); - this.state = 4527; + this.state = 4526; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4528; + this.state = 4527; this.match(MySqlParser.LR_BRACKET); - this.state = 4529; + this.state = 4528; this.uidList(); - this.state = 4530; + this.state = 4529; this.match(MySqlParser.RR_BRACKET); } break; @@ -29719,15 +29714,15 @@ export class MySqlParser extends antlr.Parser { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4532; + this.state = 4531; this.match(MySqlParser.REPLICATE_DO_TABLE); - this.state = 4533; + this.state = 4532; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4534; + this.state = 4533; this.match(MySqlParser.LR_BRACKET); - this.state = 4535; + this.state = 4534; this.tables(); - this.state = 4536; + this.state = 4535; this.match(MySqlParser.RR_BRACKET); } break; @@ -29735,15 +29730,15 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4538; + this.state = 4537; this.match(MySqlParser.REPLICATE_IGNORE_TABLE); - this.state = 4539; + this.state = 4538; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4540; + this.state = 4539; this.match(MySqlParser.LR_BRACKET); - this.state = 4541; + this.state = 4540; this.tables(); - this.state = 4542; + this.state = 4541; this.match(MySqlParser.RR_BRACKET); } break; @@ -29751,15 +29746,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4544; + this.state = 4543; this.match(MySqlParser.REPLICATE_WILD_DO_TABLE); - this.state = 4545; + this.state = 4544; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4546; + this.state = 4545; this.match(MySqlParser.LR_BRACKET); - this.state = 4547; + this.state = 4546; this.simpleStrings(); - this.state = 4548; + this.state = 4547; this.match(MySqlParser.RR_BRACKET); } break; @@ -29767,15 +29762,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4550; + this.state = 4549; this.match(MySqlParser.REPLICATE_WILD_IGNORE_TABLE); - this.state = 4551; + this.state = 4550; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4552; + this.state = 4551; this.match(MySqlParser.LR_BRACKET); - this.state = 4553; + this.state = 4552; this.simpleStrings(); - this.state = 4554; + this.state = 4553; this.match(MySqlParser.RR_BRACKET); } break; @@ -29783,31 +29778,31 @@ export class MySqlParser extends antlr.Parser { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4556; + this.state = 4555; this.match(MySqlParser.REPLICATE_REWRITE_DB); - this.state = 4557; + this.state = 4556; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4558; + this.state = 4557; this.match(MySqlParser.LR_BRACKET); - this.state = 4559; + this.state = 4558; this.tablePair(); - this.state = 4564; + this.state = 4563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4560; + this.state = 4559; this.match(MySqlParser.COMMA); - this.state = 4561; + this.state = 4560; this.tablePair(); } } - this.state = 4566; + this.state = 4565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4567; + this.state = 4566; this.match(MySqlParser.RR_BRACKET); } break; @@ -29835,15 +29830,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4571; + this.state = 4570; this.match(MySqlParser.LR_BRACKET); - this.state = 4572; + this.state = 4571; localContext._firstTable = this.tableName(); - this.state = 4573; + this.state = 4572; this.match(MySqlParser.COMMA); - this.state = 4574; + this.state = 4573; localContext._secondTable = this.tableName(); - this.state = 4575; + this.state = 4574; this.match(MySqlParser.RR_BRACKET); } } @@ -29868,7 +29863,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4577; + this.state = 4576; _la = this.tokenStream.LA(1); if(!(_la === 462 || _la === 628)) { this.errorHandler.recoverInline(this); @@ -29898,7 +29893,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 362, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4597; + this.state = 4596; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SQL_AFTER_GTIDS: @@ -29906,7 +29901,7 @@ export class MySqlParser extends antlr.Parser { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4579; + this.state = 4578; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 622 || _la === 624)) { @@ -29916,9 +29911,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4580; + this.state = 4579; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4581; + this.state = 4580; this.gtuidSet(); } break; @@ -29926,19 +29921,19 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4582; + this.state = 4581; this.match(MySqlParser.MASTER_LOG_FILE); - this.state = 4583; + this.state = 4582; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4584; + this.state = 4583; this.match(MySqlParser.STRING_LITERAL); - this.state = 4585; + this.state = 4584; this.match(MySqlParser.COMMA); - this.state = 4586; + this.state = 4585; this.match(MySqlParser.MASTER_LOG_POS); - this.state = 4587; + this.state = 4586; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4588; + this.state = 4587; this.decimalLiteral(); } break; @@ -29946,19 +29941,19 @@ export class MySqlParser extends antlr.Parser { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4589; + this.state = 4588; this.match(MySqlParser.RELAY_LOG_FILE); - this.state = 4590; + this.state = 4589; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4591; + this.state = 4590; this.match(MySqlParser.STRING_LITERAL); - this.state = 4592; + this.state = 4591; this.match(MySqlParser.COMMA); - this.state = 4593; + this.state = 4592; this.match(MySqlParser.RELAY_LOG_POS); - this.state = 4594; + this.state = 4593; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4595; + this.state = 4594; this.decimalLiteral(); } break; @@ -29966,7 +29961,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4596; + this.state = 4595; this.match(MySqlParser.SQL_AFTER_MTS_GAPS); } break; @@ -29992,18 +29987,18 @@ export class MySqlParser extends antlr.Parser { let localContext = new ConnectionOptionContext(this.context, this.state); this.enterRule(localContext, 364, MySqlParser.RULE_connectionOption); try { - this.state = 4611; + this.state = 4610; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4599; + this.state = 4598; this.match(MySqlParser.USER); - this.state = 4600; + this.state = 4599; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4601; + this.state = 4600; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -30011,11 +30006,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4602; + this.state = 4601; this.match(MySqlParser.PASSWORD); - this.state = 4603; + this.state = 4602; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4604; + this.state = 4603; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -30023,11 +30018,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4605; + this.state = 4604; this.match(MySqlParser.DEFAULT_AUTH); - this.state = 4606; + this.state = 4605; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4607; + this.state = 4606; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -30035,11 +30030,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4608; + this.state = 4607; this.match(MySqlParser.PLUGIN_DIR); - this.state = 4609; + this.state = 4608; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4610; + this.state = 4609; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -30066,7 +30061,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 366, MySqlParser.RULE_gtuidSet); let _la: number; try { - this.state = 4622; + this.state = 4621; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -30076,21 +30071,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4613; + this.state = 4612; this.uuidSet(); - this.state = 4618; + this.state = 4617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4614; + this.state = 4613; this.match(MySqlParser.COMMA); - this.state = 4615; + this.state = 4614; this.uuidSet(); } } - this.state = 4620; + this.state = 4619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30099,7 +30094,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4621; + this.state = 4620; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30128,9 +30123,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4624; + this.state = 4623; this.match(MySqlParser.XA); - this.state = 4625; + this.state = 4624; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 344 || _la === 629)) { @@ -30140,14 +30135,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4626; + this.state = 4625; this.xid(); - this.state = 4628; + this.state = 4627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90 || _la === 591) { { - this.state = 4627; + this.state = 4626; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 90 || _la === 591)) { @@ -30183,27 +30178,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4630; + this.state = 4629; this.match(MySqlParser.XA); - this.state = 4631; + this.state = 4630; this.match(MySqlParser.END); - this.state = 4632; + this.state = 4631; this.xid(); - this.state = 4638; + this.state = 4637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 643) { { - this.state = 4633; + this.state = 4632; this.match(MySqlParser.SUSPEND); - this.state = 4636; + this.state = 4635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4634; + this.state = 4633; this.match(MySqlParser.FOR); - this.state = 4635; + this.state = 4634; this.match(MySqlParser.MIGRATE); } } @@ -30233,11 +30228,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4640; + this.state = 4639; this.match(MySqlParser.XA); - this.state = 4641; + this.state = 4640; this.match(MySqlParser.PREPARE); - this.state = 4642; + this.state = 4641; this.xid(); } } @@ -30262,20 +30257,20 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4644; + this.state = 4643; this.match(MySqlParser.XA); - this.state = 4645; + this.state = 4644; this.match(MySqlParser.COMMIT); - this.state = 4646; + this.state = 4645; this.xid(); - this.state = 4649; + this.state = 4648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 536) { { - this.state = 4647; + this.state = 4646; this.match(MySqlParser.ONE); - this.state = 4648; + this.state = 4647; this.match(MySqlParser.PHASE); } } @@ -30302,11 +30297,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4651; + this.state = 4650; this.match(MySqlParser.XA); - this.state = 4652; + this.state = 4651; this.match(MySqlParser.ROLLBACK); - this.state = 4653; + this.state = 4652; this.xid(); } } @@ -30331,18 +30326,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4655; + this.state = 4654; this.match(MySqlParser.XA); - this.state = 4656; + this.state = 4655; this.match(MySqlParser.RECOVER); - this.state = 4659; + this.state = 4658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 32) { { - this.state = 4657; + this.state = 4656; this.match(MySqlParser.CONVERT); - this.state = 4658; + this.state = 4657; this.xid(); } } @@ -30369,24 +30364,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4661; + this.state = 4660; this.match(MySqlParser.PREPARE); - this.state = 4662; + this.state = 4661; this.uid(); - this.state = 4663; + this.state = 4662; this.match(MySqlParser.FROM); - this.state = 4666; + this.state = 4665; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4664; + this.state = 4663; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4665; + this.state = 4664; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -30416,18 +30411,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4668; + this.state = 4667; this.match(MySqlParser.EXECUTE); - this.state = 4669; + this.state = 4668; this.uid(); - this.state = 4672; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 4670; + this.state = 4669; this.match(MySqlParser.USING); - this.state = 4671; + this.state = 4670; this.userVariables(); } } @@ -30455,7 +30450,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4674; + this.state = 4673; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 390)) { @@ -30465,9 +30460,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4675; + this.state = 4674; this.match(MySqlParser.PREPARE); - this.state = 4676; + this.state = 4675; this.uid(); } } @@ -30489,21 +30484,21 @@ export class MySqlParser extends antlr.Parser { let localContext = new RoutineBodyContext(this.context, this.state); this.enterRule(localContext, 386, MySqlParser.RULE_routineBody); try { - this.state = 4680; + this.state = 4679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 675, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4678; + this.state = 4677; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4679; - this.sqlStatement(); + this.state = 4678; + this.statement(); } break; } @@ -30530,114 +30525,114 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4685; + this.state = 4684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { case 1: { - this.state = 4682; + this.state = 4681; this.uid(); - this.state = 4683; + this.state = 4682; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4687; + this.state = 4686; this.match(MySqlParser.BEGIN); - this.state = 4693; + this.state = 4692; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 677, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4688; + this.state = 4687; this.declareVariable(); - this.state = 4689; + this.state = 4688; this.match(MySqlParser.SEMI); } } } - this.state = 4695; + this.state = 4694; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 677, this.context); } - this.state = 4701; + this.state = 4700; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4696; + this.state = 4695; this.declareCondition(); - this.state = 4697; + this.state = 4696; this.match(MySqlParser.SEMI); } } } - this.state = 4703; + this.state = 4702; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); } - this.state = 4709; + this.state = 4708; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4704; + this.state = 4703; this.declareCursor(); - this.state = 4705; + this.state = 4704; this.match(MySqlParser.SEMI); } } } - this.state = 4711; + this.state = 4710; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); } - this.state = 4717; + this.state = 4716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 4712; + this.state = 4711; this.declareHandler(); - this.state = 4713; + this.state = 4712; this.match(MySqlParser.SEMI); } } - this.state = 4719; + this.state = 4718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4723; + this.state = 4722; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 681, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4720; + this.state = 4719; this.procedureSqlStatement(); } } } - this.state = 4725; + this.state = 4724; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 681, this.context); } - this.state = 4726; + this.state = 4725; this.match(MySqlParser.END); - this.state = 4728; + this.state = 4727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4727; + this.state = 4726; this.uid(); } } @@ -30666,46 +30661,46 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4730; + this.state = 4729; this.match(MySqlParser.CASE); - this.state = 4733; + this.state = 4732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 683, this.context) ) { case 1: { - this.state = 4731; + this.state = 4730; this.uid(); } break; case 2: { - this.state = 4732; + this.state = 4731; this.expression(0); } break; } - this.state = 4736; + this.state = 4735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4735; + this.state = 4734; this.caseAlternative(); } } - this.state = 4738; + this.state = 4737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 189); - this.state = 4746; + this.state = 4745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4740; + this.state = 4739; this.match(MySqlParser.ELSE); - this.state = 4742; + this.state = 4741; this.errorHandler.sync(this); alternative = 1; do { @@ -30713,7 +30708,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4741; + this.state = 4740; this.procedureSqlStatement(); } } @@ -30721,16 +30716,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4744; + this.state = 4743; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 685, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 4748; + this.state = 4747; this.match(MySqlParser.END); - this.state = 4749; + this.state = 4748; this.match(MySqlParser.CASE); } } @@ -30756,13 +30751,13 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4751; + this.state = 4750; this.match(MySqlParser.IF); - this.state = 4752; + this.state = 4751; this.expression(0); - this.state = 4753; + this.state = 4752; this.match(MySqlParser.THEN); - this.state = 4755; + this.state = 4754; this.errorHandler.sync(this); alternative = 1; do { @@ -30770,7 +30765,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4754; + this.state = 4753; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -30779,32 +30774,32 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4757; + this.state = 4756; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 687, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4762; + this.state = 4761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 4759; + this.state = 4758; this.elifAlternative(); } } - this.state = 4764; + this.state = 4763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4771; + this.state = 4770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4765; + this.state = 4764; this.match(MySqlParser.ELSE); - this.state = 4767; + this.state = 4766; this.errorHandler.sync(this); alternative = 1; do { @@ -30812,7 +30807,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4766; + this.state = 4765; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -30821,16 +30816,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4769; + this.state = 4768; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 689, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 4773; + this.state = 4772; this.match(MySqlParser.END); - this.state = 4774; + this.state = 4773; this.match(MySqlParser.IF); } } @@ -30854,9 +30849,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4776; + this.state = 4775; this.match(MySqlParser.ITERATE); - this.state = 4777; + this.state = 4776; this.uid(); } } @@ -30880,9 +30875,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4779; + this.state = 4778; this.match(MySqlParser.LEAVE); - this.state = 4780; + this.state = 4779; this.uid(); } } @@ -30908,21 +30903,21 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4785; + this.state = 4784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4782; + this.state = 4781; this.uid(); - this.state = 4783; + this.state = 4782; this.match(MySqlParser.COLON_SYMB); } } - this.state = 4787; + this.state = 4786; this.match(MySqlParser.LOOP); - this.state = 4789; + this.state = 4788; this.errorHandler.sync(this); alternative = 1; do { @@ -30930,7 +30925,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4788; + this.state = 4787; this.procedureSqlStatement(); } } @@ -30938,20 +30933,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4791; + this.state = 4790; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4793; + this.state = 4792; this.match(MySqlParser.END); - this.state = 4794; + this.state = 4793; this.match(MySqlParser.LOOP); - this.state = 4796; + this.state = 4795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4795; + this.state = 4794; this.uid(); } } @@ -30980,21 +30975,21 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4801; + this.state = 4800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 694, this.context) ) { case 1: { - this.state = 4798; + this.state = 4797; this.uid(); - this.state = 4799; + this.state = 4798; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4803; + this.state = 4802; this.match(MySqlParser.REPEAT); - this.state = 4805; + this.state = 4804; this.errorHandler.sync(this); alternative = 1; do { @@ -31002,7 +30997,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4804; + this.state = 4803; this.procedureSqlStatement(); } } @@ -31010,24 +31005,24 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4807; + this.state = 4806; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4809; + this.state = 4808; this.match(MySqlParser.UNTIL); - this.state = 4810; + this.state = 4809; this.expression(0); - this.state = 4811; + this.state = 4810; this.match(MySqlParser.END); - this.state = 4812; + this.state = 4811; this.match(MySqlParser.REPEAT); - this.state = 4814; + this.state = 4813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4813; + this.state = 4812; this.uid(); } } @@ -31054,9 +31049,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4816; + this.state = 4815; this.match(MySqlParser.RETURN); - this.state = 4817; + this.state = 4816; this.expression(0); } } @@ -31082,25 +31077,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4822; + this.state = 4821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4819; + this.state = 4818; this.uid(); - this.state = 4820; + this.state = 4819; this.match(MySqlParser.COLON_SYMB); } } - this.state = 4824; + this.state = 4823; this.match(MySqlParser.WHILE); - this.state = 4825; + this.state = 4824; this.expression(0); - this.state = 4826; + this.state = 4825; this.match(MySqlParser.DO); - this.state = 4828; + this.state = 4827; this.errorHandler.sync(this); alternative = 1; do { @@ -31108,7 +31103,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4827; + this.state = 4826; this.procedureSqlStatement(); } } @@ -31116,20 +31111,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4830; + this.state = 4829; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 698, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4832; + this.state = 4831; this.match(MySqlParser.END); - this.state = 4833; + this.state = 4832; this.match(MySqlParser.WHILE); - this.state = 4835; + this.state = 4834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 4834; + this.state = 4833; this.uid(); } } @@ -31155,16 +31150,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 406, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 4852; + this.state = 4851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4837; + this.state = 4836; this.match(MySqlParser.CLOSE); - this.state = 4838; + this.state = 4837; this.uid(); } break; @@ -31172,33 +31167,33 @@ export class MySqlParser extends antlr.Parser { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4839; + this.state = 4838; this.match(MySqlParser.FETCH); - this.state = 4844; + this.state = 4843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: { - this.state = 4841; + this.state = 4840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 4840; + this.state = 4839; this.match(MySqlParser.NEXT); } } - this.state = 4843; + this.state = 4842; this.match(MySqlParser.FROM); } break; } - this.state = 4846; + this.state = 4845; this.uid(); - this.state = 4847; + this.state = 4846; this.match(MySqlParser.INTO); - this.state = 4848; + this.state = 4847; this.uidList(); } break; @@ -31206,9 +31201,9 @@ export class MySqlParser extends antlr.Parser { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4850; + this.state = 4849; this.match(MySqlParser.OPEN); - this.state = 4851; + this.state = 4850; this.uid(); } break; @@ -31237,20 +31232,20 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4854; + this.state = 4853; this.match(MySqlParser.DECLARE); - this.state = 4855; + this.state = 4854; this.uidList(); - this.state = 4856; + this.state = 4855; this.dataType(); - this.state = 4859; + this.state = 4858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 4857; + this.state = 4856; this.match(MySqlParser.DEFAULT); - this.state = 4858; + this.state = 4857; this.expression(0); } } @@ -31278,15 +31273,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4861; + this.state = 4860; this.match(MySqlParser.DECLARE); - this.state = 4862; + this.state = 4861; this.uid(); - this.state = 4863; + this.state = 4862; this.match(MySqlParser.CONDITION); - this.state = 4864; + this.state = 4863; this.match(MySqlParser.FOR); - this.state = 4871; + this.state = 4870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -31295,25 +31290,25 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4865; + this.state = 4864; this.decimalLiteral(); } break; case MySqlParser.SQLSTATE: { - this.state = 4866; + this.state = 4865; this.match(MySqlParser.SQLSTATE); - this.state = 4868; + this.state = 4867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 669) { { - this.state = 4867; + this.state = 4866; this.match(MySqlParser.VALUE); } } - this.state = 4870; + this.state = 4869; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31342,15 +31337,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4873; + this.state = 4872; this.match(MySqlParser.DECLARE); - this.state = 4874; + this.state = 4873; this.uid(); - this.state = 4875; + this.state = 4874; this.match(MySqlParser.CURSOR); - this.state = 4876; + this.state = 4875; this.match(MySqlParser.FOR); - this.state = 4877; + this.state = 4876; this.selectStatement(); } } @@ -31375,9 +31370,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4879; + this.state = 4878; this.match(MySqlParser.DECLARE); - this.state = 4880; + this.state = 4879; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 61 || _la === 179)) { @@ -31387,29 +31382,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4881; + this.state = 4880; this.match(MySqlParser.HANDLER); - this.state = 4882; + this.state = 4881; this.match(MySqlParser.FOR); - this.state = 4883; + this.state = 4882; this.handlerConditionValue(); - this.state = 4888; + this.state = 4887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4884; + this.state = 4883; this.match(MySqlParser.COMMA); - this.state = 4885; + this.state = 4884; this.handlerConditionValue(); } } - this.state = 4890; + this.state = 4889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4891; + this.state = 4890; this.routineBody(); } } @@ -31432,7 +31427,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 416, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 4904; + this.state = 4903; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -31443,7 +31438,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4893; + this.state = 4892; this.decimalLiteral(); } break; @@ -31451,19 +31446,19 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4894; + this.state = 4893; this.match(MySqlParser.SQLSTATE); - this.state = 4896; + this.state = 4895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 669) { { - this.state = 4895; + this.state = 4894; this.match(MySqlParser.VALUE); } } - this.state = 4898; + this.state = 4897; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32340,7 +32335,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4899; + this.state = 4898; this.uid(); } break; @@ -32348,7 +32343,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4900; + this.state = 4899; this.match(MySqlParser.SQLWARNING); } break; @@ -32356,9 +32351,9 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4901; + this.state = 4900; this.match(MySqlParser.NOT); - this.state = 4902; + this.state = 4901; this.match(MySqlParser.FOUND); } break; @@ -32366,7 +32361,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4903; + this.state = 4902; this.match(MySqlParser.SQLEXCEPTION); } break; @@ -32394,23 +32389,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4908; + this.state = 4907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 4906; + this.state = 4905; this.compoundStatement(); } break; case 2: { - this.state = 4907; - this.sqlStatement(); + this.state = 4906; + this.statement(); } break; } - this.state = 4910; + this.state = 4909; this.match(MySqlParser.SEMI); } } @@ -32435,27 +32430,27 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4912; + this.state = 4911; this.match(MySqlParser.WHEN); - this.state = 4915; + this.state = 4914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { case 1: { - this.state = 4913; + this.state = 4912; this.constant(); } break; case 2: { - this.state = 4914; + this.state = 4913; this.expression(0); } break; } - this.state = 4917; + this.state = 4916; this.match(MySqlParser.THEN); - this.state = 4919; + this.state = 4918; this.errorHandler.sync(this); alternative = 1; do { @@ -32463,7 +32458,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4918; + this.state = 4917; this.procedureSqlStatement(); } } @@ -32471,7 +32466,7 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4921; + this.state = 4920; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -32498,13 +32493,13 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4923; + this.state = 4922; this.match(MySqlParser.ELSEIF); - this.state = 4924; + this.state = 4923; this.expression(0); - this.state = 4925; + this.state = 4924; this.match(MySqlParser.THEN); - this.state = 4927; + this.state = 4926; this.errorHandler.sync(this); alternative = 1; do { @@ -32512,7 +32507,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4926; + this.state = 4925; this.procedureSqlStatement(); } } @@ -32520,7 +32515,7 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4929; + this.state = 4928; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -32545,32 +32540,32 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 424, MySqlParser.RULE_alterUser); let _la: number; try { - this.state = 5004; + this.state = 5003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { case 1: localContext = new AlterUserMysqlV56Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4931; + this.state = 4930; this.match(MySqlParser.ALTER); - this.state = 4932; + this.state = 4931; this.match(MySqlParser.USER); - this.state = 4933; + this.state = 4932; this.userSpecification(); - this.state = 4938; + this.state = 4937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4934; + this.state = 4933; this.match(MySqlParser.COMMA); - this.state = 4935; + this.state = 4934; this.userSpecification(); } } - this.state = 4940; + this.state = 4939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32580,51 +32575,51 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterUserMysqlV80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4941; + this.state = 4940; this.match(MySqlParser.ALTER); - this.state = 4942; + this.state = 4941; this.match(MySqlParser.USER); - this.state = 4944; + this.state = 4943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4943; + this.state = 4942; this.ifExists(); } } - this.state = 4946; + this.state = 4945; this.userAuthOption(); - this.state = 4951; + this.state = 4950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 4947; + this.state = 4946; this.match(MySqlParser.COMMA); - this.state = 4948; + this.state = 4947; this.userAuthOption(); } } - this.state = 4953; + this.state = 4952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4968; + this.state = 4967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 4954; + this.state = 4953; this.match(MySqlParser.REQUIRE); - this.state = 4966; + this.state = 4965; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NONE: { - this.state = 4955; + this.state = 4954; (localContext as AlterUserMysqlV80Context)._tlsNone = this.match(MySqlParser.NONE); } break; @@ -32634,29 +32629,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SUBJECT: case MySqlParser.X509: { - this.state = 4956; + this.state = 4955; this.tlsOption(); - this.state = 4963; + this.state = 4962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 10 || _la === 167 || _la === 358 || _la === 465 || _la === 640 || _la === 680) { { { - this.state = 4958; + this.state = 4957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4957; + this.state = 4956; this.match(MySqlParser.AND); } } - this.state = 4960; + this.state = 4959; this.tlsOption(); } } - this.state = 4965; + this.state = 4964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32668,49 +32663,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4976; + this.state = 4975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 4970; + this.state = 4969; this.match(MySqlParser.WITH); - this.state = 4972; + this.state = 4971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4971; + this.state = 4970; this.userResourceOption(); } } - this.state = 4974; + this.state = 4973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 498)) & ~0x1F) === 0 && ((1 << (_la - 498)) & 51) !== 0)); } } - this.state = 4982; + this.state = 4981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 332 || _la === 424 || _la === 551 || _la === 552) { { - this.state = 4980; + this.state = 4979; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FAILED_LOGIN_ATTEMPTS: case MySqlParser.PASSWORD: case MySqlParser.PASSWORD_LOCK_TIME: { - this.state = 4978; + this.state = 4977; this.userPasswordOption(); } break; case MySqlParser.ACCOUNT: { - this.state = 4979; + this.state = 4978; this.userLockOption(); } break; @@ -32718,26 +32713,26 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 4984; + this.state = 4983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4989; + this.state = 4988; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.COMMENT: { - this.state = 4985; + this.state = 4984; this.match(MySqlParser.COMMENT); - this.state = 4986; + this.state = 4985; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.ATTRIBUTE: { - this.state = 4987; + this.state = 4986; this.match(MySqlParser.ATTRIBUTE); - this.state = 4988; + this.state = 4987; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32753,41 +32748,41 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterUserMysqlV80Context(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4991; + this.state = 4990; this.match(MySqlParser.ALTER); - this.state = 4992; + this.state = 4991; this.match(MySqlParser.USER); - this.state = 4994; + this.state = 4993; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 4993; + this.state = 4992; this.ifExists(); } break; } - this.state = 4998; + this.state = 4997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 726, this.context) ) { case 1: { - this.state = 4996; + this.state = 4995; this.userName(); } break; case 2: { - this.state = 4997; + this.state = 4996; this.uid(); } break; } - this.state = 5000; + this.state = 4999; this.match(MySqlParser.DEFAULT); - this.state = 5001; + this.state = 5000; this.match(MySqlParser.ROLE); - this.state = 5002; + this.state = 5001; this.roleOption(); } break; @@ -32812,32 +32807,32 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 426, MySqlParser.RULE_createUser); let _la: number; try { - this.state = 5071; + this.state = 5070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { case 1: localContext = new CreateUserMysqlV56Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5006; + this.state = 5005; this.match(MySqlParser.CREATE); - this.state = 5007; + this.state = 5006; this.match(MySqlParser.USER); - this.state = 5008; + this.state = 5007; this.userAuthOption(); - this.state = 5013; + this.state = 5012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5009; + this.state = 5008; this.match(MySqlParser.COMMA); - this.state = 5010; + this.state = 5009; this.userAuthOption(); } } - this.state = 5015; + this.state = 5014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32847,65 +32842,65 @@ export class MySqlParser extends antlr.Parser { localContext = new CreateUserMysqlV80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5016; + this.state = 5015; this.match(MySqlParser.CREATE); - this.state = 5017; + this.state = 5016; this.match(MySqlParser.USER); - this.state = 5019; + this.state = 5018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5018; + this.state = 5017; this.ifNotExists(); } } - this.state = 5021; + this.state = 5020; this.userAuthOption(); - this.state = 5026; + this.state = 5025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5022; + this.state = 5021; this.match(MySqlParser.COMMA); - this.state = 5023; + this.state = 5022; this.userAuthOption(); } } - this.state = 5028; + this.state = 5027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5032; + this.state = 5031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5029; + this.state = 5028; this.match(MySqlParser.DEFAULT); - this.state = 5030; + this.state = 5029; this.match(MySqlParser.ROLE); - this.state = 5031; + this.state = 5030; this.roleOption(); } } - this.state = 5048; + this.state = 5047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 5034; + this.state = 5033; this.match(MySqlParser.REQUIRE); - this.state = 5046; + this.state = 5045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NONE: { - this.state = 5035; + this.state = 5034; (localContext as CreateUserMysqlV80Context)._tlsNone = this.match(MySqlParser.NONE); } break; @@ -32915,29 +32910,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SUBJECT: case MySqlParser.X509: { - this.state = 5036; + this.state = 5035; this.tlsOption(); - this.state = 5043; + this.state = 5042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 10 || _la === 167 || _la === 358 || _la === 465 || _la === 640 || _la === 680) { { { - this.state = 5038; + this.state = 5037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5037; + this.state = 5036; this.match(MySqlParser.AND); } } - this.state = 5040; + this.state = 5039; this.tlsOption(); } } - this.state = 5045; + this.state = 5044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32949,49 +32944,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5056; + this.state = 5055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 5050; + this.state = 5049; this.match(MySqlParser.WITH); - this.state = 5052; + this.state = 5051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5051; + this.state = 5050; this.userResourceOption(); } } - this.state = 5054; + this.state = 5053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 498)) & ~0x1F) === 0 && ((1 << (_la - 498)) & 51) !== 0)); } } - this.state = 5062; + this.state = 5061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 332 || _la === 424 || _la === 551 || _la === 552) { { - this.state = 5060; + this.state = 5059; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FAILED_LOGIN_ATTEMPTS: case MySqlParser.PASSWORD: case MySqlParser.PASSWORD_LOCK_TIME: { - this.state = 5058; + this.state = 5057; this.userPasswordOption(); } break; case MySqlParser.ACCOUNT: { - this.state = 5059; + this.state = 5058; this.userLockOption(); } break; @@ -32999,26 +32994,26 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5064; + this.state = 5063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5069; + this.state = 5068; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.COMMENT: { - this.state = 5065; + this.state = 5064; this.match(MySqlParser.COMMENT); - this.state = 5066; + this.state = 5065; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.ATTRIBUTE: { - this.state = 5067; + this.state = 5066; this.match(MySqlParser.ATTRIBUTE); - this.state = 5068; + this.state = 5067; this.match(MySqlParser.STRING_LITERAL); } break; @@ -33053,35 +33048,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5073; + this.state = 5072; this.match(MySqlParser.DROP); - this.state = 5074; + this.state = 5073; this.match(MySqlParser.USER); - this.state = 5076; + this.state = 5075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5075; + this.state = 5074; this.ifExists(); } } - this.state = 5078; + this.state = 5077; this.userName(); - this.state = 5083; + this.state = 5082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5079; + this.state = 5078; this.match(MySqlParser.COMMA); - this.state = 5080; + this.state = 5079; this.userName(); } } - this.state = 5085; + this.state = 5084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33106,40 +33101,40 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 430, MySqlParser.RULE_grantStatement); let _la: number; try { - this.state = 5179; + this.state = 5178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5086; + this.state = 5085; this.match(MySqlParser.GRANT); - this.state = 5087; + this.state = 5086; this.privelegeClause(); - this.state = 5092; + this.state = 5091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5088; + this.state = 5087; this.match(MySqlParser.COMMA); - this.state = 5089; + this.state = 5088; this.privelegeClause(); } } - this.state = 5094; + this.state = 5093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5095; + this.state = 5094; this.match(MySqlParser.ON); - this.state = 5097; + this.state = 5096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5096; + this.state = 5095; localContext._privilegeObject = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 172 || _la === 437)) { @@ -33152,41 +33147,41 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 5099; + this.state = 5098; this.privilegeLevel(); - this.state = 5100; + this.state = 5099; this.match(MySqlParser.TO); - this.state = 5101; + this.state = 5100; this.userAuthOption(); - this.state = 5106; + this.state = 5105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5102; + this.state = 5101; this.match(MySqlParser.COMMA); - this.state = 5103; + this.state = 5102; this.userAuthOption(); } } - this.state = 5108; + this.state = 5107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5123; + this.state = 5122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 142) { { - this.state = 5109; + this.state = 5108; this.match(MySqlParser.REQUIRE); - this.state = 5121; + this.state = 5120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.NONE: { - this.state = 5110; + this.state = 5109; localContext._tlsNone = this.match(MySqlParser.NONE); } break; @@ -33196,29 +33191,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SUBJECT: case MySqlParser.X509: { - this.state = 5111; + this.state = 5110; this.tlsOption(); - this.state = 5118; + this.state = 5117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 10 || _la === 167 || _la === 358 || _la === 465 || _la === 640 || _la === 680) { { { - this.state = 5113; + this.state = 5112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5112; + this.state = 5111; this.match(MySqlParser.AND); } } - this.state = 5115; + this.state = 5114; this.tlsOption(); } } - this.state = 5120; + this.state = 5119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33230,26 +33225,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5134; + this.state = 5133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 5125; + this.state = 5124; this.match(MySqlParser.WITH); - this.state = 5131; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 72 || ((((_la - 498)) & ~0x1F) === 0 && ((1 << (_la - 498)) & 51) !== 0)) { { - this.state = 5129; + this.state = 5128; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.GRANT: { - this.state = 5126; + this.state = 5125; this.match(MySqlParser.GRANT); - this.state = 5127; + this.state = 5126; this.match(MySqlParser.OPTION); } break; @@ -33258,7 +33253,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MAX_UPDATES_PER_HOUR: case MySqlParser.MAX_USER_CONNECTIONS: { - this.state = 5128; + this.state = 5127; this.userResourceOption(); } break; @@ -33266,27 +33261,27 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5133; + this.state = 5132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 5142; + this.state = 5141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 5136; + this.state = 5135; this.match(MySqlParser.AS); - this.state = 5137; + this.state = 5136; this.userName(); - this.state = 5138; + this.state = 5137; this.match(MySqlParser.WITH); - this.state = 5139; + this.state = 5138; this.match(MySqlParser.ROLE); - this.state = 5140; + this.state = 5139; this.roleOption(); } } @@ -33296,112 +33291,112 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5144; + this.state = 5143; this.match(MySqlParser.GRANT); - this.state = 5147; + this.state = 5146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 755, this.context) ) { case 1: { - this.state = 5145; + this.state = 5144; this.userName(); } break; case 2: { - this.state = 5146; + this.state = 5145; this.uid(); } break; } - this.state = 5156; + this.state = 5155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5149; + this.state = 5148; this.match(MySqlParser.COMMA); - this.state = 5152; + this.state = 5151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 756, this.context) ) { case 1: { - this.state = 5150; + this.state = 5149; this.userName(); } break; case 2: { - this.state = 5151; + this.state = 5150; this.uid(); } break; } } } - this.state = 5158; + this.state = 5157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5159; + this.state = 5158; this.match(MySqlParser.TO); - this.state = 5162; + this.state = 5161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { case 1: { - this.state = 5160; + this.state = 5159; this.userName(); } break; case 2: { - this.state = 5161; + this.state = 5160; this.uid(); } break; } - this.state = 5171; + this.state = 5170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5164; + this.state = 5163; this.match(MySqlParser.COMMA); - this.state = 5167; + this.state = 5166; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5165; + this.state = 5164; this.userName(); } break; case 2: { - this.state = 5166; + this.state = 5165; this.uid(); } break; } } } - this.state = 5173; + this.state = 5172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5177; + this.state = 5176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 5174; + this.state = 5173; this.match(MySqlParser.WITH); - this.state = 5175; + this.state = 5174; this.match(MySqlParser.ADMIN); - this.state = 5176; + this.state = 5175; this.match(MySqlParser.OPTION); } } @@ -33429,50 +33424,50 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 432, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5203; + this.state = 5202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5181; + this.state = 5180; this.match(MySqlParser.DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5182; + this.state = 5181; this.match(MySqlParser.NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5183; + this.state = 5182; this.match(MySqlParser.ALL); - this.state = 5193; + this.state = 5192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5184; + this.state = 5183; this.match(MySqlParser.EXCEPT); - this.state = 5185; + this.state = 5184; this.userName(); - this.state = 5190; + this.state = 5189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5186; + this.state = 5185; this.match(MySqlParser.COMMA); - this.state = 5187; + this.state = 5186; this.userName(); } } - this.state = 5192; + this.state = 5191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33484,21 +33479,21 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5195; + this.state = 5194; this.userName(); - this.state = 5200; + this.state = 5199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5196; + this.state = 5195; this.match(MySqlParser.COMMA); - this.state = 5197; + this.state = 5196; this.userName(); } } - this.state = 5202; + this.state = 5201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33527,45 +33522,45 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5205; + this.state = 5204; this.match(MySqlParser.GRANT); - this.state = 5206; + this.state = 5205; this.match(MySqlParser.PROXY); - this.state = 5207; + this.state = 5206; this.match(MySqlParser.ON); - this.state = 5208; + this.state = 5207; localContext._fromFirst = this.userName(); - this.state = 5209; + this.state = 5208; this.match(MySqlParser.TO); - this.state = 5210; + this.state = 5209; localContext._toFirst = this.userName(); - this.state = 5215; + this.state = 5214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5211; + this.state = 5210; this.match(MySqlParser.COMMA); - this.state = 5212; + this.state = 5211; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5217; + this.state = 5216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5221; + this.state = 5220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 5218; + this.state = 5217; this.match(MySqlParser.WITH); - this.state = 5219; + this.state = 5218; this.match(MySqlParser.GRANT); - this.state = 5220; + this.state = 5219; this.match(MySqlParser.OPTION); } } @@ -33593,25 +33588,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5223; + this.state = 5222; this.match(MySqlParser.RENAME); - this.state = 5224; + this.state = 5223; this.match(MySqlParser.USER); - this.state = 5225; + this.state = 5224; this.renameUserClause(); - this.state = 5230; + this.state = 5229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5226; + this.state = 5225; this.match(MySqlParser.COMMA); - this.state = 5227; + this.state = 5226; this.renameUserClause(); } } - this.state = 5232; + this.state = 5231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33636,41 +33631,41 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 438, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5303; + this.state = 5302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5233; + this.state = 5232; this.match(MySqlParser.REVOKE); - this.state = 5234; + this.state = 5233; this.privelegeClause(); - this.state = 5239; + this.state = 5238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5235; + this.state = 5234; this.match(MySqlParser.COMMA); - this.state = 5236; + this.state = 5235; this.privelegeClause(); } } - this.state = 5241; + this.state = 5240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5242; + this.state = 5241; this.match(MySqlParser.ON); - this.state = 5244; + this.state = 5243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 5243; + this.state = 5242; (localContext as DetailRevokeContext)._privilegeObject = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 172 || _la === 437)) { @@ -33683,25 +33678,25 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 5246; + this.state = 5245; this.privilegeLevel(); - this.state = 5247; + this.state = 5246; this.match(MySqlParser.FROM); - this.state = 5248; + this.state = 5247; this.userName(); - this.state = 5253; + this.state = 5252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5249; + this.state = 5248; this.match(MySqlParser.COMMA); - this.state = 5250; + this.state = 5249; this.userName(); } } - this.state = 5255; + this.state = 5254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33711,43 +33706,43 @@ export class MySqlParser extends antlr.Parser { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5256; + this.state = 5255; this.match(MySqlParser.REVOKE); - this.state = 5257; + this.state = 5256; this.match(MySqlParser.ALL); - this.state = 5259; + this.state = 5258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 725) { { - this.state = 5258; + this.state = 5257; this.match(MySqlParser.PRIVILEGES); } } - this.state = 5261; + this.state = 5260; this.match(MySqlParser.COMMA); - this.state = 5262; + this.state = 5261; this.match(MySqlParser.GRANT); - this.state = 5263; + this.state = 5262; this.match(MySqlParser.OPTION); - this.state = 5264; + this.state = 5263; this.match(MySqlParser.FROM); - this.state = 5265; + this.state = 5264; this.userName(); - this.state = 5270; + this.state = 5269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5266; + this.state = 5265; this.match(MySqlParser.COMMA); - this.state = 5267; + this.state = 5266; this.userName(); } } - this.state = 5272; + this.state = 5271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33757,99 +33752,99 @@ export class MySqlParser extends antlr.Parser { localContext = new RoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5273; + this.state = 5272; this.match(MySqlParser.REVOKE); - this.state = 5276; + this.state = 5275; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 775, this.context) ) { case 1: { - this.state = 5274; + this.state = 5273; this.userName(); } break; case 2: { - this.state = 5275; + this.state = 5274; this.uid(); } break; } - this.state = 5285; + this.state = 5284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5278; + this.state = 5277; this.match(MySqlParser.COMMA); - this.state = 5281; + this.state = 5280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { case 1: { - this.state = 5279; + this.state = 5278; this.userName(); } break; case 2: { - this.state = 5280; + this.state = 5279; this.uid(); } break; } } } - this.state = 5287; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5288; + this.state = 5287; this.match(MySqlParser.FROM); - this.state = 5291; + this.state = 5290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 5289; + this.state = 5288; this.userName(); } break; case 2: { - this.state = 5290; + this.state = 5289; this.uid(); } break; } - this.state = 5300; + this.state = 5299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5293; + this.state = 5292; this.match(MySqlParser.COMMA); - this.state = 5296; + this.state = 5295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: { - this.state = 5294; + this.state = 5293; this.userName(); } break; case 2: { - this.state = 5295; + this.state = 5294; this.uid(); } break; } } } - this.state = 5302; + this.state = 5301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33878,32 +33873,32 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5305; + this.state = 5304; this.match(MySqlParser.REVOKE); - this.state = 5306; + this.state = 5305; this.match(MySqlParser.PROXY); - this.state = 5307; + this.state = 5306; this.match(MySqlParser.ON); - this.state = 5308; + this.state = 5307; localContext._onUser = this.userName(); - this.state = 5309; + this.state = 5308; this.match(MySqlParser.FROM); - this.state = 5310; + this.state = 5309; localContext._fromFirst = this.userName(); - this.state = 5315; + this.state = 5314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5311; + this.state = 5310; this.match(MySqlParser.COMMA); - this.state = 5312; + this.state = 5311; localContext._userName = this.userName(); localContext._fromOther.push(localContext._userName); } } - this.state = 5317; + this.state = 5316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33930,37 +33925,37 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5318; + this.state = 5317; this.match(MySqlParser.SET); - this.state = 5319; + this.state = 5318; this.match(MySqlParser.PASSWORD); - this.state = 5322; + this.state = 5321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5320; + this.state = 5319; this.match(MySqlParser.FOR); - this.state = 5321; + this.state = 5320; this.userName(); } } - this.state = 5324; + this.state = 5323; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5327; + this.state = 5326; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.OLD_PASSWORD: case MySqlParser.PASSWORD: { - this.state = 5325; + this.state = 5324; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5326; + this.state = 5325; this.match(MySqlParser.STRING_LITERAL); } break; @@ -33989,9 +33984,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5329; + this.state = 5328; this.userName(); - this.state = 5330; + this.state = 5329; this.userPasswordOption(); } } @@ -34013,22 +34008,22 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserAuthOptionContext(this.context, this.state); this.enterRule(localContext, 446, MySqlParser.RULE_userAuthOption); try { - this.state = 5357; + this.state = 5356; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5332; + this.state = 5331; this.userName(); - this.state = 5333; + this.state = 5332; this.match(MySqlParser.IDENTIFIED); - this.state = 5334; + this.state = 5333; this.match(MySqlParser.BY); - this.state = 5335; + this.state = 5334; this.match(MySqlParser.PASSWORD); - this.state = 5336; + this.state = 5335; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -34036,17 +34031,17 @@ export class MySqlParser extends antlr.Parser { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5338; + this.state = 5337; this.userName(); - this.state = 5339; + this.state = 5338; this.match(MySqlParser.IDENTIFIED); - this.state = 5340; + this.state = 5339; this.match(MySqlParser.BY); - this.state = 5341; + this.state = 5340; this.match(MySqlParser.RANDOM); - this.state = 5342; + this.state = 5341; this.match(MySqlParser.PASSWORD); - this.state = 5343; + this.state = 5342; this.authOptionClause(); } break; @@ -34054,15 +34049,15 @@ export class MySqlParser extends antlr.Parser { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5345; + this.state = 5344; this.userName(); - this.state = 5346; + this.state = 5345; this.match(MySqlParser.IDENTIFIED); - this.state = 5347; + this.state = 5346; this.match(MySqlParser.BY); - this.state = 5348; + this.state = 5347; this.match(MySqlParser.STRING_LITERAL); - this.state = 5349; + this.state = 5348; this.authOptionClause(); } break; @@ -34070,13 +34065,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5351; + this.state = 5350; this.userName(); - this.state = 5352; + this.state = 5351; this.match(MySqlParser.IDENTIFIED); - this.state = 5353; + this.state = 5352; this.match(MySqlParser.WITH); - this.state = 5354; + this.state = 5353; this.authenticationRule(); } break; @@ -34084,7 +34079,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5356; + this.state = 5355; this.userName(); } break; @@ -34111,28 +34106,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5361; + this.state = 5360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 5359; + this.state = 5358; this.match(MySqlParser.REPLACE); - this.state = 5360; + this.state = 5359; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 5366; + this.state = 5365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 5363; + this.state = 5362; this.match(MySqlParser.RETAIN); - this.state = 5364; + this.state = 5363; this.match(MySqlParser.CURRENT); - this.state = 5365; + this.state = 5364; this.match(MySqlParser.PASSWORD); } } @@ -34158,21 +34153,21 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 450, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5382; + this.state = 5381; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5368; + this.state = 5367; this.authPlugin(); - this.state = 5376; + this.state = 5375; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { case 1: { - this.state = 5369; + this.state = 5368; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 19 || _la === 187)) { this.errorHandler.recoverInline(this); @@ -34181,27 +34176,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5373; + this.state = 5372; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5370; + this.state = 5369; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.RANDOM: { - this.state = 5371; + this.state = 5370; this.match(MySqlParser.RANDOM); - this.state = 5372; + this.state = 5371; this.match(MySqlParser.PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5375; + this.state = 5374; this.authOptionClause(); } break; @@ -34212,11 +34207,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5378; + this.state = 5377; this.authPlugin(); - this.state = 5379; + this.state = 5378; this.match(MySqlParser.USING); - this.state = 5380; + this.state = 5379; this.passwordFunctionClause(); } break; @@ -34240,47 +34235,47 @@ export class MySqlParser extends antlr.Parser { let localContext = new TlsOptionContext(this.context, this.state); this.enterRule(localContext, 452, MySqlParser.RULE_tlsOption); try { - this.state = 5392; + this.state = 5391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5384; + this.state = 5383; this.match(MySqlParser.SSL); } break; case MySqlParser.X509: this.enterOuterAlt(localContext, 2); { - this.state = 5385; + this.state = 5384; this.match(MySqlParser.X509); } break; case MySqlParser.CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5386; + this.state = 5385; this.match(MySqlParser.CIPHER); - this.state = 5387; + this.state = 5386; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5388; + this.state = 5387; this.match(MySqlParser.ISSUER); - this.state = 5389; + this.state = 5388; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5390; + this.state = 5389; this.match(MySqlParser.SUBJECT); - this.state = 5391; + this.state = 5390; this.match(MySqlParser.STRING_LITERAL); } break; @@ -34306,42 +34301,42 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserResourceOptionContext(this.context, this.state); this.enterRule(localContext, 454, MySqlParser.RULE_userResourceOption); try { - this.state = 5402; + this.state = 5401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5394; + this.state = 5393; this.match(MySqlParser.MAX_QUERIES_PER_HOUR); - this.state = 5395; + this.state = 5394; this.decimalLiteral(); } break; case MySqlParser.MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5396; + this.state = 5395; this.match(MySqlParser.MAX_UPDATES_PER_HOUR); - this.state = 5397; + this.state = 5396; this.decimalLiteral(); } break; case MySqlParser.MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5398; + this.state = 5397; this.match(MySqlParser.MAX_CONNECTIONS_PER_HOUR); - this.state = 5399; + this.state = 5398; this.decimalLiteral(); } break; case MySqlParser.MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5400; + this.state = 5399; this.match(MySqlParser.MAX_USER_CONNECTIONS); - this.state = 5401; + this.state = 5400; this.decimalLiteral(); } break; @@ -34368,38 +34363,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 456, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5442; + this.state = 5441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5404; + this.state = 5403; this.match(MySqlParser.PASSWORD); - this.state = 5405; + this.state = 5404; this.match(MySqlParser.EXPIRE); - this.state = 5412; + this.state = 5411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DEFAULT: { - this.state = 5406; + this.state = 5405; localContext._expireType = this.match(MySqlParser.DEFAULT); } break; case MySqlParser.NEVER: { - this.state = 5407; + this.state = 5406; localContext._expireType = this.match(MySqlParser.NEVER); } break; case MySqlParser.INTERVAL: { - this.state = 5408; + this.state = 5407; localContext._expireType = this.match(MySqlParser.INTERVAL); - this.state = 5409; + this.state = 5408; this.decimalLiteral(); - this.state = 5410; + this.state = 5409; this.match(MySqlParser.DAY); } break; @@ -34421,16 +34416,16 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5414; + this.state = 5413; this.match(MySqlParser.PASSWORD); - this.state = 5415; + this.state = 5414; this.match(MySqlParser.HISTORY); - this.state = 5418; + this.state = 5417; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DEFAULT: { - this.state = 5416; + this.state = 5415; this.match(MySqlParser.DEFAULT); } break; @@ -34440,7 +34435,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5417; + this.state = 5416; this.decimalLiteral(); } break; @@ -34452,18 +34447,18 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5420; + this.state = 5419; this.match(MySqlParser.PASSWORD); - this.state = 5421; + this.state = 5420; this.match(MySqlParser.REUSE); - this.state = 5422; + this.state = 5421; this.match(MySqlParser.INTERVAL); - this.state = 5427; + this.state = 5426; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DEFAULT: { - this.state = 5423; + this.state = 5422; this.match(MySqlParser.DEFAULT); } break; @@ -34473,9 +34468,9 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5424; + this.state = 5423; this.decimalLiteral(); - this.state = 5425; + this.state = 5424; this.match(MySqlParser.DAY); } break; @@ -34487,18 +34482,18 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5429; + this.state = 5428; this.match(MySqlParser.PASSWORD); - this.state = 5430; + this.state = 5429; this.match(MySqlParser.REQUIRE); - this.state = 5431; + this.state = 5430; this.match(MySqlParser.CURRENT); - this.state = 5433; + this.state = 5432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 121) { { - this.state = 5432; + this.state = 5431; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 121)) { this.errorHandler.recoverInline(this); @@ -34515,18 +34510,18 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5435; + this.state = 5434; this.match(MySqlParser.FAILED_LOGIN_ATTEMPTS); - this.state = 5436; + this.state = 5435; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5437; + this.state = 5436; this.match(MySqlParser.PASSWORD_LOCK_TIME); - this.state = 5440; + this.state = 5439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -34535,13 +34530,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5438; + this.state = 5437; this.decimalLiteral(); } break; case MySqlParser.UNBOUNDED: { - this.state = 5439; + this.state = 5438; this.match(MySqlParser.UNBOUNDED); } break; @@ -34573,9 +34568,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5444; + this.state = 5443; this.match(MySqlParser.ACCOUNT); - this.state = 5445; + this.state = 5444; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 182)) { @@ -34608,18 +34603,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5447; + this.state = 5446; this.privilege(); - this.state = 5452; + this.state = 5451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 5448; + this.state = 5447; this.match(MySqlParser.LR_BRACKET); - this.state = 5449; + this.state = 5448; this.uidList(); - this.state = 5450; + this.state = 5449; this.match(MySqlParser.RR_BRACKET); } } @@ -34645,20 +34640,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 462, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 5547; + this.state = 5546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5454; + this.state = 5453; this.match(MySqlParser.ALL); - this.state = 5456; + this.state = 5455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 725) { { - this.state = 5455; + this.state = 5454; this.match(MySqlParser.PRIVILEGES); } } @@ -34668,14 +34663,14 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5458; + this.state = 5457; this.match(MySqlParser.ALTER); - this.state = 5460; + this.state = 5459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 733) { { - this.state = 5459; + this.state = 5458; this.match(MySqlParser.ROUTINE); } } @@ -34685,46 +34680,46 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5462; + this.state = 5461; this.match(MySqlParser.CREATE); - this.state = 5470; + this.state = 5469; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.TEMPORARY: { - this.state = 5463; + this.state = 5462; this.match(MySqlParser.TEMPORARY); - this.state = 5464; + this.state = 5463; this.match(MySqlParser.TABLES); } break; case MySqlParser.ROUTINE: { - this.state = 5465; + this.state = 5464; this.match(MySqlParser.ROUTINE); } break; case MySqlParser.VIEW: { - this.state = 5466; + this.state = 5465; this.match(MySqlParser.VIEW); } break; case MySqlParser.USER: { - this.state = 5467; + this.state = 5466; this.match(MySqlParser.USER); } break; case MySqlParser.TABLESPACE: { - this.state = 5468; + this.state = 5467; this.match(MySqlParser.TABLESPACE); } break; case MySqlParser.ROLE: { - this.state = 5469; + this.state = 5468; this.match(MySqlParser.ROLE); } break; @@ -34740,21 +34735,21 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5472; + this.state = 5471; this.match(MySqlParser.DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5473; + this.state = 5472; this.match(MySqlParser.DROP); - this.state = 5475; + this.state = 5474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 596) { { - this.state = 5474; + this.state = 5473; this.match(MySqlParser.ROLE); } } @@ -34764,90 +34759,90 @@ export class MySqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5477; + this.state = 5476; this.match(MySqlParser.EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5478; + this.state = 5477; this.match(MySqlParser.EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5479; + this.state = 5478; this.match(MySqlParser.FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5480; + this.state = 5479; this.match(MySqlParser.GRANT); - this.state = 5481; + this.state = 5480; this.match(MySqlParser.OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5482; + this.state = 5481; this.match(MySqlParser.INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5483; + this.state = 5482; this.match(MySqlParser.INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5484; + this.state = 5483; this.match(MySqlParser.LOCK); - this.state = 5485; + this.state = 5484; this.match(MySqlParser.TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5486; + this.state = 5485; this.match(MySqlParser.PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5487; + this.state = 5486; this.match(MySqlParser.PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5488; + this.state = 5487; this.match(MySqlParser.REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5489; + this.state = 5488; this.match(MySqlParser.RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5490; + this.state = 5489; this.match(MySqlParser.REPLICATION); - this.state = 5491; + this.state = 5490; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 614)) { this.errorHandler.recoverInline(this); @@ -34861,16 +34856,16 @@ export class MySqlParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5492; + this.state = 5491; this.match(MySqlParser.SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5493; + this.state = 5492; this.match(MySqlParser.SHOW); - this.state = 5494; + this.state = 5493; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 671)) { this.errorHandler.recoverInline(this); @@ -34884,339 +34879,339 @@ export class MySqlParser extends antlr.Parser { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5495; + this.state = 5494; this.match(MySqlParser.SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5496; + this.state = 5495; this.match(MySqlParser.SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5497; + this.state = 5496; this.match(MySqlParser.TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5498; + this.state = 5497; this.match(MySqlParser.UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5499; + this.state = 5498; this.match(MySqlParser.USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5500; + this.state = 5499; this.match(MySqlParser.APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5501; + this.state = 5500; this.match(MySqlParser.AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5502; + this.state = 5501; this.match(MySqlParser.AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5503; + this.state = 5502; this.match(MySqlParser.AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5504; + this.state = 5503; this.match(MySqlParser.BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5505; + this.state = 5504; this.match(MySqlParser.BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5506; + this.state = 5505; this.match(MySqlParser.BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5507; + this.state = 5506; this.match(MySqlParser.CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5508; + this.state = 5507; this.match(MySqlParser.CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5509; + this.state = 5508; this.match(MySqlParser.ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5510; + this.state = 5509; this.match(MySqlParser.FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5511; + this.state = 5510; this.match(MySqlParser.FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5512; + this.state = 5511; this.match(MySqlParser.FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5513; + this.state = 5512; this.match(MySqlParser.FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5514; + this.state = 5513; this.match(MySqlParser.FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5515; + this.state = 5514; this.match(MySqlParser.FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5516; + this.state = 5515; this.match(MySqlParser.FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5517; + this.state = 5516; this.match(MySqlParser.GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5518; + this.state = 5517; this.match(MySqlParser.INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5519; + this.state = 5518; this.match(MySqlParser.INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5520; + this.state = 5519; this.match(MySqlParser.NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5521; + this.state = 5520; this.match(MySqlParser.PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5522; + this.state = 5521; this.match(MySqlParser.PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5523; + this.state = 5522; this.match(MySqlParser.REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5524; + this.state = 5523; this.match(MySqlParser.REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5525; + this.state = 5524; this.match(MySqlParser.RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5526; + this.state = 5525; this.match(MySqlParser.RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5527; + this.state = 5526; this.match(MySqlParser.ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5528; + this.state = 5527; this.match(MySqlParser.SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5529; + this.state = 5528; this.match(MySqlParser.SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5530; + this.state = 5529; this.match(MySqlParser.SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5531; + this.state = 5530; this.match(MySqlParser.SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5532; + this.state = 5531; this.match(MySqlParser.SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5533; + this.state = 5532; this.match(MySqlParser.SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5534; + this.state = 5533; this.match(MySqlParser.SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5535; + this.state = 5534; this.match(MySqlParser.TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5536; + this.state = 5535; this.match(MySqlParser.TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 5537; + this.state = 5536; this.match(MySqlParser.VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 5538; + this.state = 5537; this.match(MySqlParser.XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 5539; + this.state = 5538; this.match(MySqlParser.LOAD); - this.state = 5540; + this.state = 5539; this.match(MySqlParser.FROM); - this.state = 5541; + this.state = 5540; this.match(MySqlParser.S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 5542; + this.state = 5541; this.match(MySqlParser.SELECT); - this.state = 5543; + this.state = 5542; this.match(MySqlParser.INTO); - this.state = 5544; + this.state = 5543; this.match(MySqlParser.S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 5545; + this.state = 5544; this.match(MySqlParser.INVOKE); - this.state = 5546; + this.state = 5545; this.match(MySqlParser.LAMBDA); } break; @@ -35240,14 +35235,14 @@ export class MySqlParser extends antlr.Parser { let localContext = new PrivilegeLevelContext(this.context, this.state); this.enterRule(localContext, 464, MySqlParser.RULE_privilegeLevel); try { - this.state = 5565; + this.state = 5564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 805, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5549; + this.state = 5548; this.match(MySqlParser.STAR); } break; @@ -35255,11 +35250,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5550; + this.state = 5549; this.match(MySqlParser.STAR); - this.state = 5551; + this.state = 5550; this.match(MySqlParser.DOT); - this.state = 5552; + this.state = 5551; this.match(MySqlParser.STAR); } break; @@ -35267,11 +35262,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5553; + this.state = 5552; this.uid(); - this.state = 5554; + this.state = 5553; this.match(MySqlParser.DOT); - this.state = 5555; + this.state = 5554; this.match(MySqlParser.STAR); } break; @@ -35279,11 +35274,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5557; + this.state = 5556; this.uid(); - this.state = 5558; + this.state = 5557; this.match(MySqlParser.DOT); - this.state = 5559; + this.state = 5558; this.uid(); } break; @@ -35291,9 +35286,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5561; + this.state = 5560; this.uid(); - this.state = 5562; + this.state = 5561; this.dottedId(); } break; @@ -35301,7 +35296,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5564; + this.state = 5563; this.uid(); } break; @@ -35327,11 +35322,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5567; + this.state = 5566; localContext._fromFirst = this.userName(); - this.state = 5568; + this.state = 5567; this.match(MySqlParser.TO); - this.state = 5569; + this.state = 5568; localContext._toFirst = this.userName(); } } @@ -35356,14 +35351,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5571; + this.state = 5570; this.match(MySqlParser.ANALYZE); - this.state = 5573; + this.state = 5572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 474) { { - this.state = 5572; + this.state = 5571; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 474)) { @@ -35376,7 +35371,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5575; + this.state = 5574; _la = this.tokenStream.LA(1); if(!(_la === 172 || _la === 742)) { this.errorHandler.recoverInline(this); @@ -35385,47 +35380,47 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5576; + this.state = 5575; this.tables(); - this.state = 5594; + this.state = 5593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 5577; + this.state = 5576; this.match(MySqlParser.UPDATE); - this.state = 5578; + this.state = 5577; this.match(MySqlParser.HISTOGRAM); - this.state = 5579; + this.state = 5578; this.match(MySqlParser.ON); - this.state = 5580; + this.state = 5579; this.fullColumnName(); - this.state = 5585; + this.state = 5584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5581; + this.state = 5580; this.match(MySqlParser.COMMA); - this.state = 5582; + this.state = 5581; this.fullColumnName(); } } - this.state = 5587; + this.state = 5586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5592; + this.state = 5591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 5588; + this.state = 5587; this.match(MySqlParser.WITH); - this.state = 5589; + this.state = 5588; this.decimalLiteral(); - this.state = 5590; + this.state = 5589; this.match(MySqlParser.BUCKETS); } } @@ -35433,32 +35428,32 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5607; + this.state = 5606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 5596; + this.state = 5595; this.match(MySqlParser.DROP); - this.state = 5597; + this.state = 5596; this.match(MySqlParser.HISTOGRAM); - this.state = 5598; + this.state = 5597; this.match(MySqlParser.ON); - this.state = 5599; + this.state = 5598; this.fullColumnName(); - this.state = 5604; + this.state = 5603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5600; + this.state = 5599; this.match(MySqlParser.COMMA); - this.state = 5601; + this.state = 5600; this.fullColumnName(); } } - this.state = 5606; + this.state = 5605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35488,23 +35483,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5609; + this.state = 5608; this.match(MySqlParser.CHECK); - this.state = 5610; + this.state = 5609; this.match(MySqlParser.TABLE); - this.state = 5611; + this.state = 5610; this.tables(); - this.state = 5615; + this.state = 5614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 354 || _la === 422 || _la === 425 || _la === 504 || _la === 568) { { { - this.state = 5612; + this.state = 5611; this.checkTableOption(); } } - this.state = 5617; + this.state = 5616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35531,18 +35526,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5618; + this.state = 5617; this.match(MySqlParser.CHECKSUM); - this.state = 5619; + this.state = 5618; this.match(MySqlParser.TABLE); - this.state = 5620; + this.state = 5619; this.tables(); - this.state = 5622; + this.state = 5621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 422 || _la === 568) { { - this.state = 5621; + this.state = 5620; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 422 || _la === 568)) { @@ -35578,14 +35573,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5624; + this.state = 5623; this.match(MySqlParser.OPTIMIZE); - this.state = 5626; + this.state = 5625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 474) { { - this.state = 5625; + this.state = 5624; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 474)) { @@ -35598,7 +35593,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5628; + this.state = 5627; _la = this.tokenStream.LA(1); if(!(_la === 172 || _la === 742)) { this.errorHandler.recoverInline(this); @@ -35607,7 +35602,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5629; + this.state = 5628; this.tables(); } } @@ -35632,14 +35627,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5631; + this.state = 5630; this.match(MySqlParser.REPAIR); - this.state = 5633; + this.state = 5632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 474) { { - this.state = 5632; + this.state = 5631; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 474)) { @@ -35652,36 +35647,36 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5635; + this.state = 5634; this.match(MySqlParser.TABLE); - this.state = 5636; + this.state = 5635; this.tables(); - this.state = 5638; + this.state = 5637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 568) { { - this.state = 5637; + this.state = 5636; this.match(MySqlParser.QUICK); } } - this.state = 5641; + this.state = 5640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 422) { { - this.state = 5640; + this.state = 5639; this.match(MySqlParser.EXTENDED); } } - this.state = 5644; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 666) { { - this.state = 5643; + this.state = 5642; this.match(MySqlParser.USE_FRM); } } @@ -35706,50 +35701,50 @@ export class MySqlParser extends antlr.Parser { let localContext = new CheckTableOptionContext(this.context, this.state); this.enterRule(localContext, 478, MySqlParser.RULE_checkTableOption); try { - this.state = 5653; + this.state = 5652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FOR: this.enterOuterAlt(localContext, 1); { - this.state = 5646; + this.state = 5645; this.match(MySqlParser.FOR); - this.state = 5647; + this.state = 5646; this.match(MySqlParser.UPGRADE); } break; case MySqlParser.QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 5648; + this.state = 5647; this.match(MySqlParser.QUICK); } break; case MySqlParser.FAST: this.enterOuterAlt(localContext, 3); { - this.state = 5649; + this.state = 5648; this.match(MySqlParser.FAST); } break; case MySqlParser.MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 5650; + this.state = 5649; this.match(MySqlParser.MEDIUM); } break; case MySqlParser.EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 5651; + this.state = 5650; this.match(MySqlParser.EXTENDED); } break; case MySqlParser.CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 5652; + this.state = 5651; this.match(MySqlParser.CHANGED); } break; @@ -35778,35 +35773,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5655; + this.state = 5654; this.match(MySqlParser.CREATE); - this.state = 5657; + this.state = 5656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 335) { { - this.state = 5656; + this.state = 5655; this.match(MySqlParser.AGGREGATE); } } - this.state = 5659; + this.state = 5658; this.match(MySqlParser.FUNCTION); - this.state = 5661; + this.state = 5660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 821, this.context) ) { case 1: { - this.state = 5660; + this.state = 5659; this.ifNotExists(); } break; } - this.state = 5663; + this.state = 5662; this.uid(); - this.state = 5664; + this.state = 5663; this.match(MySqlParser.RETURNS); - this.state = 5665; + this.state = 5664; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 261) !== 0) || _la === 638)) { @@ -35816,9 +35811,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5666; + this.state = 5665; this.match(MySqlParser.SONAME); - this.state = 5667; + this.state = 5666; this.match(MySqlParser.STRING_LITERAL); } } @@ -35842,15 +35837,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5669; + this.state = 5668; this.match(MySqlParser.INSTALL); - this.state = 5670; + this.state = 5669; this.match(MySqlParser.PLUGIN); - this.state = 5671; + this.state = 5670; this.uid(); - this.state = 5672; + this.state = 5671; this.match(MySqlParser.SONAME); - this.state = 5673; + this.state = 5672; this.match(MySqlParser.STRING_LITERAL); } } @@ -35874,11 +35869,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5675; + this.state = 5674; this.match(MySqlParser.UNINSTALL); - this.state = 5676; + this.state = 5675; this.match(MySqlParser.PLUGIN); - this.state = 5677; + this.state = 5676; this.uid(); } } @@ -35901,18 +35896,18 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 486, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 5731; + this.state = 5730; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5679; + this.state = 5678; this.match(MySqlParser.SET); - this.state = 5680; + this.state = 5679; this.variableClause(); - this.state = 5681; + this.state = 5680; _la = this.tokenStream.LA(1); if(!(_la === 1108 || _la === 1124)) { this.errorHandler.recoverInline(this); @@ -35921,33 +35916,33 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5684; + this.state = 5683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: { - this.state = 5682; + this.state = 5681; this.expression(0); } break; case 2: { - this.state = 5683; + this.state = 5682; this.match(MySqlParser.ON); } break; } - this.state = 5695; + this.state = 5694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5686; + this.state = 5685; this.match(MySqlParser.COMMA); - this.state = 5687; + this.state = 5686; this.variableClause(); - this.state = 5688; + this.state = 5687; _la = this.tokenStream.LA(1); if(!(_la === 1108 || _la === 1124)) { this.errorHandler.recoverInline(this); @@ -35956,25 +35951,25 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5691; + this.state = 5690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { case 1: { - this.state = 5689; + this.state = 5688; this.expression(0); } break; case 2: { - this.state = 5690; + this.state = 5689; this.match(MySqlParser.ON); } break; } } } - this.state = 5697; + this.state = 5696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35984,11 +35979,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5698; + this.state = 5697; this.match(MySqlParser.SET); - this.state = 5699; + this.state = 5698; this.charSet(); - this.state = 5702; + this.state = 5701; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.BINARY: @@ -36036,13 +36031,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 5700; + this.state = 5699; this.charsetName(); } break; case MySqlParser.DEFAULT: { - this.state = 5701; + this.state = 5700; this.match(MySqlParser.DEFAULT); } break; @@ -36055,11 +36050,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5704; + this.state = 5703; this.match(MySqlParser.SET); - this.state = 5705; + this.state = 5704; this.match(MySqlParser.NAMES); - this.state = 5712; + this.state = 5711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.BINARY: @@ -36107,16 +36102,16 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 5706; + this.state = 5705; this.charsetName(); - this.state = 5709; + this.state = 5708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 5707; + this.state = 5706; this.match(MySqlParser.COLLATE); - this.state = 5708; + this.state = 5707; this.collationName(); } } @@ -36125,7 +36120,7 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.DEFAULT: { - this.state = 5711; + this.state = 5710; this.match(MySqlParser.DEFAULT); } break; @@ -36138,7 +36133,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5714; + this.state = 5713; this.setPasswordStatement(); } break; @@ -36146,7 +36141,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5715; + this.state = 5714; this.setTransactionStatement(); } break; @@ -36154,7 +36149,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5716; + this.state = 5715; this.setAutocommitStatement(); } break; @@ -36162,11 +36157,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 5717; + this.state = 5716; this.match(MySqlParser.SET); - this.state = 5718; + this.state = 5717; this.fullId(); - this.state = 5719; + this.state = 5718; _la = this.tokenStream.LA(1); if(!(_la === 1108 || _la === 1124)) { this.errorHandler.recoverInline(this); @@ -36175,19 +36170,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5720; + this.state = 5719; this.expression(0); - this.state = 5728; + this.state = 5727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5721; + this.state = 5720; this.match(MySqlParser.COMMA); - this.state = 5722; + this.state = 5721; this.fullId(); - this.state = 5723; + this.state = 5722; _la = this.tokenStream.LA(1); if(!(_la === 1108 || _la === 1124)) { this.errorHandler.recoverInline(this); @@ -36196,11 +36191,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5724; + this.state = 5723; this.expression(0); } } - this.state = 5730; + this.state = 5729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36227,16 +36222,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 488, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 5886; + this.state = 5885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5733; + this.state = 5732; this.match(MySqlParser.SHOW); - this.state = 5734; + this.state = 5733; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 477)) { @@ -36246,7 +36241,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5735; + this.state = 5734; this.match(MySqlParser.LOGS); } break; @@ -36254,9 +36249,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5736; + this.state = 5735; this.match(MySqlParser.SHOW); - this.state = 5737; + this.state = 5736; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 345 || _la === 577)) { @@ -36266,52 +36261,52 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5738; + this.state = 5737; this.match(MySqlParser.EVENTS); - this.state = 5741; + this.state = 5740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5739; + this.state = 5738; this.match(MySqlParser.IN); - this.state = 5740; + this.state = 5739; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 5745; + this.state = 5744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 5743; + this.state = 5742; this.match(MySqlParser.FROM); - this.state = 5744; + this.state = 5743; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 5754; + this.state = 5753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 5747; + this.state = 5746; this.match(MySqlParser.LIMIT); - this.state = 5751; + this.state = 5750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { case 1: { - this.state = 5748; + this.state = 5747; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 5749; + this.state = 5748; this.match(MySqlParser.COMMA); } break; } - this.state = 5753; + this.state = 5752; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } @@ -36322,16 +36317,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5756; + this.state = 5755; this.match(MySqlParser.SHOW); - this.state = 5757; + this.state = 5756; this.showCommonEntity(); - this.state = 5759; + this.state = 5758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98 || _la === 190) { { - this.state = 5758; + this.state = 5757; this.showFilter(); } } @@ -36342,19 +36337,19 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5761; + this.state = 5760; this.match(MySqlParser.SHOW); - this.state = 5763; + this.state = 5762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 5762; + this.state = 5761; this.match(MySqlParser.FULL); } } - this.state = 5765; + this.state = 5764; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 365 || _la === 427)) { @@ -36364,7 +36359,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5766; + this.state = 5765; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36374,14 +36369,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5767; + this.state = 5766; this.tableName(); - this.state = 5770; + this.state = 5769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 5768; + this.state = 5767; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36391,17 +36386,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5769; + this.state = 5768; this.uid(); } } - this.state = 5773; + this.state = 5772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98 || _la === 190) { { - this.state = 5772; + this.state = 5771; this.showFilter(); } } @@ -36412,11 +36407,11 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5775; + this.state = 5774; this.match(MySqlParser.SHOW); - this.state = 5776; + this.state = 5775; this.match(MySqlParser.CREATE); - this.state = 5777; + this.state = 5776; (localContext as ShowCreateDbContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 150)) { @@ -36426,17 +36421,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5779; + this.state = 5778; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 5778; + this.state = 5777; this.ifNotExists(); } break; } - this.state = 5781; + this.state = 5780; this.uid(); } break; @@ -36444,11 +36439,11 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5782; + this.state = 5781; this.match(MySqlParser.SHOW); - this.state = 5783; + this.state = 5782; this.match(MySqlParser.CREATE); - this.state = 5784; + this.state = 5783; (localContext as ShowCreateFullIdObjectContext)._namedEntity = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 172 || _la === 177 || _la === 415 || _la === 437 || _la === 671)) { @@ -36458,7 +36453,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5785; + this.state = 5784; this.fullId(); } break; @@ -36466,13 +36461,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 5786; + this.state = 5785; this.match(MySqlParser.SHOW); - this.state = 5787; + this.state = 5786; this.match(MySqlParser.CREATE); - this.state = 5788; + this.state = 5787; this.match(MySqlParser.USER); - this.state = 5789; + this.state = 5788; this.userName(); } break; @@ -36480,13 +36475,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 5790; + this.state = 5789; this.match(MySqlParser.SHOW); - this.state = 5791; + this.state = 5790; this.match(MySqlParser.ENGINE); - this.state = 5792; + this.state = 5791; this.engineName(); - this.state = 5793; + this.state = 5792; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 513 || _la === 634)) { @@ -36502,9 +36497,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 5795; + this.state = 5794; this.match(MySqlParser.SHOW); - this.state = 5796; + this.state = 5795; this.showGlobalInfoClause(); } break; @@ -36512,9 +36507,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 5797; + this.state = 5796; this.match(MySqlParser.SHOW); - this.state = 5798; + this.state = 5797; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 675)) { @@ -36524,26 +36519,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5806; + this.state = 5805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 5799; + this.state = 5798; this.match(MySqlParser.LIMIT); - this.state = 5803; + this.state = 5802; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 5800; + this.state = 5799; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 5801; + this.state = 5800; this.match(MySqlParser.COMMA); } break; } - this.state = 5805; + this.state = 5804; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -36554,17 +36549,17 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 5808; + this.state = 5807; this.match(MySqlParser.SHOW); - this.state = 5809; + this.state = 5808; this.match(MySqlParser.COUNT); - this.state = 5810; + this.state = 5809; this.match(MySqlParser.LR_BRACKET); - this.state = 5811; + this.state = 5810; this.match(MySqlParser.STAR); - this.state = 5812; + this.state = 5811; this.match(MySqlParser.RR_BRACKET); - this.state = 5813; + this.state = 5812; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 675)) { @@ -36580,16 +36575,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 5814; + this.state = 5813; this.match(MySqlParser.SHOW); - this.state = 5815; + this.state = 5814; this.showSchemaEntity(); - this.state = 5818; + this.state = 5817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 5816; + this.state = 5815; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36599,17 +36594,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5817; + this.state = 5816; this.uid(); } } - this.state = 5821; + this.state = 5820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98 || _la === 190) { { - this.state = 5820; + this.state = 5819; this.showFilter(); } } @@ -36620,9 +36615,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowRoutineContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 5823; + this.state = 5822; this.match(MySqlParser.SHOW); - this.state = 5824; + this.state = 5823; (localContext as ShowRoutineContext)._routine = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 437)) { @@ -36632,9 +36627,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5825; + this.state = 5824; this.match(MySqlParser.CODE); - this.state = 5826; + this.state = 5825; this.fullId(); } break; @@ -36642,18 +36637,18 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 5827; + this.state = 5826; this.match(MySqlParser.SHOW); - this.state = 5828; + this.state = 5827; this.match(MySqlParser.GRANTS); - this.state = 5831; + this.state = 5830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5829; + this.state = 5828; this.match(MySqlParser.FOR); - this.state = 5830; + this.state = 5829; this.userName(); } } @@ -36664,9 +36659,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 5833; + this.state = 5832; this.match(MySqlParser.SHOW); - this.state = 5834; + this.state = 5833; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 92 || _la === 452)) { @@ -36676,7 +36671,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5835; + this.state = 5834; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36686,14 +36681,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5836; + this.state = 5835; this.tableName(); - this.state = 5839; + this.state = 5838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 5837; + this.state = 5836; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36703,19 +36698,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5838; + this.state = 5837; this.uid(); } } - this.state = 5843; + this.state = 5842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5841; + this.state = 5840; this.match(MySqlParser.WHERE); - this.state = 5842; + this.state = 5841; this.expression(0); } } @@ -36726,18 +36721,18 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 5845; + this.state = 5844; this.match(MySqlParser.SHOW); - this.state = 5846; + this.state = 5845; this.match(MySqlParser.OPEN); - this.state = 5847; + this.state = 5846; this.match(MySqlParser.TABLES); - this.state = 5850; + this.state = 5849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 5848; + this.state = 5847; (localContext as ShowOpenTablesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -36747,17 +36742,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5849; + this.state = 5848; this.uid(); } } - this.state = 5853; + this.state = 5852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98 || _la === 190) { { - this.state = 5852; + this.state = 5851; this.showFilter(); } } @@ -36768,58 +36763,58 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 5855; + this.state = 5854; this.match(MySqlParser.SHOW); - this.state = 5856; + this.state = 5855; this.match(MySqlParser.PROFILE); - this.state = 5857; + this.state = 5856; this.showProfileType(); - this.state = 5862; + this.state = 5861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5858; + this.state = 5857; this.match(MySqlParser.COMMA); - this.state = 5859; + this.state = 5858; this.showProfileType(); } } - this.state = 5864; + this.state = 5863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5868; + this.state = 5867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5865; + this.state = 5864; this.match(MySqlParser.FOR); - this.state = 5866; + this.state = 5865; this.match(MySqlParser.QUERY); - this.state = 5867; + this.state = 5866; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } { - this.state = 5870; + this.state = 5869; this.match(MySqlParser.LIMIT); - this.state = 5874; + this.state = 5873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 850, this.context) ) { case 1: { - this.state = 5871; + this.state = 5870; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); - this.state = 5872; + this.state = 5871; this.match(MySqlParser.COMMA); } break; } - this.state = 5876; + this.state = 5875; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); } } @@ -36828,22 +36823,22 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 5878; + this.state = 5877; this.match(MySqlParser.SHOW); - this.state = 5879; + this.state = 5878; this.match(MySqlParser.SLAVE); - this.state = 5880; + this.state = 5879; this.match(MySqlParser.STATUS); - this.state = 5884; + this.state = 5883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5881; + this.state = 5880; this.match(MySqlParser.FOR); - this.state = 5882; + this.state = 5881; this.match(MySqlParser.CHANNEL); - this.state = 5883; + this.state = 5882; this.match(MySqlParser.STRING_LITERAL); } } @@ -36871,20 +36866,20 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 490, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 5898; + this.state = 5897; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 5888; + this.state = 5887; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 5889; + this.state = 5888; this.match(MySqlParser.GLOBAL_ID); } break; @@ -37761,24 +37756,24 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 5895; + this.state = 5894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: { - this.state = 5892; + this.state = 5891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1137) { { - this.state = 5890; + this.state = 5889; this.match(MySqlParser.AT_SIGN); - this.state = 5891; + this.state = 5890; this.match(MySqlParser.AT_SIGN); } } - this.state = 5894; + this.state = 5893; _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 474 || _la === 609)) { this.errorHandler.recoverInline(this); @@ -37790,7 +37785,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 5897; + this.state = 5896; this.uid(); } break; @@ -37817,54 +37812,54 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 492, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 5913; + this.state = 5912; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 5900; + this.state = 5899; this.match(MySqlParser.CHARACTER); - this.state = 5901; + this.state = 5900; this.match(MySqlParser.SET); } break; case MySqlParser.COLLATION: this.enterOuterAlt(localContext, 2); { - this.state = 5902; + this.state = 5901; this.match(MySqlParser.COLLATION); } break; case MySqlParser.DATABASES: this.enterOuterAlt(localContext, 3); { - this.state = 5903; + this.state = 5902; this.match(MySqlParser.DATABASES); } break; case MySqlParser.SCHEMAS: this.enterOuterAlt(localContext, 4); { - this.state = 5904; + this.state = 5903; this.match(MySqlParser.SCHEMAS); } break; case MySqlParser.FUNCTION: this.enterOuterAlt(localContext, 5); { - this.state = 5905; + this.state = 5904; this.match(MySqlParser.FUNCTION); - this.state = 5906; + this.state = 5905; this.match(MySqlParser.STATUS); } break; case MySqlParser.PROCEDURE: this.enterOuterAlt(localContext, 6); { - this.state = 5907; + this.state = 5906; this.match(MySqlParser.PROCEDURE); - this.state = 5908; + this.state = 5907; this.match(MySqlParser.STATUS); } break; @@ -37874,12 +37869,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VARIABLES: this.enterOuterAlt(localContext, 7); { - this.state = 5910; + this.state = 5909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439 || _la === 609) { { - this.state = 5909; + this.state = 5908; _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 609)) { this.errorHandler.recoverInline(this); @@ -37891,7 +37886,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5912; + this.state = 5911; _la = this.tokenStream.LA(1); if(!(_la === 634 || _la === 670)) { this.errorHandler.recoverInline(this); @@ -37924,24 +37919,24 @@ export class MySqlParser extends antlr.Parser { let localContext = new ShowFilterContext(this.context, this.state); this.enterRule(localContext, 494, MySqlParser.RULE_showFilter); try { - this.state = 5919; + this.state = 5918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 5915; + this.state = 5914; this.match(MySqlParser.LIKE); - this.state = 5916; + this.state = 5915; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 5917; + this.state = 5916; this.match(MySqlParser.WHERE); - this.state = 5918; + this.state = 5917; this.expression(0); } break; @@ -37968,47 +37963,47 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 496, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 5938; + this.state = 5937; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ENGINES: case MySqlParser.STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 5922; + this.state = 5921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 636) { { - this.state = 5921; + this.state = 5920; this.match(MySqlParser.STORAGE); } } - this.state = 5924; + this.state = 5923; this.match(MySqlParser.ENGINES); } break; case MySqlParser.MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 5925; + this.state = 5924; this.match(MySqlParser.MASTER); - this.state = 5926; + this.state = 5925; this.match(MySqlParser.STATUS); } break; case MySqlParser.PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 5927; + this.state = 5926; this.match(MySqlParser.PLUGINS); } break; case MySqlParser.PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 5928; + this.state = 5927; this.match(MySqlParser.PRIVILEGES); } break; @@ -38016,47 +38011,47 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 5930; + this.state = 5929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 5929; + this.state = 5928; this.match(MySqlParser.FULL); } } - this.state = 5932; + this.state = 5931; this.match(MySqlParser.PROCESSLIST); } break; case MySqlParser.PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 5933; + this.state = 5932; this.match(MySqlParser.PROFILES); } break; case MySqlParser.SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 5934; + this.state = 5933; this.match(MySqlParser.SLAVE); - this.state = 5935; + this.state = 5934; this.match(MySqlParser.HOSTS); } break; case MySqlParser.AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 5936; + this.state = 5935; this.match(MySqlParser.AUTHORS); } break; case MySqlParser.CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 5937; + this.state = 5936; this.match(MySqlParser.CONTRIBUTORS); } break; @@ -38083,22 +38078,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 498, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 5948; + this.state = 5947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 5940; + this.state = 5939; this.match(MySqlParser.EVENTS); } break; case MySqlParser.TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 5941; + this.state = 5940; this.match(MySqlParser.TABLE); - this.state = 5942; + this.state = 5941; this.match(MySqlParser.STATUS); } break; @@ -38106,24 +38101,24 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 5944; + this.state = 5943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 5943; + this.state = 5942; this.match(MySqlParser.FULL); } } - this.state = 5946; + this.state = 5945; this.match(MySqlParser.TABLES); } break; case MySqlParser.TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 5947; + this.state = 5946; this.match(MySqlParser.TRIGGERS); } break; @@ -38149,75 +38144,75 @@ export class MySqlParser extends antlr.Parser { let localContext = new ShowProfileTypeContext(this.context, this.state); this.enterRule(localContext, 500, MySqlParser.RULE_showProfileType); try { - this.state = 5962; + this.state = 5961; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ALL: this.enterOuterAlt(localContext, 1); { - this.state = 5950; + this.state = 5949; this.match(MySqlParser.ALL); } break; case MySqlParser.BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 5951; + this.state = 5950; this.match(MySqlParser.BLOCK); - this.state = 5952; + this.state = 5951; this.match(MySqlParser.IO); } break; case MySqlParser.CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 5953; + this.state = 5952; this.match(MySqlParser.CONTEXT); - this.state = 5954; + this.state = 5953; this.match(MySqlParser.SWITCHES); } break; case MySqlParser.CPU: this.enterOuterAlt(localContext, 4); { - this.state = 5955; + this.state = 5954; this.match(MySqlParser.CPU); } break; case MySqlParser.IPC: this.enterOuterAlt(localContext, 5); { - this.state = 5956; + this.state = 5955; this.match(MySqlParser.IPC); } break; case MySqlParser.MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 5957; + this.state = 5956; this.match(MySqlParser.MEMORY); } break; case MySqlParser.PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 5958; + this.state = 5957; this.match(MySqlParser.PAGE); - this.state = 5959; + this.state = 5958; this.match(MySqlParser.FAULTS); } break; case MySqlParser.SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 5960; + this.state = 5959; this.match(MySqlParser.SOURCE); } break; case MySqlParser.SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 5961; + this.state = 5960; this.match(MySqlParser.SWAPS); } break; @@ -38245,9 +38240,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5964; + this.state = 5963; this.match(MySqlParser.BINLOG); - this.state = 5965; + this.state = 5964; this.match(MySqlParser.STRING_LITERAL); } } @@ -38272,38 +38267,38 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5967; + this.state = 5966; this.match(MySqlParser.CACHE); - this.state = 5968; + this.state = 5967; this.match(MySqlParser.INDEX); - this.state = 5969; + this.state = 5968; this.tableIndexes(); - this.state = 5974; + this.state = 5973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5970; + this.state = 5969; this.match(MySqlParser.COMMA); - this.state = 5971; + this.state = 5970; this.tableIndexes(); } } - this.state = 5976; + this.state = 5975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5984; + this.state = 5983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 5977; + this.state = 5976; this.match(MySqlParser.PARTITION); - this.state = 5978; + this.state = 5977; this.match(MySqlParser.LR_BRACKET); - this.state = 5981; + this.state = 5980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -39177,27 +39172,27 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 5979; + this.state = 5978; this.uidList(); } break; case MySqlParser.ALL: { - this.state = 5980; + this.state = 5979; this.match(MySqlParser.ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5983; + this.state = 5982; this.match(MySqlParser.RR_BRACKET); } } - this.state = 5986; + this.state = 5985; this.match(MySqlParser.IN); - this.state = 5987; + this.state = 5986; localContext._schema = this.uid(); } } @@ -39222,14 +39217,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5989; + this.state = 5988; this.match(MySqlParser.FLUSH); - this.state = 5991; + this.state = 5990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 474) { { - this.state = 5990; + this.state = 5989; localContext._flushFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 474)) { @@ -39242,21 +39237,21 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5993; + this.state = 5992; this.flushOption(); - this.state = 5998; + this.state = 5997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 5994; + this.state = 5993; this.match(MySqlParser.COMMA); - this.state = 5995; + this.state = 5994; this.flushOption(); } } - this.state = 6000; + this.state = 5999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39283,14 +39278,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6001; + this.state = 6000; this.match(MySqlParser.KILL); - this.state = 6003; + this.state = 6002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { case 1: { - this.state = 6002; + this.state = 6001; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 376 || _la === 567)) { @@ -39303,7 +39298,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6005; + this.state = 6004; this.expression(0); } } @@ -39328,29 +39323,29 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6007; + this.state = 6006; this.match(MySqlParser.LOAD); - this.state = 6008; + this.state = 6007; this.match(MySqlParser.INDEX); - this.state = 6009; + this.state = 6008; this.match(MySqlParser.INTO); - this.state = 6010; + this.state = 6009; this.match(MySqlParser.CACHE); - this.state = 6011; + this.state = 6010; this.loadedTableIndexes(); - this.state = 6016; + this.state = 6015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6012; + this.state = 6011; this.match(MySqlParser.COMMA); - this.state = 6013; + this.state = 6012; this.loadedTableIndexes(); } } - this.state = 6018; + this.state = 6017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39376,11 +39371,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6019; + this.state = 6018; this.match(MySqlParser.RESET); - this.state = 6020; + this.state = 6019; this.match(MySqlParser.QUERY); - this.state = 6021; + this.state = 6020; this.match(MySqlParser.CACHE); } } @@ -39404,7 +39399,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6023; + this.state = 6022; this.match(MySqlParser.SHUTDOWN); } } @@ -39429,19 +39424,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6025; + this.state = 6024; this.tableName(); - this.state = 6033; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91 || _la === 1133) { { - this.state = 6027; + this.state = 6026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 6026; + this.state = 6025; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -39454,11 +39449,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6029; + this.state = 6028; this.match(MySqlParser.LR_BRACKET); - this.state = 6030; + this.state = 6029; this.uidList(); - this.state = 6031; + this.state = 6030; this.match(MySqlParser.RR_BRACKET); } } @@ -39484,25 +39479,25 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 518, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6067; + this.state = 6066; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 880, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6053; + this.state = 6052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DES_KEY_FILE: { - this.state = 6035; + this.state = 6034; this.match(MySqlParser.DES_KEY_FILE); } break; case MySqlParser.HOSTS: { - this.state = 6036; + this.state = 6035; this.match(MySqlParser.HOSTS); } break; @@ -39514,12 +39509,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.RELAY: case MySqlParser.SLOW: { - this.state = 6038; + this.state = 6037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226 || ((((_la - 409)) & ~0x1F) === 0 && ((1 << (_la - 409)) & 536870917) !== 0) || _la === 574 || _la === 615) { { - this.state = 6037; + this.state = 6036; _la = this.tokenStream.LA(1); if(!(_la === 226 || ((((_la - 409)) & ~0x1F) === 0 && ((1 << (_la - 409)) & 536870917) !== 0) || _la === 574 || _la === 615)) { this.errorHandler.recoverInline(this); @@ -39531,56 +39526,56 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6040; + this.state = 6039; this.match(MySqlParser.LOGS); } break; case MySqlParser.OPTIMIZER_COSTS: { - this.state = 6041; + this.state = 6040; this.match(MySqlParser.OPTIMIZER_COSTS); } break; case MySqlParser.PRIVILEGES: { - this.state = 6042; + this.state = 6041; this.match(MySqlParser.PRIVILEGES); } break; case MySqlParser.QUERY: { - this.state = 6043; + this.state = 6042; this.match(MySqlParser.QUERY); - this.state = 6044; + this.state = 6043; this.match(MySqlParser.CACHE); } break; case MySqlParser.STATUS: { - this.state = 6045; + this.state = 6044; this.match(MySqlParser.STATUS); } break; case MySqlParser.USER_RESOURCES: { - this.state = 6046; + this.state = 6045; this.match(MySqlParser.USER_RESOURCES); } break; case MySqlParser.TABLES: { - this.state = 6047; + this.state = 6046; this.match(MySqlParser.TABLES); - this.state = 6051; + this.state = 6050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6048; + this.state = 6047; this.match(MySqlParser.WITH); - this.state = 6049; + this.state = 6048; this.match(MySqlParser.READ); - this.state = 6050; + this.state = 6049; this.match(MySqlParser.LOCK); } } @@ -39596,16 +39591,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6055; + this.state = 6054; this.match(MySqlParser.RELAY); - this.state = 6056; + this.state = 6055; this.match(MySqlParser.LOGS); - this.state = 6058; + this.state = 6057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6057; + this.state = 6056; this.channelOption(); } } @@ -39616,7 +39611,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6060; + this.state = 6059; _la = this.tokenStream.LA(1); if(!(_la === 172 || _la === 742)) { this.errorHandler.recoverInline(this); @@ -39625,22 +39620,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6062; + this.state = 6061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028437) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 18878545) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 2172657809) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 262401) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 5374495) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 4294967295) !== 0) || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 4294967231) !== 0) || ((((_la - 347)) & ~0x1F) === 0 && ((1 << (_la - 347)) & 4294967295) !== 0) || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 4127195007) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 4290772991) !== 0) || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 4294967039) !== 0) || ((((_la - 475)) & ~0x1F) === 0 && ((1 << (_la - 475)) & 4294967295) !== 0) || ((((_la - 507)) & ~0x1F) === 0 && ((1 << (_la - 507)) & 4294017023) !== 0) || ((((_la - 539)) & ~0x1F) === 0 && ((1 << (_la - 539)) & 4293918527) !== 0) || ((((_la - 571)) & ~0x1F) === 0 && ((1 << (_la - 571)) & 4290248703) !== 0) || ((((_la - 603)) & ~0x1F) === 0 && ((1 << (_la - 603)) & 4294967279) !== 0) || ((((_la - 635)) & ~0x1F) === 0 && ((1 << (_la - 635)) & 4294967291) !== 0) || ((((_la - 667)) & ~0x1F) === 0 && ((1 << (_la - 667)) & 2147417599) !== 0) || ((((_la - 699)) & ~0x1F) === 0 && ((1 << (_la - 699)) & 4293672959) !== 0) || ((((_la - 731)) & ~0x1F) === 0 && ((1 << (_la - 731)) & 4294967279) !== 0) || ((((_la - 763)) & ~0x1F) === 0 && ((1 << (_la - 763)) & 4294967295) !== 0) || ((((_la - 795)) & ~0x1F) === 0 && ((1 << (_la - 795)) & 4294965759) !== 0) || ((((_la - 827)) & ~0x1F) === 0 && ((1 << (_la - 827)) & 4294967295) !== 0) || ((((_la - 859)) & ~0x1F) === 0 && ((1 << (_la - 859)) & 4294967295) !== 0) || ((((_la - 891)) & ~0x1F) === 0 && ((1 << (_la - 891)) & 4294967295) !== 0) || ((((_la - 923)) & ~0x1F) === 0 && ((1 << (_la - 923)) & 4294967295) !== 0) || ((((_la - 955)) & ~0x1F) === 0 && ((1 << (_la - 955)) & 4294967295) !== 0) || ((((_la - 987)) & ~0x1F) === 0 && ((1 << (_la - 987)) & 4294967295) !== 0) || ((((_la - 1019)) & ~0x1F) === 0 && ((1 << (_la - 1019)) & 4294967295) !== 0) || ((((_la - 1051)) & ~0x1F) === 0 && ((1 << (_la - 1051)) & 4294967295) !== 0) || ((((_la - 1083)) & ~0x1F) === 0 && ((1 << (_la - 1083)) & 33554431) !== 0) || ((((_la - 1123)) & ~0x1F) === 0 && ((1 << (_la - 1123)) & 37748737) !== 0) || _la === 1156) { { - this.state = 6061; + this.state = 6060; this.tables(); } } - this.state = 6065; + this.state = 6064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 192) { { - this.state = 6064; + this.state = 6063; this.flushTableOption(); } } @@ -39667,26 +39662,26 @@ export class MySqlParser extends antlr.Parser { let localContext = new FlushTableOptionContext(this.context, this.state); this.enterRule(localContext, 520, MySqlParser.RULE_flushTableOption); try { - this.state = 6074; + this.state = 6073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6069; + this.state = 6068; this.match(MySqlParser.WITH); - this.state = 6070; + this.state = 6069; this.match(MySqlParser.READ); - this.state = 6071; + this.state = 6070; this.match(MySqlParser.LOCK); } break; case MySqlParser.FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6072; + this.state = 6071; this.match(MySqlParser.FOR); - this.state = 6073; + this.state = 6072; this.match(MySqlParser.EXPORT); } break; @@ -39715,18 +39710,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6076; + this.state = 6075; this.tableName(); - this.state = 6084; + this.state = 6083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 6077; + this.state = 6076; this.match(MySqlParser.PARTITION); - this.state = 6078; + this.state = 6077; this.match(MySqlParser.LR_BRACKET); - this.state = 6081; + this.state = 6080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -40600,35 +40595,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6079; + this.state = 6078; localContext._partitionList = this.uidList(); } break; case MySqlParser.ALL: { - this.state = 6080; + this.state = 6079; this.match(MySqlParser.ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6083; + this.state = 6082; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6093; + this.state = 6092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91 || _la === 1133) { { - this.state = 6087; + this.state = 6086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 91) { { - this.state = 6086; + this.state = 6085; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 91)) { @@ -40641,23 +40636,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6089; + this.state = 6088; this.match(MySqlParser.LR_BRACKET); - this.state = 6090; + this.state = 6089; localContext._indexList = this.uidList(); - this.state = 6091; + this.state = 6090; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6097; + this.state = 6096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 6095; + this.state = 6094; this.match(MySqlParser.IGNORE); - this.state = 6096; + this.state = 6095; this.match(MySqlParser.LEAVES); } } @@ -40685,7 +40680,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6099; + this.state = 6098; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -40695,20 +40690,20 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6100; + this.state = 6099; this.tableName(); - this.state = 6103; + this.state = 6102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { case 1: { - this.state = 6101; + this.state = 6100; localContext._column = this.uid(); } break; case 2: { - this.state = 6102; + this.state = 6101; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -40736,7 +40731,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6105; + this.state = 6104; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -40746,12 +40741,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6109; + this.state = 6108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 422 || _la === 550 || _la === 885) { { - this.state = 6106; + this.state = 6105; localContext._formatType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 422 || _la === 550 || _la === 885)) { @@ -40761,9 +40756,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6107; + this.state = 6106; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6108; + this.state = 6107; localContext._formatValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 466 || _la === 652)) { @@ -40776,7 +40771,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6111; + this.state = 6110; this.describeObjectClause(); } } @@ -40800,9 +40795,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6113; + this.state = 6112; this.match(MySqlParser.HELP); - this.state = 6114; + this.state = 6113; this.match(MySqlParser.STRING_LITERAL); } } @@ -40826,9 +40821,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6116; + this.state = 6115; this.match(MySqlParser.USE); - this.state = 6117; + this.state = 6116; this.uid(); } } @@ -40853,68 +40848,68 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6119; + this.state = 6118; this.match(MySqlParser.SIGNAL); - this.state = 6127; + this.state = 6126; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SQLSTATE: { { - this.state = 6120; + this.state = 6119; this.match(MySqlParser.SQLSTATE); - this.state = 6122; + this.state = 6121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 669) { { - this.state = 6121; + this.state = 6120; this.match(MySqlParser.VALUE); } } - this.state = 6124; + this.state = 6123; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6125; + this.state = 6124; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6126; + this.state = 6125; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6138; + this.state = 6137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153) { { - this.state = 6129; + this.state = 6128; this.match(MySqlParser.SET); - this.state = 6130; + this.state = 6129; this.signalConditionInformation(); - this.state = 6135; + this.state = 6134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6131; + this.state = 6130; this.match(MySqlParser.COMMA); - this.state = 6132; + this.state = 6131; this.signalConditionInformation(); } } - this.state = 6137; + this.state = 6136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40944,40 +40939,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6140; + this.state = 6139; this.match(MySqlParser.RESIGNAL); - this.state = 6148; + this.state = 6147; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SQLSTATE: { { - this.state = 6141; + this.state = 6140; this.match(MySqlParser.SQLSTATE); - this.state = 6143; + this.state = 6142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 669) { { - this.state = 6142; + this.state = 6141; this.match(MySqlParser.VALUE); } } - this.state = 6145; + this.state = 6144; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6146; + this.state = 6145; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6147; + this.state = 6146; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -40988,28 +40983,28 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 6159; + this.state = 6158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 153) { { - this.state = 6150; + this.state = 6149; this.match(MySqlParser.SET); - this.state = 6151; + this.state = 6150; this.signalConditionInformation(); - this.state = 6156; + this.state = 6155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6152; + this.state = 6151; this.match(MySqlParser.COMMA); - this.state = 6153; + this.state = 6152; this.signalConditionInformation(); } } - this.state = 6158; + this.state = 6157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41039,7 +41034,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6161; + this.state = 6160; _la = this.tokenStream.LA(1); if(!(((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 272105729) !== 0) || _la === 507 || _la === 515 || _la === 639 || _la === 646 || _la === 836 || _la === 1005)) { this.errorHandler.recoverInline(this); @@ -41048,29 +41043,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6162; + this.state = 6161; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6167; + this.state = 6166; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6163; + this.state = 6162; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6164; + this.state = 6163; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6165; + this.state = 6164; this.mysqlVariable(); } break; @@ -41943,7 +41938,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6166; + this.state = 6165; this.simpleId(); } break; @@ -41973,33 +41968,33 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6169; + this.state = 6168; this.match(MySqlParser.WITH); - this.state = 6171; + this.state = 6170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 898, this.context) ) { case 1: { - this.state = 6170; + this.state = 6169; this.match(MySqlParser.RECURSIVE); } break; } - this.state = 6173; + this.state = 6172; this.commonTableExpressions(); - this.state = 6178; + this.state = 6177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6174; + this.state = 6173; this.match(MySqlParser.COMMA); - this.state = 6175; + this.state = 6174; this.commonTableExpressions(); } } - this.state = 6180; + this.state = 6179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42026,26 +42021,26 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6181; + this.state = 6180; this.match(MySqlParser.TABLE); - this.state = 6182; + this.state = 6181; this.tableName(); - this.state = 6184; + this.state = 6183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 6183; + this.state = 6182; this.orderByClause(); } } - this.state = 6187; + this.state = 6186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99) { { - this.state = 6186; + this.state = 6185; this.limitClause(); } } @@ -42073,14 +42068,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6189; + this.state = 6188; this.match(MySqlParser.GET); - this.state = 6191; + this.state = 6190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 168) { { - this.state = 6190; + this.state = 6189; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 168)) { this.errorHandler.recoverInline(this); @@ -42092,19 +42087,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6193; + this.state = 6192; this.match(MySqlParser.DIAGNOSTICS); - this.state = 6225; + this.state = 6224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: { { - this.state = 6194; + this.state = 6193; this.variableClause(); - this.state = 6195; + this.state = 6194; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6196; + this.state = 6195; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 996)) { this.errorHandler.recoverInline(this); @@ -42113,19 +42108,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6204; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6197; + this.state = 6196; this.match(MySqlParser.COMMA); - this.state = 6198; + this.state = 6197; this.variableClause(); - this.state = 6199; + this.state = 6198; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6200; + this.state = 6199; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 996)) { this.errorHandler.recoverInline(this); @@ -42136,7 +42131,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6206; + this.state = 6205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42146,9 +42141,9 @@ export class MySqlParser extends antlr.Parser { case 2: { { - this.state = 6207; + this.state = 6206; this.match(MySqlParser.CONDITION); - this.state = 6210; + this.state = 6209; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -42157,7 +42152,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6208; + this.state = 6207; this.decimalLiteral(); } break; @@ -43035,36 +43030,36 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6209; + this.state = 6208; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6212; + this.state = 6211; this.variableClause(); - this.state = 6213; + this.state = 6212; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6214; + this.state = 6213; this.diagnosticsConditionInformationName(); - this.state = 6222; + this.state = 6221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6215; + this.state = 6214; this.match(MySqlParser.COMMA); - this.state = 6216; + this.state = 6215; this.variableClause(); - this.state = 6217; + this.state = 6216; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6218; + this.state = 6217; this.diagnosticsConditionInformationName(); } } - this.state = 6224; + this.state = 6223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43095,7 +43090,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6227; + this.state = 6226; _la = this.tokenStream.LA(1); if(!(((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 272105729) !== 0) || _la === 507 || _la === 515 || _la === 592 || _la === 639 || _la === 646 || _la === 836 || _la === 1005)) { this.errorHandler.recoverInline(this); @@ -43124,7 +43119,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new DescribeObjectClauseContext(this.context, this.state); this.enterRule(localContext, 546, MySqlParser.RULE_describeObjectClause); try { - this.state = 6239; + this.state = 6238; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DELETE: @@ -43136,37 +43131,37 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6234; + this.state = 6233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6229; + this.state = 6228; this.selectStatement(); } break; case MySqlParser.DELETE: { - this.state = 6230; + this.state = 6229; this.deleteStatement(); } break; case MySqlParser.INSERT: { - this.state = 6231; + this.state = 6230; this.insertStatement(); } break; case MySqlParser.REPLACE: { - this.state = 6232; + this.state = 6231; this.replaceStatement(); } break; case MySqlParser.UPDATE: { - this.state = 6233; + this.state = 6232; this.updateStatement(); } break; @@ -43179,11 +43174,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6236; + this.state = 6235; this.match(MySqlParser.FOR); - this.state = 6237; + this.state = 6236; this.match(MySqlParser.CONNECTION); - this.state = 6238; + this.state = 6237; this.uid(); } break; @@ -43211,22 +43206,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6241; + this.state = 6240; this.uid(); - this.state = 6245; + this.state = 6244; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6242; + this.state = 6241; this.match(MySqlParser.DOT_ID); } break; case 2: { - this.state = 6243; + this.state = 6242; this.match(MySqlParser.DOT); - this.state = 6244; + this.state = 6243; this.uid(); } break; @@ -43253,7 +43248,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6247; + this.state = 6246; this.fullId(); } } @@ -43278,21 +43273,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6249; + this.state = 6248; this.tableName(); - this.state = 6254; + this.state = 6253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6250; + this.state = 6249; this.match(MySqlParser.COMMA); - this.state = 6251; + this.state = 6250; this.tableName(); } } - this.state = 6256; + this.state = 6255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43316,20 +43311,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new RoleNameContext(this.context, this.state); this.enterRule(localContext, 554, MySqlParser.RULE_roleName); try { - this.state = 6259; + this.state = 6258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6257; + this.state = 6256; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6258; + this.state = 6257; this.uid(); } break; @@ -43353,27 +43348,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new FullColumnNameContext(this.context, this.state); this.enterRule(localContext, 556, MySqlParser.RULE_fullColumnName); try { - this.state = 6275; + this.state = 6274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6261; + this.state = 6260; this.uid(); - this.state = 6266; + this.state = 6265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 6262; + this.state = 6261; this.dottedId(); - this.state = 6264; + this.state = 6263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { case 1: { - this.state = 6263; + this.state = 6262; this.dottedId(); } break; @@ -43386,24 +43381,24 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6269; + this.state = 6268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6268; + this.state = 6267; this.matchWildcard(); } break; } - this.state = 6271; + this.state = 6270; this.dottedId(); - this.state = 6273; + this.state = 6272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { case 1: { - this.state = 6272; + this.state = 6271; this.dottedId(); } break; @@ -43433,37 +43428,37 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6288; + this.state = 6287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6279; + this.state = 6278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6277; + this.state = 6276; this.uid(); } break; case 2: { - this.state = 6278; + this.state = 6277; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 6285; + this.state = 6284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 6281; + this.state = 6280; this.match(MySqlParser.LR_BRACKET); - this.state = 6282; + this.state = 6281; this.decimalLiteral(); - this.state = 6283; + this.state = 6282; this.match(MySqlParser.RR_BRACKET); } } @@ -43472,17 +43467,17 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 6287; + this.state = 6286; this.expression(0); } break; } - this.state = 6291; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 45) { { - this.state = 6290; + this.state = 6289; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 45)) { @@ -43515,34 +43510,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new SimpleUserNameContext(this.context, this.state); this.enterRule(localContext, 560, MySqlParser.RULE_simpleUserName); try { - this.state = 6297; + this.state = 6296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6293; + this.state = 6292; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6294; + this.state = 6293; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6295; + this.state = 6294; this.match(MySqlParser.ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6296; + this.state = 6295; this.keywordsCanBeId(); } break; @@ -43569,7 +43564,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6299; + this.state = 6298; _la = this.tokenStream.LA(1); if(!(((((_la - 1137)) & ~0x1F) === 0 && ((1 << (_la - 1137)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -43598,29 +43593,29 @@ export class MySqlParser extends antlr.Parser { let localContext = new UserNameContext(this.context, this.state); this.enterRule(localContext, 564, MySqlParser.RULE_userName); try { - this.state = 6306; + this.state = 6305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6301; + this.state = 6300; this.simpleUserName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6302; + this.state = 6301; this.simpleUserName(); - this.state = 6303; + this.state = 6302; this.hostName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6305; + this.state = 6304; this.currentUserExpression(); } break; @@ -43647,7 +43642,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6308; + this.state = 6307; _la = this.tokenStream.LA(1); if(!(_la === 1159 || _la === 1160)) { this.errorHandler.recoverInline(this); @@ -43676,34 +43671,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new CharsetNameContext(this.context, this.state); this.enterRule(localContext, 568, MySqlParser.RULE_charsetName); try { - this.state = 6314; + this.state = 6313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6310; + this.state = 6309; this.match(MySqlParser.BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6311; + this.state = 6310; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6312; + this.state = 6311; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6313; + this.state = 6312; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -43727,20 +43722,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new CollationNameContext(this.context, this.state); this.enterRule(localContext, 570, MySqlParser.RULE_collationName); try { - this.state = 6318; + this.state = 6317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6316; + this.state = 6315; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6317; + this.state = 6316; this.match(MySqlParser.STRING_LITERAL); } break; @@ -43764,7 +43759,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new EngineNameContext(this.context, this.state); this.enterRule(localContext, 572, MySqlParser.RULE_engineName); try { - this.state = 6323; + this.state = 6322; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CONNECT: @@ -43782,21 +43777,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 6320; + this.state = 6319; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 6321; + this.state = 6320; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6322; + this.state = 6321; this.match(MySqlParser.STRING_LITERAL); } break; @@ -43825,7 +43820,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6325; + this.state = 6324; _la = this.tokenStream.LA(1); if(!(_la === 375 || ((((_la - 787)) & ~0x1F) === 0 && ((1 << (_la - 787)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -43857,41 +43852,41 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6327; + this.state = 6326; this.decimalLiteral(); - this.state = 6328; + this.state = 6327; this.match(MySqlParser.MINUS); - this.state = 6329; + this.state = 6328; this.decimalLiteral(); - this.state = 6330; + this.state = 6329; this.match(MySqlParser.MINUS); - this.state = 6331; + this.state = 6330; this.decimalLiteral(); - this.state = 6332; + this.state = 6331; this.match(MySqlParser.MINUS); - this.state = 6333; + this.state = 6332; this.decimalLiteral(); - this.state = 6334; + this.state = 6333; this.match(MySqlParser.MINUS); - this.state = 6335; + this.state = 6334; this.decimalLiteral(); - this.state = 6341; + this.state = 6340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6336; + this.state = 6335; this.match(MySqlParser.COLON_SYMB); - this.state = 6337; + this.state = 6336; this.decimalLiteral(); - this.state = 6338; + this.state = 6337; this.match(MySqlParser.MINUS); - this.state = 6339; + this.state = 6338; this.decimalLiteral(); } } - this.state = 6343; + this.state = 6342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 1144); @@ -43918,25 +43913,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6345; + this.state = 6344; localContext._globalTableUid = this.xuidStringId(); - this.state = 6352; + this.state = 6351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 6346; + this.state = 6345; this.match(MySqlParser.COMMA); - this.state = 6347; + this.state = 6346; localContext._qualifier = this.xuidStringId(); - this.state = 6350; + this.state = 6349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 6348; + this.state = 6347; this.match(MySqlParser.COMMA); - this.state = 6349; + this.state = 6348; localContext._idFormat = this.decimalLiteral(); } } @@ -43965,37 +43960,37 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 580, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 6361; + this.state = 6360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 6354; + this.state = 6353; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 6355; + this.state = 6354; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6357; + this.state = 6356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6356; + this.state = 6355; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 6359; + this.state = 6358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 1150); @@ -44023,20 +44018,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new AuthPluginContext(this.context, this.state); this.enterRule(localContext, 582, MySqlParser.RULE_authPlugin); try { - this.state = 6365; + this.state = 6364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6363; + this.state = 6362; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6364; + this.state = 6363; this.match(MySqlParser.STRING_LITERAL); } break; @@ -44060,7 +44055,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new UidContext(this.context, this.state); this.enterRule(localContext, 584, MySqlParser.RULE_uid); try { - this.state = 6370; + this.state = 6369; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ARRAY: @@ -44933,21 +44928,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 6367; + this.state = 6366; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 6368; + this.state = 6367; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6369; + this.state = 6368; this.match(MySqlParser.STRING_LITERAL); } break; @@ -44973,69 +44968,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new SimpleIdContext(this.context, this.state); this.enterRule(localContext, 586, MySqlParser.RULE_simpleId); try { - this.state = 6381; + this.state = 6380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6372; + this.state = 6371; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6373; + this.state = 6372; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6374; + this.state = 6373; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6375; + this.state = 6374; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6376; + this.state = 6375; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6377; + this.state = 6376; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6378; + this.state = 6377; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6379; + this.state = 6378; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6380; + this.state = 6379; this.scalarFunctionName(); } break; @@ -45059,22 +45054,22 @@ export class MySqlParser extends antlr.Parser { let localContext = new DottedIdContext(this.context, this.state); this.enterRule(localContext, 588, MySqlParser.RULE_dottedId); try { - this.state = 6386; + this.state = 6385; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DOT_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6383; + this.state = 6382; this.match(MySqlParser.DOT_ID); } break; case MySqlParser.DOT: this.enterOuterAlt(localContext, 2); { - this.state = 6384; + this.state = 6383; this.match(MySqlParser.DOT); - this.state = 6385; + this.state = 6384; this.uid(); } break; @@ -45103,7 +45098,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6388; + this.state = 6387; _la = this.tokenStream.LA(1); if(!(((((_la - 1138)) & ~0x1F) === 0 && ((1 << (_la - 1138)) & 10247) !== 0))) { this.errorHandler.recoverInline(this); @@ -45132,13 +45127,13 @@ export class MySqlParser extends antlr.Parser { let localContext = new FileSizeLiteralContext(this.context, this.state); this.enterRule(localContext, 592, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 6392; + this.state = 6391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 6390; + this.state = 6389; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -45149,7 +45144,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 6391; + this.state = 6390; this.decimalLiteral(); } break; @@ -45177,42 +45172,42 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 6417; + this.state = 6416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6399; + this.state = 6398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6395; + this.state = 6394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1154) { { - this.state = 6394; + this.state = 6393; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 6397; + this.state = 6396; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 6398; + this.state = 6397; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6402; + this.state = 6401; this.errorHandler.sync(this); alternative = 1; do { @@ -45220,7 +45215,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 6401; + this.state = 6400; this.match(MySqlParser.STRING_LITERAL); } } @@ -45228,7 +45223,7 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6404; + this.state = 6403; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 938, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -45237,43 +45232,43 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6411; + this.state = 6410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6407; + this.state = 6406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1154) { { - this.state = 6406; + this.state = 6405; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 6409; + this.state = 6408; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 6410; + this.state = 6409; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6415; + this.state = 6414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 941, this.context) ) { case 1: { - this.state = 6413; + this.state = 6412; this.match(MySqlParser.COLLATE); - this.state = 6414; + this.state = 6413; this.collationName(); } break; @@ -45303,7 +45298,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6419; + this.state = 6418; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 178)) { this.errorHandler.recoverInline(this); @@ -45335,17 +45330,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6422; + this.state = 6421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1154) { { - this.state = 6421; + this.state = 6420; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 6424; + this.state = 6423; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -45370,17 +45365,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6427; + this.state = 6426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 6426; + this.state = 6425; this.match(MySqlParser.NOT); } } - this.state = 6429; + this.state = 6428; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 1152)) { this.errorHandler.recoverInline(this); @@ -45410,74 +45405,74 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 602, MySqlParser.RULE_constant); let _la: number; try { - this.state = 6443; + this.state = 6442; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6431; + this.state = 6430; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6432; + this.state = 6431; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6433; + this.state = 6432; this.match(MySqlParser.MINUS); - this.state = 6434; + this.state = 6433; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6435; + this.state = 6434; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6436; + this.state = 6435; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6437; + this.state = 6436; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6438; + this.state = 6437; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6440; + this.state = 6439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 6439; + this.state = 6438; this.match(MySqlParser.NOT); } } - this.state = 6442; + this.state = 6441; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 1152)) { @@ -45511,14 +45506,14 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 6571; + this.state = 6570; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6445; + this.state = 6444; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 25 || ((((_la - 222)) & ~0x1F) === 0 && ((1 << (_la - 222)) & 31239) !== 0) || _la === 518)) { @@ -45528,62 +45523,62 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6447; + this.state = 6446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 6446; + this.state = 6445; this.match(MySqlParser.VARYING); } } - this.state = 6450; + this.state = 6449; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { case 1: { - this.state = 6449; + this.state = 6448; this.lengthOneDimension(); } break; } - this.state = 6453; + this.state = 6452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: { - this.state = 6452; + this.state = 6451; this.match(MySqlParser.BINARY); } break; } - this.state = 6458; + this.state = 6457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 6455; + this.state = 6454; this.charSet(); - this.state = 6456; + this.state = 6455; this.charsetName(); } break; } - this.state = 6463; + this.state = 6462; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { case 1: { - this.state = 6460; + this.state = 6459; this.match(MySqlParser.COLLATE); - this.state = 6461; + this.state = 6460; this.collationName(); } break; case 2: { - this.state = 6462; + this.state = 6461; this.match(MySqlParser.BINARY); } break; @@ -45594,9 +45589,9 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6465; + this.state = 6464; this.match(MySqlParser.NATIONAL); - this.state = 6466; + this.state = 6465; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 25 || _la === 222)) { @@ -45606,24 +45601,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6467; + this.state = 6466; this.match(MySqlParser.VARYING); - this.state = 6469; + this.state = 6468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: { - this.state = 6468; + this.state = 6467; this.lengthOneDimension(); } break; } - this.state = 6472; + this.state = 6471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 6471; + this.state = 6470; this.match(MySqlParser.BINARY); } break; @@ -45634,9 +45629,9 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6474; + this.state = 6473; this.match(MySqlParser.NATIONAL); - this.state = 6475; + this.state = 6474; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 25 || _la === 222 || _la === 223)) { @@ -45646,22 +45641,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6477; + this.state = 6476; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { case 1: { - this.state = 6476; + this.state = 6475; this.lengthOneDimension(); } break; } - this.state = 6480; + this.state = 6479; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6479; + this.state = 6478; this.match(MySqlParser.BINARY); } break; @@ -45672,26 +45667,26 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6482; + this.state = 6481; this.match(MySqlParser.NCHAR); - this.state = 6483; + this.state = 6482; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.VARCHAR); - this.state = 6485; + this.state = 6484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { case 1: { - this.state = 6484; + this.state = 6483; this.lengthOneDimension(); } break; } - this.state = 6488; + this.state = 6487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { case 1: { - this.state = 6487; + this.state = 6486; this.match(MySqlParser.BINARY); } break; @@ -45702,7 +45697,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6490; + this.state = 6489; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 4095) !== 0))) { @@ -45712,24 +45707,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6492; + this.state = 6491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 958, this.context) ) { case 1: { - this.state = 6491; + this.state = 6490; this.lengthOneDimension(); } break; } - this.state = 6497; + this.state = 6496; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 959, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6494; + this.state = 6493; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 195 || _la === 612)) { this.errorHandler.recoverInline(this); @@ -45741,7 +45736,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6499; + this.state = 6498; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 959, this.context); } @@ -45751,26 +45746,26 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6500; + this.state = 6499; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.REAL); - this.state = 6502; + this.state = 6501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6501; + this.state = 6500; this.lengthTwoDimension(); } break; } - this.state = 6507; + this.state = 6506; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 961, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6504; + this.state = 6503; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 195 || _la === 612)) { this.errorHandler.recoverInline(this); @@ -45782,7 +45777,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6509; + this.state = 6508; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 961, this.context); } @@ -45792,36 +45787,36 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6510; + this.state = 6509; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.DOUBLE); - this.state = 6512; + this.state = 6511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 6511; + this.state = 6510; this.match(MySqlParser.PRECISION); } } - this.state = 6515; + this.state = 6514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { case 1: { - this.state = 6514; + this.state = 6513; this.lengthTwoDimension(); } break; } - this.state = 6520; + this.state = 6519; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 964, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6517; + this.state = 6516; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 195 || _la === 612)) { this.errorHandler.recoverInline(this); @@ -45833,7 +45828,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6522; + this.state = 6521; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 964, this.context); } @@ -45843,7 +45838,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6523; + this.state = 6522; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 211)) & ~0x1F) === 0 && ((1 << (_la - 211)) & 63) !== 0) || _la === 431)) { @@ -45853,24 +45848,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6525; + this.state = 6524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { - this.state = 6524; + this.state = 6523; this.lengthTwoOptionalDimension(); } break; } - this.state = 6530; + this.state = 6529; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6527; + this.state = 6526; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 195 || _la === 612)) { this.errorHandler.recoverInline(this); @@ -45882,7 +45877,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6532; + this.state = 6531; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -45892,7 +45887,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6533; + this.state = 6532; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 4237313) !== 0) || _la === 348 || _la === 349)) { @@ -45908,7 +45903,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6534; + this.state = 6533; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & 2831) !== 0) || _la === 346)) { @@ -45918,12 +45913,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6536; + this.state = 6535; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { case 1: { - this.state = 6535; + this.state = 6534; this.lengthOneDimension(); } break; @@ -45934,7 +45929,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6538; + this.state = 6537; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 153 || _la === 237)) { @@ -45944,26 +45939,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6539; + this.state = 6538; this.collectionOptions(); - this.state = 6541; + this.state = 6540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 6540; + this.state = 6539; this.match(MySqlParser.BINARY); } break; } - this.state = 6546; + this.state = 6545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { case 1: { - this.state = 6543; + this.state = 6542; this.charSet(); - this.state = 6544; + this.state = 6543; this.charsetName(); } break; @@ -45974,7 +45969,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6548; + this.state = 6547; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 466 || ((((_la - 803)) & ~0x1F) === 0 && ((1 << (_la - 803)) & 511) !== 0))) { @@ -45984,14 +45979,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6551; + this.state = 6550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { case 1: { - this.state = 6549; + this.state = 6548; this.match(MySqlParser.SRID); - this.state = 6550; + this.state = 6549; this.decimalLiteral(); } break; @@ -46002,48 +45997,48 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6553; + this.state = 6552; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.LONG); - this.state = 6555; + this.state = 6554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 223) { { - this.state = 6554; + this.state = 6553; this.match(MySqlParser.VARCHAR); } } - this.state = 6558; + this.state = 6557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 6557; + this.state = 6556; this.match(MySqlParser.BINARY); } break; } - this.state = 6563; + this.state = 6562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 6560; + this.state = 6559; this.charSet(); - this.state = 6561; + this.state = 6560; this.charsetName(); } break; } - this.state = 6567; + this.state = 6566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 6565; + this.state = 6564; this.match(MySqlParser.COLLATE); - this.state = 6566; + this.state = 6565; this.collationName(); } break; @@ -46054,9 +46049,9 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6569; + this.state = 6568; this.match(MySqlParser.LONG); - this.state = 6570; + this.state = 6569; this.match(MySqlParser.VARBINARY); } break; @@ -46083,27 +46078,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6572; this.match(MySqlParser.LR_BRACKET); - this.state = 6574; + this.state = 6573; this.match(MySqlParser.STRING_LITERAL); - this.state = 6579; + this.state = 6578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6575; + this.state = 6574; this.match(MySqlParser.COMMA); - this.state = 6576; + this.state = 6575; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6581; + this.state = 6580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6582; + this.state = 6581; this.match(MySqlParser.RR_BRACKET); } } @@ -46128,14 +46123,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6606; + this.state = 6605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FLOAT: case MySqlParser.BINARY: case MySqlParser.NCHAR: { - this.state = 6584; + this.state = 6583; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 226 || _la === 518)) { @@ -46145,12 +46140,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6586; + this.state = 6585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 6585; + this.state = 6584; this.lengthOneDimension(); } } @@ -46159,26 +46154,26 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.CHAR: { - this.state = 6588; + this.state = 6587; localContext._typeName = this.match(MySqlParser.CHAR); - this.state = 6590; + this.state = 6589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 6589; + this.state = 6588; this.lengthOneDimension(); } } - this.state = 6595; + this.state = 6594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25 || _la === 222 || _la === 841) { { - this.state = 6592; + this.state = 6591; this.charSet(); - this.state = 6593; + this.state = 6592; this.charsetName(); } } @@ -46194,7 +46189,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.YEAR: case MySqlParser.JSON: { - this.state = 6597; + this.state = 6596; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 3539521) !== 0) || _la === 466)) { @@ -46209,7 +46204,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL: case MySqlParser.DEC: { - this.state = 6598; + this.state = 6597; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 215)) { @@ -46219,12 +46214,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6600; + this.state = 6599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 6599; + this.state = 6598; this.lengthTwoOptionalDimension(); } } @@ -46234,7 +46229,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.UNSIGNED: case MySqlParser.SIGNED: { - this.state = 6602; + this.state = 6601; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 612)) { this.errorHandler.recoverInline(this); @@ -46243,12 +46238,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6604; + this.state = 6603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 200 || _la === 206) { { - this.state = 6603; + this.state = 6602; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -46265,12 +46260,12 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6609; + this.state = 6608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 6608; + this.state = 6607; this.match(MySqlParser.ARRAY); } } @@ -46297,11 +46292,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6611; + this.state = 6610; this.match(MySqlParser.LR_BRACKET); - this.state = 6612; + this.state = 6611; this.decimalLiteral(); - this.state = 6613; + this.state = 6612; this.match(MySqlParser.RR_BRACKET); } } @@ -46325,15 +46320,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6615; + this.state = 6614; this.match(MySqlParser.LR_BRACKET); - this.state = 6616; + this.state = 6615; this.decimalLiteral(); - this.state = 6617; + this.state = 6616; this.match(MySqlParser.COMMA); - this.state = 6618; + this.state = 6617; this.decimalLiteral(); - this.state = 6619; + this.state = 6618; this.match(MySqlParser.RR_BRACKET); } } @@ -46358,23 +46353,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6621; + this.state = 6620; this.match(MySqlParser.LR_BRACKET); - this.state = 6622; + this.state = 6621; this.decimalLiteral(); - this.state = 6625; + this.state = 6624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 6623; + this.state = 6622; this.match(MySqlParser.COMMA); - this.state = 6624; + this.state = 6623; this.decimalLiteral(); } } - this.state = 6627; + this.state = 6626; this.match(MySqlParser.RR_BRACKET); } } @@ -46399,23 +46394,23 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6629; + this.state = 6628; this.uid(); - this.state = 6634; + this.state = 6633; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6630; + this.state = 6629; this.match(MySqlParser.COMMA); - this.state = 6631; + this.state = 6630; this.uid(); } } } - this.state = 6636; + this.state = 6635; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); } @@ -46442,21 +46437,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6637; + this.state = 6636; this.fullColumnName(); - this.state = 6642; + this.state = 6641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6638; + this.state = 6637; this.match(MySqlParser.COMMA); - this.state = 6639; + this.state = 6638; this.fullColumnName(); } } - this.state = 6644; + this.state = 6643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46483,23 +46478,23 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6645; + this.state = 6644; this.tableName(); - this.state = 6650; + this.state = 6649; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6646; + this.state = 6645; this.match(MySqlParser.COMMA); - this.state = 6647; + this.state = 6646; this.tableName(); } } } - this.state = 6652; + this.state = 6651; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); } @@ -46526,27 +46521,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6653; + this.state = 6652; this.match(MySqlParser.LR_BRACKET); - this.state = 6654; + this.state = 6653; this.indexColumnName(); - this.state = 6659; + this.state = 6658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6655; + this.state = 6654; this.match(MySqlParser.COMMA); - this.state = 6656; + this.state = 6655; this.indexColumnName(); } } - this.state = 6661; + this.state = 6660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6662; + this.state = 6661; this.match(MySqlParser.RR_BRACKET); } } @@ -46571,21 +46566,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6664; + this.state = 6663; this.expression(0); - this.state = 6669; + this.state = 6668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6665; + this.state = 6664; this.match(MySqlParser.COMMA); - this.state = 6666; + this.state = 6665; this.expression(0); } } - this.state = 6671; + this.state = 6670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46612,21 +46607,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6672; + this.state = 6671; this.expressionOrDefault(); - this.state = 6677; + this.state = 6676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6673; + this.state = 6672; this.match(MySqlParser.COMMA); - this.state = 6674; + this.state = 6673; this.expressionOrDefault(); } } - this.state = 6679; + this.state = 6678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46653,21 +46648,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6680; + this.state = 6679; this.constant(); - this.state = 6685; + this.state = 6684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6681; + this.state = 6680; this.match(MySqlParser.COMMA); - this.state = 6682; + this.state = 6681; this.constant(); } } - this.state = 6687; + this.state = 6686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46694,21 +46689,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6688; + this.state = 6687; this.match(MySqlParser.STRING_LITERAL); - this.state = 6693; + this.state = 6692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6689; + this.state = 6688; this.match(MySqlParser.COMMA); - this.state = 6690; + this.state = 6689; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6695; + this.state = 6694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46735,21 +46730,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6696; + this.state = 6695; this.match(MySqlParser.LOCAL_ID); - this.state = 6701; + this.state = 6700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6697; + this.state = 6696; this.match(MySqlParser.COMMA); - this.state = 6698; + this.state = 6697; this.match(MySqlParser.LOCAL_ID); } } - this.state = 6703; + this.state = 6702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46773,65 +46768,65 @@ export class MySqlParser extends antlr.Parser { let localContext = new DefaultValueContext(this.context, this.state); this.enterRule(localContext, 634, MySqlParser.RULE_defaultValue); try { - this.state = 6730; + this.state = 6729; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6704; + this.state = 6703; this.match(MySqlParser.NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6705; + this.state = 6704; this.match(MySqlParser.CAST); - this.state = 6706; + this.state = 6705; this.match(MySqlParser.LR_BRACKET); - this.state = 6707; + this.state = 6706; this.expression(0); - this.state = 6708; + this.state = 6707; this.match(MySqlParser.AS); - this.state = 6709; + this.state = 6708; this.convertedDataType(); - this.state = 6710; + this.state = 6709; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6713; + this.state = 6712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { case 1: { - this.state = 6712; + this.state = 6711; this.unaryOperator(); } break; } - this.state = 6715; + this.state = 6714; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6716; + this.state = 6715; this.currentTimestamp(); - this.state = 6720; + this.state = 6719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: { - this.state = 6717; + this.state = 6716; this.match(MySqlParser.ON); - this.state = 6718; + this.state = 6717; this.match(MySqlParser.UPDATE); - this.state = 6719; + this.state = 6718; this.currentTimestamp(); } break; @@ -46841,22 +46836,22 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6722; + this.state = 6721; this.match(MySqlParser.LR_BRACKET); - this.state = 6723; + this.state = 6722; this.expression(0); - this.state = 6724; + this.state = 6723; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6726; + this.state = 6725; this.match(MySqlParser.LR_BRACKET); - this.state = 6727; + this.state = 6726; this.fullId(); - this.state = 6728; + this.state = 6727; this.match(MySqlParser.RR_BRACKET); } break; @@ -46883,14 +46878,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6746; + this.state = 6745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.CURRENT_TIMESTAMP: case MySqlParser.LOCALTIME: case MySqlParser.LOCALTIMESTAMP: { - this.state = 6732; + this.state = 6731; _la = this.tokenStream.LA(1); if(!(((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -46899,24 +46894,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6738; + this.state = 6737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1133) { { - this.state = 6733; + this.state = 6732; this.match(MySqlParser.LR_BRACKET); - this.state = 6735; + this.state = 6734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 1138)) & ~0x1F) === 0 && ((1 << (_la - 1138)) & 10247) !== 0)) { { - this.state = 6734; + this.state = 6733; this.decimalLiteral(); } } - this.state = 6737; + this.state = 6736; this.match(MySqlParser.RR_BRACKET); } } @@ -46925,21 +46920,21 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.NOW: { - this.state = 6740; + this.state = 6739; this.match(MySqlParser.NOW); - this.state = 6741; + this.state = 6740; this.match(MySqlParser.LR_BRACKET); - this.state = 6743; + this.state = 6742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 1138)) & ~0x1F) === 0 && ((1 << (_la - 1138)) & 10247) !== 0)) { { - this.state = 6742; + this.state = 6741; this.decimalLiteral(); } } - this.state = 6745; + this.state = 6744; this.match(MySqlParser.RR_BRACKET); } break; @@ -46966,20 +46961,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new ExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 638, MySqlParser.RULE_expressionOrDefault); try { - this.state = 6750; + this.state = 6749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6748; + this.state = 6747; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6749; + this.state = 6748; this.match(MySqlParser.DEFAULT); } break; @@ -47005,9 +47000,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6752; + this.state = 6751; this.match(MySqlParser.IF); - this.state = 6753; + this.state = 6752; this.match(MySqlParser.EXISTS); } } @@ -47031,11 +47026,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6755; + this.state = 6754; this.match(MySqlParser.IF); - this.state = 6756; + this.state = 6755; this.match(MySqlParser.NOT); - this.state = 6757; + this.state = 6756; this.match(MySqlParser.EXISTS); } } @@ -47059,9 +47054,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6759; + this.state = 6758; this.match(MySqlParser.OR); - this.state = 6760; + this.state = 6759; this.match(MySqlParser.REPLACE); } } @@ -47083,22 +47078,22 @@ export class MySqlParser extends antlr.Parser { let localContext = new WaitNowaitClauseContext(this.context, this.state); this.enterRule(localContext, 646, MySqlParser.RULE_waitNowaitClause); try { - this.state = 6765; + this.state = 6764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.WAIT: this.enterOuterAlt(localContext, 1); { - this.state = 6762; + this.state = 6761; this.match(MySqlParser.WAIT); - this.state = 6763; + this.state = 6762; this.decimalLiteral(); } break; case MySqlParser.NOWAIT: this.enterOuterAlt(localContext, 2); { - this.state = 6764; + this.state = 6763; this.match(MySqlParser.NOWAIT); } break; @@ -47124,14 +47119,14 @@ export class MySqlParser extends antlr.Parser { let localContext = new FunctionCallContext(this.context, this.state); this.enterRule(localContext, 648, MySqlParser.RULE_functionCall); try { - this.state = 6785; + this.state = 6784; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6767; + this.state = 6766; this.specificFunction(); } break; @@ -47139,7 +47134,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6768; + this.state = 6767; this.aggregateWindowedFunction(); } break; @@ -47147,7 +47142,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6769; + this.state = 6768; this.nonAggregateWindowedFunction(); } break; @@ -47155,21 +47150,21 @@ export class MySqlParser extends antlr.Parser { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6770; + this.state = 6769; this.scalarFunctionName(); - this.state = 6771; + this.state = 6770; this.match(MySqlParser.LR_BRACKET); - this.state = 6773; + this.state = 6772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { case 1: { - this.state = 6772; + this.state = 6771; this.functionArgs(); } break; } - this.state = 6775; + this.state = 6774; this.match(MySqlParser.RR_BRACKET); } break; @@ -47177,21 +47172,21 @@ export class MySqlParser extends antlr.Parser { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6777; + this.state = 6776; this.fullId(); - this.state = 6778; + this.state = 6777; this.match(MySqlParser.LR_BRACKET); - this.state = 6780; + this.state = 6779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: { - this.state = 6779; + this.state = 6778; this.functionArgs(); } break; } - this.state = 6782; + this.state = 6781; this.match(MySqlParser.RR_BRACKET); } break; @@ -47199,7 +47194,7 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6784; + this.state = 6783; this.passwordFunctionClause(); } break; @@ -47224,14 +47219,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 650, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 6966; + this.state = 6965; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6787; + this.state = 6786; _la = this.tokenStream.LA(1); if(!(_la === 150 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -47240,14 +47235,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6790; + this.state = 6789; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 6788; + this.state = 6787; this.match(MySqlParser.LR_BRACKET); - this.state = 6789; + this.state = 6788; this.match(MySqlParser.RR_BRACKET); } break; @@ -47258,7 +47253,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6792; + this.state = 6791; this.currentUserExpression(); } break; @@ -47266,17 +47261,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6793; + this.state = 6792; this.match(MySqlParser.CONVERT); - this.state = 6794; + this.state = 6793; this.match(MySqlParser.LR_BRACKET); - this.state = 6795; + this.state = 6794; this.expression(0); - this.state = 6796; + this.state = 6795; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 6797; + this.state = 6796; this.convertedDataType(); - this.state = 6798; + this.state = 6797; this.match(MySqlParser.RR_BRACKET); } break; @@ -47284,17 +47279,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6800; + this.state = 6799; this.match(MySqlParser.CONVERT); - this.state = 6801; + this.state = 6800; this.match(MySqlParser.LR_BRACKET); - this.state = 6802; + this.state = 6801; this.expression(0); - this.state = 6803; + this.state = 6802; this.match(MySqlParser.USING); - this.state = 6804; + this.state = 6803; this.charsetName(); - this.state = 6805; + this.state = 6804; this.match(MySqlParser.RR_BRACKET); } break; @@ -47302,17 +47297,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6807; + this.state = 6806; this.match(MySqlParser.CAST); - this.state = 6808; + this.state = 6807; this.match(MySqlParser.LR_BRACKET); - this.state = 6809; + this.state = 6808; this.expression(0); - this.state = 6810; + this.state = 6809; this.match(MySqlParser.AS); - this.state = 6811; + this.state = 6810; this.convertedDataType(); - this.state = 6812; + this.state = 6811; this.match(MySqlParser.RR_BRACKET); } break; @@ -47320,13 +47315,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6814; + this.state = 6813; this.match(MySqlParser.VALUES); - this.state = 6815; + this.state = 6814; this.match(MySqlParser.LR_BRACKET); - this.state = 6816; + this.state = 6815; this.fullColumnName(); - this.state = 6817; + this.state = 6816; this.match(MySqlParser.RR_BRACKET); } break; @@ -47334,37 +47329,37 @@ export class MySqlParser extends antlr.Parser { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6819; + this.state = 6818; this.match(MySqlParser.CASE); - this.state = 6820; + this.state = 6819; this.expression(0); - this.state = 6822; + this.state = 6821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6821; + this.state = 6820; this.caseFuncAlternative(); } } - this.state = 6824; + this.state = 6823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 189); - this.state = 6828; + this.state = 6827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 6826; + this.state = 6825; this.match(MySqlParser.ELSE); - this.state = 6827; + this.state = 6826; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 6830; + this.state = 6829; this.match(MySqlParser.END); } break; @@ -47372,35 +47367,35 @@ export class MySqlParser extends antlr.Parser { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6832; + this.state = 6831; this.match(MySqlParser.CASE); - this.state = 6834; + this.state = 6833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6833; + this.state = 6832; this.caseFuncAlternative(); } } - this.state = 6836; + this.state = 6835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 189); - this.state = 6840; + this.state = 6839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 6838; + this.state = 6837; this.match(MySqlParser.ELSE); - this.state = 6839; + this.state = 6838; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 6842; + this.state = 6841; this.match(MySqlParser.END); } break; @@ -47408,25 +47403,25 @@ export class MySqlParser extends antlr.Parser { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6844; + this.state = 6843; this.match(MySqlParser.CHAR); - this.state = 6845; + this.state = 6844; this.match(MySqlParser.LR_BRACKET); - this.state = 6846; + this.state = 6845; this.functionArgs(); - this.state = 6849; + this.state = 6848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 6847; + this.state = 6846; this.match(MySqlParser.USING); - this.state = 6848; + this.state = 6847; this.charsetName(); } } - this.state = 6851; + this.state = 6850; this.match(MySqlParser.RR_BRACKET); } break; @@ -47434,45 +47429,45 @@ export class MySqlParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6853; + this.state = 6852; this.match(MySqlParser.POSITION); - this.state = 6854; + this.state = 6853; this.match(MySqlParser.LR_BRACKET); - this.state = 6857; + this.state = 6856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 6855; + this.state = 6854; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 6856; + this.state = 6855; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 6859; + this.state = 6858; this.match(MySqlParser.IN); - this.state = 6862; + this.state = 6861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { case 1: { - this.state = 6860; + this.state = 6859; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 6861; + this.state = 6860; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 6864; + this.state = 6863; this.match(MySqlParser.RR_BRACKET); } break; @@ -47480,7 +47475,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6866; + this.state = 6865; _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 326)) { this.errorHandler.recoverInline(this); @@ -47489,61 +47484,61 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6867; + this.state = 6866; this.match(MySqlParser.LR_BRACKET); - this.state = 6870; + this.state = 6869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: { - this.state = 6868; + this.state = 6867; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 6869; + this.state = 6868; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 6872; + this.state = 6871; this.match(MySqlParser.FROM); - this.state = 6875; + this.state = 6874; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1015, this.context) ) { case 1: { - this.state = 6873; + this.state = 6872; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 6874; + this.state = 6873; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 6882; + this.state = 6881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6877; + this.state = 6876; this.match(MySqlParser.FOR); - this.state = 6880; + this.state = 6879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { case 1: { - this.state = 6878; + this.state = 6877; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 6879; + this.state = 6878; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -47551,7 +47546,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6884; + this.state = 6883; this.match(MySqlParser.RR_BRACKET); } break; @@ -47559,11 +47554,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6886; + this.state = 6885; this.match(MySqlParser.TRIM); - this.state = 6887; + this.state = 6886; this.match(MySqlParser.LR_BRACKET); - this.state = 6888; + this.state = 6887; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 17 || _la === 95 || _la === 176)) { @@ -47573,41 +47568,41 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6891; + this.state = 6890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: { - this.state = 6889; + this.state = 6888; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 6890; + this.state = 6889; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 6893; + this.state = 6892; this.match(MySqlParser.FROM); - this.state = 6896; + this.state = 6895; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: { - this.state = 6894; + this.state = 6893; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 6895; + this.state = 6894; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 6898; + this.state = 6897; this.match(MySqlParser.RR_BRACKET); } break; @@ -47615,45 +47610,45 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6900; + this.state = 6899; this.match(MySqlParser.TRIM); - this.state = 6901; + this.state = 6900; this.match(MySqlParser.LR_BRACKET); - this.state = 6904; + this.state = 6903; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: { - this.state = 6902; + this.state = 6901; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 6903; + this.state = 6902; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 6906; + this.state = 6905; this.match(MySqlParser.FROM); - this.state = 6909; + this.state = 6908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { case 1: { - this.state = 6907; + this.state = 6906; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 6908; + this.state = 6907; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 6911; + this.state = 6910; this.match(MySqlParser.RR_BRACKET); } break; @@ -47661,34 +47656,34 @@ export class MySqlParser extends antlr.Parser { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6913; + this.state = 6912; this.match(MySqlParser.WEIGHT_STRING); - this.state = 6914; + this.state = 6913; this.match(MySqlParser.LR_BRACKET); - this.state = 6917; + this.state = 6916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context) ) { case 1: { - this.state = 6915; + this.state = 6914; this.stringLiteral(); } break; case 2: { - this.state = 6916; + this.state = 6915; this.expression(0); } break; } - this.state = 6925; + this.state = 6924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 6919; + this.state = 6918; this.match(MySqlParser.AS); - this.state = 6920; + this.state = 6919; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 222 || _la === 226)) { @@ -47698,26 +47693,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6921; + this.state = 6920; this.match(MySqlParser.LR_BRACKET); - this.state = 6922; + this.state = 6921; this.decimalLiteral(); - this.state = 6923; + this.state = 6922; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6928; + this.state = 6927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 6927; + this.state = 6926; this.levelsInWeightString(); } } - this.state = 6930; + this.state = 6929; this.match(MySqlParser.RR_BRACKET); } break; @@ -47725,31 +47720,31 @@ export class MySqlParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6932; + this.state = 6931; this.match(MySqlParser.EXTRACT); - this.state = 6933; + this.state = 6932; this.match(MySqlParser.LR_BRACKET); - this.state = 6934; + this.state = 6933; this.intervalType(); - this.state = 6935; + this.state = 6934; this.match(MySqlParser.FROM); - this.state = 6938; + this.state = 6937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { case 1: { - this.state = 6936; + this.state = 6935; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 6937; + this.state = 6936; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 6940; + this.state = 6939; this.match(MySqlParser.RR_BRACKET); } break; @@ -47757,11 +47752,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6942; + this.state = 6941; this.match(MySqlParser.GET_FORMAT); - this.state = 6943; + this.state = 6942; this.match(MySqlParser.LR_BRACKET); - this.state = 6944; + this.state = 6943; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 11) !== 0))) { @@ -47771,11 +47766,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6945; + this.state = 6944; this.match(MySqlParser.COMMA); - this.state = 6946; + this.state = 6945; this.stringLiteral(); - this.state = 6947; + this.state = 6946; this.match(MySqlParser.RR_BRACKET); } break; @@ -47783,49 +47778,49 @@ export class MySqlParser extends antlr.Parser { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6949; + this.state = 6948; this.match(MySqlParser.JSON_VALUE); - this.state = 6950; + this.state = 6949; this.match(MySqlParser.LR_BRACKET); - this.state = 6951; + this.state = 6950; this.expression(0); - this.state = 6952; + this.state = 6951; this.match(MySqlParser.COMMA); - this.state = 6953; + this.state = 6952; this.expression(0); - this.state = 6956; + this.state = 6955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 593) { { - this.state = 6954; + this.state = 6953; this.match(MySqlParser.RETURNING); - this.state = 6955; + this.state = 6954; this.convertedDataType(); } } - this.state = 6959; + this.state = 6958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: { - this.state = 6958; + this.state = 6957; this.jsonOnEmpty(); } break; } - this.state = 6962; + this.state = 6961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 411) { { - this.state = 6961; + this.state = 6960; this.jsonOnError(); } } - this.state = 6964; + this.state = 6963; this.match(MySqlParser.RR_BRACKET); } break; @@ -47851,13 +47846,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6968; + this.state = 6967; this.match(MySqlParser.WHEN); - this.state = 6969; + this.state = 6968; localContext._condition = this.functionArg(); - this.state = 6970; + this.state = 6969; this.match(MySqlParser.THEN); - this.state = 6971; + this.state = 6970; localContext._consequent = this.functionArg(); } } @@ -47880,30 +47875,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 654, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 6987; + this.state = 6986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6973; + this.state = 6972; this.match(MySqlParser.LEVEL); - this.state = 6974; + this.state = 6973; this.levelInWeightListElement(); - this.state = 6979; + this.state = 6978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 6975; + this.state = 6974; this.match(MySqlParser.COMMA); - this.state = 6976; + this.state = 6975; this.levelInWeightListElement(); } } - this.state = 6981; + this.state = 6980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47913,13 +47908,13 @@ export class MySqlParser extends antlr.Parser { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6982; + this.state = 6981; this.match(MySqlParser.LEVEL); - this.state = 6983; + this.state = 6982; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 6984; + this.state = 6983; this.match(MySqlParser.MINUS); - this.state = 6985; + this.state = 6984; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -47946,14 +47941,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 6989; + this.state = 6988; this.decimalLiteral(); - this.state = 6991; + this.state = 6990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 45 || _la === 994) { { - this.state = 6990; + this.state = 6989; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 45 || _la === 994)) { @@ -47987,7 +47982,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 658, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7052; + this.state = 7051; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.AVG: @@ -47996,7 +47991,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SUM: this.enterOuterAlt(localContext, 1); { - this.state = 6993; + this.state = 6992; _la = this.tokenStream.LA(1); if(!(((((_la - 286)) & ~0x1F) === 0 && ((1 << (_la - 286)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -48005,14 +48000,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6994; + this.state = 6993; this.match(MySqlParser.LR_BRACKET); - this.state = 6996; + this.state = 6995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 6995; + this.state = 6994; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 49)) { @@ -48025,16 +48020,16 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6998; + this.state = 6997; this.functionArg(); - this.state = 6999; + this.state = 6998; this.match(MySqlParser.RR_BRACKET); - this.state = 7001; + this.state = 7000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { case 1: { - this.state = 7000; + this.state = 6999; this.overClause(); } break; @@ -48044,52 +48039,52 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7003; + this.state = 7002; this.match(MySqlParser.COUNT); - this.state = 7004; + this.state = 7003; this.match(MySqlParser.LR_BRACKET); - this.state = 7012; + this.state = 7011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7005; + this.state = 7004; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7007; + this.state = 7006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 7006; + this.state = 7005; localContext._aggregator = this.match(MySqlParser.ALL); } break; } - this.state = 7009; + this.state = 7008; this.functionArg(); } break; case 3: { - this.state = 7010; + this.state = 7009; localContext._aggregator = this.match(MySqlParser.DISTINCT); - this.state = 7011; + this.state = 7010; this.functionArgs(); } break; } - this.state = 7014; + this.state = 7013; this.match(MySqlParser.RR_BRACKET); - this.state = 7016; + this.state = 7015; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: { - this.state = 7015; + this.state = 7014; this.overClause(); } break; @@ -48108,7 +48103,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7018; + this.state = 7017; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -48117,28 +48112,28 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7019; + this.state = 7018; this.match(MySqlParser.LR_BRACKET); - this.state = 7021; + this.state = 7020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7020; + this.state = 7019; localContext._aggregator = this.match(MySqlParser.ALL); } break; } - this.state = 7023; + this.state = 7022; this.functionArg(); - this.state = 7024; + this.state = 7023; this.match(MySqlParser.RR_BRACKET); - this.state = 7026; + this.state = 7025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: { - this.state = 7025; + this.state = 7024; this.overClause(); } break; @@ -48148,65 +48143,65 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7028; + this.state = 7027; this.match(MySqlParser.GROUP_CONCAT); - this.state = 7029; + this.state = 7028; this.match(MySqlParser.LR_BRACKET); - this.state = 7031; + this.state = 7030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7030; + this.state = 7029; localContext._aggregator = this.match(MySqlParser.DISTINCT); } break; } - this.state = 7033; + this.state = 7032; this.functionArgs(); - this.state = 7044; + this.state = 7043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 7034; + this.state = 7033; this.match(MySqlParser.ORDER); - this.state = 7035; + this.state = 7034; this.match(MySqlParser.BY); - this.state = 7036; + this.state = 7035; this.orderByExpression(); - this.state = 7041; + this.state = 7040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 7037; + this.state = 7036; this.match(MySqlParser.COMMA); - this.state = 7038; + this.state = 7037; this.orderByExpression(); } } - this.state = 7043; + this.state = 7042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7048; + this.state = 7047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 7046; + this.state = 7045; this.match(MySqlParser.SEPARATOR); - this.state = 7047; + this.state = 7046; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7050; + this.state = 7049; this.match(MySqlParser.RR_BRACKET); } break; @@ -48233,14 +48228,14 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 660, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7092; + this.state = 7091; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LAG: case MySqlParser.LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7054; + this.state = 7053; _la = this.tokenStream.LA(1); if(!(_la === 295 || _la === 297)) { this.errorHandler.recoverInline(this); @@ -48249,37 +48244,37 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7055; + this.state = 7054; this.match(MySqlParser.LR_BRACKET); - this.state = 7056; + this.state = 7055; this.expression(0); - this.state = 7059; + this.state = 7058; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { case 1: { - this.state = 7057; + this.state = 7056; this.match(MySqlParser.COMMA); - this.state = 7058; + this.state = 7057; this.decimalLiteral(); } break; } - this.state = 7063; + this.state = 7062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1135) { { - this.state = 7061; + this.state = 7060; this.match(MySqlParser.COMMA); - this.state = 7062; + this.state = 7061; this.decimalLiteral(); } } - this.state = 7065; + this.state = 7064; this.match(MySqlParser.RR_BRACKET); - this.state = 7066; + this.state = 7065; this.overClause(); } break; @@ -48287,7 +48282,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7068; + this.state = 7067; _la = this.tokenStream.LA(1); if(!(_la === 293 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -48296,13 +48291,13 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7069; + this.state = 7068; this.match(MySqlParser.LR_BRACKET); - this.state = 7070; + this.state = 7069; this.expression(0); - this.state = 7071; + this.state = 7070; this.match(MySqlParser.RR_BRACKET); - this.state = 7072; + this.state = 7071; this.overClause(); } break; @@ -48313,7 +48308,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7074; + this.state = 7073; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -48322,45 +48317,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7075; + this.state = 7074; this.match(MySqlParser.LR_BRACKET); - this.state = 7076; + this.state = 7075; this.match(MySqlParser.RR_BRACKET); - this.state = 7077; + this.state = 7076; this.overClause(); } break; case MySqlParser.NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7078; + this.state = 7077; this.match(MySqlParser.NTH_VALUE); - this.state = 7079; + this.state = 7078; this.match(MySqlParser.LR_BRACKET); - this.state = 7080; + this.state = 7079; this.expression(0); - this.state = 7081; + this.state = 7080; this.match(MySqlParser.COMMA); - this.state = 7082; + this.state = 7081; this.decimalLiteral(); - this.state = 7083; + this.state = 7082; this.match(MySqlParser.RR_BRACKET); - this.state = 7084; + this.state = 7083; this.overClause(); } break; case MySqlParser.NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7086; + this.state = 7085; this.match(MySqlParser.NTILE); - this.state = 7087; + this.state = 7086; this.match(MySqlParser.LR_BRACKET); - this.state = 7088; + this.state = 7087; this.decimalLiteral(); - this.state = 7089; + this.state = 7088; this.match(MySqlParser.RR_BRACKET); - this.state = 7090; + this.state = 7089; this.overClause(); } break; @@ -48388,18 +48383,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7094; + this.state = 7093; this.match(MySqlParser.OVER); - this.state = 7100; + this.state = 7099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7095; + this.state = 7094; this.match(MySqlParser.LR_BRACKET); - this.state = 7096; + this.state = 7095; this.windowSpec(); - this.state = 7097; + this.state = 7096; this.match(MySqlParser.RR_BRACKET); } break; @@ -49274,7 +49269,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7099; + this.state = 7098; this.windowName(); } break; @@ -49304,42 +49299,42 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7103; + this.state = 7102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7102; + this.state = 7101; this.windowName(); } break; } - this.state = 7106; + this.state = 7105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 129) { { - this.state = 7105; + this.state = 7104; this.partitionClause(); } } - this.state = 7109; + this.state = 7108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 7108; + this.state = 7107; this.orderByClause(); } } - this.state = 7112; + this.state = 7111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 133 || _la === 601) { { - this.state = 7111; + this.state = 7110; this.frameClause(); } } @@ -49366,7 +49361,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7114; + this.state = 7113; this.uid(); } } @@ -49390,9 +49385,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7116; + this.state = 7115; this.frameUnits(); - this.state = 7117; + this.state = 7116; this.frameExtent(); } } @@ -49417,7 +49412,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7119; + this.state = 7118; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 601)) { this.errorHandler.recoverInline(this); @@ -49446,20 +49441,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new FrameExtentContext(this.context, this.state); this.enterRule(localContext, 672, MySqlParser.RULE_frameExtent); try { - this.state = 7123; + this.state = 7122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7121; + this.state = 7120; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7122; + this.state = 7121; this.frameBetween(); } break; @@ -49485,13 +49480,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7125; + this.state = 7124; this.match(MySqlParser.BETWEEN); - this.state = 7126; + this.state = 7125; this.frameRange(); - this.state = 7127; + this.state = 7126; this.match(MySqlParser.AND); - this.state = 7128; + this.state = 7127; this.frameRange(); } } @@ -49514,24 +49509,24 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 676, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7137; + this.state = 7136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7130; + this.state = 7129; this.match(MySqlParser.CURRENT); - this.state = 7131; + this.state = 7130; this.match(MySqlParser.ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7132; + this.state = 7131; this.match(MySqlParser.UNBOUNDED); - this.state = 7133; + this.state = 7132; _la = this.tokenStream.LA(1); if(!(_la === 433 || _la === 559)) { this.errorHandler.recoverInline(this); @@ -49545,9 +49540,9 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7134; + this.state = 7133; this.expression(0); - this.state = 7135; + this.state = 7134; _la = this.tokenStream.LA(1); if(!(_la === 433 || _la === 559)) { this.errorHandler.recoverInline(this); @@ -49581,25 +49576,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7139; + this.state = 7138; this.match(MySqlParser.PARTITION); - this.state = 7140; + this.state = 7139; this.match(MySqlParser.BY); - this.state = 7141; + this.state = 7140; this.expression(0); - this.state = 7146; + this.state = 7145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 7142; + this.state = 7141; this.match(MySqlParser.COMMA); - this.state = 7143; + this.state = 7142; this.expression(0); } } - this.state = 7148; + this.state = 7147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49623,7 +49618,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new ScalarFunctionNameContext(this.context, this.state); this.enterRule(localContext, 680, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7173; + this.state = 7172; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.DATABASE: @@ -49991,168 +49986,168 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7149; + this.state = 7148; this.functionNameBase(); } break; case MySqlParser.ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7150; + this.state = 7149; this.match(MySqlParser.ASCII); } break; case MySqlParser.CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7151; + this.state = 7150; this.match(MySqlParser.CURDATE); } break; case MySqlParser.CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7152; + this.state = 7151; this.match(MySqlParser.CURRENT_DATE); } break; case MySqlParser.CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7153; + this.state = 7152; this.match(MySqlParser.CURRENT_TIME); } break; case MySqlParser.CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7154; + this.state = 7153; this.match(MySqlParser.CURRENT_TIMESTAMP); } break; case MySqlParser.CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7155; + this.state = 7154; this.match(MySqlParser.CURTIME); } break; case MySqlParser.DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7156; + this.state = 7155; this.match(MySqlParser.DATE_ADD); } break; case MySqlParser.DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7157; + this.state = 7156; this.match(MySqlParser.DATE_SUB); } break; case MySqlParser.IF: this.enterOuterAlt(localContext, 10); { - this.state = 7158; + this.state = 7157; this.match(MySqlParser.IF); } break; case MySqlParser.INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7159; + this.state = 7158; this.match(MySqlParser.INSERT); } break; case MySqlParser.LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7160; + this.state = 7159; this.match(MySqlParser.LOCALTIME); } break; case MySqlParser.LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7161; + this.state = 7160; this.match(MySqlParser.LOCALTIMESTAMP); } break; case MySqlParser.MID: this.enterOuterAlt(localContext, 14); { - this.state = 7162; + this.state = 7161; this.match(MySqlParser.MID); } break; case MySqlParser.NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7163; + this.state = 7162; this.match(MySqlParser.NOW); } break; case MySqlParser.REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7164; + this.state = 7163; this.match(MySqlParser.REPEAT); } break; case MySqlParser.REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7165; + this.state = 7164; this.match(MySqlParser.REPLACE); } break; case MySqlParser.SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7166; + this.state = 7165; this.match(MySqlParser.SUBSTR); } break; case MySqlParser.SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7167; + this.state = 7166; this.match(MySqlParser.SUBSTRING); } break; case MySqlParser.SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7168; + this.state = 7167; this.match(MySqlParser.SYSDATE); } break; case MySqlParser.TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7169; + this.state = 7168; this.match(MySqlParser.TRIM); } break; case MySqlParser.UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7170; + this.state = 7169; this.match(MySqlParser.UTC_DATE); } break; case MySqlParser.UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7171; + this.state = 7170; this.match(MySqlParser.UTC_TIME); } break; case MySqlParser.UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7172; + this.state = 7171; this.match(MySqlParser.UTC_TIMESTAMP); } break; @@ -50181,7 +50176,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7175; + this.state = 7174; localContext._functionName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 535 || _la === 551)) { @@ -50191,11 +50186,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7176; + this.state = 7175; this.match(MySqlParser.LR_BRACKET); - this.state = 7177; + this.state = 7176; this.functionArg(); - this.state = 7178; + this.state = 7177; this.match(MySqlParser.RR_BRACKET); } } @@ -50220,73 +50215,73 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7184; + this.state = 7183; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: { - this.state = 7180; + this.state = 7179; this.constant(); } break; case 2: { - this.state = 7181; + this.state = 7180; this.fullColumnName(); } break; case 3: { - this.state = 7182; + this.state = 7181; this.functionCall(); } break; case 4: { - this.state = 7183; + this.state = 7182; this.expression(0); } break; } - this.state = 7195; + this.state = 7194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 7186; + this.state = 7185; this.match(MySqlParser.COMMA); - this.state = 7191; + this.state = 7190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7187; + this.state = 7186; this.constant(); } break; case 2: { - this.state = 7188; + this.state = 7187; this.fullColumnName(); } break; case 3: { - this.state = 7189; + this.state = 7188; this.functionCall(); } break; case 4: { - this.state = 7190; + this.state = 7189; this.expression(0); } break; } } } - this.state = 7197; + this.state = 7196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50310,34 +50305,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new FunctionArgContext(this.context, this.state); this.enterRule(localContext, 686, MySqlParser.RULE_functionArg); try { - this.state = 7202; + this.state = 7201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7198; + this.state = 7197; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7199; + this.state = 7198; this.fullColumnName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7200; + this.state = 7199; this.functionCall(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7201; + this.state = 7200; this.expression(0); } break; @@ -50376,7 +50371,7 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7215; + this.state = 7214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: @@ -50385,7 +50380,7 @@ export class MySqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 7205; + this.state = 7204; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 1127)) { @@ -50395,7 +50390,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7206; + this.state = 7205; this.expression(4); } break; @@ -50404,21 +50399,21 @@ export class MySqlParser extends antlr.Parser { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7207; + this.state = 7206; this.predicate(0); - this.state = 7208; + this.state = 7207; this.match(MySqlParser.IS); - this.state = 7210; + this.state = 7209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7209; + this.state = 7208; this.match(MySqlParser.NOT); } } - this.state = 7212; + this.state = 7211; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 178 || _la === 662)) { @@ -50435,13 +50430,13 @@ export class MySqlParser extends antlr.Parser { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7214; + this.state = 7213; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7223; + this.state = 7222; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -50454,18 +50449,18 @@ export class MySqlParser extends antlr.Parser { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7217; + this.state = 7216; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7218; + this.state = 7217; this.logicalOperator(); - this.state = 7219; + this.state = 7218; this.expression(4); } } } - this.state = 7225; + this.state = 7224; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context); } @@ -50509,11 +50504,11 @@ export class MySqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 7227; + this.state = 7226; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7293; + this.state = 7292; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -50523,7 +50518,7 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 7291; + this.state = 7290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: @@ -50531,13 +50526,13 @@ export class MySqlParser extends antlr.Parser { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); (localContext as BinaryComparisonPredicateContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7229; + this.state = 7228; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7230; + this.state = 7229; this.comparisonOperator(); - this.state = 7231; + this.state = 7230; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(9); } break; @@ -50545,27 +50540,27 @@ export class MySqlParser extends antlr.Parser { { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7233; + this.state = 7232; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7235; + this.state = 7234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7234; + this.state = 7233; this.match(MySqlParser.NOT); } } - this.state = 7237; + this.state = 7236; this.match(MySqlParser.BETWEEN); - this.state = 7238; + this.state = 7237; this.predicate(0); - this.state = 7239; + this.state = 7238; this.match(MySqlParser.AND); - this.state = 7240; + this.state = 7239; this.predicate(7); } break; @@ -50573,15 +50568,15 @@ export class MySqlParser extends antlr.Parser { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7242; + this.state = 7241; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7243; + this.state = 7242; this.match(MySqlParser.SOUNDS); - this.state = 7244; + this.state = 7243; this.match(MySqlParser.LIKE); - this.state = 7245; + this.state = 7244; this.predicate(6); } break; @@ -50589,21 +50584,21 @@ export class MySqlParser extends antlr.Parser { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7246; + this.state = 7245; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7248; + this.state = 7247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7247; + this.state = 7246; this.match(MySqlParser.NOT); } } - this.state = 7250; + this.state = 7249; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 149)) { @@ -50613,7 +50608,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7251; + this.state = 7250; this.predicate(4); } break; @@ -50621,41 +50616,41 @@ export class MySqlParser extends antlr.Parser { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7252; + this.state = 7251; if (!(this.precpred(this.context, 10))) { throw this.createFailedPredicateException("this.precpred(this.context, 10)"); } - this.state = 7254; + this.state = 7253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7253; + this.state = 7252; this.match(MySqlParser.NOT); } } - this.state = 7256; + this.state = 7255; this.match(MySqlParser.IN); - this.state = 7257; + this.state = 7256; this.match(MySqlParser.LR_BRACKET); - this.state = 7260; + this.state = 7259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: { - this.state = 7258; + this.state = 7257; this.selectStatement(); } break; case 2: { - this.state = 7259; + this.state = 7258; this.expressions(); } break; } - this.state = 7262; + this.state = 7261; this.match(MySqlParser.RR_BRACKET); } break; @@ -50663,13 +50658,13 @@ export class MySqlParser extends antlr.Parser { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7264; + this.state = 7263; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7265; + this.state = 7264; this.match(MySqlParser.IS); - this.state = 7266; + this.state = 7265; this.nullNotnull(); } break; @@ -50677,13 +50672,13 @@ export class MySqlParser extends antlr.Parser { { localContext = new SubqueryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7267; + this.state = 7266; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7268; + this.state = 7267; this.comparisonOperator(); - this.state = 7269; + this.state = 7268; (localContext as SubqueryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 337 || _la === 618)) { @@ -50693,11 +50688,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7270; + this.state = 7269; this.match(MySqlParser.LR_BRACKET); - this.state = 7271; + this.state = 7270; this.selectStatement(); - this.state = 7272; + this.state = 7271; this.match(MySqlParser.RR_BRACKET); } break; @@ -50705,32 +50700,32 @@ export class MySqlParser extends antlr.Parser { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7274; + this.state = 7273; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7276; + this.state = 7275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7275; + this.state = 7274; this.match(MySqlParser.NOT); } } - this.state = 7278; + this.state = 7277; this.match(MySqlParser.LIKE); - this.state = 7279; + this.state = 7278; this.predicate(0); - this.state = 7282; + this.state = 7281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7280; + this.state = 7279; this.match(MySqlParser.ESCAPE); - this.state = 7281; + this.state = 7280; this.match(MySqlParser.STRING_LITERAL); } break; @@ -50741,26 +50736,26 @@ export class MySqlParser extends antlr.Parser { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7284; + this.state = 7283; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7285; + this.state = 7284; this.match(MySqlParser.MEMBER); - this.state = 7286; + this.state = 7285; this.match(MySqlParser.OF); - this.state = 7287; + this.state = 7286; this.match(MySqlParser.LR_BRACKET); - this.state = 7288; + this.state = 7287; this.predicate(0); - this.state = 7289; + this.state = 7288; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7295; + this.state = 7294; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context); } @@ -50799,7 +50794,7 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7344; + this.state = 7343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: @@ -50808,7 +50803,7 @@ export class MySqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 7297; + this.state = 7296; this.constant(); } break; @@ -50817,7 +50812,7 @@ export class MySqlParser extends antlr.Parser { localContext = new FullColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7298; + this.state = 7297; this.fullColumnName(); } break; @@ -50826,7 +50821,7 @@ export class MySqlParser extends antlr.Parser { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7299; + this.state = 7298; this.functionCall(); } break; @@ -50835,7 +50830,7 @@ export class MySqlParser extends antlr.Parser { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7300; + this.state = 7299; this.mysqlVariable(); } break; @@ -50844,9 +50839,9 @@ export class MySqlParser extends antlr.Parser { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7301; + this.state = 7300; this.unaryOperator(); - this.state = 7302; + this.state = 7301; this.expressionAtom(12); } break; @@ -50855,9 +50850,9 @@ export class MySqlParser extends antlr.Parser { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7304; + this.state = 7303; this.match(MySqlParser.BINARY); - this.state = 7305; + this.state = 7304; this.expressionAtom(11); } break; @@ -50866,11 +50861,11 @@ export class MySqlParser extends antlr.Parser { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7306; + this.state = 7305; this.match(MySqlParser.LOCAL_ID); - this.state = 7307; + this.state = 7306; this.match(MySqlParser.VAR_ASSIGN); - this.state = 7308; + this.state = 7307; this.expressionAtom(10); } break; @@ -50879,27 +50874,27 @@ export class MySqlParser extends antlr.Parser { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7309; + this.state = 7308; this.match(MySqlParser.LR_BRACKET); - this.state = 7310; + this.state = 7309; this.expression(0); - this.state = 7315; + this.state = 7314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 1135) { { { - this.state = 7311; + this.state = 7310; this.match(MySqlParser.COMMA); - this.state = 7312; + this.state = 7311; this.expression(0); } } - this.state = 7317; + this.state = 7316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7318; + this.state = 7317; this.match(MySqlParser.RR_BRACKET); } break; @@ -50908,29 +50903,29 @@ export class MySqlParser extends antlr.Parser { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7320; + this.state = 7319; this.match(MySqlParser.ROW); - this.state = 7321; + this.state = 7320; this.match(MySqlParser.LR_BRACKET); - this.state = 7322; + this.state = 7321; this.expression(0); - this.state = 7325; + this.state = 7324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7323; + this.state = 7322; this.match(MySqlParser.COMMA); - this.state = 7324; + this.state = 7323; this.expression(0); } } - this.state = 7327; + this.state = 7326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 1135); - this.state = 7329; + this.state = 7328; this.match(MySqlParser.RR_BRACKET); } break; @@ -50939,13 +50934,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7331; + this.state = 7330; this.match(MySqlParser.EXISTS); - this.state = 7332; + this.state = 7331; this.match(MySqlParser.LR_BRACKET); - this.state = 7333; + this.state = 7332; this.selectStatement(); - this.state = 7334; + this.state = 7333; this.match(MySqlParser.RR_BRACKET); } break; @@ -50954,11 +50949,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7336; + this.state = 7335; this.match(MySqlParser.LR_BRACKET); - this.state = 7337; + this.state = 7336; this.selectStatement(); - this.state = 7338; + this.state = 7337; this.match(MySqlParser.RR_BRACKET); } break; @@ -50967,17 +50962,17 @@ export class MySqlParser extends antlr.Parser { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7340; + this.state = 7339; this.match(MySqlParser.INTERVAL); - this.state = 7341; + this.state = 7340; this.expression(0); - this.state = 7342; + this.state = 7341; this.intervalType(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7367; + this.state = 7366; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -50987,7 +50982,7 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 7365; + this.state = 7364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1075, this.context) ) { case 1: @@ -50995,13 +50990,13 @@ export class MySqlParser extends antlr.Parser { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7346; + this.state = 7345; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7347; + this.state = 7346; this.bitOperator(); - this.state = 7348; + this.state = 7347; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -51010,13 +51005,13 @@ export class MySqlParser extends antlr.Parser { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7350; + this.state = 7349; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7351; + this.state = 7350; this.multOperator(); - this.state = 7352; + this.state = 7351; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -51025,13 +51020,13 @@ export class MySqlParser extends antlr.Parser { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7354; + this.state = 7353; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7355; + this.state = 7354; this.addOperator(); - this.state = 7356; + this.state = 7355; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -51040,13 +51035,13 @@ export class MySqlParser extends antlr.Parser { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7358; + this.state = 7357; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7359; + this.state = 7358; this.jsonOperator(); - this.state = 7360; + this.state = 7359; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(2); } break; @@ -51054,20 +51049,20 @@ export class MySqlParser extends antlr.Parser { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7362; + this.state = 7361; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 7363; + this.state = 7362; this.match(MySqlParser.COLLATE); - this.state = 7364; + this.state = 7363; this.collationName(); } break; } } } - this.state = 7369; + this.state = 7368; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); } @@ -51094,7 +51089,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7370; + this.state = 7369; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 1120)) & ~0x1F) === 0 && ((1 << (_la - 1120)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -51123,74 +51118,74 @@ export class MySqlParser extends antlr.Parser { let localContext = new ComparisonOperatorContext(this.context, this.state); this.enterRule(localContext, 696, MySqlParser.RULE_comparisonOperator); try { - this.state = 7386; + this.state = 7385; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7372; + this.state = 7371; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7373; + this.state = 7372; this.match(MySqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7374; + this.state = 7373; this.match(MySqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7375; + this.state = 7374; this.match(MySqlParser.LESS_SYMBOL); - this.state = 7376; + this.state = 7375; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7377; + this.state = 7376; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7378; + this.state = 7377; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7379; + this.state = 7378; this.match(MySqlParser.LESS_SYMBOL); - this.state = 7380; + this.state = 7379; this.match(MySqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7381; + this.state = 7380; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 7382; + this.state = 7381; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7383; + this.state = 7382; this.match(MySqlParser.LESS_SYMBOL); - this.state = 7384; + this.state = 7383; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 7385; + this.state = 7384; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -51214,45 +51209,45 @@ export class MySqlParser extends antlr.Parser { let localContext = new LogicalOperatorContext(this.context, this.state); this.enterRule(localContext, 698, MySqlParser.RULE_logicalOperator); try { - this.state = 7395; + this.state = 7394; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.AND: this.enterOuterAlt(localContext, 1); { - this.state = 7388; + this.state = 7387; this.match(MySqlParser.AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 7389; + this.state = 7388; this.match(MySqlParser.BIT_AND_OP); - this.state = 7390; + this.state = 7389; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.XOR: this.enterOuterAlt(localContext, 3); { - this.state = 7391; + this.state = 7390; this.match(MySqlParser.XOR); } break; case MySqlParser.OR: this.enterOuterAlt(localContext, 4); { - this.state = 7392; + this.state = 7391; this.match(MySqlParser.OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 7393; + this.state = 7392; this.match(MySqlParser.BIT_OR_OP); - this.state = 7394; + this.state = 7393; this.match(MySqlParser.BIT_OR_OP); } break; @@ -51278,45 +51273,45 @@ export class MySqlParser extends antlr.Parser { let localContext = new BitOperatorContext(this.context, this.state); this.enterRule(localContext, 700, MySqlParser.RULE_bitOperator); try { - this.state = 7404; + this.state = 7403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 7397; + this.state = 7396; this.match(MySqlParser.LESS_SYMBOL); - this.state = 7398; + this.state = 7397; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 7399; + this.state = 7398; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7400; + this.state = 7399; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 7401; + this.state = 7400; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 7402; + this.state = 7401; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 7403; + this.state = 7402; this.match(MySqlParser.BIT_OR_OP); } break; @@ -51345,7 +51340,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7406; + this.state = 7405; _la = this.tokenStream.LA(1); if(!(((((_la - 1117)) & ~0x1F) === 0 && ((1 << (_la - 1117)) & 103) !== 0))) { this.errorHandler.recoverInline(this); @@ -51377,7 +51372,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7408; + this.state = 7407; _la = this.tokenStream.LA(1); if(!(_la === 1120 || _la === 1121)) { this.errorHandler.recoverInline(this); @@ -51406,26 +51401,26 @@ export class MySqlParser extends antlr.Parser { let localContext = new JsonOperatorContext(this.context, this.state); this.enterRule(localContext, 706, MySqlParser.RULE_jsonOperator); try { - this.state = 7415; + this.state = 7414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7410; + this.state = 7409; this.match(MySqlParser.MINUS); - this.state = 7411; + this.state = 7410; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7412; + this.state = 7411; this.match(MySqlParser.MINUS); - this.state = 7413; + this.state = 7412; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 7414; + this.state = 7413; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -51452,7 +51447,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7417; + this.state = 7416; _la = this.tokenStream.LA(1); if(!(_la === 226 || ((((_la - 746)) & ~0x1F) === 0 && ((1 << (_la - 746)) & 4294967295) !== 0) || ((((_la - 778)) & ~0x1F) === 0 && ((1 << (_la - 778)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -51484,7 +51479,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7419; + this.state = 7418; _la = this.tokenStream.LA(1); if(!(((((_la - 799)) & ~0x1F) === 0 && ((1 << (_la - 799)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -51516,7 +51511,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7421; + this.state = 7420; _la = this.tokenStream.LA(1); if(!(((((_la - 708)) & ~0x1F) === 0 && ((1 << (_la - 708)) & 2181955587) !== 0) || _la === 740 || _la === 742)) { this.errorHandler.recoverInline(this); @@ -51548,7 +51543,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7423; + this.state = 7422; _la = this.tokenStream.LA(1); if(!(((((_la - 689)) & ~0x1F) === 0 && ((1 << (_la - 689)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -51580,7 +51575,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7425; + this.state = 7424; _la = this.tokenStream.LA(1); if(!(((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -51612,7 +51607,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7427; + this.state = 7426; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 537151488) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 22028421) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 2097217) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 8337) !== 0) || _la === 158 || _la === 168 || _la === 239 || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 1069648127) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 4294967295) !== 0) || ((((_la - 364)) & ~0x1F) === 0 && ((1 << (_la - 364)) & 4290772991) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 4294966015) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 2139095007) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 3221225471) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 4294180863) !== 0) || ((((_la - 560)) & ~0x1F) === 0 && ((1 << (_la - 560)) & 3221225471) !== 0) || ((((_la - 592)) & ~0x1F) === 0 && ((1 << (_la - 592)) & 4294934525) !== 0) || ((((_la - 624)) & ~0x1F) === 0 && ((1 << (_la - 624)) & 4294959103) !== 0) || ((((_la - 656)) & ~0x1F) === 0 && ((1 << (_la - 656)) & 4159569919) !== 0) || ((((_la - 688)) & ~0x1F) === 0 && ((1 << (_la - 688)) & 1641019905) !== 0) || ((((_la - 720)) & ~0x1F) === 0 && ((1 << (_la - 720)) & 61300511) !== 0) || _la === 792 || _la === 836 || _la === 875 || _la === 1000 || _la === 1005 || _la === 1088)) { this.errorHandler.recoverInline(this); @@ -51644,7 +51639,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 7429; + this.state = 7428; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 97 || _la === 148 || _la === 150 || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 23) !== 0) || ((((_la - 251)) & ~0x1F) === 0 && ((1 << (_la - 251)) & 4294967295) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 31983) !== 0) || _la === 324 || _la === 459 || ((((_la - 673)) & ~0x1F) === 0 && ((1 << (_la - 673)) & 16711681) !== 0) || _la === 736 || ((((_la - 803)) & ~0x1F) === 0 && ((1 << (_la - 803)) & 4294967289) !== 0) || ((((_la - 835)) & ~0x1F) === 0 && ((1 << (_la - 835)) & 4294967293) !== 0) || ((((_la - 867)) & ~0x1F) === 0 && ((1 << (_la - 867)) & 4294967039) !== 0) || ((((_la - 899)) & ~0x1F) === 0 && ((1 << (_la - 899)) & 4294967295) !== 0) || ((((_la - 931)) & ~0x1F) === 0 && ((1 << (_la - 931)) & 4294967295) !== 0) || ((((_la - 963)) & ~0x1F) === 0 && ((1 << (_la - 963)) & 4294967295) !== 0) || ((((_la - 995)) & ~0x1F) === 0 && ((1 << (_la - 995)) & 4294966239) !== 0) || ((((_la - 1027)) & ~0x1F) === 0 && ((1 << (_la - 1027)) & 4294967295) !== 0) || ((((_la - 1059)) & ~0x1F) === 0 && ((1 << (_la - 1059)) & 3758096383) !== 0) || ((((_la - 1091)) & ~0x1F) === 0 && ((1 << (_la - 1091)) & 131071) !== 0) || _la === 1123)) { this.errorHandler.recoverInline(this); @@ -51728,7 +51723,7 @@ export class MySqlParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,1161,7432,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, + 4,1,1161,7431,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, @@ -51791,3379 +51786,3378 @@ export class MySqlParser extends antlr.Parser { 7,345,2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350, 2,351,7,351,2,352,7,352,2,353,7,353,2,354,7,354,2,355,7,355,2,356, 7,356,2,357,7,357,2,358,7,358,2,359,7,359,2,360,7,360,1,0,3,0,724, - 8,0,1,0,1,0,1,1,1,1,3,1,730,8,1,1,1,1,1,1,1,1,1,1,1,3,1,737,8,1, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,746,8,2,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, + 8,0,1,0,1,0,1,1,1,1,3,1,730,8,1,1,1,1,1,1,1,1,1,3,1,736,8,1,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,745,8,2,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,786,8,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 3,4,801,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,812,8,5,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,829, - 8,6,1,7,1,7,1,7,3,7,834,8,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,846,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9, - 1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,873,8,9, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,882,8,10,1,11,1,11,1,11, - 3,11,887,8,11,1,11,1,11,5,11,891,8,11,10,11,12,11,894,9,11,1,12, - 1,12,3,12,898,8,12,1,12,1,12,3,12,902,8,12,1,12,1,12,1,12,1,12,1, - 12,1,12,1,12,3,12,911,8,12,1,12,3,12,914,8,12,1,12,3,12,917,8,12, - 1,12,1,12,3,12,921,8,12,1,12,1,12,1,12,1,13,1,13,3,13,928,8,13,1, - 13,3,13,931,8,13,1,13,1,13,1,13,3,13,936,8,13,1,13,1,13,1,13,1,13, - 5,13,942,8,13,10,13,12,13,945,9,13,1,13,1,13,3,13,949,8,13,1,13, - 1,13,1,13,3,13,954,8,13,1,13,5,13,957,8,13,10,13,12,13,960,9,13, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,971,8,14,1,14, - 3,14,974,8,14,1,14,1,14,3,14,978,8,14,1,14,3,14,981,8,14,1,14,1, - 14,3,14,985,8,14,1,14,3,14,988,8,14,1,14,1,14,3,14,992,8,14,1,14, - 3,14,995,8,14,1,14,3,14,998,8,14,1,14,1,14,3,14,1002,8,14,1,14,3, - 14,1005,8,14,1,14,1,14,3,14,1009,8,14,1,14,1,14,1,15,1,15,3,15,1015, - 8,15,1,15,1,15,1,15,1,15,3,15,1021,8,15,1,15,1,15,5,15,1025,8,15, - 10,15,12,15,1028,9,15,1,15,1,15,5,15,1032,8,15,10,15,12,15,1035, - 9,15,1,15,1,15,1,16,1,16,3,16,1041,8,16,1,16,3,16,1044,8,16,1,16, - 1,16,3,16,1048,8,16,1,16,1,16,1,16,3,16,1053,8,16,1,16,1,16,5,16, - 1057,8,16,10,16,12,16,1060,9,16,1,16,1,16,1,16,1,16,5,16,1066,8, - 16,10,16,12,16,1069,9,16,1,16,1,16,3,16,1073,8,16,1,17,1,17,1,17, - 3,17,1078,8,17,1,17,1,17,1,17,5,17,1083,8,17,10,17,12,17,1086,9, - 17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,5, - 18,1100,8,18,10,18,12,18,1103,9,18,1,18,1,18,1,19,1,19,3,19,1109, - 8,19,1,19,1,19,3,19,1113,8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,3,19,1123,8,19,1,19,1,19,3,19,1127,8,19,1,19,1,19,3,19,1131, - 8,19,1,19,1,19,3,19,1135,8,19,1,19,1,19,3,19,1139,8,19,1,19,5,19, - 1142,8,19,10,19,12,19,1145,9,19,3,19,1147,8,19,1,19,3,19,1150,8, - 19,1,19,3,19,1153,8,19,1,19,3,19,1156,8,19,1,19,1,19,1,19,1,19,3, - 19,1162,8,19,1,19,1,19,3,19,1166,8,19,1,19,1,19,1,19,1,19,3,19,1172, - 8,19,1,19,5,19,1175,8,19,10,19,12,19,1178,9,19,3,19,1180,8,19,1, - 19,3,19,1183,8,19,3,19,1185,8,19,1,20,1,20,1,20,1,20,1,20,1,20,1, - 20,1,20,1,20,3,20,1196,8,20,1,20,1,20,3,20,1200,8,20,1,20,3,20,1203, - 8,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 3,21,1217,8,21,1,21,3,21,1220,8,21,1,21,1,21,3,21,1224,8,21,1,21, - 3,21,1227,8,21,1,21,1,21,3,21,1231,8,21,1,21,3,21,1234,8,21,1,21, - 1,21,3,21,1238,8,21,1,21,3,21,1241,8,21,1,21,1,21,3,21,1245,8,21, - 1,21,3,21,1248,8,21,1,21,3,21,1251,8,21,1,21,1,21,3,21,1255,8,21, - 1,21,3,21,1258,8,21,1,21,1,21,3,21,1262,8,21,1,21,1,21,1,22,1,22, - 3,22,1268,8,22,1,22,1,22,3,22,1272,8,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,22,1,22,1,22,1,22,3,22,1284,8,22,1,22,1,22,1,23,1,23,3,23, - 1290,8,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,5,24,1299,8,24,10,24, - 12,24,1302,9,24,1,24,1,24,3,24,1306,8,24,1,24,1,24,1,24,1,24,1,24, - 1,24,3,24,1314,8,24,1,25,1,25,1,26,1,26,1,27,1,27,3,27,1322,8,27, - 1,27,1,27,1,27,3,27,1327,8,27,1,27,3,27,1330,8,27,1,27,1,27,1,27, - 3,27,1335,8,27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,1343,8,27,1,27, - 1,27,1,27,3,27,1348,8,27,1,27,1,27,1,27,1,27,3,27,1354,8,27,1,27, - 1,27,1,27,3,27,1359,8,27,1,27,1,27,3,27,1363,8,27,3,27,1365,8,27, - 1,28,3,28,1368,8,28,1,28,1,28,3,28,1372,8,28,1,28,1,28,3,28,1376, - 8,28,1,28,3,28,1379,8,28,1,28,1,28,3,28,1383,8,28,1,28,1,28,3,28, - 1387,8,28,1,28,1,28,3,28,1391,8,28,1,28,1,28,1,28,1,28,3,28,1397, - 8,28,1,28,3,28,1400,8,28,1,29,1,29,1,29,1,29,1,29,3,29,1407,8,29, - 1,30,1,30,1,30,3,30,1412,8,30,1,31,1,31,1,31,1,31,3,31,1418,8,31, - 1,32,1,32,1,32,5,32,1423,8,32,10,32,12,32,1426,9,32,1,32,1,32,1, - 32,3,32,1431,8,32,1,32,1,32,1,32,1,32,5,32,1437,8,32,10,32,12,32, - 1440,9,32,3,32,1442,8,32,1,32,1,32,1,32,5,32,1447,8,32,10,32,12, - 32,1450,9,32,3,32,1452,8,32,3,32,1454,8,32,1,33,1,33,1,33,1,33,3, - 33,1460,8,33,1,34,1,34,1,34,1,34,3,34,1466,8,34,1,34,1,34,1,35,1, - 35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1483, - 8,35,1,36,1,36,1,36,1,36,1,36,3,36,1490,8,36,1,37,1,37,1,37,1,38, - 1,38,3,38,1497,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,3,38,1509,8,38,1,38,1,38,1,38,3,38,1514,8,38,1,38,3,38,1517, - 8,38,1,39,3,39,1520,8,39,1,39,1,39,1,39,1,40,1,40,1,40,1,41,1,41, - 1,41,1,41,1,41,3,41,1533,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,3,41,1546,8,41,1,41,1,41,1,41,3,41,1551,8,41, + 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, + 785,8,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4, + 800,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,811,8,5,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,828,8,6, + 1,7,1,7,1,7,3,7,833,8,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,845,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9, + 1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,872,8,9,1,10, + 1,10,1,10,1,10,1,10,1,10,1,10,3,10,881,8,10,1,11,1,11,1,11,3,11, + 886,8,11,1,11,1,11,5,11,890,8,11,10,11,12,11,893,9,11,1,12,1,12, + 3,12,897,8,12,1,12,1,12,3,12,901,8,12,1,12,1,12,1,12,1,12,1,12,1, + 12,1,12,3,12,910,8,12,1,12,3,12,913,8,12,1,12,3,12,916,8,12,1,12, + 1,12,3,12,920,8,12,1,12,1,12,1,12,1,13,1,13,3,13,927,8,13,1,13,3, + 13,930,8,13,1,13,1,13,1,13,3,13,935,8,13,1,13,1,13,1,13,1,13,5,13, + 941,8,13,10,13,12,13,944,9,13,1,13,1,13,3,13,948,8,13,1,13,1,13, + 1,13,3,13,953,8,13,1,13,5,13,956,8,13,10,13,12,13,959,9,13,1,14, + 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,970,8,14,1,14,3,14, + 973,8,14,1,14,1,14,3,14,977,8,14,1,14,3,14,980,8,14,1,14,1,14,3, + 14,984,8,14,1,14,3,14,987,8,14,1,14,1,14,3,14,991,8,14,1,14,3,14, + 994,8,14,1,14,3,14,997,8,14,1,14,1,14,3,14,1001,8,14,1,14,3,14,1004, + 8,14,1,14,1,14,3,14,1008,8,14,1,14,1,14,1,15,1,15,3,15,1014,8,15, + 1,15,1,15,1,15,1,15,3,15,1020,8,15,1,15,1,15,5,15,1024,8,15,10,15, + 12,15,1027,9,15,1,15,1,15,5,15,1031,8,15,10,15,12,15,1034,9,15,1, + 15,1,15,1,16,1,16,3,16,1040,8,16,1,16,3,16,1043,8,16,1,16,1,16,3, + 16,1047,8,16,1,16,1,16,1,16,3,16,1052,8,16,1,16,1,16,5,16,1056,8, + 16,10,16,12,16,1059,9,16,1,16,1,16,1,16,1,16,5,16,1065,8,16,10,16, + 12,16,1068,9,16,1,16,1,16,3,16,1072,8,16,1,17,1,17,1,17,3,17,1077, + 8,17,1,17,1,17,1,17,5,17,1082,8,17,10,17,12,17,1085,9,17,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,5,18,1099,8, + 18,10,18,12,18,1102,9,18,1,18,1,18,1,19,1,19,3,19,1108,8,19,1,19, + 1,19,3,19,1112,8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19, + 1122,8,19,1,19,1,19,3,19,1126,8,19,1,19,1,19,3,19,1130,8,19,1,19, + 1,19,3,19,1134,8,19,1,19,1,19,3,19,1138,8,19,1,19,5,19,1141,8,19, + 10,19,12,19,1144,9,19,3,19,1146,8,19,1,19,3,19,1149,8,19,1,19,3, + 19,1152,8,19,1,19,3,19,1155,8,19,1,19,1,19,1,19,1,19,3,19,1161,8, + 19,1,19,1,19,3,19,1165,8,19,1,19,1,19,1,19,1,19,3,19,1171,8,19,1, + 19,5,19,1174,8,19,10,19,12,19,1177,9,19,3,19,1179,8,19,1,19,3,19, + 1182,8,19,3,19,1184,8,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, + 1,20,3,20,1195,8,20,1,20,1,20,3,20,1199,8,20,1,20,3,20,1202,8,20, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21, + 1216,8,21,1,21,3,21,1219,8,21,1,21,1,21,3,21,1223,8,21,1,21,3,21, + 1226,8,21,1,21,1,21,3,21,1230,8,21,1,21,3,21,1233,8,21,1,21,1,21, + 3,21,1237,8,21,1,21,3,21,1240,8,21,1,21,1,21,3,21,1244,8,21,1,21, + 3,21,1247,8,21,1,21,3,21,1250,8,21,1,21,1,21,3,21,1254,8,21,1,21, + 3,21,1257,8,21,1,21,1,21,3,21,1261,8,21,1,21,1,21,1,22,1,22,3,22, + 1267,8,22,1,22,1,22,3,22,1271,8,22,1,22,1,22,1,22,1,22,1,22,1,22, + 1,22,1,22,1,22,1,22,3,22,1283,8,22,1,22,1,22,1,23,1,23,3,23,1289, + 8,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,5,24,1298,8,24,10,24,12, + 24,1301,9,24,1,24,1,24,3,24,1305,8,24,1,24,1,24,1,24,1,24,1,24,1, + 24,3,24,1313,8,24,1,25,1,25,1,26,1,26,1,27,1,27,3,27,1321,8,27,1, + 27,1,27,1,27,3,27,1326,8,27,1,27,3,27,1329,8,27,1,27,1,27,1,27,3, + 27,1334,8,27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,1342,8,27,1,27,1, + 27,1,27,3,27,1347,8,27,1,27,1,27,1,27,1,27,3,27,1353,8,27,1,27,1, + 27,1,27,3,27,1358,8,27,1,27,1,27,3,27,1362,8,27,3,27,1364,8,27,1, + 28,3,28,1367,8,28,1,28,1,28,3,28,1371,8,28,1,28,1,28,3,28,1375,8, + 28,1,28,3,28,1378,8,28,1,28,1,28,3,28,1382,8,28,1,28,1,28,3,28,1386, + 8,28,1,28,1,28,3,28,1390,8,28,1,28,1,28,1,28,1,28,3,28,1396,8,28, + 1,28,3,28,1399,8,28,1,29,1,29,1,29,1,29,1,29,3,29,1406,8,29,1,30, + 1,30,1,30,3,30,1411,8,30,1,31,1,31,1,31,1,31,3,31,1417,8,31,1,32, + 1,32,1,32,5,32,1422,8,32,10,32,12,32,1425,9,32,1,32,1,32,1,32,3, + 32,1430,8,32,1,32,1,32,1,32,1,32,5,32,1436,8,32,10,32,12,32,1439, + 9,32,3,32,1441,8,32,1,32,1,32,1,32,5,32,1446,8,32,10,32,12,32,1449, + 9,32,3,32,1451,8,32,3,32,1453,8,32,1,33,1,33,1,33,1,33,3,33,1459, + 8,33,1,34,1,34,1,34,1,34,3,34,1465,8,34,1,34,1,34,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1482,8,35, + 1,36,1,36,1,36,1,36,1,36,3,36,1489,8,36,1,37,1,37,1,37,1,38,1,38, + 3,38,1496,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, + 3,38,1508,8,38,1,38,1,38,1,38,3,38,1513,8,38,1,38,3,38,1516,8,38, + 1,39,3,39,1519,8,39,1,39,1,39,1,39,1,40,1,40,1,40,1,41,1,41,1,41, + 1,41,1,41,3,41,1532,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, + 1,41,1,41,1,41,3,41,1545,8,41,1,41,1,41,1,41,3,41,1550,8,41,1,42, 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,3,42,1567,8,42,1,43,1,43,1,43,1,43,5,43,1573,8,43,10,43,12, - 43,1576,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44,1585,8,44,1, - 44,3,44,1588,8,44,1,44,3,44,1591,8,44,1,45,1,45,5,45,1595,8,45,10, - 45,12,45,1598,9,45,1,45,3,45,1601,8,45,1,45,3,45,1604,8,45,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1615,8,46,1,46,3,46, - 1618,8,46,1,46,1,46,1,46,3,46,1623,8,46,1,46,1,46,1,46,1,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,3,46,1636,8,46,1,46,1,46,1,46,1,46, - 1,46,3,46,1643,8,46,1,46,1,46,1,46,1,46,1,46,3,46,1650,8,46,3,46, - 1652,8,46,1,46,1,46,1,46,1,46,1,46,3,46,1659,8,46,1,47,1,47,3,47, - 1663,8,47,3,47,1665,8,47,1,47,1,47,1,47,3,47,1670,8,47,1,47,3,47, - 1673,8,47,1,47,1,47,5,47,1677,8,47,10,47,12,47,1680,9,47,1,47,1, - 47,3,47,1684,8,47,3,47,1686,8,47,1,47,1,47,3,47,1690,8,47,1,47,3, - 47,1693,8,47,1,47,3,47,1696,8,47,1,47,1,47,5,47,1700,8,47,10,47, - 12,47,1703,9,47,1,47,1,47,3,47,1707,8,47,3,47,1709,8,47,1,47,1,47, - 1,47,3,47,1714,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1721,8,47,3,47, - 1723,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1730,8,47,1,48,1,48,1,48, - 3,48,1735,8,48,1,48,1,48,3,48,1739,8,48,1,48,3,48,1742,8,48,1,49, - 1,49,1,49,1,49,1,49,1,49,3,49,1750,8,49,1,49,1,49,1,49,1,49,1,49, - 1,49,3,49,1758,8,49,3,49,1760,8,49,1,50,1,50,1,50,1,50,1,50,1,50, - 1,50,1,50,3,50,1770,8,50,1,51,1,51,3,51,1774,8,51,1,51,3,51,1777, - 8,51,1,51,1,51,5,51,1781,8,51,10,51,12,51,1784,9,51,1,51,1,51,3, - 51,1788,8,51,1,51,3,51,1791,8,51,1,51,1,51,5,51,1795,8,51,10,51, - 12,51,1798,9,51,3,51,1800,8,51,1,52,1,52,3,52,1804,8,52,1,52,3,52, - 1807,8,52,1,52,1,52,3,52,1811,8,52,1,52,1,52,1,52,3,52,1816,8,52, - 1,52,1,52,1,52,3,52,1821,8,52,1,52,1,52,1,52,3,52,1826,8,52,1,52, - 1,52,3,52,1830,8,52,1,52,1,52,3,52,1834,8,52,1,52,1,52,3,52,1838, - 8,52,1,52,1,52,3,52,1842,8,52,1,52,1,52,3,52,1846,8,52,1,52,1,52, - 3,52,1850,8,52,1,52,1,52,1,52,3,52,1855,8,52,1,52,1,52,1,52,3,52, - 1860,8,52,1,52,1,52,1,52,3,52,1865,8,52,1,52,1,52,1,52,1,52,3,52, - 1871,8,52,1,52,1,52,1,52,3,52,1876,8,52,1,52,1,52,1,52,3,52,1881, - 8,52,1,52,1,52,1,52,3,52,1886,8,52,1,52,1,52,1,52,3,52,1891,8,52, - 1,52,1,52,1,52,3,52,1896,8,52,1,52,1,52,1,52,1,52,3,52,1902,8,52, - 1,52,1,52,1,52,3,52,1907,8,52,1,52,1,52,1,52,3,52,1912,8,52,1,52, - 1,52,1,52,3,52,1917,8,52,1,52,1,52,1,52,3,52,1922,8,52,1,52,1,52, - 1,52,3,52,1927,8,52,1,52,1,52,1,52,3,52,1932,8,52,1,52,1,52,1,52, - 3,52,1937,8,52,1,52,1,52,1,52,1,52,1,52,3,52,1944,8,52,1,52,1,52, - 1,52,3,52,1949,8,52,1,52,1,52,1,52,3,52,1954,8,52,1,52,1,52,1,52, - 3,52,1959,8,52,1,52,1,52,3,52,1963,8,52,1,52,1,52,1,52,3,52,1968, - 8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,1976,8,52,1,52,1,52,1,52, - 3,52,1981,8,52,1,52,1,52,1,52,1,52,3,52,1987,8,52,1,53,1,53,1,54, - 1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,1999,8,55,1,55,1,55,1,55, - 1,55,1,55,3,55,2006,8,55,3,55,2008,8,55,1,55,1,55,1,55,1,55,5,55, - 2014,8,55,10,55,12,55,2017,9,55,1,55,1,55,3,55,2021,8,55,1,56,3, - 56,2024,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2032,8,56,1,56,1, - 56,1,56,1,56,3,56,2038,8,56,1,56,1,56,3,56,2042,8,56,1,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2055,8,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2067,8,56,3,56,2069, - 8,56,1,57,3,57,2072,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2080, - 8,57,1,57,1,57,1,57,1,57,3,57,2086,8,57,1,57,1,57,1,57,1,57,3,57, - 2092,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2103, - 8,58,10,58,12,58,2106,9,58,1,58,1,58,5,58,2110,8,58,10,58,12,58, - 2113,9,58,1,58,1,58,1,58,1,58,5,58,2119,8,58,10,58,12,58,2122,9, - 58,1,58,1,58,3,58,2126,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5, - 58,2135,8,58,10,58,12,58,2138,9,58,1,58,1,58,1,58,1,58,5,58,2144, - 8,58,10,58,12,58,2147,9,58,1,58,1,58,3,58,2151,8,58,1,58,1,58,1, - 58,1,58,1,58,1,58,1,58,1,58,5,58,2161,8,58,10,58,12,58,2164,9,58, - 1,58,1,58,5,58,2168,8,58,10,58,12,58,2171,9,58,1,58,1,58,1,58,1, - 58,5,58,2177,8,58,10,58,12,58,2180,9,58,1,58,1,58,3,58,2184,8,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2194,8,58,10,58,12, - 58,2197,9,58,1,58,1,58,5,58,2201,8,58,10,58,12,58,2204,9,58,1,58, - 1,58,1,58,1,58,5,58,2210,8,58,10,58,12,58,2213,9,58,1,58,1,58,3, - 58,2217,8,58,1,58,1,58,1,58,5,58,2222,8,58,10,58,12,58,2225,9,58, - 1,58,1,58,1,58,1,58,5,58,2231,8,58,10,58,12,58,2234,9,58,1,58,1, - 58,3,58,2238,8,58,3,58,2240,8,58,1,59,1,59,1,59,3,59,2245,8,59,1, - 60,1,60,1,60,1,60,4,60,2251,8,60,11,60,12,60,2252,1,60,1,60,1,61, - 1,61,1,61,5,61,2260,8,61,10,61,12,61,2263,9,61,1,62,3,62,2266,8, - 62,1,62,3,62,2269,8,62,1,62,1,62,3,62,2273,8,62,1,62,1,62,1,62,3, - 62,2278,8,62,1,62,1,62,1,62,1,62,3,62,2284,8,62,1,62,1,62,1,62,1, - 62,3,62,2290,8,62,1,62,1,62,1,62,3,62,2295,8,62,1,62,1,62,1,62,3, - 62,2300,8,62,1,62,1,62,1,62,3,62,2305,8,62,1,62,1,62,1,62,3,62,2310, - 8,62,1,62,3,62,2313,8,62,1,63,1,63,1,63,3,63,2318,8,63,1,63,4,63, - 2321,8,63,11,63,12,63,2322,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1, - 63,3,63,2333,8,63,1,64,1,64,3,64,2337,8,64,1,64,1,64,1,64,1,64,1, - 64,3,64,2344,8,64,1,64,1,64,1,64,3,64,2349,8,64,1,64,3,64,2352,8, - 64,1,64,1,64,1,64,3,64,2357,8,64,1,64,3,64,2360,8,64,1,64,1,64,3, - 64,2364,8,64,1,64,1,64,3,64,2368,8,64,1,65,1,65,1,65,1,65,5,65,2374, - 8,65,10,65,12,65,2377,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1, - 67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,3,67,2395,8,67,1,67,3, - 67,2398,8,67,1,67,3,67,2401,8,67,1,67,1,67,3,67,2405,8,67,1,67,1, - 67,1,68,1,68,1,68,1,68,5,68,2413,8,68,10,68,12,68,2416,9,68,1,69, - 1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2426,8,69,10,69,12,69,2429, - 9,69,1,69,1,69,1,70,1,70,3,70,2435,8,70,1,70,3,70,2438,8,70,1,70, - 1,70,1,70,3,70,2443,8,70,1,70,1,70,1,70,5,70,2448,8,70,10,70,12, - 70,2451,9,70,3,70,2453,8,70,1,70,3,70,2456,8,70,1,71,1,71,1,71,1, - 71,1,71,1,71,1,71,1,71,1,71,3,71,2467,8,71,1,71,3,71,2470,8,71,1, - 71,1,71,3,71,2474,8,71,1,71,1,71,1,72,1,72,1,72,1,72,3,72,2482,8, - 72,1,72,3,72,2485,8,72,1,72,1,72,1,72,3,72,2490,8,72,1,72,1,72,1, - 72,1,72,1,72,1,72,3,72,2498,8,72,1,72,1,72,1,72,1,72,3,72,2504,8, - 72,1,72,1,72,3,72,2508,8,72,1,73,1,73,3,73,2512,8,73,1,73,5,73,2515, - 8,73,10,73,12,73,2518,9,73,1,73,1,73,3,73,2522,8,73,1,73,1,73,1, - 73,1,73,1,73,3,73,2529,8,73,1,73,1,73,3,73,2533,8,73,1,73,1,73,1, - 73,1,73,1,73,1,73,1,73,5,73,2542,8,73,10,73,12,73,2545,9,73,1,73, - 1,73,1,73,1,73,1,73,3,73,2552,8,73,1,73,3,73,2555,8,73,1,73,1,73, - 5,73,2559,8,73,10,73,12,73,2562,9,73,1,73,1,73,1,73,3,73,2567,8, - 73,3,73,2569,8,73,1,73,1,73,1,73,3,73,2574,8,73,1,73,3,73,2577,8, - 73,1,73,1,73,5,73,2581,8,73,10,73,12,73,2584,9,73,1,73,1,73,1,73, - 3,73,2589,8,73,3,73,2591,8,73,1,73,1,73,3,73,2595,8,73,1,73,3,73, - 2598,8,73,1,73,3,73,2601,8,73,1,73,1,73,5,73,2605,8,73,10,73,12, - 73,2608,9,73,1,73,1,73,1,73,3,73,2613,8,73,1,73,3,73,2616,8,73,1, - 73,1,73,5,73,2620,8,73,10,73,12,73,2623,9,73,1,73,1,73,1,73,3,73, - 2628,8,73,3,73,2630,8,73,1,73,1,73,1,73,3,73,2635,8,73,1,73,1,73, - 1,73,1,73,1,73,1,73,3,73,2643,8,73,3,73,2645,8,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,3,73,2654,8,73,1,73,3,73,2657,8,73,1,73,3,73, - 2660,8,73,1,73,1,73,1,73,3,73,2665,8,73,3,73,2667,8,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,3,73,2676,8,73,1,73,3,73,2679,8,73,1,73, - 3,73,2682,8,73,1,73,1,73,1,73,3,73,2687,8,73,3,73,2689,8,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,3,73,2698,8,73,1,73,1,73,1,73,3,73, - 2703,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2711,8,73,1,73,1,73, - 3,73,2715,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2723,8,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2733,8,73,1,73,1,73,1,73, - 3,73,2738,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2745,8,73,1,73,1,73, - 3,73,2749,8,73,1,73,1,73,3,73,2753,8,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2772,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2782,8,73, - 1,73,1,73,1,73,1,73,3,73,2788,8,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2805,8,73,1,73, - 1,73,3,73,2809,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2819,8,73,1,73,1,73,1,73,3,73,2824,8,73,1,73,3,73,2827,8,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,3,73,2836,8,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,3,73,2847,8,73,1,73,1,73,1,73,1,73,5,73, - 2853,8,73,10,73,12,73,2856,9,73,1,73,1,73,1,73,3,73,2861,8,73,1, - 74,1,74,1,74,1,74,1,74,1,74,5,74,2869,8,74,10,74,12,74,2872,9,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2883,8,74,1,74, - 1,74,1,74,1,74,1,74,3,74,2890,8,74,1,74,1,74,1,74,1,74,1,74,3,74, - 2897,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 5,74,2910,8,74,10,74,12,74,2913,9,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,1,74,1,74,1,74,3,74,2925,8,74,1,74,1,74,1,74,1,74,3,74,2931, - 8,74,1,74,1,74,1,74,1,74,3,74,2937,8,74,1,74,1,74,1,74,1,74,3,74, - 2943,8,74,1,74,1,74,1,74,1,74,3,74,2949,8,74,1,74,1,74,1,74,1,74, - 3,74,2955,8,74,1,74,1,74,1,74,1,74,3,74,2961,8,74,1,75,1,75,1,75, - 3,75,2966,8,75,1,75,1,75,1,76,1,76,1,76,3,76,2973,8,76,1,76,1,76, - 1,77,1,77,1,77,3,77,2980,8,77,1,77,1,77,1,77,1,77,1,77,3,77,2987, - 8,77,1,77,1,77,1,77,3,77,2992,8,77,1,77,5,77,2995,8,77,10,77,12, - 77,2998,9,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1, - 79,3,79,3011,8,79,1,79,1,79,1,80,1,80,1,80,3,80,3018,8,80,1,80,1, - 80,1,81,1,81,1,81,3,81,3025,8,81,1,81,1,81,1,82,1,82,3,82,3031,8, - 82,1,82,1,82,3,82,3035,8,82,1,82,1,82,3,82,3039,8,82,1,83,1,83,1, - 83,1,83,1,83,3,83,3046,8,83,1,83,3,83,3049,8,83,1,84,1,84,1,84,3, - 84,3054,8,84,1,84,1,84,1,85,1,85,1,85,3,85,3061,8,85,1,85,1,85,1, - 85,5,85,3066,8,85,10,85,12,85,3069,9,85,1,85,3,85,3072,8,85,1,86, - 1,86,1,86,3,86,3077,8,86,1,86,1,86,1,86,5,86,3082,8,86,10,86,12, - 86,3085,9,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,5,87,3095,8, - 87,10,87,12,87,3098,9,87,3,87,3100,8,87,1,87,1,87,1,87,3,87,3105, - 8,87,1,87,1,87,1,87,3,87,3110,8,87,5,87,3112,8,87,10,87,12,87,3115, - 9,87,1,87,1,87,1,87,3,87,3120,8,87,1,88,1,88,1,88,1,88,1,88,5,88, - 3127,8,88,10,88,12,88,3130,9,88,1,89,1,89,1,89,1,89,1,90,1,90,3, - 90,3138,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,3,91,3147,8,91,1, - 91,3,91,3150,8,91,1,92,1,92,3,92,3154,8,92,1,93,1,93,1,93,1,94,1, - 94,1,94,1,94,3,94,3163,8,94,1,95,1,95,3,95,3167,8,95,1,95,3,95,3170, - 8,95,1,95,3,95,3173,8,95,1,95,1,95,1,95,1,95,3,95,3179,8,95,1,95, - 3,95,3182,8,95,1,95,1,95,3,95,3186,8,95,1,95,3,95,3189,8,95,1,95, - 1,95,3,95,3193,8,95,1,95,3,95,3196,8,95,1,95,1,95,1,95,1,95,5,95, - 3202,8,95,10,95,12,95,3205,9,95,3,95,3207,8,95,1,95,1,95,1,95,1, - 95,1,95,1,95,1,95,5,95,3216,8,95,10,95,12,95,3219,9,95,3,95,3221, - 8,95,1,96,1,96,1,96,3,96,3226,8,96,1,96,3,96,3229,8,96,1,96,1,96, - 1,96,3,96,3234,8,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96, - 3244,8,96,1,96,1,96,1,96,3,96,3249,8,96,1,96,1,96,4,96,3253,8,96, - 11,96,12,96,3254,3,96,3257,8,96,1,96,1,96,4,96,3261,8,96,11,96,12, - 96,3262,3,96,3265,8,96,1,96,1,96,1,96,1,96,3,96,3271,8,96,1,96,1, - 96,1,96,1,96,5,96,3277,8,96,10,96,12,96,3280,9,96,1,96,1,96,3,96, - 3284,8,96,1,96,1,96,1,96,1,96,5,96,3290,8,96,10,96,12,96,3293,9, - 96,3,96,3295,8,96,1,97,1,97,1,97,3,97,3300,8,97,1,97,3,97,3303,8, - 97,1,97,1,97,1,97,3,97,3308,8,97,1,97,1,97,1,97,1,97,1,97,1,97,3, - 97,3316,8,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,3324,8,97,1,97,1, - 97,1,97,1,97,3,97,3330,8,97,1,97,1,97,1,97,1,97,5,97,3336,8,97,10, - 97,12,97,3339,9,97,1,97,1,97,3,97,3343,8,97,1,97,1,97,1,97,1,97, - 5,97,3349,8,97,10,97,12,97,3352,9,97,3,97,3354,8,97,1,98,1,98,3, - 98,3358,8,98,1,98,3,98,3361,8,98,1,98,1,98,1,98,1,98,1,98,1,98,3, - 98,3369,8,98,1,98,1,98,1,98,1,98,3,98,3375,8,98,1,98,1,98,1,98,1, - 98,1,98,5,98,3382,8,98,10,98,12,98,3385,9,98,3,98,3387,8,98,1,99, - 1,99,3,99,3391,8,99,1,99,1,99,3,99,3395,8,99,1,99,1,99,3,99,3399, - 8,99,1,99,4,99,3402,8,99,11,99,12,99,3403,1,99,1,99,3,99,3408,8, - 99,1,99,1,99,3,99,3412,8,99,3,99,3414,8,99,1,99,3,99,3417,8,99,1, - 99,3,99,3420,8,99,1,99,3,99,3423,8,99,1,99,1,99,4,99,3427,8,99,11, - 99,12,99,3428,1,99,1,99,3,99,3433,8,99,1,99,3,99,3436,8,99,1,99, - 3,99,3439,8,99,1,99,3,99,3442,8,99,1,99,3,99,3445,8,99,1,99,1,99, - 1,99,4,99,3450,8,99,11,99,12,99,3451,3,99,3454,8,99,1,100,1,100, - 3,100,3458,8,100,1,101,1,101,1,101,3,101,3463,8,101,1,101,1,101, - 1,101,1,101,3,101,3469,8,101,1,101,5,101,3472,8,101,10,101,12,101, - 3475,9,101,1,102,1,102,1,102,1,102,3,102,3481,8,102,1,102,1,102, - 1,102,1,102,3,102,3487,8,102,1,102,5,102,3490,8,102,10,102,12,102, - 3493,9,102,3,102,3495,8,102,1,103,1,103,1,103,1,103,3,103,3501,8, - 103,1,104,1,104,3,104,3505,8,104,1,105,1,105,1,105,1,105,1,105,1, - 105,3,105,3513,8,105,1,106,1,106,3,106,3517,8,106,1,106,3,106,3520, - 8,106,1,106,3,106,3523,8,106,1,106,1,106,1,106,3,106,3528,8,106, - 1,106,3,106,3531,8,106,1,106,1,106,1,106,1,106,1,106,3,106,3538, - 8,106,1,106,1,106,3,106,3542,8,106,1,106,3,106,3545,8,106,1,106, - 1,106,3,106,3549,8,106,1,107,1,107,3,107,3553,8,107,1,107,3,107, - 3556,8,107,1,107,3,107,3559,8,107,1,107,1,107,1,107,3,107,3564,8, - 107,1,107,1,107,1,107,1,107,3,107,3570,8,107,5,107,3572,8,107,10, - 107,12,107,3575,9,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107, - 3,107,3584,8,107,1,107,1,107,1,107,1,107,3,107,3590,8,107,5,107, - 3592,8,107,10,107,12,107,3595,9,107,1,107,1,107,1,107,3,107,3600, - 8,107,1,107,1,107,3,107,3604,8,107,1,108,1,108,1,108,1,108,3,108, - 3610,8,108,1,108,3,108,3613,8,108,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,109,3,109,3625,8,109,1,109,1,109,3,109, - 3629,8,109,1,109,1,109,3,109,3633,8,109,1,110,1,110,1,110,1,110, - 1,110,1,110,3,110,3641,8,110,1,110,1,110,3,110,3645,8,110,1,111, - 1,111,1,111,1,111,1,112,1,112,3,112,3653,8,112,1,112,3,112,3656, - 8,112,1,112,1,112,3,112,3660,8,112,1,112,3,112,3663,8,112,1,112, - 1,112,1,112,1,112,5,112,3669,8,112,10,112,12,112,3672,9,112,1,112, - 1,112,3,112,3676,8,112,1,112,3,112,3679,8,112,1,112,3,112,3682,8, - 112,1,113,1,113,3,113,3686,8,113,1,113,3,113,3689,8,113,1,113,1, - 113,1,113,1,113,1,113,5,113,3696,8,113,10,113,12,113,3699,9,113, - 1,113,1,113,3,113,3703,8,113,1,114,1,114,1,114,1,114,1,114,5,114, - 3710,8,114,10,114,12,114,3713,9,114,1,115,1,115,3,115,3717,8,115, - 1,116,1,116,1,116,5,116,3722,8,116,10,116,12,116,3725,9,116,1,117, - 1,117,5,117,3729,8,117,10,117,12,117,3732,9,117,1,117,1,117,1,117, - 5,117,3737,8,117,10,117,12,117,3740,9,117,1,117,1,117,1,117,3,117, - 3745,8,117,1,118,1,118,1,118,1,118,1,118,1,118,3,118,3753,8,118, - 1,118,3,118,3756,8,118,1,118,3,118,3759,8,118,1,118,1,118,1,118, - 5,118,3764,8,118,10,118,12,118,3767,9,118,3,118,3769,8,118,1,118, - 1,118,1,118,1,118,1,118,3,118,3776,8,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,3784,8,118,1,119,1,119,1,119,1,119,3,119,3790, - 8,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,3,120, - 3801,8,120,1,121,3,121,3804,8,121,1,121,1,121,3,121,3808,8,121,1, - 121,1,121,5,121,3812,8,121,10,121,12,121,3815,9,121,1,121,1,121, - 1,121,1,121,5,121,3821,8,121,10,121,12,121,3824,9,121,1,121,1,121, - 3,121,3828,8,121,1,121,1,121,3,121,3832,8,121,1,121,1,121,5,121, - 3836,8,121,10,121,12,121,3839,9,121,1,121,1,121,1,121,3,121,3844, - 8,121,3,121,3846,8,121,1,121,1,121,3,121,3850,8,121,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,3,122,3859,8,122,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,3,123,3869,8,123,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,3,124,3879,8,124,1,125,1,125,5,125, - 3883,8,125,10,125,12,125,3886,9,125,1,125,1,125,3,125,3890,8,125, - 1,125,1,125,3,125,3894,8,125,1,125,3,125,3897,8,125,1,125,3,125, - 3900,8,125,1,125,3,125,3903,8,125,1,125,3,125,3906,8,125,1,125,1, - 125,5,125,3910,8,125,10,125,12,125,3913,9,125,1,125,1,125,1,125, - 3,125,3918,8,125,1,125,3,125,3921,8,125,1,125,3,125,3924,8,125,1, - 125,3,125,3927,8,125,1,125,3,125,3930,8,125,1,125,3,125,3933,8,125, - 3,125,3935,8,125,1,126,1,126,5,126,3939,8,126,10,126,12,126,3942, - 9,126,1,126,1,126,1,126,3,126,3947,8,126,1,126,3,126,3950,8,126, - 1,126,3,126,3953,8,126,1,126,3,126,3956,8,126,1,126,3,126,3959,8, - 126,1,126,3,126,3962,8,126,1,127,1,127,3,127,3966,8,127,1,127,1, - 127,1,128,1,128,3,128,3972,8,128,1,128,1,128,3,128,3976,8,128,1, - 129,1,129,1,129,1,129,1,129,1,129,3,129,3984,8,129,1,129,1,129,3, - 129,3988,8,129,1,129,3,129,3991,8,129,3,129,3993,8,129,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,4006, - 8,130,1,130,3,130,4009,8,130,1,131,1,131,1,131,5,131,4014,8,131, - 10,131,12,131,4017,9,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 3,132,4026,8,132,1,132,3,132,4029,8,132,1,132,1,132,1,132,3,132, - 4034,8,132,3,132,4036,8,132,1,132,1,132,3,132,4040,8,132,1,132,1, - 132,1,132,1,132,1,132,1,132,3,132,4048,8,132,1,133,1,133,1,133,1, - 133,3,133,4054,8,133,1,133,1,133,1,133,1,134,1,134,1,134,1,134,3, - 134,4063,8,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1, - 135,1,135,1,135,3,135,4076,8,135,1,136,1,136,3,136,4080,8,136,1, - 136,1,136,5,136,4084,8,136,10,136,12,136,4087,9,136,1,137,1,137, - 1,137,1,137,1,137,1,137,3,137,4095,8,137,1,137,3,137,4098,8,137, - 1,137,1,137,3,137,4102,8,137,1,137,3,137,4105,8,137,1,137,1,137, - 3,137,4109,8,137,1,137,1,137,3,137,4113,8,137,1,137,3,137,4116,8, - 137,3,137,4118,8,137,1,138,1,138,1,138,1,138,5,138,4124,8,138,10, - 138,12,138,4127,9,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,3,138,4138,8,138,1,138,1,138,4,138,4142,8,138,11,138, - 12,138,4143,3,138,4146,8,138,1,138,1,138,4,138,4150,8,138,11,138, - 12,138,4151,3,138,4154,8,138,3,138,4156,8,138,1,139,1,139,1,139, - 1,139,3,139,4162,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 4170,8,139,1,140,1,140,1,140,1,140,1,140,1,140,3,140,4178,8,140, - 1,141,1,141,3,141,4182,8,141,1,141,1,141,3,141,4186,8,141,1,142, - 1,142,1,142,1,142,1,142,5,142,4193,8,142,10,142,12,142,4196,9,142, - 1,142,1,142,3,142,4200,8,142,1,143,1,143,1,143,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,5,144, - 4218,8,144,10,144,12,144,4221,9,144,1,145,1,145,3,145,4225,8,145, - 1,146,1,146,1,146,1,146,3,146,4231,8,146,1,146,1,146,1,146,1,146, - 1,146,3,146,4238,8,146,1,147,1,147,1,147,3,147,4243,8,147,1,148, - 1,148,1,148,1,148,1,148,5,148,4250,8,148,10,148,12,148,4253,9,148, - 3,148,4255,8,148,1,149,1,149,3,149,4259,8,149,1,150,1,150,3,150, - 4263,8,150,1,150,1,150,3,150,4267,8,150,1,150,3,150,4270,8,150,1, - 150,3,150,4273,8,150,1,150,3,150,4276,8,150,1,151,1,151,3,151,4280, - 8,151,1,151,1,151,3,151,4284,8,151,1,151,3,151,4287,8,151,1,151, - 3,151,4290,8,151,1,151,3,151,4293,8,151,1,152,1,152,1,152,1,153, - 1,153,3,153,4300,8,153,1,153,1,153,3,153,4304,8,153,1,153,1,153, - 1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155,5,155,4317, - 8,155,10,155,12,155,4320,9,155,1,155,3,155,4323,8,155,1,156,1,156, - 1,156,1,157,1,157,1,157,1,157,1,157,1,158,1,158,3,158,4335,8,158, - 1,158,1,158,1,158,1,158,5,158,4341,8,158,10,158,12,158,4344,9,158, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,4353,8,159,1,160, - 1,160,3,160,4357,8,160,1,160,3,160,4360,8,160,1,160,1,160,1,161, - 1,161,3,161,4366,8,161,1,161,3,161,4369,8,161,1,161,3,161,4372,8, - 161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,3,162,4381,8,162,1, - 163,1,163,1,163,1,163,1,163,1,163,1,163,3,163,4390,8,163,1,164,1, - 164,1,164,1,164,1,164,1,164,5,164,4398,8,164,10,164,12,164,4401, - 9,164,1,164,3,164,4404,8,164,1,165,1,165,1,165,1,165,1,165,1,165, - 5,165,4412,8,165,10,165,12,165,4415,9,165,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,3,166,4424,8,166,1,167,1,167,1,167,1,168,1,168, - 1,168,3,168,4432,8,168,1,168,3,168,4435,8,168,1,169,1,169,1,169, - 1,169,1,169,5,169,4442,8,169,10,169,12,169,4445,9,169,3,169,4447, - 8,169,1,169,1,169,3,169,4451,8,169,1,169,5,169,4454,8,169,10,169, - 12,169,4457,9,169,1,169,3,169,4460,8,169,1,170,1,170,1,170,1,170, - 1,170,5,170,4467,8,170,10,170,12,170,4470,9,170,3,170,4472,8,170, - 1,171,1,171,1,171,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173, + 3,42,1566,8,42,1,43,1,43,1,43,1,43,5,43,1572,8,43,10,43,12,43,1575, + 9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44,1584,8,44,1,44,3,44, + 1587,8,44,1,44,3,44,1590,8,44,1,45,1,45,5,45,1594,8,45,10,45,12, + 45,1597,9,45,1,45,3,45,1600,8,45,1,45,3,45,1603,8,45,1,46,1,46,1, + 46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1614,8,46,1,46,3,46,1617,8, + 46,1,46,1,46,1,46,3,46,1622,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1, + 46,1,46,1,46,1,46,1,46,3,46,1635,8,46,1,46,1,46,1,46,1,46,1,46,3, + 46,1642,8,46,1,46,1,46,1,46,1,46,1,46,3,46,1649,8,46,3,46,1651,8, + 46,1,46,1,46,1,46,1,46,1,46,3,46,1658,8,46,1,47,1,47,3,47,1662,8, + 47,3,47,1664,8,47,1,47,1,47,1,47,3,47,1669,8,47,1,47,3,47,1672,8, + 47,1,47,1,47,5,47,1676,8,47,10,47,12,47,1679,9,47,1,47,1,47,3,47, + 1683,8,47,3,47,1685,8,47,1,47,1,47,3,47,1689,8,47,1,47,3,47,1692, + 8,47,1,47,3,47,1695,8,47,1,47,1,47,5,47,1699,8,47,10,47,12,47,1702, + 9,47,1,47,1,47,3,47,1706,8,47,3,47,1708,8,47,1,47,1,47,1,47,3,47, + 1713,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1720,8,47,3,47,1722,8,47, + 1,47,1,47,1,47,1,47,1,47,3,47,1729,8,47,1,48,1,48,1,48,3,48,1734, + 8,48,1,48,1,48,3,48,1738,8,48,1,48,3,48,1741,8,48,1,49,1,49,1,49, + 1,49,1,49,1,49,3,49,1749,8,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49, + 1757,8,49,3,49,1759,8,49,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50, + 3,50,1769,8,50,1,51,1,51,3,51,1773,8,51,1,51,3,51,1776,8,51,1,51, + 1,51,5,51,1780,8,51,10,51,12,51,1783,9,51,1,51,1,51,3,51,1787,8, + 51,1,51,3,51,1790,8,51,1,51,1,51,5,51,1794,8,51,10,51,12,51,1797, + 9,51,3,51,1799,8,51,1,52,1,52,3,52,1803,8,52,1,52,3,52,1806,8,52, + 1,52,1,52,3,52,1810,8,52,1,52,1,52,1,52,3,52,1815,8,52,1,52,1,52, + 1,52,3,52,1820,8,52,1,52,1,52,1,52,3,52,1825,8,52,1,52,1,52,3,52, + 1829,8,52,1,52,1,52,3,52,1833,8,52,1,52,1,52,3,52,1837,8,52,1,52, + 1,52,3,52,1841,8,52,1,52,1,52,3,52,1845,8,52,1,52,1,52,3,52,1849, + 8,52,1,52,1,52,1,52,3,52,1854,8,52,1,52,1,52,1,52,3,52,1859,8,52, + 1,52,1,52,1,52,3,52,1864,8,52,1,52,1,52,1,52,1,52,3,52,1870,8,52, + 1,52,1,52,1,52,3,52,1875,8,52,1,52,1,52,1,52,3,52,1880,8,52,1,52, + 1,52,1,52,3,52,1885,8,52,1,52,1,52,1,52,3,52,1890,8,52,1,52,1,52, + 1,52,3,52,1895,8,52,1,52,1,52,1,52,1,52,3,52,1901,8,52,1,52,1,52, + 1,52,3,52,1906,8,52,1,52,1,52,1,52,3,52,1911,8,52,1,52,1,52,1,52, + 3,52,1916,8,52,1,52,1,52,1,52,3,52,1921,8,52,1,52,1,52,1,52,3,52, + 1926,8,52,1,52,1,52,1,52,3,52,1931,8,52,1,52,1,52,1,52,3,52,1936, + 8,52,1,52,1,52,1,52,1,52,1,52,3,52,1943,8,52,1,52,1,52,1,52,3,52, + 1948,8,52,1,52,1,52,1,52,3,52,1953,8,52,1,52,1,52,1,52,3,52,1958, + 8,52,1,52,1,52,3,52,1962,8,52,1,52,1,52,1,52,3,52,1967,8,52,1,52, + 1,52,1,52,1,52,1,52,1,52,3,52,1975,8,52,1,52,1,52,1,52,3,52,1980, + 8,52,1,52,1,52,1,52,1,52,3,52,1986,8,52,1,53,1,53,1,54,1,54,1,54, + 1,55,1,55,1,55,1,55,1,55,3,55,1998,8,55,1,55,1,55,1,55,1,55,1,55, + 3,55,2005,8,55,3,55,2007,8,55,1,55,1,55,1,55,1,55,5,55,2013,8,55, + 10,55,12,55,2016,9,55,1,55,1,55,3,55,2020,8,55,1,56,3,56,2023,8, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2031,8,56,1,56,1,56,1,56,1, + 56,3,56,2037,8,56,1,56,1,56,3,56,2041,8,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2054,8,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2066,8,56,3,56,2068,8,56,1, + 57,3,57,2071,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2079,8,57,1, + 57,1,57,1,57,1,57,3,57,2085,8,57,1,57,1,57,1,57,1,57,3,57,2091,8, + 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2102,8,58,10, + 58,12,58,2105,9,58,1,58,1,58,5,58,2109,8,58,10,58,12,58,2112,9,58, + 1,58,1,58,1,58,1,58,5,58,2118,8,58,10,58,12,58,2121,9,58,1,58,1, + 58,3,58,2125,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2134,8, + 58,10,58,12,58,2137,9,58,1,58,1,58,1,58,1,58,5,58,2143,8,58,10,58, + 12,58,2146,9,58,1,58,1,58,3,58,2150,8,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,5,58,2160,8,58,10,58,12,58,2163,9,58,1,58,1,58,5, + 58,2167,8,58,10,58,12,58,2170,9,58,1,58,1,58,1,58,1,58,5,58,2176, + 8,58,10,58,12,58,2179,9,58,1,58,1,58,3,58,2183,8,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,5,58,2193,8,58,10,58,12,58,2196,9,58, + 1,58,1,58,5,58,2200,8,58,10,58,12,58,2203,9,58,1,58,1,58,1,58,1, + 58,5,58,2209,8,58,10,58,12,58,2212,9,58,1,58,1,58,3,58,2216,8,58, + 1,58,1,58,1,58,5,58,2221,8,58,10,58,12,58,2224,9,58,1,58,1,58,1, + 58,1,58,5,58,2230,8,58,10,58,12,58,2233,9,58,1,58,1,58,3,58,2237, + 8,58,3,58,2239,8,58,1,59,1,59,1,59,3,59,2244,8,59,1,60,1,60,1,60, + 1,60,4,60,2250,8,60,11,60,12,60,2251,1,60,1,60,1,61,1,61,1,61,5, + 61,2259,8,61,10,61,12,61,2262,9,61,1,62,3,62,2265,8,62,1,62,3,62, + 2268,8,62,1,62,1,62,3,62,2272,8,62,1,62,1,62,1,62,3,62,2277,8,62, + 1,62,1,62,1,62,1,62,3,62,2283,8,62,1,62,1,62,1,62,1,62,3,62,2289, + 8,62,1,62,1,62,1,62,3,62,2294,8,62,1,62,1,62,1,62,3,62,2299,8,62, + 1,62,1,62,1,62,3,62,2304,8,62,1,62,1,62,1,62,3,62,2309,8,62,1,62, + 3,62,2312,8,62,1,63,1,63,1,63,3,63,2317,8,63,1,63,4,63,2320,8,63, + 11,63,12,63,2321,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2332, + 8,63,1,64,1,64,3,64,2336,8,64,1,64,1,64,1,64,1,64,1,64,3,64,2343, + 8,64,1,64,1,64,1,64,3,64,2348,8,64,1,64,3,64,2351,8,64,1,64,1,64, + 1,64,3,64,2356,8,64,1,64,3,64,2359,8,64,1,64,1,64,3,64,2363,8,64, + 1,64,1,64,3,64,2367,8,64,1,65,1,65,1,65,1,65,5,65,2373,8,65,10,65, + 12,65,2376,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67, + 1,67,1,67,1,67,1,67,1,67,1,67,3,67,2394,8,67,1,67,3,67,2397,8,67, + 1,67,3,67,2400,8,67,1,67,1,67,3,67,2404,8,67,1,67,1,67,1,68,1,68, + 1,68,1,68,5,68,2412,8,68,10,68,12,68,2415,9,68,1,69,1,69,1,69,1, + 69,1,69,1,69,1,69,1,69,5,69,2425,8,69,10,69,12,69,2428,9,69,1,69, + 1,69,1,70,1,70,3,70,2434,8,70,1,70,3,70,2437,8,70,1,70,1,70,1,70, + 3,70,2442,8,70,1,70,1,70,1,70,5,70,2447,8,70,10,70,12,70,2450,9, + 70,3,70,2452,8,70,1,70,3,70,2455,8,70,1,71,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,3,71,2466,8,71,1,71,3,71,2469,8,71,1,71,1,71,3, + 71,2473,8,71,1,71,1,71,1,72,1,72,1,72,1,72,3,72,2481,8,72,1,72,3, + 72,2484,8,72,1,72,1,72,1,72,3,72,2489,8,72,1,72,1,72,1,72,1,72,1, + 72,1,72,3,72,2497,8,72,1,72,1,72,1,72,1,72,3,72,2503,8,72,1,72,1, + 72,3,72,2507,8,72,1,73,1,73,3,73,2511,8,73,1,73,5,73,2514,8,73,10, + 73,12,73,2517,9,73,1,73,1,73,3,73,2521,8,73,1,73,1,73,1,73,1,73, + 1,73,3,73,2528,8,73,1,73,1,73,3,73,2532,8,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,5,73,2541,8,73,10,73,12,73,2544,9,73,1,73,1,73,1, + 73,1,73,1,73,3,73,2551,8,73,1,73,3,73,2554,8,73,1,73,1,73,5,73,2558, + 8,73,10,73,12,73,2561,9,73,1,73,1,73,1,73,3,73,2566,8,73,3,73,2568, + 8,73,1,73,1,73,1,73,3,73,2573,8,73,1,73,3,73,2576,8,73,1,73,1,73, + 5,73,2580,8,73,10,73,12,73,2583,9,73,1,73,1,73,1,73,3,73,2588,8, + 73,3,73,2590,8,73,1,73,1,73,3,73,2594,8,73,1,73,3,73,2597,8,73,1, + 73,3,73,2600,8,73,1,73,1,73,5,73,2604,8,73,10,73,12,73,2607,9,73, + 1,73,1,73,1,73,3,73,2612,8,73,1,73,3,73,2615,8,73,1,73,1,73,5,73, + 2619,8,73,10,73,12,73,2622,9,73,1,73,1,73,1,73,3,73,2627,8,73,3, + 73,2629,8,73,1,73,1,73,1,73,3,73,2634,8,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2642,8,73,3,73,2644,8,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2653,8,73,1,73,3,73,2656,8,73,1,73,3,73,2659,8,73,1, + 73,1,73,1,73,3,73,2664,8,73,3,73,2666,8,73,1,73,1,73,1,73,1,73,1, + 73,1,73,1,73,3,73,2675,8,73,1,73,3,73,2678,8,73,1,73,3,73,2681,8, + 73,1,73,1,73,1,73,3,73,2686,8,73,3,73,2688,8,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,3,73,2697,8,73,1,73,1,73,1,73,3,73,2702,8,73,1, + 73,1,73,1,73,1,73,1,73,1,73,3,73,2710,8,73,1,73,1,73,3,73,2714,8, + 73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2722,8,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,3,73,2732,8,73,1,73,1,73,1,73,3,73,2737,8, + 73,1,73,1,73,1,73,1,73,1,73,3,73,2744,8,73,1,73,1,73,3,73,2748,8, + 73,1,73,1,73,3,73,2752,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2771,8,73,1, + 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2781,8,73,1,73,1,73,1, + 73,1,73,3,73,2787,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2804,8,73,1,73,1,73,3,73,2808, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2818,8,73,1,73, + 1,73,1,73,3,73,2823,8,73,1,73,3,73,2826,8,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,3,73,2835,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,3,73,2846,8,73,1,73,1,73,1,73,1,73,5,73,2852,8,73,10,73, + 12,73,2855,9,73,1,73,1,73,1,73,3,73,2860,8,73,1,74,1,74,1,74,1,74, + 1,74,1,74,5,74,2868,8,74,10,74,12,74,2871,9,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,3,74,2882,8,74,1,74,1,74,1,74,1,74,1, + 74,3,74,2889,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2896,8,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2909,8,74,10, + 74,12,74,2912,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, + 1,74,3,74,2924,8,74,1,74,1,74,1,74,1,74,3,74,2930,8,74,1,74,1,74, + 1,74,1,74,3,74,2936,8,74,1,74,1,74,1,74,1,74,3,74,2942,8,74,1,74, + 1,74,1,74,1,74,3,74,2948,8,74,1,74,1,74,1,74,1,74,3,74,2954,8,74, + 1,74,1,74,1,74,1,74,3,74,2960,8,74,1,75,1,75,1,75,3,75,2965,8,75, + 1,75,1,75,1,76,1,76,1,76,3,76,2972,8,76,1,76,1,76,1,77,1,77,1,77, + 3,77,2979,8,77,1,77,1,77,1,77,1,77,1,77,3,77,2986,8,77,1,77,1,77, + 1,77,3,77,2991,8,77,1,77,5,77,2994,8,77,10,77,12,77,2997,9,77,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1,79,3,79,3010,8, + 79,1,79,1,79,1,80,1,80,1,80,3,80,3017,8,80,1,80,1,80,1,81,1,81,1, + 81,3,81,3024,8,81,1,81,1,81,1,82,1,82,3,82,3030,8,82,1,82,1,82,3, + 82,3034,8,82,1,82,1,82,3,82,3038,8,82,1,83,1,83,1,83,1,83,1,83,3, + 83,3045,8,83,1,83,3,83,3048,8,83,1,84,1,84,1,84,3,84,3053,8,84,1, + 84,1,84,1,85,1,85,1,85,3,85,3060,8,85,1,85,1,85,1,85,5,85,3065,8, + 85,10,85,12,85,3068,9,85,1,85,3,85,3071,8,85,1,86,1,86,1,86,3,86, + 3076,8,86,1,86,1,86,1,86,5,86,3081,8,86,10,86,12,86,3084,9,86,1, + 87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,5,87,3094,8,87,10,87,12,87, + 3097,9,87,3,87,3099,8,87,1,87,1,87,1,87,3,87,3104,8,87,1,87,1,87, + 1,87,3,87,3109,8,87,5,87,3111,8,87,10,87,12,87,3114,9,87,1,87,1, + 87,1,87,3,87,3119,8,87,1,88,1,88,1,88,1,88,1,88,5,88,3126,8,88,10, + 88,12,88,3129,9,88,1,89,1,89,1,89,1,89,1,90,1,90,3,90,3137,8,90, + 1,90,1,90,1,91,1,91,1,91,1,91,1,91,3,91,3146,8,91,1,91,3,91,3149, + 8,91,1,92,1,92,3,92,3153,8,92,1,93,1,93,1,93,1,94,1,94,1,94,1,94, + 3,94,3162,8,94,1,95,1,95,3,95,3166,8,95,1,95,3,95,3169,8,95,1,95, + 3,95,3172,8,95,1,95,1,95,1,95,1,95,3,95,3178,8,95,1,95,3,95,3181, + 8,95,1,95,1,95,3,95,3185,8,95,1,95,3,95,3188,8,95,1,95,1,95,3,95, + 3192,8,95,1,95,3,95,3195,8,95,1,95,1,95,1,95,1,95,5,95,3201,8,95, + 10,95,12,95,3204,9,95,3,95,3206,8,95,1,95,1,95,1,95,1,95,1,95,1, + 95,1,95,5,95,3215,8,95,10,95,12,95,3218,9,95,3,95,3220,8,95,1,96, + 1,96,1,96,3,96,3225,8,96,1,96,3,96,3228,8,96,1,96,1,96,1,96,3,96, + 3233,8,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96,3243,8,96, + 1,96,1,96,1,96,3,96,3248,8,96,1,96,1,96,4,96,3252,8,96,11,96,12, + 96,3253,3,96,3256,8,96,1,96,1,96,4,96,3260,8,96,11,96,12,96,3261, + 3,96,3264,8,96,1,96,1,96,1,96,1,96,3,96,3270,8,96,1,96,1,96,1,96, + 1,96,5,96,3276,8,96,10,96,12,96,3279,9,96,1,96,1,96,3,96,3283,8, + 96,1,96,1,96,1,96,1,96,5,96,3289,8,96,10,96,12,96,3292,9,96,3,96, + 3294,8,96,1,97,1,97,1,97,3,97,3299,8,97,1,97,3,97,3302,8,97,1,97, + 1,97,1,97,3,97,3307,8,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,3315, + 8,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,3323,8,97,1,97,1,97,1,97, + 1,97,3,97,3329,8,97,1,97,1,97,1,97,1,97,5,97,3335,8,97,10,97,12, + 97,3338,9,97,1,97,1,97,3,97,3342,8,97,1,97,1,97,1,97,1,97,5,97,3348, + 8,97,10,97,12,97,3351,9,97,3,97,3353,8,97,1,98,1,98,3,98,3357,8, + 98,1,98,3,98,3360,8,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3368,8, + 98,1,98,1,98,1,98,1,98,3,98,3374,8,98,1,98,1,98,1,98,1,98,1,98,5, + 98,3381,8,98,10,98,12,98,3384,9,98,3,98,3386,8,98,1,99,1,99,3,99, + 3390,8,99,1,99,1,99,3,99,3394,8,99,1,99,1,99,3,99,3398,8,99,1,99, + 4,99,3401,8,99,11,99,12,99,3402,1,99,1,99,3,99,3407,8,99,1,99,1, + 99,3,99,3411,8,99,3,99,3413,8,99,1,99,3,99,3416,8,99,1,99,3,99,3419, + 8,99,1,99,3,99,3422,8,99,1,99,1,99,4,99,3426,8,99,11,99,12,99,3427, + 1,99,1,99,3,99,3432,8,99,1,99,3,99,3435,8,99,1,99,3,99,3438,8,99, + 1,99,3,99,3441,8,99,1,99,3,99,3444,8,99,1,99,1,99,1,99,4,99,3449, + 8,99,11,99,12,99,3450,3,99,3453,8,99,1,100,1,100,3,100,3457,8,100, + 1,101,1,101,1,101,3,101,3462,8,101,1,101,1,101,1,101,1,101,3,101, + 3468,8,101,1,101,5,101,3471,8,101,10,101,12,101,3474,9,101,1,102, + 1,102,1,102,1,102,3,102,3480,8,102,1,102,1,102,1,102,1,102,3,102, + 3486,8,102,1,102,5,102,3489,8,102,10,102,12,102,3492,9,102,3,102, + 3494,8,102,1,103,1,103,1,103,1,103,3,103,3500,8,103,1,104,1,104, + 3,104,3504,8,104,1,105,1,105,1,105,1,105,1,105,1,105,3,105,3512, + 8,105,1,106,1,106,3,106,3516,8,106,1,106,3,106,3519,8,106,1,106, + 3,106,3522,8,106,1,106,1,106,1,106,3,106,3527,8,106,1,106,3,106, + 3530,8,106,1,106,1,106,1,106,1,106,1,106,3,106,3537,8,106,1,106, + 1,106,3,106,3541,8,106,1,106,3,106,3544,8,106,1,106,1,106,3,106, + 3548,8,106,1,107,1,107,3,107,3552,8,107,1,107,3,107,3555,8,107,1, + 107,3,107,3558,8,107,1,107,1,107,1,107,3,107,3563,8,107,1,107,1, + 107,1,107,1,107,3,107,3569,8,107,5,107,3571,8,107,10,107,12,107, + 3574,9,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,3,107,3583, + 8,107,1,107,1,107,1,107,1,107,3,107,3589,8,107,5,107,3591,8,107, + 10,107,12,107,3594,9,107,1,107,1,107,1,107,3,107,3599,8,107,1,107, + 1,107,3,107,3603,8,107,1,108,1,108,1,108,1,108,3,108,3609,8,108, + 1,108,3,108,3612,8,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,3,109,3624,8,109,1,109,1,109,3,109,3628,8,109, + 1,109,1,109,3,109,3632,8,109,1,110,1,110,1,110,1,110,1,110,1,110, + 3,110,3640,8,110,1,110,1,110,3,110,3644,8,110,1,111,1,111,1,111, + 1,111,1,112,1,112,3,112,3652,8,112,1,112,3,112,3655,8,112,1,112, + 1,112,3,112,3659,8,112,1,112,3,112,3662,8,112,1,112,1,112,1,112, + 1,112,5,112,3668,8,112,10,112,12,112,3671,9,112,1,112,1,112,3,112, + 3675,8,112,1,112,3,112,3678,8,112,1,112,3,112,3681,8,112,1,113,1, + 113,3,113,3685,8,113,1,113,3,113,3688,8,113,1,113,1,113,1,113,1, + 113,1,113,5,113,3695,8,113,10,113,12,113,3698,9,113,1,113,1,113, + 3,113,3702,8,113,1,114,1,114,1,114,1,114,1,114,5,114,3709,8,114, + 10,114,12,114,3712,9,114,1,115,1,115,3,115,3716,8,115,1,116,1,116, + 1,116,5,116,3721,8,116,10,116,12,116,3724,9,116,1,117,1,117,5,117, + 3728,8,117,10,117,12,117,3731,9,117,1,117,1,117,1,117,5,117,3736, + 8,117,10,117,12,117,3739,9,117,1,117,1,117,1,117,3,117,3744,8,117, + 1,118,1,118,1,118,1,118,1,118,1,118,3,118,3752,8,118,1,118,3,118, + 3755,8,118,1,118,3,118,3758,8,118,1,118,1,118,1,118,5,118,3763,8, + 118,10,118,12,118,3766,9,118,3,118,3768,8,118,1,118,1,118,1,118, + 1,118,1,118,3,118,3775,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3783,8,118,1,119,1,119,1,119,1,119,3,119,3789,8,119,1,119, + 1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,3,120,3800,8,120, + 1,121,3,121,3803,8,121,1,121,1,121,3,121,3807,8,121,1,121,1,121, + 5,121,3811,8,121,10,121,12,121,3814,9,121,1,121,1,121,1,121,1,121, + 5,121,3820,8,121,10,121,12,121,3823,9,121,1,121,1,121,3,121,3827, + 8,121,1,121,1,121,3,121,3831,8,121,1,121,1,121,5,121,3835,8,121, + 10,121,12,121,3838,9,121,1,121,1,121,1,121,3,121,3843,8,121,3,121, + 3845,8,121,1,121,1,121,3,121,3849,8,121,1,122,1,122,1,122,1,122, + 1,122,1,122,1,122,3,122,3858,8,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,3,123,3868,8,123,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,3,124,3878,8,124,1,125,1,125,5,125,3882,8,125, + 10,125,12,125,3885,9,125,1,125,1,125,3,125,3889,8,125,1,125,1,125, + 3,125,3893,8,125,1,125,3,125,3896,8,125,1,125,3,125,3899,8,125,1, + 125,3,125,3902,8,125,1,125,3,125,3905,8,125,1,125,1,125,5,125,3909, + 8,125,10,125,12,125,3912,9,125,1,125,1,125,1,125,3,125,3917,8,125, + 1,125,3,125,3920,8,125,1,125,3,125,3923,8,125,1,125,3,125,3926,8, + 125,1,125,3,125,3929,8,125,1,125,3,125,3932,8,125,3,125,3934,8,125, + 1,126,1,126,5,126,3938,8,126,10,126,12,126,3941,9,126,1,126,1,126, + 1,126,3,126,3946,8,126,1,126,3,126,3949,8,126,1,126,3,126,3952,8, + 126,1,126,3,126,3955,8,126,1,126,3,126,3958,8,126,1,126,3,126,3961, + 8,126,1,127,1,127,3,127,3965,8,127,1,127,1,127,1,128,1,128,3,128, + 3971,8,128,1,128,1,128,3,128,3975,8,128,1,129,1,129,1,129,1,129, + 1,129,1,129,3,129,3983,8,129,1,129,1,129,3,129,3987,8,129,1,129, + 3,129,3990,8,129,3,129,3992,8,129,1,130,1,130,1,130,1,130,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,3,130,4005,8,130,1,130,3,130, + 4008,8,130,1,131,1,131,1,131,5,131,4013,8,131,10,131,12,131,4016, + 9,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,4025,8,132, + 1,132,3,132,4028,8,132,1,132,1,132,1,132,3,132,4033,8,132,3,132, + 4035,8,132,1,132,1,132,3,132,4039,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,4047,8,132,1,133,1,133,1,133,1,133,3,133,4053, + 8,133,1,133,1,133,1,133,1,134,1,134,1,134,1,134,3,134,4062,8,134, + 1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 3,135,4075,8,135,1,136,1,136,3,136,4079,8,136,1,136,1,136,5,136, + 4083,8,136,10,136,12,136,4086,9,136,1,137,1,137,1,137,1,137,1,137, + 1,137,3,137,4094,8,137,1,137,3,137,4097,8,137,1,137,1,137,3,137, + 4101,8,137,1,137,3,137,4104,8,137,1,137,1,137,3,137,4108,8,137,1, + 137,1,137,3,137,4112,8,137,1,137,3,137,4115,8,137,3,137,4117,8,137, + 1,138,1,138,1,138,1,138,5,138,4123,8,138,10,138,12,138,4126,9,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,4137, + 8,138,1,138,1,138,4,138,4141,8,138,11,138,12,138,4142,3,138,4145, + 8,138,1,138,1,138,4,138,4149,8,138,11,138,12,138,4150,3,138,4153, + 8,138,3,138,4155,8,138,1,139,1,139,1,139,1,139,3,139,4161,8,139, + 1,139,1,139,1,139,1,139,1,139,1,139,3,139,4169,8,139,1,140,1,140, + 1,140,1,140,1,140,1,140,3,140,4177,8,140,1,141,1,141,3,141,4181, + 8,141,1,141,1,141,3,141,4185,8,141,1,142,1,142,1,142,1,142,1,142, + 5,142,4192,8,142,10,142,12,142,4195,9,142,1,142,1,142,3,142,4199, + 8,142,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,1,144,1,144,1,144,1,144,1,144,5,144,4217,8,144,10,144,12,144, + 4220,9,144,1,145,1,145,3,145,4224,8,145,1,146,1,146,1,146,1,146, + 3,146,4230,8,146,1,146,1,146,1,146,1,146,1,146,3,146,4237,8,146, + 1,147,1,147,1,147,3,147,4242,8,147,1,148,1,148,1,148,1,148,1,148, + 5,148,4249,8,148,10,148,12,148,4252,9,148,3,148,4254,8,148,1,149, + 1,149,3,149,4258,8,149,1,150,1,150,3,150,4262,8,150,1,150,1,150, + 3,150,4266,8,150,1,150,3,150,4269,8,150,1,150,3,150,4272,8,150,1, + 150,3,150,4275,8,150,1,151,1,151,3,151,4279,8,151,1,151,1,151,3, + 151,4283,8,151,1,151,3,151,4286,8,151,1,151,3,151,4289,8,151,1,151, + 3,151,4292,8,151,1,152,1,152,1,152,1,153,1,153,3,153,4299,8,153, + 1,153,1,153,3,153,4303,8,153,1,153,1,153,1,154,1,154,1,154,1,154, + 1,155,1,155,1,155,1,155,1,155,5,155,4316,8,155,10,155,12,155,4319, + 9,155,1,155,3,155,4322,8,155,1,156,1,156,1,156,1,157,1,157,1,157, + 1,157,1,157,1,158,1,158,3,158,4334,8,158,1,158,1,158,1,158,1,158, + 5,158,4340,8,158,10,158,12,158,4343,9,158,1,159,1,159,1,159,1,159, + 1,159,1,159,1,159,3,159,4352,8,159,1,160,1,160,3,160,4356,8,160, + 1,160,3,160,4359,8,160,1,160,1,160,1,161,1,161,3,161,4365,8,161, + 1,161,3,161,4368,8,161,1,161,3,161,4371,8,161,1,162,1,162,1,162, + 1,162,1,162,1,162,1,162,3,162,4380,8,162,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,3,163,4389,8,163,1,164,1,164,1,164,1,164,1,164, + 1,164,5,164,4397,8,164,10,164,12,164,4400,9,164,1,164,3,164,4403, + 8,164,1,165,1,165,1,165,1,165,1,165,1,165,5,165,4411,8,165,10,165, + 12,165,4414,9,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,3,166, + 4423,8,166,1,167,1,167,1,167,1,168,1,168,1,168,3,168,4431,8,168, + 1,168,3,168,4434,8,168,1,169,1,169,1,169,1,169,1,169,5,169,4441, + 8,169,10,169,12,169,4444,9,169,3,169,4446,8,169,1,169,1,169,3,169, + 4450,8,169,1,169,5,169,4453,8,169,10,169,12,169,4456,9,169,1,169, + 3,169,4459,8,169,1,170,1,170,1,170,1,170,1,170,5,170,4466,8,170, + 10,170,12,170,4469,9,170,3,170,4471,8,170,1,171,1,171,1,171,1,172, + 1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, 1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,5,173,4501,8,173,10,173,12,173,4504, - 9,173,3,173,4506,8,173,1,173,3,173,4509,8,173,1,174,1,174,1,175, - 1,175,1,176,1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, + 1,173,5,173,4500,8,173,10,173,12,173,4503,9,173,3,173,4505,8,173, + 1,173,3,173,4508,8,173,1,174,1,174,1,175,1,175,1,176,1,176,1,177, + 1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, - 1,178,1,178,1,178,1,178,1,178,5,178,4563,8,178,10,178,12,178,4566, - 9,178,1,178,1,178,3,178,4570,8,178,1,179,1,179,1,179,1,179,1,179, - 1,179,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, - 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181, - 4598,8,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,3,182,4612,8,182,1,183,1,183,1,183,5,183,4617, - 8,183,10,183,12,183,4620,9,183,1,183,3,183,4623,8,183,1,184,1,184, - 1,184,1,184,3,184,4629,8,184,1,185,1,185,1,185,1,185,1,185,1,185, - 3,185,4637,8,185,3,185,4639,8,185,1,186,1,186,1,186,1,186,1,187, - 1,187,1,187,1,187,1,187,3,187,4650,8,187,1,188,1,188,1,188,1,188, - 1,189,1,189,1,189,1,189,3,189,4660,8,189,1,190,1,190,1,190,1,190, - 1,190,3,190,4667,8,190,1,191,1,191,1,191,1,191,3,191,4673,8,191, - 1,192,1,192,1,192,1,192,1,193,1,193,3,193,4681,8,193,1,194,1,194, - 1,194,3,194,4686,8,194,1,194,1,194,1,194,1,194,5,194,4692,8,194, - 10,194,12,194,4695,9,194,1,194,1,194,1,194,5,194,4700,8,194,10,194, - 12,194,4703,9,194,1,194,1,194,1,194,5,194,4708,8,194,10,194,12,194, - 4711,9,194,1,194,1,194,1,194,5,194,4716,8,194,10,194,12,194,4719, - 9,194,1,194,5,194,4722,8,194,10,194,12,194,4725,9,194,1,194,1,194, - 3,194,4729,8,194,1,195,1,195,1,195,3,195,4734,8,195,1,195,4,195, - 4737,8,195,11,195,12,195,4738,1,195,1,195,4,195,4743,8,195,11,195, - 12,195,4744,3,195,4747,8,195,1,195,1,195,1,195,1,196,1,196,1,196, - 1,196,4,196,4756,8,196,11,196,12,196,4757,1,196,5,196,4761,8,196, - 10,196,12,196,4764,9,196,1,196,1,196,4,196,4768,8,196,11,196,12, - 196,4769,3,196,4772,8,196,1,196,1,196,1,196,1,197,1,197,1,197,1, - 198,1,198,1,198,1,199,1,199,1,199,3,199,4786,8,199,1,199,1,199,4, - 199,4790,8,199,11,199,12,199,4791,1,199,1,199,1,199,3,199,4797,8, - 199,1,200,1,200,1,200,3,200,4802,8,200,1,200,1,200,4,200,4806,8, - 200,11,200,12,200,4807,1,200,1,200,1,200,1,200,1,200,3,200,4815, - 8,200,1,201,1,201,1,201,1,202,1,202,1,202,3,202,4823,8,202,1,202, - 1,202,1,202,1,202,4,202,4829,8,202,11,202,12,202,4830,1,202,1,202, - 1,202,3,202,4836,8,202,1,203,1,203,1,203,1,203,3,203,4842,8,203, - 1,203,3,203,4845,8,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203, - 4853,8,203,1,204,1,204,1,204,1,204,1,204,3,204,4860,8,204,1,205, - 1,205,1,205,1,205,1,205,1,205,1,205,3,205,4869,8,205,1,205,3,205, - 4872,8,205,1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,5,207,4887,8,207,10,207,12,207,4890,9,207, - 1,207,1,207,1,208,1,208,1,208,3,208,4897,8,208,1,208,1,208,1,208, - 1,208,1,208,1,208,3,208,4905,8,208,1,209,1,209,3,209,4909,8,209, - 1,209,1,209,1,210,1,210,1,210,3,210,4916,8,210,1,210,1,210,4,210, - 4920,8,210,11,210,12,210,4921,1,211,1,211,1,211,1,211,4,211,4928, - 8,211,11,211,12,211,4929,1,212,1,212,1,212,1,212,1,212,5,212,4937, - 8,212,10,212,12,212,4940,9,212,1,212,1,212,1,212,3,212,4945,8,212, - 1,212,1,212,1,212,5,212,4950,8,212,10,212,12,212,4953,9,212,1,212, - 1,212,1,212,1,212,3,212,4959,8,212,1,212,5,212,4962,8,212,10,212, - 12,212,4965,9,212,3,212,4967,8,212,3,212,4969,8,212,1,212,1,212, - 4,212,4973,8,212,11,212,12,212,4974,3,212,4977,8,212,1,212,1,212, - 5,212,4981,8,212,10,212,12,212,4984,9,212,1,212,1,212,1,212,1,212, - 3,212,4990,8,212,1,212,1,212,1,212,3,212,4995,8,212,1,212,1,212, - 3,212,4999,8,212,1,212,1,212,1,212,1,212,3,212,5005,8,212,1,213, - 1,213,1,213,1,213,1,213,5,213,5012,8,213,10,213,12,213,5015,9,213, - 1,213,1,213,1,213,3,213,5020,8,213,1,213,1,213,1,213,5,213,5025, - 8,213,10,213,12,213,5028,9,213,1,213,1,213,1,213,3,213,5033,8,213, - 1,213,1,213,1,213,1,213,3,213,5039,8,213,1,213,5,213,5042,8,213, - 10,213,12,213,5045,9,213,3,213,5047,8,213,3,213,5049,8,213,1,213, - 1,213,4,213,5053,8,213,11,213,12,213,5054,3,213,5057,8,213,1,213, - 1,213,5,213,5061,8,213,10,213,12,213,5064,9,213,1,213,1,213,1,213, - 1,213,3,213,5070,8,213,3,213,5072,8,213,1,214,1,214,1,214,3,214, - 5077,8,214,1,214,1,214,1,214,5,214,5082,8,214,10,214,12,214,5085, - 9,214,1,215,1,215,1,215,1,215,5,215,5091,8,215,10,215,12,215,5094, - 9,215,1,215,1,215,3,215,5098,8,215,1,215,1,215,1,215,1,215,1,215, - 5,215,5105,8,215,10,215,12,215,5108,9,215,1,215,1,215,1,215,1,215, - 3,215,5114,8,215,1,215,5,215,5117,8,215,10,215,12,215,5120,9,215, - 3,215,5122,8,215,3,215,5124,8,215,1,215,1,215,1,215,1,215,5,215, - 5130,8,215,10,215,12,215,5133,9,215,3,215,5135,8,215,1,215,1,215, - 1,215,1,215,1,215,1,215,3,215,5143,8,215,1,215,1,215,1,215,3,215, - 5148,8,215,1,215,1,215,1,215,3,215,5153,8,215,5,215,5155,8,215,10, - 215,12,215,5158,9,215,1,215,1,215,1,215,3,215,5163,8,215,1,215,1, - 215,1,215,3,215,5168,8,215,5,215,5170,8,215,10,215,12,215,5173,9, - 215,1,215,1,215,1,215,3,215,5178,8,215,3,215,5180,8,215,1,216,1, - 216,1,216,1,216,1,216,1,216,1,216,5,216,5189,8,216,10,216,12,216, - 5192,9,216,3,216,5194,8,216,1,216,1,216,1,216,5,216,5199,8,216,10, - 216,12,216,5202,9,216,3,216,5204,8,216,1,217,1,217,1,217,1,217,1, - 217,1,217,1,217,1,217,5,217,5214,8,217,10,217,12,217,5217,9,217, - 1,217,1,217,1,217,3,217,5222,8,217,1,218,1,218,1,218,1,218,1,218, - 5,218,5229,8,218,10,218,12,218,5232,9,218,1,219,1,219,1,219,1,219, - 5,219,5238,8,219,10,219,12,219,5241,9,219,1,219,1,219,3,219,5245, - 8,219,1,219,1,219,1,219,1,219,1,219,5,219,5252,8,219,10,219,12,219, - 5255,9,219,1,219,1,219,1,219,3,219,5260,8,219,1,219,1,219,1,219, - 1,219,1,219,1,219,1,219,5,219,5269,8,219,10,219,12,219,5272,9,219, - 1,219,1,219,1,219,3,219,5277,8,219,1,219,1,219,1,219,3,219,5282, - 8,219,5,219,5284,8,219,10,219,12,219,5287,9,219,1,219,1,219,1,219, - 3,219,5292,8,219,1,219,1,219,1,219,3,219,5297,8,219,5,219,5299,8, - 219,10,219,12,219,5302,9,219,3,219,5304,8,219,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,5,220,5314,8,220,10,220,12,220,5317, - 9,220,1,221,1,221,1,221,1,221,3,221,5323,8,221,1,221,1,221,1,221, - 3,221,5328,8,221,1,222,1,222,1,222,1,223,1,223,1,223,1,223,1,223, + 1,178,5,178,4562,8,178,10,178,12,178,4565,9,178,1,178,1,178,3,178, + 4569,8,178,1,179,1,179,1,179,1,179,1,179,1,179,1,180,1,180,1,181, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,1,181,3,181,4597,8,181,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182, + 4611,8,182,1,183,1,183,1,183,5,183,4616,8,183,10,183,12,183,4619, + 9,183,1,183,3,183,4622,8,183,1,184,1,184,1,184,1,184,3,184,4628, + 8,184,1,185,1,185,1,185,1,185,1,185,1,185,3,185,4636,8,185,3,185, + 4638,8,185,1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187, + 3,187,4649,8,187,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189, + 3,189,4659,8,189,1,190,1,190,1,190,1,190,1,190,3,190,4666,8,190, + 1,191,1,191,1,191,1,191,3,191,4672,8,191,1,192,1,192,1,192,1,192, + 1,193,1,193,3,193,4680,8,193,1,194,1,194,1,194,3,194,4685,8,194, + 1,194,1,194,1,194,1,194,5,194,4691,8,194,10,194,12,194,4694,9,194, + 1,194,1,194,1,194,5,194,4699,8,194,10,194,12,194,4702,9,194,1,194, + 1,194,1,194,5,194,4707,8,194,10,194,12,194,4710,9,194,1,194,1,194, + 1,194,5,194,4715,8,194,10,194,12,194,4718,9,194,1,194,5,194,4721, + 8,194,10,194,12,194,4724,9,194,1,194,1,194,3,194,4728,8,194,1,195, + 1,195,1,195,3,195,4733,8,195,1,195,4,195,4736,8,195,11,195,12,195, + 4737,1,195,1,195,4,195,4742,8,195,11,195,12,195,4743,3,195,4746, + 8,195,1,195,1,195,1,195,1,196,1,196,1,196,1,196,4,196,4755,8,196, + 11,196,12,196,4756,1,196,5,196,4760,8,196,10,196,12,196,4763,9,196, + 1,196,1,196,4,196,4767,8,196,11,196,12,196,4768,3,196,4771,8,196, + 1,196,1,196,1,196,1,197,1,197,1,197,1,198,1,198,1,198,1,199,1,199, + 1,199,3,199,4785,8,199,1,199,1,199,4,199,4789,8,199,11,199,12,199, + 4790,1,199,1,199,1,199,3,199,4796,8,199,1,200,1,200,1,200,3,200, + 4801,8,200,1,200,1,200,4,200,4805,8,200,11,200,12,200,4806,1,200, + 1,200,1,200,1,200,1,200,3,200,4814,8,200,1,201,1,201,1,201,1,202, + 1,202,1,202,3,202,4822,8,202,1,202,1,202,1,202,1,202,4,202,4828, + 8,202,11,202,12,202,4829,1,202,1,202,1,202,3,202,4835,8,202,1,203, + 1,203,1,203,1,203,3,203,4841,8,203,1,203,3,203,4844,8,203,1,203, + 1,203,1,203,1,203,1,203,1,203,3,203,4852,8,203,1,204,1,204,1,204, + 1,204,1,204,3,204,4859,8,204,1,205,1,205,1,205,1,205,1,205,1,205, + 1,205,3,205,4868,8,205,1,205,3,205,4871,8,205,1,206,1,206,1,206, + 1,206,1,206,1,206,1,207,1,207,1,207,1,207,1,207,1,207,1,207,5,207, + 4886,8,207,10,207,12,207,4889,9,207,1,207,1,207,1,208,1,208,1,208, + 3,208,4896,8,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,4904, + 8,208,1,209,1,209,3,209,4908,8,209,1,209,1,209,1,210,1,210,1,210, + 3,210,4915,8,210,1,210,1,210,4,210,4919,8,210,11,210,12,210,4920, + 1,211,1,211,1,211,1,211,4,211,4927,8,211,11,211,12,211,4928,1,212, + 1,212,1,212,1,212,1,212,5,212,4936,8,212,10,212,12,212,4939,9,212, + 1,212,1,212,1,212,3,212,4944,8,212,1,212,1,212,1,212,5,212,4949, + 8,212,10,212,12,212,4952,9,212,1,212,1,212,1,212,1,212,3,212,4958, + 8,212,1,212,5,212,4961,8,212,10,212,12,212,4964,9,212,3,212,4966, + 8,212,3,212,4968,8,212,1,212,1,212,4,212,4972,8,212,11,212,12,212, + 4973,3,212,4976,8,212,1,212,1,212,5,212,4980,8,212,10,212,12,212, + 4983,9,212,1,212,1,212,1,212,1,212,3,212,4989,8,212,1,212,1,212, + 1,212,3,212,4994,8,212,1,212,1,212,3,212,4998,8,212,1,212,1,212, + 1,212,1,212,3,212,5004,8,212,1,213,1,213,1,213,1,213,1,213,5,213, + 5011,8,213,10,213,12,213,5014,9,213,1,213,1,213,1,213,3,213,5019, + 8,213,1,213,1,213,1,213,5,213,5024,8,213,10,213,12,213,5027,9,213, + 1,213,1,213,1,213,3,213,5032,8,213,1,213,1,213,1,213,1,213,3,213, + 5038,8,213,1,213,5,213,5041,8,213,10,213,12,213,5044,9,213,3,213, + 5046,8,213,3,213,5048,8,213,1,213,1,213,4,213,5052,8,213,11,213, + 12,213,5053,3,213,5056,8,213,1,213,1,213,5,213,5060,8,213,10,213, + 12,213,5063,9,213,1,213,1,213,1,213,1,213,3,213,5069,8,213,3,213, + 5071,8,213,1,214,1,214,1,214,3,214,5076,8,214,1,214,1,214,1,214, + 5,214,5081,8,214,10,214,12,214,5084,9,214,1,215,1,215,1,215,1,215, + 5,215,5090,8,215,10,215,12,215,5093,9,215,1,215,1,215,3,215,5097, + 8,215,1,215,1,215,1,215,1,215,1,215,5,215,5104,8,215,10,215,12,215, + 5107,9,215,1,215,1,215,1,215,1,215,3,215,5113,8,215,1,215,5,215, + 5116,8,215,10,215,12,215,5119,9,215,3,215,5121,8,215,3,215,5123, + 8,215,1,215,1,215,1,215,1,215,5,215,5129,8,215,10,215,12,215,5132, + 9,215,3,215,5134,8,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215, + 5142,8,215,1,215,1,215,1,215,3,215,5147,8,215,1,215,1,215,1,215, + 3,215,5152,8,215,5,215,5154,8,215,10,215,12,215,5157,9,215,1,215, + 1,215,1,215,3,215,5162,8,215,1,215,1,215,1,215,3,215,5167,8,215, + 5,215,5169,8,215,10,215,12,215,5172,9,215,1,215,1,215,1,215,3,215, + 5177,8,215,3,215,5179,8,215,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,5,216,5188,8,216,10,216,12,216,5191,9,216,3,216,5193,8,216, + 1,216,1,216,1,216,5,216,5198,8,216,10,216,12,216,5201,9,216,3,216, + 5203,8,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,5,217, + 5213,8,217,10,217,12,217,5216,9,217,1,217,1,217,1,217,3,217,5221, + 8,217,1,218,1,218,1,218,1,218,1,218,5,218,5228,8,218,10,218,12,218, + 5231,9,218,1,219,1,219,1,219,1,219,5,219,5237,8,219,10,219,12,219, + 5240,9,219,1,219,1,219,3,219,5244,8,219,1,219,1,219,1,219,1,219, + 1,219,5,219,5251,8,219,10,219,12,219,5254,9,219,1,219,1,219,1,219, + 3,219,5259,8,219,1,219,1,219,1,219,1,219,1,219,1,219,1,219,5,219, + 5268,8,219,10,219,12,219,5271,9,219,1,219,1,219,1,219,3,219,5276, + 8,219,1,219,1,219,1,219,3,219,5281,8,219,5,219,5283,8,219,10,219, + 12,219,5286,9,219,1,219,1,219,1,219,3,219,5291,8,219,1,219,1,219, + 1,219,3,219,5296,8,219,5,219,5298,8,219,10,219,12,219,5301,9,219, + 3,219,5303,8,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 5,220,5313,8,220,10,220,12,220,5316,9,220,1,221,1,221,1,221,1,221, + 3,221,5322,8,221,1,221,1,221,1,221,3,221,5327,8,221,1,222,1,222, + 1,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,3,223,5358, - 8,223,1,224,1,224,3,224,5362,8,224,1,224,1,224,1,224,3,224,5367, - 8,224,1,225,1,225,1,225,1,225,1,225,3,225,5374,8,225,1,225,3,225, - 5377,8,225,1,225,1,225,1,225,1,225,3,225,5383,8,225,1,226,1,226, - 1,226,1,226,1,226,1,226,1,226,1,226,3,226,5393,8,226,1,227,1,227, - 1,227,1,227,1,227,1,227,1,227,1,227,3,227,5403,8,227,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,3,228,5413,8,228,1,228,1,228, - 1,228,1,228,3,228,5419,8,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,3,228,5428,8,228,1,228,1,228,1,228,1,228,3,228,5434,8,228, - 1,228,1,228,1,228,1,228,1,228,3,228,5441,8,228,3,228,5443,8,228, - 1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,3,230,5453,8,230, - 1,231,1,231,3,231,5457,8,231,1,231,1,231,3,231,5461,8,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5471,8,231,1,231, - 1,231,1,231,3,231,5476,8,231,1,231,1,231,1,231,1,231,1,231,1,231, + 1,223,1,223,1,223,1,223,3,223,5357,8,223,1,224,1,224,3,224,5361, + 8,224,1,224,1,224,1,224,3,224,5366,8,224,1,225,1,225,1,225,1,225, + 1,225,3,225,5373,8,225,1,225,3,225,5376,8,225,1,225,1,225,1,225, + 1,225,3,225,5382,8,225,1,226,1,226,1,226,1,226,1,226,1,226,1,226, + 1,226,3,226,5392,8,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227, + 1,227,3,227,5402,8,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228, + 1,228,3,228,5412,8,228,1,228,1,228,1,228,1,228,3,228,5418,8,228, + 1,228,1,228,1,228,1,228,1,228,1,228,1,228,3,228,5427,8,228,1,228, + 1,228,1,228,1,228,3,228,5433,8,228,1,228,1,228,1,228,1,228,1,228, + 3,228,5440,8,228,3,228,5442,8,228,1,229,1,229,1,229,1,230,1,230, + 1,230,1,230,1,230,3,230,5452,8,230,1,231,1,231,3,231,5456,8,231, + 1,231,1,231,3,231,5460,8,231,1,231,1,231,1,231,1,231,1,231,1,231, + 1,231,1,231,3,231,5470,8,231,1,231,1,231,1,231,3,231,5475,8,231, 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5548, - 8,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, - 1,232,1,232,1,232,1,232,1,232,1,232,3,232,5566,8,232,1,233,1,233, - 1,233,1,233,1,234,1,234,3,234,5574,8,234,1,234,1,234,1,234,1,234, - 1,234,1,234,1,234,1,234,5,234,5584,8,234,10,234,12,234,5587,9,234, - 1,234,1,234,1,234,1,234,3,234,5593,8,234,3,234,5595,8,234,1,234, - 1,234,1,234,1,234,1,234,1,234,5,234,5603,8,234,10,234,12,234,5606, - 9,234,3,234,5608,8,234,1,235,1,235,1,235,1,235,5,235,5614,8,235, - 10,235,12,235,5617,9,235,1,236,1,236,1,236,1,236,3,236,5623,8,236, - 1,237,1,237,3,237,5627,8,237,1,237,1,237,1,237,1,238,1,238,3,238, - 5634,8,238,1,238,1,238,1,238,3,238,5639,8,238,1,238,3,238,5642,8, - 238,1,238,3,238,5645,8,238,1,239,1,239,1,239,1,239,1,239,1,239,1, - 239,3,239,5654,8,239,1,240,1,240,3,240,5658,8,240,1,240,1,240,3, - 240,5662,8,240,1,240,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1, - 241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,243,1,243,1,243, - 1,243,1,243,3,243,5685,8,243,1,243,1,243,1,243,1,243,1,243,3,243, - 5692,8,243,5,243,5694,8,243,10,243,12,243,5697,9,243,1,243,1,243, - 1,243,1,243,3,243,5703,8,243,1,243,1,243,1,243,1,243,1,243,3,243, - 5710,8,243,1,243,3,243,5713,8,243,1,243,1,243,1,243,1,243,1,243, - 1,243,1,243,1,243,1,243,1,243,1,243,1,243,5,243,5727,8,243,10,243, - 12,243,5730,9,243,3,243,5732,8,243,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,3,244,5742,8,244,1,244,1,244,3,244,5746,8,244, - 1,244,1,244,1,244,1,244,3,244,5752,8,244,1,244,3,244,5755,8,244, - 1,244,1,244,1,244,3,244,5760,8,244,1,244,1,244,3,244,5764,8,244, - 1,244,1,244,1,244,1,244,1,244,3,244,5771,8,244,1,244,3,244,5774, - 8,244,1,244,1,244,1,244,1,244,3,244,5780,8,244,1,244,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5804,8,244, - 1,244,3,244,5807,8,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,3,244,5819,8,244,1,244,3,244,5822,8,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5832,8,244,1,244, - 1,244,1,244,1,244,1,244,1,244,3,244,5840,8,244,1,244,1,244,3,244, - 5844,8,244,1,244,1,244,1,244,1,244,1,244,3,244,5851,8,244,1,244, - 3,244,5854,8,244,1,244,1,244,1,244,1,244,1,244,5,244,5861,8,244, - 10,244,12,244,5864,9,244,1,244,1,244,1,244,3,244,5869,8,244,1,244, - 1,244,1,244,1,244,3,244,5875,8,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,3,244,5885,8,244,3,244,5887,8,244,1,245,1,245, - 1,245,1,245,3,245,5893,8,245,1,245,3,245,5896,8,245,1,245,3,245, - 5899,8,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,3,246,5911,8,246,1,246,3,246,5914,8,246,1,247,1,247,1,247, - 1,247,3,247,5920,8,247,1,248,3,248,5923,8,248,1,248,1,248,1,248, - 1,248,1,248,1,248,3,248,5931,8,248,1,248,1,248,1,248,1,248,1,248, - 1,248,3,248,5939,8,248,1,249,1,249,1,249,1,249,3,249,5945,8,249, - 1,249,1,249,3,249,5949,8,249,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,3,250,5963,8,250,1,251,1,251, - 1,251,1,252,1,252,1,252,1,252,1,252,5,252,5973,8,252,10,252,12,252, - 5976,9,252,1,252,1,252,1,252,1,252,3,252,5982,8,252,1,252,3,252, - 5985,8,252,1,252,1,252,1,252,1,253,1,253,3,253,5992,8,253,1,253, - 1,253,1,253,5,253,5997,8,253,10,253,12,253,6000,9,253,1,254,1,254, - 3,254,6004,8,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,5,255,6015,8,255,10,255,12,255,6018,9,255,1,256,1,256,1,256, - 1,256,1,257,1,257,1,258,1,258,3,258,6028,8,258,1,258,1,258,1,258, - 1,258,3,258,6034,8,258,1,259,1,259,1,259,3,259,6039,8,259,1,259, - 1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259, - 6052,8,259,3,259,6054,8,259,1,259,1,259,1,259,3,259,6059,8,259,1, - 259,1,259,3,259,6063,8,259,1,259,3,259,6066,8,259,3,259,6068,8,259, - 1,260,1,260,1,260,1,260,1,260,3,260,6075,8,260,1,261,1,261,1,261, - 1,261,1,261,3,261,6082,8,261,1,261,3,261,6085,8,261,1,261,3,261, - 6088,8,261,1,261,1,261,1,261,1,261,3,261,6094,8,261,1,261,1,261, - 3,261,6098,8,261,1,262,1,262,1,262,1,262,3,262,6104,8,262,1,263, - 1,263,1,263,1,263,3,263,6110,8,263,1,263,1,263,1,264,1,264,1,264, - 1,265,1,265,1,265,1,266,1,266,1,266,3,266,6123,8,266,1,266,1,266, - 1,266,3,266,6128,8,266,1,266,1,266,1,266,1,266,5,266,6134,8,266, - 10,266,12,266,6137,9,266,3,266,6139,8,266,1,267,1,267,1,267,3,267, - 6144,8,267,1,267,1,267,1,267,3,267,6149,8,267,1,267,1,267,1,267, - 1,267,5,267,6155,8,267,10,267,12,267,6158,9,267,3,267,6160,8,267, - 1,268,1,268,1,268,1,268,1,268,1,268,3,268,6168,8,268,1,269,1,269, - 3,269,6172,8,269,1,269,1,269,1,269,5,269,6177,8,269,10,269,12,269, - 6180,9,269,1,270,1,270,1,270,3,270,6185,8,270,1,270,3,270,6188,8, - 270,1,271,1,271,3,271,6192,8,271,1,271,1,271,1,271,1,271,1,271,1, - 271,1,271,1,271,1,271,5,271,6203,8,271,10,271,12,271,6206,9,271, - 1,271,1,271,1,271,3,271,6211,8,271,1,271,1,271,1,271,1,271,1,271, - 1,271,1,271,1,271,5,271,6221,8,271,10,271,12,271,6224,9,271,3,271, - 6226,8,271,1,272,1,272,1,273,1,273,1,273,1,273,1,273,3,273,6235, - 8,273,1,273,1,273,1,273,3,273,6240,8,273,1,274,1,274,1,274,1,274, - 3,274,6246,8,274,1,275,1,275,1,276,1,276,1,276,5,276,6253,8,276, - 10,276,12,276,6256,9,276,1,277,1,277,3,277,6260,8,277,1,278,1,278, - 1,278,3,278,6265,8,278,3,278,6267,8,278,1,278,3,278,6270,8,278,1, - 278,1,278,3,278,6274,8,278,3,278,6276,8,278,1,279,1,279,3,279,6280, - 8,279,1,279,1,279,1,279,1,279,3,279,6286,8,279,1,279,3,279,6289, - 8,279,1,279,3,279,6292,8,279,1,280,1,280,1,280,1,280,3,280,6298, - 8,280,1,281,1,281,1,282,1,282,1,282,1,282,1,282,3,282,6307,8,282, - 1,283,1,283,1,284,1,284,1,284,1,284,3,284,6315,8,284,1,285,1,285, - 3,285,6319,8,285,1,286,1,286,1,286,3,286,6324,8,286,1,287,1,287, - 1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, - 1,288,1,288,1,288,4,288,6342,8,288,11,288,12,288,6343,1,289,1,289, - 1,289,1,289,1,289,3,289,6351,8,289,3,289,6353,8,289,1,290,1,290, - 1,290,4,290,6358,8,290,11,290,12,290,6359,3,290,6362,8,290,1,291, - 1,291,3,291,6366,8,291,1,292,1,292,1,292,3,292,6371,8,292,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,6382,8,293, - 1,294,1,294,1,294,3,294,6387,8,294,1,295,1,295,1,296,1,296,3,296, - 6393,8,296,1,297,3,297,6396,8,297,1,297,1,297,3,297,6400,8,297,1, - 297,4,297,6403,8,297,11,297,12,297,6404,1,297,3,297,6408,8,297,1, - 297,1,297,3,297,6412,8,297,1,297,1,297,3,297,6416,8,297,3,297,6418, - 8,297,1,298,1,298,1,299,3,299,6423,8,299,1,299,1,299,1,300,3,300, - 6428,8,300,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,1,301, - 1,301,1,301,3,301,6441,8,301,1,301,3,301,6444,8,301,1,302,1,302, - 3,302,6448,8,302,1,302,3,302,6451,8,302,1,302,3,302,6454,8,302,1, - 302,1,302,1,302,3,302,6459,8,302,1,302,1,302,1,302,3,302,6464,8, - 302,1,302,1,302,1,302,1,302,3,302,6470,8,302,1,302,3,302,6473,8, - 302,1,302,1,302,1,302,3,302,6478,8,302,1,302,3,302,6481,8,302,1, - 302,1,302,1,302,3,302,6486,8,302,1,302,3,302,6489,8,302,1,302,1, - 302,3,302,6493,8,302,1,302,5,302,6496,8,302,10,302,12,302,6499,9, - 302,1,302,1,302,3,302,6503,8,302,1,302,5,302,6506,8,302,10,302,12, - 302,6509,9,302,1,302,1,302,3,302,6513,8,302,1,302,3,302,6516,8,302, - 1,302,5,302,6519,8,302,10,302,12,302,6522,9,302,1,302,1,302,3,302, - 6526,8,302,1,302,5,302,6529,8,302,10,302,12,302,6532,9,302,1,302, - 1,302,1,302,3,302,6537,8,302,1,302,1,302,1,302,3,302,6542,8,302, - 1,302,1,302,1,302,3,302,6547,8,302,1,302,1,302,1,302,3,302,6552, - 8,302,1,302,1,302,3,302,6556,8,302,1,302,3,302,6559,8,302,1,302, - 1,302,1,302,3,302,6564,8,302,1,302,1,302,3,302,6568,8,302,1,302, - 1,302,3,302,6572,8,302,1,303,1,303,1,303,1,303,5,303,6578,8,303, - 10,303,12,303,6581,9,303,1,303,1,303,1,304,1,304,3,304,6587,8,304, - 1,304,1,304,3,304,6591,8,304,1,304,1,304,1,304,3,304,6596,8,304, - 1,304,1,304,1,304,3,304,6601,8,304,1,304,1,304,3,304,6605,8,304, - 3,304,6607,8,304,1,304,3,304,6610,8,304,1,305,1,305,1,305,1,305, - 1,306,1,306,1,306,1,306,1,306,1,306,1,307,1,307,1,307,1,307,3,307, - 6626,8,307,1,307,1,307,1,308,1,308,1,308,5,308,6633,8,308,10,308, - 12,308,6636,9,308,1,309,1,309,1,309,5,309,6641,8,309,10,309,12,309, - 6644,9,309,1,310,1,310,1,310,5,310,6649,8,310,10,310,12,310,6652, - 9,310,1,311,1,311,1,311,1,311,5,311,6658,8,311,10,311,12,311,6661, - 9,311,1,311,1,311,1,312,1,312,1,312,5,312,6668,8,312,10,312,12,312, - 6671,9,312,1,313,1,313,1,313,5,313,6676,8,313,10,313,12,313,6679, - 9,313,1,314,1,314,1,314,5,314,6684,8,314,10,314,12,314,6687,9,314, - 1,315,1,315,1,315,5,315,6692,8,315,10,315,12,315,6695,9,315,1,316, - 1,316,1,316,5,316,6700,8,316,10,316,12,316,6703,9,316,1,317,1,317, - 1,317,1,317,1,317,1,317,1,317,1,317,1,317,3,317,6714,8,317,1,317, - 1,317,1,317,1,317,1,317,3,317,6721,8,317,1,317,1,317,1,317,1,317, - 1,317,1,317,1,317,1,317,3,317,6731,8,317,1,318,1,318,1,318,3,318, - 6736,8,318,1,318,3,318,6739,8,318,1,318,1,318,1,318,3,318,6744,8, - 318,1,318,3,318,6747,8,318,1,319,1,319,3,319,6751,8,319,1,320,1, - 320,1,320,1,321,1,321,1,321,1,321,1,322,1,322,1,322,1,323,1,323, - 1,323,3,323,6766,8,323,1,324,1,324,1,324,1,324,1,324,1,324,3,324, - 6774,8,324,1,324,1,324,1,324,1,324,1,324,3,324,6781,8,324,1,324, - 1,324,1,324,3,324,6786,8,324,1,325,1,325,1,325,3,325,6791,8,325, + 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, + 1,231,1,231,1,231,1,231,3,231,5547,8,231,1,232,1,232,1,232,1,232, + 1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, + 1,232,3,232,5565,8,232,1,233,1,233,1,233,1,233,1,234,1,234,3,234, + 5573,8,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,5,234, + 5583,8,234,10,234,12,234,5586,9,234,1,234,1,234,1,234,1,234,3,234, + 5592,8,234,3,234,5594,8,234,1,234,1,234,1,234,1,234,1,234,1,234, + 5,234,5602,8,234,10,234,12,234,5605,9,234,3,234,5607,8,234,1,235, + 1,235,1,235,1,235,5,235,5613,8,235,10,235,12,235,5616,9,235,1,236, + 1,236,1,236,1,236,3,236,5622,8,236,1,237,1,237,3,237,5626,8,237, + 1,237,1,237,1,237,1,238,1,238,3,238,5633,8,238,1,238,1,238,1,238, + 3,238,5638,8,238,1,238,3,238,5641,8,238,1,238,3,238,5644,8,238,1, + 239,1,239,1,239,1,239,1,239,1,239,1,239,3,239,5653,8,239,1,240,1, + 240,3,240,5657,8,240,1,240,1,240,3,240,5661,8,240,1,240,1,240,1, + 240,1,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242, + 1,242,1,242,1,242,1,243,1,243,1,243,1,243,1,243,3,243,5684,8,243, + 1,243,1,243,1,243,1,243,1,243,3,243,5691,8,243,5,243,5693,8,243, + 10,243,12,243,5696,9,243,1,243,1,243,1,243,1,243,3,243,5702,8,243, + 1,243,1,243,1,243,1,243,1,243,3,243,5709,8,243,1,243,3,243,5712, + 8,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,243, + 1,243,1,243,5,243,5726,8,243,10,243,12,243,5729,9,243,3,243,5731, + 8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5741, + 8,244,1,244,1,244,3,244,5745,8,244,1,244,1,244,1,244,1,244,3,244, + 5751,8,244,1,244,3,244,5754,8,244,1,244,1,244,1,244,3,244,5759,8, + 244,1,244,1,244,3,244,5763,8,244,1,244,1,244,1,244,1,244,1,244,3, + 244,5770,8,244,1,244,3,244,5773,8,244,1,244,1,244,1,244,1,244,3, + 244,5779,8,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1, + 244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,3,244,5803,8,244,1,244,3,244,5806,8,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5818, + 8,244,1,244,3,244,5821,8,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,3,244,5831,8,244,1,244,1,244,1,244,1,244,1,244,1,244, + 3,244,5839,8,244,1,244,1,244,3,244,5843,8,244,1,244,1,244,1,244, + 1,244,1,244,3,244,5850,8,244,1,244,3,244,5853,8,244,1,244,1,244, + 1,244,1,244,1,244,5,244,5860,8,244,10,244,12,244,5863,9,244,1,244, + 1,244,1,244,3,244,5868,8,244,1,244,1,244,1,244,1,244,3,244,5874, + 8,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5884, + 8,244,3,244,5886,8,244,1,245,1,245,1,245,1,245,3,245,5892,8,245, + 1,245,3,245,5895,8,245,1,245,3,245,5898,8,245,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5910,8,246,1,246, + 3,246,5913,8,246,1,247,1,247,1,247,1,247,3,247,5919,8,247,1,248, + 3,248,5922,8,248,1,248,1,248,1,248,1,248,1,248,1,248,3,248,5930, + 8,248,1,248,1,248,1,248,1,248,1,248,1,248,3,248,5938,8,248,1,249, + 1,249,1,249,1,249,3,249,5944,8,249,1,249,1,249,3,249,5948,8,249, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,3,250,5962,8,250,1,251,1,251,1,251,1,252,1,252,1,252,1,252, + 1,252,5,252,5972,8,252,10,252,12,252,5975,9,252,1,252,1,252,1,252, + 1,252,3,252,5981,8,252,1,252,3,252,5984,8,252,1,252,1,252,1,252, + 1,253,1,253,3,253,5991,8,253,1,253,1,253,1,253,5,253,5996,8,253, + 10,253,12,253,5999,9,253,1,254,1,254,3,254,6003,8,254,1,254,1,254, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,5,255,6014,8,255,10,255, + 12,255,6017,9,255,1,256,1,256,1,256,1,256,1,257,1,257,1,258,1,258, + 3,258,6027,8,258,1,258,1,258,1,258,1,258,3,258,6033,8,258,1,259, + 1,259,1,259,3,259,6038,8,259,1,259,1,259,1,259,1,259,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,3,259,6051,8,259,3,259,6053,8,259, + 1,259,1,259,1,259,3,259,6058,8,259,1,259,1,259,3,259,6062,8,259, + 1,259,3,259,6065,8,259,3,259,6067,8,259,1,260,1,260,1,260,1,260, + 1,260,3,260,6074,8,260,1,261,1,261,1,261,1,261,1,261,3,261,6081, + 8,261,1,261,3,261,6084,8,261,1,261,3,261,6087,8,261,1,261,1,261, + 1,261,1,261,3,261,6093,8,261,1,261,1,261,3,261,6097,8,261,1,262, + 1,262,1,262,1,262,3,262,6103,8,262,1,263,1,263,1,263,1,263,3,263, + 6109,8,263,1,263,1,263,1,264,1,264,1,264,1,265,1,265,1,265,1,266, + 1,266,1,266,3,266,6122,8,266,1,266,1,266,1,266,3,266,6127,8,266, + 1,266,1,266,1,266,1,266,5,266,6133,8,266,10,266,12,266,6136,9,266, + 3,266,6138,8,266,1,267,1,267,1,267,3,267,6143,8,267,1,267,1,267, + 1,267,3,267,6148,8,267,1,267,1,267,1,267,1,267,5,267,6154,8,267, + 10,267,12,267,6157,9,267,3,267,6159,8,267,1,268,1,268,1,268,1,268, + 1,268,1,268,3,268,6167,8,268,1,269,1,269,3,269,6171,8,269,1,269, + 1,269,1,269,5,269,6176,8,269,10,269,12,269,6179,9,269,1,270,1,270, + 1,270,3,270,6184,8,270,1,270,3,270,6187,8,270,1,271,1,271,3,271, + 6191,8,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271, + 5,271,6202,8,271,10,271,12,271,6205,9,271,1,271,1,271,1,271,3,271, + 6210,8,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271,5,271, + 6220,8,271,10,271,12,271,6223,9,271,3,271,6225,8,271,1,272,1,272, + 1,273,1,273,1,273,1,273,1,273,3,273,6234,8,273,1,273,1,273,1,273, + 3,273,6239,8,273,1,274,1,274,1,274,1,274,3,274,6245,8,274,1,275, + 1,275,1,276,1,276,1,276,5,276,6252,8,276,10,276,12,276,6255,9,276, + 1,277,1,277,3,277,6259,8,277,1,278,1,278,1,278,3,278,6264,8,278, + 3,278,6266,8,278,1,278,3,278,6269,8,278,1,278,1,278,3,278,6273,8, + 278,3,278,6275,8,278,1,279,1,279,3,279,6279,8,279,1,279,1,279,1, + 279,1,279,3,279,6285,8,279,1,279,3,279,6288,8,279,1,279,3,279,6291, + 8,279,1,280,1,280,1,280,1,280,3,280,6297,8,280,1,281,1,281,1,282, + 1,282,1,282,1,282,1,282,3,282,6306,8,282,1,283,1,283,1,284,1,284, + 1,284,1,284,3,284,6314,8,284,1,285,1,285,3,285,6318,8,285,1,286, + 1,286,1,286,3,286,6323,8,286,1,287,1,287,1,288,1,288,1,288,1,288, + 1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,4,288, + 6341,8,288,11,288,12,288,6342,1,289,1,289,1,289,1,289,1,289,3,289, + 6350,8,289,3,289,6352,8,289,1,290,1,290,1,290,4,290,6357,8,290,11, + 290,12,290,6358,3,290,6361,8,290,1,291,1,291,3,291,6365,8,291,1, + 292,1,292,1,292,3,292,6370,8,292,1,293,1,293,1,293,1,293,1,293,1, + 293,1,293,1,293,1,293,3,293,6381,8,293,1,294,1,294,1,294,3,294,6386, + 8,294,1,295,1,295,1,296,1,296,3,296,6392,8,296,1,297,3,297,6395, + 8,297,1,297,1,297,3,297,6399,8,297,1,297,4,297,6402,8,297,11,297, + 12,297,6403,1,297,3,297,6407,8,297,1,297,1,297,3,297,6411,8,297, + 1,297,1,297,3,297,6415,8,297,3,297,6417,8,297,1,298,1,298,1,299, + 3,299,6422,8,299,1,299,1,299,1,300,3,300,6427,8,300,1,300,1,300, + 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,3,301,6440, + 8,301,1,301,3,301,6443,8,301,1,302,1,302,3,302,6447,8,302,1,302, + 3,302,6450,8,302,1,302,3,302,6453,8,302,1,302,1,302,1,302,3,302, + 6458,8,302,1,302,1,302,1,302,3,302,6463,8,302,1,302,1,302,1,302, + 1,302,3,302,6469,8,302,1,302,3,302,6472,8,302,1,302,1,302,1,302, + 3,302,6477,8,302,1,302,3,302,6480,8,302,1,302,1,302,1,302,3,302, + 6485,8,302,1,302,3,302,6488,8,302,1,302,1,302,3,302,6492,8,302,1, + 302,5,302,6495,8,302,10,302,12,302,6498,9,302,1,302,1,302,3,302, + 6502,8,302,1,302,5,302,6505,8,302,10,302,12,302,6508,9,302,1,302, + 1,302,3,302,6512,8,302,1,302,3,302,6515,8,302,1,302,5,302,6518,8, + 302,10,302,12,302,6521,9,302,1,302,1,302,3,302,6525,8,302,1,302, + 5,302,6528,8,302,10,302,12,302,6531,9,302,1,302,1,302,1,302,3,302, + 6536,8,302,1,302,1,302,1,302,3,302,6541,8,302,1,302,1,302,1,302, + 3,302,6546,8,302,1,302,1,302,1,302,3,302,6551,8,302,1,302,1,302, + 3,302,6555,8,302,1,302,3,302,6558,8,302,1,302,1,302,1,302,3,302, + 6563,8,302,1,302,1,302,3,302,6567,8,302,1,302,1,302,3,302,6571,8, + 302,1,303,1,303,1,303,1,303,5,303,6577,8,303,10,303,12,303,6580, + 9,303,1,303,1,303,1,304,1,304,3,304,6586,8,304,1,304,1,304,3,304, + 6590,8,304,1,304,1,304,1,304,3,304,6595,8,304,1,304,1,304,1,304, + 3,304,6600,8,304,1,304,1,304,3,304,6604,8,304,3,304,6606,8,304,1, + 304,3,304,6609,8,304,1,305,1,305,1,305,1,305,1,306,1,306,1,306,1, + 306,1,306,1,306,1,307,1,307,1,307,1,307,3,307,6625,8,307,1,307,1, + 307,1,308,1,308,1,308,5,308,6632,8,308,10,308,12,308,6635,9,308, + 1,309,1,309,1,309,5,309,6640,8,309,10,309,12,309,6643,9,309,1,310, + 1,310,1,310,5,310,6648,8,310,10,310,12,310,6651,9,310,1,311,1,311, + 1,311,1,311,5,311,6657,8,311,10,311,12,311,6660,9,311,1,311,1,311, + 1,312,1,312,1,312,5,312,6667,8,312,10,312,12,312,6670,9,312,1,313, + 1,313,1,313,5,313,6675,8,313,10,313,12,313,6678,9,313,1,314,1,314, + 1,314,5,314,6683,8,314,10,314,12,314,6686,9,314,1,315,1,315,1,315, + 5,315,6691,8,315,10,315,12,315,6694,9,315,1,316,1,316,1,316,5,316, + 6699,8,316,10,316,12,316,6702,9,316,1,317,1,317,1,317,1,317,1,317, + 1,317,1,317,1,317,1,317,3,317,6713,8,317,1,317,1,317,1,317,1,317, + 1,317,3,317,6720,8,317,1,317,1,317,1,317,1,317,1,317,1,317,1,317, + 1,317,3,317,6730,8,317,1,318,1,318,1,318,3,318,6735,8,318,1,318, + 3,318,6738,8,318,1,318,1,318,1,318,3,318,6743,8,318,1,318,3,318, + 6746,8,318,1,319,1,319,3,319,6750,8,319,1,320,1,320,1,320,1,321, + 1,321,1,321,1,321,1,322,1,322,1,322,1,323,1,323,1,323,3,323,6765, + 8,323,1,324,1,324,1,324,1,324,1,324,1,324,3,324,6773,8,324,1,324, + 1,324,1,324,1,324,1,324,3,324,6780,8,324,1,324,1,324,1,324,3,324, + 6785,8,324,1,325,1,325,1,325,3,325,6790,8,325,1,325,1,325,1,325, 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,4,325,6823,8,325, - 11,325,12,325,6824,1,325,1,325,3,325,6829,8,325,1,325,1,325,1,325, - 1,325,4,325,6835,8,325,11,325,12,325,6836,1,325,1,325,3,325,6841, - 8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6850,8,325, - 1,325,1,325,1,325,1,325,1,325,1,325,3,325,6858,8,325,1,325,1,325, - 1,325,3,325,6863,8,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325, - 6871,8,325,1,325,1,325,1,325,3,325,6876,8,325,1,325,1,325,1,325, - 3,325,6881,8,325,3,325,6883,8,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,3,325,6892,8,325,1,325,1,325,1,325,3,325,6897,8,325, - 1,325,1,325,1,325,1,325,1,325,1,325,3,325,6905,8,325,1,325,1,325, - 1,325,3,325,6910,8,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325, - 6918,8,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6926,8,325, - 1,325,3,325,6929,8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,3,325,6939,8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6957, - 8,325,1,325,3,325,6960,8,325,1,325,3,325,6963,8,325,1,325,1,325, - 3,325,6967,8,325,1,326,1,326,1,326,1,326,1,326,1,327,1,327,1,327, - 1,327,5,327,6978,8,327,10,327,12,327,6981,9,327,1,327,1,327,1,327, - 1,327,1,327,3,327,6988,8,327,1,328,1,328,3,328,6992,8,328,1,329, - 1,329,1,329,3,329,6997,8,329,1,329,1,329,1,329,3,329,7002,8,329, - 1,329,1,329,1,329,1,329,3,329,7008,8,329,1,329,1,329,1,329,3,329, - 7013,8,329,1,329,1,329,3,329,7017,8,329,1,329,1,329,1,329,3,329, - 7022,8,329,1,329,1,329,1,329,3,329,7027,8,329,1,329,1,329,1,329, - 3,329,7032,8,329,1,329,1,329,1,329,1,329,1,329,1,329,5,329,7040, - 8,329,10,329,12,329,7043,9,329,3,329,7045,8,329,1,329,1,329,3,329, - 7049,8,329,1,329,1,329,3,329,7053,8,329,1,330,1,330,1,330,1,330, - 1,330,3,330,7060,8,330,1,330,1,330,3,330,7064,8,330,1,330,1,330, - 1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330, + 1,325,1,325,1,325,1,325,1,325,4,325,6822,8,325,11,325,12,325,6823, + 1,325,1,325,3,325,6828,8,325,1,325,1,325,1,325,1,325,4,325,6834, + 8,325,11,325,12,325,6835,1,325,1,325,3,325,6840,8,325,1,325,1,325, + 1,325,1,325,1,325,1,325,1,325,3,325,6849,8,325,1,325,1,325,1,325, + 1,325,1,325,1,325,3,325,6857,8,325,1,325,1,325,1,325,3,325,6862, + 8,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6870,8,325,1,325, + 1,325,1,325,3,325,6875,8,325,1,325,1,325,1,325,3,325,6880,8,325, + 3,325,6882,8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325, + 6891,8,325,1,325,1,325,1,325,3,325,6896,8,325,1,325,1,325,1,325, + 1,325,1,325,1,325,3,325,6904,8,325,1,325,1,325,1,325,3,325,6909, + 8,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6917,8,325,1,325, + 1,325,1,325,1,325,1,325,1,325,3,325,6925,8,325,1,325,3,325,6928, + 8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,6938, + 8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325, + 1,325,1,325,1,325,1,325,1,325,1,325,3,325,6956,8,325,1,325,3,325, + 6959,8,325,1,325,3,325,6962,8,325,1,325,1,325,3,325,6966,8,325,1, + 326,1,326,1,326,1,326,1,326,1,327,1,327,1,327,1,327,5,327,6977,8, + 327,10,327,12,327,6980,9,327,1,327,1,327,1,327,1,327,1,327,3,327, + 6987,8,327,1,328,1,328,3,328,6991,8,328,1,329,1,329,1,329,3,329, + 6996,8,329,1,329,1,329,1,329,3,329,7001,8,329,1,329,1,329,1,329, + 1,329,3,329,7007,8,329,1,329,1,329,1,329,3,329,7012,8,329,1,329, + 1,329,3,329,7016,8,329,1,329,1,329,1,329,3,329,7021,8,329,1,329, + 1,329,1,329,3,329,7026,8,329,1,329,1,329,1,329,3,329,7031,8,329, + 1,329,1,329,1,329,1,329,1,329,1,329,5,329,7039,8,329,10,329,12,329, + 7042,9,329,3,329,7044,8,329,1,329,1,329,3,329,7048,8,329,1,329,1, + 329,3,329,7052,8,329,1,330,1,330,1,330,1,330,1,330,3,330,7059,8, + 330,1,330,1,330,3,330,7063,8,330,1,330,1,330,1,330,1,330,1,330,1, + 330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330, 1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330, - 1,330,1,330,1,330,3,330,7093,8,330,1,331,1,331,1,331,1,331,1,331, - 1,331,3,331,7101,8,331,1,332,3,332,7104,8,332,1,332,3,332,7107,8, - 332,1,332,3,332,7110,8,332,1,332,3,332,7113,8,332,1,333,1,333,1, - 334,1,334,1,334,1,335,1,335,1,336,1,336,3,336,7124,8,336,1,337,1, - 337,1,337,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 3,338,7138,8,338,1,339,1,339,1,339,1,339,1,339,5,339,7145,8,339, - 10,339,12,339,7148,9,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340, + 3,330,7092,8,330,1,331,1,331,1,331,1,331,1,331,1,331,3,331,7100, + 8,331,1,332,3,332,7103,8,332,1,332,3,332,7106,8,332,1,332,3,332, + 7109,8,332,1,332,3,332,7112,8,332,1,333,1,333,1,334,1,334,1,334, + 1,335,1,335,1,336,1,336,3,336,7123,8,336,1,337,1,337,1,337,1,337, + 1,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,7137,8,338, + 1,339,1,339,1,339,1,339,1,339,5,339,7144,8,339,10,339,12,339,7147, + 9,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340, 1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340, - 1,340,1,340,1,340,1,340,1,340,1,340,3,340,7174,8,340,1,341,1,341, - 1,341,1,341,1,341,1,342,1,342,1,342,1,342,3,342,7185,8,342,1,342, - 1,342,1,342,1,342,1,342,3,342,7192,8,342,5,342,7194,8,342,10,342, - 12,342,7197,9,342,1,343,1,343,1,343,1,343,3,343,7203,8,343,1,344, - 1,344,1,344,1,344,1,344,1,344,3,344,7211,8,344,1,344,1,344,1,344, - 3,344,7216,8,344,1,344,1,344,1,344,1,344,5,344,7222,8,344,10,344, - 12,344,7225,9,344,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, - 1,345,3,345,7236,8,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, - 1,345,1,345,1,345,1,345,3,345,7249,8,345,1,345,1,345,1,345,1,345, - 3,345,7255,8,345,1,345,1,345,1,345,1,345,3,345,7261,8,345,1,345, - 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, - 1,345,1,345,3,345,7277,8,345,1,345,1,345,1,345,1,345,3,345,7283, - 8,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,5,345,7292,8,345, - 10,345,12,345,7295,9,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,5,346, - 7314,8,346,10,346,12,346,7317,9,346,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,4,346,7326,8,346,11,346,12,346,7327,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,3,346,7345,8,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,5,346,7366,8,346,10,346,12,346,7369,9,346,1,347,1,347,1,348, - 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348, - 1,348,1,348,3,348,7387,8,348,1,349,1,349,1,349,1,349,1,349,1,349, - 1,349,3,349,7396,8,349,1,350,1,350,1,350,1,350,1,350,1,350,1,350, - 3,350,7405,8,350,1,351,1,351,1,352,1,352,1,353,1,353,1,353,1,353, - 1,353,3,353,7416,8,353,1,354,1,354,1,355,1,355,1,356,1,356,1,357, - 1,357,1,358,1,358,1,359,1,359,1,360,1,360,1,360,0,3,688,690,692, - 361,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42, - 44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86, - 88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122, - 124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154, - 156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186, - 188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218, - 220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250, - 252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282, - 284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314, - 316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346, - 348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378, - 380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410, - 412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442, - 444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474, - 476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506, - 508,510,512,514,516,518,520,522,524,526,528,530,532,534,536,538, - 540,542,544,546,548,550,552,554,556,558,560,562,564,566,568,570, - 572,574,576,578,580,582,584,586,588,590,592,594,596,598,600,602, - 604,606,608,610,612,614,616,618,620,622,624,626,628,630,632,634, - 636,638,640,642,644,646,648,650,652,654,656,658,660,662,664,666, - 668,670,672,674,676,678,680,682,684,686,688,690,692,694,696,698, - 700,702,704,706,708,710,712,714,716,718,720,0,144,2,0,39,39,150, - 150,2,0,531,531,537,537,3,0,69,69,159,159,181,181,3,0,42,42,384, - 384,454,454,4,0,42,42,419,419,529,529,611,611,2,0,514,514,1148,1148, - 2,0,78,78,141,141,2,0,15,15,334,334,3,0,44,44,85,85,184,184,2,0, - 434,434,558,558,3,0,506,506,650,650,658,658,2,0,392,392,460,460, - 2,0,352,352,474,474,2,0,42,42,1138,1139,2,0,350,350,443,443,2,0, - 459,459,673,673,3,0,80,80,84,84,125,125,3,0,42,42,402,402,431,431, - 3,0,42,42,398,398,792,792,2,0,637,637,672,672,2,0,81,81,91,91,3, - 0,436,436,548,548,613,613,2,0,69,69,159,159,1,0,356,357,1,0,1138, - 1139,2,0,1148,1148,1156,1156,2,0,81,81,388,388,2,0,545,545,1148, - 1148,2,0,546,546,1148,1148,3,0,430,430,469,469,521,521,7,0,42,42, - 370,370,372,372,402,402,431,431,573,573,1156,1156,2,0,514,514,530, - 530,1,0,1139,1140,2,0,5,5,51,51,4,0,42,42,384,384,454,454,458,458, - 2,0,26,26,30,30,2,0,12,12,175,175,2,0,192,192,677,677,2,0,21,21, - 144,144,3,0,43,43,75,75,106,106,2,0,106,106,374,374,2,0,365,365, - 427,427,2,0,101,101,601,601,2,0,43,43,106,106,2,0,6,6,49,49,2,0, - 188,188,669,669,4,0,430,430,469,469,520,520,562,562,2,0,430,430, - 520,520,2,0,13,13,45,45,3,0,66,66,78,78,186,186,2,0,34,34,83,83, - 2,0,97,97,148,148,2,0,6,6,49,50,1,0,626,627,2,0,172,172,742,742, - 2,0,439,439,609,609,2,0,226,226,477,477,5,0,107,107,482,483,485, - 485,489,497,575,575,4,0,479,480,484,484,486,487,576,576,3,0,108, - 108,478,478,488,488,2,0,462,462,628,628,2,0,622,622,624,624,2,0, - 344,344,629,629,2,0,90,90,591,591,2,0,51,51,390,390,3,0,31,31,61, - 61,179,179,3,0,131,131,172,172,437,437,3,0,12,12,19,19,187,187,2, - 0,42,42,121,121,2,0,103,103,182,182,2,0,360,360,614,614,2,0,40,40, - 671,671,2,0,115,115,474,474,2,0,422,422,568,568,4,0,206,206,208, - 208,214,214,638,638,2,0,1108,1108,1124,1124,2,0,345,345,577,577, - 2,0,68,68,80,80,6,0,131,131,172,172,177,177,415,415,437,437,671, - 671,2,0,513,513,634,634,2,0,412,412,675,675,2,0,131,131,437,437, - 3,0,81,81,92,92,452,452,3,0,439,439,474,474,609,609,2,0,634,634, - 670,670,2,0,376,376,567,567,6,0,226,226,409,409,411,411,438,438, - 574,574,615,615,2,0,45,46,62,62,3,0,422,422,550,550,885,885,2,0, - 466,466,652,652,10,0,359,359,367,367,378,380,387,387,507,507,515, - 515,639,639,646,646,836,836,1005,1005,2,0,35,35,168,168,2,0,117, - 117,996,996,11,0,359,359,367,367,378,380,387,387,507,507,515,515, - 592,592,639,639,646,646,836,836,1005,1005,2,0,1137,1137,1158,1159, - 1,0,1159,1160,2,0,375,375,787,798,3,0,1138,1140,1149,1149,1151,1151, - 2,0,63,63,178,178,2,0,116,116,1152,1152,5,0,25,25,222,224,231,231, - 233,236,518,518,2,0,25,25,222,222,2,0,25,25,222,223,1,0,196,207, - 3,0,183,183,195,195,612,612,2,0,211,216,431,431,6,0,217,217,228, - 228,230,230,232,232,239,239,348,349,4,0,218,221,226,227,229,229, - 346,346,2,0,153,153,237,237,2,0,466,466,803,811,3,0,211,211,226, - 226,518,518,6,0,200,200,206,206,209,209,217,218,220,221,466,466, - 1,0,214,215,2,0,183,183,612,612,2,0,200,200,206,206,2,0,315,316, - 322,322,3,0,150,150,313,316,331,331,1,0,325,326,3,0,17,17,95,95, - 176,176,2,0,222,222,226,226,2,0,217,218,220,220,3,0,13,13,45,45, - 994,994,3,0,286,286,298,299,309,309,3,0,287,289,305,308,310,312, - 2,0,295,295,297,297,2,0,293,293,296,296,2,0,291,292,302,304,2,0, - 133,133,601,601,2,0,433,433,559,559,2,0,535,535,551,551,2,0,114, - 114,1127,1127,3,0,63,63,178,178,662,662,2,0,137,137,149,149,3,0, - 6,6,337,337,618,618,3,0,114,114,1120,1121,1127,1128,2,0,1117,1119, - 1122,1123,1,0,1120,1121,2,0,226,226,746,786,1,0,799,802,5,0,708, - 709,725,727,733,733,739,740,742,742,1,0,689,696,3,0,217,221,234, - 234,237,237,59,0,11,11,14,14,18,18,29,29,35,35,37,37,42,42,48,48, - 55,55,57,57,59,59,73,73,79,79,94,94,117,117,121,121,124,124,130, - 130,158,158,168,168,239,239,283,290,294,294,298,299,305,312,332, - 385,387,403,405,405,407,432,434,450,452,458,460,521,523,523,527, - 544,547,558,560,589,591,592,594,606,608,636,638,672,674,675,677, - 682,684,688,697,697,699,707,710,712,717,718,720,724,728,732,734, - 734,736,738,741,741,743,745,792,792,836,836,875,875,1000,1000,1005, - 1005,1088,1088,23,0,39,39,97,97,148,148,150,150,217,219,221,221, - 251,282,290,293,295,297,300,304,324,324,459,459,673,673,689,696, - 736,736,803,803,806,835,837,874,876,999,1001,1004,1006,1087,1089, - 1107,1123,1123,8747,0,723,1,0,0,0,2,736,1,0,0,0,4,745,1,0,0,0,6, - 785,1,0,0,0,8,800,1,0,0,0,10,811,1,0,0,0,12,828,1,0,0,0,14,833,1, - 0,0,0,16,845,1,0,0,0,18,872,1,0,0,0,20,881,1,0,0,0,22,883,1,0,0, - 0,24,895,1,0,0,0,26,925,1,0,0,0,28,961,1,0,0,0,30,1012,1,0,0,0,32, - 1038,1,0,0,0,34,1074,1,0,0,0,36,1087,1,0,0,0,38,1184,1,0,0,0,40, - 1186,1,0,0,0,42,1204,1,0,0,0,44,1265,1,0,0,0,46,1287,1,0,0,0,48, - 1293,1,0,0,0,50,1315,1,0,0,0,52,1317,1,0,0,0,54,1319,1,0,0,0,56, - 1399,1,0,0,0,58,1406,1,0,0,0,60,1408,1,0,0,0,62,1413,1,0,0,0,64, - 1453,1,0,0,0,66,1459,1,0,0,0,68,1461,1,0,0,0,70,1482,1,0,0,0,72, - 1489,1,0,0,0,74,1491,1,0,0,0,76,1516,1,0,0,0,78,1519,1,0,0,0,80, - 1524,1,0,0,0,82,1550,1,0,0,0,84,1566,1,0,0,0,86,1568,1,0,0,0,88, - 1590,1,0,0,0,90,1592,1,0,0,0,92,1658,1,0,0,0,94,1729,1,0,0,0,96, - 1731,1,0,0,0,98,1759,1,0,0,0,100,1769,1,0,0,0,102,1799,1,0,0,0,104, - 1986,1,0,0,0,106,1988,1,0,0,0,108,1990,1,0,0,0,110,1993,1,0,0,0, - 112,2068,1,0,0,0,114,2091,1,0,0,0,116,2239,1,0,0,0,118,2244,1,0, - 0,0,120,2246,1,0,0,0,122,2256,1,0,0,0,124,2312,1,0,0,0,126,2332, - 1,0,0,0,128,2334,1,0,0,0,130,2369,1,0,0,0,132,2378,1,0,0,0,134,2385, - 1,0,0,0,136,2408,1,0,0,0,138,2417,1,0,0,0,140,2432,1,0,0,0,142,2457, - 1,0,0,0,144,2477,1,0,0,0,146,2860,1,0,0,0,148,2960,1,0,0,0,150,2962, - 1,0,0,0,152,2969,1,0,0,0,154,2976,1,0,0,0,156,2999,1,0,0,0,158,3007, - 1,0,0,0,160,3014,1,0,0,0,162,3021,1,0,0,0,164,3028,1,0,0,0,166,3040, - 1,0,0,0,168,3050,1,0,0,0,170,3057,1,0,0,0,172,3073,1,0,0,0,174,3119, - 1,0,0,0,176,3121,1,0,0,0,178,3131,1,0,0,0,180,3135,1,0,0,0,182,3141, - 1,0,0,0,184,3153,1,0,0,0,186,3155,1,0,0,0,188,3162,1,0,0,0,190,3164, - 1,0,0,0,192,3222,1,0,0,0,194,3296,1,0,0,0,196,3355,1,0,0,0,198,3453, - 1,0,0,0,200,3457,1,0,0,0,202,3459,1,0,0,0,204,3494,1,0,0,0,206,3496, - 1,0,0,0,208,3504,1,0,0,0,210,3512,1,0,0,0,212,3514,1,0,0,0,214,3550, - 1,0,0,0,216,3605,1,0,0,0,218,3614,1,0,0,0,220,3634,1,0,0,0,222,3646, - 1,0,0,0,224,3650,1,0,0,0,226,3683,1,0,0,0,228,3704,1,0,0,0,230,3714, - 1,0,0,0,232,3718,1,0,0,0,234,3744,1,0,0,0,236,3783,1,0,0,0,238,3785, - 1,0,0,0,240,3800,1,0,0,0,242,3849,1,0,0,0,244,3858,1,0,0,0,246,3868, - 1,0,0,0,248,3878,1,0,0,0,250,3934,1,0,0,0,252,3936,1,0,0,0,254,3963, - 1,0,0,0,256,3969,1,0,0,0,258,3977,1,0,0,0,260,3994,1,0,0,0,262,4010, - 1,0,0,0,264,4047,1,0,0,0,266,4053,1,0,0,0,268,4062,1,0,0,0,270,4075, - 1,0,0,0,272,4079,1,0,0,0,274,4117,1,0,0,0,276,4155,1,0,0,0,278,4169, - 1,0,0,0,280,4177,1,0,0,0,282,4181,1,0,0,0,284,4187,1,0,0,0,286,4201, - 1,0,0,0,288,4204,1,0,0,0,290,4222,1,0,0,0,292,4226,1,0,0,0,294,4242, - 1,0,0,0,296,4244,1,0,0,0,298,4256,1,0,0,0,300,4260,1,0,0,0,302,4277, - 1,0,0,0,304,4294,1,0,0,0,306,4297,1,0,0,0,308,4307,1,0,0,0,310,4311, - 1,0,0,0,312,4324,1,0,0,0,314,4327,1,0,0,0,316,4332,1,0,0,0,318,4352, - 1,0,0,0,320,4354,1,0,0,0,322,4371,1,0,0,0,324,4380,1,0,0,0,326,4389, - 1,0,0,0,328,4391,1,0,0,0,330,4405,1,0,0,0,332,4416,1,0,0,0,334,4425, - 1,0,0,0,336,4428,1,0,0,0,338,4436,1,0,0,0,340,4461,1,0,0,0,342,4473, - 1,0,0,0,344,4476,1,0,0,0,346,4508,1,0,0,0,348,4510,1,0,0,0,350,4512, - 1,0,0,0,352,4514,1,0,0,0,354,4516,1,0,0,0,356,4569,1,0,0,0,358,4571, - 1,0,0,0,360,4577,1,0,0,0,362,4597,1,0,0,0,364,4611,1,0,0,0,366,4622, - 1,0,0,0,368,4624,1,0,0,0,370,4630,1,0,0,0,372,4640,1,0,0,0,374,4644, - 1,0,0,0,376,4651,1,0,0,0,378,4655,1,0,0,0,380,4661,1,0,0,0,382,4668, - 1,0,0,0,384,4674,1,0,0,0,386,4680,1,0,0,0,388,4685,1,0,0,0,390,4730, - 1,0,0,0,392,4751,1,0,0,0,394,4776,1,0,0,0,396,4779,1,0,0,0,398,4785, - 1,0,0,0,400,4801,1,0,0,0,402,4816,1,0,0,0,404,4822,1,0,0,0,406,4852, - 1,0,0,0,408,4854,1,0,0,0,410,4861,1,0,0,0,412,4873,1,0,0,0,414,4879, - 1,0,0,0,416,4904,1,0,0,0,418,4908,1,0,0,0,420,4912,1,0,0,0,422,4923, - 1,0,0,0,424,5004,1,0,0,0,426,5071,1,0,0,0,428,5073,1,0,0,0,430,5179, - 1,0,0,0,432,5203,1,0,0,0,434,5205,1,0,0,0,436,5223,1,0,0,0,438,5303, - 1,0,0,0,440,5305,1,0,0,0,442,5318,1,0,0,0,444,5329,1,0,0,0,446,5357, - 1,0,0,0,448,5361,1,0,0,0,450,5382,1,0,0,0,452,5392,1,0,0,0,454,5402, - 1,0,0,0,456,5442,1,0,0,0,458,5444,1,0,0,0,460,5447,1,0,0,0,462,5547, - 1,0,0,0,464,5565,1,0,0,0,466,5567,1,0,0,0,468,5571,1,0,0,0,470,5609, - 1,0,0,0,472,5618,1,0,0,0,474,5624,1,0,0,0,476,5631,1,0,0,0,478,5653, - 1,0,0,0,480,5655,1,0,0,0,482,5669,1,0,0,0,484,5675,1,0,0,0,486,5731, - 1,0,0,0,488,5886,1,0,0,0,490,5898,1,0,0,0,492,5913,1,0,0,0,494,5919, - 1,0,0,0,496,5938,1,0,0,0,498,5948,1,0,0,0,500,5962,1,0,0,0,502,5964, - 1,0,0,0,504,5967,1,0,0,0,506,5989,1,0,0,0,508,6001,1,0,0,0,510,6007, - 1,0,0,0,512,6019,1,0,0,0,514,6023,1,0,0,0,516,6025,1,0,0,0,518,6067, - 1,0,0,0,520,6074,1,0,0,0,522,6076,1,0,0,0,524,6099,1,0,0,0,526,6105, - 1,0,0,0,528,6113,1,0,0,0,530,6116,1,0,0,0,532,6119,1,0,0,0,534,6140, - 1,0,0,0,536,6161,1,0,0,0,538,6169,1,0,0,0,540,6181,1,0,0,0,542,6189, - 1,0,0,0,544,6227,1,0,0,0,546,6239,1,0,0,0,548,6241,1,0,0,0,550,6247, - 1,0,0,0,552,6249,1,0,0,0,554,6259,1,0,0,0,556,6275,1,0,0,0,558,6288, - 1,0,0,0,560,6297,1,0,0,0,562,6299,1,0,0,0,564,6306,1,0,0,0,566,6308, - 1,0,0,0,568,6314,1,0,0,0,570,6318,1,0,0,0,572,6323,1,0,0,0,574,6325, - 1,0,0,0,576,6327,1,0,0,0,578,6345,1,0,0,0,580,6361,1,0,0,0,582,6365, - 1,0,0,0,584,6370,1,0,0,0,586,6381,1,0,0,0,588,6386,1,0,0,0,590,6388, - 1,0,0,0,592,6392,1,0,0,0,594,6417,1,0,0,0,596,6419,1,0,0,0,598,6422, - 1,0,0,0,600,6427,1,0,0,0,602,6443,1,0,0,0,604,6571,1,0,0,0,606,6573, - 1,0,0,0,608,6606,1,0,0,0,610,6611,1,0,0,0,612,6615,1,0,0,0,614,6621, - 1,0,0,0,616,6629,1,0,0,0,618,6637,1,0,0,0,620,6645,1,0,0,0,622,6653, - 1,0,0,0,624,6664,1,0,0,0,626,6672,1,0,0,0,628,6680,1,0,0,0,630,6688, - 1,0,0,0,632,6696,1,0,0,0,634,6730,1,0,0,0,636,6746,1,0,0,0,638,6750, - 1,0,0,0,640,6752,1,0,0,0,642,6755,1,0,0,0,644,6759,1,0,0,0,646,6765, - 1,0,0,0,648,6785,1,0,0,0,650,6966,1,0,0,0,652,6968,1,0,0,0,654,6987, - 1,0,0,0,656,6989,1,0,0,0,658,7052,1,0,0,0,660,7092,1,0,0,0,662,7094, - 1,0,0,0,664,7103,1,0,0,0,666,7114,1,0,0,0,668,7116,1,0,0,0,670,7119, - 1,0,0,0,672,7123,1,0,0,0,674,7125,1,0,0,0,676,7137,1,0,0,0,678,7139, - 1,0,0,0,680,7173,1,0,0,0,682,7175,1,0,0,0,684,7184,1,0,0,0,686,7202, - 1,0,0,0,688,7215,1,0,0,0,690,7226,1,0,0,0,692,7344,1,0,0,0,694,7370, - 1,0,0,0,696,7386,1,0,0,0,698,7395,1,0,0,0,700,7404,1,0,0,0,702,7406, - 1,0,0,0,704,7408,1,0,0,0,706,7415,1,0,0,0,708,7417,1,0,0,0,710,7419, - 1,0,0,0,712,7421,1,0,0,0,714,7423,1,0,0,0,716,7425,1,0,0,0,718,7427, - 1,0,0,0,720,7429,1,0,0,0,722,724,3,2,1,0,723,722,1,0,0,0,723,724, - 1,0,0,0,724,725,1,0,0,0,725,726,5,0,0,1,726,1,1,0,0,0,727,729,3, - 4,2,0,728,730,5,1136,0,0,729,728,1,0,0,0,729,730,1,0,0,0,730,737, - 1,0,0,0,731,732,3,4,2,0,732,733,5,1136,0,0,733,734,3,2,1,0,734,737, - 1,0,0,0,735,737,1,0,0,0,736,727,1,0,0,0,736,731,1,0,0,0,736,735, - 1,0,0,0,737,3,1,0,0,0,738,746,3,6,3,0,739,746,3,8,4,0,740,746,3, - 10,5,0,741,746,3,12,6,0,742,746,3,14,7,0,743,746,3,18,9,0,744,746, - 3,20,10,0,745,738,1,0,0,0,745,739,1,0,0,0,745,740,1,0,0,0,745,741, - 1,0,0,0,745,742,1,0,0,0,745,743,1,0,0,0,745,744,1,0,0,0,746,5,1, - 0,0,0,747,786,3,22,11,0,748,786,3,24,12,0,749,786,3,26,13,0,750, - 786,3,28,14,0,751,786,3,30,15,0,752,786,3,32,16,0,753,786,3,36,18, - 0,754,786,3,38,19,0,755,786,3,40,20,0,756,786,3,42,21,0,757,786, - 3,44,22,0,758,786,3,54,27,0,759,786,3,34,17,0,760,786,3,126,63,0, - 761,786,3,128,64,0,762,786,3,130,65,0,763,786,3,132,66,0,764,786, - 3,134,67,0,765,786,3,136,68,0,766,786,3,138,69,0,767,786,3,140,70, - 0,768,786,3,142,71,0,769,786,3,144,72,0,770,786,3,150,75,0,771,786, - 3,152,76,0,772,786,3,154,77,0,773,786,3,156,78,0,774,786,3,158,79, - 0,775,786,3,160,80,0,776,786,3,162,81,0,777,786,3,164,82,0,778,786, - 3,166,83,0,779,786,3,168,84,0,780,786,3,170,85,0,781,786,3,172,86, - 0,782,786,3,174,87,0,783,786,3,176,88,0,784,786,3,180,90,0,785,747, - 1,0,0,0,785,748,1,0,0,0,785,749,1,0,0,0,785,750,1,0,0,0,785,751, - 1,0,0,0,785,752,1,0,0,0,785,753,1,0,0,0,785,754,1,0,0,0,785,755, - 1,0,0,0,785,756,1,0,0,0,785,757,1,0,0,0,785,758,1,0,0,0,785,759, - 1,0,0,0,785,760,1,0,0,0,785,761,1,0,0,0,785,762,1,0,0,0,785,763, - 1,0,0,0,785,764,1,0,0,0,785,765,1,0,0,0,785,766,1,0,0,0,785,767, - 1,0,0,0,785,768,1,0,0,0,785,769,1,0,0,0,785,770,1,0,0,0,785,771, - 1,0,0,0,785,772,1,0,0,0,785,773,1,0,0,0,785,774,1,0,0,0,785,775, - 1,0,0,0,785,776,1,0,0,0,785,777,1,0,0,0,785,778,1,0,0,0,785,779, - 1,0,0,0,785,780,1,0,0,0,785,781,1,0,0,0,785,782,1,0,0,0,785,783, - 1,0,0,0,785,784,1,0,0,0,786,7,1,0,0,0,787,801,3,198,99,0,788,801, - 3,190,95,0,789,801,3,200,100,0,790,801,3,184,92,0,791,801,3,196, - 98,0,792,801,3,182,91,0,793,801,3,192,96,0,794,801,3,194,97,0,795, - 801,3,186,93,0,796,801,3,188,94,0,797,801,3,202,101,0,798,801,3, - 538,269,0,799,801,3,540,270,0,800,787,1,0,0,0,800,788,1,0,0,0,800, - 789,1,0,0,0,800,790,1,0,0,0,800,791,1,0,0,0,800,792,1,0,0,0,800, - 793,1,0,0,0,800,794,1,0,0,0,800,795,1,0,0,0,800,796,1,0,0,0,800, - 797,1,0,0,0,800,798,1,0,0,0,800,799,1,0,0,0,801,9,1,0,0,0,802,812, - 3,296,148,0,803,812,3,298,149,0,804,812,3,300,150,0,805,812,3,302, - 151,0,806,812,3,304,152,0,807,812,3,306,153,0,808,812,3,308,154, - 0,809,812,3,310,155,0,810,812,3,312,156,0,811,802,1,0,0,0,811,803, - 1,0,0,0,811,804,1,0,0,0,811,805,1,0,0,0,811,806,1,0,0,0,811,807, - 1,0,0,0,811,808,1,0,0,0,811,809,1,0,0,0,811,810,1,0,0,0,812,11,1, - 0,0,0,813,829,3,328,164,0,814,829,3,330,165,0,815,829,3,332,166, - 0,816,829,3,334,167,0,817,829,3,336,168,0,818,829,3,338,169,0,819, - 829,3,340,170,0,820,829,3,342,171,0,821,829,3,344,172,0,822,829, - 3,368,184,0,823,829,3,370,185,0,824,829,3,372,186,0,825,829,3,374, - 187,0,826,829,3,376,188,0,827,829,3,378,189,0,828,813,1,0,0,0,828, - 814,1,0,0,0,828,815,1,0,0,0,828,816,1,0,0,0,828,817,1,0,0,0,828, - 818,1,0,0,0,828,819,1,0,0,0,828,820,1,0,0,0,828,821,1,0,0,0,828, - 822,1,0,0,0,828,823,1,0,0,0,828,824,1,0,0,0,828,825,1,0,0,0,828, - 826,1,0,0,0,828,827,1,0,0,0,829,13,1,0,0,0,830,834,3,380,190,0,831, - 834,3,382,191,0,832,834,3,384,192,0,833,830,1,0,0,0,833,831,1,0, - 0,0,833,832,1,0,0,0,834,15,1,0,0,0,835,846,3,388,194,0,836,846,3, - 390,195,0,837,846,3,392,196,0,838,846,3,396,198,0,839,846,3,398, - 199,0,840,846,3,400,200,0,841,846,3,404,202,0,842,846,3,394,197, - 0,843,846,3,402,201,0,844,846,3,406,203,0,845,835,1,0,0,0,845,836, - 1,0,0,0,845,837,1,0,0,0,845,838,1,0,0,0,845,839,1,0,0,0,845,840, - 1,0,0,0,845,841,1,0,0,0,845,842,1,0,0,0,845,843,1,0,0,0,845,844, - 1,0,0,0,846,17,1,0,0,0,847,873,3,424,212,0,848,873,3,426,213,0,849, - 873,3,428,214,0,850,873,3,430,215,0,851,873,3,434,217,0,852,873, - 3,436,218,0,853,873,3,438,219,0,854,873,3,440,220,0,855,873,3,468, - 234,0,856,873,3,470,235,0,857,873,3,472,236,0,858,873,3,474,237, - 0,859,873,3,476,238,0,860,873,3,480,240,0,861,873,3,482,241,0,862, - 873,3,484,242,0,863,873,3,486,243,0,864,873,3,488,244,0,865,873, - 3,502,251,0,866,873,3,504,252,0,867,873,3,506,253,0,868,873,3,508, - 254,0,869,873,3,510,255,0,870,873,3,512,256,0,871,873,3,514,257, - 0,872,847,1,0,0,0,872,848,1,0,0,0,872,849,1,0,0,0,872,850,1,0,0, - 0,872,851,1,0,0,0,872,852,1,0,0,0,872,853,1,0,0,0,872,854,1,0,0, - 0,872,855,1,0,0,0,872,856,1,0,0,0,872,857,1,0,0,0,872,858,1,0,0, - 0,872,859,1,0,0,0,872,860,1,0,0,0,872,861,1,0,0,0,872,862,1,0,0, - 0,872,863,1,0,0,0,872,864,1,0,0,0,872,865,1,0,0,0,872,866,1,0,0, - 0,872,867,1,0,0,0,872,868,1,0,0,0,872,869,1,0,0,0,872,870,1,0,0, - 0,872,871,1,0,0,0,873,19,1,0,0,0,874,882,3,524,262,0,875,882,3,526, - 263,0,876,882,3,528,264,0,877,882,3,530,265,0,878,882,3,532,266, - 0,879,882,3,534,267,0,880,882,3,542,271,0,881,874,1,0,0,0,881,875, - 1,0,0,0,881,876,1,0,0,0,881,877,1,0,0,0,881,878,1,0,0,0,881,879, - 1,0,0,0,881,880,1,0,0,0,882,21,1,0,0,0,883,884,5,33,0,0,884,886, - 7,0,0,0,885,887,3,642,321,0,886,885,1,0,0,0,886,887,1,0,0,0,887, - 888,1,0,0,0,888,892,3,584,292,0,889,891,3,56,28,0,890,889,1,0,0, - 0,891,894,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,23,1,0,0,0, - 894,892,1,0,0,0,895,897,5,33,0,0,896,898,3,62,31,0,897,896,1,0,0, - 0,897,898,1,0,0,0,898,899,1,0,0,0,899,901,5,415,0,0,900,902,3,642, - 321,0,901,900,1,0,0,0,901,902,1,0,0,0,902,903,1,0,0,0,903,904,3, - 548,274,0,904,905,5,118,0,0,905,906,5,605,0,0,906,913,3,64,32,0, - 907,908,5,118,0,0,908,910,5,371,0,0,909,911,5,114,0,0,910,909,1, - 0,0,0,910,911,1,0,0,0,911,912,1,0,0,0,912,914,5,561,0,0,913,907, - 1,0,0,0,913,914,1,0,0,0,914,916,1,0,0,0,915,917,3,72,36,0,916,915, - 1,0,0,0,916,917,1,0,0,0,917,920,1,0,0,0,918,919,5,368,0,0,919,921, - 5,1148,0,0,920,918,1,0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,923, - 5,399,0,0,923,924,3,386,193,0,924,25,1,0,0,0,925,927,5,33,0,0,926, - 928,7,1,0,0,927,926,1,0,0,0,927,928,1,0,0,0,928,930,1,0,0,0,929, - 931,7,2,0,0,930,929,1,0,0,0,930,931,1,0,0,0,931,932,1,0,0,0,932, - 933,5,81,0,0,933,935,3,584,292,0,934,936,3,74,37,0,935,934,1,0,0, - 0,935,936,1,0,0,0,936,937,1,0,0,0,937,938,5,118,0,0,938,939,3,550, - 275,0,939,943,3,622,311,0,940,942,3,76,38,0,941,940,1,0,0,0,942, - 945,1,0,0,0,943,941,1,0,0,0,943,944,1,0,0,0,944,958,1,0,0,0,945, - 943,1,0,0,0,946,948,5,336,0,0,947,949,5,1124,0,0,948,947,1,0,0,0, - 948,949,1,0,0,0,949,950,1,0,0,0,950,957,7,3,0,0,951,953,5,103,0, - 0,952,954,5,1124,0,0,953,952,1,0,0,0,953,954,1,0,0,0,954,955,1,0, - 0,0,955,957,7,4,0,0,956,946,1,0,0,0,956,951,1,0,0,0,957,960,1,0, - 0,0,958,956,1,0,0,0,958,959,1,0,0,0,959,27,1,0,0,0,960,958,1,0,0, - 0,961,962,5,33,0,0,962,963,5,475,0,0,963,964,5,73,0,0,964,965,3, - 584,292,0,965,966,5,5,0,0,966,967,5,659,0,0,967,973,5,1148,0,0,968, - 970,5,453,0,0,969,971,5,1124,0,0,970,969,1,0,0,0,970,971,1,0,0,0, - 971,972,1,0,0,0,972,974,3,592,296,0,973,968,1,0,0,0,973,974,1,0, - 0,0,974,980,1,0,0,0,975,977,5,660,0,0,976,978,5,1124,0,0,977,976, - 1,0,0,0,977,978,1,0,0,0,978,979,1,0,0,0,979,981,3,592,296,0,980, - 975,1,0,0,0,980,981,1,0,0,0,981,987,1,0,0,0,982,984,5,572,0,0,983, - 985,5,1124,0,0,984,983,1,0,0,0,984,985,1,0,0,0,985,986,1,0,0,0,986, - 988,3,592,296,0,987,982,1,0,0,0,987,988,1,0,0,0,988,994,1,0,0,0, - 989,991,5,528,0,0,990,992,5,1124,0,0,991,990,1,0,0,0,991,992,1,0, - 0,0,992,993,1,0,0,0,993,995,3,584,292,0,994,989,1,0,0,0,994,995, - 1,0,0,0,995,997,1,0,0,0,996,998,5,674,0,0,997,996,1,0,0,0,997,998, - 1,0,0,0,998,1004,1,0,0,0,999,1001,5,368,0,0,1000,1002,5,1124,0,0, - 1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002,1003,1,0,0,0,1003,1005, - 5,1148,0,0,1004,999,1,0,0,0,1004,1005,1,0,0,0,1005,1006,1,0,0,0, - 1006,1008,5,409,0,0,1007,1009,5,1124,0,0,1008,1007,1,0,0,0,1008, - 1009,1,0,0,0,1009,1010,1,0,0,0,1010,1011,3,572,286,0,1011,29,1,0, - 0,0,1012,1014,5,33,0,0,1013,1015,3,62,31,0,1014,1013,1,0,0,0,1014, - 1015,1,0,0,0,1015,1016,1,0,0,0,1016,1017,5,131,0,0,1017,1018,3,548, - 274,0,1018,1020,5,1133,0,0,1019,1021,3,78,39,0,1020,1019,1,0,0,0, - 1020,1021,1,0,0,0,1021,1026,1,0,0,0,1022,1023,5,1135,0,0,1023,1025, - 3,78,39,0,1024,1022,1,0,0,0,1025,1028,1,0,0,0,1026,1024,1,0,0,0, - 1026,1027,1,0,0,0,1027,1029,1,0,0,0,1028,1026,1,0,0,0,1029,1033, - 5,1134,0,0,1030,1032,3,82,41,0,1031,1030,1,0,0,0,1032,1035,1,0,0, - 0,1033,1031,1,0,0,0,1033,1034,1,0,0,0,1034,1036,1,0,0,0,1035,1033, - 1,0,0,0,1036,1037,3,386,193,0,1037,31,1,0,0,0,1038,1040,5,33,0,0, - 1039,1041,3,62,31,0,1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041,1043, - 1,0,0,0,1042,1044,5,335,0,0,1043,1042,1,0,0,0,1043,1044,1,0,0,0, - 1044,1045,1,0,0,0,1045,1047,5,437,0,0,1046,1048,3,642,321,0,1047, - 1046,1,0,0,0,1047,1048,1,0,0,0,1048,1049,1,0,0,0,1049,1050,3,548, - 274,0,1050,1052,5,1133,0,0,1051,1053,3,80,40,0,1052,1051,1,0,0,0, - 1052,1053,1,0,0,0,1053,1058,1,0,0,0,1054,1055,5,1135,0,0,1055,1057, - 3,80,40,0,1056,1054,1,0,0,0,1057,1060,1,0,0,0,1058,1056,1,0,0,0, - 1058,1059,1,0,0,0,1059,1061,1,0,0,0,1060,1058,1,0,0,0,1061,1062, - 5,1134,0,0,1062,1063,5,594,0,0,1063,1067,3,604,302,0,1064,1066,3, - 82,41,0,1065,1064,1,0,0,0,1066,1069,1,0,0,0,1067,1065,1,0,0,0,1067, - 1068,1,0,0,0,1068,1072,1,0,0,0,1069,1067,1,0,0,0,1070,1073,3,386, - 193,0,1071,1073,3,402,201,0,1072,1070,1,0,0,0,1072,1071,1,0,0,0, - 1073,33,1,0,0,0,1074,1075,5,33,0,0,1075,1077,5,596,0,0,1076,1078, - 3,642,321,0,1077,1076,1,0,0,0,1077,1078,1,0,0,0,1078,1079,1,0,0, - 0,1079,1084,3,554,277,0,1080,1081,5,1135,0,0,1081,1083,3,554,277, - 0,1082,1080,1,0,0,0,1083,1086,1,0,0,0,1084,1082,1,0,0,0,1084,1085, - 1,0,0,0,1085,35,1,0,0,0,1086,1084,1,0,0,0,1087,1088,5,33,0,0,1088, - 1089,5,608,0,0,1089,1090,3,584,292,0,1090,1091,5,67,0,0,1091,1092, - 5,388,0,0,1092,1093,5,679,0,0,1093,1094,7,5,0,0,1094,1095,5,541, - 0,0,1095,1096,5,1133,0,0,1096,1101,3,84,42,0,1097,1098,5,1135,0, - 0,1098,1100,3,84,42,0,1099,1097,1,0,0,0,1100,1103,1,0,0,0,1101,1099, - 1,0,0,0,1101,1102,1,0,0,0,1102,1104,1,0,0,0,1103,1101,1,0,0,0,1104, - 1105,5,1134,0,0,1105,37,1,0,0,0,1106,1108,5,33,0,0,1107,1109,5,649, - 0,0,1108,1107,1,0,0,0,1108,1109,1,0,0,0,1109,1110,1,0,0,0,1110,1112, - 5,172,0,0,1111,1113,3,642,321,0,1112,1111,1,0,0,0,1112,1113,1,0, - 0,0,1113,1114,1,0,0,0,1114,1122,3,550,275,0,1115,1116,5,98,0,0,1116, - 1123,3,550,275,0,1117,1118,5,1133,0,0,1118,1119,5,98,0,0,1119,1120, - 3,550,275,0,1120,1121,5,1134,0,0,1121,1123,1,0,0,0,1122,1115,1,0, - 0,0,1122,1117,1,0,0,0,1123,1185,1,0,0,0,1124,1126,5,33,0,0,1125, - 1127,5,649,0,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0, - 0,0,1128,1130,5,172,0,0,1129,1131,3,642,321,0,1130,1129,1,0,0,0, - 1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1134,3,550,275,0,1133,1135, - 3,86,43,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135,1146,1,0,0,0, - 1136,1143,3,104,52,0,1137,1139,5,1135,0,0,1138,1137,1,0,0,0,1138, - 1139,1,0,0,0,1139,1140,1,0,0,0,1140,1142,3,104,52,0,1141,1138,1, - 0,0,0,1142,1145,1,0,0,0,1143,1141,1,0,0,0,1143,1144,1,0,0,0,1144, - 1147,1,0,0,0,1145,1143,1,0,0,0,1146,1136,1,0,0,0,1146,1147,1,0,0, - 0,1147,1149,1,0,0,0,1148,1150,3,110,55,0,1149,1148,1,0,0,0,1149, - 1150,1,0,0,0,1150,1152,1,0,0,0,1151,1153,7,6,0,0,1152,1151,1,0,0, - 0,1152,1153,1,0,0,0,1153,1155,1,0,0,0,1154,1156,5,12,0,0,1155,1154, - 1,0,0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1158,3,198,99,0, - 1158,1185,1,0,0,0,1159,1161,5,33,0,0,1160,1162,5,649,0,0,1161,1160, - 1,0,0,0,1161,1162,1,0,0,0,1162,1163,1,0,0,0,1163,1165,5,172,0,0, - 1164,1166,3,642,321,0,1165,1164,1,0,0,0,1165,1166,1,0,0,0,1166,1167, - 1,0,0,0,1167,1168,3,550,275,0,1168,1179,3,86,43,0,1169,1176,3,104, - 52,0,1170,1172,5,1135,0,0,1171,1170,1,0,0,0,1171,1172,1,0,0,0,1172, - 1173,1,0,0,0,1173,1175,3,104,52,0,1174,1171,1,0,0,0,1175,1178,1, - 0,0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180,1,0,0,0,1178, - 1176,1,0,0,0,1179,1169,1,0,0,0,1179,1180,1,0,0,0,1180,1182,1,0,0, - 0,1181,1183,3,110,55,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183, - 1185,1,0,0,0,1184,1106,1,0,0,0,1184,1124,1,0,0,0,1184,1159,1,0,0, - 0,1185,39,1,0,0,0,1186,1187,5,33,0,0,1187,1188,5,647,0,0,1188,1189, - 3,584,292,0,1189,1190,5,5,0,0,1190,1191,5,389,0,0,1191,1195,5,1148, - 0,0,1192,1193,5,428,0,0,1193,1194,5,1124,0,0,1194,1196,3,592,296, - 0,1195,1192,1,0,0,0,1195,1196,1,0,0,0,1196,1202,1,0,0,0,1197,1199, - 5,409,0,0,1198,1200,5,1124,0,0,1199,1198,1,0,0,0,1199,1200,1,0,0, - 0,1200,1201,1,0,0,0,1201,1203,3,572,286,0,1202,1197,1,0,0,0,1202, - 1203,1,0,0,0,1203,41,1,0,0,0,1204,1205,5,33,0,0,1205,1206,5,647, - 0,0,1206,1207,3,584,292,0,1207,1208,5,5,0,0,1208,1209,5,389,0,0, - 1209,1210,5,1148,0,0,1210,1211,5,186,0,0,1211,1212,5,475,0,0,1212, - 1213,5,73,0,0,1213,1219,3,584,292,0,1214,1216,5,423,0,0,1215,1217, - 5,1124,0,0,1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1218,1,0,0,0, - 1218,1220,3,592,296,0,1219,1214,1,0,0,0,1219,1220,1,0,0,0,1220,1226, - 1,0,0,0,1221,1223,5,453,0,0,1222,1224,5,1124,0,0,1223,1222,1,0,0, - 0,1223,1224,1,0,0,0,1224,1225,1,0,0,0,1225,1227,3,592,296,0,1226, - 1221,1,0,0,0,1226,1227,1,0,0,0,1227,1233,1,0,0,0,1228,1230,5,341, - 0,0,1229,1231,5,1124,0,0,1230,1229,1,0,0,0,1230,1231,1,0,0,0,1231, - 1232,1,0,0,0,1232,1234,3,592,296,0,1233,1228,1,0,0,0,1233,1234,1, - 0,0,0,1234,1240,1,0,0,0,1235,1237,5,501,0,0,1236,1238,5,1124,0,0, - 1237,1236,1,0,0,0,1237,1238,1,0,0,0,1238,1239,1,0,0,0,1239,1241, - 3,592,296,0,1240,1235,1,0,0,0,1240,1241,1,0,0,0,1241,1247,1,0,0, - 0,1242,1244,5,528,0,0,1243,1245,5,1124,0,0,1244,1243,1,0,0,0,1244, - 1245,1,0,0,0,1245,1246,1,0,0,0,1246,1248,3,584,292,0,1247,1242,1, - 0,0,0,1247,1248,1,0,0,0,1248,1250,1,0,0,0,1249,1251,5,674,0,0,1250, - 1249,1,0,0,0,1250,1251,1,0,0,0,1251,1257,1,0,0,0,1252,1254,5,368, - 0,0,1253,1255,5,1124,0,0,1254,1253,1,0,0,0,1254,1255,1,0,0,0,1255, - 1256,1,0,0,0,1256,1258,5,1148,0,0,1257,1252,1,0,0,0,1257,1258,1, - 0,0,0,1258,1259,1,0,0,0,1259,1261,5,409,0,0,1260,1262,5,1124,0,0, - 1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264, - 3,572,286,0,1264,43,1,0,0,0,1265,1267,5,33,0,0,1266,1268,3,62,31, - 0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1269,1,0,0,0,1269,1271, - 5,177,0,0,1270,1272,3,642,321,0,1271,1270,1,0,0,0,1271,1272,1,0, - 0,0,1272,1273,1,0,0,0,1273,1274,3,548,274,0,1274,1275,7,7,0,0,1275, - 1276,7,8,0,0,1276,1277,5,118,0,0,1277,1278,3,550,275,0,1278,1279, - 5,65,0,0,1279,1280,5,52,0,0,1280,1283,5,600,0,0,1281,1282,7,9,0, - 0,1282,1284,3,548,274,0,1283,1281,1,0,0,0,1283,1284,1,0,0,0,1284, - 1285,1,0,0,0,1285,1286,3,386,193,0,1286,45,1,0,0,0,1287,1289,5,192, - 0,0,1288,1290,5,571,0,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290, - 1291,1,0,0,0,1291,1292,3,48,24,0,1292,47,1,0,0,0,1293,1305,3,50, - 25,0,1294,1295,5,1133,0,0,1295,1300,3,52,26,0,1296,1297,5,1135,0, - 0,1297,1299,3,52,26,0,1298,1296,1,0,0,0,1299,1302,1,0,0,0,1300,1298, - 1,0,0,0,1300,1301,1,0,0,0,1301,1303,1,0,0,0,1302,1300,1,0,0,0,1303, - 1304,5,1134,0,0,1304,1306,1,0,0,0,1305,1294,1,0,0,0,1305,1306,1, - 0,0,0,1306,1307,1,0,0,0,1307,1308,5,12,0,0,1308,1309,5,1133,0,0, - 1309,1310,3,8,4,0,1310,1313,5,1134,0,0,1311,1312,5,1135,0,0,1312, - 1314,3,48,24,0,1313,1311,1,0,0,0,1313,1314,1,0,0,0,1314,49,1,0,0, - 0,1315,1316,3,584,292,0,1316,51,1,0,0,0,1317,1318,3,584,292,0,1318, - 53,1,0,0,0,1319,1321,5,33,0,0,1320,1322,3,644,322,0,1321,1320,1, - 0,0,0,1321,1322,1,0,0,0,1322,1326,1,0,0,0,1323,1324,5,336,0,0,1324, - 1325,5,1124,0,0,1325,1327,7,10,0,0,1326,1323,1,0,0,0,1326,1327,1, - 0,0,0,1327,1329,1,0,0,0,1328,1330,3,62,31,0,1329,1328,1,0,0,0,1329, - 1330,1,0,0,0,1330,1334,1,0,0,0,1331,1332,5,160,0,0,1332,1333,5,606, - 0,0,1333,1335,7,11,0,0,1334,1331,1,0,0,0,1334,1335,1,0,0,0,1335, - 1336,1,0,0,0,1336,1337,5,671,0,0,1337,1342,3,548,274,0,1338,1339, - 5,1133,0,0,1339,1340,3,616,308,0,1340,1341,5,1134,0,0,1341,1343, - 1,0,0,0,1342,1338,1,0,0,0,1342,1343,1,0,0,0,1343,1344,1,0,0,0,1344, - 1364,5,12,0,0,1345,1347,5,1133,0,0,1346,1348,3,46,23,0,1347,1346, - 1,0,0,0,1347,1348,1,0,0,0,1348,1349,1,0,0,0,1349,1350,3,198,99,0, - 1350,1351,5,1134,0,0,1351,1365,1,0,0,0,1352,1354,3,46,23,0,1353, - 1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1362,3,198, - 99,0,1356,1358,5,192,0,0,1357,1359,7,12,0,0,1358,1357,1,0,0,0,1358, - 1359,1,0,0,0,1359,1360,1,0,0,0,1360,1361,5,26,0,0,1361,1363,5,120, - 0,0,1362,1356,1,0,0,0,1362,1363,1,0,0,0,1363,1365,1,0,0,0,1364,1345, - 1,0,0,0,1364,1353,1,0,0,0,1365,55,1,0,0,0,1366,1368,5,42,0,0,1367, - 1366,1,0,0,0,1367,1368,1,0,0,0,1368,1369,1,0,0,0,1369,1371,3,58, - 29,0,1370,1372,5,1124,0,0,1371,1370,1,0,0,0,1371,1372,1,0,0,0,1372, - 1375,1,0,0,0,1373,1376,3,568,284,0,1374,1376,5,42,0,0,1375,1373, - 1,0,0,0,1375,1374,1,0,0,0,1376,1400,1,0,0,0,1377,1379,5,42,0,0,1378, - 1377,1,0,0,0,1378,1379,1,0,0,0,1379,1380,1,0,0,0,1380,1382,5,27, - 0,0,1381,1383,5,1124,0,0,1382,1381,1,0,0,0,1382,1383,1,0,0,0,1383, - 1384,1,0,0,0,1384,1400,3,570,285,0,1385,1387,5,42,0,0,1386,1385, - 1,0,0,0,1386,1387,1,0,0,0,1387,1388,1,0,0,0,1388,1390,5,405,0,0, - 1389,1391,5,1124,0,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392, - 1,0,0,0,1392,1400,5,1148,0,0,1393,1394,5,134,0,0,1394,1396,5,538, - 0,0,1395,1397,5,1124,0,0,1396,1395,1,0,0,0,1396,1397,1,0,0,0,1397, - 1398,1,0,0,0,1398,1400,7,13,0,0,1399,1367,1,0,0,0,1399,1378,1,0, - 0,0,1399,1386,1,0,0,0,1399,1393,1,0,0,0,1400,57,1,0,0,0,1401,1402, - 5,25,0,0,1402,1407,5,153,0,0,1403,1407,5,841,0,0,1404,1405,5,222, - 0,0,1405,1407,5,153,0,0,1406,1401,1,0,0,0,1406,1403,1,0,0,0,1406, - 1404,1,0,0,0,1407,59,1,0,0,0,1408,1411,5,37,0,0,1409,1410,5,1133, - 0,0,1410,1412,5,1134,0,0,1411,1409,1,0,0,0,1411,1412,1,0,0,0,1412, - 61,1,0,0,0,1413,1414,5,392,0,0,1414,1417,5,1124,0,0,1415,1418,3, - 564,282,0,1416,1418,3,60,30,0,1417,1415,1,0,0,0,1417,1416,1,0,0, - 0,1418,63,1,0,0,0,1419,1420,5,338,0,0,1420,1424,3,66,33,0,1421,1423, - 3,68,34,0,1422,1421,1,0,0,0,1423,1426,1,0,0,0,1424,1422,1,0,0,0, - 1424,1425,1,0,0,0,1425,1454,1,0,0,0,1426,1424,1,0,0,0,1427,1430, - 5,417,0,0,1428,1431,3,590,295,0,1429,1431,3,688,344,0,1430,1428, - 1,0,0,0,1430,1429,1,0,0,0,1431,1432,1,0,0,0,1432,1441,3,70,35,0, - 1433,1434,5,630,0,0,1434,1438,3,66,33,0,1435,1437,3,68,34,0,1436, - 1435,1,0,0,0,1437,1440,1,0,0,0,1438,1436,1,0,0,0,1438,1439,1,0,0, - 0,1439,1442,1,0,0,0,1440,1438,1,0,0,0,1441,1433,1,0,0,0,1441,1442, - 1,0,0,0,1442,1451,1,0,0,0,1443,1444,5,408,0,0,1444,1448,3,66,33, - 0,1445,1447,3,68,34,0,1446,1445,1,0,0,0,1447,1450,1,0,0,0,1448,1446, - 1,0,0,0,1448,1449,1,0,0,0,1449,1452,1,0,0,0,1450,1448,1,0,0,0,1451, - 1443,1,0,0,0,1451,1452,1,0,0,0,1452,1454,1,0,0,0,1453,1419,1,0,0, - 0,1453,1427,1,0,0,0,1454,65,1,0,0,0,1455,1460,5,315,0,0,1456,1460, - 3,594,297,0,1457,1460,3,590,295,0,1458,1460,3,688,344,0,1459,1455, - 1,0,0,0,1459,1456,1,0,0,0,1459,1457,1,0,0,0,1459,1458,1,0,0,0,1460, - 67,1,0,0,0,1461,1462,5,1120,0,0,1462,1465,5,86,0,0,1463,1466,3,590, - 295,0,1464,1466,3,688,344,0,1465,1463,1,0,0,0,1465,1464,1,0,0,0, - 1466,1467,1,0,0,0,1467,1468,3,70,35,0,1468,69,1,0,0,0,1469,1483, - 3,714,357,0,1470,1483,5,221,0,0,1471,1483,5,240,0,0,1472,1483,5, - 241,0,0,1473,1483,5,242,0,0,1474,1483,5,243,0,0,1475,1483,5,244, - 0,0,1476,1483,5,245,0,0,1477,1483,5,246,0,0,1478,1483,5,247,0,0, - 1479,1483,5,248,0,0,1480,1483,5,249,0,0,1481,1483,5,250,0,0,1482, - 1469,1,0,0,0,1482,1470,1,0,0,0,1482,1471,1,0,0,0,1482,1472,1,0,0, - 0,1482,1473,1,0,0,0,1482,1474,1,0,0,0,1482,1475,1,0,0,0,1482,1476, - 1,0,0,0,1482,1477,1,0,0,0,1482,1478,1,0,0,0,1482,1479,1,0,0,0,1482, - 1480,1,0,0,0,1482,1481,1,0,0,0,1483,71,1,0,0,0,1484,1490,5,403,0, - 0,1485,1490,5,396,0,0,1486,1487,5,396,0,0,1487,1488,5,118,0,0,1488, - 1490,5,614,0,0,1489,1484,1,0,0,0,1489,1485,1,0,0,0,1489,1486,1,0, - 0,0,1490,73,1,0,0,0,1491,1492,5,187,0,0,1492,1493,7,14,0,0,1493, - 75,1,0,0,0,1494,1496,5,467,0,0,1495,1497,5,1124,0,0,1496,1495,1, - 0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1517,3,592,296,0, - 1499,1517,3,74,37,0,1500,1501,5,192,0,0,1501,1502,5,547,0,0,1502, - 1517,3,584,292,0,1503,1504,5,368,0,0,1504,1517,5,1148,0,0,1505,1517, - 7,15,0,0,1506,1508,5,875,0,0,1507,1509,5,1124,0,0,1508,1507,1,0, - 0,0,1508,1509,1,0,0,0,1509,1510,1,0,0,0,1510,1517,5,1148,0,0,1511, - 1513,5,1000,0,0,1512,1514,5,1124,0,0,1513,1512,1,0,0,0,1513,1514, - 1,0,0,0,1514,1515,1,0,0,0,1515,1517,5,1148,0,0,1516,1494,1,0,0,0, - 1516,1499,1,0,0,0,1516,1500,1,0,0,0,1516,1503,1,0,0,0,1516,1505, - 1,0,0,0,1516,1506,1,0,0,0,1516,1511,1,0,0,0,1517,77,1,0,0,0,1518, - 1520,7,16,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1521,1,0, - 0,0,1521,1522,3,584,292,0,1522,1523,3,604,302,0,1523,79,1,0,0,0, - 1524,1525,3,584,292,0,1525,1526,3,604,302,0,1526,81,1,0,0,0,1527, - 1528,5,368,0,0,1528,1551,5,1148,0,0,1529,1530,5,468,0,0,1530,1551, - 5,160,0,0,1531,1533,5,114,0,0,1532,1531,1,0,0,0,1532,1533,1,0,0, - 0,1533,1534,1,0,0,0,1534,1551,5,47,0,0,1535,1536,5,381,0,0,1536, - 1546,5,160,0,0,1537,1538,5,521,0,0,1538,1546,5,160,0,0,1539,1540, - 5,135,0,0,1540,1541,5,160,0,0,1541,1546,5,388,0,0,1542,1543,5,112, - 0,0,1543,1544,5,160,0,0,1544,1546,5,388,0,0,1545,1535,1,0,0,0,1545, - 1537,1,0,0,0,1545,1539,1,0,0,0,1545,1542,1,0,0,0,1546,1551,1,0,0, - 0,1547,1548,5,160,0,0,1548,1549,5,606,0,0,1549,1551,7,11,0,0,1550, - 1527,1,0,0,0,1550,1529,1,0,0,0,1550,1532,1,0,0,0,1550,1545,1,0,0, - 0,1550,1547,1,0,0,0,1551,83,1,0,0,0,1552,1553,5,446,0,0,1553,1567, - 5,1148,0,0,1554,1555,5,39,0,0,1555,1567,5,1148,0,0,1556,1557,5,665, - 0,0,1557,1567,5,1148,0,0,1558,1559,5,551,0,0,1559,1567,5,1148,0, - 0,1560,1561,5,617,0,0,1561,1567,5,1148,0,0,1562,1563,5,542,0,0,1563, - 1567,5,1148,0,0,1564,1565,5,557,0,0,1565,1567,3,590,295,0,1566,1552, - 1,0,0,0,1566,1554,1,0,0,0,1566,1556,1,0,0,0,1566,1558,1,0,0,0,1566, - 1560,1,0,0,0,1566,1562,1,0,0,0,1566,1564,1,0,0,0,1567,85,1,0,0,0, - 1568,1569,5,1133,0,0,1569,1574,3,88,44,0,1570,1571,5,1135,0,0,1571, - 1573,3,88,44,0,1572,1570,1,0,0,0,1573,1576,1,0,0,0,1574,1572,1,0, - 0,0,1574,1575,1,0,0,0,1575,1577,1,0,0,0,1576,1574,1,0,0,0,1577,1578, - 5,1134,0,0,1578,87,1,0,0,0,1579,1580,3,556,278,0,1580,1581,3,90, - 45,0,1581,1591,1,0,0,0,1582,1584,3,94,47,0,1583,1585,5,114,0,0,1584, - 1583,1,0,0,0,1584,1585,1,0,0,0,1585,1587,1,0,0,0,1586,1588,5,57, - 0,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588,1591,1,0,0,0,1589,1591, - 3,102,51,0,1590,1579,1,0,0,0,1590,1582,1,0,0,0,1590,1589,1,0,0,0, - 1591,89,1,0,0,0,1592,1596,3,604,302,0,1593,1595,3,92,46,0,1594,1593, - 1,0,0,0,1595,1598,1,0,0,0,1596,1594,1,0,0,0,1596,1597,1,0,0,0,1597, - 1600,1,0,0,0,1598,1596,1,0,0,0,1599,1601,5,114,0,0,1600,1599,1,0, - 0,0,1600,1601,1,0,0,0,1601,1603,1,0,0,0,1602,1604,5,57,0,0,1603, - 1602,1,0,0,0,1603,1604,1,0,0,0,1604,91,1,0,0,0,1605,1659,3,600,300, - 0,1606,1607,5,42,0,0,1607,1659,3,634,317,0,1608,1659,5,673,0,0,1609, - 1659,5,459,0,0,1610,1615,5,342,0,0,1611,1612,5,118,0,0,1612,1613, - 5,184,0,0,1613,1615,3,636,318,0,1614,1610,1,0,0,0,1614,1611,1,0, - 0,0,1615,1659,1,0,0,0,1616,1618,5,130,0,0,1617,1616,1,0,0,0,1617, - 1618,1,0,0,0,1618,1619,1,0,0,0,1619,1659,5,91,0,0,1620,1622,5,181, - 0,0,1621,1623,5,91,0,0,1622,1621,1,0,0,0,1622,1623,1,0,0,0,1623, - 1659,1,0,0,0,1624,1625,5,368,0,0,1625,1659,5,1148,0,0,1626,1627, - 5,366,0,0,1627,1659,7,17,0,0,1628,1629,5,636,0,0,1629,1659,7,18, - 0,0,1630,1659,3,96,48,0,1631,1632,5,27,0,0,1632,1659,3,570,285,0, - 1633,1634,5,70,0,0,1634,1636,5,8,0,0,1635,1633,1,0,0,0,1635,1636, - 1,0,0,0,1636,1637,1,0,0,0,1637,1638,5,12,0,0,1638,1639,5,1133,0, - 0,1639,1640,3,688,344,0,1640,1642,5,1134,0,0,1641,1643,7,19,0,0, - 1642,1641,1,0,0,0,1642,1643,1,0,0,0,1643,1659,1,0,0,0,1644,1645, - 5,239,0,0,1645,1646,5,42,0,0,1646,1659,5,669,0,0,1647,1649,5,30, - 0,0,1648,1650,3,584,292,0,1649,1648,1,0,0,0,1649,1650,1,0,0,0,1650, - 1652,1,0,0,0,1651,1647,1,0,0,0,1651,1652,1,0,0,0,1652,1653,1,0,0, - 0,1653,1654,5,26,0,0,1654,1655,5,1133,0,0,1655,1656,3,688,344,0, - 1656,1657,5,1134,0,0,1657,1659,1,0,0,0,1658,1605,1,0,0,0,1658,1606, - 1,0,0,0,1658,1608,1,0,0,0,1658,1609,1,0,0,0,1658,1614,1,0,0,0,1658, - 1617,1,0,0,0,1658,1620,1,0,0,0,1658,1624,1,0,0,0,1658,1626,1,0,0, - 0,1658,1628,1,0,0,0,1658,1630,1,0,0,0,1658,1631,1,0,0,0,1658,1635, - 1,0,0,0,1658,1644,1,0,0,0,1658,1651,1,0,0,0,1659,93,1,0,0,0,1660, - 1662,5,30,0,0,1661,1663,3,584,292,0,1662,1661,1,0,0,0,1662,1663, - 1,0,0,0,1663,1665,1,0,0,0,1664,1660,1,0,0,0,1664,1665,1,0,0,0,1665, - 1666,1,0,0,0,1666,1667,5,130,0,0,1667,1669,5,91,0,0,1668,1670,3, - 584,292,0,1669,1668,1,0,0,0,1669,1670,1,0,0,0,1670,1672,1,0,0,0, - 1671,1673,3,74,37,0,1672,1671,1,0,0,0,1672,1673,1,0,0,0,1673,1674, - 1,0,0,0,1674,1678,3,622,311,0,1675,1677,3,76,38,0,1676,1675,1,0, - 0,0,1677,1680,1,0,0,0,1678,1676,1,0,0,0,1678,1679,1,0,0,0,1679,1730, - 1,0,0,0,1680,1678,1,0,0,0,1681,1683,5,30,0,0,1682,1684,3,584,292, - 0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1686,1,0,0,0,1685,1681, - 1,0,0,0,1685,1686,1,0,0,0,1686,1687,1,0,0,0,1687,1689,5,181,0,0, - 1688,1690,7,20,0,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1692, - 1,0,0,0,1691,1693,3,584,292,0,1692,1691,1,0,0,0,1692,1693,1,0,0, - 0,1693,1695,1,0,0,0,1694,1696,3,74,37,0,1695,1694,1,0,0,0,1695,1696, - 1,0,0,0,1696,1697,1,0,0,0,1697,1701,3,622,311,0,1698,1700,3,76,38, - 0,1699,1698,1,0,0,0,1700,1703,1,0,0,0,1701,1699,1,0,0,0,1701,1702, - 1,0,0,0,1702,1730,1,0,0,0,1703,1701,1,0,0,0,1704,1706,5,30,0,0,1705, - 1707,3,584,292,0,1706,1705,1,0,0,0,1706,1707,1,0,0,0,1707,1709,1, - 0,0,0,1708,1704,1,0,0,0,1708,1709,1,0,0,0,1709,1710,1,0,0,0,1710, - 1711,5,67,0,0,1711,1713,5,91,0,0,1712,1714,3,584,292,0,1713,1712, - 1,0,0,0,1713,1714,1,0,0,0,1714,1715,1,0,0,0,1715,1716,3,622,311, - 0,1716,1717,3,96,48,0,1717,1730,1,0,0,0,1718,1720,5,30,0,0,1719, - 1721,3,584,292,0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1723,1, - 0,0,0,1722,1718,1,0,0,0,1722,1723,1,0,0,0,1723,1724,1,0,0,0,1724, - 1725,5,26,0,0,1725,1726,5,1133,0,0,1726,1727,3,688,344,0,1727,1728, - 5,1134,0,0,1728,1730,1,0,0,0,1729,1664,1,0,0,0,1729,1685,1,0,0,0, - 1729,1708,1,0,0,0,1729,1722,1,0,0,0,1730,95,1,0,0,0,1731,1732,5, - 136,0,0,1732,1734,3,550,275,0,1733,1735,3,622,311,0,1734,1733,1, - 0,0,0,1734,1735,1,0,0,0,1735,1738,1,0,0,0,1736,1737,5,109,0,0,1737, - 1739,7,21,0,0,1738,1736,1,0,0,0,1738,1739,1,0,0,0,1739,1741,1,0, - 0,0,1740,1742,3,98,49,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742, - 97,1,0,0,0,1743,1744,5,118,0,0,1744,1745,5,44,0,0,1745,1749,3,100, - 50,0,1746,1747,5,118,0,0,1747,1748,5,184,0,0,1748,1750,3,100,50, - 0,1749,1746,1,0,0,0,1749,1750,1,0,0,0,1750,1760,1,0,0,0,1751,1752, - 5,118,0,0,1752,1753,5,184,0,0,1753,1757,3,100,50,0,1754,1755,5,118, - 0,0,1755,1756,5,44,0,0,1756,1758,3,100,50,0,1757,1754,1,0,0,0,1757, - 1758,1,0,0,0,1758,1760,1,0,0,0,1759,1743,1,0,0,0,1759,1751,1,0,0, - 0,1760,99,1,0,0,0,1761,1770,5,144,0,0,1762,1770,5,21,0,0,1763,1764, - 5,153,0,0,1764,1770,5,116,0,0,1765,1766,5,521,0,0,1766,1770,5,333, - 0,0,1767,1768,5,153,0,0,1768,1770,5,42,0,0,1769,1761,1,0,0,0,1769, - 1762,1,0,0,0,1769,1763,1,0,0,0,1769,1765,1,0,0,0,1769,1767,1,0,0, - 0,1770,101,1,0,0,0,1771,1773,7,20,0,0,1772,1774,3,584,292,0,1773, - 1772,1,0,0,0,1773,1774,1,0,0,0,1774,1776,1,0,0,0,1775,1777,3,74, - 37,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777,1778,1,0,0,0,1778, - 1782,3,622,311,0,1779,1781,3,76,38,0,1780,1779,1,0,0,0,1781,1784, - 1,0,0,0,1782,1780,1,0,0,0,1782,1783,1,0,0,0,1783,1800,1,0,0,0,1784, - 1782,1,0,0,0,1785,1787,7,22,0,0,1786,1788,7,20,0,0,1787,1786,1,0, - 0,0,1787,1788,1,0,0,0,1788,1790,1,0,0,0,1789,1791,3,584,292,0,1790, - 1789,1,0,0,0,1790,1791,1,0,0,0,1791,1792,1,0,0,0,1792,1796,3,622, - 311,0,1793,1795,3,76,38,0,1794,1793,1,0,0,0,1795,1798,1,0,0,0,1796, - 1794,1,0,0,0,1796,1797,1,0,0,0,1797,1800,1,0,0,0,1798,1796,1,0,0, - 0,1799,1771,1,0,0,0,1799,1785,1,0,0,0,1800,103,1,0,0,0,1801,1803, - 5,409,0,0,1802,1804,5,1124,0,0,1803,1802,1,0,0,0,1803,1804,1,0,0, - 0,1804,1806,1,0,0,0,1805,1807,3,572,286,0,1806,1805,1,0,0,0,1806, - 1807,1,0,0,0,1807,1987,1,0,0,0,1808,1810,5,875,0,0,1809,1811,5,1124, - 0,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0,1811,1812,1,0,0,0,1812,1987, - 5,1148,0,0,1813,1815,5,341,0,0,1814,1816,5,1124,0,0,1815,1814,1, - 0,0,0,1815,1816,1,0,0,0,1816,1817,1,0,0,0,1817,1987,3,590,295,0, - 1818,1820,5,342,0,0,1819,1821,5,1124,0,0,1820,1819,1,0,0,0,1820, - 1821,1,0,0,0,1821,1822,1,0,0,0,1822,1987,3,590,295,0,1823,1825,5, - 343,0,0,1824,1826,5,1124,0,0,1825,1824,1,0,0,0,1825,1826,1,0,0,0, - 1826,1827,1,0,0,0,1827,1987,3,590,295,0,1828,1830,5,42,0,0,1829, - 1828,1,0,0,0,1829,1830,1,0,0,0,1830,1831,1,0,0,0,1831,1833,3,58, - 29,0,1832,1834,5,1124,0,0,1833,1832,1,0,0,0,1833,1834,1,0,0,0,1834, - 1837,1,0,0,0,1835,1838,3,568,284,0,1836,1838,5,42,0,0,1837,1835, - 1,0,0,0,1837,1836,1,0,0,0,1838,1987,1,0,0,0,1839,1841,7,23,0,0,1840, - 1842,5,1124,0,0,1841,1840,1,0,0,0,1841,1842,1,0,0,0,1842,1843,1, - 0,0,0,1843,1987,7,24,0,0,1844,1846,5,42,0,0,1845,1844,1,0,0,0,1845, - 1846,1,0,0,0,1846,1847,1,0,0,0,1847,1849,5,27,0,0,1848,1850,5,1124, - 0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851,1,0,0,0,1851,1987, - 3,570,285,0,1852,1854,5,368,0,0,1853,1855,5,1124,0,0,1854,1853,1, - 0,0,0,1854,1855,1,0,0,0,1855,1856,1,0,0,0,1856,1987,5,1148,0,0,1857, - 1859,5,373,0,0,1858,1860,5,1124,0,0,1859,1858,1,0,0,0,1859,1860, - 1,0,0,0,1860,1861,1,0,0,0,1861,1987,7,25,0,0,1862,1864,5,376,0,0, - 1863,1865,5,1124,0,0,1864,1863,1,0,0,0,1864,1865,1,0,0,0,1865,1866, - 1,0,0,0,1866,1987,5,1148,0,0,1867,1868,7,26,0,0,1868,1870,5,395, - 0,0,1869,1871,5,1124,0,0,1870,1869,1,0,0,0,1870,1871,1,0,0,0,1871, - 1872,1,0,0,0,1872,1987,5,1148,0,0,1873,1875,5,393,0,0,1874,1876, - 5,1124,0,0,1875,1874,1,0,0,0,1875,1876,1,0,0,0,1876,1877,1,0,0,0, - 1877,1987,7,24,0,0,1878,1880,5,405,0,0,1879,1881,5,1124,0,0,1880, - 1879,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0,1882,1987,5,1148, - 0,0,1883,1885,7,27,0,0,1884,1886,5,1124,0,0,1885,1884,1,0,0,0,1885, - 1886,1,0,0,0,1886,1887,1,0,0,0,1887,1987,7,24,0,0,1888,1890,7,28, - 0,0,1889,1891,5,1124,0,0,1890,1889,1,0,0,0,1890,1891,1,0,0,0,1891, - 1892,1,0,0,0,1892,1987,3,590,295,0,1893,1895,5,406,0,0,1894,1896, - 5,1124,0,0,1895,1894,1,0,0,0,1895,1896,1,0,0,0,1896,1897,1,0,0,0, - 1897,1987,3,590,295,0,1898,1899,5,81,0,0,1899,1901,5,395,0,0,1900, - 1902,5,1124,0,0,1901,1900,1,0,0,0,1901,1902,1,0,0,0,1902,1903,1, - 0,0,0,1903,1987,5,1148,0,0,1904,1906,5,455,0,0,1905,1907,5,1124, - 0,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1908,1,0,0,0,1908,1987, - 7,29,0,0,1909,1911,5,467,0,0,1910,1912,5,1124,0,0,1911,1910,1,0, - 0,0,1911,1912,1,0,0,0,1912,1913,1,0,0,0,1913,1987,3,592,296,0,1914, - 1916,5,500,0,0,1915,1917,5,1124,0,0,1916,1915,1,0,0,0,1916,1917, - 1,0,0,0,1917,1918,1,0,0,0,1918,1987,3,590,295,0,1919,1921,5,510, - 0,0,1920,1922,5,1124,0,0,1921,1920,1,0,0,0,1921,1922,1,0,0,0,1922, - 1923,1,0,0,0,1923,1987,3,590,295,0,1924,1926,5,543,0,0,1925,1927, - 5,1124,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1928,1,0,0,0, - 1928,1987,7,13,0,0,1929,1931,5,551,0,0,1930,1932,5,1124,0,0,1931, - 1930,1,0,0,0,1931,1932,1,0,0,0,1932,1933,1,0,0,0,1933,1987,5,1148, - 0,0,1934,1936,5,602,0,0,1935,1937,5,1124,0,0,1936,1935,1,0,0,0,1936, - 1937,1,0,0,0,1937,1938,1,0,0,0,1938,1987,7,30,0,0,1939,1940,5,629, - 0,0,1940,1987,5,653,0,0,1941,1943,5,1000,0,0,1942,1944,5,1124,0, - 0,1943,1942,1,0,0,0,1943,1944,1,0,0,0,1944,1945,1,0,0,0,1945,1987, - 5,1148,0,0,1946,1948,5,631,0,0,1947,1949,5,1124,0,0,1948,1947,1, - 0,0,0,1948,1949,1,0,0,0,1949,1950,1,0,0,0,1950,1987,7,13,0,0,1951, - 1953,5,632,0,0,1952,1954,5,1124,0,0,1953,1952,1,0,0,0,1953,1954, - 1,0,0,0,1954,1955,1,0,0,0,1955,1987,7,13,0,0,1956,1958,5,633,0,0, - 1957,1959,5,1124,0,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959,1962, - 1,0,0,0,1960,1963,5,42,0,0,1961,1963,3,590,295,0,1962,1960,1,0,0, - 0,1962,1961,1,0,0,0,1963,1987,1,0,0,0,1964,1965,5,647,0,0,1965,1967, - 3,584,292,0,1966,1968,3,108,54,0,1967,1966,1,0,0,0,1967,1968,1,0, - 0,0,1968,1987,1,0,0,0,1969,1970,5,648,0,0,1970,1971,5,1124,0,0,1971, - 1987,3,106,53,0,1972,1987,3,108,54,0,1973,1975,5,654,0,0,1974,1976, - 5,1124,0,0,1975,1974,1,0,0,0,1975,1976,1,0,0,0,1976,1977,1,0,0,0, - 1977,1987,7,24,0,0,1978,1980,5,180,0,0,1979,1981,5,1124,0,0,1980, - 1979,1,0,0,0,1980,1981,1,0,0,0,1981,1982,1,0,0,0,1982,1983,5,1133, - 0,0,1983,1984,3,620,310,0,1984,1985,5,1134,0,0,1985,1987,1,0,0,0, - 1986,1801,1,0,0,0,1986,1808,1,0,0,0,1986,1813,1,0,0,0,1986,1818, - 1,0,0,0,1986,1823,1,0,0,0,1986,1829,1,0,0,0,1986,1839,1,0,0,0,1986, - 1845,1,0,0,0,1986,1852,1,0,0,0,1986,1857,1,0,0,0,1986,1862,1,0,0, - 0,1986,1867,1,0,0,0,1986,1873,1,0,0,0,1986,1878,1,0,0,0,1986,1883, - 1,0,0,0,1986,1888,1,0,0,0,1986,1893,1,0,0,0,1986,1898,1,0,0,0,1986, - 1904,1,0,0,0,1986,1909,1,0,0,0,1986,1914,1,0,0,0,1986,1919,1,0,0, - 0,1986,1924,1,0,0,0,1986,1929,1,0,0,0,1986,1934,1,0,0,0,1986,1939, - 1,0,0,0,1986,1941,1,0,0,0,1986,1946,1,0,0,0,1986,1951,1,0,0,0,1986, - 1956,1,0,0,0,1986,1964,1,0,0,0,1986,1969,1,0,0,0,1986,1972,1,0,0, - 0,1986,1973,1,0,0,0,1986,1978,1,0,0,0,1987,105,1,0,0,0,1988,1989, - 7,31,0,0,1989,107,1,0,0,0,1990,1991,5,636,0,0,1991,1992,7,18,0,0, - 1992,109,1,0,0,0,1993,1994,5,129,0,0,1994,1995,5,19,0,0,1995,1998, - 3,112,56,0,1996,1997,5,550,0,0,1997,1999,3,590,295,0,1998,1996,1, - 0,0,0,1998,1999,1,0,0,0,1999,2007,1,0,0,0,2000,2001,5,641,0,0,2001, - 2002,5,19,0,0,2002,2005,3,114,57,0,2003,2004,5,642,0,0,2004,2006, - 3,590,295,0,2005,2003,1,0,0,0,2005,2006,1,0,0,0,2006,2008,1,0,0, - 0,2007,2000,1,0,0,0,2007,2008,1,0,0,0,2008,2020,1,0,0,0,2009,2010, - 5,1133,0,0,2010,2015,3,116,58,0,2011,2012,5,1135,0,0,2012,2014,3, - 116,58,0,2013,2011,1,0,0,0,2014,2017,1,0,0,0,2015,2013,1,0,0,0,2015, - 2016,1,0,0,0,2016,2018,1,0,0,0,2017,2015,1,0,0,0,2018,2019,5,1134, - 0,0,2019,2021,1,0,0,0,2020,2009,1,0,0,0,2020,2021,1,0,0,0,2021,111, - 1,0,0,0,2022,2024,5,100,0,0,2023,2022,1,0,0,0,2023,2024,1,0,0,0, - 2024,2025,1,0,0,0,2025,2026,5,443,0,0,2026,2027,5,1133,0,0,2027, - 2028,3,688,344,0,2028,2029,5,1134,0,0,2029,2069,1,0,0,0,2030,2032, - 5,100,0,0,2031,2030,1,0,0,0,2031,2032,1,0,0,0,2032,2033,1,0,0,0, - 2033,2037,5,91,0,0,2034,2035,5,336,0,0,2035,2036,5,1124,0,0,2036, - 2038,7,32,0,0,2037,2034,1,0,0,0,2037,2038,1,0,0,0,2038,2039,1,0, - 0,0,2039,2041,5,1133,0,0,2040,2042,3,616,308,0,2041,2040,1,0,0,0, - 2041,2042,1,0,0,0,2042,2043,1,0,0,0,2043,2069,5,1134,0,0,2044,2054, - 5,133,0,0,2045,2046,5,1133,0,0,2046,2047,3,688,344,0,2047,2048,5, - 1134,0,0,2048,2055,1,0,0,0,2049,2050,5,365,0,0,2050,2051,5,1133, - 0,0,2051,2052,3,616,308,0,2052,2053,5,1134,0,0,2053,2055,1,0,0,0, - 2054,2045,1,0,0,0,2054,2049,1,0,0,0,2055,2069,1,0,0,0,2056,2066, - 5,473,0,0,2057,2058,5,1133,0,0,2058,2059,3,688,344,0,2059,2060,5, - 1134,0,0,2060,2067,1,0,0,0,2061,2062,5,365,0,0,2062,2063,5,1133, - 0,0,2063,2064,3,616,308,0,2064,2065,5,1134,0,0,2065,2067,1,0,0,0, - 2066,2057,1,0,0,0,2066,2061,1,0,0,0,2067,2069,1,0,0,0,2068,2023, - 1,0,0,0,2068,2031,1,0,0,0,2068,2044,1,0,0,0,2068,2056,1,0,0,0,2069, - 113,1,0,0,0,2070,2072,5,100,0,0,2071,2070,1,0,0,0,2071,2072,1,0, - 0,0,2072,2073,1,0,0,0,2073,2074,5,443,0,0,2074,2075,5,1133,0,0,2075, - 2076,3,688,344,0,2076,2077,5,1134,0,0,2077,2092,1,0,0,0,2078,2080, - 5,100,0,0,2079,2078,1,0,0,0,2079,2080,1,0,0,0,2080,2081,1,0,0,0, - 2081,2085,5,91,0,0,2082,2083,5,336,0,0,2083,2084,5,1124,0,0,2084, - 2086,7,32,0,0,2085,2082,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1,0, - 0,0,2087,2088,5,1133,0,0,2088,2089,3,616,308,0,2089,2090,5,1134, - 0,0,2090,2092,1,0,0,0,2091,2071,1,0,0,0,2091,2079,1,0,0,0,2092,115, - 1,0,0,0,2093,2094,5,129,0,0,2094,2095,3,584,292,0,2095,2096,5,188, - 0,0,2096,2097,5,471,0,0,2097,2098,5,651,0,0,2098,2099,5,1133,0,0, - 2099,2104,3,118,59,0,2100,2101,5,1135,0,0,2101,2103,3,118,59,0,2102, - 2100,1,0,0,0,2103,2106,1,0,0,0,2104,2102,1,0,0,0,2104,2105,1,0,0, - 0,2105,2107,1,0,0,0,2106,2104,1,0,0,0,2107,2111,5,1134,0,0,2108, - 2110,3,124,62,0,2109,2108,1,0,0,0,2110,2113,1,0,0,0,2111,2109,1, - 0,0,0,2111,2112,1,0,0,0,2112,2125,1,0,0,0,2113,2111,1,0,0,0,2114, - 2115,5,1133,0,0,2115,2120,3,122,61,0,2116,2117,5,1135,0,0,2117,2119, - 3,122,61,0,2118,2116,1,0,0,0,2119,2122,1,0,0,0,2120,2118,1,0,0,0, - 2120,2121,1,0,0,0,2121,2123,1,0,0,0,2122,2120,1,0,0,0,2123,2124, - 5,1134,0,0,2124,2126,1,0,0,0,2125,2114,1,0,0,0,2125,2126,1,0,0,0, - 2126,2240,1,0,0,0,2127,2128,5,129,0,0,2128,2129,3,584,292,0,2129, - 2130,5,188,0,0,2130,2131,5,471,0,0,2131,2132,5,651,0,0,2132,2136, - 3,118,59,0,2133,2135,3,124,62,0,2134,2133,1,0,0,0,2135,2138,1,0, - 0,0,2136,2134,1,0,0,0,2136,2137,1,0,0,0,2137,2150,1,0,0,0,2138,2136, - 1,0,0,0,2139,2140,5,1133,0,0,2140,2145,3,122,61,0,2141,2142,5,1135, - 0,0,2142,2144,3,122,61,0,2143,2141,1,0,0,0,2144,2147,1,0,0,0,2145, - 2143,1,0,0,0,2145,2146,1,0,0,0,2146,2148,1,0,0,0,2147,2145,1,0,0, - 0,2148,2149,5,1134,0,0,2149,2151,1,0,0,0,2150,2139,1,0,0,0,2150, - 2151,1,0,0,0,2151,2240,1,0,0,0,2152,2153,5,129,0,0,2153,2154,3,584, - 292,0,2154,2155,5,188,0,0,2155,2156,5,80,0,0,2156,2157,5,1133,0, - 0,2157,2162,3,118,59,0,2158,2159,5,1135,0,0,2159,2161,3,118,59,0, - 2160,2158,1,0,0,0,2161,2164,1,0,0,0,2162,2160,1,0,0,0,2162,2163, - 1,0,0,0,2163,2165,1,0,0,0,2164,2162,1,0,0,0,2165,2169,5,1134,0,0, - 2166,2168,3,124,62,0,2167,2166,1,0,0,0,2168,2171,1,0,0,0,2169,2167, - 1,0,0,0,2169,2170,1,0,0,0,2170,2183,1,0,0,0,2171,2169,1,0,0,0,2172, - 2173,5,1133,0,0,2173,2178,3,122,61,0,2174,2175,5,1135,0,0,2175,2177, - 3,122,61,0,2176,2174,1,0,0,0,2177,2180,1,0,0,0,2178,2176,1,0,0,0, - 2178,2179,1,0,0,0,2179,2181,1,0,0,0,2180,2178,1,0,0,0,2181,2182, - 5,1134,0,0,2182,2184,1,0,0,0,2183,2172,1,0,0,0,2183,2184,1,0,0,0, - 2184,2240,1,0,0,0,2185,2186,5,129,0,0,2186,2187,3,584,292,0,2187, - 2188,5,188,0,0,2188,2189,5,80,0,0,2189,2190,5,1133,0,0,2190,2195, - 3,120,60,0,2191,2192,5,1135,0,0,2192,2194,3,120,60,0,2193,2191,1, - 0,0,0,2194,2197,1,0,0,0,2195,2193,1,0,0,0,2195,2196,1,0,0,0,2196, - 2198,1,0,0,0,2197,2195,1,0,0,0,2198,2202,5,1134,0,0,2199,2201,3, - 124,62,0,2200,2199,1,0,0,0,2201,2204,1,0,0,0,2202,2200,1,0,0,0,2202, - 2203,1,0,0,0,2203,2216,1,0,0,0,2204,2202,1,0,0,0,2205,2206,5,1133, - 0,0,2206,2211,3,122,61,0,2207,2208,5,1135,0,0,2208,2210,3,122,61, - 0,2209,2207,1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212, - 1,0,0,0,2212,2214,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,1134,0,0, - 2215,2217,1,0,0,0,2216,2205,1,0,0,0,2216,2217,1,0,0,0,2217,2240, - 1,0,0,0,2218,2219,5,129,0,0,2219,2223,3,584,292,0,2220,2222,3,124, - 62,0,2221,2220,1,0,0,0,2222,2225,1,0,0,0,2223,2221,1,0,0,0,2223, - 2224,1,0,0,0,2224,2237,1,0,0,0,2225,2223,1,0,0,0,2226,2227,5,1133, - 0,0,2227,2232,3,122,61,0,2228,2229,5,1135,0,0,2229,2231,3,122,61, - 0,2230,2228,1,0,0,0,2231,2234,1,0,0,0,2232,2230,1,0,0,0,2232,2233, - 1,0,0,0,2233,2235,1,0,0,0,2234,2232,1,0,0,0,2235,2236,5,1134,0,0, - 2236,2238,1,0,0,0,2237,2226,1,0,0,0,2237,2238,1,0,0,0,2238,2240, - 1,0,0,0,2239,2093,1,0,0,0,2239,2127,1,0,0,0,2239,2152,1,0,0,0,2239, - 2185,1,0,0,0,2239,2218,1,0,0,0,2240,117,1,0,0,0,2241,2245,3,602, - 301,0,2242,2245,3,688,344,0,2243,2245,5,110,0,0,2244,2241,1,0,0, - 0,2244,2242,1,0,0,0,2244,2243,1,0,0,0,2245,119,1,0,0,0,2246,2247, - 5,1133,0,0,2247,2250,3,118,59,0,2248,2249,5,1135,0,0,2249,2251,3, - 118,59,0,2250,2248,1,0,0,0,2251,2252,1,0,0,0,2252,2250,1,0,0,0,2252, - 2253,1,0,0,0,2253,2254,1,0,0,0,2254,2255,5,1134,0,0,2255,121,1,0, - 0,0,2256,2257,5,641,0,0,2257,2261,3,584,292,0,2258,2260,3,124,62, - 0,2259,2258,1,0,0,0,2260,2263,1,0,0,0,2261,2259,1,0,0,0,2261,2262, - 1,0,0,0,2262,123,1,0,0,0,2263,2261,1,0,0,0,2264,2266,5,42,0,0,2265, - 2264,1,0,0,0,2265,2266,1,0,0,0,2266,2268,1,0,0,0,2267,2269,5,636, - 0,0,2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269,2270,1,0,0,0,2270,2272, - 5,409,0,0,2271,2273,5,1124,0,0,2272,2271,1,0,0,0,2272,2273,1,0,0, - 0,2273,2274,1,0,0,0,2274,2313,3,572,286,0,2275,2277,5,368,0,0,2276, - 2278,5,1124,0,0,2277,2276,1,0,0,0,2277,2278,1,0,0,0,2278,2279,1, - 0,0,0,2279,2313,5,1148,0,0,2280,2281,5,388,0,0,2281,2283,5,395,0, - 0,2282,2284,5,1124,0,0,2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284, - 2285,1,0,0,0,2285,2313,5,1148,0,0,2286,2287,5,81,0,0,2287,2289,5, - 395,0,0,2288,2290,5,1124,0,0,2289,2288,1,0,0,0,2289,2290,1,0,0,0, - 2290,2291,1,0,0,0,2291,2313,5,1148,0,0,2292,2294,5,500,0,0,2293, - 2295,5,1124,0,0,2294,2293,1,0,0,0,2294,2295,1,0,0,0,2295,2296,1, - 0,0,0,2296,2313,3,590,295,0,2297,2299,5,510,0,0,2298,2300,5,1124, - 0,0,2299,2298,1,0,0,0,2299,2300,1,0,0,0,2300,2301,1,0,0,0,2301,2313, - 3,590,295,0,2302,2304,5,647,0,0,2303,2305,5,1124,0,0,2304,2303,1, - 0,0,0,2304,2305,1,0,0,0,2305,2306,1,0,0,0,2306,2313,3,584,292,0, - 2307,2309,5,528,0,0,2308,2310,5,1124,0,0,2309,2308,1,0,0,0,2309, - 2310,1,0,0,0,2310,2311,1,0,0,0,2311,2313,3,584,292,0,2312,2265,1, - 0,0,0,2312,2275,1,0,0,0,2312,2280,1,0,0,0,2312,2286,1,0,0,0,2312, - 2292,1,0,0,0,2312,2297,1,0,0,0,2312,2302,1,0,0,0,2312,2307,1,0,0, - 0,2313,125,1,0,0,0,2314,2315,5,7,0,0,2315,2317,7,0,0,0,2316,2318, - 3,584,292,0,2317,2316,1,0,0,0,2317,2318,1,0,0,0,2318,2320,1,0,0, - 0,2319,2321,3,56,28,0,2320,2319,1,0,0,0,2321,2322,1,0,0,0,2322,2320, - 1,0,0,0,2322,2323,1,0,0,0,2323,2333,1,0,0,0,2324,2325,5,7,0,0,2325, - 2326,7,0,0,0,2326,2327,3,584,292,0,2327,2328,5,664,0,0,2328,2329, - 5,388,0,0,2329,2330,5,395,0,0,2330,2331,5,516,0,0,2331,2333,1,0, - 0,0,2332,2314,1,0,0,0,2332,2324,1,0,0,0,2333,127,1,0,0,0,2334,2336, - 5,7,0,0,2335,2337,3,62,31,0,2336,2335,1,0,0,0,2336,2337,1,0,0,0, - 2337,2338,1,0,0,0,2338,2339,5,415,0,0,2339,2343,3,548,274,0,2340, - 2341,5,118,0,0,2341,2342,5,605,0,0,2342,2344,3,64,32,0,2343,2340, - 1,0,0,0,2343,2344,1,0,0,0,2344,2351,1,0,0,0,2345,2346,5,118,0,0, - 2346,2348,5,371,0,0,2347,2349,5,114,0,0,2348,2347,1,0,0,0,2348,2349, - 1,0,0,0,2349,2350,1,0,0,0,2350,2352,5,561,0,0,2351,2345,1,0,0,0, - 2351,2352,1,0,0,0,2352,2356,1,0,0,0,2353,2354,5,139,0,0,2354,2355, - 5,175,0,0,2355,2357,3,548,274,0,2356,2353,1,0,0,0,2356,2357,1,0, - 0,0,2357,2359,1,0,0,0,2358,2360,3,72,36,0,2359,2358,1,0,0,0,2359, - 2360,1,0,0,0,2360,2363,1,0,0,0,2361,2362,5,368,0,0,2362,2364,5,1148, - 0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2367,1,0,0,0,2365,2366, - 5,399,0,0,2366,2368,3,386,193,0,2367,2365,1,0,0,0,2367,2368,1,0, - 0,0,2368,129,1,0,0,0,2369,2370,5,7,0,0,2370,2371,5,437,0,0,2371, - 2375,3,548,274,0,2372,2374,3,82,41,0,2373,2372,1,0,0,0,2374,2377, - 1,0,0,0,2375,2373,1,0,0,0,2375,2376,1,0,0,0,2376,131,1,0,0,0,2377, - 2375,1,0,0,0,2378,2379,5,7,0,0,2379,2380,5,457,0,0,2380,2381,5,599, - 0,0,2381,2382,5,791,0,0,2382,2383,5,477,0,0,2383,2384,5,91,0,0,2384, - 133,1,0,0,0,2385,2386,5,7,0,0,2386,2387,5,475,0,0,2387,2388,5,73, - 0,0,2388,2389,3,584,292,0,2389,2390,5,5,0,0,2390,2391,5,659,0,0, - 2391,2397,5,1148,0,0,2392,2394,5,453,0,0,2393,2395,5,1124,0,0,2394, - 2393,1,0,0,0,2394,2395,1,0,0,0,2395,2396,1,0,0,0,2396,2398,3,592, - 296,0,2397,2392,1,0,0,0,2397,2398,1,0,0,0,2398,2400,1,0,0,0,2399, - 2401,5,674,0,0,2400,2399,1,0,0,0,2400,2401,1,0,0,0,2401,2402,1,0, - 0,0,2402,2404,5,409,0,0,2403,2405,5,1124,0,0,2404,2403,1,0,0,0,2404, - 2405,1,0,0,0,2405,2406,1,0,0,0,2406,2407,3,572,286,0,2407,135,1, - 0,0,0,2408,2409,5,7,0,0,2409,2410,5,131,0,0,2410,2414,3,548,274, - 0,2411,2413,3,82,41,0,2412,2411,1,0,0,0,2413,2416,1,0,0,0,2414,2412, - 1,0,0,0,2414,2415,1,0,0,0,2415,137,1,0,0,0,2416,2414,1,0,0,0,2417, - 2418,5,7,0,0,2418,2419,5,608,0,0,2419,2420,3,584,292,0,2420,2421, - 5,541,0,0,2421,2422,5,1133,0,0,2422,2427,3,84,42,0,2423,2424,5,1135, - 0,0,2424,2426,3,84,42,0,2425,2423,1,0,0,0,2426,2429,1,0,0,0,2427, - 2425,1,0,0,0,2427,2428,1,0,0,0,2428,2430,1,0,0,0,2429,2427,1,0,0, - 0,2430,2431,5,1134,0,0,2431,139,1,0,0,0,2432,2434,5,7,0,0,2433,2435, - 7,1,0,0,2434,2433,1,0,0,0,2434,2435,1,0,0,0,2435,2437,1,0,0,0,2436, - 2438,5,78,0,0,2437,2436,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0, - 0,0,2439,2440,5,172,0,0,2440,2442,3,550,275,0,2441,2443,3,646,323, - 0,2442,2441,1,0,0,0,2442,2443,1,0,0,0,2443,2452,1,0,0,0,2444,2449, - 3,146,73,0,2445,2446,5,1135,0,0,2446,2448,3,146,73,0,2447,2445,1, - 0,0,0,2448,2451,1,0,0,0,2449,2447,1,0,0,0,2449,2450,1,0,0,0,2450, - 2453,1,0,0,0,2451,2449,1,0,0,0,2452,2444,1,0,0,0,2452,2453,1,0,0, - 0,2453,2455,1,0,0,0,2454,2456,3,110,55,0,2455,2454,1,0,0,0,2455, - 2456,1,0,0,0,2456,141,1,0,0,0,2457,2458,5,7,0,0,2458,2459,5,647, - 0,0,2459,2460,3,584,292,0,2460,2461,7,33,0,0,2461,2462,5,389,0,0, - 2462,2466,5,1148,0,0,2463,2464,5,453,0,0,2464,2465,5,1124,0,0,2465, - 2467,3,592,296,0,2466,2463,1,0,0,0,2466,2467,1,0,0,0,2467,2469,1, - 0,0,0,2468,2470,5,674,0,0,2469,2468,1,0,0,0,2469,2470,1,0,0,0,2470, - 2471,1,0,0,0,2471,2473,5,409,0,0,2472,2474,5,1124,0,0,2473,2472, - 1,0,0,0,2473,2474,1,0,0,0,2474,2475,1,0,0,0,2475,2476,3,572,286, - 0,2476,143,1,0,0,0,2477,2481,5,7,0,0,2478,2479,5,336,0,0,2479,2480, - 5,1124,0,0,2480,2482,7,10,0,0,2481,2478,1,0,0,0,2481,2482,1,0,0, - 0,2482,2484,1,0,0,0,2483,2485,3,62,31,0,2484,2483,1,0,0,0,2484,2485, - 1,0,0,0,2485,2489,1,0,0,0,2486,2487,5,160,0,0,2487,2488,5,606,0, - 0,2488,2490,7,11,0,0,2489,2486,1,0,0,0,2489,2490,1,0,0,0,2490,2491, - 1,0,0,0,2491,2492,5,671,0,0,2492,2497,3,548,274,0,2493,2494,5,1133, - 0,0,2494,2495,3,616,308,0,2495,2496,5,1134,0,0,2496,2498,1,0,0,0, - 2497,2493,1,0,0,0,2497,2498,1,0,0,0,2498,2499,1,0,0,0,2499,2500, - 5,12,0,0,2500,2507,3,198,99,0,2501,2503,5,192,0,0,2502,2504,7,12, - 0,0,2503,2502,1,0,0,0,2503,2504,1,0,0,0,2504,2505,1,0,0,0,2505,2506, - 5,26,0,0,2506,2508,5,120,0,0,2507,2501,1,0,0,0,2507,2508,1,0,0,0, - 2508,145,1,0,0,0,2509,2516,3,104,52,0,2510,2512,5,1135,0,0,2511, - 2510,1,0,0,0,2511,2512,1,0,0,0,2512,2513,1,0,0,0,2513,2515,3,104, - 52,0,2514,2511,1,0,0,0,2515,2518,1,0,0,0,2516,2514,1,0,0,0,2516, - 2517,1,0,0,0,2517,2861,1,0,0,0,2518,2516,1,0,0,0,2519,2521,5,5,0, - 0,2520,2522,5,28,0,0,2521,2520,1,0,0,0,2521,2522,1,0,0,0,2522,2523, - 1,0,0,0,2523,2524,3,584,292,0,2524,2528,3,90,45,0,2525,2529,5,430, - 0,0,2526,2527,5,334,0,0,2527,2529,3,584,292,0,2528,2525,1,0,0,0, - 2528,2526,1,0,0,0,2528,2529,1,0,0,0,2529,2861,1,0,0,0,2530,2532, - 5,5,0,0,2531,2533,5,28,0,0,2532,2531,1,0,0,0,2532,2533,1,0,0,0,2533, - 2534,1,0,0,0,2534,2535,5,1133,0,0,2535,2536,3,584,292,0,2536,2543, - 3,90,45,0,2537,2538,5,1135,0,0,2538,2539,3,584,292,0,2539,2540,3, - 90,45,0,2540,2542,1,0,0,0,2541,2537,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,1134,0,0,2547,2861,1,0,0,0,2548,2549,5,5,0,0,2549, - 2551,7,20,0,0,2550,2552,3,584,292,0,2551,2550,1,0,0,0,2551,2552, - 1,0,0,0,2552,2554,1,0,0,0,2553,2555,3,74,37,0,2554,2553,1,0,0,0, - 2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2560,3,622,311,0,2557,2559, - 3,76,38,0,2558,2557,1,0,0,0,2559,2562,1,0,0,0,2560,2558,1,0,0,0, - 2560,2561,1,0,0,0,2561,2861,1,0,0,0,2562,2560,1,0,0,0,2563,2568, - 5,5,0,0,2564,2566,5,30,0,0,2565,2567,3,584,292,0,2566,2565,1,0,0, - 0,2566,2567,1,0,0,0,2567,2569,1,0,0,0,2568,2564,1,0,0,0,2568,2569, - 1,0,0,0,2569,2570,1,0,0,0,2570,2571,5,130,0,0,2571,2573,5,91,0,0, - 2572,2574,3,584,292,0,2573,2572,1,0,0,0,2573,2574,1,0,0,0,2574,2576, - 1,0,0,0,2575,2577,3,74,37,0,2576,2575,1,0,0,0,2576,2577,1,0,0,0, - 2577,2578,1,0,0,0,2578,2582,3,622,311,0,2579,2581,3,76,38,0,2580, - 2579,1,0,0,0,2581,2584,1,0,0,0,2582,2580,1,0,0,0,2582,2583,1,0,0, - 0,2583,2861,1,0,0,0,2584,2582,1,0,0,0,2585,2590,5,5,0,0,2586,2588, - 5,30,0,0,2587,2589,3,584,292,0,2588,2587,1,0,0,0,2588,2589,1,0,0, - 0,2589,2591,1,0,0,0,2590,2586,1,0,0,0,2590,2591,1,0,0,0,2591,2592, - 1,0,0,0,2592,2594,5,181,0,0,2593,2595,7,20,0,0,2594,2593,1,0,0,0, - 2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2598,3,584,292,0,2597,2596, - 1,0,0,0,2597,2598,1,0,0,0,2598,2600,1,0,0,0,2599,2601,3,74,37,0, - 2600,2599,1,0,0,0,2600,2601,1,0,0,0,2601,2602,1,0,0,0,2602,2606, - 3,622,311,0,2603,2605,3,76,38,0,2604,2603,1,0,0,0,2605,2608,1,0, - 0,0,2606,2604,1,0,0,0,2606,2607,1,0,0,0,2607,2861,1,0,0,0,2608,2606, - 1,0,0,0,2609,2610,5,5,0,0,2610,2612,7,22,0,0,2611,2613,7,20,0,0, - 2612,2611,1,0,0,0,2612,2613,1,0,0,0,2613,2615,1,0,0,0,2614,2616, - 3,584,292,0,2615,2614,1,0,0,0,2615,2616,1,0,0,0,2616,2617,1,0,0, - 0,2617,2621,3,622,311,0,2618,2620,3,76,38,0,2619,2618,1,0,0,0,2620, - 2623,1,0,0,0,2621,2619,1,0,0,0,2621,2622,1,0,0,0,2622,2861,1,0,0, - 0,2623,2621,1,0,0,0,2624,2629,5,5,0,0,2625,2627,5,30,0,0,2626,2628, - 3,584,292,0,2627,2626,1,0,0,0,2627,2628,1,0,0,0,2628,2630,1,0,0, - 0,2629,2625,1,0,0,0,2629,2630,1,0,0,0,2630,2631,1,0,0,0,2631,2632, - 5,67,0,0,2632,2634,5,91,0,0,2633,2635,3,584,292,0,2634,2633,1,0, - 0,0,2634,2635,1,0,0,0,2635,2636,1,0,0,0,2636,2637,3,622,311,0,2637, - 2638,3,96,48,0,2638,2861,1,0,0,0,2639,2644,5,5,0,0,2640,2642,5,30, - 0,0,2641,2643,3,584,292,0,2642,2641,1,0,0,0,2642,2643,1,0,0,0,2643, - 2645,1,0,0,0,2644,2640,1,0,0,0,2644,2645,1,0,0,0,2645,2646,1,0,0, - 0,2646,2653,5,26,0,0,2647,2654,3,584,292,0,2648,2654,3,594,297,0, - 2649,2650,5,1133,0,0,2650,2651,3,688,344,0,2651,2652,5,1134,0,0, - 2652,2654,1,0,0,0,2653,2647,1,0,0,0,2653,2648,1,0,0,0,2653,2649, - 1,0,0,0,2654,2656,1,0,0,0,2655,2657,5,114,0,0,2656,2655,1,0,0,0, - 2656,2657,1,0,0,0,2657,2659,1,0,0,0,2658,2660,5,57,0,0,2659,2658, - 1,0,0,0,2659,2660,1,0,0,0,2660,2861,1,0,0,0,2661,2666,5,7,0,0,2662, - 2664,5,30,0,0,2663,2665,3,584,292,0,2664,2663,1,0,0,0,2664,2665, - 1,0,0,0,2665,2667,1,0,0,0,2666,2662,1,0,0,0,2666,2667,1,0,0,0,2667, - 2668,1,0,0,0,2668,2675,5,26,0,0,2669,2676,3,584,292,0,2670,2676, - 3,594,297,0,2671,2672,5,1133,0,0,2672,2673,3,688,344,0,2673,2674, - 5,1134,0,0,2674,2676,1,0,0,0,2675,2669,1,0,0,0,2675,2670,1,0,0,0, - 2675,2671,1,0,0,0,2676,2678,1,0,0,0,2677,2679,5,114,0,0,2678,2677, - 1,0,0,0,2678,2679,1,0,0,0,2679,2681,1,0,0,0,2680,2682,5,57,0,0,2681, - 2680,1,0,0,0,2681,2682,1,0,0,0,2682,2861,1,0,0,0,2683,2688,5,5,0, - 0,2684,2686,5,30,0,0,2685,2687,3,584,292,0,2686,2685,1,0,0,0,2686, - 2687,1,0,0,0,2687,2689,1,0,0,0,2688,2684,1,0,0,0,2688,2689,1,0,0, - 0,2689,2690,1,0,0,0,2690,2691,5,26,0,0,2691,2692,5,1133,0,0,2692, - 2693,3,688,344,0,2693,2694,5,1134,0,0,2694,2861,1,0,0,0,2695,2697, - 5,336,0,0,2696,2698,5,1124,0,0,2697,2696,1,0,0,0,2697,2698,1,0,0, - 0,2698,2699,1,0,0,0,2699,2861,7,34,0,0,2700,2702,5,7,0,0,2701,2703, - 5,28,0,0,2702,2701,1,0,0,0,2702,2703,1,0,0,0,2703,2704,1,0,0,0,2704, - 2710,3,584,292,0,2705,2706,5,153,0,0,2706,2707,5,42,0,0,2707,2711, - 3,634,317,0,2708,2709,5,51,0,0,2709,2711,5,42,0,0,2710,2705,1,0, - 0,0,2710,2708,1,0,0,0,2711,2861,1,0,0,0,2712,2714,5,24,0,0,2713, - 2715,5,28,0,0,2714,2713,1,0,0,0,2714,2715,1,0,0,0,2715,2716,1,0, - 0,0,2716,2717,3,584,292,0,2717,2718,3,584,292,0,2718,2722,3,90,45, - 0,2719,2723,5,430,0,0,2720,2721,5,334,0,0,2721,2723,3,584,292,0, - 2722,2719,1,0,0,0,2722,2720,1,0,0,0,2722,2723,1,0,0,0,2723,2861, - 1,0,0,0,2724,2725,5,139,0,0,2725,2726,5,28,0,0,2726,2727,3,584,292, - 0,2727,2728,5,175,0,0,2728,2729,3,584,292,0,2729,2861,1,0,0,0,2730, - 2732,5,103,0,0,2731,2733,5,1124,0,0,2732,2731,1,0,0,0,2732,2733, - 1,0,0,0,2733,2734,1,0,0,0,2734,2861,7,4,0,0,2735,2737,5,512,0,0, - 2736,2738,5,28,0,0,2737,2736,1,0,0,0,2737,2738,1,0,0,0,2738,2739, - 1,0,0,0,2739,2740,3,584,292,0,2740,2744,3,90,45,0,2741,2745,5,430, - 0,0,2742,2743,5,334,0,0,2743,2745,3,584,292,0,2744,2741,1,0,0,0, - 2744,2742,1,0,0,0,2744,2745,1,0,0,0,2745,2861,1,0,0,0,2746,2748, - 5,51,0,0,2747,2749,5,28,0,0,2748,2747,1,0,0,0,2748,2749,1,0,0,0, - 2749,2750,1,0,0,0,2750,2752,3,584,292,0,2751,2753,5,144,0,0,2752, - 2751,1,0,0,0,2752,2753,1,0,0,0,2753,2861,1,0,0,0,2754,2755,5,51, - 0,0,2755,2756,7,35,0,0,2756,2861,3,584,292,0,2757,2758,5,51,0,0, - 2758,2759,5,130,0,0,2759,2861,5,91,0,0,2760,2761,5,51,0,0,2761,2762, - 7,20,0,0,2762,2861,3,584,292,0,2763,2764,5,139,0,0,2764,2765,7,20, - 0,0,2765,2766,3,584,292,0,2766,2767,5,175,0,0,2767,2768,3,584,292, - 0,2768,2861,1,0,0,0,2769,2771,5,7,0,0,2770,2772,5,28,0,0,2771,2770, - 1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0,0,2773,2787,3,584,292, - 0,2774,2775,5,153,0,0,2775,2781,5,42,0,0,2776,2782,3,594,297,0,2777, - 2778,5,1133,0,0,2778,2779,3,688,344,0,2779,2780,5,1134,0,0,2780, - 2782,1,0,0,0,2781,2776,1,0,0,0,2781,2777,1,0,0,0,2782,2788,1,0,0, - 0,2783,2784,5,153,0,0,2784,2788,7,15,0,0,2785,2786,5,51,0,0,2786, - 2788,5,42,0,0,2787,2774,1,0,0,0,2787,2783,1,0,0,0,2787,2785,1,0, - 0,0,2788,2861,1,0,0,0,2789,2790,5,7,0,0,2790,2791,5,81,0,0,2791, - 2792,3,584,292,0,2792,2793,7,15,0,0,2793,2861,1,0,0,0,2794,2795, - 5,51,0,0,2795,2796,5,67,0,0,2796,2797,5,91,0,0,2797,2861,3,584,292, - 0,2798,2799,5,396,0,0,2799,2861,5,92,0,0,2800,2801,5,403,0,0,2801, - 2861,5,92,0,0,2802,2804,5,139,0,0,2803,2805,7,36,0,0,2804,2803,1, - 0,0,0,2804,2805,1,0,0,0,2805,2808,1,0,0,0,2806,2809,3,584,292,0, - 2807,2809,3,548,274,0,2808,2806,1,0,0,0,2808,2807,1,0,0,0,2809,2861, - 1,0,0,0,2810,2811,5,124,0,0,2811,2812,5,19,0,0,2812,2861,3,616,308, - 0,2813,2814,5,32,0,0,2814,2818,5,175,0,0,2815,2819,5,841,0,0,2816, - 2817,5,25,0,0,2817,2819,5,153,0,0,2818,2815,1,0,0,0,2818,2816,1, - 0,0,0,2819,2820,1,0,0,0,2820,2823,3,568,284,0,2821,2822,5,27,0,0, - 2822,2824,3,570,285,0,2823,2821,1,0,0,0,2823,2824,1,0,0,0,2824,2861, - 1,0,0,0,2825,2827,5,42,0,0,2826,2825,1,0,0,0,2826,2827,1,0,0,0,2827, - 2828,1,0,0,0,2828,2829,5,25,0,0,2829,2830,5,153,0,0,2830,2831,5, - 1124,0,0,2831,2835,3,568,284,0,2832,2833,5,27,0,0,2833,2834,5,1124, - 0,0,2834,2836,3,570,285,0,2835,2832,1,0,0,0,2835,2836,1,0,0,0,2836, - 2861,1,0,0,0,2837,2838,5,397,0,0,2838,2861,5,647,0,0,2839,2840,5, - 450,0,0,2840,2861,5,647,0,0,2841,2861,5,66,0,0,2842,2843,7,37,0, - 0,2843,2861,5,668,0,0,2844,2846,5,5,0,0,2845,2847,5,28,0,0,2846, - 2845,1,0,0,0,2846,2847,1,0,0,0,2847,2848,1,0,0,0,2848,2849,5,1133, - 0,0,2849,2854,3,88,44,0,2850,2851,5,1135,0,0,2851,2853,3,88,44,0, - 2852,2850,1,0,0,0,2853,2856,1,0,0,0,2854,2852,1,0,0,0,2854,2855, - 1,0,0,0,2855,2857,1,0,0,0,2856,2854,1,0,0,0,2857,2858,5,1134,0,0, - 2858,2861,1,0,0,0,2859,2861,3,148,74,0,2860,2509,1,0,0,0,2860,2519, - 1,0,0,0,2860,2530,1,0,0,0,2860,2548,1,0,0,0,2860,2563,1,0,0,0,2860, - 2585,1,0,0,0,2860,2609,1,0,0,0,2860,2624,1,0,0,0,2860,2639,1,0,0, - 0,2860,2661,1,0,0,0,2860,2683,1,0,0,0,2860,2695,1,0,0,0,2860,2700, - 1,0,0,0,2860,2712,1,0,0,0,2860,2724,1,0,0,0,2860,2730,1,0,0,0,2860, - 2735,1,0,0,0,2860,2746,1,0,0,0,2860,2754,1,0,0,0,2860,2757,1,0,0, - 0,2860,2760,1,0,0,0,2860,2763,1,0,0,0,2860,2769,1,0,0,0,2860,2789, - 1,0,0,0,2860,2794,1,0,0,0,2860,2798,1,0,0,0,2860,2800,1,0,0,0,2860, - 2802,1,0,0,0,2860,2810,1,0,0,0,2860,2813,1,0,0,0,2860,2826,1,0,0, - 0,2860,2837,1,0,0,0,2860,2839,1,0,0,0,2860,2841,1,0,0,0,2860,2842, - 1,0,0,0,2860,2844,1,0,0,0,2860,2859,1,0,0,0,2861,147,1,0,0,0,2862, - 2863,5,5,0,0,2863,2864,5,129,0,0,2864,2865,5,1133,0,0,2865,2870, - 3,116,58,0,2866,2867,5,1135,0,0,2867,2869,3,116,58,0,2868,2866,1, - 0,0,0,2869,2872,1,0,0,0,2870,2868,1,0,0,0,2870,2871,1,0,0,0,2871, - 2873,1,0,0,0,2872,2870,1,0,0,0,2873,2874,5,1134,0,0,2874,2961,1, - 0,0,0,2875,2876,5,51,0,0,2876,2877,5,129,0,0,2877,2961,3,616,308, - 0,2878,2879,5,397,0,0,2879,2882,5,129,0,0,2880,2883,3,616,308,0, - 2881,2883,5,6,0,0,2882,2880,1,0,0,0,2882,2881,1,0,0,0,2883,2884, - 1,0,0,0,2884,2961,5,647,0,0,2885,2886,5,450,0,0,2886,2889,5,129, - 0,0,2887,2890,3,616,308,0,2888,2890,5,6,0,0,2889,2887,1,0,0,0,2889, - 2888,1,0,0,0,2890,2891,1,0,0,0,2891,2961,5,647,0,0,2892,2893,5,656, - 0,0,2893,2896,5,129,0,0,2894,2897,3,616,308,0,2895,2897,5,6,0,0, - 2896,2894,1,0,0,0,2896,2895,1,0,0,0,2897,2961,1,0,0,0,2898,2899, - 5,363,0,0,2899,2900,5,129,0,0,2900,2961,3,590,295,0,2901,2902,5, - 579,0,0,2902,2903,5,129,0,0,2903,2904,3,616,308,0,2904,2905,5,87, - 0,0,2905,2906,5,1133,0,0,2906,2911,3,116,58,0,2907,2908,5,1135,0, - 0,2908,2910,3,116,58,0,2909,2907,1,0,0,0,2910,2913,1,0,0,0,2911, - 2909,1,0,0,0,2911,2912,1,0,0,0,2912,2914,1,0,0,0,2913,2911,1,0,0, - 0,2914,2915,5,1134,0,0,2915,2961,1,0,0,0,2916,2917,5,418,0,0,2917, - 2918,5,129,0,0,2918,2919,3,584,292,0,2919,2920,5,192,0,0,2920,2921, - 5,172,0,0,2921,2924,3,550,275,0,2922,2923,7,37,0,0,2923,2925,5,668, - 0,0,2924,2922,1,0,0,0,2924,2925,1,0,0,0,2925,2961,1,0,0,0,2926,2927, - 5,9,0,0,2927,2930,5,129,0,0,2928,2931,3,616,308,0,2929,2931,5,6, - 0,0,2930,2928,1,0,0,0,2930,2929,1,0,0,0,2931,2961,1,0,0,0,2932,2933, - 5,26,0,0,2933,2936,5,129,0,0,2934,2937,3,616,308,0,2935,2937,5,6, - 0,0,2936,2934,1,0,0,0,2936,2935,1,0,0,0,2937,2961,1,0,0,0,2938,2939, - 5,119,0,0,2939,2942,5,129,0,0,2940,2943,3,616,308,0,2941,2943,5, - 6,0,0,2942,2940,1,0,0,0,2942,2941,1,0,0,0,2943,2961,1,0,0,0,2944, - 2945,5,569,0,0,2945,2948,5,129,0,0,2946,2949,3,616,308,0,2947,2949, - 5,6,0,0,2948,2946,1,0,0,0,2948,2947,1,0,0,0,2949,2961,1,0,0,0,2950, - 2951,5,580,0,0,2951,2954,5,129,0,0,2952,2955,3,616,308,0,2953,2955, - 5,6,0,0,2954,2952,1,0,0,0,2954,2953,1,0,0,0,2955,2961,1,0,0,0,2956, - 2957,5,578,0,0,2957,2961,5,549,0,0,2958,2959,5,664,0,0,2959,2961, - 5,549,0,0,2960,2862,1,0,0,0,2960,2875,1,0,0,0,2960,2878,1,0,0,0, - 2960,2885,1,0,0,0,2960,2892,1,0,0,0,2960,2898,1,0,0,0,2960,2901, - 1,0,0,0,2960,2916,1,0,0,0,2960,2926,1,0,0,0,2960,2932,1,0,0,0,2960, - 2938,1,0,0,0,2960,2944,1,0,0,0,2960,2950,1,0,0,0,2960,2956,1,0,0, - 0,2960,2958,1,0,0,0,2961,149,1,0,0,0,2962,2963,5,51,0,0,2963,2965, - 7,0,0,0,2964,2966,3,640,320,0,2965,2964,1,0,0,0,2965,2966,1,0,0, - 0,2966,2967,1,0,0,0,2967,2968,3,584,292,0,2968,151,1,0,0,0,2969, - 2970,5,51,0,0,2970,2972,5,415,0,0,2971,2973,3,640,320,0,2972,2971, - 1,0,0,0,2972,2973,1,0,0,0,2973,2974,1,0,0,0,2974,2975,3,548,274, - 0,2975,153,1,0,0,0,2976,2977,5,51,0,0,2977,2979,5,81,0,0,2978,2980, - 7,1,0,0,2979,2978,1,0,0,0,2979,2980,1,0,0,0,2980,2981,1,0,0,0,2981, - 2982,3,584,292,0,2982,2983,5,118,0,0,2983,2996,3,550,275,0,2984, - 2986,5,336,0,0,2985,2987,5,1124,0,0,2986,2985,1,0,0,0,2986,2987, - 1,0,0,0,2987,2988,1,0,0,0,2988,2995,7,3,0,0,2989,2991,5,103,0,0, - 2990,2992,5,1124,0,0,2991,2990,1,0,0,0,2991,2992,1,0,0,0,2992,2993, - 1,0,0,0,2993,2995,7,4,0,0,2994,2984,1,0,0,0,2994,2989,1,0,0,0,2995, - 2998,1,0,0,0,2996,2994,1,0,0,0,2996,2997,1,0,0,0,2997,155,1,0,0, - 0,2998,2996,1,0,0,0,2999,3000,5,51,0,0,3000,3001,5,475,0,0,3001, - 3002,5,73,0,0,3002,3003,3,584,292,0,3003,3004,5,409,0,0,3004,3005, - 5,1124,0,0,3005,3006,3,572,286,0,3006,157,1,0,0,0,3007,3008,5,51, - 0,0,3008,3010,5,131,0,0,3009,3011,3,640,320,0,3010,3009,1,0,0,0, - 3010,3011,1,0,0,0,3011,3012,1,0,0,0,3012,3013,3,548,274,0,3013,159, - 1,0,0,0,3014,3015,5,51,0,0,3015,3017,5,437,0,0,3016,3018,3,640,320, - 0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3019,1,0,0,0,3019,3020, - 3,548,274,0,3020,161,1,0,0,0,3021,3022,5,51,0,0,3022,3024,5,608, - 0,0,3023,3025,3,640,320,0,3024,3023,1,0,0,0,3024,3025,1,0,0,0,3025, - 3026,1,0,0,0,3026,3027,3,584,292,0,3027,163,1,0,0,0,3028,3030,5, - 51,0,0,3029,3031,5,649,0,0,3030,3029,1,0,0,0,3030,3031,1,0,0,0,3031, - 3032,1,0,0,0,3032,3034,5,172,0,0,3033,3035,3,640,320,0,3034,3033, - 1,0,0,0,3034,3035,1,0,0,0,3035,3036,1,0,0,0,3036,3038,3,620,310, - 0,3037,3039,7,38,0,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,165, - 1,0,0,0,3040,3041,5,51,0,0,3041,3042,5,647,0,0,3042,3048,3,584,292, - 0,3043,3045,5,409,0,0,3044,3046,5,1124,0,0,3045,3044,1,0,0,0,3045, - 3046,1,0,0,0,3046,3047,1,0,0,0,3047,3049,3,572,286,0,3048,3043,1, - 0,0,0,3048,3049,1,0,0,0,3049,167,1,0,0,0,3050,3051,5,51,0,0,3051, - 3053,5,177,0,0,3052,3054,3,640,320,0,3053,3052,1,0,0,0,3053,3054, - 1,0,0,0,3054,3055,1,0,0,0,3055,3056,3,548,274,0,3056,169,1,0,0,0, - 3057,3058,5,51,0,0,3058,3060,5,671,0,0,3059,3061,3,640,320,0,3060, - 3059,1,0,0,0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3067,3,548, - 274,0,3063,3064,5,1135,0,0,3064,3066,3,548,274,0,3065,3063,1,0,0, - 0,3066,3069,1,0,0,0,3067,3065,1,0,0,0,3067,3068,1,0,0,0,3068,3071, - 1,0,0,0,3069,3067,1,0,0,0,3070,3072,7,38,0,0,3071,3070,1,0,0,0,3071, - 3072,1,0,0,0,3072,171,1,0,0,0,3073,3074,5,51,0,0,3074,3076,5,596, - 0,0,3075,3077,3,640,320,0,3076,3075,1,0,0,0,3076,3077,1,0,0,0,3077, - 3078,1,0,0,0,3078,3083,3,554,277,0,3079,3080,5,1135,0,0,3080,3082, - 3,554,277,0,3081,3079,1,0,0,0,3082,3085,1,0,0,0,3083,3081,1,0,0, - 0,3083,3084,1,0,0,0,3084,173,1,0,0,0,3085,3083,1,0,0,0,3086,3087, - 5,153,0,0,3087,3088,5,42,0,0,3088,3099,5,596,0,0,3089,3100,5,529, - 0,0,3090,3100,5,6,0,0,3091,3096,3,554,277,0,3092,3093,5,1135,0,0, - 3093,3095,3,554,277,0,3094,3092,1,0,0,0,3095,3098,1,0,0,0,3096,3094, - 1,0,0,0,3096,3097,1,0,0,0,3097,3100,1,0,0,0,3098,3096,1,0,0,0,3099, - 3089,1,0,0,0,3099,3090,1,0,0,0,3099,3091,1,0,0,0,3100,3101,1,0,0, - 0,3101,3104,5,175,0,0,3102,3105,3,564,282,0,3103,3105,3,584,292, - 0,3104,3102,1,0,0,0,3104,3103,1,0,0,0,3105,3113,1,0,0,0,3106,3109, - 5,1135,0,0,3107,3110,3,564,282,0,3108,3110,3,584,292,0,3109,3107, - 1,0,0,0,3109,3108,1,0,0,0,3110,3112,1,0,0,0,3111,3106,1,0,0,0,3112, - 3115,1,0,0,0,3113,3111,1,0,0,0,3113,3114,1,0,0,0,3114,3120,1,0,0, - 0,3115,3113,1,0,0,0,3116,3117,5,153,0,0,3117,3118,5,596,0,0,3118, - 3120,3,432,216,0,3119,3086,1,0,0,0,3119,3116,1,0,0,0,3120,175,1, - 0,0,0,3121,3122,5,139,0,0,3122,3123,5,172,0,0,3123,3128,3,178,89, - 0,3124,3125,5,1135,0,0,3125,3127,3,178,89,0,3126,3124,1,0,0,0,3127, - 3130,1,0,0,0,3128,3126,1,0,0,0,3128,3129,1,0,0,0,3129,177,1,0,0, - 0,3130,3128,1,0,0,0,3131,3132,3,550,275,0,3132,3133,5,175,0,0,3133, - 3134,3,550,275,0,3134,179,1,0,0,0,3135,3137,5,656,0,0,3136,3138, - 5,172,0,0,3137,3136,1,0,0,0,3137,3138,1,0,0,0,3138,3139,1,0,0,0, - 3139,3140,3,550,275,0,3140,181,1,0,0,0,3141,3142,5,20,0,0,3142,3149, - 3,548,274,0,3143,3146,5,1133,0,0,3144,3147,3,628,314,0,3145,3147, - 3,624,312,0,3146,3144,1,0,0,0,3146,3145,1,0,0,0,3146,3147,1,0,0, - 0,3147,3148,1,0,0,0,3148,3150,5,1134,0,0,3149,3143,1,0,0,0,3149, - 3150,1,0,0,0,3150,183,1,0,0,0,3151,3154,3,212,106,0,3152,3154,3, - 214,107,0,3153,3151,1,0,0,0,3153,3152,1,0,0,0,3154,185,1,0,0,0,3155, - 3156,5,399,0,0,3156,3157,3,624,312,0,3157,187,1,0,0,0,3158,3163, - 3,216,108,0,3159,3163,3,218,109,0,3160,3163,3,220,110,0,3161,3163, - 3,222,111,0,3162,3158,1,0,0,0,3162,3159,1,0,0,0,3162,3160,1,0,0, - 0,3162,3161,1,0,0,0,3163,189,1,0,0,0,3164,3166,5,85,0,0,3165,3167, - 7,39,0,0,3166,3165,1,0,0,0,3166,3167,1,0,0,0,3167,3169,1,0,0,0,3168, - 3170,5,78,0,0,3169,3168,1,0,0,0,3169,3170,1,0,0,0,3170,3172,1,0, - 0,0,3171,3173,5,87,0,0,3172,3171,1,0,0,0,3172,3173,1,0,0,0,3173, - 3174,1,0,0,0,3174,3181,3,550,275,0,3175,3176,5,129,0,0,3176,3178, - 5,1133,0,0,3177,3179,3,616,308,0,3178,3177,1,0,0,0,3178,3179,1,0, - 0,0,3179,3180,1,0,0,0,3180,3182,5,1134,0,0,3181,3175,1,0,0,0,3181, - 3182,1,0,0,0,3182,3206,1,0,0,0,3183,3185,5,1133,0,0,3184,3186,3, - 618,309,0,3185,3184,1,0,0,0,3185,3186,1,0,0,0,3186,3187,1,0,0,0, - 3187,3189,5,1134,0,0,3188,3183,1,0,0,0,3188,3189,1,0,0,0,3189,3190, - 1,0,0,0,3190,3195,3,204,102,0,3191,3193,5,12,0,0,3192,3191,1,0,0, - 0,3192,3193,1,0,0,0,3193,3194,1,0,0,0,3194,3196,3,584,292,0,3195, - 3192,1,0,0,0,3195,3196,1,0,0,0,3196,3207,1,0,0,0,3197,3198,5,153, - 0,0,3198,3203,3,206,103,0,3199,3200,5,1135,0,0,3200,3202,3,206,103, - 0,3201,3199,1,0,0,0,3202,3205,1,0,0,0,3203,3201,1,0,0,0,3203,3204, - 1,0,0,0,3204,3207,1,0,0,0,3205,3203,1,0,0,0,3206,3188,1,0,0,0,3206, - 3197,1,0,0,0,3207,3220,1,0,0,0,3208,3209,5,118,0,0,3209,3210,5,401, - 0,0,3210,3211,5,91,0,0,3211,3212,5,184,0,0,3212,3217,3,206,103,0, - 3213,3214,5,1135,0,0,3214,3216,3,206,103,0,3215,3213,1,0,0,0,3216, - 3219,1,0,0,0,3217,3215,1,0,0,0,3217,3218,1,0,0,0,3218,3221,1,0,0, - 0,3219,3217,1,0,0,0,3220,3208,1,0,0,0,3220,3221,1,0,0,0,3221,191, - 1,0,0,0,3222,3223,5,102,0,0,3223,3225,5,388,0,0,3224,3226,7,40,0, - 0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0,0,3227,3229, - 5,474,0,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229,3230,1,0,0,0, - 3230,3231,5,82,0,0,3231,3233,5,1148,0,0,3232,3234,7,6,0,0,3233,3232, - 1,0,0,0,3233,3234,1,0,0,0,3234,3235,1,0,0,0,3235,3236,5,87,0,0,3236, - 3237,5,172,0,0,3237,3243,3,550,275,0,3238,3239,5,129,0,0,3239,3240, - 5,1133,0,0,3240,3241,3,616,308,0,3241,3242,5,1134,0,0,3242,3244, - 1,0,0,0,3243,3238,1,0,0,0,3243,3244,1,0,0,0,3244,3248,1,0,0,0,3245, - 3246,5,25,0,0,3246,3247,5,153,0,0,3247,3249,3,568,284,0,3248,3245, - 1,0,0,0,3248,3249,1,0,0,0,3249,3256,1,0,0,0,3250,3252,7,41,0,0,3251, - 3253,3,278,139,0,3252,3251,1,0,0,0,3253,3254,1,0,0,0,3254,3252,1, - 0,0,0,3254,3255,1,0,0,0,3255,3257,1,0,0,0,3256,3250,1,0,0,0,3256, - 3257,1,0,0,0,3257,3264,1,0,0,0,3258,3260,5,101,0,0,3259,3261,3,280, - 140,0,3260,3259,1,0,0,0,3261,3262,1,0,0,0,3262,3260,1,0,0,0,3262, - 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3258,1,0,0,0,3264,3265,1,0,0, - 0,3265,3270,1,0,0,0,3266,3267,5,78,0,0,3267,3268,3,590,295,0,3268, - 3269,7,42,0,0,3269,3271,1,0,0,0,3270,3266,1,0,0,0,3270,3271,1,0, - 0,0,3271,3283,1,0,0,0,3272,3273,5,1133,0,0,3273,3278,3,208,104,0, - 3274,3275,5,1135,0,0,3275,3277,3,208,104,0,3276,3274,1,0,0,0,3277, - 3280,1,0,0,0,3278,3276,1,0,0,0,3278,3279,1,0,0,0,3279,3281,1,0,0, - 0,3280,3278,1,0,0,0,3281,3282,5,1134,0,0,3282,3284,1,0,0,0,3283, - 3272,1,0,0,0,3283,3284,1,0,0,0,3284,3294,1,0,0,0,3285,3286,5,153, - 0,0,3286,3291,3,206,103,0,3287,3288,5,1135,0,0,3288,3290,3,206,103, - 0,3289,3287,1,0,0,0,3290,3293,1,0,0,0,3291,3289,1,0,0,0,3291,3292, - 1,0,0,0,3292,3295,1,0,0,0,3293,3291,1,0,0,0,3294,3285,1,0,0,0,3294, - 3295,1,0,0,0,3295,193,1,0,0,0,3296,3297,5,102,0,0,3297,3299,5,682, - 0,0,3298,3300,7,40,0,0,3299,3298,1,0,0,0,3299,3300,1,0,0,0,3300, - 3302,1,0,0,0,3301,3303,5,474,0,0,3302,3301,1,0,0,0,3302,3303,1,0, - 0,0,3303,3304,1,0,0,0,3304,3305,5,82,0,0,3305,3307,5,1148,0,0,3306, - 3308,7,6,0,0,3307,3306,1,0,0,0,3307,3308,1,0,0,0,3308,3309,1,0,0, - 0,3309,3310,5,87,0,0,3310,3311,5,172,0,0,3311,3315,3,550,275,0,3312, - 3313,5,25,0,0,3313,3314,5,153,0,0,3314,3316,3,568,284,0,3315,3312, - 1,0,0,0,3315,3316,1,0,0,0,3316,3323,1,0,0,0,3317,3318,5,601,0,0, - 3318,3319,5,448,0,0,3319,3320,5,19,0,0,3320,3321,5,1126,0,0,3321, - 3322,5,1148,0,0,3322,3324,5,1125,0,0,3323,3317,1,0,0,0,3323,3324, - 1,0,0,0,3324,3329,1,0,0,0,3325,3326,5,78,0,0,3326,3327,3,590,295, - 0,3327,3328,7,42,0,0,3328,3330,1,0,0,0,3329,3325,1,0,0,0,3329,3330, - 1,0,0,0,3330,3342,1,0,0,0,3331,3332,5,1133,0,0,3332,3337,3,208,104, - 0,3333,3334,5,1135,0,0,3334,3336,3,208,104,0,3335,3333,1,0,0,0,3336, - 3339,1,0,0,0,3337,3335,1,0,0,0,3337,3338,1,0,0,0,3338,3340,1,0,0, - 0,3339,3337,1,0,0,0,3340,3341,5,1134,0,0,3341,3343,1,0,0,0,3342, - 3331,1,0,0,0,3342,3343,1,0,0,0,3343,3353,1,0,0,0,3344,3345,5,153, - 0,0,3345,3350,3,206,103,0,3346,3347,5,1135,0,0,3347,3349,3,206,103, - 0,3348,3346,1,0,0,0,3349,3352,1,0,0,0,3350,3348,1,0,0,0,3350,3351, - 1,0,0,0,3351,3354,1,0,0,0,3352,3350,1,0,0,0,3353,3344,1,0,0,0,3353, - 3354,1,0,0,0,3354,195,1,0,0,0,3355,3357,5,141,0,0,3356,3358,7,43, - 0,0,3357,3356,1,0,0,0,3357,3358,1,0,0,0,3358,3360,1,0,0,0,3359,3361, - 5,87,0,0,3360,3359,1,0,0,0,3360,3361,1,0,0,0,3361,3362,1,0,0,0,3362, - 3368,3,550,275,0,3363,3364,5,129,0,0,3364,3365,5,1133,0,0,3365,3366, - 3,616,308,0,3366,3367,5,1134,0,0,3367,3369,1,0,0,0,3368,3363,1,0, - 0,0,3368,3369,1,0,0,0,3369,3386,1,0,0,0,3370,3371,5,1133,0,0,3371, - 3372,3,616,308,0,3372,3373,5,1134,0,0,3373,3375,1,0,0,0,3374,3370, - 1,0,0,0,3374,3375,1,0,0,0,3375,3376,1,0,0,0,3376,3387,3,204,102, - 0,3377,3378,5,153,0,0,3378,3383,3,206,103,0,3379,3380,5,1135,0,0, - 3380,3382,3,206,103,0,3381,3379,1,0,0,0,3382,3385,1,0,0,0,3383,3381, - 1,0,0,0,3383,3384,1,0,0,0,3384,3387,1,0,0,0,3385,3383,1,0,0,0,3386, - 3374,1,0,0,0,3386,3377,1,0,0,0,3387,197,1,0,0,0,3388,3390,3,250, - 125,0,3389,3391,3,210,105,0,3390,3389,1,0,0,0,3390,3391,1,0,0,0, - 3391,3454,1,0,0,0,3392,3394,3,246,123,0,3393,3395,3,210,105,0,3394, - 3393,1,0,0,0,3394,3395,1,0,0,0,3395,3454,1,0,0,0,3396,3399,3,252, - 126,0,3397,3399,3,248,124,0,3398,3396,1,0,0,0,3398,3397,1,0,0,0, - 3399,3401,1,0,0,0,3400,3402,3,256,128,0,3401,3400,1,0,0,0,3402,3403, - 1,0,0,0,3403,3401,1,0,0,0,3403,3404,1,0,0,0,3404,3413,1,0,0,0,3405, - 3407,5,180,0,0,3406,3408,7,44,0,0,3407,3406,1,0,0,0,3407,3408,1, - 0,0,0,3408,3411,1,0,0,0,3409,3412,3,250,125,0,3410,3412,3,246,123, - 0,3411,3409,1,0,0,0,3411,3410,1,0,0,0,3412,3414,1,0,0,0,3413,3405, - 1,0,0,0,3413,3414,1,0,0,0,3414,3416,1,0,0,0,3415,3417,3,228,114, - 0,3416,3415,1,0,0,0,3416,3417,1,0,0,0,3417,3419,1,0,0,0,3418,3420, - 3,292,146,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420,3422,1,0,0, - 0,3421,3423,3,210,105,0,3422,3421,1,0,0,0,3422,3423,1,0,0,0,3423, - 3454,1,0,0,0,3424,3426,3,248,124,0,3425,3427,3,254,127,0,3426,3425, - 1,0,0,0,3427,3428,1,0,0,0,3428,3426,1,0,0,0,3428,3429,1,0,0,0,3429, - 3435,1,0,0,0,3430,3432,5,180,0,0,3431,3433,7,44,0,0,3432,3431,1, - 0,0,0,3432,3433,1,0,0,0,3433,3434,1,0,0,0,3434,3436,3,246,123,0, - 3435,3430,1,0,0,0,3435,3436,1,0,0,0,3436,3438,1,0,0,0,3437,3439, - 3,228,114,0,3438,3437,1,0,0,0,3438,3439,1,0,0,0,3439,3441,1,0,0, - 0,3440,3442,3,292,146,0,3441,3440,1,0,0,0,3441,3442,1,0,0,0,3442, - 3444,1,0,0,0,3443,3445,3,210,105,0,3444,3443,1,0,0,0,3444,3445,1, - 0,0,0,3445,3454,1,0,0,0,3446,3449,3,252,126,0,3447,3448,5,1135,0, - 0,3448,3450,3,258,129,0,3449,3447,1,0,0,0,3450,3451,1,0,0,0,3451, - 3449,1,0,0,0,3451,3452,1,0,0,0,3452,3454,1,0,0,0,3453,3388,1,0,0, - 0,3453,3392,1,0,0,0,3453,3398,1,0,0,0,3453,3424,1,0,0,0,3453,3446, - 1,0,0,0,3454,199,1,0,0,0,3455,3458,3,224,112,0,3456,3458,3,226,113, - 0,3457,3455,1,0,0,0,3457,3456,1,0,0,0,3458,201,1,0,0,0,3459,3460, - 5,188,0,0,3460,3462,5,1133,0,0,3461,3463,3,626,313,0,3462,3461,1, - 0,0,0,3462,3463,1,0,0,0,3463,3464,1,0,0,0,3464,3473,5,1134,0,0,3465, - 3466,5,1135,0,0,3466,3468,5,1133,0,0,3467,3469,3,626,313,0,3468, - 3467,1,0,0,0,3468,3469,1,0,0,0,3469,3470,1,0,0,0,3470,3472,5,1134, - 0,0,3471,3465,1,0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3473,3474, - 1,0,0,0,3474,203,1,0,0,0,3475,3473,1,0,0,0,3476,3495,3,198,99,0, - 3477,3478,7,45,0,0,3478,3480,5,1133,0,0,3479,3481,3,626,313,0,3480, - 3479,1,0,0,0,3480,3481,1,0,0,0,3481,3482,1,0,0,0,3482,3491,5,1134, - 0,0,3483,3484,5,1135,0,0,3484,3486,5,1133,0,0,3485,3487,3,626,313, - 0,3486,3485,1,0,0,0,3486,3487,1,0,0,0,3487,3488,1,0,0,0,3488,3490, - 5,1134,0,0,3489,3483,1,0,0,0,3490,3493,1,0,0,0,3491,3489,1,0,0,0, - 3491,3492,1,0,0,0,3492,3495,1,0,0,0,3493,3491,1,0,0,0,3494,3476, - 1,0,0,0,3494,3477,1,0,0,0,3495,205,1,0,0,0,3496,3497,3,556,278,0, - 3497,3500,5,1124,0,0,3498,3501,3,688,344,0,3499,3501,5,42,0,0,3500, - 3498,1,0,0,0,3500,3499,1,0,0,0,3501,207,1,0,0,0,3502,3505,3,584, - 292,0,3503,3505,5,1159,0,0,3504,3502,1,0,0,0,3504,3503,1,0,0,0,3505, - 209,1,0,0,0,3506,3507,5,65,0,0,3507,3513,5,184,0,0,3508,3509,5,103, - 0,0,3509,3510,5,80,0,0,3510,3511,5,610,0,0,3511,3513,5,511,0,0,3512, - 3506,1,0,0,0,3512,3508,1,0,0,0,3513,211,1,0,0,0,3514,3516,5,44,0, - 0,3515,3517,5,106,0,0,3516,3515,1,0,0,0,3516,3517,1,0,0,0,3517,3519, - 1,0,0,0,3518,3520,5,568,0,0,3519,3518,1,0,0,0,3519,3520,1,0,0,0, - 3520,3522,1,0,0,0,3521,3523,5,78,0,0,3522,3521,1,0,0,0,3522,3523, - 1,0,0,0,3523,3524,1,0,0,0,3524,3525,5,68,0,0,3525,3530,3,550,275, - 0,3526,3528,5,12,0,0,3527,3526,1,0,0,0,3527,3528,1,0,0,0,3528,3529, - 1,0,0,0,3529,3531,3,584,292,0,3530,3527,1,0,0,0,3530,3531,1,0,0, - 0,3531,3537,1,0,0,0,3532,3533,5,129,0,0,3533,3534,5,1133,0,0,3534, - 3535,3,616,308,0,3535,3536,5,1134,0,0,3536,3538,1,0,0,0,3537,3532, - 1,0,0,0,3537,3538,1,0,0,0,3538,3541,1,0,0,0,3539,3540,5,190,0,0, - 3540,3542,3,688,344,0,3541,3539,1,0,0,0,3541,3542,1,0,0,0,3542,3544, - 1,0,0,0,3543,3545,3,228,114,0,3544,3543,1,0,0,0,3544,3545,1,0,0, - 0,3545,3548,1,0,0,0,3546,3547,5,99,0,0,3547,3549,3,294,147,0,3548, - 3546,1,0,0,0,3548,3549,1,0,0,0,3549,213,1,0,0,0,3550,3552,5,44,0, - 0,3551,3553,5,106,0,0,3552,3551,1,0,0,0,3552,3553,1,0,0,0,3553,3555, - 1,0,0,0,3554,3556,5,568,0,0,3555,3554,1,0,0,0,3555,3556,1,0,0,0, - 3556,3558,1,0,0,0,3557,3559,5,78,0,0,3558,3557,1,0,0,0,3558,3559, - 1,0,0,0,3559,3599,1,0,0,0,3560,3563,3,550,275,0,3561,3562,5,1132, - 0,0,3562,3564,5,1117,0,0,3563,3561,1,0,0,0,3563,3564,1,0,0,0,3564, - 3573,1,0,0,0,3565,3566,5,1135,0,0,3566,3569,3,550,275,0,3567,3568, - 5,1132,0,0,3568,3570,5,1117,0,0,3569,3567,1,0,0,0,3569,3570,1,0, - 0,0,3570,3572,1,0,0,0,3571,3565,1,0,0,0,3572,3575,1,0,0,0,3573,3571, - 1,0,0,0,3573,3574,1,0,0,0,3574,3576,1,0,0,0,3575,3573,1,0,0,0,3576, - 3577,5,68,0,0,3577,3578,3,232,116,0,3578,3600,1,0,0,0,3579,3580, - 5,68,0,0,3580,3583,3,550,275,0,3581,3582,5,1132,0,0,3582,3584,5, - 1117,0,0,3583,3581,1,0,0,0,3583,3584,1,0,0,0,3584,3593,1,0,0,0,3585, - 3586,5,1135,0,0,3586,3589,3,550,275,0,3587,3588,5,1132,0,0,3588, - 3590,5,1117,0,0,3589,3587,1,0,0,0,3589,3590,1,0,0,0,3590,3592,1, - 0,0,0,3591,3585,1,0,0,0,3592,3595,1,0,0,0,3593,3591,1,0,0,0,3593, - 3594,1,0,0,0,3594,3596,1,0,0,0,3595,3593,1,0,0,0,3596,3597,5,187, - 0,0,3597,3598,3,232,116,0,3598,3600,1,0,0,0,3599,3560,1,0,0,0,3599, - 3579,1,0,0,0,3600,3603,1,0,0,0,3601,3602,5,190,0,0,3602,3604,3,688, - 344,0,3603,3601,1,0,0,0,3603,3604,1,0,0,0,3604,215,1,0,0,0,3605, - 3606,5,442,0,0,3606,3607,3,550,275,0,3607,3612,5,539,0,0,3608,3610, - 5,12,0,0,3609,3608,1,0,0,0,3609,3610,1,0,0,0,3610,3611,1,0,0,0,3611, - 3613,3,584,292,0,3612,3609,1,0,0,0,3612,3613,1,0,0,0,3613,217,1, - 0,0,0,3614,3615,5,442,0,0,3615,3616,3,550,275,0,3616,3617,5,134, - 0,0,3617,3624,3,584,292,0,3618,3619,3,696,348,0,3619,3620,5,1133, - 0,0,3620,3621,3,628,314,0,3621,3622,5,1134,0,0,3622,3625,1,0,0,0, - 3623,3625,7,46,0,0,3624,3618,1,0,0,0,3624,3623,1,0,0,0,3625,3628, - 1,0,0,0,3626,3627,5,190,0,0,3627,3629,3,688,344,0,3628,3626,1,0, - 0,0,3628,3629,1,0,0,0,3629,3632,1,0,0,0,3630,3631,5,99,0,0,3631, - 3633,3,294,147,0,3632,3630,1,0,0,0,3632,3633,1,0,0,0,3633,219,1, - 0,0,0,3634,3635,5,442,0,0,3635,3636,3,550,275,0,3636,3637,5,134, - 0,0,3637,3640,7,47,0,0,3638,3639,5,190,0,0,3639,3641,3,688,344,0, - 3640,3638,1,0,0,0,3640,3641,1,0,0,0,3641,3644,1,0,0,0,3642,3643, - 5,99,0,0,3643,3645,3,294,147,0,3644,3642,1,0,0,0,3644,3645,1,0,0, - 0,3645,221,1,0,0,0,3646,3647,5,442,0,0,3647,3648,3,550,275,0,3648, - 3649,5,361,0,0,3649,223,1,0,0,0,3650,3652,5,184,0,0,3651,3653,5, - 106,0,0,3652,3651,1,0,0,0,3652,3653,1,0,0,0,3653,3655,1,0,0,0,3654, - 3656,5,78,0,0,3655,3654,1,0,0,0,3655,3656,1,0,0,0,3656,3657,1,0, - 0,0,3657,3662,3,550,275,0,3658,3660,5,12,0,0,3659,3658,1,0,0,0,3659, - 3660,1,0,0,0,3660,3661,1,0,0,0,3661,3663,3,584,292,0,3662,3659,1, - 0,0,0,3662,3663,1,0,0,0,3663,3664,1,0,0,0,3664,3665,5,153,0,0,3665, - 3670,3,206,103,0,3666,3667,5,1135,0,0,3667,3669,3,206,103,0,3668, - 3666,1,0,0,0,3669,3672,1,0,0,0,3670,3668,1,0,0,0,3670,3671,1,0,0, - 0,3671,3675,1,0,0,0,3672,3670,1,0,0,0,3673,3674,5,190,0,0,3674,3676, - 3,688,344,0,3675,3673,1,0,0,0,3675,3676,1,0,0,0,3676,3678,1,0,0, - 0,3677,3679,3,228,114,0,3678,3677,1,0,0,0,3678,3679,1,0,0,0,3679, - 3681,1,0,0,0,3680,3682,3,292,146,0,3681,3680,1,0,0,0,3681,3682,1, - 0,0,0,3682,225,1,0,0,0,3683,3685,5,184,0,0,3684,3686,5,106,0,0,3685, - 3684,1,0,0,0,3685,3686,1,0,0,0,3686,3688,1,0,0,0,3687,3689,5,78, - 0,0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,3690,1,0,0,0,3690,3691, - 3,552,276,0,3691,3692,5,153,0,0,3692,3697,3,206,103,0,3693,3694, - 5,1135,0,0,3694,3696,3,206,103,0,3695,3693,1,0,0,0,3696,3699,1,0, - 0,0,3697,3695,1,0,0,0,3697,3698,1,0,0,0,3698,3702,1,0,0,0,3699,3697, - 1,0,0,0,3700,3701,5,190,0,0,3701,3703,3,688,344,0,3702,3700,1,0, - 0,0,3702,3703,1,0,0,0,3703,227,1,0,0,0,3704,3705,5,124,0,0,3705, - 3706,5,19,0,0,3706,3711,3,230,115,0,3707,3708,5,1135,0,0,3708,3710, - 3,230,115,0,3709,3707,1,0,0,0,3710,3713,1,0,0,0,3711,3709,1,0,0, - 0,3711,3712,1,0,0,0,3712,229,1,0,0,0,3713,3711,1,0,0,0,3714,3716, - 3,688,344,0,3715,3717,7,48,0,0,3716,3715,1,0,0,0,3716,3717,1,0,0, - 0,3717,231,1,0,0,0,3718,3723,3,234,117,0,3719,3720,5,1135,0,0,3720, - 3722,3,234,117,0,3721,3719,1,0,0,0,3722,3725,1,0,0,0,3723,3721,1, - 0,0,0,3723,3724,1,0,0,0,3724,233,1,0,0,0,3725,3723,1,0,0,0,3726, - 3730,3,236,118,0,3727,3729,3,242,121,0,3728,3727,1,0,0,0,3729,3732, - 1,0,0,0,3730,3728,1,0,0,0,3730,3731,1,0,0,0,3731,3745,1,0,0,0,3732, - 3730,1,0,0,0,3733,3734,5,1133,0,0,3734,3738,3,236,118,0,3735,3737, - 3,242,121,0,3736,3735,1,0,0,0,3737,3740,1,0,0,0,3738,3736,1,0,0, - 0,3738,3739,1,0,0,0,3739,3741,1,0,0,0,3740,3738,1,0,0,0,3741,3742, - 5,1134,0,0,3742,3745,1,0,0,0,3743,3745,3,260,130,0,3744,3726,1,0, - 0,0,3744,3733,1,0,0,0,3744,3743,1,0,0,0,3745,235,1,0,0,0,3746,3752, - 3,550,275,0,3747,3748,5,129,0,0,3748,3749,5,1133,0,0,3749,3750,3, - 616,308,0,3750,3751,5,1134,0,0,3751,3753,1,0,0,0,3752,3747,1,0,0, - 0,3752,3753,1,0,0,0,3753,3758,1,0,0,0,3754,3756,5,12,0,0,3755,3754, - 1,0,0,0,3755,3756,1,0,0,0,3756,3757,1,0,0,0,3757,3759,3,584,292, - 0,3758,3755,1,0,0,0,3758,3759,1,0,0,0,3759,3768,1,0,0,0,3760,3765, - 3,238,119,0,3761,3762,5,1135,0,0,3762,3764,3,238,119,0,3763,3761, - 1,0,0,0,3764,3767,1,0,0,0,3765,3763,1,0,0,0,3765,3766,1,0,0,0,3766, - 3769,1,0,0,0,3767,3765,1,0,0,0,3768,3760,1,0,0,0,3768,3769,1,0,0, - 0,3769,3784,1,0,0,0,3770,3771,5,1133,0,0,3771,3772,3,198,99,0,3772, - 3773,5,1134,0,0,3773,3775,1,0,0,0,3774,3776,5,12,0,0,3775,3774,1, - 0,0,0,3775,3776,1,0,0,0,3776,3777,1,0,0,0,3777,3778,3,584,292,0, - 3778,3784,1,0,0,0,3779,3780,5,1133,0,0,3780,3781,3,232,116,0,3781, - 3782,5,1134,0,0,3782,3784,1,0,0,0,3783,3746,1,0,0,0,3783,3770,1, - 0,0,0,3783,3779,1,0,0,0,3784,237,1,0,0,0,3785,3786,7,49,0,0,3786, - 3789,7,20,0,0,3787,3788,5,65,0,0,3788,3790,3,240,120,0,3789,3787, - 1,0,0,0,3789,3790,1,0,0,0,3790,3791,1,0,0,0,3791,3792,5,1133,0,0, - 3792,3793,3,616,308,0,3793,3794,5,1134,0,0,3794,239,1,0,0,0,3795, - 3801,5,90,0,0,3796,3797,5,124,0,0,3797,3801,5,19,0,0,3798,3799,5, - 73,0,0,3799,3801,5,19,0,0,3800,3795,1,0,0,0,3800,3796,1,0,0,0,3800, - 3798,1,0,0,0,3801,241,1,0,0,0,3802,3804,7,50,0,0,3803,3802,1,0,0, - 0,3803,3804,1,0,0,0,3804,3805,1,0,0,0,3805,3807,5,90,0,0,3806,3808, - 5,94,0,0,3807,3806,1,0,0,0,3807,3808,1,0,0,0,3808,3809,1,0,0,0,3809, - 3813,3,236,118,0,3810,3812,3,244,122,0,3811,3810,1,0,0,0,3812,3815, - 1,0,0,0,3813,3811,1,0,0,0,3813,3814,1,0,0,0,3814,3850,1,0,0,0,3815, - 3813,1,0,0,0,3816,3817,5,171,0,0,3817,3822,3,236,118,0,3818,3819, - 5,118,0,0,3819,3821,3,688,344,0,3820,3818,1,0,0,0,3821,3824,1,0, - 0,0,3822,3820,1,0,0,0,3822,3823,1,0,0,0,3823,3850,1,0,0,0,3824,3822, - 1,0,0,0,3825,3827,7,51,0,0,3826,3828,5,126,0,0,3827,3826,1,0,0,0, - 3827,3828,1,0,0,0,3828,3829,1,0,0,0,3829,3831,5,90,0,0,3830,3832, - 5,94,0,0,3831,3830,1,0,0,0,3831,3832,1,0,0,0,3832,3833,1,0,0,0,3833, - 3837,3,236,118,0,3834,3836,3,244,122,0,3835,3834,1,0,0,0,3836,3839, - 1,0,0,0,3837,3835,1,0,0,0,3837,3838,1,0,0,0,3838,3850,1,0,0,0,3839, - 3837,1,0,0,0,3840,3845,5,113,0,0,3841,3843,7,51,0,0,3842,3844,5, - 126,0,0,3843,3842,1,0,0,0,3843,3844,1,0,0,0,3844,3846,1,0,0,0,3845, - 3841,1,0,0,0,3845,3846,1,0,0,0,3846,3847,1,0,0,0,3847,3848,5,90, - 0,0,3848,3850,3,236,118,0,3849,3803,1,0,0,0,3849,3816,1,0,0,0,3849, - 3825,1,0,0,0,3849,3840,1,0,0,0,3850,243,1,0,0,0,3851,3852,5,118, - 0,0,3852,3859,3,688,344,0,3853,3854,5,187,0,0,3854,3855,5,1133,0, - 0,3855,3856,3,616,308,0,3856,3857,5,1134,0,0,3857,3859,1,0,0,0,3858, - 3851,1,0,0,0,3858,3853,1,0,0,0,3859,245,1,0,0,0,3860,3861,5,1133, - 0,0,3861,3862,3,250,125,0,3862,3863,5,1134,0,0,3863,3869,1,0,0,0, - 3864,3865,5,1133,0,0,3865,3866,3,246,123,0,3866,3867,5,1134,0,0, - 3867,3869,1,0,0,0,3868,3860,1,0,0,0,3868,3864,1,0,0,0,3869,247,1, - 0,0,0,3870,3871,5,1133,0,0,3871,3872,3,252,126,0,3872,3873,5,1134, - 0,0,3873,3879,1,0,0,0,3874,3875,5,1133,0,0,3875,3876,3,248,124,0, - 3876,3877,5,1134,0,0,3877,3879,1,0,0,0,3878,3870,1,0,0,0,3878,3874, - 1,0,0,0,3879,249,1,0,0,0,3880,3884,5,152,0,0,3881,3883,3,270,135, - 0,3882,3881,1,0,0,0,3883,3886,1,0,0,0,3884,3882,1,0,0,0,3884,3885, - 1,0,0,0,3885,3887,1,0,0,0,3886,3884,1,0,0,0,3887,3889,3,272,136, - 0,3888,3890,3,276,138,0,3889,3888,1,0,0,0,3889,3890,1,0,0,0,3890, - 3891,1,0,0,0,3891,3893,3,282,141,0,3892,3894,3,284,142,0,3893,3892, - 1,0,0,0,3893,3894,1,0,0,0,3894,3896,1,0,0,0,3895,3897,3,286,143, - 0,3896,3895,1,0,0,0,3896,3897,1,0,0,0,3897,3899,1,0,0,0,3898,3900, - 3,288,144,0,3899,3898,1,0,0,0,3899,3900,1,0,0,0,3900,3902,1,0,0, - 0,3901,3903,3,228,114,0,3902,3901,1,0,0,0,3902,3903,1,0,0,0,3903, - 3905,1,0,0,0,3904,3906,3,292,146,0,3905,3904,1,0,0,0,3905,3906,1, - 0,0,0,3906,3935,1,0,0,0,3907,3911,5,152,0,0,3908,3910,3,270,135, - 0,3909,3908,1,0,0,0,3910,3913,1,0,0,0,3911,3909,1,0,0,0,3911,3912, - 1,0,0,0,3912,3914,1,0,0,0,3913,3911,1,0,0,0,3914,3915,3,272,136, - 0,3915,3917,3,282,141,0,3916,3918,3,284,142,0,3917,3916,1,0,0,0, - 3917,3918,1,0,0,0,3918,3920,1,0,0,0,3919,3921,3,286,143,0,3920,3919, - 1,0,0,0,3920,3921,1,0,0,0,3921,3923,1,0,0,0,3922,3924,3,288,144, - 0,3923,3922,1,0,0,0,3923,3924,1,0,0,0,3924,3926,1,0,0,0,3925,3927, - 3,228,114,0,3926,3925,1,0,0,0,3926,3927,1,0,0,0,3927,3929,1,0,0, - 0,3928,3930,3,292,146,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, - 3932,1,0,0,0,3931,3933,3,276,138,0,3932,3931,1,0,0,0,3932,3933,1, - 0,0,0,3933,3935,1,0,0,0,3934,3880,1,0,0,0,3934,3907,1,0,0,0,3935, - 251,1,0,0,0,3936,3940,5,152,0,0,3937,3939,3,270,135,0,3938,3937, - 1,0,0,0,3939,3942,1,0,0,0,3940,3938,1,0,0,0,3940,3941,1,0,0,0,3941, - 3943,1,0,0,0,3942,3940,1,0,0,0,3943,3944,3,272,136,0,3944,3946,3, - 282,141,0,3945,3947,3,284,142,0,3946,3945,1,0,0,0,3946,3947,1,0, - 0,0,3947,3949,1,0,0,0,3948,3950,3,286,143,0,3949,3948,1,0,0,0,3949, - 3950,1,0,0,0,3950,3952,1,0,0,0,3951,3953,3,288,144,0,3952,3951,1, - 0,0,0,3952,3953,1,0,0,0,3953,3955,1,0,0,0,3954,3956,3,228,114,0, - 3955,3954,1,0,0,0,3955,3956,1,0,0,0,3956,3958,1,0,0,0,3957,3959, - 3,292,146,0,3958,3957,1,0,0,0,3958,3959,1,0,0,0,3959,3961,1,0,0, - 0,3960,3962,3,256,128,0,3961,3960,1,0,0,0,3961,3962,1,0,0,0,3962, - 253,1,0,0,0,3963,3965,5,180,0,0,3964,3966,7,44,0,0,3965,3964,1,0, - 0,0,3965,3966,1,0,0,0,3966,3967,1,0,0,0,3967,3968,3,248,124,0,3968, - 255,1,0,0,0,3969,3971,5,180,0,0,3970,3972,7,44,0,0,3971,3970,1,0, - 0,0,3971,3972,1,0,0,0,3972,3975,1,0,0,0,3973,3976,3,252,126,0,3974, - 3976,3,248,124,0,3975,3973,1,0,0,0,3975,3974,1,0,0,0,3976,257,1, - 0,0,0,3977,3992,5,94,0,0,3978,3993,3,252,126,0,3979,3993,3,248,124, - 0,3980,3983,5,1133,0,0,3981,3984,3,252,126,0,3982,3984,3,248,124, - 0,3983,3981,1,0,0,0,3983,3982,1,0,0,0,3984,3985,1,0,0,0,3985,3990, - 5,1134,0,0,3986,3988,5,12,0,0,3987,3986,1,0,0,0,3987,3988,1,0,0, - 0,3988,3989,1,0,0,0,3989,3991,3,584,292,0,3990,3987,1,0,0,0,3990, - 3991,1,0,0,0,3991,3993,1,0,0,0,3992,3978,1,0,0,0,3992,3979,1,0,0, - 0,3992,3980,1,0,0,0,3993,259,1,0,0,0,3994,3995,5,278,0,0,3995,3996, - 5,1133,0,0,3996,3997,5,1148,0,0,3997,3998,5,1135,0,0,3998,3999,5, - 1148,0,0,3999,4000,5,365,0,0,4000,4001,5,1133,0,0,4001,4002,3,262, - 131,0,4002,4003,5,1134,0,0,4003,4008,5,1134,0,0,4004,4006,5,12,0, - 0,4005,4004,1,0,0,0,4005,4006,1,0,0,0,4006,4007,1,0,0,0,4007,4009, - 3,584,292,0,4008,4005,1,0,0,0,4008,4009,1,0,0,0,4009,261,1,0,0,0, - 4010,4015,3,264,132,0,4011,4012,5,1135,0,0,4012,4014,3,264,132,0, - 4013,4011,1,0,0,0,4014,4017,1,0,0,0,4015,4013,1,0,0,0,4015,4016, - 1,0,0,0,4016,263,1,0,0,0,4017,4015,1,0,0,0,4018,4035,3,556,278,0, - 4019,4020,5,65,0,0,4020,4036,5,284,0,0,4021,4033,3,604,302,0,4022, - 4023,5,285,0,0,4023,4025,5,1148,0,0,4024,4026,3,266,133,0,4025,4024, - 1,0,0,0,4025,4026,1,0,0,0,4026,4028,1,0,0,0,4027,4029,3,268,134, - 0,4028,4027,1,0,0,0,4028,4029,1,0,0,0,4029,4034,1,0,0,0,4030,4031, - 5,60,0,0,4031,4032,5,285,0,0,4032,4034,5,1148,0,0,4033,4022,1,0, - 0,0,4033,4030,1,0,0,0,4034,4036,1,0,0,0,4035,4019,1,0,0,0,4035,4021, - 1,0,0,0,4036,4048,1,0,0,0,4037,4039,5,283,0,0,4038,4040,5,285,0, - 0,4039,4038,1,0,0,0,4039,4040,1,0,0,0,4040,4041,1,0,0,0,4041,4042, - 5,1148,0,0,4042,4043,5,365,0,0,4043,4044,5,1133,0,0,4044,4045,3, - 262,131,0,4045,4046,5,1134,0,0,4046,4048,1,0,0,0,4047,4018,1,0,0, - 0,4047,4037,1,0,0,0,4048,265,1,0,0,0,4049,4054,5,116,0,0,4050,4054, - 5,411,0,0,4051,4052,5,42,0,0,4052,4054,3,634,317,0,4053,4049,1,0, - 0,0,4053,4050,1,0,0,0,4053,4051,1,0,0,0,4054,4055,1,0,0,0,4055,4056, - 5,118,0,0,4056,4057,5,55,0,0,4057,267,1,0,0,0,4058,4063,5,116,0, - 0,4059,4063,5,411,0,0,4060,4061,5,42,0,0,4061,4063,3,634,317,0,4062, - 4058,1,0,0,0,4062,4059,1,0,0,0,4062,4060,1,0,0,0,4063,4064,1,0,0, - 0,4064,4065,5,118,0,0,4065,4066,5,411,0,0,4066,269,1,0,0,0,4067, - 4076,7,52,0,0,4068,4076,5,75,0,0,4069,4076,5,171,0,0,4070,4076,5, - 166,0,0,4071,4076,5,164,0,0,4072,4076,5,625,0,0,4073,4076,7,53,0, - 0,4074,4076,5,165,0,0,4075,4067,1,0,0,0,4075,4068,1,0,0,0,4075,4069, - 1,0,0,0,4075,4070,1,0,0,0,4075,4071,1,0,0,0,4075,4072,1,0,0,0,4075, - 4073,1,0,0,0,4075,4074,1,0,0,0,4076,271,1,0,0,0,4077,4080,5,1117, - 0,0,4078,4080,3,274,137,0,4079,4077,1,0,0,0,4079,4078,1,0,0,0,4080, - 4085,1,0,0,0,4081,4082,5,1135,0,0,4082,4084,3,274,137,0,4083,4081, - 1,0,0,0,4084,4087,1,0,0,0,4085,4083,1,0,0,0,4085,4086,1,0,0,0,4086, - 273,1,0,0,0,4087,4085,1,0,0,0,4088,4089,3,548,274,0,4089,4090,5, - 1132,0,0,4090,4091,5,1117,0,0,4091,4118,1,0,0,0,4092,4097,3,556, - 278,0,4093,4095,5,12,0,0,4094,4093,1,0,0,0,4094,4095,1,0,0,0,4095, - 4096,1,0,0,0,4096,4098,3,584,292,0,4097,4094,1,0,0,0,4097,4098,1, - 0,0,0,4098,4118,1,0,0,0,4099,4104,3,648,324,0,4100,4102,5,12,0,0, - 4101,4100,1,0,0,0,4101,4102,1,0,0,0,4102,4103,1,0,0,0,4103,4105, - 3,584,292,0,4104,4101,1,0,0,0,4104,4105,1,0,0,0,4105,4118,1,0,0, - 0,4106,4107,5,1159,0,0,4107,4109,5,1108,0,0,4108,4106,1,0,0,0,4108, - 4109,1,0,0,0,4109,4110,1,0,0,0,4110,4115,3,688,344,0,4111,4113,5, - 12,0,0,4112,4111,1,0,0,0,4112,4113,1,0,0,0,4113,4114,1,0,0,0,4114, - 4116,3,584,292,0,4115,4112,1,0,0,0,4115,4116,1,0,0,0,4116,4118,1, - 0,0,0,4117,4088,1,0,0,0,4117,4092,1,0,0,0,4117,4099,1,0,0,0,4117, - 4108,1,0,0,0,4118,275,1,0,0,0,4119,4120,5,87,0,0,4120,4125,3,208, - 104,0,4121,4122,5,1135,0,0,4122,4124,3,208,104,0,4123,4121,1,0,0, - 0,4124,4127,1,0,0,0,4125,4123,1,0,0,0,4125,4126,1,0,0,0,4126,4156, - 1,0,0,0,4127,4125,1,0,0,0,4128,4129,5,87,0,0,4129,4130,5,400,0,0, - 4130,4156,5,1148,0,0,4131,4132,5,87,0,0,4132,4133,5,127,0,0,4133, - 4137,5,1148,0,0,4134,4135,5,25,0,0,4135,4136,5,153,0,0,4136,4138, - 3,568,284,0,4137,4134,1,0,0,0,4137,4138,1,0,0,0,4138,4145,1,0,0, - 0,4139,4141,7,41,0,0,4140,4142,3,278,139,0,4141,4140,1,0,0,0,4142, - 4143,1,0,0,0,4143,4141,1,0,0,0,4143,4144,1,0,0,0,4144,4146,1,0,0, - 0,4145,4139,1,0,0,0,4145,4146,1,0,0,0,4146,4153,1,0,0,0,4147,4149, - 5,101,0,0,4148,4150,3,280,140,0,4149,4148,1,0,0,0,4150,4151,1,0, - 0,0,4151,4149,1,0,0,0,4151,4152,1,0,0,0,4152,4154,1,0,0,0,4153,4147, - 1,0,0,0,4153,4154,1,0,0,0,4154,4156,1,0,0,0,4155,4119,1,0,0,0,4155, - 4128,1,0,0,0,4155,4131,1,0,0,0,4156,277,1,0,0,0,4157,4158,5,173, - 0,0,4158,4159,5,19,0,0,4159,4170,5,1148,0,0,4160,4162,5,122,0,0, - 4161,4160,1,0,0,0,4161,4162,1,0,0,0,4162,4163,1,0,0,0,4163,4164, - 5,56,0,0,4164,4165,5,19,0,0,4165,4170,5,1148,0,0,4166,4167,5,58, - 0,0,4167,4168,5,19,0,0,4168,4170,5,1148,0,0,4169,4157,1,0,0,0,4169, - 4161,1,0,0,0,4169,4166,1,0,0,0,4170,279,1,0,0,0,4171,4172,5,169, - 0,0,4172,4173,5,19,0,0,4173,4178,5,1148,0,0,4174,4175,5,173,0,0, - 4175,4176,5,19,0,0,4176,4178,5,1148,0,0,4177,4171,1,0,0,0,4177,4174, - 1,0,0,0,4178,281,1,0,0,0,4179,4180,5,68,0,0,4180,4182,3,232,116, - 0,4181,4179,1,0,0,0,4181,4182,1,0,0,0,4182,4185,1,0,0,0,4183,4184, - 5,190,0,0,4184,4186,3,688,344,0,4185,4183,1,0,0,0,4185,4186,1,0, - 0,0,4186,283,1,0,0,0,4187,4188,5,73,0,0,4188,4189,5,19,0,0,4189, - 4194,3,290,145,0,4190,4191,5,1135,0,0,4191,4193,3,290,145,0,4192, - 4190,1,0,0,0,4193,4196,1,0,0,0,4194,4192,1,0,0,0,4194,4195,1,0,0, - 0,4195,4199,1,0,0,0,4196,4194,1,0,0,0,4197,4198,5,192,0,0,4198,4200, - 5,598,0,0,4199,4197,1,0,0,0,4199,4200,1,0,0,0,4200,285,1,0,0,0,4201, - 4202,5,74,0,0,4202,4203,3,688,344,0,4203,287,1,0,0,0,4204,4205,5, - 676,0,0,4205,4206,3,666,333,0,4206,4207,5,12,0,0,4207,4208,5,1133, - 0,0,4208,4209,3,664,332,0,4209,4219,5,1134,0,0,4210,4211,5,1135, - 0,0,4211,4212,3,666,333,0,4212,4213,5,12,0,0,4213,4214,5,1133,0, - 0,4214,4215,3,664,332,0,4215,4216,5,1134,0,0,4216,4218,1,0,0,0,4217, - 4210,1,0,0,0,4218,4221,1,0,0,0,4219,4217,1,0,0,0,4219,4220,1,0,0, - 0,4220,289,1,0,0,0,4221,4219,1,0,0,0,4222,4224,3,688,344,0,4223, - 4225,7,48,0,0,4224,4223,1,0,0,0,4224,4225,1,0,0,0,4225,291,1,0,0, - 0,4226,4237,5,99,0,0,4227,4228,3,294,147,0,4228,4229,5,1135,0,0, - 4229,4231,1,0,0,0,4230,4227,1,0,0,0,4230,4231,1,0,0,0,4231,4232, - 1,0,0,0,4232,4238,3,294,147,0,4233,4234,3,294,147,0,4234,4235,5, - 532,0,0,4235,4236,3,294,147,0,4236,4238,1,0,0,0,4237,4230,1,0,0, - 0,4237,4233,1,0,0,0,4238,293,1,0,0,0,4239,4243,3,590,295,0,4240, - 4243,3,566,283,0,4241,4243,3,586,293,0,4242,4239,1,0,0,0,4242,4240, - 1,0,0,0,4242,4241,1,0,0,0,4243,295,1,0,0,0,4244,4245,5,629,0,0,4245, - 4254,5,653,0,0,4246,4251,3,318,159,0,4247,4248,5,1135,0,0,4248,4250, - 3,318,159,0,4249,4247,1,0,0,0,4250,4253,1,0,0,0,4251,4249,1,0,0, - 0,4251,4252,1,0,0,0,4252,4255,1,0,0,0,4253,4251,1,0,0,0,4254,4246, - 1,0,0,0,4254,4255,1,0,0,0,4255,297,1,0,0,0,4256,4258,5,344,0,0,4257, - 4259,5,678,0,0,4258,4257,1,0,0,0,4258,4259,1,0,0,0,4259,299,1,0, - 0,0,4260,4262,5,369,0,0,4261,4263,5,678,0,0,4262,4261,1,0,0,0,4262, - 4263,1,0,0,0,4263,4269,1,0,0,0,4264,4266,5,10,0,0,4265,4267,5,521, - 0,0,4266,4265,1,0,0,0,4266,4267,1,0,0,0,4267,4268,1,0,0,0,4268,4270, - 5,353,0,0,4269,4264,1,0,0,0,4269,4270,1,0,0,0,4270,4275,1,0,0,0, - 4271,4273,5,521,0,0,4272,4271,1,0,0,0,4272,4273,1,0,0,0,4273,4274, - 1,0,0,0,4274,4276,5,138,0,0,4275,4272,1,0,0,0,4275,4276,1,0,0,0, - 4276,301,1,0,0,0,4277,4279,5,597,0,0,4278,4280,5,678,0,0,4279,4278, - 1,0,0,0,4279,4280,1,0,0,0,4280,4286,1,0,0,0,4281,4283,5,10,0,0,4282, - 4284,5,521,0,0,4283,4282,1,0,0,0,4283,4284,1,0,0,0,4284,4285,1,0, - 0,0,4285,4287,5,353,0,0,4286,4281,1,0,0,0,4286,4287,1,0,0,0,4287, - 4292,1,0,0,0,4288,4290,5,521,0,0,4289,4288,1,0,0,0,4289,4290,1,0, - 0,0,4290,4291,1,0,0,0,4291,4293,5,138,0,0,4292,4289,1,0,0,0,4292, - 4293,1,0,0,0,4293,303,1,0,0,0,4294,4295,5,604,0,0,4295,4296,3,584, - 292,0,4296,305,1,0,0,0,4297,4299,5,597,0,0,4298,4300,5,678,0,0,4299, - 4298,1,0,0,0,4299,4300,1,0,0,0,4300,4301,1,0,0,0,4301,4303,5,175, - 0,0,4302,4304,5,604,0,0,4303,4302,1,0,0,0,4303,4304,1,0,0,0,4304, - 4305,1,0,0,0,4305,4306,3,584,292,0,4306,307,1,0,0,0,4307,4308,5, - 138,0,0,4308,4309,5,604,0,0,4309,4310,3,584,292,0,4310,309,1,0,0, - 0,4311,4312,5,103,0,0,4312,4313,7,54,0,0,4313,4318,3,320,160,0,4314, - 4315,5,1135,0,0,4315,4317,3,320,160,0,4316,4314,1,0,0,0,4317,4320, - 1,0,0,0,4318,4316,1,0,0,0,4318,4319,1,0,0,0,4319,4322,1,0,0,0,4320, - 4318,1,0,0,0,4321,4323,3,646,323,0,4322,4321,1,0,0,0,4322,4323,1, - 0,0,0,4323,311,1,0,0,0,4324,4325,5,182,0,0,4325,4326,5,742,0,0,4326, - 313,1,0,0,0,4327,4328,5,153,0,0,4328,4329,5,340,0,0,4329,4330,5, - 1124,0,0,4330,4331,7,24,0,0,4331,315,1,0,0,0,4332,4334,5,153,0,0, - 4333,4335,7,55,0,0,4334,4333,1,0,0,0,4334,4335,1,0,0,0,4335,4336, - 1,0,0,0,4336,4337,5,653,0,0,4337,4342,3,324,162,0,4338,4339,5,1135, - 0,0,4339,4341,3,324,162,0,4340,4338,1,0,0,0,4341,4344,1,0,0,0,4342, - 4340,1,0,0,0,4342,4343,1,0,0,0,4343,317,1,0,0,0,4344,4342,1,0,0, - 0,4345,4346,5,192,0,0,4346,4347,5,377,0,0,4347,4353,5,616,0,0,4348, - 4349,5,134,0,0,4349,4353,5,193,0,0,4350,4351,5,134,0,0,4351,4353, - 5,538,0,0,4352,4345,1,0,0,0,4352,4348,1,0,0,0,4352,4350,1,0,0,0, - 4353,319,1,0,0,0,4354,4359,3,550,275,0,4355,4357,5,12,0,0,4356,4355, - 1,0,0,0,4356,4357,1,0,0,0,4357,4358,1,0,0,0,4358,4360,3,584,292, - 0,4359,4356,1,0,0,0,4359,4360,1,0,0,0,4360,4361,1,0,0,0,4361,4362, - 3,322,161,0,4362,321,1,0,0,0,4363,4365,5,134,0,0,4364,4366,5,474, - 0,0,4365,4364,1,0,0,0,4365,4366,1,0,0,0,4366,4372,1,0,0,0,4367,4369, - 5,106,0,0,4368,4367,1,0,0,0,4368,4369,1,0,0,0,4369,4370,1,0,0,0, - 4370,4372,5,193,0,0,4371,4363,1,0,0,0,4371,4368,1,0,0,0,4372,323, - 1,0,0,0,4373,4374,5,464,0,0,4374,4375,5,472,0,0,4375,4381,3,326, - 163,0,4376,4377,5,134,0,0,4377,4381,5,193,0,0,4378,4379,5,134,0, - 0,4379,4381,5,538,0,0,4380,4373,1,0,0,0,4380,4376,1,0,0,0,4380,4378, - 1,0,0,0,4381,325,1,0,0,0,4382,4383,5,799,0,0,4383,4390,5,134,0,0, - 4384,4385,5,134,0,0,4385,4390,5,800,0,0,4386,4387,5,134,0,0,4387, - 4390,5,801,0,0,4388,4390,5,802,0,0,4389,4382,1,0,0,0,4389,4384,1, - 0,0,0,4389,4386,1,0,0,0,4389,4388,1,0,0,0,4390,327,1,0,0,0,4391, - 4392,5,24,0,0,4392,4393,5,477,0,0,4393,4394,5,175,0,0,4394,4399, - 3,346,173,0,4395,4396,5,1135,0,0,4396,4398,3,346,173,0,4397,4395, - 1,0,0,0,4398,4401,1,0,0,0,4399,4397,1,0,0,0,4399,4400,1,0,0,0,4400, - 4403,1,0,0,0,4401,4399,1,0,0,0,4402,4404,3,354,177,0,4403,4402,1, - 0,0,0,4403,4404,1,0,0,0,4404,329,1,0,0,0,4405,4406,5,24,0,0,4406, - 4407,5,588,0,0,4407,4408,5,429,0,0,4408,4413,3,356,178,0,4409,4410, - 5,1135,0,0,4410,4412,3,356,178,0,4411,4409,1,0,0,0,4412,4415,1,0, - 0,0,4413,4411,1,0,0,0,4413,4414,1,0,0,0,4414,331,1,0,0,0,4415,4413, - 1,0,0,0,4416,4417,5,132,0,0,4417,4418,7,56,0,0,4418,4423,5,476,0, - 0,4419,4420,5,175,0,0,4420,4424,5,1148,0,0,4421,4422,5,15,0,0,4422, - 4424,5,1148,0,0,4423,4419,1,0,0,0,4423,4421,1,0,0,0,4424,333,1,0, - 0,0,4425,4426,5,589,0,0,4426,4427,5,477,0,0,4427,335,1,0,0,0,4428, - 4429,5,589,0,0,4429,4431,5,614,0,0,4430,4432,5,6,0,0,4431,4430,1, - 0,0,0,4431,4432,1,0,0,0,4432,4434,1,0,0,0,4433,4435,3,354,177,0, - 4434,4433,1,0,0,0,4434,4435,1,0,0,0,4435,337,1,0,0,0,4436,4437,5, - 629,0,0,4437,4446,5,614,0,0,4438,4443,3,360,180,0,4439,4440,5,1135, - 0,0,4440,4442,3,360,180,0,4441,4439,1,0,0,0,4442,4445,1,0,0,0,4443, - 4441,1,0,0,0,4443,4444,1,0,0,0,4444,4447,1,0,0,0,4445,4443,1,0,0, - 0,4446,4438,1,0,0,0,4446,4447,1,0,0,0,4447,4450,1,0,0,0,4448,4449, - 5,663,0,0,4449,4451,3,362,181,0,4450,4448,1,0,0,0,4450,4451,1,0, - 0,0,4451,4455,1,0,0,0,4452,4454,3,364,182,0,4453,4452,1,0,0,0,4454, - 4457,1,0,0,0,4455,4453,1,0,0,0,4455,4456,1,0,0,0,4456,4459,1,0,0, - 0,4457,4455,1,0,0,0,4458,4460,3,354,177,0,4459,4458,1,0,0,0,4459, - 4460,1,0,0,0,4460,339,1,0,0,0,4461,4462,5,635,0,0,4462,4471,5,614, - 0,0,4463,4468,3,360,180,0,4464,4465,5,1135,0,0,4465,4467,3,360,180, - 0,4466,4464,1,0,0,0,4467,4470,1,0,0,0,4468,4466,1,0,0,0,4468,4469, - 1,0,0,0,4469,4472,1,0,0,0,4470,4468,1,0,0,0,4471,4463,1,0,0,0,4471, - 4472,1,0,0,0,4472,341,1,0,0,0,4473,4474,5,629,0,0,4474,4475,5,441, - 0,0,4475,343,1,0,0,0,4476,4477,5,635,0,0,4477,4478,5,441,0,0,4478, - 345,1,0,0,0,4479,4480,3,348,174,0,4480,4481,5,1124,0,0,4481,4482, - 5,1148,0,0,4482,4509,1,0,0,0,4483,4484,3,350,175,0,4484,4485,5,1124, - 0,0,4485,4486,3,590,295,0,4486,4509,1,0,0,0,4487,4488,3,352,176, - 0,4488,4489,5,1124,0,0,4489,4490,7,24,0,0,4490,4509,1,0,0,0,4491, - 4492,5,481,0,0,4492,4493,5,1124,0,0,4493,4509,5,1151,0,0,4494,4495, - 5,449,0,0,4495,4496,5,1124,0,0,4496,4505,5,1133,0,0,4497,4502,3, - 584,292,0,4498,4499,5,1135,0,0,4499,4501,3,584,292,0,4500,4498,1, - 0,0,0,4501,4504,1,0,0,0,4502,4500,1,0,0,0,4502,4503,1,0,0,0,4503, - 4506,1,0,0,0,4504,4502,1,0,0,0,4505,4497,1,0,0,0,4505,4506,1,0,0, - 0,4506,4507,1,0,0,0,4507,4509,5,1134,0,0,4508,4479,1,0,0,0,4508, - 4483,1,0,0,0,4508,4487,1,0,0,0,4508,4491,1,0,0,0,4508,4494,1,0,0, - 0,4509,347,1,0,0,0,4510,4511,7,57,0,0,4511,349,1,0,0,0,4512,4513, - 7,58,0,0,4513,351,1,0,0,0,4514,4515,7,59,0,0,4515,353,1,0,0,0,4516, - 4517,5,65,0,0,4517,4518,5,355,0,0,4518,4519,5,1148,0,0,4519,355, - 1,0,0,0,4520,4521,5,581,0,0,4521,4522,5,1124,0,0,4522,4523,5,1133, - 0,0,4523,4524,3,616,308,0,4524,4525,5,1134,0,0,4525,4570,1,0,0,0, - 4526,4527,5,583,0,0,4527,4528,5,1124,0,0,4528,4529,5,1133,0,0,4529, - 4530,3,616,308,0,4530,4531,5,1134,0,0,4531,4570,1,0,0,0,4532,4533, - 5,582,0,0,4533,4534,5,1124,0,0,4534,4535,5,1133,0,0,4535,4536,3, - 620,310,0,4536,4537,5,1134,0,0,4537,4570,1,0,0,0,4538,4539,5,584, - 0,0,4539,4540,5,1124,0,0,4540,4541,5,1133,0,0,4541,4542,3,620,310, - 0,4542,4543,5,1134,0,0,4543,4570,1,0,0,0,4544,4545,5,586,0,0,4545, - 4546,5,1124,0,0,4546,4547,5,1133,0,0,4547,4548,3,630,315,0,4548, - 4549,5,1134,0,0,4549,4570,1,0,0,0,4550,4551,5,587,0,0,4551,4552, - 5,1124,0,0,4552,4553,5,1133,0,0,4553,4554,3,630,315,0,4554,4555, - 5,1134,0,0,4555,4570,1,0,0,0,4556,4557,5,585,0,0,4557,4558,5,1124, - 0,0,4558,4559,5,1133,0,0,4559,4564,3,358,179,0,4560,4561,5,1135, - 0,0,4561,4563,3,358,179,0,4562,4560,1,0,0,0,4563,4566,1,0,0,0,4564, - 4562,1,0,0,0,4564,4565,1,0,0,0,4565,4567,1,0,0,0,4566,4564,1,0,0, - 0,4567,4568,5,1134,0,0,4568,4570,1,0,0,0,4569,4520,1,0,0,0,4569, - 4526,1,0,0,0,4569,4532,1,0,0,0,4569,4538,1,0,0,0,4569,4544,1,0,0, - 0,4569,4550,1,0,0,0,4569,4556,1,0,0,0,4570,357,1,0,0,0,4571,4572, - 5,1133,0,0,4572,4573,3,550,275,0,4573,4574,5,1135,0,0,4574,4575, - 3,550,275,0,4575,4576,5,1134,0,0,4576,359,1,0,0,0,4577,4578,7,60, - 0,0,4578,361,1,0,0,0,4579,4580,7,61,0,0,4580,4581,5,1124,0,0,4581, - 4598,3,366,183,0,4582,4583,5,483,0,0,4583,4584,5,1124,0,0,4584,4585, - 5,1148,0,0,4585,4586,5,1135,0,0,4586,4587,5,484,0,0,4587,4588,5, - 1124,0,0,4588,4598,3,590,295,0,4589,4590,5,575,0,0,4590,4591,5,1124, - 0,0,4591,4592,5,1148,0,0,4592,4593,5,1135,0,0,4593,4594,5,576,0, - 0,4594,4595,5,1124,0,0,4595,4598,3,590,295,0,4596,4598,5,623,0,0, - 4597,4579,1,0,0,0,4597,4582,1,0,0,0,4597,4589,1,0,0,0,4597,4596, - 1,0,0,0,4598,363,1,0,0,0,4599,4600,5,665,0,0,4600,4601,5,1124,0, - 0,4601,4612,5,1148,0,0,4602,4603,5,551,0,0,4603,4604,5,1124,0,0, - 4604,4612,5,1148,0,0,4605,4606,5,391,0,0,4606,4607,5,1124,0,0,4607, - 4612,5,1148,0,0,4608,4609,5,555,0,0,4609,4610,5,1124,0,0,4610,4612, - 5,1148,0,0,4611,4599,1,0,0,0,4611,4602,1,0,0,0,4611,4605,1,0,0,0, - 4611,4608,1,0,0,0,4612,365,1,0,0,0,4613,4618,3,576,288,0,4614,4615, - 5,1135,0,0,4615,4617,3,576,288,0,4616,4614,1,0,0,0,4617,4620,1,0, - 0,0,4618,4616,1,0,0,0,4618,4619,1,0,0,0,4619,4623,1,0,0,0,4620,4618, - 1,0,0,0,4621,4623,5,1148,0,0,4622,4613,1,0,0,0,4622,4621,1,0,0,0, - 4623,367,1,0,0,0,4624,4625,5,681,0,0,4625,4626,7,62,0,0,4626,4628, - 3,578,289,0,4627,4629,7,63,0,0,4628,4627,1,0,0,0,4628,4629,1,0,0, - 0,4629,369,1,0,0,0,4630,4631,5,681,0,0,4631,4632,5,407,0,0,4632, - 4638,3,578,289,0,4633,4636,5,643,0,0,4634,4635,5,65,0,0,4635,4637, - 5,509,0,0,4636,4634,1,0,0,0,4636,4637,1,0,0,0,4637,4639,1,0,0,0, - 4638,4633,1,0,0,0,4638,4639,1,0,0,0,4639,371,1,0,0,0,4640,4641,5, - 681,0,0,4641,4642,5,560,0,0,4642,4643,3,578,289,0,4643,373,1,0,0, - 0,4644,4645,5,681,0,0,4645,4646,5,369,0,0,4646,4649,3,578,289,0, - 4647,4648,5,536,0,0,4648,4650,5,553,0,0,4649,4647,1,0,0,0,4649,4650, - 1,0,0,0,4650,375,1,0,0,0,4651,4652,5,681,0,0,4652,4653,5,597,0,0, - 4653,4654,3,578,289,0,4654,377,1,0,0,0,4655,4656,5,681,0,0,4656, - 4659,5,570,0,0,4657,4658,5,32,0,0,4658,4660,3,578,289,0,4659,4657, - 1,0,0,0,4659,4660,1,0,0,0,4660,379,1,0,0,0,4661,4662,5,560,0,0,4662, - 4663,3,584,292,0,4663,4666,5,68,0,0,4664,4667,5,1148,0,0,4665,4667, - 5,1159,0,0,4666,4664,1,0,0,0,4666,4665,1,0,0,0,4667,381,1,0,0,0, - 4668,4669,5,708,0,0,4669,4672,3,584,292,0,4670,4671,5,187,0,0,4671, - 4673,3,632,316,0,4672,4670,1,0,0,0,4672,4673,1,0,0,0,4673,383,1, - 0,0,0,4674,4675,7,64,0,0,4675,4676,5,560,0,0,4676,4677,3,584,292, - 0,4677,385,1,0,0,0,4678,4681,3,388,194,0,4679,4681,3,4,2,0,4680, - 4678,1,0,0,0,4680,4679,1,0,0,0,4681,387,1,0,0,0,4682,4683,3,584, - 292,0,4683,4684,5,1144,0,0,4684,4686,1,0,0,0,4685,4682,1,0,0,0,4685, - 4686,1,0,0,0,4686,4687,1,0,0,0,4687,4693,5,344,0,0,4688,4689,3,408, - 204,0,4689,4690,5,1136,0,0,4690,4692,1,0,0,0,4691,4688,1,0,0,0,4692, - 4695,1,0,0,0,4693,4691,1,0,0,0,4693,4694,1,0,0,0,4694,4701,1,0,0, - 0,4695,4693,1,0,0,0,4696,4697,3,410,205,0,4697,4698,5,1136,0,0,4698, - 4700,1,0,0,0,4699,4696,1,0,0,0,4700,4703,1,0,0,0,4701,4699,1,0,0, - 0,4701,4702,1,0,0,0,4702,4709,1,0,0,0,4703,4701,1,0,0,0,4704,4705, - 3,412,206,0,4705,4706,5,1136,0,0,4706,4708,1,0,0,0,4707,4704,1,0, - 0,0,4708,4711,1,0,0,0,4709,4707,1,0,0,0,4709,4710,1,0,0,0,4710,4717, - 1,0,0,0,4711,4709,1,0,0,0,4712,4713,3,414,207,0,4713,4714,5,1136, - 0,0,4714,4716,1,0,0,0,4715,4712,1,0,0,0,4716,4719,1,0,0,0,4717,4715, - 1,0,0,0,4717,4718,1,0,0,0,4718,4723,1,0,0,0,4719,4717,1,0,0,0,4720, - 4722,3,418,209,0,4721,4720,1,0,0,0,4722,4725,1,0,0,0,4723,4721,1, - 0,0,0,4723,4724,1,0,0,0,4724,4726,1,0,0,0,4725,4723,1,0,0,0,4726, - 4728,5,407,0,0,4727,4729,3,584,292,0,4728,4727,1,0,0,0,4728,4729, - 1,0,0,0,4729,389,1,0,0,0,4730,4733,5,22,0,0,4731,4734,3,584,292, - 0,4732,4734,3,688,344,0,4733,4731,1,0,0,0,4733,4732,1,0,0,0,4733, - 4734,1,0,0,0,4734,4736,1,0,0,0,4735,4737,3,420,210,0,4736,4735,1, - 0,0,0,4737,4738,1,0,0,0,4738,4736,1,0,0,0,4738,4739,1,0,0,0,4739, - 4746,1,0,0,0,4740,4742,5,53,0,0,4741,4743,3,418,209,0,4742,4741, - 1,0,0,0,4743,4744,1,0,0,0,4744,4742,1,0,0,0,4744,4745,1,0,0,0,4745, - 4747,1,0,0,0,4746,4740,1,0,0,0,4746,4747,1,0,0,0,4747,4748,1,0,0, - 0,4748,4749,5,407,0,0,4749,4750,5,22,0,0,4750,391,1,0,0,0,4751,4752, - 5,77,0,0,4752,4753,3,688,344,0,4753,4755,5,174,0,0,4754,4756,3,418, - 209,0,4755,4754,1,0,0,0,4756,4757,1,0,0,0,4757,4755,1,0,0,0,4757, - 4758,1,0,0,0,4758,4762,1,0,0,0,4759,4761,3,422,211,0,4760,4759,1, - 0,0,0,4761,4764,1,0,0,0,4762,4760,1,0,0,0,4762,4763,1,0,0,0,4763, - 4771,1,0,0,0,4764,4762,1,0,0,0,4765,4767,5,53,0,0,4766,4768,3,418, - 209,0,4767,4766,1,0,0,0,4768,4769,1,0,0,0,4769,4767,1,0,0,0,4769, - 4770,1,0,0,0,4770,4772,1,0,0,0,4771,4765,1,0,0,0,4771,4772,1,0,0, - 0,4772,4773,1,0,0,0,4773,4774,5,407,0,0,4774,4775,5,77,0,0,4775, - 393,1,0,0,0,4776,4777,5,89,0,0,4777,4778,3,584,292,0,4778,395,1, - 0,0,0,4779,4780,5,96,0,0,4780,4781,3,584,292,0,4781,397,1,0,0,0, - 4782,4783,3,584,292,0,4783,4784,5,1144,0,0,4784,4786,1,0,0,0,4785, - 4782,1,0,0,0,4785,4786,1,0,0,0,4786,4787,1,0,0,0,4787,4789,5,105, - 0,0,4788,4790,3,418,209,0,4789,4788,1,0,0,0,4790,4791,1,0,0,0,4791, - 4789,1,0,0,0,4791,4792,1,0,0,0,4792,4793,1,0,0,0,4793,4794,5,407, - 0,0,4794,4796,5,105,0,0,4795,4797,3,584,292,0,4796,4795,1,0,0,0, - 4796,4797,1,0,0,0,4797,399,1,0,0,0,4798,4799,3,584,292,0,4799,4800, - 5,1144,0,0,4800,4802,1,0,0,0,4801,4798,1,0,0,0,4801,4802,1,0,0,0, - 4802,4803,1,0,0,0,4803,4805,5,140,0,0,4804,4806,3,418,209,0,4805, - 4804,1,0,0,0,4806,4807,1,0,0,0,4807,4805,1,0,0,0,4807,4808,1,0,0, - 0,4808,4809,1,0,0,0,4809,4810,5,663,0,0,4810,4811,3,688,344,0,4811, - 4812,5,407,0,0,4812,4814,5,140,0,0,4813,4815,3,584,292,0,4814,4813, - 1,0,0,0,4814,4815,1,0,0,0,4815,401,1,0,0,0,4816,4817,5,146,0,0,4817, - 4818,3,688,344,0,4818,403,1,0,0,0,4819,4820,3,584,292,0,4820,4821, - 5,1144,0,0,4821,4823,1,0,0,0,4822,4819,1,0,0,0,4822,4823,1,0,0,0, - 4823,4824,1,0,0,0,4824,4825,5,191,0,0,4825,4826,3,688,344,0,4826, - 4828,5,399,0,0,4827,4829,3,418,209,0,4828,4827,1,0,0,0,4829,4830, - 1,0,0,0,4830,4828,1,0,0,0,4830,4831,1,0,0,0,4831,4832,1,0,0,0,4832, - 4833,5,407,0,0,4833,4835,5,191,0,0,4834,4836,3,584,292,0,4835,4834, - 1,0,0,0,4835,4836,1,0,0,0,4836,405,1,0,0,0,4837,4838,5,361,0,0,4838, - 4853,3,584,292,0,4839,4844,5,64,0,0,4840,4842,5,520,0,0,4841,4840, - 1,0,0,0,4841,4842,1,0,0,0,4842,4843,1,0,0,0,4843,4845,5,68,0,0,4844, - 4841,1,0,0,0,4844,4845,1,0,0,0,4845,4846,1,0,0,0,4846,4847,3,584, - 292,0,4847,4848,5,87,0,0,4848,4849,3,616,308,0,4849,4853,1,0,0,0, - 4850,4851,5,539,0,0,4851,4853,3,584,292,0,4852,4837,1,0,0,0,4852, - 4839,1,0,0,0,4852,4850,1,0,0,0,4853,407,1,0,0,0,4854,4855,5,41,0, - 0,4855,4856,3,616,308,0,4856,4859,3,604,302,0,4857,4858,5,42,0,0, - 4858,4860,3,688,344,0,4859,4857,1,0,0,0,4859,4860,1,0,0,0,4860,409, - 1,0,0,0,4861,4862,5,41,0,0,4862,4863,3,584,292,0,4863,4864,5,29, - 0,0,4864,4871,5,65,0,0,4865,4872,3,590,295,0,4866,4868,5,162,0,0, - 4867,4869,5,669,0,0,4868,4867,1,0,0,0,4868,4869,1,0,0,0,4869,4870, - 1,0,0,0,4870,4872,5,1148,0,0,4871,4865,1,0,0,0,4871,4866,1,0,0,0, - 4872,411,1,0,0,0,4873,4874,5,41,0,0,4874,4875,3,584,292,0,4875,4876, - 5,38,0,0,4876,4877,5,65,0,0,4877,4878,3,198,99,0,4878,413,1,0,0, - 0,4879,4880,5,41,0,0,4880,4881,7,65,0,0,4881,4882,5,442,0,0,4882, - 4883,5,65,0,0,4883,4888,3,416,208,0,4884,4885,5,1135,0,0,4885,4887, - 3,416,208,0,4886,4884,1,0,0,0,4887,4890,1,0,0,0,4888,4886,1,0,0, - 0,4888,4889,1,0,0,0,4889,4891,1,0,0,0,4890,4888,1,0,0,0,4891,4892, - 3,386,193,0,4892,415,1,0,0,0,4893,4905,3,590,295,0,4894,4896,5,162, - 0,0,4895,4897,5,669,0,0,4896,4895,1,0,0,0,4896,4897,1,0,0,0,4897, - 4898,1,0,0,0,4898,4905,5,1148,0,0,4899,4905,3,584,292,0,4900,4905, - 5,163,0,0,4901,4902,5,114,0,0,4902,4905,5,435,0,0,4903,4905,5,161, - 0,0,4904,4893,1,0,0,0,4904,4894,1,0,0,0,4904,4899,1,0,0,0,4904,4900, - 1,0,0,0,4904,4901,1,0,0,0,4904,4903,1,0,0,0,4905,417,1,0,0,0,4906, - 4909,3,16,8,0,4907,4909,3,4,2,0,4908,4906,1,0,0,0,4908,4907,1,0, - 0,0,4909,4910,1,0,0,0,4910,4911,5,1136,0,0,4911,419,1,0,0,0,4912, - 4915,5,189,0,0,4913,4916,3,602,301,0,4914,4916,3,688,344,0,4915, - 4913,1,0,0,0,4915,4914,1,0,0,0,4916,4917,1,0,0,0,4917,4919,5,174, - 0,0,4918,4920,3,418,209,0,4919,4918,1,0,0,0,4920,4921,1,0,0,0,4921, - 4919,1,0,0,0,4921,4922,1,0,0,0,4922,421,1,0,0,0,4923,4924,5,54,0, - 0,4924,4925,3,688,344,0,4925,4927,5,174,0,0,4926,4928,3,418,209, - 0,4927,4926,1,0,0,0,4928,4929,1,0,0,0,4929,4927,1,0,0,0,4929,4930, - 1,0,0,0,4930,423,1,0,0,0,4931,4932,5,7,0,0,4932,4933,5,665,0,0,4933, - 4938,3,444,222,0,4934,4935,5,1135,0,0,4935,4937,3,444,222,0,4936, - 4934,1,0,0,0,4937,4940,1,0,0,0,4938,4936,1,0,0,0,4938,4939,1,0,0, - 0,4939,5005,1,0,0,0,4940,4938,1,0,0,0,4941,4942,5,7,0,0,4942,4944, - 5,665,0,0,4943,4945,3,640,320,0,4944,4943,1,0,0,0,4944,4945,1,0, - 0,0,4945,4946,1,0,0,0,4946,4951,3,446,223,0,4947,4948,5,1135,0,0, - 4948,4950,3,446,223,0,4949,4947,1,0,0,0,4950,4953,1,0,0,0,4951,4949, - 1,0,0,0,4951,4952,1,0,0,0,4952,4968,1,0,0,0,4953,4951,1,0,0,0,4954, - 4966,5,142,0,0,4955,4967,5,529,0,0,4956,4963,3,452,226,0,4957,4959, - 5,10,0,0,4958,4957,1,0,0,0,4958,4959,1,0,0,0,4959,4960,1,0,0,0,4960, - 4962,3,452,226,0,4961,4958,1,0,0,0,4962,4965,1,0,0,0,4963,4961,1, - 0,0,0,4963,4964,1,0,0,0,4964,4967,1,0,0,0,4965,4963,1,0,0,0,4966, - 4955,1,0,0,0,4966,4956,1,0,0,0,4967,4969,1,0,0,0,4968,4954,1,0,0, - 0,4968,4969,1,0,0,0,4969,4976,1,0,0,0,4970,4972,5,192,0,0,4971,4973, - 3,454,227,0,4972,4971,1,0,0,0,4973,4974,1,0,0,0,4974,4972,1,0,0, - 0,4974,4975,1,0,0,0,4975,4977,1,0,0,0,4976,4970,1,0,0,0,4976,4977, - 1,0,0,0,4977,4982,1,0,0,0,4978,4981,3,456,228,0,4979,4981,3,458, - 229,0,4980,4978,1,0,0,0,4980,4979,1,0,0,0,4981,4984,1,0,0,0,4982, - 4980,1,0,0,0,4982,4983,1,0,0,0,4983,4989,1,0,0,0,4984,4982,1,0,0, - 0,4985,4986,5,368,0,0,4986,4990,5,1148,0,0,4987,4988,5,14,0,0,4988, - 4990,5,1148,0,0,4989,4985,1,0,0,0,4989,4987,1,0,0,0,4989,4990,1, - 0,0,0,4990,5005,1,0,0,0,4991,4992,5,7,0,0,4992,4994,5,665,0,0,4993, - 4995,3,640,320,0,4994,4993,1,0,0,0,4994,4995,1,0,0,0,4995,4998,1, - 0,0,0,4996,4999,3,564,282,0,4997,4999,3,584,292,0,4998,4996,1,0, - 0,0,4998,4997,1,0,0,0,4999,5000,1,0,0,0,5000,5001,5,42,0,0,5001, - 5002,5,596,0,0,5002,5003,3,432,216,0,5003,5005,1,0,0,0,5004,4931, - 1,0,0,0,5004,4941,1,0,0,0,5004,4991,1,0,0,0,5005,425,1,0,0,0,5006, - 5007,5,33,0,0,5007,5008,5,665,0,0,5008,5013,3,446,223,0,5009,5010, - 5,1135,0,0,5010,5012,3,446,223,0,5011,5009,1,0,0,0,5012,5015,1,0, - 0,0,5013,5011,1,0,0,0,5013,5014,1,0,0,0,5014,5072,1,0,0,0,5015,5013, - 1,0,0,0,5016,5017,5,33,0,0,5017,5019,5,665,0,0,5018,5020,3,642,321, - 0,5019,5018,1,0,0,0,5019,5020,1,0,0,0,5020,5021,1,0,0,0,5021,5026, - 3,446,223,0,5022,5023,5,1135,0,0,5023,5025,3,446,223,0,5024,5022, - 1,0,0,0,5025,5028,1,0,0,0,5026,5024,1,0,0,0,5026,5027,1,0,0,0,5027, - 5032,1,0,0,0,5028,5026,1,0,0,0,5029,5030,5,42,0,0,5030,5031,5,596, - 0,0,5031,5033,3,432,216,0,5032,5029,1,0,0,0,5032,5033,1,0,0,0,5033, - 5048,1,0,0,0,5034,5046,5,142,0,0,5035,5047,5,529,0,0,5036,5043,3, - 452,226,0,5037,5039,5,10,0,0,5038,5037,1,0,0,0,5038,5039,1,0,0,0, - 5039,5040,1,0,0,0,5040,5042,3,452,226,0,5041,5038,1,0,0,0,5042,5045, - 1,0,0,0,5043,5041,1,0,0,0,5043,5044,1,0,0,0,5044,5047,1,0,0,0,5045, - 5043,1,0,0,0,5046,5035,1,0,0,0,5046,5036,1,0,0,0,5047,5049,1,0,0, - 0,5048,5034,1,0,0,0,5048,5049,1,0,0,0,5049,5056,1,0,0,0,5050,5052, - 5,192,0,0,5051,5053,3,454,227,0,5052,5051,1,0,0,0,5053,5054,1,0, - 0,0,5054,5052,1,0,0,0,5054,5055,1,0,0,0,5055,5057,1,0,0,0,5056,5050, - 1,0,0,0,5056,5057,1,0,0,0,5057,5062,1,0,0,0,5058,5061,3,456,228, - 0,5059,5061,3,458,229,0,5060,5058,1,0,0,0,5060,5059,1,0,0,0,5061, - 5064,1,0,0,0,5062,5060,1,0,0,0,5062,5063,1,0,0,0,5063,5069,1,0,0, - 0,5064,5062,1,0,0,0,5065,5066,5,368,0,0,5066,5070,5,1148,0,0,5067, - 5068,5,14,0,0,5068,5070,5,1148,0,0,5069,5065,1,0,0,0,5069,5067,1, - 0,0,0,5069,5070,1,0,0,0,5070,5072,1,0,0,0,5071,5006,1,0,0,0,5071, - 5016,1,0,0,0,5072,427,1,0,0,0,5073,5074,5,51,0,0,5074,5076,5,665, - 0,0,5075,5077,3,640,320,0,5076,5075,1,0,0,0,5076,5077,1,0,0,0,5077, - 5078,1,0,0,0,5078,5083,3,564,282,0,5079,5080,5,1135,0,0,5080,5082, - 3,564,282,0,5081,5079,1,0,0,0,5082,5085,1,0,0,0,5083,5081,1,0,0, - 0,5083,5084,1,0,0,0,5084,429,1,0,0,0,5085,5083,1,0,0,0,5086,5087, - 5,72,0,0,5087,5092,3,460,230,0,5088,5089,5,1135,0,0,5089,5091,3, - 460,230,0,5090,5088,1,0,0,0,5091,5094,1,0,0,0,5092,5090,1,0,0,0, - 5092,5093,1,0,0,0,5093,5095,1,0,0,0,5094,5092,1,0,0,0,5095,5097, - 5,118,0,0,5096,5098,7,66,0,0,5097,5096,1,0,0,0,5097,5098,1,0,0,0, - 5098,5099,1,0,0,0,5099,5100,3,464,232,0,5100,5101,5,175,0,0,5101, - 5106,3,446,223,0,5102,5103,5,1135,0,0,5103,5105,3,446,223,0,5104, - 5102,1,0,0,0,5105,5108,1,0,0,0,5106,5104,1,0,0,0,5106,5107,1,0,0, - 0,5107,5123,1,0,0,0,5108,5106,1,0,0,0,5109,5121,5,142,0,0,5110,5122, - 5,529,0,0,5111,5118,3,452,226,0,5112,5114,5,10,0,0,5113,5112,1,0, - 0,0,5113,5114,1,0,0,0,5114,5115,1,0,0,0,5115,5117,3,452,226,0,5116, - 5113,1,0,0,0,5117,5120,1,0,0,0,5118,5116,1,0,0,0,5118,5119,1,0,0, - 0,5119,5122,1,0,0,0,5120,5118,1,0,0,0,5121,5110,1,0,0,0,5121,5111, - 1,0,0,0,5122,5124,1,0,0,0,5123,5109,1,0,0,0,5123,5124,1,0,0,0,5124, - 5134,1,0,0,0,5125,5131,5,192,0,0,5126,5127,5,72,0,0,5127,5130,5, - 120,0,0,5128,5130,3,454,227,0,5129,5126,1,0,0,0,5129,5128,1,0,0, - 0,5130,5133,1,0,0,0,5131,5129,1,0,0,0,5131,5132,1,0,0,0,5132,5135, - 1,0,0,0,5133,5131,1,0,0,0,5134,5125,1,0,0,0,5134,5135,1,0,0,0,5135, - 5142,1,0,0,0,5136,5137,5,12,0,0,5137,5138,3,564,282,0,5138,5139, - 5,192,0,0,5139,5140,5,596,0,0,5140,5141,3,432,216,0,5141,5143,1, - 0,0,0,5142,5136,1,0,0,0,5142,5143,1,0,0,0,5143,5180,1,0,0,0,5144, - 5147,5,72,0,0,5145,5148,3,564,282,0,5146,5148,3,584,292,0,5147,5145, - 1,0,0,0,5147,5146,1,0,0,0,5148,5156,1,0,0,0,5149,5152,5,1135,0,0, - 5150,5153,3,564,282,0,5151,5153,3,584,292,0,5152,5150,1,0,0,0,5152, - 5151,1,0,0,0,5153,5155,1,0,0,0,5154,5149,1,0,0,0,5155,5158,1,0,0, - 0,5156,5154,1,0,0,0,5156,5157,1,0,0,0,5157,5159,1,0,0,0,5158,5156, - 1,0,0,0,5159,5162,5,175,0,0,5160,5163,3,564,282,0,5161,5163,3,584, - 292,0,5162,5160,1,0,0,0,5162,5161,1,0,0,0,5163,5171,1,0,0,0,5164, - 5167,5,1135,0,0,5165,5168,3,564,282,0,5166,5168,3,584,292,0,5167, - 5165,1,0,0,0,5167,5166,1,0,0,0,5168,5170,1,0,0,0,5169,5164,1,0,0, - 0,5170,5173,1,0,0,0,5171,5169,1,0,0,0,5171,5172,1,0,0,0,5172,5177, - 1,0,0,0,5173,5171,1,0,0,0,5174,5175,5,192,0,0,5175,5176,5,697,0, - 0,5176,5178,5,120,0,0,5177,5174,1,0,0,0,5177,5178,1,0,0,0,5178,5180, - 1,0,0,0,5179,5086,1,0,0,0,5179,5144,1,0,0,0,5180,431,1,0,0,0,5181, - 5204,5,42,0,0,5182,5204,5,529,0,0,5183,5193,5,6,0,0,5184,5185,5, - 59,0,0,5185,5190,3,564,282,0,5186,5187,5,1135,0,0,5187,5189,3,564, - 282,0,5188,5186,1,0,0,0,5189,5192,1,0,0,0,5190,5188,1,0,0,0,5190, - 5191,1,0,0,0,5191,5194,1,0,0,0,5192,5190,1,0,0,0,5193,5184,1,0,0, - 0,5193,5194,1,0,0,0,5194,5204,1,0,0,0,5195,5200,3,564,282,0,5196, - 5197,5,1135,0,0,5197,5199,3,564,282,0,5198,5196,1,0,0,0,5199,5202, - 1,0,0,0,5200,5198,1,0,0,0,5200,5201,1,0,0,0,5201,5204,1,0,0,0,5202, - 5200,1,0,0,0,5203,5181,1,0,0,0,5203,5182,1,0,0,0,5203,5183,1,0,0, - 0,5203,5195,1,0,0,0,5204,433,1,0,0,0,5205,5206,5,72,0,0,5206,5207, - 5,566,0,0,5207,5208,5,118,0,0,5208,5209,3,564,282,0,5209,5210,5, - 175,0,0,5210,5215,3,564,282,0,5211,5212,5,1135,0,0,5212,5214,3,564, - 282,0,5213,5211,1,0,0,0,5214,5217,1,0,0,0,5215,5213,1,0,0,0,5215, - 5216,1,0,0,0,5216,5221,1,0,0,0,5217,5215,1,0,0,0,5218,5219,5,192, - 0,0,5219,5220,5,72,0,0,5220,5222,5,120,0,0,5221,5218,1,0,0,0,5221, - 5222,1,0,0,0,5222,435,1,0,0,0,5223,5224,5,139,0,0,5224,5225,5,665, - 0,0,5225,5230,3,466,233,0,5226,5227,5,1135,0,0,5227,5229,3,466,233, - 0,5228,5226,1,0,0,0,5229,5232,1,0,0,0,5230,5228,1,0,0,0,5230,5231, - 1,0,0,0,5231,437,1,0,0,0,5232,5230,1,0,0,0,5233,5234,5,147,0,0,5234, - 5239,3,460,230,0,5235,5236,5,1135,0,0,5236,5238,3,460,230,0,5237, - 5235,1,0,0,0,5238,5241,1,0,0,0,5239,5237,1,0,0,0,5239,5240,1,0,0, - 0,5240,5242,1,0,0,0,5241,5239,1,0,0,0,5242,5244,5,118,0,0,5243,5245, - 7,66,0,0,5244,5243,1,0,0,0,5244,5245,1,0,0,0,5245,5246,1,0,0,0,5246, - 5247,3,464,232,0,5247,5248,5,68,0,0,5248,5253,3,564,282,0,5249,5250, - 5,1135,0,0,5250,5252,3,564,282,0,5251,5249,1,0,0,0,5252,5255,1,0, - 0,0,5253,5251,1,0,0,0,5253,5254,1,0,0,0,5254,5304,1,0,0,0,5255,5253, - 1,0,0,0,5256,5257,5,147,0,0,5257,5259,5,6,0,0,5258,5260,5,725,0, - 0,5259,5258,1,0,0,0,5259,5260,1,0,0,0,5260,5261,1,0,0,0,5261,5262, - 5,1135,0,0,5262,5263,5,72,0,0,5263,5264,5,120,0,0,5264,5265,5,68, - 0,0,5265,5270,3,564,282,0,5266,5267,5,1135,0,0,5267,5269,3,564,282, - 0,5268,5266,1,0,0,0,5269,5272,1,0,0,0,5270,5268,1,0,0,0,5270,5271, - 1,0,0,0,5271,5304,1,0,0,0,5272,5270,1,0,0,0,5273,5276,5,147,0,0, - 5274,5277,3,564,282,0,5275,5277,3,584,292,0,5276,5274,1,0,0,0,5276, - 5275,1,0,0,0,5277,5285,1,0,0,0,5278,5281,5,1135,0,0,5279,5282,3, - 564,282,0,5280,5282,3,584,292,0,5281,5279,1,0,0,0,5281,5280,1,0, - 0,0,5282,5284,1,0,0,0,5283,5278,1,0,0,0,5284,5287,1,0,0,0,5285,5283, - 1,0,0,0,5285,5286,1,0,0,0,5286,5288,1,0,0,0,5287,5285,1,0,0,0,5288, - 5291,5,68,0,0,5289,5292,3,564,282,0,5290,5292,3,584,292,0,5291,5289, - 1,0,0,0,5291,5290,1,0,0,0,5292,5300,1,0,0,0,5293,5296,5,1135,0,0, - 5294,5297,3,564,282,0,5295,5297,3,584,292,0,5296,5294,1,0,0,0,5296, - 5295,1,0,0,0,5297,5299,1,0,0,0,5298,5293,1,0,0,0,5299,5302,1,0,0, - 0,5300,5298,1,0,0,0,5300,5301,1,0,0,0,5301,5304,1,0,0,0,5302,5300, - 1,0,0,0,5303,5233,1,0,0,0,5303,5256,1,0,0,0,5303,5273,1,0,0,0,5304, - 439,1,0,0,0,5305,5306,5,147,0,0,5306,5307,5,566,0,0,5307,5308,5, - 118,0,0,5308,5309,3,564,282,0,5309,5310,5,68,0,0,5310,5315,3,564, - 282,0,5311,5312,5,1135,0,0,5312,5314,3,564,282,0,5313,5311,1,0,0, - 0,5314,5317,1,0,0,0,5315,5313,1,0,0,0,5315,5316,1,0,0,0,5316,441, - 1,0,0,0,5317,5315,1,0,0,0,5318,5319,5,153,0,0,5319,5322,5,551,0, - 0,5320,5321,5,65,0,0,5321,5323,3,564,282,0,5322,5320,1,0,0,0,5322, - 5323,1,0,0,0,5323,5324,1,0,0,0,5324,5327,5,1124,0,0,5325,5328,3, - 682,341,0,5326,5328,5,1148,0,0,5327,5325,1,0,0,0,5327,5326,1,0,0, - 0,5328,443,1,0,0,0,5329,5330,3,564,282,0,5330,5331,3,456,228,0,5331, - 445,1,0,0,0,5332,5333,3,564,282,0,5333,5334,5,448,0,0,5334,5335, - 5,19,0,0,5335,5336,5,551,0,0,5336,5337,5,1148,0,0,5337,5358,1,0, - 0,0,5338,5339,3,564,282,0,5339,5340,5,448,0,0,5340,5341,5,19,0,0, - 5341,5342,5,991,0,0,5342,5343,5,551,0,0,5343,5344,3,448,224,0,5344, - 5358,1,0,0,0,5345,5346,3,564,282,0,5346,5347,5,448,0,0,5347,5348, - 5,19,0,0,5348,5349,5,1148,0,0,5349,5350,3,448,224,0,5350,5358,1, - 0,0,0,5351,5352,3,564,282,0,5352,5353,5,448,0,0,5353,5354,5,192, - 0,0,5354,5355,3,450,225,0,5355,5358,1,0,0,0,5356,5358,3,564,282, - 0,5357,5332,1,0,0,0,5357,5338,1,0,0,0,5357,5345,1,0,0,0,5357,5351, - 1,0,0,0,5357,5356,1,0,0,0,5358,447,1,0,0,0,5359,5360,5,141,0,0,5360, - 5362,5,1148,0,0,5361,5359,1,0,0,0,5361,5362,1,0,0,0,5362,5366,1, - 0,0,0,5363,5364,5,145,0,0,5364,5365,5,35,0,0,5365,5367,5,551,0,0, - 5366,5363,1,0,0,0,5366,5367,1,0,0,0,5367,449,1,0,0,0,5368,5376,3, - 582,291,0,5369,5373,7,67,0,0,5370,5374,5,1148,0,0,5371,5372,5,991, - 0,0,5372,5374,5,551,0,0,5373,5370,1,0,0,0,5373,5371,1,0,0,0,5374, - 5375,1,0,0,0,5375,5377,3,448,224,0,5376,5369,1,0,0,0,5376,5377,1, - 0,0,0,5377,5383,1,0,0,0,5378,5379,3,582,291,0,5379,5380,5,187,0, - 0,5380,5381,3,682,341,0,5381,5383,1,0,0,0,5382,5368,1,0,0,0,5382, - 5378,1,0,0,0,5383,451,1,0,0,0,5384,5393,5,167,0,0,5385,5393,5,680, - 0,0,5386,5387,5,358,0,0,5387,5393,5,1148,0,0,5388,5389,5,465,0,0, - 5389,5393,5,1148,0,0,5390,5391,5,640,0,0,5391,5393,5,1148,0,0,5392, - 5384,1,0,0,0,5392,5385,1,0,0,0,5392,5386,1,0,0,0,5392,5388,1,0,0, - 0,5392,5390,1,0,0,0,5393,453,1,0,0,0,5394,5395,5,499,0,0,5395,5403, - 3,590,295,0,5396,5397,5,502,0,0,5397,5403,3,590,295,0,5398,5399, - 5,498,0,0,5399,5403,3,590,295,0,5400,5401,5,503,0,0,5401,5403,3, - 590,295,0,5402,5394,1,0,0,0,5402,5396,1,0,0,0,5402,5398,1,0,0,0, - 5402,5400,1,0,0,0,5403,455,1,0,0,0,5404,5405,5,551,0,0,5405,5412, - 5,420,0,0,5406,5413,5,42,0,0,5407,5413,5,519,0,0,5408,5409,5,86, - 0,0,5409,5410,3,590,295,0,5410,5411,5,691,0,0,5411,5413,1,0,0,0, - 5412,5406,1,0,0,0,5412,5407,1,0,0,0,5412,5408,1,0,0,0,5412,5413, - 1,0,0,0,5413,5443,1,0,0,0,5414,5415,5,551,0,0,5415,5418,5,445,0, - 0,5416,5419,5,42,0,0,5417,5419,3,590,295,0,5418,5416,1,0,0,0,5418, - 5417,1,0,0,0,5419,5443,1,0,0,0,5420,5421,5,551,0,0,5421,5422,5,595, - 0,0,5422,5427,5,86,0,0,5423,5428,5,42,0,0,5424,5425,3,590,295,0, - 5425,5426,5,691,0,0,5426,5428,1,0,0,0,5427,5423,1,0,0,0,5427,5424, - 1,0,0,0,5428,5443,1,0,0,0,5429,5430,5,551,0,0,5430,5431,5,142,0, - 0,5431,5433,5,35,0,0,5432,5434,7,68,0,0,5433,5432,1,0,0,0,5433,5434, - 1,0,0,0,5434,5443,1,0,0,0,5435,5436,5,424,0,0,5436,5443,3,590,295, - 0,5437,5440,5,552,0,0,5438,5441,3,590,295,0,5439,5441,5,657,0,0, - 5440,5438,1,0,0,0,5440,5439,1,0,0,0,5441,5443,1,0,0,0,5442,5404, - 1,0,0,0,5442,5414,1,0,0,0,5442,5420,1,0,0,0,5442,5429,1,0,0,0,5442, - 5435,1,0,0,0,5442,5437,1,0,0,0,5443,457,1,0,0,0,5444,5445,5,332, - 0,0,5445,5446,7,69,0,0,5446,459,1,0,0,0,5447,5452,3,462,231,0,5448, - 5449,5,1133,0,0,5449,5450,3,616,308,0,5450,5451,5,1134,0,0,5451, - 5453,1,0,0,0,5452,5448,1,0,0,0,5452,5453,1,0,0,0,5453,461,1,0,0, - 0,5454,5456,5,6,0,0,5455,5457,5,725,0,0,5456,5455,1,0,0,0,5456,5457, - 1,0,0,0,5457,5548,1,0,0,0,5458,5460,5,7,0,0,5459,5461,5,733,0,0, - 5460,5459,1,0,0,0,5460,5461,1,0,0,0,5461,5548,1,0,0,0,5462,5470, - 5,33,0,0,5463,5464,5,649,0,0,5464,5471,5,742,0,0,5465,5471,5,733, - 0,0,5466,5471,5,671,0,0,5467,5471,5,665,0,0,5468,5471,5,647,0,0, - 5469,5471,5,596,0,0,5470,5463,1,0,0,0,5470,5465,1,0,0,0,5470,5466, - 1,0,0,0,5470,5467,1,0,0,0,5470,5468,1,0,0,0,5470,5469,1,0,0,0,5470, - 5471,1,0,0,0,5471,5548,1,0,0,0,5472,5548,5,44,0,0,5473,5475,5,51, - 0,0,5474,5476,5,596,0,0,5475,5474,1,0,0,0,5475,5476,1,0,0,0,5476, - 5548,1,0,0,0,5477,5548,5,415,0,0,5478,5548,5,708,0,0,5479,5548,5, - 709,0,0,5480,5481,5,72,0,0,5481,5548,5,120,0,0,5482,5548,5,81,0, - 0,5483,5548,5,85,0,0,5484,5485,5,103,0,0,5485,5548,5,742,0,0,5486, - 5548,5,726,0,0,5487,5548,5,566,0,0,5488,5548,5,136,0,0,5489,5548, - 5,727,0,0,5490,5491,5,588,0,0,5491,5548,7,70,0,0,5492,5548,5,152, - 0,0,5493,5494,5,155,0,0,5494,5548,7,71,0,0,5495,5548,5,739,0,0,5496, - 5548,5,740,0,0,5497,5548,5,177,0,0,5498,5548,5,184,0,0,5499,5548, - 5,185,0,0,5500,5548,5,698,0,0,5501,5548,5,699,0,0,5502,5548,5,700, - 0,0,5503,5548,5,701,0,0,5504,5548,5,702,0,0,5505,5548,5,703,0,0, - 5506,5548,5,704,0,0,5507,5548,5,705,0,0,5508,5548,5,706,0,0,5509, - 5548,5,707,0,0,5510,5548,5,710,0,0,5511,5548,5,711,0,0,5512,5548, - 5,712,0,0,5513,5548,5,713,0,0,5514,5548,5,714,0,0,5515,5548,5,715, - 0,0,5516,5548,5,716,0,0,5517,5548,5,717,0,0,5518,5548,5,718,0,0, - 5519,5548,5,719,0,0,5520,5548,5,722,0,0,5521,5548,5,723,0,0,5522, - 5548,5,724,0,0,5523,5548,5,728,0,0,5524,5548,5,729,0,0,5525,5548, - 5,730,0,0,5526,5548,5,731,0,0,5527,5548,5,732,0,0,5528,5548,5,735, - 0,0,5529,5548,5,736,0,0,5530,5548,5,737,0,0,5531,5548,5,158,0,0, - 5532,5548,5,738,0,0,5533,5548,5,1077,0,0,5534,5548,5,741,0,0,5535, - 5548,5,743,0,0,5536,5548,5,1088,0,0,5537,5548,5,744,0,0,5538,5548, - 5,745,0,0,5539,5540,5,102,0,0,5540,5541,5,68,0,0,5541,5548,5,734, - 0,0,5542,5543,5,152,0,0,5543,5544,5,87,0,0,5544,5548,5,734,0,0,5545, - 5546,5,720,0,0,5546,5548,5,721,0,0,5547,5454,1,0,0,0,5547,5458,1, - 0,0,0,5547,5462,1,0,0,0,5547,5472,1,0,0,0,5547,5473,1,0,0,0,5547, - 5477,1,0,0,0,5547,5478,1,0,0,0,5547,5479,1,0,0,0,5547,5480,1,0,0, - 0,5547,5482,1,0,0,0,5547,5483,1,0,0,0,5547,5484,1,0,0,0,5547,5486, - 1,0,0,0,5547,5487,1,0,0,0,5547,5488,1,0,0,0,5547,5489,1,0,0,0,5547, - 5490,1,0,0,0,5547,5492,1,0,0,0,5547,5493,1,0,0,0,5547,5495,1,0,0, - 0,5547,5496,1,0,0,0,5547,5497,1,0,0,0,5547,5498,1,0,0,0,5547,5499, - 1,0,0,0,5547,5500,1,0,0,0,5547,5501,1,0,0,0,5547,5502,1,0,0,0,5547, - 5503,1,0,0,0,5547,5504,1,0,0,0,5547,5505,1,0,0,0,5547,5506,1,0,0, - 0,5547,5507,1,0,0,0,5547,5508,1,0,0,0,5547,5509,1,0,0,0,5547,5510, - 1,0,0,0,5547,5511,1,0,0,0,5547,5512,1,0,0,0,5547,5513,1,0,0,0,5547, - 5514,1,0,0,0,5547,5515,1,0,0,0,5547,5516,1,0,0,0,5547,5517,1,0,0, - 0,5547,5518,1,0,0,0,5547,5519,1,0,0,0,5547,5520,1,0,0,0,5547,5521, - 1,0,0,0,5547,5522,1,0,0,0,5547,5523,1,0,0,0,5547,5524,1,0,0,0,5547, - 5525,1,0,0,0,5547,5526,1,0,0,0,5547,5527,1,0,0,0,5547,5528,1,0,0, - 0,5547,5529,1,0,0,0,5547,5530,1,0,0,0,5547,5531,1,0,0,0,5547,5532, - 1,0,0,0,5547,5533,1,0,0,0,5547,5534,1,0,0,0,5547,5535,1,0,0,0,5547, - 5536,1,0,0,0,5547,5537,1,0,0,0,5547,5538,1,0,0,0,5547,5539,1,0,0, - 0,5547,5542,1,0,0,0,5547,5545,1,0,0,0,5548,463,1,0,0,0,5549,5566, - 5,1117,0,0,5550,5551,5,1117,0,0,5551,5552,5,1132,0,0,5552,5566,5, - 1117,0,0,5553,5554,3,584,292,0,5554,5555,5,1132,0,0,5555,5556,5, - 1117,0,0,5556,5566,1,0,0,0,5557,5558,3,584,292,0,5558,5559,5,1132, - 0,0,5559,5560,3,584,292,0,5560,5566,1,0,0,0,5561,5562,3,584,292, - 0,5562,5563,3,588,294,0,5563,5566,1,0,0,0,5564,5566,3,584,292,0, - 5565,5549,1,0,0,0,5565,5550,1,0,0,0,5565,5553,1,0,0,0,5565,5557, - 1,0,0,0,5565,5561,1,0,0,0,5565,5564,1,0,0,0,5566,465,1,0,0,0,5567, - 5568,3,564,282,0,5568,5569,5,175,0,0,5569,5570,3,564,282,0,5570, - 467,1,0,0,0,5571,5573,5,9,0,0,5572,5574,7,72,0,0,5573,5572,1,0,0, - 0,5573,5574,1,0,0,0,5574,5575,1,0,0,0,5575,5576,7,54,0,0,5576,5594, - 3,620,310,0,5577,5578,5,184,0,0,5578,5579,5,76,0,0,5579,5580,5,118, - 0,0,5580,5585,3,556,278,0,5581,5582,5,1135,0,0,5582,5584,3,556,278, - 0,5583,5581,1,0,0,0,5584,5587,1,0,0,0,5585,5583,1,0,0,0,5585,5586, - 1,0,0,0,5586,5592,1,0,0,0,5587,5585,1,0,0,0,5588,5589,5,192,0,0, - 5589,5590,3,590,295,0,5590,5591,5,18,0,0,5591,5593,1,0,0,0,5592, - 5588,1,0,0,0,5592,5593,1,0,0,0,5593,5595,1,0,0,0,5594,5577,1,0,0, - 0,5594,5595,1,0,0,0,5595,5607,1,0,0,0,5596,5597,5,51,0,0,5597,5598, - 5,76,0,0,5598,5599,5,118,0,0,5599,5604,3,556,278,0,5600,5601,5,1135, - 0,0,5601,5603,3,556,278,0,5602,5600,1,0,0,0,5603,5606,1,0,0,0,5604, - 5602,1,0,0,0,5604,5605,1,0,0,0,5605,5608,1,0,0,0,5606,5604,1,0,0, - 0,5607,5596,1,0,0,0,5607,5608,1,0,0,0,5608,469,1,0,0,0,5609,5610, - 5,26,0,0,5610,5611,5,172,0,0,5611,5615,3,620,310,0,5612,5614,3,478, - 239,0,5613,5612,1,0,0,0,5614,5617,1,0,0,0,5615,5613,1,0,0,0,5615, - 5616,1,0,0,0,5616,471,1,0,0,0,5617,5615,1,0,0,0,5618,5619,5,356, - 0,0,5619,5620,5,172,0,0,5620,5622,3,620,310,0,5621,5623,7,73,0,0, - 5622,5621,1,0,0,0,5622,5623,1,0,0,0,5623,473,1,0,0,0,5624,5626,5, - 119,0,0,5625,5627,7,72,0,0,5626,5625,1,0,0,0,5626,5627,1,0,0,0,5627, - 5628,1,0,0,0,5628,5629,7,54,0,0,5629,5630,3,620,310,0,5630,475,1, - 0,0,0,5631,5633,5,580,0,0,5632,5634,7,72,0,0,5633,5632,1,0,0,0,5633, - 5634,1,0,0,0,5634,5635,1,0,0,0,5635,5636,5,172,0,0,5636,5638,3,620, - 310,0,5637,5639,5,568,0,0,5638,5637,1,0,0,0,5638,5639,1,0,0,0,5639, - 5641,1,0,0,0,5640,5642,5,422,0,0,5641,5640,1,0,0,0,5641,5642,1,0, - 0,0,5642,5644,1,0,0,0,5643,5645,5,666,0,0,5644,5643,1,0,0,0,5644, - 5645,1,0,0,0,5645,477,1,0,0,0,5646,5647,5,65,0,0,5647,5654,5,664, - 0,0,5648,5654,5,568,0,0,5649,5654,5,425,0,0,5650,5654,5,504,0,0, - 5651,5654,5,422,0,0,5652,5654,5,354,0,0,5653,5646,1,0,0,0,5653,5648, - 1,0,0,0,5653,5649,1,0,0,0,5653,5650,1,0,0,0,5653,5651,1,0,0,0,5653, - 5652,1,0,0,0,5654,479,1,0,0,0,5655,5657,5,33,0,0,5656,5658,5,335, - 0,0,5657,5656,1,0,0,0,5657,5658,1,0,0,0,5658,5659,1,0,0,0,5659,5661, - 5,437,0,0,5660,5662,3,642,321,0,5661,5660,1,0,0,0,5661,5662,1,0, - 0,0,5662,5663,1,0,0,0,5663,5664,3,584,292,0,5664,5665,5,594,0,0, - 5665,5666,7,74,0,0,5666,5667,5,619,0,0,5667,5668,5,1148,0,0,5668, - 481,1,0,0,0,5669,5670,5,456,0,0,5670,5671,5,554,0,0,5671,5672,3, - 584,292,0,5672,5673,5,619,0,0,5673,5674,5,1148,0,0,5674,483,1,0, - 0,0,5675,5676,5,661,0,0,5676,5677,5,554,0,0,5677,5678,3,584,292, - 0,5678,485,1,0,0,0,5679,5680,5,153,0,0,5680,5681,3,490,245,0,5681, - 5684,7,75,0,0,5682,5685,3,688,344,0,5683,5685,5,118,0,0,5684,5682, - 1,0,0,0,5684,5683,1,0,0,0,5685,5695,1,0,0,0,5686,5687,5,1135,0,0, - 5687,5688,3,490,245,0,5688,5691,7,75,0,0,5689,5692,3,688,344,0,5690, - 5692,5,118,0,0,5691,5689,1,0,0,0,5691,5690,1,0,0,0,5692,5694,1,0, - 0,0,5693,5686,1,0,0,0,5694,5697,1,0,0,0,5695,5693,1,0,0,0,5695,5696, - 1,0,0,0,5696,5732,1,0,0,0,5697,5695,1,0,0,0,5698,5699,5,153,0,0, - 5699,5702,3,58,29,0,5700,5703,3,568,284,0,5701,5703,5,42,0,0,5702, - 5700,1,0,0,0,5702,5701,1,0,0,0,5703,5732,1,0,0,0,5704,5705,5,153, - 0,0,5705,5712,5,517,0,0,5706,5709,3,568,284,0,5707,5708,5,27,0,0, - 5708,5710,3,570,285,0,5709,5707,1,0,0,0,5709,5710,1,0,0,0,5710,5713, - 1,0,0,0,5711,5713,5,42,0,0,5712,5706,1,0,0,0,5712,5711,1,0,0,0,5713, - 5732,1,0,0,0,5714,5732,3,442,221,0,5715,5732,3,316,158,0,5716,5732, - 3,314,157,0,5717,5718,5,153,0,0,5718,5719,3,548,274,0,5719,5720, - 7,75,0,0,5720,5728,3,688,344,0,5721,5722,5,1135,0,0,5722,5723,3, - 548,274,0,5723,5724,7,75,0,0,5724,5725,3,688,344,0,5725,5727,1,0, - 0,0,5726,5721,1,0,0,0,5727,5730,1,0,0,0,5728,5726,1,0,0,0,5728,5729, - 1,0,0,0,5729,5732,1,0,0,0,5730,5728,1,0,0,0,5731,5679,1,0,0,0,5731, - 5698,1,0,0,0,5731,5704,1,0,0,0,5731,5714,1,0,0,0,5731,5715,1,0,0, - 0,5731,5716,1,0,0,0,5731,5717,1,0,0,0,5732,487,1,0,0,0,5733,5734, - 5,155,0,0,5734,5735,7,56,0,0,5735,5887,5,476,0,0,5736,5737,5,155, - 0,0,5737,5738,7,76,0,0,5738,5741,5,416,0,0,5739,5740,5,80,0,0,5740, - 5742,5,1148,0,0,5741,5739,1,0,0,0,5741,5742,1,0,0,0,5742,5745,1, - 0,0,0,5743,5744,5,68,0,0,5744,5746,3,590,295,0,5745,5743,1,0,0,0, - 5745,5746,1,0,0,0,5746,5754,1,0,0,0,5747,5751,5,99,0,0,5748,5749, - 3,590,295,0,5749,5750,5,1135,0,0,5750,5752,1,0,0,0,5751,5748,1,0, - 0,0,5751,5752,1,0,0,0,5752,5753,1,0,0,0,5753,5755,3,590,295,0,5754, - 5747,1,0,0,0,5754,5755,1,0,0,0,5755,5887,1,0,0,0,5756,5757,5,155, - 0,0,5757,5759,3,492,246,0,5758,5760,3,494,247,0,5759,5758,1,0,0, - 0,5759,5760,1,0,0,0,5760,5887,1,0,0,0,5761,5763,5,155,0,0,5762,5764, - 5,436,0,0,5763,5762,1,0,0,0,5763,5764,1,0,0,0,5764,5765,1,0,0,0, - 5765,5766,7,41,0,0,5766,5767,7,77,0,0,5767,5770,3,550,275,0,5768, - 5769,7,77,0,0,5769,5771,3,584,292,0,5770,5768,1,0,0,0,5770,5771, - 1,0,0,0,5771,5773,1,0,0,0,5772,5774,3,494,247,0,5773,5772,1,0,0, - 0,5773,5774,1,0,0,0,5774,5887,1,0,0,0,5775,5776,5,155,0,0,5776,5777, - 5,33,0,0,5777,5779,7,0,0,0,5778,5780,3,642,321,0,5779,5778,1,0,0, - 0,5779,5780,1,0,0,0,5780,5781,1,0,0,0,5781,5887,3,584,292,0,5782, - 5783,5,155,0,0,5783,5784,5,33,0,0,5784,5785,7,78,0,0,5785,5887,3, - 548,274,0,5786,5787,5,155,0,0,5787,5788,5,33,0,0,5788,5789,5,665, - 0,0,5789,5887,3,564,282,0,5790,5791,5,155,0,0,5791,5792,5,409,0, - 0,5792,5793,3,572,286,0,5793,5794,7,79,0,0,5794,5887,1,0,0,0,5795, - 5796,5,155,0,0,5796,5887,3,496,248,0,5797,5798,5,155,0,0,5798,5806, - 7,80,0,0,5799,5803,5,99,0,0,5800,5801,3,590,295,0,5801,5802,5,1135, - 0,0,5802,5804,1,0,0,0,5803,5800,1,0,0,0,5803,5804,1,0,0,0,5804,5805, - 1,0,0,0,5805,5807,3,590,295,0,5806,5799,1,0,0,0,5806,5807,1,0,0, - 0,5807,5887,1,0,0,0,5808,5809,5,155,0,0,5809,5810,5,290,0,0,5810, - 5811,5,1133,0,0,5811,5812,5,1117,0,0,5812,5813,5,1134,0,0,5813,5887, - 7,80,0,0,5814,5815,5,155,0,0,5815,5818,3,498,249,0,5816,5817,7,77, - 0,0,5817,5819,3,584,292,0,5818,5816,1,0,0,0,5818,5819,1,0,0,0,5819, - 5821,1,0,0,0,5820,5822,3,494,247,0,5821,5820,1,0,0,0,5821,5822,1, - 0,0,0,5822,5887,1,0,0,0,5823,5824,5,155,0,0,5824,5825,7,81,0,0,5825, - 5826,5,364,0,0,5826,5887,3,548,274,0,5827,5828,5,155,0,0,5828,5831, - 5,440,0,0,5829,5830,5,65,0,0,5830,5832,3,564,282,0,5831,5829,1,0, - 0,0,5831,5832,1,0,0,0,5832,5887,1,0,0,0,5833,5834,5,155,0,0,5834, - 5835,7,82,0,0,5835,5836,7,77,0,0,5836,5839,3,550,275,0,5837,5838, - 7,77,0,0,5838,5840,3,584,292,0,5839,5837,1,0,0,0,5839,5840,1,0,0, - 0,5840,5843,1,0,0,0,5841,5842,5,190,0,0,5842,5844,3,688,344,0,5843, - 5841,1,0,0,0,5843,5844,1,0,0,0,5844,5887,1,0,0,0,5845,5846,5,155, - 0,0,5846,5847,5,539,0,0,5847,5850,5,742,0,0,5848,5849,7,77,0,0,5849, - 5851,3,584,292,0,5850,5848,1,0,0,0,5850,5851,1,0,0,0,5851,5853,1, - 0,0,0,5852,5854,3,494,247,0,5853,5852,1,0,0,0,5853,5854,1,0,0,0, - 5854,5887,1,0,0,0,5855,5856,5,155,0,0,5856,5857,5,564,0,0,5857,5862, - 3,500,250,0,5858,5859,5,1135,0,0,5859,5861,3,500,250,0,5860,5858, - 1,0,0,0,5861,5864,1,0,0,0,5862,5860,1,0,0,0,5862,5863,1,0,0,0,5863, - 5868,1,0,0,0,5864,5862,1,0,0,0,5865,5866,5,65,0,0,5866,5867,5,567, - 0,0,5867,5869,3,590,295,0,5868,5865,1,0,0,0,5868,5869,1,0,0,0,5869, - 5870,1,0,0,0,5870,5874,5,99,0,0,5871,5872,3,590,295,0,5872,5873, - 5,1135,0,0,5873,5875,1,0,0,0,5874,5871,1,0,0,0,5874,5875,1,0,0,0, - 5875,5876,1,0,0,0,5876,5877,3,590,295,0,5877,5887,1,0,0,0,5878,5879, - 5,155,0,0,5879,5880,5,614,0,0,5880,5884,5,634,0,0,5881,5882,5,65, - 0,0,5882,5883,5,355,0,0,5883,5885,5,1148,0,0,5884,5881,1,0,0,0,5884, - 5885,1,0,0,0,5885,5887,1,0,0,0,5886,5733,1,0,0,0,5886,5736,1,0,0, - 0,5886,5756,1,0,0,0,5886,5761,1,0,0,0,5886,5775,1,0,0,0,5886,5782, - 1,0,0,0,5886,5786,1,0,0,0,5886,5790,1,0,0,0,5886,5795,1,0,0,0,5886, - 5797,1,0,0,0,5886,5808,1,0,0,0,5886,5814,1,0,0,0,5886,5823,1,0,0, - 0,5886,5827,1,0,0,0,5886,5833,1,0,0,0,5886,5845,1,0,0,0,5886,5855, - 1,0,0,0,5886,5878,1,0,0,0,5887,489,1,0,0,0,5888,5899,5,1159,0,0, - 5889,5899,5,1160,0,0,5890,5891,5,1137,0,0,5891,5893,5,1137,0,0,5892, - 5890,1,0,0,0,5892,5893,1,0,0,0,5893,5894,1,0,0,0,5894,5896,7,83, - 0,0,5895,5892,1,0,0,0,5895,5896,1,0,0,0,5896,5897,1,0,0,0,5897,5899, - 3,584,292,0,5898,5888,1,0,0,0,5898,5889,1,0,0,0,5898,5895,1,0,0, - 0,5899,491,1,0,0,0,5900,5901,5,25,0,0,5901,5914,5,153,0,0,5902,5914, - 5,844,0,0,5903,5914,5,40,0,0,5904,5914,5,151,0,0,5905,5906,5,437, - 0,0,5906,5914,5,634,0,0,5907,5908,5,131,0,0,5908,5914,5,634,0,0, - 5909,5911,7,55,0,0,5910,5909,1,0,0,0,5910,5911,1,0,0,0,5911,5912, - 1,0,0,0,5912,5914,7,84,0,0,5913,5900,1,0,0,0,5913,5902,1,0,0,0,5913, - 5903,1,0,0,0,5913,5904,1,0,0,0,5913,5905,1,0,0,0,5913,5907,1,0,0, - 0,5913,5910,1,0,0,0,5914,493,1,0,0,0,5915,5916,5,98,0,0,5916,5920, - 5,1148,0,0,5917,5918,5,190,0,0,5918,5920,3,688,344,0,5919,5915,1, - 0,0,0,5919,5917,1,0,0,0,5920,495,1,0,0,0,5921,5923,5,636,0,0,5922, - 5921,1,0,0,0,5922,5923,1,0,0,0,5923,5924,1,0,0,0,5924,5939,5,410, - 0,0,5925,5926,5,477,0,0,5926,5939,5,634,0,0,5927,5939,5,556,0,0, - 5928,5939,5,725,0,0,5929,5931,5,436,0,0,5930,5929,1,0,0,0,5930,5931, - 1,0,0,0,5931,5932,1,0,0,0,5932,5939,5,563,0,0,5933,5939,5,565,0, - 0,5934,5935,5,614,0,0,5935,5939,5,447,0,0,5936,5939,5,339,0,0,5937, - 5939,5,383,0,0,5938,5922,1,0,0,0,5938,5925,1,0,0,0,5938,5927,1,0, - 0,0,5938,5928,1,0,0,0,5938,5930,1,0,0,0,5938,5933,1,0,0,0,5938,5934, - 1,0,0,0,5938,5936,1,0,0,0,5938,5937,1,0,0,0,5939,497,1,0,0,0,5940, - 5949,5,416,0,0,5941,5942,5,172,0,0,5942,5949,5,634,0,0,5943,5945, - 5,436,0,0,5944,5943,1,0,0,0,5944,5945,1,0,0,0,5945,5946,1,0,0,0, - 5946,5949,5,742,0,0,5947,5949,5,655,0,0,5948,5940,1,0,0,0,5948,5941, - 1,0,0,0,5948,5944,1,0,0,0,5948,5947,1,0,0,0,5949,499,1,0,0,0,5950, - 5963,5,6,0,0,5951,5952,5,347,0,0,5952,5963,5,461,0,0,5953,5954,5, - 382,0,0,5954,5963,5,645,0,0,5955,5963,5,385,0,0,5956,5963,5,463, - 0,0,5957,5963,5,792,0,0,5958,5959,5,544,0,0,5959,5963,5,426,0,0, - 5960,5963,5,621,0,0,5961,5963,5,644,0,0,5962,5950,1,0,0,0,5962,5951, - 1,0,0,0,5962,5953,1,0,0,0,5962,5955,1,0,0,0,5962,5956,1,0,0,0,5962, - 5957,1,0,0,0,5962,5958,1,0,0,0,5962,5960,1,0,0,0,5962,5961,1,0,0, - 0,5963,501,1,0,0,0,5964,5965,5,345,0,0,5965,5966,5,1148,0,0,5966, - 503,1,0,0,0,5967,5968,5,351,0,0,5968,5969,5,81,0,0,5969,5974,3,516, - 258,0,5970,5971,5,1135,0,0,5971,5973,3,516,258,0,5972,5970,1,0,0, - 0,5973,5976,1,0,0,0,5974,5972,1,0,0,0,5974,5975,1,0,0,0,5975,5984, - 1,0,0,0,5976,5974,1,0,0,0,5977,5978,5,129,0,0,5978,5981,5,1133,0, - 0,5979,5982,3,616,308,0,5980,5982,5,6,0,0,5981,5979,1,0,0,0,5981, - 5980,1,0,0,0,5982,5983,1,0,0,0,5983,5985,5,1134,0,0,5984,5977,1, - 0,0,0,5984,5985,1,0,0,0,5985,5986,1,0,0,0,5986,5987,5,80,0,0,5987, - 5988,3,584,292,0,5988,505,1,0,0,0,5989,5991,5,432,0,0,5990,5992, - 7,72,0,0,5991,5990,1,0,0,0,5991,5992,1,0,0,0,5992,5993,1,0,0,0,5993, - 5998,3,518,259,0,5994,5995,5,1135,0,0,5995,5997,3,518,259,0,5996, - 5994,1,0,0,0,5997,6000,1,0,0,0,5998,5996,1,0,0,0,5998,5999,1,0,0, - 0,5999,507,1,0,0,0,6000,5998,1,0,0,0,6001,6003,5,93,0,0,6002,6004, - 7,85,0,0,6003,6002,1,0,0,0,6003,6004,1,0,0,0,6004,6005,1,0,0,0,6005, - 6006,3,688,344,0,6006,509,1,0,0,0,6007,6008,5,102,0,0,6008,6009, - 5,81,0,0,6009,6010,5,87,0,0,6010,6011,5,351,0,0,6011,6016,3,522, - 261,0,6012,6013,5,1135,0,0,6013,6015,3,522,261,0,6014,6012,1,0,0, - 0,6015,6018,1,0,0,0,6016,6014,1,0,0,0,6016,6017,1,0,0,0,6017,511, - 1,0,0,0,6018,6016,1,0,0,0,6019,6020,5,589,0,0,6020,6021,5,567,0, - 0,6021,6022,5,351,0,0,6022,513,1,0,0,0,6023,6024,5,739,0,0,6024, - 515,1,0,0,0,6025,6033,3,550,275,0,6026,6028,7,20,0,0,6027,6026,1, - 0,0,0,6027,6028,1,0,0,0,6028,6029,1,0,0,0,6029,6030,5,1133,0,0,6030, - 6031,3,616,308,0,6031,6032,5,1134,0,0,6032,6034,1,0,0,0,6033,6027, - 1,0,0,0,6033,6034,1,0,0,0,6034,517,1,0,0,0,6035,6054,5,394,0,0,6036, - 6054,5,447,0,0,6037,6039,7,86,0,0,6038,6037,1,0,0,0,6038,6039,1, - 0,0,0,6039,6040,1,0,0,0,6040,6054,5,476,0,0,6041,6054,5,540,0,0, - 6042,6054,5,725,0,0,6043,6044,5,567,0,0,6044,6054,5,351,0,0,6045, - 6054,5,634,0,0,6046,6054,5,667,0,0,6047,6051,5,742,0,0,6048,6049, - 5,192,0,0,6049,6050,5,134,0,0,6050,6052,5,103,0,0,6051,6048,1,0, - 0,0,6051,6052,1,0,0,0,6052,6054,1,0,0,0,6053,6035,1,0,0,0,6053,6036, - 1,0,0,0,6053,6038,1,0,0,0,6053,6041,1,0,0,0,6053,6042,1,0,0,0,6053, - 6043,1,0,0,0,6053,6045,1,0,0,0,6053,6046,1,0,0,0,6053,6047,1,0,0, - 0,6054,6068,1,0,0,0,6055,6056,5,574,0,0,6056,6058,5,476,0,0,6057, - 6059,3,354,177,0,6058,6057,1,0,0,0,6058,6059,1,0,0,0,6059,6068,1, - 0,0,0,6060,6062,7,54,0,0,6061,6063,3,620,310,0,6062,6061,1,0,0,0, - 6062,6063,1,0,0,0,6063,6065,1,0,0,0,6064,6066,3,520,260,0,6065,6064, - 1,0,0,0,6065,6066,1,0,0,0,6066,6068,1,0,0,0,6067,6053,1,0,0,0,6067, - 6055,1,0,0,0,6067,6060,1,0,0,0,6068,519,1,0,0,0,6069,6070,5,192, - 0,0,6070,6071,5,134,0,0,6071,6075,5,103,0,0,6072,6073,5,65,0,0,6073, - 6075,5,421,0,0,6074,6069,1,0,0,0,6074,6072,1,0,0,0,6075,521,1,0, - 0,0,6076,6084,3,550,275,0,6077,6078,5,129,0,0,6078,6081,5,1133,0, - 0,6079,6082,3,616,308,0,6080,6082,5,6,0,0,6081,6079,1,0,0,0,6081, - 6080,1,0,0,0,6082,6083,1,0,0,0,6083,6085,5,1134,0,0,6084,6077,1, - 0,0,0,6084,6085,1,0,0,0,6085,6093,1,0,0,0,6086,6088,7,20,0,0,6087, - 6086,1,0,0,0,6087,6088,1,0,0,0,6088,6089,1,0,0,0,6089,6090,5,1133, - 0,0,6090,6091,3,616,308,0,6091,6092,5,1134,0,0,6092,6094,1,0,0,0, - 6093,6087,1,0,0,0,6093,6094,1,0,0,0,6094,6097,1,0,0,0,6095,6096, - 5,78,0,0,6096,6098,5,470,0,0,6097,6095,1,0,0,0,6097,6098,1,0,0,0, - 6098,523,1,0,0,0,6099,6100,7,87,0,0,6100,6103,3,550,275,0,6101,6104, - 3,584,292,0,6102,6104,5,1148,0,0,6103,6101,1,0,0,0,6103,6102,1,0, - 0,0,6103,6104,1,0,0,0,6104,525,1,0,0,0,6105,6109,7,87,0,0,6106,6107, - 7,88,0,0,6107,6108,5,1124,0,0,6108,6110,7,89,0,0,6109,6106,1,0,0, - 0,6109,6110,1,0,0,0,6110,6111,1,0,0,0,6111,6112,3,546,273,0,6112, - 527,1,0,0,0,6113,6114,5,444,0,0,6114,6115,5,1148,0,0,6115,529,1, - 0,0,0,6116,6117,5,186,0,0,6117,6118,3,584,292,0,6118,531,1,0,0,0, - 6119,6127,5,156,0,0,6120,6122,5,162,0,0,6121,6123,5,669,0,0,6122, - 6121,1,0,0,0,6122,6123,1,0,0,0,6123,6124,1,0,0,0,6124,6128,3,594, - 297,0,6125,6128,5,1156,0,0,6126,6128,5,1157,0,0,6127,6120,1,0,0, - 0,6127,6125,1,0,0,0,6127,6126,1,0,0,0,6128,6138,1,0,0,0,6129,6130, - 5,153,0,0,6130,6135,3,536,268,0,6131,6132,5,1135,0,0,6132,6134,3, - 536,268,0,6133,6131,1,0,0,0,6134,6137,1,0,0,0,6135,6133,1,0,0,0, - 6135,6136,1,0,0,0,6136,6139,1,0,0,0,6137,6135,1,0,0,0,6138,6129, - 1,0,0,0,6138,6139,1,0,0,0,6139,533,1,0,0,0,6140,6148,5,143,0,0,6141, - 6143,5,162,0,0,6142,6144,5,669,0,0,6143,6142,1,0,0,0,6143,6144,1, - 0,0,0,6144,6145,1,0,0,0,6145,6149,3,594,297,0,6146,6149,5,1156,0, - 0,6147,6149,5,1157,0,0,6148,6141,1,0,0,0,6148,6146,1,0,0,0,6148, - 6147,1,0,0,0,6148,6149,1,0,0,0,6149,6159,1,0,0,0,6150,6151,5,153, - 0,0,6151,6156,3,536,268,0,6152,6153,5,1135,0,0,6153,6155,3,536,268, - 0,6154,6152,1,0,0,0,6155,6158,1,0,0,0,6156,6154,1,0,0,0,6156,6157, - 1,0,0,0,6157,6160,1,0,0,0,6158,6156,1,0,0,0,6159,6150,1,0,0,0,6159, - 6160,1,0,0,0,6160,535,1,0,0,0,6161,6162,7,90,0,0,6162,6167,5,1124, - 0,0,6163,6168,3,594,297,0,6164,6168,5,1149,0,0,6165,6168,3,566,283, - 0,6166,6168,3,586,293,0,6167,6163,1,0,0,0,6167,6164,1,0,0,0,6167, - 6165,1,0,0,0,6167,6166,1,0,0,0,6168,537,1,0,0,0,6169,6171,5,192, - 0,0,6170,6172,5,571,0,0,6171,6170,1,0,0,0,6171,6172,1,0,0,0,6172, - 6173,1,0,0,0,6173,6178,3,48,24,0,6174,6175,5,1135,0,0,6175,6177, - 3,48,24,0,6176,6174,1,0,0,0,6177,6180,1,0,0,0,6178,6176,1,0,0,0, - 6178,6179,1,0,0,0,6179,539,1,0,0,0,6180,6178,1,0,0,0,6181,6182,5, - 172,0,0,6182,6184,3,550,275,0,6183,6185,3,228,114,0,6184,6183,1, - 0,0,0,6184,6185,1,0,0,0,6185,6187,1,0,0,0,6186,6188,3,292,146,0, - 6187,6186,1,0,0,0,6187,6188,1,0,0,0,6188,541,1,0,0,0,6189,6191,5, - 71,0,0,6190,6192,7,91,0,0,6191,6190,1,0,0,0,6191,6192,1,0,0,0,6192, - 6193,1,0,0,0,6193,6225,5,48,0,0,6194,6195,3,490,245,0,6195,6196, - 5,1124,0,0,6196,6204,7,92,0,0,6197,6198,5,1135,0,0,6198,6199,3,490, - 245,0,6199,6200,5,1124,0,0,6200,6201,7,92,0,0,6201,6203,1,0,0,0, - 6202,6197,1,0,0,0,6203,6206,1,0,0,0,6204,6202,1,0,0,0,6204,6205, - 1,0,0,0,6205,6226,1,0,0,0,6206,6204,1,0,0,0,6207,6210,5,29,0,0,6208, - 6211,3,590,295,0,6209,6211,3,490,245,0,6210,6208,1,0,0,0,6210,6209, - 1,0,0,0,6211,6212,1,0,0,0,6212,6213,3,490,245,0,6213,6214,5,1124, - 0,0,6214,6222,3,544,272,0,6215,6216,5,1135,0,0,6216,6217,3,490,245, - 0,6217,6218,5,1124,0,0,6218,6219,3,544,272,0,6219,6221,1,0,0,0,6220, - 6215,1,0,0,0,6221,6224,1,0,0,0,6222,6220,1,0,0,0,6222,6223,1,0,0, - 0,6223,6226,1,0,0,0,6224,6222,1,0,0,0,6225,6194,1,0,0,0,6225,6207, - 1,0,0,0,6226,543,1,0,0,0,6227,6228,7,93,0,0,6228,545,1,0,0,0,6229, - 6235,3,198,99,0,6230,6235,3,184,92,0,6231,6235,3,190,95,0,6232,6235, - 3,196,98,0,6233,6235,3,200,100,0,6234,6229,1,0,0,0,6234,6230,1,0, - 0,0,6234,6231,1,0,0,0,6234,6232,1,0,0,0,6234,6233,1,0,0,0,6235,6240, - 1,0,0,0,6236,6237,5,65,0,0,6237,6238,5,376,0,0,6238,6240,3,584,292, - 0,6239,6234,1,0,0,0,6239,6236,1,0,0,0,6240,547,1,0,0,0,6241,6245, - 3,584,292,0,6242,6246,5,1155,0,0,6243,6244,5,1132,0,0,6244,6246, - 3,584,292,0,6245,6242,1,0,0,0,6245,6243,1,0,0,0,6245,6246,1,0,0, - 0,6246,549,1,0,0,0,6247,6248,3,548,274,0,6248,551,1,0,0,0,6249,6254, - 3,550,275,0,6250,6251,5,1135,0,0,6251,6253,3,550,275,0,6252,6250, - 1,0,0,0,6253,6256,1,0,0,0,6254,6252,1,0,0,0,6254,6255,1,0,0,0,6255, - 553,1,0,0,0,6256,6254,1,0,0,0,6257,6260,3,564,282,0,6258,6260,3, - 584,292,0,6259,6257,1,0,0,0,6259,6258,1,0,0,0,6260,555,1,0,0,0,6261, - 6266,3,584,292,0,6262,6264,3,588,294,0,6263,6265,3,588,294,0,6264, - 6263,1,0,0,0,6264,6265,1,0,0,0,6265,6267,1,0,0,0,6266,6262,1,0,0, - 0,6266,6267,1,0,0,0,6267,6276,1,0,0,0,6268,6270,9,0,0,0,6269,6268, - 1,0,0,0,6269,6270,1,0,0,0,6270,6271,1,0,0,0,6271,6273,3,588,294, - 0,6272,6274,3,588,294,0,6273,6272,1,0,0,0,6273,6274,1,0,0,0,6274, - 6276,1,0,0,0,6275,6261,1,0,0,0,6275,6269,1,0,0,0,6276,557,1,0,0, - 0,6277,6280,3,584,292,0,6278,6280,5,1148,0,0,6279,6277,1,0,0,0,6279, - 6278,1,0,0,0,6280,6285,1,0,0,0,6281,6282,5,1133,0,0,6282,6283,3, - 590,295,0,6283,6284,5,1134,0,0,6284,6286,1,0,0,0,6285,6281,1,0,0, - 0,6285,6286,1,0,0,0,6286,6289,1,0,0,0,6287,6289,3,688,344,0,6288, - 6279,1,0,0,0,6288,6287,1,0,0,0,6289,6291,1,0,0,0,6290,6292,7,48, - 0,0,6291,6290,1,0,0,0,6291,6292,1,0,0,0,6292,559,1,0,0,0,6293,6298, - 5,1148,0,0,6294,6298,5,1156,0,0,6295,6298,5,697,0,0,6296,6298,3, - 718,359,0,6297,6293,1,0,0,0,6297,6294,1,0,0,0,6297,6295,1,0,0,0, - 6297,6296,1,0,0,0,6298,561,1,0,0,0,6299,6300,7,94,0,0,6300,563,1, - 0,0,0,6301,6307,3,560,280,0,6302,6303,3,560,280,0,6303,6304,3,562, - 281,0,6304,6307,1,0,0,0,6305,6307,3,60,30,0,6306,6301,1,0,0,0,6306, - 6302,1,0,0,0,6306,6305,1,0,0,0,6307,565,1,0,0,0,6308,6309,7,95,0, - 0,6309,567,1,0,0,0,6310,6315,5,226,0,0,6311,6315,3,708,354,0,6312, - 6315,5,1148,0,0,6313,6315,5,1145,0,0,6314,6310,1,0,0,0,6314,6311, - 1,0,0,0,6314,6312,1,0,0,0,6314,6313,1,0,0,0,6315,569,1,0,0,0,6316, - 6319,3,584,292,0,6317,6319,5,1148,0,0,6318,6316,1,0,0,0,6318,6317, - 1,0,0,0,6319,571,1,0,0,0,6320,6324,3,574,287,0,6321,6324,5,1156, - 0,0,6322,6324,5,1148,0,0,6323,6320,1,0,0,0,6323,6321,1,0,0,0,6323, - 6322,1,0,0,0,6324,573,1,0,0,0,6325,6326,7,96,0,0,6326,575,1,0,0, - 0,6327,6328,3,590,295,0,6328,6329,5,1121,0,0,6329,6330,3,590,295, - 0,6330,6331,5,1121,0,0,6331,6332,3,590,295,0,6332,6333,5,1121,0, - 0,6333,6334,3,590,295,0,6334,6335,5,1121,0,0,6335,6341,3,590,295, - 0,6336,6337,5,1144,0,0,6337,6338,3,590,295,0,6338,6339,5,1121,0, - 0,6339,6340,3,590,295,0,6340,6342,1,0,0,0,6341,6336,1,0,0,0,6342, - 6343,1,0,0,0,6343,6341,1,0,0,0,6343,6344,1,0,0,0,6344,577,1,0,0, - 0,6345,6352,3,580,290,0,6346,6347,5,1135,0,0,6347,6350,3,580,290, - 0,6348,6349,5,1135,0,0,6349,6351,3,590,295,0,6350,6348,1,0,0,0,6350, - 6351,1,0,0,0,6351,6353,1,0,0,0,6352,6346,1,0,0,0,6352,6353,1,0,0, - 0,6353,579,1,0,0,0,6354,6362,5,1148,0,0,6355,6362,5,1153,0,0,6356, - 6358,5,1150,0,0,6357,6356,1,0,0,0,6358,6359,1,0,0,0,6359,6357,1, - 0,0,0,6359,6360,1,0,0,0,6360,6362,1,0,0,0,6361,6354,1,0,0,0,6361, - 6355,1,0,0,0,6361,6357,1,0,0,0,6362,581,1,0,0,0,6363,6366,3,584, - 292,0,6364,6366,5,1148,0,0,6365,6363,1,0,0,0,6365,6364,1,0,0,0,6366, - 583,1,0,0,0,6367,6371,3,586,293,0,6368,6371,5,1145,0,0,6369,6371, - 5,1148,0,0,6370,6367,1,0,0,0,6370,6368,1,0,0,0,6370,6369,1,0,0,0, - 6371,585,1,0,0,0,6372,6382,5,1156,0,0,6373,6382,3,708,354,0,6374, - 6382,3,710,355,0,6375,6382,3,574,287,0,6376,6382,3,712,356,0,6377, - 6382,3,714,357,0,6378,6382,3,716,358,0,6379,6382,3,718,359,0,6380, - 6382,3,680,340,0,6381,6372,1,0,0,0,6381,6373,1,0,0,0,6381,6374,1, - 0,0,0,6381,6375,1,0,0,0,6381,6376,1,0,0,0,6381,6377,1,0,0,0,6381, - 6378,1,0,0,0,6381,6379,1,0,0,0,6381,6380,1,0,0,0,6382,587,1,0,0, - 0,6383,6387,5,1155,0,0,6384,6385,5,1132,0,0,6385,6387,3,584,292, - 0,6386,6383,1,0,0,0,6386,6384,1,0,0,0,6387,589,1,0,0,0,6388,6389, - 7,97,0,0,6389,591,1,0,0,0,6390,6393,5,1146,0,0,6391,6393,3,590,295, - 0,6392,6390,1,0,0,0,6392,6391,1,0,0,0,6393,593,1,0,0,0,6394,6396, - 5,1154,0,0,6395,6394,1,0,0,0,6395,6396,1,0,0,0,6396,6397,1,0,0,0, - 6397,6400,5,1148,0,0,6398,6400,5,1147,0,0,6399,6395,1,0,0,0,6399, - 6398,1,0,0,0,6400,6402,1,0,0,0,6401,6403,5,1148,0,0,6402,6401,1, - 0,0,0,6403,6404,1,0,0,0,6404,6402,1,0,0,0,6404,6405,1,0,0,0,6405, - 6418,1,0,0,0,6406,6408,5,1154,0,0,6407,6406,1,0,0,0,6407,6408,1, - 0,0,0,6408,6409,1,0,0,0,6409,6412,5,1148,0,0,6410,6412,5,1147,0, - 0,6411,6407,1,0,0,0,6411,6410,1,0,0,0,6412,6415,1,0,0,0,6413,6414, - 5,27,0,0,6414,6416,3,570,285,0,6415,6413,1,0,0,0,6415,6416,1,0,0, - 0,6416,6418,1,0,0,0,6417,6399,1,0,0,0,6417,6411,1,0,0,0,6418,595, - 1,0,0,0,6419,6420,7,98,0,0,6420,597,1,0,0,0,6421,6423,5,1154,0,0, - 6422,6421,1,0,0,0,6422,6423,1,0,0,0,6423,6424,1,0,0,0,6424,6425, - 5,1150,0,0,6425,599,1,0,0,0,6426,6428,5,114,0,0,6427,6426,1,0,0, - 0,6427,6428,1,0,0,0,6428,6429,1,0,0,0,6429,6430,7,99,0,0,6430,601, - 1,0,0,0,6431,6444,3,594,297,0,6432,6444,3,590,295,0,6433,6434,5, - 1121,0,0,6434,6444,3,590,295,0,6435,6444,3,598,299,0,6436,6444,3, - 596,298,0,6437,6444,5,1151,0,0,6438,6444,5,1153,0,0,6439,6441,5, - 114,0,0,6440,6439,1,0,0,0,6440,6441,1,0,0,0,6441,6442,1,0,0,0,6442, - 6444,7,99,0,0,6443,6431,1,0,0,0,6443,6432,1,0,0,0,6443,6433,1,0, - 0,0,6443,6435,1,0,0,0,6443,6436,1,0,0,0,6443,6437,1,0,0,0,6443,6438, - 1,0,0,0,6443,6440,1,0,0,0,6444,603,1,0,0,0,6445,6447,7,100,0,0,6446, - 6448,5,238,0,0,6447,6446,1,0,0,0,6447,6448,1,0,0,0,6448,6450,1,0, - 0,0,6449,6451,3,610,305,0,6450,6449,1,0,0,0,6450,6451,1,0,0,0,6451, - 6453,1,0,0,0,6452,6454,5,226,0,0,6453,6452,1,0,0,0,6453,6454,1,0, - 0,0,6454,6458,1,0,0,0,6455,6456,3,58,29,0,6456,6457,3,568,284,0, - 6457,6459,1,0,0,0,6458,6455,1,0,0,0,6458,6459,1,0,0,0,6459,6463, - 1,0,0,0,6460,6461,5,27,0,0,6461,6464,3,570,285,0,6462,6464,5,226, - 0,0,6463,6460,1,0,0,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0,6464,6572, - 1,0,0,0,6465,6466,5,225,0,0,6466,6467,7,101,0,0,6467,6469,5,238, - 0,0,6468,6470,3,610,305,0,6469,6468,1,0,0,0,6469,6470,1,0,0,0,6470, - 6472,1,0,0,0,6471,6473,5,226,0,0,6472,6471,1,0,0,0,6472,6473,1,0, - 0,0,6473,6572,1,0,0,0,6474,6475,5,225,0,0,6475,6477,7,102,0,0,6476, - 6478,3,610,305,0,6477,6476,1,0,0,0,6477,6478,1,0,0,0,6478,6480,1, - 0,0,0,6479,6481,5,226,0,0,6480,6479,1,0,0,0,6480,6481,1,0,0,0,6481, - 6572,1,0,0,0,6482,6483,5,518,0,0,6483,6485,5,223,0,0,6484,6486,3, - 610,305,0,6485,6484,1,0,0,0,6485,6486,1,0,0,0,6486,6488,1,0,0,0, - 6487,6489,5,226,0,0,6488,6487,1,0,0,0,6488,6489,1,0,0,0,6489,6572, - 1,0,0,0,6490,6492,7,103,0,0,6491,6493,3,610,305,0,6492,6491,1,0, - 0,0,6492,6493,1,0,0,0,6493,6497,1,0,0,0,6494,6496,7,104,0,0,6495, - 6494,1,0,0,0,6496,6499,1,0,0,0,6497,6495,1,0,0,0,6497,6498,1,0,0, - 0,6498,6572,1,0,0,0,6499,6497,1,0,0,0,6500,6502,5,208,0,0,6501,6503, - 3,612,306,0,6502,6501,1,0,0,0,6502,6503,1,0,0,0,6503,6507,1,0,0, - 0,6504,6506,7,104,0,0,6505,6504,1,0,0,0,6506,6509,1,0,0,0,6507,6505, - 1,0,0,0,6507,6508,1,0,0,0,6508,6572,1,0,0,0,6509,6507,1,0,0,0,6510, - 6512,5,209,0,0,6511,6513,5,210,0,0,6512,6511,1,0,0,0,6512,6513,1, - 0,0,0,6513,6515,1,0,0,0,6514,6516,3,612,306,0,6515,6514,1,0,0,0, - 6515,6516,1,0,0,0,6516,6520,1,0,0,0,6517,6519,7,104,0,0,6518,6517, - 1,0,0,0,6519,6522,1,0,0,0,6520,6518,1,0,0,0,6520,6521,1,0,0,0,6521, - 6572,1,0,0,0,6522,6520,1,0,0,0,6523,6525,7,105,0,0,6524,6526,3,614, - 307,0,6525,6524,1,0,0,0,6525,6526,1,0,0,0,6526,6530,1,0,0,0,6527, - 6529,7,104,0,0,6528,6527,1,0,0,0,6529,6532,1,0,0,0,6530,6528,1,0, - 0,0,6530,6531,1,0,0,0,6531,6572,1,0,0,0,6532,6530,1,0,0,0,6533,6572, - 7,106,0,0,6534,6536,7,107,0,0,6535,6537,3,610,305,0,6536,6535,1, - 0,0,0,6536,6537,1,0,0,0,6537,6572,1,0,0,0,6538,6539,7,108,0,0,6539, - 6541,3,606,303,0,6540,6542,5,226,0,0,6541,6540,1,0,0,0,6541,6542, - 1,0,0,0,6542,6546,1,0,0,0,6543,6544,3,58,29,0,6544,6545,3,568,284, - 0,6545,6547,1,0,0,0,6546,6543,1,0,0,0,6546,6547,1,0,0,0,6547,6572, - 1,0,0,0,6548,6551,7,109,0,0,6549,6550,5,1012,0,0,6550,6552,3,590, - 295,0,6551,6549,1,0,0,0,6551,6552,1,0,0,0,6552,6572,1,0,0,0,6553, - 6555,5,231,0,0,6554,6556,5,223,0,0,6555,6554,1,0,0,0,6555,6556,1, - 0,0,0,6556,6558,1,0,0,0,6557,6559,5,226,0,0,6558,6557,1,0,0,0,6558, - 6559,1,0,0,0,6559,6563,1,0,0,0,6560,6561,3,58,29,0,6561,6562,3,568, - 284,0,6562,6564,1,0,0,0,6563,6560,1,0,0,0,6563,6564,1,0,0,0,6564, - 6567,1,0,0,0,6565,6566,5,27,0,0,6566,6568,3,570,285,0,6567,6565, - 1,0,0,0,6567,6568,1,0,0,0,6568,6572,1,0,0,0,6569,6570,5,231,0,0, - 6570,6572,5,227,0,0,6571,6445,1,0,0,0,6571,6465,1,0,0,0,6571,6474, - 1,0,0,0,6571,6482,1,0,0,0,6571,6490,1,0,0,0,6571,6500,1,0,0,0,6571, - 6510,1,0,0,0,6571,6523,1,0,0,0,6571,6533,1,0,0,0,6571,6534,1,0,0, - 0,6571,6538,1,0,0,0,6571,6548,1,0,0,0,6571,6553,1,0,0,0,6571,6569, - 1,0,0,0,6572,605,1,0,0,0,6573,6574,5,1133,0,0,6574,6579,5,1148,0, - 0,6575,6576,5,1135,0,0,6576,6578,5,1148,0,0,6577,6575,1,0,0,0,6578, - 6581,1,0,0,0,6579,6577,1,0,0,0,6579,6580,1,0,0,0,6580,6582,1,0,0, - 0,6581,6579,1,0,0,0,6582,6583,5,1134,0,0,6583,607,1,0,0,0,6584,6586, - 7,110,0,0,6585,6587,3,610,305,0,6586,6585,1,0,0,0,6586,6587,1,0, - 0,0,6587,6607,1,0,0,0,6588,6590,5,222,0,0,6589,6591,3,610,305,0, - 6590,6589,1,0,0,0,6590,6591,1,0,0,0,6591,6595,1,0,0,0,6592,6593, - 3,58,29,0,6593,6594,3,568,284,0,6594,6596,1,0,0,0,6595,6592,1,0, - 0,0,6595,6596,1,0,0,0,6596,6607,1,0,0,0,6597,6607,7,111,0,0,6598, - 6600,7,112,0,0,6599,6601,3,614,307,0,6600,6599,1,0,0,0,6600,6601, - 1,0,0,0,6601,6607,1,0,0,0,6602,6604,7,113,0,0,6603,6605,7,114,0, - 0,6604,6603,1,0,0,0,6604,6605,1,0,0,0,6605,6607,1,0,0,0,6606,6584, - 1,0,0,0,6606,6588,1,0,0,0,6606,6597,1,0,0,0,6606,6598,1,0,0,0,6606, - 6602,1,0,0,0,6607,6609,1,0,0,0,6608,6610,5,11,0,0,6609,6608,1,0, - 0,0,6609,6610,1,0,0,0,6610,609,1,0,0,0,6611,6612,5,1133,0,0,6612, - 6613,3,590,295,0,6613,6614,5,1134,0,0,6614,611,1,0,0,0,6615,6616, - 5,1133,0,0,6616,6617,3,590,295,0,6617,6618,5,1135,0,0,6618,6619, - 3,590,295,0,6619,6620,5,1134,0,0,6620,613,1,0,0,0,6621,6622,5,1133, - 0,0,6622,6625,3,590,295,0,6623,6624,5,1135,0,0,6624,6626,3,590,295, - 0,6625,6623,1,0,0,0,6625,6626,1,0,0,0,6626,6627,1,0,0,0,6627,6628, - 5,1134,0,0,6628,615,1,0,0,0,6629,6634,3,584,292,0,6630,6631,5,1135, - 0,0,6631,6633,3,584,292,0,6632,6630,1,0,0,0,6633,6636,1,0,0,0,6634, - 6632,1,0,0,0,6634,6635,1,0,0,0,6635,617,1,0,0,0,6636,6634,1,0,0, - 0,6637,6642,3,556,278,0,6638,6639,5,1135,0,0,6639,6641,3,556,278, - 0,6640,6638,1,0,0,0,6641,6644,1,0,0,0,6642,6640,1,0,0,0,6642,6643, - 1,0,0,0,6643,619,1,0,0,0,6644,6642,1,0,0,0,6645,6650,3,550,275,0, - 6646,6647,5,1135,0,0,6647,6649,3,550,275,0,6648,6646,1,0,0,0,6649, - 6652,1,0,0,0,6650,6648,1,0,0,0,6650,6651,1,0,0,0,6651,621,1,0,0, - 0,6652,6650,1,0,0,0,6653,6654,5,1133,0,0,6654,6659,3,558,279,0,6655, - 6656,5,1135,0,0,6656,6658,3,558,279,0,6657,6655,1,0,0,0,6658,6661, - 1,0,0,0,6659,6657,1,0,0,0,6659,6660,1,0,0,0,6660,6662,1,0,0,0,6661, - 6659,1,0,0,0,6662,6663,5,1134,0,0,6663,623,1,0,0,0,6664,6669,3,688, - 344,0,6665,6666,5,1135,0,0,6666,6668,3,688,344,0,6667,6665,1,0,0, - 0,6668,6671,1,0,0,0,6669,6667,1,0,0,0,6669,6670,1,0,0,0,6670,625, - 1,0,0,0,6671,6669,1,0,0,0,6672,6677,3,638,319,0,6673,6674,5,1135, - 0,0,6674,6676,3,638,319,0,6675,6673,1,0,0,0,6676,6679,1,0,0,0,6677, - 6675,1,0,0,0,6677,6678,1,0,0,0,6678,627,1,0,0,0,6679,6677,1,0,0, - 0,6680,6685,3,602,301,0,6681,6682,5,1135,0,0,6682,6684,3,602,301, - 0,6683,6681,1,0,0,0,6684,6687,1,0,0,0,6685,6683,1,0,0,0,6685,6686, - 1,0,0,0,6686,629,1,0,0,0,6687,6685,1,0,0,0,6688,6693,5,1148,0,0, - 6689,6690,5,1135,0,0,6690,6692,5,1148,0,0,6691,6689,1,0,0,0,6692, - 6695,1,0,0,0,6693,6691,1,0,0,0,6693,6694,1,0,0,0,6694,631,1,0,0, - 0,6695,6693,1,0,0,0,6696,6701,5,1159,0,0,6697,6698,5,1135,0,0,6698, - 6700,5,1159,0,0,6699,6697,1,0,0,0,6700,6703,1,0,0,0,6701,6699,1, - 0,0,0,6701,6702,1,0,0,0,6702,633,1,0,0,0,6703,6701,1,0,0,0,6704, - 6731,5,116,0,0,6705,6706,5,23,0,0,6706,6707,5,1133,0,0,6707,6708, - 3,688,344,0,6708,6709,5,12,0,0,6709,6710,3,608,304,0,6710,6711,5, - 1134,0,0,6711,6731,1,0,0,0,6712,6714,3,694,347,0,6713,6712,1,0,0, - 0,6713,6714,1,0,0,0,6714,6715,1,0,0,0,6715,6731,3,602,301,0,6716, - 6720,3,636,318,0,6717,6718,5,118,0,0,6718,6719,5,184,0,0,6719,6721, - 3,636,318,0,6720,6717,1,0,0,0,6720,6721,1,0,0,0,6721,6731,1,0,0, - 0,6722,6723,5,1133,0,0,6723,6724,3,688,344,0,6724,6725,5,1134,0, - 0,6725,6731,1,0,0,0,6726,6727,5,1133,0,0,6727,6728,3,548,274,0,6728, - 6729,5,1134,0,0,6729,6731,1,0,0,0,6730,6704,1,0,0,0,6730,6705,1, - 0,0,0,6730,6713,1,0,0,0,6730,6716,1,0,0,0,6730,6722,1,0,0,0,6730, - 6726,1,0,0,0,6731,635,1,0,0,0,6732,6738,7,115,0,0,6733,6735,5,1133, - 0,0,6734,6736,3,590,295,0,6735,6734,1,0,0,0,6735,6736,1,0,0,0,6736, - 6737,1,0,0,0,6737,6739,5,1134,0,0,6738,6733,1,0,0,0,6738,6739,1, - 0,0,0,6739,6747,1,0,0,0,6740,6741,5,323,0,0,6741,6743,5,1133,0,0, - 6742,6744,3,590,295,0,6743,6742,1,0,0,0,6743,6744,1,0,0,0,6744,6745, - 1,0,0,0,6745,6747,5,1134,0,0,6746,6732,1,0,0,0,6746,6740,1,0,0,0, - 6747,637,1,0,0,0,6748,6751,3,688,344,0,6749,6751,5,42,0,0,6750,6748, - 1,0,0,0,6750,6749,1,0,0,0,6751,639,1,0,0,0,6752,6753,5,77,0,0,6753, - 6754,5,60,0,0,6754,641,1,0,0,0,6755,6756,5,77,0,0,6756,6757,5,114, - 0,0,6757,6758,5,60,0,0,6758,643,1,0,0,0,6759,6760,5,123,0,0,6760, - 6761,5,141,0,0,6761,645,1,0,0,0,6762,6763,5,674,0,0,6763,6766,3, - 590,295,0,6764,6766,5,527,0,0,6765,6762,1,0,0,0,6765,6764,1,0,0, - 0,6766,647,1,0,0,0,6767,6786,3,650,325,0,6768,6786,3,658,329,0,6769, - 6786,3,660,330,0,6770,6771,3,680,340,0,6771,6773,5,1133,0,0,6772, - 6774,3,684,342,0,6773,6772,1,0,0,0,6773,6774,1,0,0,0,6774,6775,1, - 0,0,0,6775,6776,5,1134,0,0,6776,6786,1,0,0,0,6777,6778,3,548,274, - 0,6778,6780,5,1133,0,0,6779,6781,3,684,342,0,6780,6779,1,0,0,0,6780, - 6781,1,0,0,0,6781,6782,1,0,0,0,6782,6783,5,1134,0,0,6783,6786,1, - 0,0,0,6784,6786,3,682,341,0,6785,6767,1,0,0,0,6785,6768,1,0,0,0, - 6785,6769,1,0,0,0,6785,6770,1,0,0,0,6785,6777,1,0,0,0,6785,6784, - 1,0,0,0,6786,649,1,0,0,0,6787,6790,7,116,0,0,6788,6789,5,1133,0, - 0,6789,6791,5,1134,0,0,6790,6788,1,0,0,0,6790,6791,1,0,0,0,6791, - 6967,1,0,0,0,6792,6967,3,60,30,0,6793,6794,5,32,0,0,6794,6795,5, - 1133,0,0,6795,6796,3,688,344,0,6796,6797,5,1135,0,0,6797,6798,3, - 608,304,0,6798,6799,5,1134,0,0,6799,6967,1,0,0,0,6800,6801,5,32, - 0,0,6801,6802,5,1133,0,0,6802,6803,3,688,344,0,6803,6804,5,187,0, - 0,6804,6805,3,568,284,0,6805,6806,5,1134,0,0,6806,6967,1,0,0,0,6807, - 6808,5,23,0,0,6808,6809,5,1133,0,0,6809,6810,3,688,344,0,6810,6811, - 5,12,0,0,6811,6812,3,608,304,0,6812,6813,5,1134,0,0,6813,6967,1, - 0,0,0,6814,6815,5,188,0,0,6815,6816,5,1133,0,0,6816,6817,3,556,278, - 0,6817,6818,5,1134,0,0,6818,6967,1,0,0,0,6819,6820,5,22,0,0,6820, - 6822,3,688,344,0,6821,6823,3,652,326,0,6822,6821,1,0,0,0,6823,6824, - 1,0,0,0,6824,6822,1,0,0,0,6824,6825,1,0,0,0,6825,6828,1,0,0,0,6826, - 6827,5,53,0,0,6827,6829,3,686,343,0,6828,6826,1,0,0,0,6828,6829, - 1,0,0,0,6829,6830,1,0,0,0,6830,6831,5,407,0,0,6831,6967,1,0,0,0, - 6832,6834,5,22,0,0,6833,6835,3,652,326,0,6834,6833,1,0,0,0,6835, - 6836,1,0,0,0,6836,6834,1,0,0,0,6836,6837,1,0,0,0,6837,6840,1,0,0, - 0,6838,6839,5,53,0,0,6839,6841,3,686,343,0,6840,6838,1,0,0,0,6840, - 6841,1,0,0,0,6841,6842,1,0,0,0,6842,6843,5,407,0,0,6843,6967,1,0, - 0,0,6844,6845,5,222,0,0,6845,6846,5,1133,0,0,6846,6849,3,684,342, - 0,6847,6848,5,187,0,0,6848,6850,3,568,284,0,6849,6847,1,0,0,0,6849, - 6850,1,0,0,0,6850,6851,1,0,0,0,6851,6852,5,1134,0,0,6852,6967,1, - 0,0,0,6853,6854,5,324,0,0,6854,6857,5,1133,0,0,6855,6858,3,594,297, - 0,6856,6858,3,688,344,0,6857,6855,1,0,0,0,6857,6856,1,0,0,0,6858, - 6859,1,0,0,0,6859,6862,5,80,0,0,6860,6863,3,594,297,0,6861,6863, - 3,688,344,0,6862,6860,1,0,0,0,6862,6861,1,0,0,0,6863,6864,1,0,0, - 0,6864,6865,5,1134,0,0,6865,6967,1,0,0,0,6866,6867,7,117,0,0,6867, - 6870,5,1133,0,0,6868,6871,3,594,297,0,6869,6871,3,688,344,0,6870, - 6868,1,0,0,0,6870,6869,1,0,0,0,6871,6872,1,0,0,0,6872,6875,5,68, - 0,0,6873,6876,3,590,295,0,6874,6876,3,688,344,0,6875,6873,1,0,0, - 0,6875,6874,1,0,0,0,6876,6882,1,0,0,0,6877,6880,5,65,0,0,6878,6881, - 3,590,295,0,6879,6881,3,688,344,0,6880,6878,1,0,0,0,6880,6879,1, - 0,0,0,6881,6883,1,0,0,0,6882,6877,1,0,0,0,6882,6883,1,0,0,0,6883, - 6884,1,0,0,0,6884,6885,5,1134,0,0,6885,6967,1,0,0,0,6886,6887,5, - 328,0,0,6887,6888,5,1133,0,0,6888,6891,7,118,0,0,6889,6892,3,594, - 297,0,6890,6892,3,688,344,0,6891,6889,1,0,0,0,6891,6890,1,0,0,0, - 6891,6892,1,0,0,0,6892,6893,1,0,0,0,6893,6896,5,68,0,0,6894,6897, - 3,594,297,0,6895,6897,3,688,344,0,6896,6894,1,0,0,0,6896,6895,1, - 0,0,0,6897,6898,1,0,0,0,6898,6899,5,1134,0,0,6899,6967,1,0,0,0,6900, - 6901,5,328,0,0,6901,6904,5,1133,0,0,6902,6905,3,594,297,0,6903,6905, - 3,688,344,0,6904,6902,1,0,0,0,6904,6903,1,0,0,0,6905,6906,1,0,0, - 0,6906,6909,5,68,0,0,6907,6910,3,594,297,0,6908,6910,3,688,344,0, - 6909,6907,1,0,0,0,6909,6908,1,0,0,0,6910,6911,1,0,0,0,6911,6912, - 5,1134,0,0,6912,6967,1,0,0,0,6913,6914,5,1103,0,0,6914,6917,5,1133, - 0,0,6915,6918,3,594,297,0,6916,6918,3,688,344,0,6917,6915,1,0,0, - 0,6917,6916,1,0,0,0,6918,6925,1,0,0,0,6919,6920,5,12,0,0,6920,6921, - 7,119,0,0,6921,6922,5,1133,0,0,6922,6923,3,590,295,0,6923,6924,5, - 1134,0,0,6924,6926,1,0,0,0,6925,6919,1,0,0,0,6925,6926,1,0,0,0,6926, - 6928,1,0,0,0,6927,6929,3,654,327,0,6928,6927,1,0,0,0,6928,6929,1, - 0,0,0,6929,6930,1,0,0,0,6930,6931,5,1134,0,0,6931,6967,1,0,0,0,6932, - 6933,5,321,0,0,6933,6934,5,1133,0,0,6934,6935,3,70,35,0,6935,6938, - 5,68,0,0,6936,6939,3,594,297,0,6937,6939,3,688,344,0,6938,6936,1, - 0,0,0,6938,6937,1,0,0,0,6939,6940,1,0,0,0,6940,6941,5,1134,0,0,6941, - 6967,1,0,0,0,6942,6943,5,900,0,0,6943,6944,5,1133,0,0,6944,6945, - 7,120,0,0,6945,6946,5,1135,0,0,6946,6947,3,594,297,0,6947,6948,5, - 1134,0,0,6948,6967,1,0,0,0,6949,6950,5,282,0,0,6950,6951,5,1133, - 0,0,6951,6952,3,688,344,0,6952,6953,5,1135,0,0,6953,6956,3,688,344, - 0,6954,6955,5,593,0,0,6955,6957,3,608,304,0,6956,6954,1,0,0,0,6956, - 6957,1,0,0,0,6957,6959,1,0,0,0,6958,6960,3,266,133,0,6959,6958,1, - 0,0,0,6959,6960,1,0,0,0,6960,6962,1,0,0,0,6961,6963,3,268,134,0, - 6962,6961,1,0,0,0,6962,6963,1,0,0,0,6963,6964,1,0,0,0,6964,6965, - 5,1134,0,0,6965,6967,1,0,0,0,6966,6787,1,0,0,0,6966,6792,1,0,0,0, - 6966,6793,1,0,0,0,6966,6800,1,0,0,0,6966,6807,1,0,0,0,6966,6814, - 1,0,0,0,6966,6819,1,0,0,0,6966,6832,1,0,0,0,6966,6844,1,0,0,0,6966, - 6853,1,0,0,0,6966,6866,1,0,0,0,6966,6886,1,0,0,0,6966,6900,1,0,0, - 0,6966,6913,1,0,0,0,6966,6932,1,0,0,0,6966,6942,1,0,0,0,6966,6949, - 1,0,0,0,6967,651,1,0,0,0,6968,6969,5,189,0,0,6969,6970,3,686,343, - 0,6970,6971,5,174,0,0,6971,6972,3,686,343,0,6972,653,1,0,0,0,6973, - 6974,5,472,0,0,6974,6979,3,656,328,0,6975,6976,5,1135,0,0,6976,6978, - 3,656,328,0,6977,6975,1,0,0,0,6978,6981,1,0,0,0,6979,6977,1,0,0, - 0,6979,6980,1,0,0,0,6980,6988,1,0,0,0,6981,6979,1,0,0,0,6982,6983, - 5,472,0,0,6983,6984,3,590,295,0,6984,6985,5,1121,0,0,6985,6986,3, - 590,295,0,6986,6988,1,0,0,0,6987,6973,1,0,0,0,6987,6982,1,0,0,0, - 6988,655,1,0,0,0,6989,6991,3,590,295,0,6990,6992,7,121,0,0,6991, - 6990,1,0,0,0,6991,6992,1,0,0,0,6992,657,1,0,0,0,6993,6994,7,122, - 0,0,6994,6996,5,1133,0,0,6995,6997,7,44,0,0,6996,6995,1,0,0,0,6996, - 6997,1,0,0,0,6997,6998,1,0,0,0,6998,6999,3,686,343,0,6999,7001,5, - 1134,0,0,7000,7002,3,662,331,0,7001,7000,1,0,0,0,7001,7002,1,0,0, - 0,7002,7053,1,0,0,0,7003,7004,5,290,0,0,7004,7012,5,1133,0,0,7005, - 7013,5,1117,0,0,7006,7008,5,6,0,0,7007,7006,1,0,0,0,7007,7008,1, - 0,0,0,7008,7009,1,0,0,0,7009,7013,3,686,343,0,7010,7011,5,49,0,0, - 7011,7013,3,684,342,0,7012,7005,1,0,0,0,7012,7007,1,0,0,0,7012,7010, - 1,0,0,0,7013,7014,1,0,0,0,7014,7016,5,1134,0,0,7015,7017,3,662,331, - 0,7016,7015,1,0,0,0,7016,7017,1,0,0,0,7017,7053,1,0,0,0,7018,7019, - 7,123,0,0,7019,7021,5,1133,0,0,7020,7022,5,6,0,0,7021,7020,1,0,0, - 0,7021,7022,1,0,0,0,7022,7023,1,0,0,0,7023,7024,3,686,343,0,7024, - 7026,5,1134,0,0,7025,7027,3,662,331,0,7026,7025,1,0,0,0,7026,7027, - 1,0,0,0,7027,7053,1,0,0,0,7028,7029,5,294,0,0,7029,7031,5,1133,0, - 0,7030,7032,5,49,0,0,7031,7030,1,0,0,0,7031,7032,1,0,0,0,7032,7033, - 1,0,0,0,7033,7044,3,684,342,0,7034,7035,5,124,0,0,7035,7036,5,19, - 0,0,7036,7041,3,230,115,0,7037,7038,5,1135,0,0,7038,7040,3,230,115, - 0,7039,7037,1,0,0,0,7040,7043,1,0,0,0,7041,7039,1,0,0,0,7041,7042, - 1,0,0,0,7042,7045,1,0,0,0,7043,7041,1,0,0,0,7044,7034,1,0,0,0,7044, - 7045,1,0,0,0,7045,7048,1,0,0,0,7046,7047,5,154,0,0,7047,7049,5,1148, - 0,0,7048,7046,1,0,0,0,7048,7049,1,0,0,0,7049,7050,1,0,0,0,7050,7051, - 5,1134,0,0,7051,7053,1,0,0,0,7052,6993,1,0,0,0,7052,7003,1,0,0,0, - 7052,7018,1,0,0,0,7052,7028,1,0,0,0,7053,659,1,0,0,0,7054,7055,7, - 124,0,0,7055,7056,5,1133,0,0,7056,7059,3,688,344,0,7057,7058,5,1135, - 0,0,7058,7060,3,590,295,0,7059,7057,1,0,0,0,7059,7060,1,0,0,0,7060, - 7063,1,0,0,0,7061,7062,5,1135,0,0,7062,7064,3,590,295,0,7063,7061, - 1,0,0,0,7063,7064,1,0,0,0,7064,7065,1,0,0,0,7065,7066,5,1134,0,0, - 7066,7067,3,662,331,0,7067,7093,1,0,0,0,7068,7069,7,125,0,0,7069, - 7070,5,1133,0,0,7070,7071,3,688,344,0,7071,7072,5,1134,0,0,7072, - 7073,3,662,331,0,7073,7093,1,0,0,0,7074,7075,7,126,0,0,7075,7076, - 5,1133,0,0,7076,7077,5,1134,0,0,7077,7093,3,662,331,0,7078,7079, - 5,301,0,0,7079,7080,5,1133,0,0,7080,7081,3,688,344,0,7081,7082,5, - 1135,0,0,7082,7083,3,590,295,0,7083,7084,5,1134,0,0,7084,7085,3, - 662,331,0,7085,7093,1,0,0,0,7086,7087,5,300,0,0,7087,7088,5,1133, - 0,0,7088,7089,3,590,295,0,7089,7090,5,1134,0,0,7090,7091,3,662,331, - 0,7091,7093,1,0,0,0,7092,7054,1,0,0,0,7092,7068,1,0,0,0,7092,7074, - 1,0,0,0,7092,7078,1,0,0,0,7092,7086,1,0,0,0,7093,661,1,0,0,0,7094, - 7100,5,128,0,0,7095,7096,5,1133,0,0,7096,7097,3,664,332,0,7097,7098, - 5,1134,0,0,7098,7101,1,0,0,0,7099,7101,3,666,333,0,7100,7095,1,0, - 0,0,7100,7099,1,0,0,0,7101,663,1,0,0,0,7102,7104,3,666,333,0,7103, - 7102,1,0,0,0,7103,7104,1,0,0,0,7104,7106,1,0,0,0,7105,7107,3,678, - 339,0,7106,7105,1,0,0,0,7106,7107,1,0,0,0,7107,7109,1,0,0,0,7108, - 7110,3,228,114,0,7109,7108,1,0,0,0,7109,7110,1,0,0,0,7110,7112,1, - 0,0,0,7111,7113,3,668,334,0,7112,7111,1,0,0,0,7112,7113,1,0,0,0, - 7113,665,1,0,0,0,7114,7115,3,584,292,0,7115,667,1,0,0,0,7116,7117, - 3,670,335,0,7117,7118,3,672,336,0,7118,669,1,0,0,0,7119,7120,7,127, - 0,0,7120,671,1,0,0,0,7121,7124,3,676,338,0,7122,7124,3,674,337,0, - 7123,7121,1,0,0,0,7123,7122,1,0,0,0,7124,673,1,0,0,0,7125,7126,5, - 16,0,0,7126,7127,3,676,338,0,7127,7128,5,10,0,0,7128,7129,3,676, - 338,0,7129,675,1,0,0,0,7130,7131,5,35,0,0,7131,7138,5,600,0,0,7132, - 7133,5,657,0,0,7133,7138,7,128,0,0,7134,7135,3,688,344,0,7135,7136, - 7,128,0,0,7136,7138,1,0,0,0,7137,7130,1,0,0,0,7137,7132,1,0,0,0, - 7137,7134,1,0,0,0,7138,677,1,0,0,0,7139,7140,5,129,0,0,7140,7141, - 5,19,0,0,7141,7146,3,688,344,0,7142,7143,5,1135,0,0,7143,7145,3, - 688,344,0,7144,7142,1,0,0,0,7145,7148,1,0,0,0,7146,7144,1,0,0,0, - 7146,7147,1,0,0,0,7147,679,1,0,0,0,7148,7146,1,0,0,0,7149,7174,3, - 720,360,0,7150,7174,5,747,0,0,7151,7174,5,317,0,0,7152,7174,5,313, - 0,0,7153,7174,5,314,0,0,7154,7174,5,315,0,0,7155,7174,5,318,0,0, - 7156,7174,5,319,0,0,7157,7174,5,320,0,0,7158,7174,5,77,0,0,7159, - 7174,5,85,0,0,7160,7174,5,316,0,0,7161,7174,5,322,0,0,7162,7174, - 5,508,0,0,7163,7174,5,323,0,0,7164,7174,5,140,0,0,7165,7174,5,141, - 0,0,7166,7174,5,325,0,0,7167,7174,5,326,0,0,7168,7174,5,327,0,0, - 7169,7174,5,328,0,0,7170,7174,5,329,0,0,7171,7174,5,330,0,0,7172, - 7174,5,331,0,0,7173,7149,1,0,0,0,7173,7150,1,0,0,0,7173,7151,1,0, - 0,0,7173,7152,1,0,0,0,7173,7153,1,0,0,0,7173,7154,1,0,0,0,7173,7155, - 1,0,0,0,7173,7156,1,0,0,0,7173,7157,1,0,0,0,7173,7158,1,0,0,0,7173, - 7159,1,0,0,0,7173,7160,1,0,0,0,7173,7161,1,0,0,0,7173,7162,1,0,0, - 0,7173,7163,1,0,0,0,7173,7164,1,0,0,0,7173,7165,1,0,0,0,7173,7166, - 1,0,0,0,7173,7167,1,0,0,0,7173,7168,1,0,0,0,7173,7169,1,0,0,0,7173, - 7170,1,0,0,0,7173,7171,1,0,0,0,7173,7172,1,0,0,0,7174,681,1,0,0, - 0,7175,7176,7,129,0,0,7176,7177,5,1133,0,0,7177,7178,3,686,343,0, - 7178,7179,5,1134,0,0,7179,683,1,0,0,0,7180,7185,3,602,301,0,7181, - 7185,3,556,278,0,7182,7185,3,648,324,0,7183,7185,3,688,344,0,7184, - 7180,1,0,0,0,7184,7181,1,0,0,0,7184,7182,1,0,0,0,7184,7183,1,0,0, - 0,7185,7195,1,0,0,0,7186,7191,5,1135,0,0,7187,7192,3,602,301,0,7188, - 7192,3,556,278,0,7189,7192,3,648,324,0,7190,7192,3,688,344,0,7191, - 7187,1,0,0,0,7191,7188,1,0,0,0,7191,7189,1,0,0,0,7191,7190,1,0,0, - 0,7192,7194,1,0,0,0,7193,7186,1,0,0,0,7194,7197,1,0,0,0,7195,7193, - 1,0,0,0,7195,7196,1,0,0,0,7196,685,1,0,0,0,7197,7195,1,0,0,0,7198, - 7203,3,602,301,0,7199,7203,3,556,278,0,7200,7203,3,648,324,0,7201, - 7203,3,688,344,0,7202,7198,1,0,0,0,7202,7199,1,0,0,0,7202,7200,1, - 0,0,0,7202,7201,1,0,0,0,7203,687,1,0,0,0,7204,7205,6,344,-1,0,7205, - 7206,7,130,0,0,7206,7216,3,688,344,4,7207,7208,3,690,345,0,7208, - 7210,5,88,0,0,7209,7211,5,114,0,0,7210,7209,1,0,0,0,7210,7211,1, - 0,0,0,7211,7212,1,0,0,0,7212,7213,7,131,0,0,7213,7216,1,0,0,0,7214, - 7216,3,690,345,0,7215,7204,1,0,0,0,7215,7207,1,0,0,0,7215,7214,1, - 0,0,0,7216,7223,1,0,0,0,7217,7218,10,3,0,0,7218,7219,3,698,349,0, - 7219,7220,3,688,344,4,7220,7222,1,0,0,0,7221,7217,1,0,0,0,7222,7225, - 1,0,0,0,7223,7221,1,0,0,0,7223,7224,1,0,0,0,7224,689,1,0,0,0,7225, - 7223,1,0,0,0,7226,7227,6,345,-1,0,7227,7228,3,692,346,0,7228,7293, - 1,0,0,0,7229,7230,10,8,0,0,7230,7231,3,696,348,0,7231,7232,3,690, - 345,9,7232,7292,1,0,0,0,7233,7235,10,6,0,0,7234,7236,5,114,0,0,7235, - 7234,1,0,0,0,7235,7236,1,0,0,0,7236,7237,1,0,0,0,7237,7238,5,16, - 0,0,7238,7239,3,690,345,0,7239,7240,5,10,0,0,7240,7241,3,690,345, - 7,7241,7292,1,0,0,0,7242,7243,10,5,0,0,7243,7244,5,620,0,0,7244, - 7245,5,98,0,0,7245,7292,3,690,345,6,7246,7248,10,3,0,0,7247,7249, - 5,114,0,0,7248,7247,1,0,0,0,7248,7249,1,0,0,0,7249,7250,1,0,0,0, - 7250,7251,7,132,0,0,7251,7292,3,690,345,4,7252,7254,10,10,0,0,7253, - 7255,5,114,0,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255,7256,1,0, - 0,0,7256,7257,5,80,0,0,7257,7260,5,1133,0,0,7258,7261,3,198,99,0, - 7259,7261,3,624,312,0,7260,7258,1,0,0,0,7260,7259,1,0,0,0,7261,7262, - 1,0,0,0,7262,7263,5,1134,0,0,7263,7292,1,0,0,0,7264,7265,10,9,0, - 0,7265,7266,5,88,0,0,7266,7292,3,600,300,0,7267,7268,10,7,0,0,7268, - 7269,3,696,348,0,7269,7270,7,133,0,0,7270,7271,5,1133,0,0,7271,7272, - 3,198,99,0,7272,7273,5,1134,0,0,7273,7292,1,0,0,0,7274,7276,10,4, - 0,0,7275,7277,5,114,0,0,7276,7275,1,0,0,0,7276,7277,1,0,0,0,7277, - 7278,1,0,0,0,7278,7279,5,98,0,0,7279,7282,3,690,345,0,7280,7281, - 5,413,0,0,7281,7283,5,1148,0,0,7282,7280,1,0,0,0,7282,7283,1,0,0, - 0,7283,7292,1,0,0,0,7284,7285,10,2,0,0,7285,7286,5,505,0,0,7286, - 7287,5,533,0,0,7287,7288,5,1133,0,0,7288,7289,3,690,345,0,7289,7290, - 5,1134,0,0,7290,7292,1,0,0,0,7291,7229,1,0,0,0,7291,7233,1,0,0,0, - 7291,7242,1,0,0,0,7291,7246,1,0,0,0,7291,7252,1,0,0,0,7291,7264, - 1,0,0,0,7291,7267,1,0,0,0,7291,7274,1,0,0,0,7291,7284,1,0,0,0,7292, - 7295,1,0,0,0,7293,7291,1,0,0,0,7293,7294,1,0,0,0,7294,691,1,0,0, - 0,7295,7293,1,0,0,0,7296,7297,6,346,-1,0,7297,7345,3,602,301,0,7298, - 7345,3,556,278,0,7299,7345,3,648,324,0,7300,7345,3,566,283,0,7301, - 7302,3,694,347,0,7302,7303,3,692,346,12,7303,7345,1,0,0,0,7304,7305, - 5,226,0,0,7305,7345,3,692,346,11,7306,7307,5,1159,0,0,7307,7308, - 5,1108,0,0,7308,7345,3,692,346,10,7309,7310,5,1133,0,0,7310,7315, - 3,688,344,0,7311,7312,5,1135,0,0,7312,7314,3,688,344,0,7313,7311, - 1,0,0,0,7314,7317,1,0,0,0,7315,7313,1,0,0,0,7315,7316,1,0,0,0,7316, - 7318,1,0,0,0,7317,7315,1,0,0,0,7318,7319,5,1134,0,0,7319,7345,1, - 0,0,0,7320,7321,5,600,0,0,7321,7322,5,1133,0,0,7322,7325,3,688,344, - 0,7323,7324,5,1135,0,0,7324,7326,3,688,344,0,7325,7323,1,0,0,0,7326, - 7327,1,0,0,0,7327,7325,1,0,0,0,7327,7328,1,0,0,0,7328,7329,1,0,0, - 0,7329,7330,5,1134,0,0,7330,7345,1,0,0,0,7331,7332,5,60,0,0,7332, - 7333,5,1133,0,0,7333,7334,3,198,99,0,7334,7335,5,1134,0,0,7335,7345, - 1,0,0,0,7336,7337,5,1133,0,0,7337,7338,3,198,99,0,7338,7339,5,1134, - 0,0,7339,7345,1,0,0,0,7340,7341,5,86,0,0,7341,7342,3,688,344,0,7342, - 7343,3,70,35,0,7343,7345,1,0,0,0,7344,7296,1,0,0,0,7344,7298,1,0, - 0,0,7344,7299,1,0,0,0,7344,7300,1,0,0,0,7344,7301,1,0,0,0,7344,7304, - 1,0,0,0,7344,7306,1,0,0,0,7344,7309,1,0,0,0,7344,7320,1,0,0,0,7344, - 7331,1,0,0,0,7344,7336,1,0,0,0,7344,7340,1,0,0,0,7345,7367,1,0,0, - 0,7346,7347,10,4,0,0,7347,7348,3,700,350,0,7348,7349,3,692,346,5, - 7349,7366,1,0,0,0,7350,7351,10,3,0,0,7351,7352,3,702,351,0,7352, - 7353,3,692,346,4,7353,7366,1,0,0,0,7354,7355,10,2,0,0,7355,7356, - 3,704,352,0,7356,7357,3,692,346,3,7357,7366,1,0,0,0,7358,7359,10, - 1,0,0,7359,7360,3,706,353,0,7360,7361,3,692,346,2,7361,7366,1,0, - 0,0,7362,7363,10,14,0,0,7363,7364,5,27,0,0,7364,7366,3,570,285,0, - 7365,7346,1,0,0,0,7365,7350,1,0,0,0,7365,7354,1,0,0,0,7365,7358, - 1,0,0,0,7365,7362,1,0,0,0,7366,7369,1,0,0,0,7367,7365,1,0,0,0,7367, - 7368,1,0,0,0,7368,693,1,0,0,0,7369,7367,1,0,0,0,7370,7371,7,134, - 0,0,7371,695,1,0,0,0,7372,7387,5,1124,0,0,7373,7387,5,1125,0,0,7374, - 7387,5,1126,0,0,7375,7376,5,1126,0,0,7376,7387,5,1124,0,0,7377,7378, - 5,1125,0,0,7378,7387,5,1124,0,0,7379,7380,5,1126,0,0,7380,7387,5, - 1125,0,0,7381,7382,5,1127,0,0,7382,7387,5,1124,0,0,7383,7384,5,1126, - 0,0,7384,7385,5,1124,0,0,7385,7387,5,1125,0,0,7386,7372,1,0,0,0, - 7386,7373,1,0,0,0,7386,7374,1,0,0,0,7386,7375,1,0,0,0,7386,7377, - 1,0,0,0,7386,7379,1,0,0,0,7386,7381,1,0,0,0,7386,7383,1,0,0,0,7387, - 697,1,0,0,0,7388,7396,5,10,0,0,7389,7390,5,1130,0,0,7390,7396,5, - 1130,0,0,7391,7396,5,194,0,0,7392,7396,5,123,0,0,7393,7394,5,1129, - 0,0,7394,7396,5,1129,0,0,7395,7388,1,0,0,0,7395,7389,1,0,0,0,7395, - 7391,1,0,0,0,7395,7392,1,0,0,0,7395,7393,1,0,0,0,7396,699,1,0,0, - 0,7397,7398,5,1126,0,0,7398,7405,5,1126,0,0,7399,7400,5,1125,0,0, - 7400,7405,5,1125,0,0,7401,7405,5,1130,0,0,7402,7405,5,1131,0,0,7403, - 7405,5,1129,0,0,7404,7397,1,0,0,0,7404,7399,1,0,0,0,7404,7401,1, - 0,0,0,7404,7402,1,0,0,0,7404,7403,1,0,0,0,7405,701,1,0,0,0,7406, - 7407,7,135,0,0,7407,703,1,0,0,0,7408,7409,7,136,0,0,7409,705,1,0, - 0,0,7410,7411,5,1121,0,0,7411,7416,5,1125,0,0,7412,7413,5,1121,0, - 0,7413,7414,5,1125,0,0,7414,7416,5,1125,0,0,7415,7410,1,0,0,0,7415, - 7412,1,0,0,0,7416,707,1,0,0,0,7417,7418,7,137,0,0,7418,709,1,0,0, - 0,7419,7420,7,138,0,0,7420,711,1,0,0,0,7421,7422,7,139,0,0,7422, - 713,1,0,0,0,7423,7424,7,140,0,0,7424,715,1,0,0,0,7425,7426,7,141, - 0,0,7426,717,1,0,0,0,7427,7428,7,142,0,0,7428,719,1,0,0,0,7429,7430, - 7,143,0,0,7430,721,1,0,0,0,1081,723,729,736,745,785,800,811,828, - 833,845,872,881,886,892,897,901,910,913,916,920,927,930,935,943, - 948,953,956,958,970,973,977,980,984,987,991,994,997,1001,1004,1008, - 1014,1020,1026,1033,1040,1043,1047,1052,1058,1067,1072,1077,1084, - 1101,1108,1112,1122,1126,1130,1134,1138,1143,1146,1149,1152,1155, - 1161,1165,1171,1176,1179,1182,1184,1195,1199,1202,1216,1219,1223, - 1226,1230,1233,1237,1240,1244,1247,1250,1254,1257,1261,1267,1271, - 1283,1289,1300,1305,1313,1321,1326,1329,1334,1342,1347,1353,1358, - 1362,1364,1367,1371,1375,1378,1382,1386,1390,1396,1399,1406,1411, - 1417,1424,1430,1438,1441,1448,1451,1453,1459,1465,1482,1489,1496, - 1508,1513,1516,1519,1532,1545,1550,1566,1574,1584,1587,1590,1596, - 1600,1603,1614,1617,1622,1635,1642,1649,1651,1658,1662,1664,1669, - 1672,1678,1683,1685,1689,1692,1695,1701,1706,1708,1713,1720,1722, - 1729,1734,1738,1741,1749,1757,1759,1769,1773,1776,1782,1787,1790, - 1796,1799,1803,1806,1810,1815,1820,1825,1829,1833,1837,1841,1845, - 1849,1854,1859,1864,1870,1875,1880,1885,1890,1895,1901,1906,1911, - 1916,1921,1926,1931,1936,1943,1948,1953,1958,1962,1967,1975,1980, - 1986,1998,2005,2007,2015,2020,2023,2031,2037,2041,2054,2066,2068, - 2071,2079,2085,2091,2104,2111,2120,2125,2136,2145,2150,2162,2169, - 2178,2183,2195,2202,2211,2216,2223,2232,2237,2239,2244,2252,2261, - 2265,2268,2272,2277,2283,2289,2294,2299,2304,2309,2312,2317,2322, - 2332,2336,2343,2348,2351,2356,2359,2363,2367,2375,2394,2397,2400, - 2404,2414,2427,2434,2437,2442,2449,2452,2455,2466,2469,2473,2481, - 2484,2489,2497,2503,2507,2511,2516,2521,2528,2532,2543,2551,2554, - 2560,2566,2568,2573,2576,2582,2588,2590,2594,2597,2600,2606,2612, - 2615,2621,2627,2629,2634,2642,2644,2653,2656,2659,2664,2666,2675, - 2678,2681,2686,2688,2697,2702,2710,2714,2722,2732,2737,2744,2748, - 2752,2771,2781,2787,2804,2808,2818,2823,2826,2835,2846,2854,2860, - 2870,2882,2889,2896,2911,2924,2930,2936,2942,2948,2954,2960,2965, - 2972,2979,2986,2991,2994,2996,3010,3017,3024,3030,3034,3038,3045, - 3048,3053,3060,3067,3071,3076,3083,3096,3099,3104,3109,3113,3119, - 3128,3137,3146,3149,3153,3162,3166,3169,3172,3178,3181,3185,3188, - 3192,3195,3203,3206,3217,3220,3225,3228,3233,3243,3248,3254,3256, - 3262,3264,3270,3278,3283,3291,3294,3299,3302,3307,3315,3323,3329, - 3337,3342,3350,3353,3357,3360,3368,3374,3383,3386,3390,3394,3398, - 3403,3407,3411,3413,3416,3419,3422,3428,3432,3435,3438,3441,3444, - 3451,3453,3457,3462,3468,3473,3480,3486,3491,3494,3500,3504,3512, - 3516,3519,3522,3527,3530,3537,3541,3544,3548,3552,3555,3558,3563, - 3569,3573,3583,3589,3593,3599,3603,3609,3612,3624,3628,3632,3640, - 3644,3652,3655,3659,3662,3670,3675,3678,3681,3685,3688,3697,3702, - 3711,3716,3723,3730,3738,3744,3752,3755,3758,3765,3768,3775,3783, - 3789,3800,3803,3807,3813,3822,3827,3831,3837,3843,3845,3849,3858, - 3868,3878,3884,3889,3893,3896,3899,3902,3905,3911,3917,3920,3923, - 3926,3929,3932,3934,3940,3946,3949,3952,3955,3958,3961,3965,3971, - 3975,3983,3987,3990,3992,4005,4008,4015,4025,4028,4033,4035,4039, - 4047,4053,4062,4075,4079,4085,4094,4097,4101,4104,4108,4112,4115, - 4117,4125,4137,4143,4145,4151,4153,4155,4161,4169,4177,4181,4185, - 4194,4199,4219,4224,4230,4237,4242,4251,4254,4258,4262,4266,4269, - 4272,4275,4279,4283,4286,4289,4292,4299,4303,4318,4322,4334,4342, - 4352,4356,4359,4365,4368,4371,4380,4389,4399,4403,4413,4423,4431, - 4434,4443,4446,4450,4455,4459,4468,4471,4502,4505,4508,4564,4569, - 4597,4611,4618,4622,4628,4636,4638,4649,4659,4666,4672,4680,4685, - 4693,4701,4709,4717,4723,4728,4733,4738,4744,4746,4757,4762,4769, - 4771,4785,4791,4796,4801,4807,4814,4822,4830,4835,4841,4844,4852, - 4859,4868,4871,4888,4896,4904,4908,4915,4921,4929,4938,4944,4951, - 4958,4963,4966,4968,4974,4976,4980,4982,4989,4994,4998,5004,5013, - 5019,5026,5032,5038,5043,5046,5048,5054,5056,5060,5062,5069,5071, - 5076,5083,5092,5097,5106,5113,5118,5121,5123,5129,5131,5134,5142, - 5147,5152,5156,5162,5167,5171,5177,5179,5190,5193,5200,5203,5215, - 5221,5230,5239,5244,5253,5259,5270,5276,5281,5285,5291,5296,5300, - 5303,5315,5322,5327,5357,5361,5366,5373,5376,5382,5392,5402,5412, - 5418,5427,5433,5440,5442,5452,5456,5460,5470,5475,5547,5565,5573, - 5585,5592,5594,5604,5607,5615,5622,5626,5633,5638,5641,5644,5653, - 5657,5661,5684,5691,5695,5702,5709,5712,5728,5731,5741,5745,5751, - 5754,5759,5763,5770,5773,5779,5803,5806,5818,5821,5831,5839,5843, - 5850,5853,5862,5868,5874,5884,5886,5892,5895,5898,5910,5913,5919, - 5922,5930,5938,5944,5948,5962,5974,5981,5984,5991,5998,6003,6016, - 6027,6033,6038,6051,6053,6058,6062,6065,6067,6074,6081,6084,6087, - 6093,6097,6103,6109,6122,6127,6135,6138,6143,6148,6156,6159,6167, - 6171,6178,6184,6187,6191,6204,6210,6222,6225,6234,6239,6245,6254, - 6259,6264,6266,6269,6273,6275,6279,6285,6288,6291,6297,6306,6314, - 6318,6323,6343,6350,6352,6359,6361,6365,6370,6381,6386,6392,6395, - 6399,6404,6407,6411,6415,6417,6422,6427,6440,6443,6447,6450,6453, - 6458,6463,6469,6472,6477,6480,6485,6488,6492,6497,6502,6507,6512, - 6515,6520,6525,6530,6536,6541,6546,6551,6555,6558,6563,6567,6571, - 6579,6586,6590,6595,6600,6604,6606,6609,6625,6634,6642,6650,6659, - 6669,6677,6685,6693,6701,6713,6720,6730,6735,6738,6743,6746,6750, - 6765,6773,6780,6785,6790,6824,6828,6836,6840,6849,6857,6862,6870, - 6875,6880,6882,6891,6896,6904,6909,6917,6925,6928,6938,6956,6959, - 6962,6966,6979,6987,6991,6996,7001,7007,7012,7016,7021,7026,7031, - 7041,7044,7048,7052,7059,7063,7092,7100,7103,7106,7109,7112,7123, - 7137,7146,7173,7184,7191,7195,7202,7210,7215,7223,7235,7248,7254, - 7260,7276,7282,7291,7293,7315,7327,7344,7365,7367,7386,7395,7404, - 7415 + 1,340,1,340,1,340,3,340,7173,8,340,1,341,1,341,1,341,1,341,1,341, + 1,342,1,342,1,342,1,342,3,342,7184,8,342,1,342,1,342,1,342,1,342, + 1,342,3,342,7191,8,342,5,342,7193,8,342,10,342,12,342,7196,9,342, + 1,343,1,343,1,343,1,343,3,343,7202,8,343,1,344,1,344,1,344,1,344, + 1,344,1,344,3,344,7210,8,344,1,344,1,344,1,344,3,344,7215,8,344, + 1,344,1,344,1,344,1,344,5,344,7221,8,344,10,344,12,344,7224,9,344, + 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,3,345,7235, + 8,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, + 1,345,3,345,7248,8,345,1,345,1,345,1,345,1,345,3,345,7254,8,345, + 1,345,1,345,1,345,1,345,3,345,7260,8,345,1,345,1,345,1,345,1,345, + 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,3,345, + 7276,8,345,1,345,1,345,1,345,1,345,3,345,7282,8,345,1,345,1,345, + 1,345,1,345,1,345,1,345,1,345,5,345,7291,8,345,10,345,12,345,7294, + 9,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,1,346,5,346,7313,8,346,10,346, + 12,346,7316,9,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,4,346, + 7325,8,346,11,346,12,346,7326,1,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,3,346,7344, + 8,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,5,346,7365, + 8,346,10,346,12,346,7368,9,346,1,347,1,347,1,348,1,348,1,348,1,348, + 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,3,348, + 7386,8,348,1,349,1,349,1,349,1,349,1,349,1,349,1,349,3,349,7395, + 8,349,1,350,1,350,1,350,1,350,1,350,1,350,1,350,3,350,7404,8,350, + 1,351,1,351,1,352,1,352,1,353,1,353,1,353,1,353,1,353,3,353,7415, + 8,353,1,354,1,354,1,355,1,355,1,356,1,356,1,357,1,357,1,358,1,358, + 1,359,1,359,1,360,1,360,1,360,0,3,688,690,692,361,0,2,4,6,8,10,12, + 14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56, + 58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100, + 102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, + 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, + 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, + 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, + 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, + 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, + 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, + 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, + 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, + 390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420, + 422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452, + 454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484, + 486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516, + 518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548, + 550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580, + 582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612, + 614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644, + 646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676, + 678,680,682,684,686,688,690,692,694,696,698,700,702,704,706,708, + 710,712,714,716,718,720,0,144,2,0,39,39,150,150,2,0,531,531,537, + 537,3,0,69,69,159,159,181,181,3,0,42,42,384,384,454,454,4,0,42,42, + 419,419,529,529,611,611,2,0,514,514,1148,1148,2,0,78,78,141,141, + 2,0,15,15,334,334,3,0,44,44,85,85,184,184,2,0,434,434,558,558,3, + 0,506,506,650,650,658,658,2,0,392,392,460,460,2,0,352,352,474,474, + 2,0,42,42,1138,1139,2,0,350,350,443,443,2,0,459,459,673,673,3,0, + 80,80,84,84,125,125,3,0,42,42,402,402,431,431,3,0,42,42,398,398, + 792,792,2,0,637,637,672,672,2,0,81,81,91,91,3,0,436,436,548,548, + 613,613,2,0,69,69,159,159,1,0,356,357,1,0,1138,1139,2,0,1148,1148, + 1156,1156,2,0,81,81,388,388,2,0,545,545,1148,1148,2,0,546,546,1148, + 1148,3,0,430,430,469,469,521,521,7,0,42,42,370,370,372,372,402,402, + 431,431,573,573,1156,1156,2,0,514,514,530,530,1,0,1139,1140,2,0, + 5,5,51,51,4,0,42,42,384,384,454,454,458,458,2,0,26,26,30,30,2,0, + 12,12,175,175,2,0,192,192,677,677,2,0,21,21,144,144,3,0,43,43,75, + 75,106,106,2,0,106,106,374,374,2,0,365,365,427,427,2,0,101,101,601, + 601,2,0,43,43,106,106,2,0,6,6,49,49,2,0,188,188,669,669,4,0,430, + 430,469,469,520,520,562,562,2,0,430,430,520,520,2,0,13,13,45,45, + 3,0,66,66,78,78,186,186,2,0,34,34,83,83,2,0,97,97,148,148,2,0,6, + 6,49,50,1,0,626,627,2,0,172,172,742,742,2,0,439,439,609,609,2,0, + 226,226,477,477,5,0,107,107,482,483,485,485,489,497,575,575,4,0, + 479,480,484,484,486,487,576,576,3,0,108,108,478,478,488,488,2,0, + 462,462,628,628,2,0,622,622,624,624,2,0,344,344,629,629,2,0,90,90, + 591,591,2,0,51,51,390,390,3,0,31,31,61,61,179,179,3,0,131,131,172, + 172,437,437,3,0,12,12,19,19,187,187,2,0,42,42,121,121,2,0,103,103, + 182,182,2,0,360,360,614,614,2,0,40,40,671,671,2,0,115,115,474,474, + 2,0,422,422,568,568,4,0,206,206,208,208,214,214,638,638,2,0,1108, + 1108,1124,1124,2,0,345,345,577,577,2,0,68,68,80,80,6,0,131,131,172, + 172,177,177,415,415,437,437,671,671,2,0,513,513,634,634,2,0,412, + 412,675,675,2,0,131,131,437,437,3,0,81,81,92,92,452,452,3,0,439, + 439,474,474,609,609,2,0,634,634,670,670,2,0,376,376,567,567,6,0, + 226,226,409,409,411,411,438,438,574,574,615,615,2,0,45,46,62,62, + 3,0,422,422,550,550,885,885,2,0,466,466,652,652,10,0,359,359,367, + 367,378,380,387,387,507,507,515,515,639,639,646,646,836,836,1005, + 1005,2,0,35,35,168,168,2,0,117,117,996,996,11,0,359,359,367,367, + 378,380,387,387,507,507,515,515,592,592,639,639,646,646,836,836, + 1005,1005,2,0,1137,1137,1158,1159,1,0,1159,1160,2,0,375,375,787, + 798,3,0,1138,1140,1149,1149,1151,1151,2,0,63,63,178,178,2,0,116, + 116,1152,1152,5,0,25,25,222,224,231,231,233,236,518,518,2,0,25,25, + 222,222,2,0,25,25,222,223,1,0,196,207,3,0,183,183,195,195,612,612, + 2,0,211,216,431,431,6,0,217,217,228,228,230,230,232,232,239,239, + 348,349,4,0,218,221,226,227,229,229,346,346,2,0,153,153,237,237, + 2,0,466,466,803,811,3,0,211,211,226,226,518,518,6,0,200,200,206, + 206,209,209,217,218,220,221,466,466,1,0,214,215,2,0,183,183,612, + 612,2,0,200,200,206,206,2,0,315,316,322,322,3,0,150,150,313,316, + 331,331,1,0,325,326,3,0,17,17,95,95,176,176,2,0,222,222,226,226, + 2,0,217,218,220,220,3,0,13,13,45,45,994,994,3,0,286,286,298,299, + 309,309,3,0,287,289,305,308,310,312,2,0,295,295,297,297,2,0,293, + 293,296,296,2,0,291,292,302,304,2,0,133,133,601,601,2,0,433,433, + 559,559,2,0,535,535,551,551,2,0,114,114,1127,1127,3,0,63,63,178, + 178,662,662,2,0,137,137,149,149,3,0,6,6,337,337,618,618,3,0,114, + 114,1120,1121,1127,1128,2,0,1117,1119,1122,1123,1,0,1120,1121,2, + 0,226,226,746,786,1,0,799,802,5,0,708,709,725,727,733,733,739,740, + 742,742,1,0,689,696,3,0,217,221,234,234,237,237,59,0,11,11,14,14, + 18,18,29,29,35,35,37,37,42,42,48,48,55,55,57,57,59,59,73,73,79,79, + 94,94,117,117,121,121,124,124,130,130,158,158,168,168,239,239,283, + 290,294,294,298,299,305,312,332,385,387,403,405,405,407,432,434, + 450,452,458,460,521,523,523,527,544,547,558,560,589,591,592,594, + 606,608,636,638,672,674,675,677,682,684,688,697,697,699,707,710, + 712,717,718,720,724,728,732,734,734,736,738,741,741,743,745,792, + 792,836,836,875,875,1000,1000,1005,1005,1088,1088,23,0,39,39,97, + 97,148,148,150,150,217,219,221,221,251,282,290,293,295,297,300,304, + 324,324,459,459,673,673,689,696,736,736,803,803,806,835,837,874, + 876,999,1001,1004,1006,1087,1089,1107,1123,1123,8745,0,723,1,0,0, + 0,2,735,1,0,0,0,4,744,1,0,0,0,6,784,1,0,0,0,8,799,1,0,0,0,10,810, + 1,0,0,0,12,827,1,0,0,0,14,832,1,0,0,0,16,844,1,0,0,0,18,871,1,0, + 0,0,20,880,1,0,0,0,22,882,1,0,0,0,24,894,1,0,0,0,26,924,1,0,0,0, + 28,960,1,0,0,0,30,1011,1,0,0,0,32,1037,1,0,0,0,34,1073,1,0,0,0,36, + 1086,1,0,0,0,38,1183,1,0,0,0,40,1185,1,0,0,0,42,1203,1,0,0,0,44, + 1264,1,0,0,0,46,1286,1,0,0,0,48,1292,1,0,0,0,50,1314,1,0,0,0,52, + 1316,1,0,0,0,54,1318,1,0,0,0,56,1398,1,0,0,0,58,1405,1,0,0,0,60, + 1407,1,0,0,0,62,1412,1,0,0,0,64,1452,1,0,0,0,66,1458,1,0,0,0,68, + 1460,1,0,0,0,70,1481,1,0,0,0,72,1488,1,0,0,0,74,1490,1,0,0,0,76, + 1515,1,0,0,0,78,1518,1,0,0,0,80,1523,1,0,0,0,82,1549,1,0,0,0,84, + 1565,1,0,0,0,86,1567,1,0,0,0,88,1589,1,0,0,0,90,1591,1,0,0,0,92, + 1657,1,0,0,0,94,1728,1,0,0,0,96,1730,1,0,0,0,98,1758,1,0,0,0,100, + 1768,1,0,0,0,102,1798,1,0,0,0,104,1985,1,0,0,0,106,1987,1,0,0,0, + 108,1989,1,0,0,0,110,1992,1,0,0,0,112,2067,1,0,0,0,114,2090,1,0, + 0,0,116,2238,1,0,0,0,118,2243,1,0,0,0,120,2245,1,0,0,0,122,2255, + 1,0,0,0,124,2311,1,0,0,0,126,2331,1,0,0,0,128,2333,1,0,0,0,130,2368, + 1,0,0,0,132,2377,1,0,0,0,134,2384,1,0,0,0,136,2407,1,0,0,0,138,2416, + 1,0,0,0,140,2431,1,0,0,0,142,2456,1,0,0,0,144,2476,1,0,0,0,146,2859, + 1,0,0,0,148,2959,1,0,0,0,150,2961,1,0,0,0,152,2968,1,0,0,0,154,2975, + 1,0,0,0,156,2998,1,0,0,0,158,3006,1,0,0,0,160,3013,1,0,0,0,162,3020, + 1,0,0,0,164,3027,1,0,0,0,166,3039,1,0,0,0,168,3049,1,0,0,0,170,3056, + 1,0,0,0,172,3072,1,0,0,0,174,3118,1,0,0,0,176,3120,1,0,0,0,178,3130, + 1,0,0,0,180,3134,1,0,0,0,182,3140,1,0,0,0,184,3152,1,0,0,0,186,3154, + 1,0,0,0,188,3161,1,0,0,0,190,3163,1,0,0,0,192,3221,1,0,0,0,194,3295, + 1,0,0,0,196,3354,1,0,0,0,198,3452,1,0,0,0,200,3456,1,0,0,0,202,3458, + 1,0,0,0,204,3493,1,0,0,0,206,3495,1,0,0,0,208,3503,1,0,0,0,210,3511, + 1,0,0,0,212,3513,1,0,0,0,214,3549,1,0,0,0,216,3604,1,0,0,0,218,3613, + 1,0,0,0,220,3633,1,0,0,0,222,3645,1,0,0,0,224,3649,1,0,0,0,226,3682, + 1,0,0,0,228,3703,1,0,0,0,230,3713,1,0,0,0,232,3717,1,0,0,0,234,3743, + 1,0,0,0,236,3782,1,0,0,0,238,3784,1,0,0,0,240,3799,1,0,0,0,242,3848, + 1,0,0,0,244,3857,1,0,0,0,246,3867,1,0,0,0,248,3877,1,0,0,0,250,3933, + 1,0,0,0,252,3935,1,0,0,0,254,3962,1,0,0,0,256,3968,1,0,0,0,258,3976, + 1,0,0,0,260,3993,1,0,0,0,262,4009,1,0,0,0,264,4046,1,0,0,0,266,4052, + 1,0,0,0,268,4061,1,0,0,0,270,4074,1,0,0,0,272,4078,1,0,0,0,274,4116, + 1,0,0,0,276,4154,1,0,0,0,278,4168,1,0,0,0,280,4176,1,0,0,0,282,4180, + 1,0,0,0,284,4186,1,0,0,0,286,4200,1,0,0,0,288,4203,1,0,0,0,290,4221, + 1,0,0,0,292,4225,1,0,0,0,294,4241,1,0,0,0,296,4243,1,0,0,0,298,4255, + 1,0,0,0,300,4259,1,0,0,0,302,4276,1,0,0,0,304,4293,1,0,0,0,306,4296, + 1,0,0,0,308,4306,1,0,0,0,310,4310,1,0,0,0,312,4323,1,0,0,0,314,4326, + 1,0,0,0,316,4331,1,0,0,0,318,4351,1,0,0,0,320,4353,1,0,0,0,322,4370, + 1,0,0,0,324,4379,1,0,0,0,326,4388,1,0,0,0,328,4390,1,0,0,0,330,4404, + 1,0,0,0,332,4415,1,0,0,0,334,4424,1,0,0,0,336,4427,1,0,0,0,338,4435, + 1,0,0,0,340,4460,1,0,0,0,342,4472,1,0,0,0,344,4475,1,0,0,0,346,4507, + 1,0,0,0,348,4509,1,0,0,0,350,4511,1,0,0,0,352,4513,1,0,0,0,354,4515, + 1,0,0,0,356,4568,1,0,0,0,358,4570,1,0,0,0,360,4576,1,0,0,0,362,4596, + 1,0,0,0,364,4610,1,0,0,0,366,4621,1,0,0,0,368,4623,1,0,0,0,370,4629, + 1,0,0,0,372,4639,1,0,0,0,374,4643,1,0,0,0,376,4650,1,0,0,0,378,4654, + 1,0,0,0,380,4660,1,0,0,0,382,4667,1,0,0,0,384,4673,1,0,0,0,386,4679, + 1,0,0,0,388,4684,1,0,0,0,390,4729,1,0,0,0,392,4750,1,0,0,0,394,4775, + 1,0,0,0,396,4778,1,0,0,0,398,4784,1,0,0,0,400,4800,1,0,0,0,402,4815, + 1,0,0,0,404,4821,1,0,0,0,406,4851,1,0,0,0,408,4853,1,0,0,0,410,4860, + 1,0,0,0,412,4872,1,0,0,0,414,4878,1,0,0,0,416,4903,1,0,0,0,418,4907, + 1,0,0,0,420,4911,1,0,0,0,422,4922,1,0,0,0,424,5003,1,0,0,0,426,5070, + 1,0,0,0,428,5072,1,0,0,0,430,5178,1,0,0,0,432,5202,1,0,0,0,434,5204, + 1,0,0,0,436,5222,1,0,0,0,438,5302,1,0,0,0,440,5304,1,0,0,0,442,5317, + 1,0,0,0,444,5328,1,0,0,0,446,5356,1,0,0,0,448,5360,1,0,0,0,450,5381, + 1,0,0,0,452,5391,1,0,0,0,454,5401,1,0,0,0,456,5441,1,0,0,0,458,5443, + 1,0,0,0,460,5446,1,0,0,0,462,5546,1,0,0,0,464,5564,1,0,0,0,466,5566, + 1,0,0,0,468,5570,1,0,0,0,470,5608,1,0,0,0,472,5617,1,0,0,0,474,5623, + 1,0,0,0,476,5630,1,0,0,0,478,5652,1,0,0,0,480,5654,1,0,0,0,482,5668, + 1,0,0,0,484,5674,1,0,0,0,486,5730,1,0,0,0,488,5885,1,0,0,0,490,5897, + 1,0,0,0,492,5912,1,0,0,0,494,5918,1,0,0,0,496,5937,1,0,0,0,498,5947, + 1,0,0,0,500,5961,1,0,0,0,502,5963,1,0,0,0,504,5966,1,0,0,0,506,5988, + 1,0,0,0,508,6000,1,0,0,0,510,6006,1,0,0,0,512,6018,1,0,0,0,514,6022, + 1,0,0,0,516,6024,1,0,0,0,518,6066,1,0,0,0,520,6073,1,0,0,0,522,6075, + 1,0,0,0,524,6098,1,0,0,0,526,6104,1,0,0,0,528,6112,1,0,0,0,530,6115, + 1,0,0,0,532,6118,1,0,0,0,534,6139,1,0,0,0,536,6160,1,0,0,0,538,6168, + 1,0,0,0,540,6180,1,0,0,0,542,6188,1,0,0,0,544,6226,1,0,0,0,546,6238, + 1,0,0,0,548,6240,1,0,0,0,550,6246,1,0,0,0,552,6248,1,0,0,0,554,6258, + 1,0,0,0,556,6274,1,0,0,0,558,6287,1,0,0,0,560,6296,1,0,0,0,562,6298, + 1,0,0,0,564,6305,1,0,0,0,566,6307,1,0,0,0,568,6313,1,0,0,0,570,6317, + 1,0,0,0,572,6322,1,0,0,0,574,6324,1,0,0,0,576,6326,1,0,0,0,578,6344, + 1,0,0,0,580,6360,1,0,0,0,582,6364,1,0,0,0,584,6369,1,0,0,0,586,6380, + 1,0,0,0,588,6385,1,0,0,0,590,6387,1,0,0,0,592,6391,1,0,0,0,594,6416, + 1,0,0,0,596,6418,1,0,0,0,598,6421,1,0,0,0,600,6426,1,0,0,0,602,6442, + 1,0,0,0,604,6570,1,0,0,0,606,6572,1,0,0,0,608,6605,1,0,0,0,610,6610, + 1,0,0,0,612,6614,1,0,0,0,614,6620,1,0,0,0,616,6628,1,0,0,0,618,6636, + 1,0,0,0,620,6644,1,0,0,0,622,6652,1,0,0,0,624,6663,1,0,0,0,626,6671, + 1,0,0,0,628,6679,1,0,0,0,630,6687,1,0,0,0,632,6695,1,0,0,0,634,6729, + 1,0,0,0,636,6745,1,0,0,0,638,6749,1,0,0,0,640,6751,1,0,0,0,642,6754, + 1,0,0,0,644,6758,1,0,0,0,646,6764,1,0,0,0,648,6784,1,0,0,0,650,6965, + 1,0,0,0,652,6967,1,0,0,0,654,6986,1,0,0,0,656,6988,1,0,0,0,658,7051, + 1,0,0,0,660,7091,1,0,0,0,662,7093,1,0,0,0,664,7102,1,0,0,0,666,7113, + 1,0,0,0,668,7115,1,0,0,0,670,7118,1,0,0,0,672,7122,1,0,0,0,674,7124, + 1,0,0,0,676,7136,1,0,0,0,678,7138,1,0,0,0,680,7172,1,0,0,0,682,7174, + 1,0,0,0,684,7183,1,0,0,0,686,7201,1,0,0,0,688,7214,1,0,0,0,690,7225, + 1,0,0,0,692,7343,1,0,0,0,694,7369,1,0,0,0,696,7385,1,0,0,0,698,7394, + 1,0,0,0,700,7403,1,0,0,0,702,7405,1,0,0,0,704,7407,1,0,0,0,706,7414, + 1,0,0,0,708,7416,1,0,0,0,710,7418,1,0,0,0,712,7420,1,0,0,0,714,7422, + 1,0,0,0,716,7424,1,0,0,0,718,7426,1,0,0,0,720,7428,1,0,0,0,722,724, + 3,2,1,0,723,722,1,0,0,0,723,724,1,0,0,0,724,725,1,0,0,0,725,726, + 5,0,0,1,726,1,1,0,0,0,727,729,3,4,2,0,728,730,5,1136,0,0,729,728, + 1,0,0,0,729,730,1,0,0,0,730,736,1,0,0,0,731,732,3,4,2,0,732,733, + 5,1136,0,0,733,734,3,2,1,0,734,736,1,0,0,0,735,727,1,0,0,0,735,731, + 1,0,0,0,736,3,1,0,0,0,737,745,3,6,3,0,738,745,3,8,4,0,739,745,3, + 10,5,0,740,745,3,12,6,0,741,745,3,14,7,0,742,745,3,18,9,0,743,745, + 3,20,10,0,744,737,1,0,0,0,744,738,1,0,0,0,744,739,1,0,0,0,744,740, + 1,0,0,0,744,741,1,0,0,0,744,742,1,0,0,0,744,743,1,0,0,0,745,5,1, + 0,0,0,746,785,3,22,11,0,747,785,3,24,12,0,748,785,3,26,13,0,749, + 785,3,28,14,0,750,785,3,30,15,0,751,785,3,32,16,0,752,785,3,36,18, + 0,753,785,3,38,19,0,754,785,3,40,20,0,755,785,3,42,21,0,756,785, + 3,44,22,0,757,785,3,54,27,0,758,785,3,34,17,0,759,785,3,126,63,0, + 760,785,3,128,64,0,761,785,3,130,65,0,762,785,3,132,66,0,763,785, + 3,134,67,0,764,785,3,136,68,0,765,785,3,138,69,0,766,785,3,140,70, + 0,767,785,3,142,71,0,768,785,3,144,72,0,769,785,3,150,75,0,770,785, + 3,152,76,0,771,785,3,154,77,0,772,785,3,156,78,0,773,785,3,158,79, + 0,774,785,3,160,80,0,775,785,3,162,81,0,776,785,3,164,82,0,777,785, + 3,166,83,0,778,785,3,168,84,0,779,785,3,170,85,0,780,785,3,172,86, + 0,781,785,3,174,87,0,782,785,3,176,88,0,783,785,3,180,90,0,784,746, + 1,0,0,0,784,747,1,0,0,0,784,748,1,0,0,0,784,749,1,0,0,0,784,750, + 1,0,0,0,784,751,1,0,0,0,784,752,1,0,0,0,784,753,1,0,0,0,784,754, + 1,0,0,0,784,755,1,0,0,0,784,756,1,0,0,0,784,757,1,0,0,0,784,758, + 1,0,0,0,784,759,1,0,0,0,784,760,1,0,0,0,784,761,1,0,0,0,784,762, + 1,0,0,0,784,763,1,0,0,0,784,764,1,0,0,0,784,765,1,0,0,0,784,766, + 1,0,0,0,784,767,1,0,0,0,784,768,1,0,0,0,784,769,1,0,0,0,784,770, + 1,0,0,0,784,771,1,0,0,0,784,772,1,0,0,0,784,773,1,0,0,0,784,774, + 1,0,0,0,784,775,1,0,0,0,784,776,1,0,0,0,784,777,1,0,0,0,784,778, + 1,0,0,0,784,779,1,0,0,0,784,780,1,0,0,0,784,781,1,0,0,0,784,782, + 1,0,0,0,784,783,1,0,0,0,785,7,1,0,0,0,786,800,3,198,99,0,787,800, + 3,190,95,0,788,800,3,200,100,0,789,800,3,184,92,0,790,800,3,196, + 98,0,791,800,3,182,91,0,792,800,3,192,96,0,793,800,3,194,97,0,794, + 800,3,186,93,0,795,800,3,188,94,0,796,800,3,202,101,0,797,800,3, + 538,269,0,798,800,3,540,270,0,799,786,1,0,0,0,799,787,1,0,0,0,799, + 788,1,0,0,0,799,789,1,0,0,0,799,790,1,0,0,0,799,791,1,0,0,0,799, + 792,1,0,0,0,799,793,1,0,0,0,799,794,1,0,0,0,799,795,1,0,0,0,799, + 796,1,0,0,0,799,797,1,0,0,0,799,798,1,0,0,0,800,9,1,0,0,0,801,811, + 3,296,148,0,802,811,3,298,149,0,803,811,3,300,150,0,804,811,3,302, + 151,0,805,811,3,304,152,0,806,811,3,306,153,0,807,811,3,308,154, + 0,808,811,3,310,155,0,809,811,3,312,156,0,810,801,1,0,0,0,810,802, + 1,0,0,0,810,803,1,0,0,0,810,804,1,0,0,0,810,805,1,0,0,0,810,806, + 1,0,0,0,810,807,1,0,0,0,810,808,1,0,0,0,810,809,1,0,0,0,811,11,1, + 0,0,0,812,828,3,328,164,0,813,828,3,330,165,0,814,828,3,332,166, + 0,815,828,3,334,167,0,816,828,3,336,168,0,817,828,3,338,169,0,818, + 828,3,340,170,0,819,828,3,342,171,0,820,828,3,344,172,0,821,828, + 3,368,184,0,822,828,3,370,185,0,823,828,3,372,186,0,824,828,3,374, + 187,0,825,828,3,376,188,0,826,828,3,378,189,0,827,812,1,0,0,0,827, + 813,1,0,0,0,827,814,1,0,0,0,827,815,1,0,0,0,827,816,1,0,0,0,827, + 817,1,0,0,0,827,818,1,0,0,0,827,819,1,0,0,0,827,820,1,0,0,0,827, + 821,1,0,0,0,827,822,1,0,0,0,827,823,1,0,0,0,827,824,1,0,0,0,827, + 825,1,0,0,0,827,826,1,0,0,0,828,13,1,0,0,0,829,833,3,380,190,0,830, + 833,3,382,191,0,831,833,3,384,192,0,832,829,1,0,0,0,832,830,1,0, + 0,0,832,831,1,0,0,0,833,15,1,0,0,0,834,845,3,388,194,0,835,845,3, + 390,195,0,836,845,3,392,196,0,837,845,3,396,198,0,838,845,3,398, + 199,0,839,845,3,400,200,0,840,845,3,404,202,0,841,845,3,394,197, + 0,842,845,3,402,201,0,843,845,3,406,203,0,844,834,1,0,0,0,844,835, + 1,0,0,0,844,836,1,0,0,0,844,837,1,0,0,0,844,838,1,0,0,0,844,839, + 1,0,0,0,844,840,1,0,0,0,844,841,1,0,0,0,844,842,1,0,0,0,844,843, + 1,0,0,0,845,17,1,0,0,0,846,872,3,424,212,0,847,872,3,426,213,0,848, + 872,3,428,214,0,849,872,3,430,215,0,850,872,3,434,217,0,851,872, + 3,436,218,0,852,872,3,438,219,0,853,872,3,440,220,0,854,872,3,468, + 234,0,855,872,3,470,235,0,856,872,3,472,236,0,857,872,3,474,237, + 0,858,872,3,476,238,0,859,872,3,480,240,0,860,872,3,482,241,0,861, + 872,3,484,242,0,862,872,3,486,243,0,863,872,3,488,244,0,864,872, + 3,502,251,0,865,872,3,504,252,0,866,872,3,506,253,0,867,872,3,508, + 254,0,868,872,3,510,255,0,869,872,3,512,256,0,870,872,3,514,257, + 0,871,846,1,0,0,0,871,847,1,0,0,0,871,848,1,0,0,0,871,849,1,0,0, + 0,871,850,1,0,0,0,871,851,1,0,0,0,871,852,1,0,0,0,871,853,1,0,0, + 0,871,854,1,0,0,0,871,855,1,0,0,0,871,856,1,0,0,0,871,857,1,0,0, + 0,871,858,1,0,0,0,871,859,1,0,0,0,871,860,1,0,0,0,871,861,1,0,0, + 0,871,862,1,0,0,0,871,863,1,0,0,0,871,864,1,0,0,0,871,865,1,0,0, + 0,871,866,1,0,0,0,871,867,1,0,0,0,871,868,1,0,0,0,871,869,1,0,0, + 0,871,870,1,0,0,0,872,19,1,0,0,0,873,881,3,524,262,0,874,881,3,526, + 263,0,875,881,3,528,264,0,876,881,3,530,265,0,877,881,3,532,266, + 0,878,881,3,534,267,0,879,881,3,542,271,0,880,873,1,0,0,0,880,874, + 1,0,0,0,880,875,1,0,0,0,880,876,1,0,0,0,880,877,1,0,0,0,880,878, + 1,0,0,0,880,879,1,0,0,0,881,21,1,0,0,0,882,883,5,33,0,0,883,885, + 7,0,0,0,884,886,3,642,321,0,885,884,1,0,0,0,885,886,1,0,0,0,886, + 887,1,0,0,0,887,891,3,584,292,0,888,890,3,56,28,0,889,888,1,0,0, + 0,890,893,1,0,0,0,891,889,1,0,0,0,891,892,1,0,0,0,892,23,1,0,0,0, + 893,891,1,0,0,0,894,896,5,33,0,0,895,897,3,62,31,0,896,895,1,0,0, + 0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,5,415,0,0,899,901,3,642, + 321,0,900,899,1,0,0,0,900,901,1,0,0,0,901,902,1,0,0,0,902,903,3, + 548,274,0,903,904,5,118,0,0,904,905,5,605,0,0,905,912,3,64,32,0, + 906,907,5,118,0,0,907,909,5,371,0,0,908,910,5,114,0,0,909,908,1, + 0,0,0,909,910,1,0,0,0,910,911,1,0,0,0,911,913,5,561,0,0,912,906, + 1,0,0,0,912,913,1,0,0,0,913,915,1,0,0,0,914,916,3,72,36,0,915,914, + 1,0,0,0,915,916,1,0,0,0,916,919,1,0,0,0,917,918,5,368,0,0,918,920, + 5,1148,0,0,919,917,1,0,0,0,919,920,1,0,0,0,920,921,1,0,0,0,921,922, + 5,399,0,0,922,923,3,386,193,0,923,25,1,0,0,0,924,926,5,33,0,0,925, + 927,7,1,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,929,1,0,0,0,928, + 930,7,2,0,0,929,928,1,0,0,0,929,930,1,0,0,0,930,931,1,0,0,0,931, + 932,5,81,0,0,932,934,3,584,292,0,933,935,3,74,37,0,934,933,1,0,0, + 0,934,935,1,0,0,0,935,936,1,0,0,0,936,937,5,118,0,0,937,938,3,550, + 275,0,938,942,3,622,311,0,939,941,3,76,38,0,940,939,1,0,0,0,941, + 944,1,0,0,0,942,940,1,0,0,0,942,943,1,0,0,0,943,957,1,0,0,0,944, + 942,1,0,0,0,945,947,5,336,0,0,946,948,5,1124,0,0,947,946,1,0,0,0, + 947,948,1,0,0,0,948,949,1,0,0,0,949,956,7,3,0,0,950,952,5,103,0, + 0,951,953,5,1124,0,0,952,951,1,0,0,0,952,953,1,0,0,0,953,954,1,0, + 0,0,954,956,7,4,0,0,955,945,1,0,0,0,955,950,1,0,0,0,956,959,1,0, + 0,0,957,955,1,0,0,0,957,958,1,0,0,0,958,27,1,0,0,0,959,957,1,0,0, + 0,960,961,5,33,0,0,961,962,5,475,0,0,962,963,5,73,0,0,963,964,3, + 584,292,0,964,965,5,5,0,0,965,966,5,659,0,0,966,972,5,1148,0,0,967, + 969,5,453,0,0,968,970,5,1124,0,0,969,968,1,0,0,0,969,970,1,0,0,0, + 970,971,1,0,0,0,971,973,3,592,296,0,972,967,1,0,0,0,972,973,1,0, + 0,0,973,979,1,0,0,0,974,976,5,660,0,0,975,977,5,1124,0,0,976,975, + 1,0,0,0,976,977,1,0,0,0,977,978,1,0,0,0,978,980,3,592,296,0,979, + 974,1,0,0,0,979,980,1,0,0,0,980,986,1,0,0,0,981,983,5,572,0,0,982, + 984,5,1124,0,0,983,982,1,0,0,0,983,984,1,0,0,0,984,985,1,0,0,0,985, + 987,3,592,296,0,986,981,1,0,0,0,986,987,1,0,0,0,987,993,1,0,0,0, + 988,990,5,528,0,0,989,991,5,1124,0,0,990,989,1,0,0,0,990,991,1,0, + 0,0,991,992,1,0,0,0,992,994,3,584,292,0,993,988,1,0,0,0,993,994, + 1,0,0,0,994,996,1,0,0,0,995,997,5,674,0,0,996,995,1,0,0,0,996,997, + 1,0,0,0,997,1003,1,0,0,0,998,1000,5,368,0,0,999,1001,5,1124,0,0, + 1000,999,1,0,0,0,1000,1001,1,0,0,0,1001,1002,1,0,0,0,1002,1004,5, + 1148,0,0,1003,998,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005, + 1007,5,409,0,0,1006,1008,5,1124,0,0,1007,1006,1,0,0,0,1007,1008, + 1,0,0,0,1008,1009,1,0,0,0,1009,1010,3,572,286,0,1010,29,1,0,0,0, + 1011,1013,5,33,0,0,1012,1014,3,62,31,0,1013,1012,1,0,0,0,1013,1014, + 1,0,0,0,1014,1015,1,0,0,0,1015,1016,5,131,0,0,1016,1017,3,548,274, + 0,1017,1019,5,1133,0,0,1018,1020,3,78,39,0,1019,1018,1,0,0,0,1019, + 1020,1,0,0,0,1020,1025,1,0,0,0,1021,1022,5,1135,0,0,1022,1024,3, + 78,39,0,1023,1021,1,0,0,0,1024,1027,1,0,0,0,1025,1023,1,0,0,0,1025, + 1026,1,0,0,0,1026,1028,1,0,0,0,1027,1025,1,0,0,0,1028,1032,5,1134, + 0,0,1029,1031,3,82,41,0,1030,1029,1,0,0,0,1031,1034,1,0,0,0,1032, + 1030,1,0,0,0,1032,1033,1,0,0,0,1033,1035,1,0,0,0,1034,1032,1,0,0, + 0,1035,1036,3,386,193,0,1036,31,1,0,0,0,1037,1039,5,33,0,0,1038, + 1040,3,62,31,0,1039,1038,1,0,0,0,1039,1040,1,0,0,0,1040,1042,1,0, + 0,0,1041,1043,5,335,0,0,1042,1041,1,0,0,0,1042,1043,1,0,0,0,1043, + 1044,1,0,0,0,1044,1046,5,437,0,0,1045,1047,3,642,321,0,1046,1045, + 1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0,1048,1049,3,548,274, + 0,1049,1051,5,1133,0,0,1050,1052,3,80,40,0,1051,1050,1,0,0,0,1051, + 1052,1,0,0,0,1052,1057,1,0,0,0,1053,1054,5,1135,0,0,1054,1056,3, + 80,40,0,1055,1053,1,0,0,0,1056,1059,1,0,0,0,1057,1055,1,0,0,0,1057, + 1058,1,0,0,0,1058,1060,1,0,0,0,1059,1057,1,0,0,0,1060,1061,5,1134, + 0,0,1061,1062,5,594,0,0,1062,1066,3,604,302,0,1063,1065,3,82,41, + 0,1064,1063,1,0,0,0,1065,1068,1,0,0,0,1066,1064,1,0,0,0,1066,1067, + 1,0,0,0,1067,1071,1,0,0,0,1068,1066,1,0,0,0,1069,1072,3,386,193, + 0,1070,1072,3,402,201,0,1071,1069,1,0,0,0,1071,1070,1,0,0,0,1072, + 33,1,0,0,0,1073,1074,5,33,0,0,1074,1076,5,596,0,0,1075,1077,3,642, + 321,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,1078,1,0,0,0,1078, + 1083,3,554,277,0,1079,1080,5,1135,0,0,1080,1082,3,554,277,0,1081, + 1079,1,0,0,0,1082,1085,1,0,0,0,1083,1081,1,0,0,0,1083,1084,1,0,0, + 0,1084,35,1,0,0,0,1085,1083,1,0,0,0,1086,1087,5,33,0,0,1087,1088, + 5,608,0,0,1088,1089,3,584,292,0,1089,1090,5,67,0,0,1090,1091,5,388, + 0,0,1091,1092,5,679,0,0,1092,1093,7,5,0,0,1093,1094,5,541,0,0,1094, + 1095,5,1133,0,0,1095,1100,3,84,42,0,1096,1097,5,1135,0,0,1097,1099, + 3,84,42,0,1098,1096,1,0,0,0,1099,1102,1,0,0,0,1100,1098,1,0,0,0, + 1100,1101,1,0,0,0,1101,1103,1,0,0,0,1102,1100,1,0,0,0,1103,1104, + 5,1134,0,0,1104,37,1,0,0,0,1105,1107,5,33,0,0,1106,1108,5,649,0, + 0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1111, + 5,172,0,0,1110,1112,3,642,321,0,1111,1110,1,0,0,0,1111,1112,1,0, + 0,0,1112,1113,1,0,0,0,1113,1121,3,550,275,0,1114,1115,5,98,0,0,1115, + 1122,3,550,275,0,1116,1117,5,1133,0,0,1117,1118,5,98,0,0,1118,1119, + 3,550,275,0,1119,1120,5,1134,0,0,1120,1122,1,0,0,0,1121,1114,1,0, + 0,0,1121,1116,1,0,0,0,1122,1184,1,0,0,0,1123,1125,5,33,0,0,1124, + 1126,5,649,0,0,1125,1124,1,0,0,0,1125,1126,1,0,0,0,1126,1127,1,0, + 0,0,1127,1129,5,172,0,0,1128,1130,3,642,321,0,1129,1128,1,0,0,0, + 1129,1130,1,0,0,0,1130,1131,1,0,0,0,1131,1133,3,550,275,0,1132,1134, + 3,86,43,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134,1145,1,0,0,0, + 1135,1142,3,104,52,0,1136,1138,5,1135,0,0,1137,1136,1,0,0,0,1137, + 1138,1,0,0,0,1138,1139,1,0,0,0,1139,1141,3,104,52,0,1140,1137,1, + 0,0,0,1141,1144,1,0,0,0,1142,1140,1,0,0,0,1142,1143,1,0,0,0,1143, + 1146,1,0,0,0,1144,1142,1,0,0,0,1145,1135,1,0,0,0,1145,1146,1,0,0, + 0,1146,1148,1,0,0,0,1147,1149,3,110,55,0,1148,1147,1,0,0,0,1148, + 1149,1,0,0,0,1149,1151,1,0,0,0,1150,1152,7,6,0,0,1151,1150,1,0,0, + 0,1151,1152,1,0,0,0,1152,1154,1,0,0,0,1153,1155,5,12,0,0,1154,1153, + 1,0,0,0,1154,1155,1,0,0,0,1155,1156,1,0,0,0,1156,1157,3,198,99,0, + 1157,1184,1,0,0,0,1158,1160,5,33,0,0,1159,1161,5,649,0,0,1160,1159, + 1,0,0,0,1160,1161,1,0,0,0,1161,1162,1,0,0,0,1162,1164,5,172,0,0, + 1163,1165,3,642,321,0,1164,1163,1,0,0,0,1164,1165,1,0,0,0,1165,1166, + 1,0,0,0,1166,1167,3,550,275,0,1167,1178,3,86,43,0,1168,1175,3,104, + 52,0,1169,1171,5,1135,0,0,1170,1169,1,0,0,0,1170,1171,1,0,0,0,1171, + 1172,1,0,0,0,1172,1174,3,104,52,0,1173,1170,1,0,0,0,1174,1177,1, + 0,0,0,1175,1173,1,0,0,0,1175,1176,1,0,0,0,1176,1179,1,0,0,0,1177, + 1175,1,0,0,0,1178,1168,1,0,0,0,1178,1179,1,0,0,0,1179,1181,1,0,0, + 0,1180,1182,3,110,55,0,1181,1180,1,0,0,0,1181,1182,1,0,0,0,1182, + 1184,1,0,0,0,1183,1105,1,0,0,0,1183,1123,1,0,0,0,1183,1158,1,0,0, + 0,1184,39,1,0,0,0,1185,1186,5,33,0,0,1186,1187,5,647,0,0,1187,1188, + 3,584,292,0,1188,1189,5,5,0,0,1189,1190,5,389,0,0,1190,1194,5,1148, + 0,0,1191,1192,5,428,0,0,1192,1193,5,1124,0,0,1193,1195,3,592,296, + 0,1194,1191,1,0,0,0,1194,1195,1,0,0,0,1195,1201,1,0,0,0,1196,1198, + 5,409,0,0,1197,1199,5,1124,0,0,1198,1197,1,0,0,0,1198,1199,1,0,0, + 0,1199,1200,1,0,0,0,1200,1202,3,572,286,0,1201,1196,1,0,0,0,1201, + 1202,1,0,0,0,1202,41,1,0,0,0,1203,1204,5,33,0,0,1204,1205,5,647, + 0,0,1205,1206,3,584,292,0,1206,1207,5,5,0,0,1207,1208,5,389,0,0, + 1208,1209,5,1148,0,0,1209,1210,5,186,0,0,1210,1211,5,475,0,0,1211, + 1212,5,73,0,0,1212,1218,3,584,292,0,1213,1215,5,423,0,0,1214,1216, + 5,1124,0,0,1215,1214,1,0,0,0,1215,1216,1,0,0,0,1216,1217,1,0,0,0, + 1217,1219,3,592,296,0,1218,1213,1,0,0,0,1218,1219,1,0,0,0,1219,1225, + 1,0,0,0,1220,1222,5,453,0,0,1221,1223,5,1124,0,0,1222,1221,1,0,0, + 0,1222,1223,1,0,0,0,1223,1224,1,0,0,0,1224,1226,3,592,296,0,1225, + 1220,1,0,0,0,1225,1226,1,0,0,0,1226,1232,1,0,0,0,1227,1229,5,341, + 0,0,1228,1230,5,1124,0,0,1229,1228,1,0,0,0,1229,1230,1,0,0,0,1230, + 1231,1,0,0,0,1231,1233,3,592,296,0,1232,1227,1,0,0,0,1232,1233,1, + 0,0,0,1233,1239,1,0,0,0,1234,1236,5,501,0,0,1235,1237,5,1124,0,0, + 1236,1235,1,0,0,0,1236,1237,1,0,0,0,1237,1238,1,0,0,0,1238,1240, + 3,592,296,0,1239,1234,1,0,0,0,1239,1240,1,0,0,0,1240,1246,1,0,0, + 0,1241,1243,5,528,0,0,1242,1244,5,1124,0,0,1243,1242,1,0,0,0,1243, + 1244,1,0,0,0,1244,1245,1,0,0,0,1245,1247,3,584,292,0,1246,1241,1, + 0,0,0,1246,1247,1,0,0,0,1247,1249,1,0,0,0,1248,1250,5,674,0,0,1249, + 1248,1,0,0,0,1249,1250,1,0,0,0,1250,1256,1,0,0,0,1251,1253,5,368, + 0,0,1252,1254,5,1124,0,0,1253,1252,1,0,0,0,1253,1254,1,0,0,0,1254, + 1255,1,0,0,0,1255,1257,5,1148,0,0,1256,1251,1,0,0,0,1256,1257,1, + 0,0,0,1257,1258,1,0,0,0,1258,1260,5,409,0,0,1259,1261,5,1124,0,0, + 1260,1259,1,0,0,0,1260,1261,1,0,0,0,1261,1262,1,0,0,0,1262,1263, + 3,572,286,0,1263,43,1,0,0,0,1264,1266,5,33,0,0,1265,1267,3,62,31, + 0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1268,1,0,0,0,1268,1270, + 5,177,0,0,1269,1271,3,642,321,0,1270,1269,1,0,0,0,1270,1271,1,0, + 0,0,1271,1272,1,0,0,0,1272,1273,3,548,274,0,1273,1274,7,7,0,0,1274, + 1275,7,8,0,0,1275,1276,5,118,0,0,1276,1277,3,550,275,0,1277,1278, + 5,65,0,0,1278,1279,5,52,0,0,1279,1282,5,600,0,0,1280,1281,7,9,0, + 0,1281,1283,3,548,274,0,1282,1280,1,0,0,0,1282,1283,1,0,0,0,1283, + 1284,1,0,0,0,1284,1285,3,386,193,0,1285,45,1,0,0,0,1286,1288,5,192, + 0,0,1287,1289,5,571,0,0,1288,1287,1,0,0,0,1288,1289,1,0,0,0,1289, + 1290,1,0,0,0,1290,1291,3,48,24,0,1291,47,1,0,0,0,1292,1304,3,50, + 25,0,1293,1294,5,1133,0,0,1294,1299,3,52,26,0,1295,1296,5,1135,0, + 0,1296,1298,3,52,26,0,1297,1295,1,0,0,0,1298,1301,1,0,0,0,1299,1297, + 1,0,0,0,1299,1300,1,0,0,0,1300,1302,1,0,0,0,1301,1299,1,0,0,0,1302, + 1303,5,1134,0,0,1303,1305,1,0,0,0,1304,1293,1,0,0,0,1304,1305,1, + 0,0,0,1305,1306,1,0,0,0,1306,1307,5,12,0,0,1307,1308,5,1133,0,0, + 1308,1309,3,8,4,0,1309,1312,5,1134,0,0,1310,1311,5,1135,0,0,1311, + 1313,3,48,24,0,1312,1310,1,0,0,0,1312,1313,1,0,0,0,1313,49,1,0,0, + 0,1314,1315,3,584,292,0,1315,51,1,0,0,0,1316,1317,3,584,292,0,1317, + 53,1,0,0,0,1318,1320,5,33,0,0,1319,1321,3,644,322,0,1320,1319,1, + 0,0,0,1320,1321,1,0,0,0,1321,1325,1,0,0,0,1322,1323,5,336,0,0,1323, + 1324,5,1124,0,0,1324,1326,7,10,0,0,1325,1322,1,0,0,0,1325,1326,1, + 0,0,0,1326,1328,1,0,0,0,1327,1329,3,62,31,0,1328,1327,1,0,0,0,1328, + 1329,1,0,0,0,1329,1333,1,0,0,0,1330,1331,5,160,0,0,1331,1332,5,606, + 0,0,1332,1334,7,11,0,0,1333,1330,1,0,0,0,1333,1334,1,0,0,0,1334, + 1335,1,0,0,0,1335,1336,5,671,0,0,1336,1341,3,548,274,0,1337,1338, + 5,1133,0,0,1338,1339,3,616,308,0,1339,1340,5,1134,0,0,1340,1342, + 1,0,0,0,1341,1337,1,0,0,0,1341,1342,1,0,0,0,1342,1343,1,0,0,0,1343, + 1363,5,12,0,0,1344,1346,5,1133,0,0,1345,1347,3,46,23,0,1346,1345, + 1,0,0,0,1346,1347,1,0,0,0,1347,1348,1,0,0,0,1348,1349,3,198,99,0, + 1349,1350,5,1134,0,0,1350,1364,1,0,0,0,1351,1353,3,46,23,0,1352, + 1351,1,0,0,0,1352,1353,1,0,0,0,1353,1354,1,0,0,0,1354,1361,3,198, + 99,0,1355,1357,5,192,0,0,1356,1358,7,12,0,0,1357,1356,1,0,0,0,1357, + 1358,1,0,0,0,1358,1359,1,0,0,0,1359,1360,5,26,0,0,1360,1362,5,120, + 0,0,1361,1355,1,0,0,0,1361,1362,1,0,0,0,1362,1364,1,0,0,0,1363,1344, + 1,0,0,0,1363,1352,1,0,0,0,1364,55,1,0,0,0,1365,1367,5,42,0,0,1366, + 1365,1,0,0,0,1366,1367,1,0,0,0,1367,1368,1,0,0,0,1368,1370,3,58, + 29,0,1369,1371,5,1124,0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371, + 1374,1,0,0,0,1372,1375,3,568,284,0,1373,1375,5,42,0,0,1374,1372, + 1,0,0,0,1374,1373,1,0,0,0,1375,1399,1,0,0,0,1376,1378,5,42,0,0,1377, + 1376,1,0,0,0,1377,1378,1,0,0,0,1378,1379,1,0,0,0,1379,1381,5,27, + 0,0,1380,1382,5,1124,0,0,1381,1380,1,0,0,0,1381,1382,1,0,0,0,1382, + 1383,1,0,0,0,1383,1399,3,570,285,0,1384,1386,5,42,0,0,1385,1384, + 1,0,0,0,1385,1386,1,0,0,0,1386,1387,1,0,0,0,1387,1389,5,405,0,0, + 1388,1390,5,1124,0,0,1389,1388,1,0,0,0,1389,1390,1,0,0,0,1390,1391, + 1,0,0,0,1391,1399,5,1148,0,0,1392,1393,5,134,0,0,1393,1395,5,538, + 0,0,1394,1396,5,1124,0,0,1395,1394,1,0,0,0,1395,1396,1,0,0,0,1396, + 1397,1,0,0,0,1397,1399,7,13,0,0,1398,1366,1,0,0,0,1398,1377,1,0, + 0,0,1398,1385,1,0,0,0,1398,1392,1,0,0,0,1399,57,1,0,0,0,1400,1401, + 5,25,0,0,1401,1406,5,153,0,0,1402,1406,5,841,0,0,1403,1404,5,222, + 0,0,1404,1406,5,153,0,0,1405,1400,1,0,0,0,1405,1402,1,0,0,0,1405, + 1403,1,0,0,0,1406,59,1,0,0,0,1407,1410,5,37,0,0,1408,1409,5,1133, + 0,0,1409,1411,5,1134,0,0,1410,1408,1,0,0,0,1410,1411,1,0,0,0,1411, + 61,1,0,0,0,1412,1413,5,392,0,0,1413,1416,5,1124,0,0,1414,1417,3, + 564,282,0,1415,1417,3,60,30,0,1416,1414,1,0,0,0,1416,1415,1,0,0, + 0,1417,63,1,0,0,0,1418,1419,5,338,0,0,1419,1423,3,66,33,0,1420,1422, + 3,68,34,0,1421,1420,1,0,0,0,1422,1425,1,0,0,0,1423,1421,1,0,0,0, + 1423,1424,1,0,0,0,1424,1453,1,0,0,0,1425,1423,1,0,0,0,1426,1429, + 5,417,0,0,1427,1430,3,590,295,0,1428,1430,3,688,344,0,1429,1427, + 1,0,0,0,1429,1428,1,0,0,0,1430,1431,1,0,0,0,1431,1440,3,70,35,0, + 1432,1433,5,630,0,0,1433,1437,3,66,33,0,1434,1436,3,68,34,0,1435, + 1434,1,0,0,0,1436,1439,1,0,0,0,1437,1435,1,0,0,0,1437,1438,1,0,0, + 0,1438,1441,1,0,0,0,1439,1437,1,0,0,0,1440,1432,1,0,0,0,1440,1441, + 1,0,0,0,1441,1450,1,0,0,0,1442,1443,5,408,0,0,1443,1447,3,66,33, + 0,1444,1446,3,68,34,0,1445,1444,1,0,0,0,1446,1449,1,0,0,0,1447,1445, + 1,0,0,0,1447,1448,1,0,0,0,1448,1451,1,0,0,0,1449,1447,1,0,0,0,1450, + 1442,1,0,0,0,1450,1451,1,0,0,0,1451,1453,1,0,0,0,1452,1418,1,0,0, + 0,1452,1426,1,0,0,0,1453,65,1,0,0,0,1454,1459,5,315,0,0,1455,1459, + 3,594,297,0,1456,1459,3,590,295,0,1457,1459,3,688,344,0,1458,1454, + 1,0,0,0,1458,1455,1,0,0,0,1458,1456,1,0,0,0,1458,1457,1,0,0,0,1459, + 67,1,0,0,0,1460,1461,5,1120,0,0,1461,1464,5,86,0,0,1462,1465,3,590, + 295,0,1463,1465,3,688,344,0,1464,1462,1,0,0,0,1464,1463,1,0,0,0, + 1465,1466,1,0,0,0,1466,1467,3,70,35,0,1467,69,1,0,0,0,1468,1482, + 3,714,357,0,1469,1482,5,221,0,0,1470,1482,5,240,0,0,1471,1482,5, + 241,0,0,1472,1482,5,242,0,0,1473,1482,5,243,0,0,1474,1482,5,244, + 0,0,1475,1482,5,245,0,0,1476,1482,5,246,0,0,1477,1482,5,247,0,0, + 1478,1482,5,248,0,0,1479,1482,5,249,0,0,1480,1482,5,250,0,0,1481, + 1468,1,0,0,0,1481,1469,1,0,0,0,1481,1470,1,0,0,0,1481,1471,1,0,0, + 0,1481,1472,1,0,0,0,1481,1473,1,0,0,0,1481,1474,1,0,0,0,1481,1475, + 1,0,0,0,1481,1476,1,0,0,0,1481,1477,1,0,0,0,1481,1478,1,0,0,0,1481, + 1479,1,0,0,0,1481,1480,1,0,0,0,1482,71,1,0,0,0,1483,1489,5,403,0, + 0,1484,1489,5,396,0,0,1485,1486,5,396,0,0,1486,1487,5,118,0,0,1487, + 1489,5,614,0,0,1488,1483,1,0,0,0,1488,1484,1,0,0,0,1488,1485,1,0, + 0,0,1489,73,1,0,0,0,1490,1491,5,187,0,0,1491,1492,7,14,0,0,1492, + 75,1,0,0,0,1493,1495,5,467,0,0,1494,1496,5,1124,0,0,1495,1494,1, + 0,0,0,1495,1496,1,0,0,0,1496,1497,1,0,0,0,1497,1516,3,592,296,0, + 1498,1516,3,74,37,0,1499,1500,5,192,0,0,1500,1501,5,547,0,0,1501, + 1516,3,584,292,0,1502,1503,5,368,0,0,1503,1516,5,1148,0,0,1504,1516, + 7,15,0,0,1505,1507,5,875,0,0,1506,1508,5,1124,0,0,1507,1506,1,0, + 0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1516,5,1148,0,0,1510, + 1512,5,1000,0,0,1511,1513,5,1124,0,0,1512,1511,1,0,0,0,1512,1513, + 1,0,0,0,1513,1514,1,0,0,0,1514,1516,5,1148,0,0,1515,1493,1,0,0,0, + 1515,1498,1,0,0,0,1515,1499,1,0,0,0,1515,1502,1,0,0,0,1515,1504, + 1,0,0,0,1515,1505,1,0,0,0,1515,1510,1,0,0,0,1516,77,1,0,0,0,1517, + 1519,7,16,0,0,1518,1517,1,0,0,0,1518,1519,1,0,0,0,1519,1520,1,0, + 0,0,1520,1521,3,584,292,0,1521,1522,3,604,302,0,1522,79,1,0,0,0, + 1523,1524,3,584,292,0,1524,1525,3,604,302,0,1525,81,1,0,0,0,1526, + 1527,5,368,0,0,1527,1550,5,1148,0,0,1528,1529,5,468,0,0,1529,1550, + 5,160,0,0,1530,1532,5,114,0,0,1531,1530,1,0,0,0,1531,1532,1,0,0, + 0,1532,1533,1,0,0,0,1533,1550,5,47,0,0,1534,1535,5,381,0,0,1535, + 1545,5,160,0,0,1536,1537,5,521,0,0,1537,1545,5,160,0,0,1538,1539, + 5,135,0,0,1539,1540,5,160,0,0,1540,1545,5,388,0,0,1541,1542,5,112, + 0,0,1542,1543,5,160,0,0,1543,1545,5,388,0,0,1544,1534,1,0,0,0,1544, + 1536,1,0,0,0,1544,1538,1,0,0,0,1544,1541,1,0,0,0,1545,1550,1,0,0, + 0,1546,1547,5,160,0,0,1547,1548,5,606,0,0,1548,1550,7,11,0,0,1549, + 1526,1,0,0,0,1549,1528,1,0,0,0,1549,1531,1,0,0,0,1549,1544,1,0,0, + 0,1549,1546,1,0,0,0,1550,83,1,0,0,0,1551,1552,5,446,0,0,1552,1566, + 5,1148,0,0,1553,1554,5,39,0,0,1554,1566,5,1148,0,0,1555,1556,5,665, + 0,0,1556,1566,5,1148,0,0,1557,1558,5,551,0,0,1558,1566,5,1148,0, + 0,1559,1560,5,617,0,0,1560,1566,5,1148,0,0,1561,1562,5,542,0,0,1562, + 1566,5,1148,0,0,1563,1564,5,557,0,0,1564,1566,3,590,295,0,1565,1551, + 1,0,0,0,1565,1553,1,0,0,0,1565,1555,1,0,0,0,1565,1557,1,0,0,0,1565, + 1559,1,0,0,0,1565,1561,1,0,0,0,1565,1563,1,0,0,0,1566,85,1,0,0,0, + 1567,1568,5,1133,0,0,1568,1573,3,88,44,0,1569,1570,5,1135,0,0,1570, + 1572,3,88,44,0,1571,1569,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0, + 0,0,1573,1574,1,0,0,0,1574,1576,1,0,0,0,1575,1573,1,0,0,0,1576,1577, + 5,1134,0,0,1577,87,1,0,0,0,1578,1579,3,556,278,0,1579,1580,3,90, + 45,0,1580,1590,1,0,0,0,1581,1583,3,94,47,0,1582,1584,5,114,0,0,1583, + 1582,1,0,0,0,1583,1584,1,0,0,0,1584,1586,1,0,0,0,1585,1587,5,57, + 0,0,1586,1585,1,0,0,0,1586,1587,1,0,0,0,1587,1590,1,0,0,0,1588,1590, + 3,102,51,0,1589,1578,1,0,0,0,1589,1581,1,0,0,0,1589,1588,1,0,0,0, + 1590,89,1,0,0,0,1591,1595,3,604,302,0,1592,1594,3,92,46,0,1593,1592, + 1,0,0,0,1594,1597,1,0,0,0,1595,1593,1,0,0,0,1595,1596,1,0,0,0,1596, + 1599,1,0,0,0,1597,1595,1,0,0,0,1598,1600,5,114,0,0,1599,1598,1,0, + 0,0,1599,1600,1,0,0,0,1600,1602,1,0,0,0,1601,1603,5,57,0,0,1602, + 1601,1,0,0,0,1602,1603,1,0,0,0,1603,91,1,0,0,0,1604,1658,3,600,300, + 0,1605,1606,5,42,0,0,1606,1658,3,634,317,0,1607,1658,5,673,0,0,1608, + 1658,5,459,0,0,1609,1614,5,342,0,0,1610,1611,5,118,0,0,1611,1612, + 5,184,0,0,1612,1614,3,636,318,0,1613,1609,1,0,0,0,1613,1610,1,0, + 0,0,1614,1658,1,0,0,0,1615,1617,5,130,0,0,1616,1615,1,0,0,0,1616, + 1617,1,0,0,0,1617,1618,1,0,0,0,1618,1658,5,91,0,0,1619,1621,5,181, + 0,0,1620,1622,5,91,0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622, + 1658,1,0,0,0,1623,1624,5,368,0,0,1624,1658,5,1148,0,0,1625,1626, + 5,366,0,0,1626,1658,7,17,0,0,1627,1628,5,636,0,0,1628,1658,7,18, + 0,0,1629,1658,3,96,48,0,1630,1631,5,27,0,0,1631,1658,3,570,285,0, + 1632,1633,5,70,0,0,1633,1635,5,8,0,0,1634,1632,1,0,0,0,1634,1635, + 1,0,0,0,1635,1636,1,0,0,0,1636,1637,5,12,0,0,1637,1638,5,1133,0, + 0,1638,1639,3,688,344,0,1639,1641,5,1134,0,0,1640,1642,7,19,0,0, + 1641,1640,1,0,0,0,1641,1642,1,0,0,0,1642,1658,1,0,0,0,1643,1644, + 5,239,0,0,1644,1645,5,42,0,0,1645,1658,5,669,0,0,1646,1648,5,30, + 0,0,1647,1649,3,584,292,0,1648,1647,1,0,0,0,1648,1649,1,0,0,0,1649, + 1651,1,0,0,0,1650,1646,1,0,0,0,1650,1651,1,0,0,0,1651,1652,1,0,0, + 0,1652,1653,5,26,0,0,1653,1654,5,1133,0,0,1654,1655,3,688,344,0, + 1655,1656,5,1134,0,0,1656,1658,1,0,0,0,1657,1604,1,0,0,0,1657,1605, + 1,0,0,0,1657,1607,1,0,0,0,1657,1608,1,0,0,0,1657,1613,1,0,0,0,1657, + 1616,1,0,0,0,1657,1619,1,0,0,0,1657,1623,1,0,0,0,1657,1625,1,0,0, + 0,1657,1627,1,0,0,0,1657,1629,1,0,0,0,1657,1630,1,0,0,0,1657,1634, + 1,0,0,0,1657,1643,1,0,0,0,1657,1650,1,0,0,0,1658,93,1,0,0,0,1659, + 1661,5,30,0,0,1660,1662,3,584,292,0,1661,1660,1,0,0,0,1661,1662, + 1,0,0,0,1662,1664,1,0,0,0,1663,1659,1,0,0,0,1663,1664,1,0,0,0,1664, + 1665,1,0,0,0,1665,1666,5,130,0,0,1666,1668,5,91,0,0,1667,1669,3, + 584,292,0,1668,1667,1,0,0,0,1668,1669,1,0,0,0,1669,1671,1,0,0,0, + 1670,1672,3,74,37,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1673, + 1,0,0,0,1673,1677,3,622,311,0,1674,1676,3,76,38,0,1675,1674,1,0, + 0,0,1676,1679,1,0,0,0,1677,1675,1,0,0,0,1677,1678,1,0,0,0,1678,1729, + 1,0,0,0,1679,1677,1,0,0,0,1680,1682,5,30,0,0,1681,1683,3,584,292, + 0,1682,1681,1,0,0,0,1682,1683,1,0,0,0,1683,1685,1,0,0,0,1684,1680, + 1,0,0,0,1684,1685,1,0,0,0,1685,1686,1,0,0,0,1686,1688,5,181,0,0, + 1687,1689,7,20,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689,1691, + 1,0,0,0,1690,1692,3,584,292,0,1691,1690,1,0,0,0,1691,1692,1,0,0, + 0,1692,1694,1,0,0,0,1693,1695,3,74,37,0,1694,1693,1,0,0,0,1694,1695, + 1,0,0,0,1695,1696,1,0,0,0,1696,1700,3,622,311,0,1697,1699,3,76,38, + 0,1698,1697,1,0,0,0,1699,1702,1,0,0,0,1700,1698,1,0,0,0,1700,1701, + 1,0,0,0,1701,1729,1,0,0,0,1702,1700,1,0,0,0,1703,1705,5,30,0,0,1704, + 1706,3,584,292,0,1705,1704,1,0,0,0,1705,1706,1,0,0,0,1706,1708,1, + 0,0,0,1707,1703,1,0,0,0,1707,1708,1,0,0,0,1708,1709,1,0,0,0,1709, + 1710,5,67,0,0,1710,1712,5,91,0,0,1711,1713,3,584,292,0,1712,1711, + 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1715,3,622,311, + 0,1715,1716,3,96,48,0,1716,1729,1,0,0,0,1717,1719,5,30,0,0,1718, + 1720,3,584,292,0,1719,1718,1,0,0,0,1719,1720,1,0,0,0,1720,1722,1, + 0,0,0,1721,1717,1,0,0,0,1721,1722,1,0,0,0,1722,1723,1,0,0,0,1723, + 1724,5,26,0,0,1724,1725,5,1133,0,0,1725,1726,3,688,344,0,1726,1727, + 5,1134,0,0,1727,1729,1,0,0,0,1728,1663,1,0,0,0,1728,1684,1,0,0,0, + 1728,1707,1,0,0,0,1728,1721,1,0,0,0,1729,95,1,0,0,0,1730,1731,5, + 136,0,0,1731,1733,3,550,275,0,1732,1734,3,622,311,0,1733,1732,1, + 0,0,0,1733,1734,1,0,0,0,1734,1737,1,0,0,0,1735,1736,5,109,0,0,1736, + 1738,7,21,0,0,1737,1735,1,0,0,0,1737,1738,1,0,0,0,1738,1740,1,0, + 0,0,1739,1741,3,98,49,0,1740,1739,1,0,0,0,1740,1741,1,0,0,0,1741, + 97,1,0,0,0,1742,1743,5,118,0,0,1743,1744,5,44,0,0,1744,1748,3,100, + 50,0,1745,1746,5,118,0,0,1746,1747,5,184,0,0,1747,1749,3,100,50, + 0,1748,1745,1,0,0,0,1748,1749,1,0,0,0,1749,1759,1,0,0,0,1750,1751, + 5,118,0,0,1751,1752,5,184,0,0,1752,1756,3,100,50,0,1753,1754,5,118, + 0,0,1754,1755,5,44,0,0,1755,1757,3,100,50,0,1756,1753,1,0,0,0,1756, + 1757,1,0,0,0,1757,1759,1,0,0,0,1758,1742,1,0,0,0,1758,1750,1,0,0, + 0,1759,99,1,0,0,0,1760,1769,5,144,0,0,1761,1769,5,21,0,0,1762,1763, + 5,153,0,0,1763,1769,5,116,0,0,1764,1765,5,521,0,0,1765,1769,5,333, + 0,0,1766,1767,5,153,0,0,1767,1769,5,42,0,0,1768,1760,1,0,0,0,1768, + 1761,1,0,0,0,1768,1762,1,0,0,0,1768,1764,1,0,0,0,1768,1766,1,0,0, + 0,1769,101,1,0,0,0,1770,1772,7,20,0,0,1771,1773,3,584,292,0,1772, + 1771,1,0,0,0,1772,1773,1,0,0,0,1773,1775,1,0,0,0,1774,1776,3,74, + 37,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776,1777,1,0,0,0,1777, + 1781,3,622,311,0,1778,1780,3,76,38,0,1779,1778,1,0,0,0,1780,1783, + 1,0,0,0,1781,1779,1,0,0,0,1781,1782,1,0,0,0,1782,1799,1,0,0,0,1783, + 1781,1,0,0,0,1784,1786,7,22,0,0,1785,1787,7,20,0,0,1786,1785,1,0, + 0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790,3,584,292,0,1789, + 1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0,1791,1795,3,622, + 311,0,1792,1794,3,76,38,0,1793,1792,1,0,0,0,1794,1797,1,0,0,0,1795, + 1793,1,0,0,0,1795,1796,1,0,0,0,1796,1799,1,0,0,0,1797,1795,1,0,0, + 0,1798,1770,1,0,0,0,1798,1784,1,0,0,0,1799,103,1,0,0,0,1800,1802, + 5,409,0,0,1801,1803,5,1124,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0, + 0,1803,1805,1,0,0,0,1804,1806,3,572,286,0,1805,1804,1,0,0,0,1805, + 1806,1,0,0,0,1806,1986,1,0,0,0,1807,1809,5,875,0,0,1808,1810,5,1124, + 0,0,1809,1808,1,0,0,0,1809,1810,1,0,0,0,1810,1811,1,0,0,0,1811,1986, + 5,1148,0,0,1812,1814,5,341,0,0,1813,1815,5,1124,0,0,1814,1813,1, + 0,0,0,1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1986,3,590,295,0, + 1817,1819,5,342,0,0,1818,1820,5,1124,0,0,1819,1818,1,0,0,0,1819, + 1820,1,0,0,0,1820,1821,1,0,0,0,1821,1986,3,590,295,0,1822,1824,5, + 343,0,0,1823,1825,5,1124,0,0,1824,1823,1,0,0,0,1824,1825,1,0,0,0, + 1825,1826,1,0,0,0,1826,1986,3,590,295,0,1827,1829,5,42,0,0,1828, + 1827,1,0,0,0,1828,1829,1,0,0,0,1829,1830,1,0,0,0,1830,1832,3,58, + 29,0,1831,1833,5,1124,0,0,1832,1831,1,0,0,0,1832,1833,1,0,0,0,1833, + 1836,1,0,0,0,1834,1837,3,568,284,0,1835,1837,5,42,0,0,1836,1834, + 1,0,0,0,1836,1835,1,0,0,0,1837,1986,1,0,0,0,1838,1840,7,23,0,0,1839, + 1841,5,1124,0,0,1840,1839,1,0,0,0,1840,1841,1,0,0,0,1841,1842,1, + 0,0,0,1842,1986,7,24,0,0,1843,1845,5,42,0,0,1844,1843,1,0,0,0,1844, + 1845,1,0,0,0,1845,1846,1,0,0,0,1846,1848,5,27,0,0,1847,1849,5,1124, + 0,0,1848,1847,1,0,0,0,1848,1849,1,0,0,0,1849,1850,1,0,0,0,1850,1986, + 3,570,285,0,1851,1853,5,368,0,0,1852,1854,5,1124,0,0,1853,1852,1, + 0,0,0,1853,1854,1,0,0,0,1854,1855,1,0,0,0,1855,1986,5,1148,0,0,1856, + 1858,5,373,0,0,1857,1859,5,1124,0,0,1858,1857,1,0,0,0,1858,1859, + 1,0,0,0,1859,1860,1,0,0,0,1860,1986,7,25,0,0,1861,1863,5,376,0,0, + 1862,1864,5,1124,0,0,1863,1862,1,0,0,0,1863,1864,1,0,0,0,1864,1865, + 1,0,0,0,1865,1986,5,1148,0,0,1866,1867,7,26,0,0,1867,1869,5,395, + 0,0,1868,1870,5,1124,0,0,1869,1868,1,0,0,0,1869,1870,1,0,0,0,1870, + 1871,1,0,0,0,1871,1986,5,1148,0,0,1872,1874,5,393,0,0,1873,1875, + 5,1124,0,0,1874,1873,1,0,0,0,1874,1875,1,0,0,0,1875,1876,1,0,0,0, + 1876,1986,7,24,0,0,1877,1879,5,405,0,0,1878,1880,5,1124,0,0,1879, + 1878,1,0,0,0,1879,1880,1,0,0,0,1880,1881,1,0,0,0,1881,1986,5,1148, + 0,0,1882,1884,7,27,0,0,1883,1885,5,1124,0,0,1884,1883,1,0,0,0,1884, + 1885,1,0,0,0,1885,1886,1,0,0,0,1886,1986,7,24,0,0,1887,1889,7,28, + 0,0,1888,1890,5,1124,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0,0,1890, + 1891,1,0,0,0,1891,1986,3,590,295,0,1892,1894,5,406,0,0,1893,1895, + 5,1124,0,0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1,0,0,0, + 1896,1986,3,590,295,0,1897,1898,5,81,0,0,1898,1900,5,395,0,0,1899, + 1901,5,1124,0,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902,1, + 0,0,0,1902,1986,5,1148,0,0,1903,1905,5,455,0,0,1904,1906,5,1124, + 0,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906,1907,1,0,0,0,1907,1986, + 7,29,0,0,1908,1910,5,467,0,0,1909,1911,5,1124,0,0,1910,1909,1,0, + 0,0,1910,1911,1,0,0,0,1911,1912,1,0,0,0,1912,1986,3,592,296,0,1913, + 1915,5,500,0,0,1914,1916,5,1124,0,0,1915,1914,1,0,0,0,1915,1916, + 1,0,0,0,1916,1917,1,0,0,0,1917,1986,3,590,295,0,1918,1920,5,510, + 0,0,1919,1921,5,1124,0,0,1920,1919,1,0,0,0,1920,1921,1,0,0,0,1921, + 1922,1,0,0,0,1922,1986,3,590,295,0,1923,1925,5,543,0,0,1924,1926, + 5,1124,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926,1927,1,0,0,0, + 1927,1986,7,13,0,0,1928,1930,5,551,0,0,1929,1931,5,1124,0,0,1930, + 1929,1,0,0,0,1930,1931,1,0,0,0,1931,1932,1,0,0,0,1932,1986,5,1148, + 0,0,1933,1935,5,602,0,0,1934,1936,5,1124,0,0,1935,1934,1,0,0,0,1935, + 1936,1,0,0,0,1936,1937,1,0,0,0,1937,1986,7,30,0,0,1938,1939,5,629, + 0,0,1939,1986,5,653,0,0,1940,1942,5,1000,0,0,1941,1943,5,1124,0, + 0,1942,1941,1,0,0,0,1942,1943,1,0,0,0,1943,1944,1,0,0,0,1944,1986, + 5,1148,0,0,1945,1947,5,631,0,0,1946,1948,5,1124,0,0,1947,1946,1, + 0,0,0,1947,1948,1,0,0,0,1948,1949,1,0,0,0,1949,1986,7,13,0,0,1950, + 1952,5,632,0,0,1951,1953,5,1124,0,0,1952,1951,1,0,0,0,1952,1953, + 1,0,0,0,1953,1954,1,0,0,0,1954,1986,7,13,0,0,1955,1957,5,633,0,0, + 1956,1958,5,1124,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958,1961, + 1,0,0,0,1959,1962,5,42,0,0,1960,1962,3,590,295,0,1961,1959,1,0,0, + 0,1961,1960,1,0,0,0,1962,1986,1,0,0,0,1963,1964,5,647,0,0,1964,1966, + 3,584,292,0,1965,1967,3,108,54,0,1966,1965,1,0,0,0,1966,1967,1,0, + 0,0,1967,1986,1,0,0,0,1968,1969,5,648,0,0,1969,1970,5,1124,0,0,1970, + 1986,3,106,53,0,1971,1986,3,108,54,0,1972,1974,5,654,0,0,1973,1975, + 5,1124,0,0,1974,1973,1,0,0,0,1974,1975,1,0,0,0,1975,1976,1,0,0,0, + 1976,1986,7,24,0,0,1977,1979,5,180,0,0,1978,1980,5,1124,0,0,1979, + 1978,1,0,0,0,1979,1980,1,0,0,0,1980,1981,1,0,0,0,1981,1982,5,1133, + 0,0,1982,1983,3,620,310,0,1983,1984,5,1134,0,0,1984,1986,1,0,0,0, + 1985,1800,1,0,0,0,1985,1807,1,0,0,0,1985,1812,1,0,0,0,1985,1817, + 1,0,0,0,1985,1822,1,0,0,0,1985,1828,1,0,0,0,1985,1838,1,0,0,0,1985, + 1844,1,0,0,0,1985,1851,1,0,0,0,1985,1856,1,0,0,0,1985,1861,1,0,0, + 0,1985,1866,1,0,0,0,1985,1872,1,0,0,0,1985,1877,1,0,0,0,1985,1882, + 1,0,0,0,1985,1887,1,0,0,0,1985,1892,1,0,0,0,1985,1897,1,0,0,0,1985, + 1903,1,0,0,0,1985,1908,1,0,0,0,1985,1913,1,0,0,0,1985,1918,1,0,0, + 0,1985,1923,1,0,0,0,1985,1928,1,0,0,0,1985,1933,1,0,0,0,1985,1938, + 1,0,0,0,1985,1940,1,0,0,0,1985,1945,1,0,0,0,1985,1950,1,0,0,0,1985, + 1955,1,0,0,0,1985,1963,1,0,0,0,1985,1968,1,0,0,0,1985,1971,1,0,0, + 0,1985,1972,1,0,0,0,1985,1977,1,0,0,0,1986,105,1,0,0,0,1987,1988, + 7,31,0,0,1988,107,1,0,0,0,1989,1990,5,636,0,0,1990,1991,7,18,0,0, + 1991,109,1,0,0,0,1992,1993,5,129,0,0,1993,1994,5,19,0,0,1994,1997, + 3,112,56,0,1995,1996,5,550,0,0,1996,1998,3,590,295,0,1997,1995,1, + 0,0,0,1997,1998,1,0,0,0,1998,2006,1,0,0,0,1999,2000,5,641,0,0,2000, + 2001,5,19,0,0,2001,2004,3,114,57,0,2002,2003,5,642,0,0,2003,2005, + 3,590,295,0,2004,2002,1,0,0,0,2004,2005,1,0,0,0,2005,2007,1,0,0, + 0,2006,1999,1,0,0,0,2006,2007,1,0,0,0,2007,2019,1,0,0,0,2008,2009, + 5,1133,0,0,2009,2014,3,116,58,0,2010,2011,5,1135,0,0,2011,2013,3, + 116,58,0,2012,2010,1,0,0,0,2013,2016,1,0,0,0,2014,2012,1,0,0,0,2014, + 2015,1,0,0,0,2015,2017,1,0,0,0,2016,2014,1,0,0,0,2017,2018,5,1134, + 0,0,2018,2020,1,0,0,0,2019,2008,1,0,0,0,2019,2020,1,0,0,0,2020,111, + 1,0,0,0,2021,2023,5,100,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0, + 2023,2024,1,0,0,0,2024,2025,5,443,0,0,2025,2026,5,1133,0,0,2026, + 2027,3,688,344,0,2027,2028,5,1134,0,0,2028,2068,1,0,0,0,2029,2031, + 5,100,0,0,2030,2029,1,0,0,0,2030,2031,1,0,0,0,2031,2032,1,0,0,0, + 2032,2036,5,91,0,0,2033,2034,5,336,0,0,2034,2035,5,1124,0,0,2035, + 2037,7,32,0,0,2036,2033,1,0,0,0,2036,2037,1,0,0,0,2037,2038,1,0, + 0,0,2038,2040,5,1133,0,0,2039,2041,3,616,308,0,2040,2039,1,0,0,0, + 2040,2041,1,0,0,0,2041,2042,1,0,0,0,2042,2068,5,1134,0,0,2043,2053, + 5,133,0,0,2044,2045,5,1133,0,0,2045,2046,3,688,344,0,2046,2047,5, + 1134,0,0,2047,2054,1,0,0,0,2048,2049,5,365,0,0,2049,2050,5,1133, + 0,0,2050,2051,3,616,308,0,2051,2052,5,1134,0,0,2052,2054,1,0,0,0, + 2053,2044,1,0,0,0,2053,2048,1,0,0,0,2054,2068,1,0,0,0,2055,2065, + 5,473,0,0,2056,2057,5,1133,0,0,2057,2058,3,688,344,0,2058,2059,5, + 1134,0,0,2059,2066,1,0,0,0,2060,2061,5,365,0,0,2061,2062,5,1133, + 0,0,2062,2063,3,616,308,0,2063,2064,5,1134,0,0,2064,2066,1,0,0,0, + 2065,2056,1,0,0,0,2065,2060,1,0,0,0,2066,2068,1,0,0,0,2067,2022, + 1,0,0,0,2067,2030,1,0,0,0,2067,2043,1,0,0,0,2067,2055,1,0,0,0,2068, + 113,1,0,0,0,2069,2071,5,100,0,0,2070,2069,1,0,0,0,2070,2071,1,0, + 0,0,2071,2072,1,0,0,0,2072,2073,5,443,0,0,2073,2074,5,1133,0,0,2074, + 2075,3,688,344,0,2075,2076,5,1134,0,0,2076,2091,1,0,0,0,2077,2079, + 5,100,0,0,2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0, + 2080,2084,5,91,0,0,2081,2082,5,336,0,0,2082,2083,5,1124,0,0,2083, + 2085,7,32,0,0,2084,2081,1,0,0,0,2084,2085,1,0,0,0,2085,2086,1,0, + 0,0,2086,2087,5,1133,0,0,2087,2088,3,616,308,0,2088,2089,5,1134, + 0,0,2089,2091,1,0,0,0,2090,2070,1,0,0,0,2090,2078,1,0,0,0,2091,115, + 1,0,0,0,2092,2093,5,129,0,0,2093,2094,3,584,292,0,2094,2095,5,188, + 0,0,2095,2096,5,471,0,0,2096,2097,5,651,0,0,2097,2098,5,1133,0,0, + 2098,2103,3,118,59,0,2099,2100,5,1135,0,0,2100,2102,3,118,59,0,2101, + 2099,1,0,0,0,2102,2105,1,0,0,0,2103,2101,1,0,0,0,2103,2104,1,0,0, + 0,2104,2106,1,0,0,0,2105,2103,1,0,0,0,2106,2110,5,1134,0,0,2107, + 2109,3,124,62,0,2108,2107,1,0,0,0,2109,2112,1,0,0,0,2110,2108,1, + 0,0,0,2110,2111,1,0,0,0,2111,2124,1,0,0,0,2112,2110,1,0,0,0,2113, + 2114,5,1133,0,0,2114,2119,3,122,61,0,2115,2116,5,1135,0,0,2116,2118, + 3,122,61,0,2117,2115,1,0,0,0,2118,2121,1,0,0,0,2119,2117,1,0,0,0, + 2119,2120,1,0,0,0,2120,2122,1,0,0,0,2121,2119,1,0,0,0,2122,2123, + 5,1134,0,0,2123,2125,1,0,0,0,2124,2113,1,0,0,0,2124,2125,1,0,0,0, + 2125,2239,1,0,0,0,2126,2127,5,129,0,0,2127,2128,3,584,292,0,2128, + 2129,5,188,0,0,2129,2130,5,471,0,0,2130,2131,5,651,0,0,2131,2135, + 3,118,59,0,2132,2134,3,124,62,0,2133,2132,1,0,0,0,2134,2137,1,0, + 0,0,2135,2133,1,0,0,0,2135,2136,1,0,0,0,2136,2149,1,0,0,0,2137,2135, + 1,0,0,0,2138,2139,5,1133,0,0,2139,2144,3,122,61,0,2140,2141,5,1135, + 0,0,2141,2143,3,122,61,0,2142,2140,1,0,0,0,2143,2146,1,0,0,0,2144, + 2142,1,0,0,0,2144,2145,1,0,0,0,2145,2147,1,0,0,0,2146,2144,1,0,0, + 0,2147,2148,5,1134,0,0,2148,2150,1,0,0,0,2149,2138,1,0,0,0,2149, + 2150,1,0,0,0,2150,2239,1,0,0,0,2151,2152,5,129,0,0,2152,2153,3,584, + 292,0,2153,2154,5,188,0,0,2154,2155,5,80,0,0,2155,2156,5,1133,0, + 0,2156,2161,3,118,59,0,2157,2158,5,1135,0,0,2158,2160,3,118,59,0, + 2159,2157,1,0,0,0,2160,2163,1,0,0,0,2161,2159,1,0,0,0,2161,2162, + 1,0,0,0,2162,2164,1,0,0,0,2163,2161,1,0,0,0,2164,2168,5,1134,0,0, + 2165,2167,3,124,62,0,2166,2165,1,0,0,0,2167,2170,1,0,0,0,2168,2166, + 1,0,0,0,2168,2169,1,0,0,0,2169,2182,1,0,0,0,2170,2168,1,0,0,0,2171, + 2172,5,1133,0,0,2172,2177,3,122,61,0,2173,2174,5,1135,0,0,2174,2176, + 3,122,61,0,2175,2173,1,0,0,0,2176,2179,1,0,0,0,2177,2175,1,0,0,0, + 2177,2178,1,0,0,0,2178,2180,1,0,0,0,2179,2177,1,0,0,0,2180,2181, + 5,1134,0,0,2181,2183,1,0,0,0,2182,2171,1,0,0,0,2182,2183,1,0,0,0, + 2183,2239,1,0,0,0,2184,2185,5,129,0,0,2185,2186,3,584,292,0,2186, + 2187,5,188,0,0,2187,2188,5,80,0,0,2188,2189,5,1133,0,0,2189,2194, + 3,120,60,0,2190,2191,5,1135,0,0,2191,2193,3,120,60,0,2192,2190,1, + 0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194,2195,1,0,0,0,2195, + 2197,1,0,0,0,2196,2194,1,0,0,0,2197,2201,5,1134,0,0,2198,2200,3, + 124,62,0,2199,2198,1,0,0,0,2200,2203,1,0,0,0,2201,2199,1,0,0,0,2201, + 2202,1,0,0,0,2202,2215,1,0,0,0,2203,2201,1,0,0,0,2204,2205,5,1133, + 0,0,2205,2210,3,122,61,0,2206,2207,5,1135,0,0,2207,2209,3,122,61, + 0,2208,2206,1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210,2211, + 1,0,0,0,2211,2213,1,0,0,0,2212,2210,1,0,0,0,2213,2214,5,1134,0,0, + 2214,2216,1,0,0,0,2215,2204,1,0,0,0,2215,2216,1,0,0,0,2216,2239, + 1,0,0,0,2217,2218,5,129,0,0,2218,2222,3,584,292,0,2219,2221,3,124, + 62,0,2220,2219,1,0,0,0,2221,2224,1,0,0,0,2222,2220,1,0,0,0,2222, + 2223,1,0,0,0,2223,2236,1,0,0,0,2224,2222,1,0,0,0,2225,2226,5,1133, + 0,0,2226,2231,3,122,61,0,2227,2228,5,1135,0,0,2228,2230,3,122,61, + 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,2234,1,0,0,0,2233,2231,1,0,0,0,2234,2235,5,1134,0,0, + 2235,2237,1,0,0,0,2236,2225,1,0,0,0,2236,2237,1,0,0,0,2237,2239, + 1,0,0,0,2238,2092,1,0,0,0,2238,2126,1,0,0,0,2238,2151,1,0,0,0,2238, + 2184,1,0,0,0,2238,2217,1,0,0,0,2239,117,1,0,0,0,2240,2244,3,602, + 301,0,2241,2244,3,688,344,0,2242,2244,5,110,0,0,2243,2240,1,0,0, + 0,2243,2241,1,0,0,0,2243,2242,1,0,0,0,2244,119,1,0,0,0,2245,2246, + 5,1133,0,0,2246,2249,3,118,59,0,2247,2248,5,1135,0,0,2248,2250,3, + 118,59,0,2249,2247,1,0,0,0,2250,2251,1,0,0,0,2251,2249,1,0,0,0,2251, + 2252,1,0,0,0,2252,2253,1,0,0,0,2253,2254,5,1134,0,0,2254,121,1,0, + 0,0,2255,2256,5,641,0,0,2256,2260,3,584,292,0,2257,2259,3,124,62, + 0,2258,2257,1,0,0,0,2259,2262,1,0,0,0,2260,2258,1,0,0,0,2260,2261, + 1,0,0,0,2261,123,1,0,0,0,2262,2260,1,0,0,0,2263,2265,5,42,0,0,2264, + 2263,1,0,0,0,2264,2265,1,0,0,0,2265,2267,1,0,0,0,2266,2268,5,636, + 0,0,2267,2266,1,0,0,0,2267,2268,1,0,0,0,2268,2269,1,0,0,0,2269,2271, + 5,409,0,0,2270,2272,5,1124,0,0,2271,2270,1,0,0,0,2271,2272,1,0,0, + 0,2272,2273,1,0,0,0,2273,2312,3,572,286,0,2274,2276,5,368,0,0,2275, + 2277,5,1124,0,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277,2278,1, + 0,0,0,2278,2312,5,1148,0,0,2279,2280,5,388,0,0,2280,2282,5,395,0, + 0,2281,2283,5,1124,0,0,2282,2281,1,0,0,0,2282,2283,1,0,0,0,2283, + 2284,1,0,0,0,2284,2312,5,1148,0,0,2285,2286,5,81,0,0,2286,2288,5, + 395,0,0,2287,2289,5,1124,0,0,2288,2287,1,0,0,0,2288,2289,1,0,0,0, + 2289,2290,1,0,0,0,2290,2312,5,1148,0,0,2291,2293,5,500,0,0,2292, + 2294,5,1124,0,0,2293,2292,1,0,0,0,2293,2294,1,0,0,0,2294,2295,1, + 0,0,0,2295,2312,3,590,295,0,2296,2298,5,510,0,0,2297,2299,5,1124, + 0,0,2298,2297,1,0,0,0,2298,2299,1,0,0,0,2299,2300,1,0,0,0,2300,2312, + 3,590,295,0,2301,2303,5,647,0,0,2302,2304,5,1124,0,0,2303,2302,1, + 0,0,0,2303,2304,1,0,0,0,2304,2305,1,0,0,0,2305,2312,3,584,292,0, + 2306,2308,5,528,0,0,2307,2309,5,1124,0,0,2308,2307,1,0,0,0,2308, + 2309,1,0,0,0,2309,2310,1,0,0,0,2310,2312,3,584,292,0,2311,2264,1, + 0,0,0,2311,2274,1,0,0,0,2311,2279,1,0,0,0,2311,2285,1,0,0,0,2311, + 2291,1,0,0,0,2311,2296,1,0,0,0,2311,2301,1,0,0,0,2311,2306,1,0,0, + 0,2312,125,1,0,0,0,2313,2314,5,7,0,0,2314,2316,7,0,0,0,2315,2317, + 3,584,292,0,2316,2315,1,0,0,0,2316,2317,1,0,0,0,2317,2319,1,0,0, + 0,2318,2320,3,56,28,0,2319,2318,1,0,0,0,2320,2321,1,0,0,0,2321,2319, + 1,0,0,0,2321,2322,1,0,0,0,2322,2332,1,0,0,0,2323,2324,5,7,0,0,2324, + 2325,7,0,0,0,2325,2326,3,584,292,0,2326,2327,5,664,0,0,2327,2328, + 5,388,0,0,2328,2329,5,395,0,0,2329,2330,5,516,0,0,2330,2332,1,0, + 0,0,2331,2313,1,0,0,0,2331,2323,1,0,0,0,2332,127,1,0,0,0,2333,2335, + 5,7,0,0,2334,2336,3,62,31,0,2335,2334,1,0,0,0,2335,2336,1,0,0,0, + 2336,2337,1,0,0,0,2337,2338,5,415,0,0,2338,2342,3,548,274,0,2339, + 2340,5,118,0,0,2340,2341,5,605,0,0,2341,2343,3,64,32,0,2342,2339, + 1,0,0,0,2342,2343,1,0,0,0,2343,2350,1,0,0,0,2344,2345,5,118,0,0, + 2345,2347,5,371,0,0,2346,2348,5,114,0,0,2347,2346,1,0,0,0,2347,2348, + 1,0,0,0,2348,2349,1,0,0,0,2349,2351,5,561,0,0,2350,2344,1,0,0,0, + 2350,2351,1,0,0,0,2351,2355,1,0,0,0,2352,2353,5,139,0,0,2353,2354, + 5,175,0,0,2354,2356,3,548,274,0,2355,2352,1,0,0,0,2355,2356,1,0, + 0,0,2356,2358,1,0,0,0,2357,2359,3,72,36,0,2358,2357,1,0,0,0,2358, + 2359,1,0,0,0,2359,2362,1,0,0,0,2360,2361,5,368,0,0,2361,2363,5,1148, + 0,0,2362,2360,1,0,0,0,2362,2363,1,0,0,0,2363,2366,1,0,0,0,2364,2365, + 5,399,0,0,2365,2367,3,386,193,0,2366,2364,1,0,0,0,2366,2367,1,0, + 0,0,2367,129,1,0,0,0,2368,2369,5,7,0,0,2369,2370,5,437,0,0,2370, + 2374,3,548,274,0,2371,2373,3,82,41,0,2372,2371,1,0,0,0,2373,2376, + 1,0,0,0,2374,2372,1,0,0,0,2374,2375,1,0,0,0,2375,131,1,0,0,0,2376, + 2374,1,0,0,0,2377,2378,5,7,0,0,2378,2379,5,457,0,0,2379,2380,5,599, + 0,0,2380,2381,5,791,0,0,2381,2382,5,477,0,0,2382,2383,5,91,0,0,2383, + 133,1,0,0,0,2384,2385,5,7,0,0,2385,2386,5,475,0,0,2386,2387,5,73, + 0,0,2387,2388,3,584,292,0,2388,2389,5,5,0,0,2389,2390,5,659,0,0, + 2390,2396,5,1148,0,0,2391,2393,5,453,0,0,2392,2394,5,1124,0,0,2393, + 2392,1,0,0,0,2393,2394,1,0,0,0,2394,2395,1,0,0,0,2395,2397,3,592, + 296,0,2396,2391,1,0,0,0,2396,2397,1,0,0,0,2397,2399,1,0,0,0,2398, + 2400,5,674,0,0,2399,2398,1,0,0,0,2399,2400,1,0,0,0,2400,2401,1,0, + 0,0,2401,2403,5,409,0,0,2402,2404,5,1124,0,0,2403,2402,1,0,0,0,2403, + 2404,1,0,0,0,2404,2405,1,0,0,0,2405,2406,3,572,286,0,2406,135,1, + 0,0,0,2407,2408,5,7,0,0,2408,2409,5,131,0,0,2409,2413,3,548,274, + 0,2410,2412,3,82,41,0,2411,2410,1,0,0,0,2412,2415,1,0,0,0,2413,2411, + 1,0,0,0,2413,2414,1,0,0,0,2414,137,1,0,0,0,2415,2413,1,0,0,0,2416, + 2417,5,7,0,0,2417,2418,5,608,0,0,2418,2419,3,584,292,0,2419,2420, + 5,541,0,0,2420,2421,5,1133,0,0,2421,2426,3,84,42,0,2422,2423,5,1135, + 0,0,2423,2425,3,84,42,0,2424,2422,1,0,0,0,2425,2428,1,0,0,0,2426, + 2424,1,0,0,0,2426,2427,1,0,0,0,2427,2429,1,0,0,0,2428,2426,1,0,0, + 0,2429,2430,5,1134,0,0,2430,139,1,0,0,0,2431,2433,5,7,0,0,2432,2434, + 7,1,0,0,2433,2432,1,0,0,0,2433,2434,1,0,0,0,2434,2436,1,0,0,0,2435, + 2437,5,78,0,0,2436,2435,1,0,0,0,2436,2437,1,0,0,0,2437,2438,1,0, + 0,0,2438,2439,5,172,0,0,2439,2441,3,550,275,0,2440,2442,3,646,323, + 0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442,2451,1,0,0,0,2443,2448, + 3,146,73,0,2444,2445,5,1135,0,0,2445,2447,3,146,73,0,2446,2444,1, + 0,0,0,2447,2450,1,0,0,0,2448,2446,1,0,0,0,2448,2449,1,0,0,0,2449, + 2452,1,0,0,0,2450,2448,1,0,0,0,2451,2443,1,0,0,0,2451,2452,1,0,0, + 0,2452,2454,1,0,0,0,2453,2455,3,110,55,0,2454,2453,1,0,0,0,2454, + 2455,1,0,0,0,2455,141,1,0,0,0,2456,2457,5,7,0,0,2457,2458,5,647, + 0,0,2458,2459,3,584,292,0,2459,2460,7,33,0,0,2460,2461,5,389,0,0, + 2461,2465,5,1148,0,0,2462,2463,5,453,0,0,2463,2464,5,1124,0,0,2464, + 2466,3,592,296,0,2465,2462,1,0,0,0,2465,2466,1,0,0,0,2466,2468,1, + 0,0,0,2467,2469,5,674,0,0,2468,2467,1,0,0,0,2468,2469,1,0,0,0,2469, + 2470,1,0,0,0,2470,2472,5,409,0,0,2471,2473,5,1124,0,0,2472,2471, + 1,0,0,0,2472,2473,1,0,0,0,2473,2474,1,0,0,0,2474,2475,3,572,286, + 0,2475,143,1,0,0,0,2476,2480,5,7,0,0,2477,2478,5,336,0,0,2478,2479, + 5,1124,0,0,2479,2481,7,10,0,0,2480,2477,1,0,0,0,2480,2481,1,0,0, + 0,2481,2483,1,0,0,0,2482,2484,3,62,31,0,2483,2482,1,0,0,0,2483,2484, + 1,0,0,0,2484,2488,1,0,0,0,2485,2486,5,160,0,0,2486,2487,5,606,0, + 0,2487,2489,7,11,0,0,2488,2485,1,0,0,0,2488,2489,1,0,0,0,2489,2490, + 1,0,0,0,2490,2491,5,671,0,0,2491,2496,3,548,274,0,2492,2493,5,1133, + 0,0,2493,2494,3,616,308,0,2494,2495,5,1134,0,0,2495,2497,1,0,0,0, + 2496,2492,1,0,0,0,2496,2497,1,0,0,0,2497,2498,1,0,0,0,2498,2499, + 5,12,0,0,2499,2506,3,198,99,0,2500,2502,5,192,0,0,2501,2503,7,12, + 0,0,2502,2501,1,0,0,0,2502,2503,1,0,0,0,2503,2504,1,0,0,0,2504,2505, + 5,26,0,0,2505,2507,5,120,0,0,2506,2500,1,0,0,0,2506,2507,1,0,0,0, + 2507,145,1,0,0,0,2508,2515,3,104,52,0,2509,2511,5,1135,0,0,2510, + 2509,1,0,0,0,2510,2511,1,0,0,0,2511,2512,1,0,0,0,2512,2514,3,104, + 52,0,2513,2510,1,0,0,0,2514,2517,1,0,0,0,2515,2513,1,0,0,0,2515, + 2516,1,0,0,0,2516,2860,1,0,0,0,2517,2515,1,0,0,0,2518,2520,5,5,0, + 0,2519,2521,5,28,0,0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521,2522, + 1,0,0,0,2522,2523,3,584,292,0,2523,2527,3,90,45,0,2524,2528,5,430, + 0,0,2525,2526,5,334,0,0,2526,2528,3,584,292,0,2527,2524,1,0,0,0, + 2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,2860,1,0,0,0,2529,2531, + 5,5,0,0,2530,2532,5,28,0,0,2531,2530,1,0,0,0,2531,2532,1,0,0,0,2532, + 2533,1,0,0,0,2533,2534,5,1133,0,0,2534,2535,3,584,292,0,2535,2542, + 3,90,45,0,2536,2537,5,1135,0,0,2537,2538,3,584,292,0,2538,2539,3, + 90,45,0,2539,2541,1,0,0,0,2540,2536,1,0,0,0,2541,2544,1,0,0,0,2542, + 2540,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2542,1,0,0, + 0,2545,2546,5,1134,0,0,2546,2860,1,0,0,0,2547,2548,5,5,0,0,2548, + 2550,7,20,0,0,2549,2551,3,584,292,0,2550,2549,1,0,0,0,2550,2551, + 1,0,0,0,2551,2553,1,0,0,0,2552,2554,3,74,37,0,2553,2552,1,0,0,0, + 2553,2554,1,0,0,0,2554,2555,1,0,0,0,2555,2559,3,622,311,0,2556,2558, + 3,76,38,0,2557,2556,1,0,0,0,2558,2561,1,0,0,0,2559,2557,1,0,0,0, + 2559,2560,1,0,0,0,2560,2860,1,0,0,0,2561,2559,1,0,0,0,2562,2567, + 5,5,0,0,2563,2565,5,30,0,0,2564,2566,3,584,292,0,2565,2564,1,0,0, + 0,2565,2566,1,0,0,0,2566,2568,1,0,0,0,2567,2563,1,0,0,0,2567,2568, + 1,0,0,0,2568,2569,1,0,0,0,2569,2570,5,130,0,0,2570,2572,5,91,0,0, + 2571,2573,3,584,292,0,2572,2571,1,0,0,0,2572,2573,1,0,0,0,2573,2575, + 1,0,0,0,2574,2576,3,74,37,0,2575,2574,1,0,0,0,2575,2576,1,0,0,0, + 2576,2577,1,0,0,0,2577,2581,3,622,311,0,2578,2580,3,76,38,0,2579, + 2578,1,0,0,0,2580,2583,1,0,0,0,2581,2579,1,0,0,0,2581,2582,1,0,0, + 0,2582,2860,1,0,0,0,2583,2581,1,0,0,0,2584,2589,5,5,0,0,2585,2587, + 5,30,0,0,2586,2588,3,584,292,0,2587,2586,1,0,0,0,2587,2588,1,0,0, + 0,2588,2590,1,0,0,0,2589,2585,1,0,0,0,2589,2590,1,0,0,0,2590,2591, + 1,0,0,0,2591,2593,5,181,0,0,2592,2594,7,20,0,0,2593,2592,1,0,0,0, + 2593,2594,1,0,0,0,2594,2596,1,0,0,0,2595,2597,3,584,292,0,2596,2595, + 1,0,0,0,2596,2597,1,0,0,0,2597,2599,1,0,0,0,2598,2600,3,74,37,0, + 2599,2598,1,0,0,0,2599,2600,1,0,0,0,2600,2601,1,0,0,0,2601,2605, + 3,622,311,0,2602,2604,3,76,38,0,2603,2602,1,0,0,0,2604,2607,1,0, + 0,0,2605,2603,1,0,0,0,2605,2606,1,0,0,0,2606,2860,1,0,0,0,2607,2605, + 1,0,0,0,2608,2609,5,5,0,0,2609,2611,7,22,0,0,2610,2612,7,20,0,0, + 2611,2610,1,0,0,0,2611,2612,1,0,0,0,2612,2614,1,0,0,0,2613,2615, + 3,584,292,0,2614,2613,1,0,0,0,2614,2615,1,0,0,0,2615,2616,1,0,0, + 0,2616,2620,3,622,311,0,2617,2619,3,76,38,0,2618,2617,1,0,0,0,2619, + 2622,1,0,0,0,2620,2618,1,0,0,0,2620,2621,1,0,0,0,2621,2860,1,0,0, + 0,2622,2620,1,0,0,0,2623,2628,5,5,0,0,2624,2626,5,30,0,0,2625,2627, + 3,584,292,0,2626,2625,1,0,0,0,2626,2627,1,0,0,0,2627,2629,1,0,0, + 0,2628,2624,1,0,0,0,2628,2629,1,0,0,0,2629,2630,1,0,0,0,2630,2631, + 5,67,0,0,2631,2633,5,91,0,0,2632,2634,3,584,292,0,2633,2632,1,0, + 0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635,2636,3,622,311,0,2636, + 2637,3,96,48,0,2637,2860,1,0,0,0,2638,2643,5,5,0,0,2639,2641,5,30, + 0,0,2640,2642,3,584,292,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642, + 2644,1,0,0,0,2643,2639,1,0,0,0,2643,2644,1,0,0,0,2644,2645,1,0,0, + 0,2645,2652,5,26,0,0,2646,2653,3,584,292,0,2647,2653,3,594,297,0, + 2648,2649,5,1133,0,0,2649,2650,3,688,344,0,2650,2651,5,1134,0,0, + 2651,2653,1,0,0,0,2652,2646,1,0,0,0,2652,2647,1,0,0,0,2652,2648, + 1,0,0,0,2653,2655,1,0,0,0,2654,2656,5,114,0,0,2655,2654,1,0,0,0, + 2655,2656,1,0,0,0,2656,2658,1,0,0,0,2657,2659,5,57,0,0,2658,2657, + 1,0,0,0,2658,2659,1,0,0,0,2659,2860,1,0,0,0,2660,2665,5,7,0,0,2661, + 2663,5,30,0,0,2662,2664,3,584,292,0,2663,2662,1,0,0,0,2663,2664, + 1,0,0,0,2664,2666,1,0,0,0,2665,2661,1,0,0,0,2665,2666,1,0,0,0,2666, + 2667,1,0,0,0,2667,2674,5,26,0,0,2668,2675,3,584,292,0,2669,2675, + 3,594,297,0,2670,2671,5,1133,0,0,2671,2672,3,688,344,0,2672,2673, + 5,1134,0,0,2673,2675,1,0,0,0,2674,2668,1,0,0,0,2674,2669,1,0,0,0, + 2674,2670,1,0,0,0,2675,2677,1,0,0,0,2676,2678,5,114,0,0,2677,2676, + 1,0,0,0,2677,2678,1,0,0,0,2678,2680,1,0,0,0,2679,2681,5,57,0,0,2680, + 2679,1,0,0,0,2680,2681,1,0,0,0,2681,2860,1,0,0,0,2682,2687,5,5,0, + 0,2683,2685,5,30,0,0,2684,2686,3,584,292,0,2685,2684,1,0,0,0,2685, + 2686,1,0,0,0,2686,2688,1,0,0,0,2687,2683,1,0,0,0,2687,2688,1,0,0, + 0,2688,2689,1,0,0,0,2689,2690,5,26,0,0,2690,2691,5,1133,0,0,2691, + 2692,3,688,344,0,2692,2693,5,1134,0,0,2693,2860,1,0,0,0,2694,2696, + 5,336,0,0,2695,2697,5,1124,0,0,2696,2695,1,0,0,0,2696,2697,1,0,0, + 0,2697,2698,1,0,0,0,2698,2860,7,34,0,0,2699,2701,5,7,0,0,2700,2702, + 5,28,0,0,2701,2700,1,0,0,0,2701,2702,1,0,0,0,2702,2703,1,0,0,0,2703, + 2709,3,584,292,0,2704,2705,5,153,0,0,2705,2706,5,42,0,0,2706,2710, + 3,634,317,0,2707,2708,5,51,0,0,2708,2710,5,42,0,0,2709,2704,1,0, + 0,0,2709,2707,1,0,0,0,2710,2860,1,0,0,0,2711,2713,5,24,0,0,2712, + 2714,5,28,0,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2715,1,0, + 0,0,2715,2716,3,584,292,0,2716,2717,3,584,292,0,2717,2721,3,90,45, + 0,2718,2722,5,430,0,0,2719,2720,5,334,0,0,2720,2722,3,584,292,0, + 2721,2718,1,0,0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722,2860, + 1,0,0,0,2723,2724,5,139,0,0,2724,2725,5,28,0,0,2725,2726,3,584,292, + 0,2726,2727,5,175,0,0,2727,2728,3,584,292,0,2728,2860,1,0,0,0,2729, + 2731,5,103,0,0,2730,2732,5,1124,0,0,2731,2730,1,0,0,0,2731,2732, + 1,0,0,0,2732,2733,1,0,0,0,2733,2860,7,4,0,0,2734,2736,5,512,0,0, + 2735,2737,5,28,0,0,2736,2735,1,0,0,0,2736,2737,1,0,0,0,2737,2738, + 1,0,0,0,2738,2739,3,584,292,0,2739,2743,3,90,45,0,2740,2744,5,430, + 0,0,2741,2742,5,334,0,0,2742,2744,3,584,292,0,2743,2740,1,0,0,0, + 2743,2741,1,0,0,0,2743,2744,1,0,0,0,2744,2860,1,0,0,0,2745,2747, + 5,51,0,0,2746,2748,5,28,0,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0, + 2748,2749,1,0,0,0,2749,2751,3,584,292,0,2750,2752,5,144,0,0,2751, + 2750,1,0,0,0,2751,2752,1,0,0,0,2752,2860,1,0,0,0,2753,2754,5,51, + 0,0,2754,2755,7,35,0,0,2755,2860,3,584,292,0,2756,2757,5,51,0,0, + 2757,2758,5,130,0,0,2758,2860,5,91,0,0,2759,2760,5,51,0,0,2760,2761, + 7,20,0,0,2761,2860,3,584,292,0,2762,2763,5,139,0,0,2763,2764,7,20, + 0,0,2764,2765,3,584,292,0,2765,2766,5,175,0,0,2766,2767,3,584,292, + 0,2767,2860,1,0,0,0,2768,2770,5,7,0,0,2769,2771,5,28,0,0,2770,2769, + 1,0,0,0,2770,2771,1,0,0,0,2771,2772,1,0,0,0,2772,2786,3,584,292, + 0,2773,2774,5,153,0,0,2774,2780,5,42,0,0,2775,2781,3,594,297,0,2776, + 2777,5,1133,0,0,2777,2778,3,688,344,0,2778,2779,5,1134,0,0,2779, + 2781,1,0,0,0,2780,2775,1,0,0,0,2780,2776,1,0,0,0,2781,2787,1,0,0, + 0,2782,2783,5,153,0,0,2783,2787,7,15,0,0,2784,2785,5,51,0,0,2785, + 2787,5,42,0,0,2786,2773,1,0,0,0,2786,2782,1,0,0,0,2786,2784,1,0, + 0,0,2787,2860,1,0,0,0,2788,2789,5,7,0,0,2789,2790,5,81,0,0,2790, + 2791,3,584,292,0,2791,2792,7,15,0,0,2792,2860,1,0,0,0,2793,2794, + 5,51,0,0,2794,2795,5,67,0,0,2795,2796,5,91,0,0,2796,2860,3,584,292, + 0,2797,2798,5,396,0,0,2798,2860,5,92,0,0,2799,2800,5,403,0,0,2800, + 2860,5,92,0,0,2801,2803,5,139,0,0,2802,2804,7,36,0,0,2803,2802,1, + 0,0,0,2803,2804,1,0,0,0,2804,2807,1,0,0,0,2805,2808,3,584,292,0, + 2806,2808,3,548,274,0,2807,2805,1,0,0,0,2807,2806,1,0,0,0,2808,2860, + 1,0,0,0,2809,2810,5,124,0,0,2810,2811,5,19,0,0,2811,2860,3,616,308, + 0,2812,2813,5,32,0,0,2813,2817,5,175,0,0,2814,2818,5,841,0,0,2815, + 2816,5,25,0,0,2816,2818,5,153,0,0,2817,2814,1,0,0,0,2817,2815,1, + 0,0,0,2818,2819,1,0,0,0,2819,2822,3,568,284,0,2820,2821,5,27,0,0, + 2821,2823,3,570,285,0,2822,2820,1,0,0,0,2822,2823,1,0,0,0,2823,2860, + 1,0,0,0,2824,2826,5,42,0,0,2825,2824,1,0,0,0,2825,2826,1,0,0,0,2826, + 2827,1,0,0,0,2827,2828,5,25,0,0,2828,2829,5,153,0,0,2829,2830,5, + 1124,0,0,2830,2834,3,568,284,0,2831,2832,5,27,0,0,2832,2833,5,1124, + 0,0,2833,2835,3,570,285,0,2834,2831,1,0,0,0,2834,2835,1,0,0,0,2835, + 2860,1,0,0,0,2836,2837,5,397,0,0,2837,2860,5,647,0,0,2838,2839,5, + 450,0,0,2839,2860,5,647,0,0,2840,2860,5,66,0,0,2841,2842,7,37,0, + 0,2842,2860,5,668,0,0,2843,2845,5,5,0,0,2844,2846,5,28,0,0,2845, + 2844,1,0,0,0,2845,2846,1,0,0,0,2846,2847,1,0,0,0,2847,2848,5,1133, + 0,0,2848,2853,3,88,44,0,2849,2850,5,1135,0,0,2850,2852,3,88,44,0, + 2851,2849,1,0,0,0,2852,2855,1,0,0,0,2853,2851,1,0,0,0,2853,2854, + 1,0,0,0,2854,2856,1,0,0,0,2855,2853,1,0,0,0,2856,2857,5,1134,0,0, + 2857,2860,1,0,0,0,2858,2860,3,148,74,0,2859,2508,1,0,0,0,2859,2518, + 1,0,0,0,2859,2529,1,0,0,0,2859,2547,1,0,0,0,2859,2562,1,0,0,0,2859, + 2584,1,0,0,0,2859,2608,1,0,0,0,2859,2623,1,0,0,0,2859,2638,1,0,0, + 0,2859,2660,1,0,0,0,2859,2682,1,0,0,0,2859,2694,1,0,0,0,2859,2699, + 1,0,0,0,2859,2711,1,0,0,0,2859,2723,1,0,0,0,2859,2729,1,0,0,0,2859, + 2734,1,0,0,0,2859,2745,1,0,0,0,2859,2753,1,0,0,0,2859,2756,1,0,0, + 0,2859,2759,1,0,0,0,2859,2762,1,0,0,0,2859,2768,1,0,0,0,2859,2788, + 1,0,0,0,2859,2793,1,0,0,0,2859,2797,1,0,0,0,2859,2799,1,0,0,0,2859, + 2801,1,0,0,0,2859,2809,1,0,0,0,2859,2812,1,0,0,0,2859,2825,1,0,0, + 0,2859,2836,1,0,0,0,2859,2838,1,0,0,0,2859,2840,1,0,0,0,2859,2841, + 1,0,0,0,2859,2843,1,0,0,0,2859,2858,1,0,0,0,2860,147,1,0,0,0,2861, + 2862,5,5,0,0,2862,2863,5,129,0,0,2863,2864,5,1133,0,0,2864,2869, + 3,116,58,0,2865,2866,5,1135,0,0,2866,2868,3,116,58,0,2867,2865,1, + 0,0,0,2868,2871,1,0,0,0,2869,2867,1,0,0,0,2869,2870,1,0,0,0,2870, + 2872,1,0,0,0,2871,2869,1,0,0,0,2872,2873,5,1134,0,0,2873,2960,1, + 0,0,0,2874,2875,5,51,0,0,2875,2876,5,129,0,0,2876,2960,3,616,308, + 0,2877,2878,5,397,0,0,2878,2881,5,129,0,0,2879,2882,3,616,308,0, + 2880,2882,5,6,0,0,2881,2879,1,0,0,0,2881,2880,1,0,0,0,2882,2883, + 1,0,0,0,2883,2960,5,647,0,0,2884,2885,5,450,0,0,2885,2888,5,129, + 0,0,2886,2889,3,616,308,0,2887,2889,5,6,0,0,2888,2886,1,0,0,0,2888, + 2887,1,0,0,0,2889,2890,1,0,0,0,2890,2960,5,647,0,0,2891,2892,5,656, + 0,0,2892,2895,5,129,0,0,2893,2896,3,616,308,0,2894,2896,5,6,0,0, + 2895,2893,1,0,0,0,2895,2894,1,0,0,0,2896,2960,1,0,0,0,2897,2898, + 5,363,0,0,2898,2899,5,129,0,0,2899,2960,3,590,295,0,2900,2901,5, + 579,0,0,2901,2902,5,129,0,0,2902,2903,3,616,308,0,2903,2904,5,87, + 0,0,2904,2905,5,1133,0,0,2905,2910,3,116,58,0,2906,2907,5,1135,0, + 0,2907,2909,3,116,58,0,2908,2906,1,0,0,0,2909,2912,1,0,0,0,2910, + 2908,1,0,0,0,2910,2911,1,0,0,0,2911,2913,1,0,0,0,2912,2910,1,0,0, + 0,2913,2914,5,1134,0,0,2914,2960,1,0,0,0,2915,2916,5,418,0,0,2916, + 2917,5,129,0,0,2917,2918,3,584,292,0,2918,2919,5,192,0,0,2919,2920, + 5,172,0,0,2920,2923,3,550,275,0,2921,2922,7,37,0,0,2922,2924,5,668, + 0,0,2923,2921,1,0,0,0,2923,2924,1,0,0,0,2924,2960,1,0,0,0,2925,2926, + 5,9,0,0,2926,2929,5,129,0,0,2927,2930,3,616,308,0,2928,2930,5,6, + 0,0,2929,2927,1,0,0,0,2929,2928,1,0,0,0,2930,2960,1,0,0,0,2931,2932, + 5,26,0,0,2932,2935,5,129,0,0,2933,2936,3,616,308,0,2934,2936,5,6, + 0,0,2935,2933,1,0,0,0,2935,2934,1,0,0,0,2936,2960,1,0,0,0,2937,2938, + 5,119,0,0,2938,2941,5,129,0,0,2939,2942,3,616,308,0,2940,2942,5, + 6,0,0,2941,2939,1,0,0,0,2941,2940,1,0,0,0,2942,2960,1,0,0,0,2943, + 2944,5,569,0,0,2944,2947,5,129,0,0,2945,2948,3,616,308,0,2946,2948, + 5,6,0,0,2947,2945,1,0,0,0,2947,2946,1,0,0,0,2948,2960,1,0,0,0,2949, + 2950,5,580,0,0,2950,2953,5,129,0,0,2951,2954,3,616,308,0,2952,2954, + 5,6,0,0,2953,2951,1,0,0,0,2953,2952,1,0,0,0,2954,2960,1,0,0,0,2955, + 2956,5,578,0,0,2956,2960,5,549,0,0,2957,2958,5,664,0,0,2958,2960, + 5,549,0,0,2959,2861,1,0,0,0,2959,2874,1,0,0,0,2959,2877,1,0,0,0, + 2959,2884,1,0,0,0,2959,2891,1,0,0,0,2959,2897,1,0,0,0,2959,2900, + 1,0,0,0,2959,2915,1,0,0,0,2959,2925,1,0,0,0,2959,2931,1,0,0,0,2959, + 2937,1,0,0,0,2959,2943,1,0,0,0,2959,2949,1,0,0,0,2959,2955,1,0,0, + 0,2959,2957,1,0,0,0,2960,149,1,0,0,0,2961,2962,5,51,0,0,2962,2964, + 7,0,0,0,2963,2965,3,640,320,0,2964,2963,1,0,0,0,2964,2965,1,0,0, + 0,2965,2966,1,0,0,0,2966,2967,3,584,292,0,2967,151,1,0,0,0,2968, + 2969,5,51,0,0,2969,2971,5,415,0,0,2970,2972,3,640,320,0,2971,2970, + 1,0,0,0,2971,2972,1,0,0,0,2972,2973,1,0,0,0,2973,2974,3,548,274, + 0,2974,153,1,0,0,0,2975,2976,5,51,0,0,2976,2978,5,81,0,0,2977,2979, + 7,1,0,0,2978,2977,1,0,0,0,2978,2979,1,0,0,0,2979,2980,1,0,0,0,2980, + 2981,3,584,292,0,2981,2982,5,118,0,0,2982,2995,3,550,275,0,2983, + 2985,5,336,0,0,2984,2986,5,1124,0,0,2985,2984,1,0,0,0,2985,2986, + 1,0,0,0,2986,2987,1,0,0,0,2987,2994,7,3,0,0,2988,2990,5,103,0,0, + 2989,2991,5,1124,0,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991,2992, + 1,0,0,0,2992,2994,7,4,0,0,2993,2983,1,0,0,0,2993,2988,1,0,0,0,2994, + 2997,1,0,0,0,2995,2993,1,0,0,0,2995,2996,1,0,0,0,2996,155,1,0,0, + 0,2997,2995,1,0,0,0,2998,2999,5,51,0,0,2999,3000,5,475,0,0,3000, + 3001,5,73,0,0,3001,3002,3,584,292,0,3002,3003,5,409,0,0,3003,3004, + 5,1124,0,0,3004,3005,3,572,286,0,3005,157,1,0,0,0,3006,3007,5,51, + 0,0,3007,3009,5,131,0,0,3008,3010,3,640,320,0,3009,3008,1,0,0,0, + 3009,3010,1,0,0,0,3010,3011,1,0,0,0,3011,3012,3,548,274,0,3012,159, + 1,0,0,0,3013,3014,5,51,0,0,3014,3016,5,437,0,0,3015,3017,3,640,320, + 0,3016,3015,1,0,0,0,3016,3017,1,0,0,0,3017,3018,1,0,0,0,3018,3019, + 3,548,274,0,3019,161,1,0,0,0,3020,3021,5,51,0,0,3021,3023,5,608, + 0,0,3022,3024,3,640,320,0,3023,3022,1,0,0,0,3023,3024,1,0,0,0,3024, + 3025,1,0,0,0,3025,3026,3,584,292,0,3026,163,1,0,0,0,3027,3029,5, + 51,0,0,3028,3030,5,649,0,0,3029,3028,1,0,0,0,3029,3030,1,0,0,0,3030, + 3031,1,0,0,0,3031,3033,5,172,0,0,3032,3034,3,640,320,0,3033,3032, + 1,0,0,0,3033,3034,1,0,0,0,3034,3035,1,0,0,0,3035,3037,3,620,310, + 0,3036,3038,7,38,0,0,3037,3036,1,0,0,0,3037,3038,1,0,0,0,3038,165, + 1,0,0,0,3039,3040,5,51,0,0,3040,3041,5,647,0,0,3041,3047,3,584,292, + 0,3042,3044,5,409,0,0,3043,3045,5,1124,0,0,3044,3043,1,0,0,0,3044, + 3045,1,0,0,0,3045,3046,1,0,0,0,3046,3048,3,572,286,0,3047,3042,1, + 0,0,0,3047,3048,1,0,0,0,3048,167,1,0,0,0,3049,3050,5,51,0,0,3050, + 3052,5,177,0,0,3051,3053,3,640,320,0,3052,3051,1,0,0,0,3052,3053, + 1,0,0,0,3053,3054,1,0,0,0,3054,3055,3,548,274,0,3055,169,1,0,0,0, + 3056,3057,5,51,0,0,3057,3059,5,671,0,0,3058,3060,3,640,320,0,3059, + 3058,1,0,0,0,3059,3060,1,0,0,0,3060,3061,1,0,0,0,3061,3066,3,548, + 274,0,3062,3063,5,1135,0,0,3063,3065,3,548,274,0,3064,3062,1,0,0, + 0,3065,3068,1,0,0,0,3066,3064,1,0,0,0,3066,3067,1,0,0,0,3067,3070, + 1,0,0,0,3068,3066,1,0,0,0,3069,3071,7,38,0,0,3070,3069,1,0,0,0,3070, + 3071,1,0,0,0,3071,171,1,0,0,0,3072,3073,5,51,0,0,3073,3075,5,596, + 0,0,3074,3076,3,640,320,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076, + 3077,1,0,0,0,3077,3082,3,554,277,0,3078,3079,5,1135,0,0,3079,3081, + 3,554,277,0,3080,3078,1,0,0,0,3081,3084,1,0,0,0,3082,3080,1,0,0, + 0,3082,3083,1,0,0,0,3083,173,1,0,0,0,3084,3082,1,0,0,0,3085,3086, + 5,153,0,0,3086,3087,5,42,0,0,3087,3098,5,596,0,0,3088,3099,5,529, + 0,0,3089,3099,5,6,0,0,3090,3095,3,554,277,0,3091,3092,5,1135,0,0, + 3092,3094,3,554,277,0,3093,3091,1,0,0,0,3094,3097,1,0,0,0,3095,3093, + 1,0,0,0,3095,3096,1,0,0,0,3096,3099,1,0,0,0,3097,3095,1,0,0,0,3098, + 3088,1,0,0,0,3098,3089,1,0,0,0,3098,3090,1,0,0,0,3099,3100,1,0,0, + 0,3100,3103,5,175,0,0,3101,3104,3,564,282,0,3102,3104,3,584,292, + 0,3103,3101,1,0,0,0,3103,3102,1,0,0,0,3104,3112,1,0,0,0,3105,3108, + 5,1135,0,0,3106,3109,3,564,282,0,3107,3109,3,584,292,0,3108,3106, + 1,0,0,0,3108,3107,1,0,0,0,3109,3111,1,0,0,0,3110,3105,1,0,0,0,3111, + 3114,1,0,0,0,3112,3110,1,0,0,0,3112,3113,1,0,0,0,3113,3119,1,0,0, + 0,3114,3112,1,0,0,0,3115,3116,5,153,0,0,3116,3117,5,596,0,0,3117, + 3119,3,432,216,0,3118,3085,1,0,0,0,3118,3115,1,0,0,0,3119,175,1, + 0,0,0,3120,3121,5,139,0,0,3121,3122,5,172,0,0,3122,3127,3,178,89, + 0,3123,3124,5,1135,0,0,3124,3126,3,178,89,0,3125,3123,1,0,0,0,3126, + 3129,1,0,0,0,3127,3125,1,0,0,0,3127,3128,1,0,0,0,3128,177,1,0,0, + 0,3129,3127,1,0,0,0,3130,3131,3,550,275,0,3131,3132,5,175,0,0,3132, + 3133,3,550,275,0,3133,179,1,0,0,0,3134,3136,5,656,0,0,3135,3137, + 5,172,0,0,3136,3135,1,0,0,0,3136,3137,1,0,0,0,3137,3138,1,0,0,0, + 3138,3139,3,550,275,0,3139,181,1,0,0,0,3140,3141,5,20,0,0,3141,3148, + 3,548,274,0,3142,3145,5,1133,0,0,3143,3146,3,628,314,0,3144,3146, + 3,624,312,0,3145,3143,1,0,0,0,3145,3144,1,0,0,0,3145,3146,1,0,0, + 0,3146,3147,1,0,0,0,3147,3149,5,1134,0,0,3148,3142,1,0,0,0,3148, + 3149,1,0,0,0,3149,183,1,0,0,0,3150,3153,3,212,106,0,3151,3153,3, + 214,107,0,3152,3150,1,0,0,0,3152,3151,1,0,0,0,3153,185,1,0,0,0,3154, + 3155,5,399,0,0,3155,3156,3,624,312,0,3156,187,1,0,0,0,3157,3162, + 3,216,108,0,3158,3162,3,218,109,0,3159,3162,3,220,110,0,3160,3162, + 3,222,111,0,3161,3157,1,0,0,0,3161,3158,1,0,0,0,3161,3159,1,0,0, + 0,3161,3160,1,0,0,0,3162,189,1,0,0,0,3163,3165,5,85,0,0,3164,3166, + 7,39,0,0,3165,3164,1,0,0,0,3165,3166,1,0,0,0,3166,3168,1,0,0,0,3167, + 3169,5,78,0,0,3168,3167,1,0,0,0,3168,3169,1,0,0,0,3169,3171,1,0, + 0,0,3170,3172,5,87,0,0,3171,3170,1,0,0,0,3171,3172,1,0,0,0,3172, + 3173,1,0,0,0,3173,3180,3,550,275,0,3174,3175,5,129,0,0,3175,3177, + 5,1133,0,0,3176,3178,3,616,308,0,3177,3176,1,0,0,0,3177,3178,1,0, + 0,0,3178,3179,1,0,0,0,3179,3181,5,1134,0,0,3180,3174,1,0,0,0,3180, + 3181,1,0,0,0,3181,3205,1,0,0,0,3182,3184,5,1133,0,0,3183,3185,3, + 618,309,0,3184,3183,1,0,0,0,3184,3185,1,0,0,0,3185,3186,1,0,0,0, + 3186,3188,5,1134,0,0,3187,3182,1,0,0,0,3187,3188,1,0,0,0,3188,3189, + 1,0,0,0,3189,3194,3,204,102,0,3190,3192,5,12,0,0,3191,3190,1,0,0, + 0,3191,3192,1,0,0,0,3192,3193,1,0,0,0,3193,3195,3,584,292,0,3194, + 3191,1,0,0,0,3194,3195,1,0,0,0,3195,3206,1,0,0,0,3196,3197,5,153, + 0,0,3197,3202,3,206,103,0,3198,3199,5,1135,0,0,3199,3201,3,206,103, + 0,3200,3198,1,0,0,0,3201,3204,1,0,0,0,3202,3200,1,0,0,0,3202,3203, + 1,0,0,0,3203,3206,1,0,0,0,3204,3202,1,0,0,0,3205,3187,1,0,0,0,3205, + 3196,1,0,0,0,3206,3219,1,0,0,0,3207,3208,5,118,0,0,3208,3209,5,401, + 0,0,3209,3210,5,91,0,0,3210,3211,5,184,0,0,3211,3216,3,206,103,0, + 3212,3213,5,1135,0,0,3213,3215,3,206,103,0,3214,3212,1,0,0,0,3215, + 3218,1,0,0,0,3216,3214,1,0,0,0,3216,3217,1,0,0,0,3217,3220,1,0,0, + 0,3218,3216,1,0,0,0,3219,3207,1,0,0,0,3219,3220,1,0,0,0,3220,191, + 1,0,0,0,3221,3222,5,102,0,0,3222,3224,5,388,0,0,3223,3225,7,40,0, + 0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3227,1,0,0,0,3226,3228, + 5,474,0,0,3227,3226,1,0,0,0,3227,3228,1,0,0,0,3228,3229,1,0,0,0, + 3229,3230,5,82,0,0,3230,3232,5,1148,0,0,3231,3233,7,6,0,0,3232,3231, + 1,0,0,0,3232,3233,1,0,0,0,3233,3234,1,0,0,0,3234,3235,5,87,0,0,3235, + 3236,5,172,0,0,3236,3242,3,550,275,0,3237,3238,5,129,0,0,3238,3239, + 5,1133,0,0,3239,3240,3,616,308,0,3240,3241,5,1134,0,0,3241,3243, + 1,0,0,0,3242,3237,1,0,0,0,3242,3243,1,0,0,0,3243,3247,1,0,0,0,3244, + 3245,5,25,0,0,3245,3246,5,153,0,0,3246,3248,3,568,284,0,3247,3244, + 1,0,0,0,3247,3248,1,0,0,0,3248,3255,1,0,0,0,3249,3251,7,41,0,0,3250, + 3252,3,278,139,0,3251,3250,1,0,0,0,3252,3253,1,0,0,0,3253,3251,1, + 0,0,0,3253,3254,1,0,0,0,3254,3256,1,0,0,0,3255,3249,1,0,0,0,3255, + 3256,1,0,0,0,3256,3263,1,0,0,0,3257,3259,5,101,0,0,3258,3260,3,280, + 140,0,3259,3258,1,0,0,0,3260,3261,1,0,0,0,3261,3259,1,0,0,0,3261, + 3262,1,0,0,0,3262,3264,1,0,0,0,3263,3257,1,0,0,0,3263,3264,1,0,0, + 0,3264,3269,1,0,0,0,3265,3266,5,78,0,0,3266,3267,3,590,295,0,3267, + 3268,7,42,0,0,3268,3270,1,0,0,0,3269,3265,1,0,0,0,3269,3270,1,0, + 0,0,3270,3282,1,0,0,0,3271,3272,5,1133,0,0,3272,3277,3,208,104,0, + 3273,3274,5,1135,0,0,3274,3276,3,208,104,0,3275,3273,1,0,0,0,3276, + 3279,1,0,0,0,3277,3275,1,0,0,0,3277,3278,1,0,0,0,3278,3280,1,0,0, + 0,3279,3277,1,0,0,0,3280,3281,5,1134,0,0,3281,3283,1,0,0,0,3282, + 3271,1,0,0,0,3282,3283,1,0,0,0,3283,3293,1,0,0,0,3284,3285,5,153, + 0,0,3285,3290,3,206,103,0,3286,3287,5,1135,0,0,3287,3289,3,206,103, + 0,3288,3286,1,0,0,0,3289,3292,1,0,0,0,3290,3288,1,0,0,0,3290,3291, + 1,0,0,0,3291,3294,1,0,0,0,3292,3290,1,0,0,0,3293,3284,1,0,0,0,3293, + 3294,1,0,0,0,3294,193,1,0,0,0,3295,3296,5,102,0,0,3296,3298,5,682, + 0,0,3297,3299,7,40,0,0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299, + 3301,1,0,0,0,3300,3302,5,474,0,0,3301,3300,1,0,0,0,3301,3302,1,0, + 0,0,3302,3303,1,0,0,0,3303,3304,5,82,0,0,3304,3306,5,1148,0,0,3305, + 3307,7,6,0,0,3306,3305,1,0,0,0,3306,3307,1,0,0,0,3307,3308,1,0,0, + 0,3308,3309,5,87,0,0,3309,3310,5,172,0,0,3310,3314,3,550,275,0,3311, + 3312,5,25,0,0,3312,3313,5,153,0,0,3313,3315,3,568,284,0,3314,3311, + 1,0,0,0,3314,3315,1,0,0,0,3315,3322,1,0,0,0,3316,3317,5,601,0,0, + 3317,3318,5,448,0,0,3318,3319,5,19,0,0,3319,3320,5,1126,0,0,3320, + 3321,5,1148,0,0,3321,3323,5,1125,0,0,3322,3316,1,0,0,0,3322,3323, + 1,0,0,0,3323,3328,1,0,0,0,3324,3325,5,78,0,0,3325,3326,3,590,295, + 0,3326,3327,7,42,0,0,3327,3329,1,0,0,0,3328,3324,1,0,0,0,3328,3329, + 1,0,0,0,3329,3341,1,0,0,0,3330,3331,5,1133,0,0,3331,3336,3,208,104, + 0,3332,3333,5,1135,0,0,3333,3335,3,208,104,0,3334,3332,1,0,0,0,3335, + 3338,1,0,0,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3339,1,0,0, + 0,3338,3336,1,0,0,0,3339,3340,5,1134,0,0,3340,3342,1,0,0,0,3341, + 3330,1,0,0,0,3341,3342,1,0,0,0,3342,3352,1,0,0,0,3343,3344,5,153, + 0,0,3344,3349,3,206,103,0,3345,3346,5,1135,0,0,3346,3348,3,206,103, + 0,3347,3345,1,0,0,0,3348,3351,1,0,0,0,3349,3347,1,0,0,0,3349,3350, + 1,0,0,0,3350,3353,1,0,0,0,3351,3349,1,0,0,0,3352,3343,1,0,0,0,3352, + 3353,1,0,0,0,3353,195,1,0,0,0,3354,3356,5,141,0,0,3355,3357,7,43, + 0,0,3356,3355,1,0,0,0,3356,3357,1,0,0,0,3357,3359,1,0,0,0,3358,3360, + 5,87,0,0,3359,3358,1,0,0,0,3359,3360,1,0,0,0,3360,3361,1,0,0,0,3361, + 3367,3,550,275,0,3362,3363,5,129,0,0,3363,3364,5,1133,0,0,3364,3365, + 3,616,308,0,3365,3366,5,1134,0,0,3366,3368,1,0,0,0,3367,3362,1,0, + 0,0,3367,3368,1,0,0,0,3368,3385,1,0,0,0,3369,3370,5,1133,0,0,3370, + 3371,3,616,308,0,3371,3372,5,1134,0,0,3372,3374,1,0,0,0,3373,3369, + 1,0,0,0,3373,3374,1,0,0,0,3374,3375,1,0,0,0,3375,3386,3,204,102, + 0,3376,3377,5,153,0,0,3377,3382,3,206,103,0,3378,3379,5,1135,0,0, + 3379,3381,3,206,103,0,3380,3378,1,0,0,0,3381,3384,1,0,0,0,3382,3380, + 1,0,0,0,3382,3383,1,0,0,0,3383,3386,1,0,0,0,3384,3382,1,0,0,0,3385, + 3373,1,0,0,0,3385,3376,1,0,0,0,3386,197,1,0,0,0,3387,3389,3,250, + 125,0,3388,3390,3,210,105,0,3389,3388,1,0,0,0,3389,3390,1,0,0,0, + 3390,3453,1,0,0,0,3391,3393,3,246,123,0,3392,3394,3,210,105,0,3393, + 3392,1,0,0,0,3393,3394,1,0,0,0,3394,3453,1,0,0,0,3395,3398,3,252, + 126,0,3396,3398,3,248,124,0,3397,3395,1,0,0,0,3397,3396,1,0,0,0, + 3398,3400,1,0,0,0,3399,3401,3,256,128,0,3400,3399,1,0,0,0,3401,3402, + 1,0,0,0,3402,3400,1,0,0,0,3402,3403,1,0,0,0,3403,3412,1,0,0,0,3404, + 3406,5,180,0,0,3405,3407,7,44,0,0,3406,3405,1,0,0,0,3406,3407,1, + 0,0,0,3407,3410,1,0,0,0,3408,3411,3,250,125,0,3409,3411,3,246,123, + 0,3410,3408,1,0,0,0,3410,3409,1,0,0,0,3411,3413,1,0,0,0,3412,3404, + 1,0,0,0,3412,3413,1,0,0,0,3413,3415,1,0,0,0,3414,3416,3,228,114, + 0,3415,3414,1,0,0,0,3415,3416,1,0,0,0,3416,3418,1,0,0,0,3417,3419, + 3,292,146,0,3418,3417,1,0,0,0,3418,3419,1,0,0,0,3419,3421,1,0,0, + 0,3420,3422,3,210,105,0,3421,3420,1,0,0,0,3421,3422,1,0,0,0,3422, + 3453,1,0,0,0,3423,3425,3,248,124,0,3424,3426,3,254,127,0,3425,3424, + 1,0,0,0,3426,3427,1,0,0,0,3427,3425,1,0,0,0,3427,3428,1,0,0,0,3428, + 3434,1,0,0,0,3429,3431,5,180,0,0,3430,3432,7,44,0,0,3431,3430,1, + 0,0,0,3431,3432,1,0,0,0,3432,3433,1,0,0,0,3433,3435,3,246,123,0, + 3434,3429,1,0,0,0,3434,3435,1,0,0,0,3435,3437,1,0,0,0,3436,3438, + 3,228,114,0,3437,3436,1,0,0,0,3437,3438,1,0,0,0,3438,3440,1,0,0, + 0,3439,3441,3,292,146,0,3440,3439,1,0,0,0,3440,3441,1,0,0,0,3441, + 3443,1,0,0,0,3442,3444,3,210,105,0,3443,3442,1,0,0,0,3443,3444,1, + 0,0,0,3444,3453,1,0,0,0,3445,3448,3,252,126,0,3446,3447,5,1135,0, + 0,3447,3449,3,258,129,0,3448,3446,1,0,0,0,3449,3450,1,0,0,0,3450, + 3448,1,0,0,0,3450,3451,1,0,0,0,3451,3453,1,0,0,0,3452,3387,1,0,0, + 0,3452,3391,1,0,0,0,3452,3397,1,0,0,0,3452,3423,1,0,0,0,3452,3445, + 1,0,0,0,3453,199,1,0,0,0,3454,3457,3,224,112,0,3455,3457,3,226,113, + 0,3456,3454,1,0,0,0,3456,3455,1,0,0,0,3457,201,1,0,0,0,3458,3459, + 5,188,0,0,3459,3461,5,1133,0,0,3460,3462,3,626,313,0,3461,3460,1, + 0,0,0,3461,3462,1,0,0,0,3462,3463,1,0,0,0,3463,3472,5,1134,0,0,3464, + 3465,5,1135,0,0,3465,3467,5,1133,0,0,3466,3468,3,626,313,0,3467, + 3466,1,0,0,0,3467,3468,1,0,0,0,3468,3469,1,0,0,0,3469,3471,5,1134, + 0,0,3470,3464,1,0,0,0,3471,3474,1,0,0,0,3472,3470,1,0,0,0,3472,3473, + 1,0,0,0,3473,203,1,0,0,0,3474,3472,1,0,0,0,3475,3494,3,198,99,0, + 3476,3477,7,45,0,0,3477,3479,5,1133,0,0,3478,3480,3,626,313,0,3479, + 3478,1,0,0,0,3479,3480,1,0,0,0,3480,3481,1,0,0,0,3481,3490,5,1134, + 0,0,3482,3483,5,1135,0,0,3483,3485,5,1133,0,0,3484,3486,3,626,313, + 0,3485,3484,1,0,0,0,3485,3486,1,0,0,0,3486,3487,1,0,0,0,3487,3489, + 5,1134,0,0,3488,3482,1,0,0,0,3489,3492,1,0,0,0,3490,3488,1,0,0,0, + 3490,3491,1,0,0,0,3491,3494,1,0,0,0,3492,3490,1,0,0,0,3493,3475, + 1,0,0,0,3493,3476,1,0,0,0,3494,205,1,0,0,0,3495,3496,3,556,278,0, + 3496,3499,5,1124,0,0,3497,3500,3,688,344,0,3498,3500,5,42,0,0,3499, + 3497,1,0,0,0,3499,3498,1,0,0,0,3500,207,1,0,0,0,3501,3504,3,584, + 292,0,3502,3504,5,1159,0,0,3503,3501,1,0,0,0,3503,3502,1,0,0,0,3504, + 209,1,0,0,0,3505,3506,5,65,0,0,3506,3512,5,184,0,0,3507,3508,5,103, + 0,0,3508,3509,5,80,0,0,3509,3510,5,610,0,0,3510,3512,5,511,0,0,3511, + 3505,1,0,0,0,3511,3507,1,0,0,0,3512,211,1,0,0,0,3513,3515,5,44,0, + 0,3514,3516,5,106,0,0,3515,3514,1,0,0,0,3515,3516,1,0,0,0,3516,3518, + 1,0,0,0,3517,3519,5,568,0,0,3518,3517,1,0,0,0,3518,3519,1,0,0,0, + 3519,3521,1,0,0,0,3520,3522,5,78,0,0,3521,3520,1,0,0,0,3521,3522, + 1,0,0,0,3522,3523,1,0,0,0,3523,3524,5,68,0,0,3524,3529,3,550,275, + 0,3525,3527,5,12,0,0,3526,3525,1,0,0,0,3526,3527,1,0,0,0,3527,3528, + 1,0,0,0,3528,3530,3,584,292,0,3529,3526,1,0,0,0,3529,3530,1,0,0, + 0,3530,3536,1,0,0,0,3531,3532,5,129,0,0,3532,3533,5,1133,0,0,3533, + 3534,3,616,308,0,3534,3535,5,1134,0,0,3535,3537,1,0,0,0,3536,3531, + 1,0,0,0,3536,3537,1,0,0,0,3537,3540,1,0,0,0,3538,3539,5,190,0,0, + 3539,3541,3,688,344,0,3540,3538,1,0,0,0,3540,3541,1,0,0,0,3541,3543, + 1,0,0,0,3542,3544,3,228,114,0,3543,3542,1,0,0,0,3543,3544,1,0,0, + 0,3544,3547,1,0,0,0,3545,3546,5,99,0,0,3546,3548,3,294,147,0,3547, + 3545,1,0,0,0,3547,3548,1,0,0,0,3548,213,1,0,0,0,3549,3551,5,44,0, + 0,3550,3552,5,106,0,0,3551,3550,1,0,0,0,3551,3552,1,0,0,0,3552,3554, + 1,0,0,0,3553,3555,5,568,0,0,3554,3553,1,0,0,0,3554,3555,1,0,0,0, + 3555,3557,1,0,0,0,3556,3558,5,78,0,0,3557,3556,1,0,0,0,3557,3558, + 1,0,0,0,3558,3598,1,0,0,0,3559,3562,3,550,275,0,3560,3561,5,1132, + 0,0,3561,3563,5,1117,0,0,3562,3560,1,0,0,0,3562,3563,1,0,0,0,3563, + 3572,1,0,0,0,3564,3565,5,1135,0,0,3565,3568,3,550,275,0,3566,3567, + 5,1132,0,0,3567,3569,5,1117,0,0,3568,3566,1,0,0,0,3568,3569,1,0, + 0,0,3569,3571,1,0,0,0,3570,3564,1,0,0,0,3571,3574,1,0,0,0,3572,3570, + 1,0,0,0,3572,3573,1,0,0,0,3573,3575,1,0,0,0,3574,3572,1,0,0,0,3575, + 3576,5,68,0,0,3576,3577,3,232,116,0,3577,3599,1,0,0,0,3578,3579, + 5,68,0,0,3579,3582,3,550,275,0,3580,3581,5,1132,0,0,3581,3583,5, + 1117,0,0,3582,3580,1,0,0,0,3582,3583,1,0,0,0,3583,3592,1,0,0,0,3584, + 3585,5,1135,0,0,3585,3588,3,550,275,0,3586,3587,5,1132,0,0,3587, + 3589,5,1117,0,0,3588,3586,1,0,0,0,3588,3589,1,0,0,0,3589,3591,1, + 0,0,0,3590,3584,1,0,0,0,3591,3594,1,0,0,0,3592,3590,1,0,0,0,3592, + 3593,1,0,0,0,3593,3595,1,0,0,0,3594,3592,1,0,0,0,3595,3596,5,187, + 0,0,3596,3597,3,232,116,0,3597,3599,1,0,0,0,3598,3559,1,0,0,0,3598, + 3578,1,0,0,0,3599,3602,1,0,0,0,3600,3601,5,190,0,0,3601,3603,3,688, + 344,0,3602,3600,1,0,0,0,3602,3603,1,0,0,0,3603,215,1,0,0,0,3604, + 3605,5,442,0,0,3605,3606,3,550,275,0,3606,3611,5,539,0,0,3607,3609, + 5,12,0,0,3608,3607,1,0,0,0,3608,3609,1,0,0,0,3609,3610,1,0,0,0,3610, + 3612,3,584,292,0,3611,3608,1,0,0,0,3611,3612,1,0,0,0,3612,217,1, + 0,0,0,3613,3614,5,442,0,0,3614,3615,3,550,275,0,3615,3616,5,134, + 0,0,3616,3623,3,584,292,0,3617,3618,3,696,348,0,3618,3619,5,1133, + 0,0,3619,3620,3,628,314,0,3620,3621,5,1134,0,0,3621,3624,1,0,0,0, + 3622,3624,7,46,0,0,3623,3617,1,0,0,0,3623,3622,1,0,0,0,3624,3627, + 1,0,0,0,3625,3626,5,190,0,0,3626,3628,3,688,344,0,3627,3625,1,0, + 0,0,3627,3628,1,0,0,0,3628,3631,1,0,0,0,3629,3630,5,99,0,0,3630, + 3632,3,294,147,0,3631,3629,1,0,0,0,3631,3632,1,0,0,0,3632,219,1, + 0,0,0,3633,3634,5,442,0,0,3634,3635,3,550,275,0,3635,3636,5,134, + 0,0,3636,3639,7,47,0,0,3637,3638,5,190,0,0,3638,3640,3,688,344,0, + 3639,3637,1,0,0,0,3639,3640,1,0,0,0,3640,3643,1,0,0,0,3641,3642, + 5,99,0,0,3642,3644,3,294,147,0,3643,3641,1,0,0,0,3643,3644,1,0,0, + 0,3644,221,1,0,0,0,3645,3646,5,442,0,0,3646,3647,3,550,275,0,3647, + 3648,5,361,0,0,3648,223,1,0,0,0,3649,3651,5,184,0,0,3650,3652,5, + 106,0,0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652,3654,1,0,0,0,3653, + 3655,5,78,0,0,3654,3653,1,0,0,0,3654,3655,1,0,0,0,3655,3656,1,0, + 0,0,3656,3661,3,550,275,0,3657,3659,5,12,0,0,3658,3657,1,0,0,0,3658, + 3659,1,0,0,0,3659,3660,1,0,0,0,3660,3662,3,584,292,0,3661,3658,1, + 0,0,0,3661,3662,1,0,0,0,3662,3663,1,0,0,0,3663,3664,5,153,0,0,3664, + 3669,3,206,103,0,3665,3666,5,1135,0,0,3666,3668,3,206,103,0,3667, + 3665,1,0,0,0,3668,3671,1,0,0,0,3669,3667,1,0,0,0,3669,3670,1,0,0, + 0,3670,3674,1,0,0,0,3671,3669,1,0,0,0,3672,3673,5,190,0,0,3673,3675, + 3,688,344,0,3674,3672,1,0,0,0,3674,3675,1,0,0,0,3675,3677,1,0,0, + 0,3676,3678,3,228,114,0,3677,3676,1,0,0,0,3677,3678,1,0,0,0,3678, + 3680,1,0,0,0,3679,3681,3,292,146,0,3680,3679,1,0,0,0,3680,3681,1, + 0,0,0,3681,225,1,0,0,0,3682,3684,5,184,0,0,3683,3685,5,106,0,0,3684, + 3683,1,0,0,0,3684,3685,1,0,0,0,3685,3687,1,0,0,0,3686,3688,5,78, + 0,0,3687,3686,1,0,0,0,3687,3688,1,0,0,0,3688,3689,1,0,0,0,3689,3690, + 3,552,276,0,3690,3691,5,153,0,0,3691,3696,3,206,103,0,3692,3693, + 5,1135,0,0,3693,3695,3,206,103,0,3694,3692,1,0,0,0,3695,3698,1,0, + 0,0,3696,3694,1,0,0,0,3696,3697,1,0,0,0,3697,3701,1,0,0,0,3698,3696, + 1,0,0,0,3699,3700,5,190,0,0,3700,3702,3,688,344,0,3701,3699,1,0, + 0,0,3701,3702,1,0,0,0,3702,227,1,0,0,0,3703,3704,5,124,0,0,3704, + 3705,5,19,0,0,3705,3710,3,230,115,0,3706,3707,5,1135,0,0,3707,3709, + 3,230,115,0,3708,3706,1,0,0,0,3709,3712,1,0,0,0,3710,3708,1,0,0, + 0,3710,3711,1,0,0,0,3711,229,1,0,0,0,3712,3710,1,0,0,0,3713,3715, + 3,688,344,0,3714,3716,7,48,0,0,3715,3714,1,0,0,0,3715,3716,1,0,0, + 0,3716,231,1,0,0,0,3717,3722,3,234,117,0,3718,3719,5,1135,0,0,3719, + 3721,3,234,117,0,3720,3718,1,0,0,0,3721,3724,1,0,0,0,3722,3720,1, + 0,0,0,3722,3723,1,0,0,0,3723,233,1,0,0,0,3724,3722,1,0,0,0,3725, + 3729,3,236,118,0,3726,3728,3,242,121,0,3727,3726,1,0,0,0,3728,3731, + 1,0,0,0,3729,3727,1,0,0,0,3729,3730,1,0,0,0,3730,3744,1,0,0,0,3731, + 3729,1,0,0,0,3732,3733,5,1133,0,0,3733,3737,3,236,118,0,3734,3736, + 3,242,121,0,3735,3734,1,0,0,0,3736,3739,1,0,0,0,3737,3735,1,0,0, + 0,3737,3738,1,0,0,0,3738,3740,1,0,0,0,3739,3737,1,0,0,0,3740,3741, + 5,1134,0,0,3741,3744,1,0,0,0,3742,3744,3,260,130,0,3743,3725,1,0, + 0,0,3743,3732,1,0,0,0,3743,3742,1,0,0,0,3744,235,1,0,0,0,3745,3751, + 3,550,275,0,3746,3747,5,129,0,0,3747,3748,5,1133,0,0,3748,3749,3, + 616,308,0,3749,3750,5,1134,0,0,3750,3752,1,0,0,0,3751,3746,1,0,0, + 0,3751,3752,1,0,0,0,3752,3757,1,0,0,0,3753,3755,5,12,0,0,3754,3753, + 1,0,0,0,3754,3755,1,0,0,0,3755,3756,1,0,0,0,3756,3758,3,584,292, + 0,3757,3754,1,0,0,0,3757,3758,1,0,0,0,3758,3767,1,0,0,0,3759,3764, + 3,238,119,0,3760,3761,5,1135,0,0,3761,3763,3,238,119,0,3762,3760, + 1,0,0,0,3763,3766,1,0,0,0,3764,3762,1,0,0,0,3764,3765,1,0,0,0,3765, + 3768,1,0,0,0,3766,3764,1,0,0,0,3767,3759,1,0,0,0,3767,3768,1,0,0, + 0,3768,3783,1,0,0,0,3769,3770,5,1133,0,0,3770,3771,3,198,99,0,3771, + 3772,5,1134,0,0,3772,3774,1,0,0,0,3773,3775,5,12,0,0,3774,3773,1, + 0,0,0,3774,3775,1,0,0,0,3775,3776,1,0,0,0,3776,3777,3,584,292,0, + 3777,3783,1,0,0,0,3778,3779,5,1133,0,0,3779,3780,3,232,116,0,3780, + 3781,5,1134,0,0,3781,3783,1,0,0,0,3782,3745,1,0,0,0,3782,3769,1, + 0,0,0,3782,3778,1,0,0,0,3783,237,1,0,0,0,3784,3785,7,49,0,0,3785, + 3788,7,20,0,0,3786,3787,5,65,0,0,3787,3789,3,240,120,0,3788,3786, + 1,0,0,0,3788,3789,1,0,0,0,3789,3790,1,0,0,0,3790,3791,5,1133,0,0, + 3791,3792,3,616,308,0,3792,3793,5,1134,0,0,3793,239,1,0,0,0,3794, + 3800,5,90,0,0,3795,3796,5,124,0,0,3796,3800,5,19,0,0,3797,3798,5, + 73,0,0,3798,3800,5,19,0,0,3799,3794,1,0,0,0,3799,3795,1,0,0,0,3799, + 3797,1,0,0,0,3800,241,1,0,0,0,3801,3803,7,50,0,0,3802,3801,1,0,0, + 0,3802,3803,1,0,0,0,3803,3804,1,0,0,0,3804,3806,5,90,0,0,3805,3807, + 5,94,0,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,3808,1,0,0,0,3808, + 3812,3,236,118,0,3809,3811,3,244,122,0,3810,3809,1,0,0,0,3811,3814, + 1,0,0,0,3812,3810,1,0,0,0,3812,3813,1,0,0,0,3813,3849,1,0,0,0,3814, + 3812,1,0,0,0,3815,3816,5,171,0,0,3816,3821,3,236,118,0,3817,3818, + 5,118,0,0,3818,3820,3,688,344,0,3819,3817,1,0,0,0,3820,3823,1,0, + 0,0,3821,3819,1,0,0,0,3821,3822,1,0,0,0,3822,3849,1,0,0,0,3823,3821, + 1,0,0,0,3824,3826,7,51,0,0,3825,3827,5,126,0,0,3826,3825,1,0,0,0, + 3826,3827,1,0,0,0,3827,3828,1,0,0,0,3828,3830,5,90,0,0,3829,3831, + 5,94,0,0,3830,3829,1,0,0,0,3830,3831,1,0,0,0,3831,3832,1,0,0,0,3832, + 3836,3,236,118,0,3833,3835,3,244,122,0,3834,3833,1,0,0,0,3835,3838, + 1,0,0,0,3836,3834,1,0,0,0,3836,3837,1,0,0,0,3837,3849,1,0,0,0,3838, + 3836,1,0,0,0,3839,3844,5,113,0,0,3840,3842,7,51,0,0,3841,3843,5, + 126,0,0,3842,3841,1,0,0,0,3842,3843,1,0,0,0,3843,3845,1,0,0,0,3844, + 3840,1,0,0,0,3844,3845,1,0,0,0,3845,3846,1,0,0,0,3846,3847,5,90, + 0,0,3847,3849,3,236,118,0,3848,3802,1,0,0,0,3848,3815,1,0,0,0,3848, + 3824,1,0,0,0,3848,3839,1,0,0,0,3849,243,1,0,0,0,3850,3851,5,118, + 0,0,3851,3858,3,688,344,0,3852,3853,5,187,0,0,3853,3854,5,1133,0, + 0,3854,3855,3,616,308,0,3855,3856,5,1134,0,0,3856,3858,1,0,0,0,3857, + 3850,1,0,0,0,3857,3852,1,0,0,0,3858,245,1,0,0,0,3859,3860,5,1133, + 0,0,3860,3861,3,250,125,0,3861,3862,5,1134,0,0,3862,3868,1,0,0,0, + 3863,3864,5,1133,0,0,3864,3865,3,246,123,0,3865,3866,5,1134,0,0, + 3866,3868,1,0,0,0,3867,3859,1,0,0,0,3867,3863,1,0,0,0,3868,247,1, + 0,0,0,3869,3870,5,1133,0,0,3870,3871,3,252,126,0,3871,3872,5,1134, + 0,0,3872,3878,1,0,0,0,3873,3874,5,1133,0,0,3874,3875,3,248,124,0, + 3875,3876,5,1134,0,0,3876,3878,1,0,0,0,3877,3869,1,0,0,0,3877,3873, + 1,0,0,0,3878,249,1,0,0,0,3879,3883,5,152,0,0,3880,3882,3,270,135, + 0,3881,3880,1,0,0,0,3882,3885,1,0,0,0,3883,3881,1,0,0,0,3883,3884, + 1,0,0,0,3884,3886,1,0,0,0,3885,3883,1,0,0,0,3886,3888,3,272,136, + 0,3887,3889,3,276,138,0,3888,3887,1,0,0,0,3888,3889,1,0,0,0,3889, + 3890,1,0,0,0,3890,3892,3,282,141,0,3891,3893,3,284,142,0,3892,3891, + 1,0,0,0,3892,3893,1,0,0,0,3893,3895,1,0,0,0,3894,3896,3,286,143, + 0,3895,3894,1,0,0,0,3895,3896,1,0,0,0,3896,3898,1,0,0,0,3897,3899, + 3,288,144,0,3898,3897,1,0,0,0,3898,3899,1,0,0,0,3899,3901,1,0,0, + 0,3900,3902,3,228,114,0,3901,3900,1,0,0,0,3901,3902,1,0,0,0,3902, + 3904,1,0,0,0,3903,3905,3,292,146,0,3904,3903,1,0,0,0,3904,3905,1, + 0,0,0,3905,3934,1,0,0,0,3906,3910,5,152,0,0,3907,3909,3,270,135, + 0,3908,3907,1,0,0,0,3909,3912,1,0,0,0,3910,3908,1,0,0,0,3910,3911, + 1,0,0,0,3911,3913,1,0,0,0,3912,3910,1,0,0,0,3913,3914,3,272,136, + 0,3914,3916,3,282,141,0,3915,3917,3,284,142,0,3916,3915,1,0,0,0, + 3916,3917,1,0,0,0,3917,3919,1,0,0,0,3918,3920,3,286,143,0,3919,3918, + 1,0,0,0,3919,3920,1,0,0,0,3920,3922,1,0,0,0,3921,3923,3,288,144, + 0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923,3925,1,0,0,0,3924,3926, + 3,228,114,0,3925,3924,1,0,0,0,3925,3926,1,0,0,0,3926,3928,1,0,0, + 0,3927,3929,3,292,146,0,3928,3927,1,0,0,0,3928,3929,1,0,0,0,3929, + 3931,1,0,0,0,3930,3932,3,276,138,0,3931,3930,1,0,0,0,3931,3932,1, + 0,0,0,3932,3934,1,0,0,0,3933,3879,1,0,0,0,3933,3906,1,0,0,0,3934, + 251,1,0,0,0,3935,3939,5,152,0,0,3936,3938,3,270,135,0,3937,3936, + 1,0,0,0,3938,3941,1,0,0,0,3939,3937,1,0,0,0,3939,3940,1,0,0,0,3940, + 3942,1,0,0,0,3941,3939,1,0,0,0,3942,3943,3,272,136,0,3943,3945,3, + 282,141,0,3944,3946,3,284,142,0,3945,3944,1,0,0,0,3945,3946,1,0, + 0,0,3946,3948,1,0,0,0,3947,3949,3,286,143,0,3948,3947,1,0,0,0,3948, + 3949,1,0,0,0,3949,3951,1,0,0,0,3950,3952,3,288,144,0,3951,3950,1, + 0,0,0,3951,3952,1,0,0,0,3952,3954,1,0,0,0,3953,3955,3,228,114,0, + 3954,3953,1,0,0,0,3954,3955,1,0,0,0,3955,3957,1,0,0,0,3956,3958, + 3,292,146,0,3957,3956,1,0,0,0,3957,3958,1,0,0,0,3958,3960,1,0,0, + 0,3959,3961,3,256,128,0,3960,3959,1,0,0,0,3960,3961,1,0,0,0,3961, + 253,1,0,0,0,3962,3964,5,180,0,0,3963,3965,7,44,0,0,3964,3963,1,0, + 0,0,3964,3965,1,0,0,0,3965,3966,1,0,0,0,3966,3967,3,248,124,0,3967, + 255,1,0,0,0,3968,3970,5,180,0,0,3969,3971,7,44,0,0,3970,3969,1,0, + 0,0,3970,3971,1,0,0,0,3971,3974,1,0,0,0,3972,3975,3,252,126,0,3973, + 3975,3,248,124,0,3974,3972,1,0,0,0,3974,3973,1,0,0,0,3975,257,1, + 0,0,0,3976,3991,5,94,0,0,3977,3992,3,252,126,0,3978,3992,3,248,124, + 0,3979,3982,5,1133,0,0,3980,3983,3,252,126,0,3981,3983,3,248,124, + 0,3982,3980,1,0,0,0,3982,3981,1,0,0,0,3983,3984,1,0,0,0,3984,3989, + 5,1134,0,0,3985,3987,5,12,0,0,3986,3985,1,0,0,0,3986,3987,1,0,0, + 0,3987,3988,1,0,0,0,3988,3990,3,584,292,0,3989,3986,1,0,0,0,3989, + 3990,1,0,0,0,3990,3992,1,0,0,0,3991,3977,1,0,0,0,3991,3978,1,0,0, + 0,3991,3979,1,0,0,0,3992,259,1,0,0,0,3993,3994,5,278,0,0,3994,3995, + 5,1133,0,0,3995,3996,5,1148,0,0,3996,3997,5,1135,0,0,3997,3998,5, + 1148,0,0,3998,3999,5,365,0,0,3999,4000,5,1133,0,0,4000,4001,3,262, + 131,0,4001,4002,5,1134,0,0,4002,4007,5,1134,0,0,4003,4005,5,12,0, + 0,4004,4003,1,0,0,0,4004,4005,1,0,0,0,4005,4006,1,0,0,0,4006,4008, + 3,584,292,0,4007,4004,1,0,0,0,4007,4008,1,0,0,0,4008,261,1,0,0,0, + 4009,4014,3,264,132,0,4010,4011,5,1135,0,0,4011,4013,3,264,132,0, + 4012,4010,1,0,0,0,4013,4016,1,0,0,0,4014,4012,1,0,0,0,4014,4015, + 1,0,0,0,4015,263,1,0,0,0,4016,4014,1,0,0,0,4017,4034,3,556,278,0, + 4018,4019,5,65,0,0,4019,4035,5,284,0,0,4020,4032,3,604,302,0,4021, + 4022,5,285,0,0,4022,4024,5,1148,0,0,4023,4025,3,266,133,0,4024,4023, + 1,0,0,0,4024,4025,1,0,0,0,4025,4027,1,0,0,0,4026,4028,3,268,134, + 0,4027,4026,1,0,0,0,4027,4028,1,0,0,0,4028,4033,1,0,0,0,4029,4030, + 5,60,0,0,4030,4031,5,285,0,0,4031,4033,5,1148,0,0,4032,4021,1,0, + 0,0,4032,4029,1,0,0,0,4033,4035,1,0,0,0,4034,4018,1,0,0,0,4034,4020, + 1,0,0,0,4035,4047,1,0,0,0,4036,4038,5,283,0,0,4037,4039,5,285,0, + 0,4038,4037,1,0,0,0,4038,4039,1,0,0,0,4039,4040,1,0,0,0,4040,4041, + 5,1148,0,0,4041,4042,5,365,0,0,4042,4043,5,1133,0,0,4043,4044,3, + 262,131,0,4044,4045,5,1134,0,0,4045,4047,1,0,0,0,4046,4017,1,0,0, + 0,4046,4036,1,0,0,0,4047,265,1,0,0,0,4048,4053,5,116,0,0,4049,4053, + 5,411,0,0,4050,4051,5,42,0,0,4051,4053,3,634,317,0,4052,4048,1,0, + 0,0,4052,4049,1,0,0,0,4052,4050,1,0,0,0,4053,4054,1,0,0,0,4054,4055, + 5,118,0,0,4055,4056,5,55,0,0,4056,267,1,0,0,0,4057,4062,5,116,0, + 0,4058,4062,5,411,0,0,4059,4060,5,42,0,0,4060,4062,3,634,317,0,4061, + 4057,1,0,0,0,4061,4058,1,0,0,0,4061,4059,1,0,0,0,4062,4063,1,0,0, + 0,4063,4064,5,118,0,0,4064,4065,5,411,0,0,4065,269,1,0,0,0,4066, + 4075,7,52,0,0,4067,4075,5,75,0,0,4068,4075,5,171,0,0,4069,4075,5, + 166,0,0,4070,4075,5,164,0,0,4071,4075,5,625,0,0,4072,4075,7,53,0, + 0,4073,4075,5,165,0,0,4074,4066,1,0,0,0,4074,4067,1,0,0,0,4074,4068, + 1,0,0,0,4074,4069,1,0,0,0,4074,4070,1,0,0,0,4074,4071,1,0,0,0,4074, + 4072,1,0,0,0,4074,4073,1,0,0,0,4075,271,1,0,0,0,4076,4079,5,1117, + 0,0,4077,4079,3,274,137,0,4078,4076,1,0,0,0,4078,4077,1,0,0,0,4079, + 4084,1,0,0,0,4080,4081,5,1135,0,0,4081,4083,3,274,137,0,4082,4080, + 1,0,0,0,4083,4086,1,0,0,0,4084,4082,1,0,0,0,4084,4085,1,0,0,0,4085, + 273,1,0,0,0,4086,4084,1,0,0,0,4087,4088,3,548,274,0,4088,4089,5, + 1132,0,0,4089,4090,5,1117,0,0,4090,4117,1,0,0,0,4091,4096,3,556, + 278,0,4092,4094,5,12,0,0,4093,4092,1,0,0,0,4093,4094,1,0,0,0,4094, + 4095,1,0,0,0,4095,4097,3,584,292,0,4096,4093,1,0,0,0,4096,4097,1, + 0,0,0,4097,4117,1,0,0,0,4098,4103,3,648,324,0,4099,4101,5,12,0,0, + 4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4102,1,0,0,0,4102,4104, + 3,584,292,0,4103,4100,1,0,0,0,4103,4104,1,0,0,0,4104,4117,1,0,0, + 0,4105,4106,5,1159,0,0,4106,4108,5,1108,0,0,4107,4105,1,0,0,0,4107, + 4108,1,0,0,0,4108,4109,1,0,0,0,4109,4114,3,688,344,0,4110,4112,5, + 12,0,0,4111,4110,1,0,0,0,4111,4112,1,0,0,0,4112,4113,1,0,0,0,4113, + 4115,3,584,292,0,4114,4111,1,0,0,0,4114,4115,1,0,0,0,4115,4117,1, + 0,0,0,4116,4087,1,0,0,0,4116,4091,1,0,0,0,4116,4098,1,0,0,0,4116, + 4107,1,0,0,0,4117,275,1,0,0,0,4118,4119,5,87,0,0,4119,4124,3,208, + 104,0,4120,4121,5,1135,0,0,4121,4123,3,208,104,0,4122,4120,1,0,0, + 0,4123,4126,1,0,0,0,4124,4122,1,0,0,0,4124,4125,1,0,0,0,4125,4155, + 1,0,0,0,4126,4124,1,0,0,0,4127,4128,5,87,0,0,4128,4129,5,400,0,0, + 4129,4155,5,1148,0,0,4130,4131,5,87,0,0,4131,4132,5,127,0,0,4132, + 4136,5,1148,0,0,4133,4134,5,25,0,0,4134,4135,5,153,0,0,4135,4137, + 3,568,284,0,4136,4133,1,0,0,0,4136,4137,1,0,0,0,4137,4144,1,0,0, + 0,4138,4140,7,41,0,0,4139,4141,3,278,139,0,4140,4139,1,0,0,0,4141, + 4142,1,0,0,0,4142,4140,1,0,0,0,4142,4143,1,0,0,0,4143,4145,1,0,0, + 0,4144,4138,1,0,0,0,4144,4145,1,0,0,0,4145,4152,1,0,0,0,4146,4148, + 5,101,0,0,4147,4149,3,280,140,0,4148,4147,1,0,0,0,4149,4150,1,0, + 0,0,4150,4148,1,0,0,0,4150,4151,1,0,0,0,4151,4153,1,0,0,0,4152,4146, + 1,0,0,0,4152,4153,1,0,0,0,4153,4155,1,0,0,0,4154,4118,1,0,0,0,4154, + 4127,1,0,0,0,4154,4130,1,0,0,0,4155,277,1,0,0,0,4156,4157,5,173, + 0,0,4157,4158,5,19,0,0,4158,4169,5,1148,0,0,4159,4161,5,122,0,0, + 4160,4159,1,0,0,0,4160,4161,1,0,0,0,4161,4162,1,0,0,0,4162,4163, + 5,56,0,0,4163,4164,5,19,0,0,4164,4169,5,1148,0,0,4165,4166,5,58, + 0,0,4166,4167,5,19,0,0,4167,4169,5,1148,0,0,4168,4156,1,0,0,0,4168, + 4160,1,0,0,0,4168,4165,1,0,0,0,4169,279,1,0,0,0,4170,4171,5,169, + 0,0,4171,4172,5,19,0,0,4172,4177,5,1148,0,0,4173,4174,5,173,0,0, + 4174,4175,5,19,0,0,4175,4177,5,1148,0,0,4176,4170,1,0,0,0,4176,4173, + 1,0,0,0,4177,281,1,0,0,0,4178,4179,5,68,0,0,4179,4181,3,232,116, + 0,4180,4178,1,0,0,0,4180,4181,1,0,0,0,4181,4184,1,0,0,0,4182,4183, + 5,190,0,0,4183,4185,3,688,344,0,4184,4182,1,0,0,0,4184,4185,1,0, + 0,0,4185,283,1,0,0,0,4186,4187,5,73,0,0,4187,4188,5,19,0,0,4188, + 4193,3,290,145,0,4189,4190,5,1135,0,0,4190,4192,3,290,145,0,4191, + 4189,1,0,0,0,4192,4195,1,0,0,0,4193,4191,1,0,0,0,4193,4194,1,0,0, + 0,4194,4198,1,0,0,0,4195,4193,1,0,0,0,4196,4197,5,192,0,0,4197,4199, + 5,598,0,0,4198,4196,1,0,0,0,4198,4199,1,0,0,0,4199,285,1,0,0,0,4200, + 4201,5,74,0,0,4201,4202,3,688,344,0,4202,287,1,0,0,0,4203,4204,5, + 676,0,0,4204,4205,3,666,333,0,4205,4206,5,12,0,0,4206,4207,5,1133, + 0,0,4207,4208,3,664,332,0,4208,4218,5,1134,0,0,4209,4210,5,1135, + 0,0,4210,4211,3,666,333,0,4211,4212,5,12,0,0,4212,4213,5,1133,0, + 0,4213,4214,3,664,332,0,4214,4215,5,1134,0,0,4215,4217,1,0,0,0,4216, + 4209,1,0,0,0,4217,4220,1,0,0,0,4218,4216,1,0,0,0,4218,4219,1,0,0, + 0,4219,289,1,0,0,0,4220,4218,1,0,0,0,4221,4223,3,688,344,0,4222, + 4224,7,48,0,0,4223,4222,1,0,0,0,4223,4224,1,0,0,0,4224,291,1,0,0, + 0,4225,4236,5,99,0,0,4226,4227,3,294,147,0,4227,4228,5,1135,0,0, + 4228,4230,1,0,0,0,4229,4226,1,0,0,0,4229,4230,1,0,0,0,4230,4231, + 1,0,0,0,4231,4237,3,294,147,0,4232,4233,3,294,147,0,4233,4234,5, + 532,0,0,4234,4235,3,294,147,0,4235,4237,1,0,0,0,4236,4229,1,0,0, + 0,4236,4232,1,0,0,0,4237,293,1,0,0,0,4238,4242,3,590,295,0,4239, + 4242,3,566,283,0,4240,4242,3,586,293,0,4241,4238,1,0,0,0,4241,4239, + 1,0,0,0,4241,4240,1,0,0,0,4242,295,1,0,0,0,4243,4244,5,629,0,0,4244, + 4253,5,653,0,0,4245,4250,3,318,159,0,4246,4247,5,1135,0,0,4247,4249, + 3,318,159,0,4248,4246,1,0,0,0,4249,4252,1,0,0,0,4250,4248,1,0,0, + 0,4250,4251,1,0,0,0,4251,4254,1,0,0,0,4252,4250,1,0,0,0,4253,4245, + 1,0,0,0,4253,4254,1,0,0,0,4254,297,1,0,0,0,4255,4257,5,344,0,0,4256, + 4258,5,678,0,0,4257,4256,1,0,0,0,4257,4258,1,0,0,0,4258,299,1,0, + 0,0,4259,4261,5,369,0,0,4260,4262,5,678,0,0,4261,4260,1,0,0,0,4261, + 4262,1,0,0,0,4262,4268,1,0,0,0,4263,4265,5,10,0,0,4264,4266,5,521, + 0,0,4265,4264,1,0,0,0,4265,4266,1,0,0,0,4266,4267,1,0,0,0,4267,4269, + 5,353,0,0,4268,4263,1,0,0,0,4268,4269,1,0,0,0,4269,4274,1,0,0,0, + 4270,4272,5,521,0,0,4271,4270,1,0,0,0,4271,4272,1,0,0,0,4272,4273, + 1,0,0,0,4273,4275,5,138,0,0,4274,4271,1,0,0,0,4274,4275,1,0,0,0, + 4275,301,1,0,0,0,4276,4278,5,597,0,0,4277,4279,5,678,0,0,4278,4277, + 1,0,0,0,4278,4279,1,0,0,0,4279,4285,1,0,0,0,4280,4282,5,10,0,0,4281, + 4283,5,521,0,0,4282,4281,1,0,0,0,4282,4283,1,0,0,0,4283,4284,1,0, + 0,0,4284,4286,5,353,0,0,4285,4280,1,0,0,0,4285,4286,1,0,0,0,4286, + 4291,1,0,0,0,4287,4289,5,521,0,0,4288,4287,1,0,0,0,4288,4289,1,0, + 0,0,4289,4290,1,0,0,0,4290,4292,5,138,0,0,4291,4288,1,0,0,0,4291, + 4292,1,0,0,0,4292,303,1,0,0,0,4293,4294,5,604,0,0,4294,4295,3,584, + 292,0,4295,305,1,0,0,0,4296,4298,5,597,0,0,4297,4299,5,678,0,0,4298, + 4297,1,0,0,0,4298,4299,1,0,0,0,4299,4300,1,0,0,0,4300,4302,5,175, + 0,0,4301,4303,5,604,0,0,4302,4301,1,0,0,0,4302,4303,1,0,0,0,4303, + 4304,1,0,0,0,4304,4305,3,584,292,0,4305,307,1,0,0,0,4306,4307,5, + 138,0,0,4307,4308,5,604,0,0,4308,4309,3,584,292,0,4309,309,1,0,0, + 0,4310,4311,5,103,0,0,4311,4312,7,54,0,0,4312,4317,3,320,160,0,4313, + 4314,5,1135,0,0,4314,4316,3,320,160,0,4315,4313,1,0,0,0,4316,4319, + 1,0,0,0,4317,4315,1,0,0,0,4317,4318,1,0,0,0,4318,4321,1,0,0,0,4319, + 4317,1,0,0,0,4320,4322,3,646,323,0,4321,4320,1,0,0,0,4321,4322,1, + 0,0,0,4322,311,1,0,0,0,4323,4324,5,182,0,0,4324,4325,5,742,0,0,4325, + 313,1,0,0,0,4326,4327,5,153,0,0,4327,4328,5,340,0,0,4328,4329,5, + 1124,0,0,4329,4330,7,24,0,0,4330,315,1,0,0,0,4331,4333,5,153,0,0, + 4332,4334,7,55,0,0,4333,4332,1,0,0,0,4333,4334,1,0,0,0,4334,4335, + 1,0,0,0,4335,4336,5,653,0,0,4336,4341,3,324,162,0,4337,4338,5,1135, + 0,0,4338,4340,3,324,162,0,4339,4337,1,0,0,0,4340,4343,1,0,0,0,4341, + 4339,1,0,0,0,4341,4342,1,0,0,0,4342,317,1,0,0,0,4343,4341,1,0,0, + 0,4344,4345,5,192,0,0,4345,4346,5,377,0,0,4346,4352,5,616,0,0,4347, + 4348,5,134,0,0,4348,4352,5,193,0,0,4349,4350,5,134,0,0,4350,4352, + 5,538,0,0,4351,4344,1,0,0,0,4351,4347,1,0,0,0,4351,4349,1,0,0,0, + 4352,319,1,0,0,0,4353,4358,3,550,275,0,4354,4356,5,12,0,0,4355,4354, + 1,0,0,0,4355,4356,1,0,0,0,4356,4357,1,0,0,0,4357,4359,3,584,292, + 0,4358,4355,1,0,0,0,4358,4359,1,0,0,0,4359,4360,1,0,0,0,4360,4361, + 3,322,161,0,4361,321,1,0,0,0,4362,4364,5,134,0,0,4363,4365,5,474, + 0,0,4364,4363,1,0,0,0,4364,4365,1,0,0,0,4365,4371,1,0,0,0,4366,4368, + 5,106,0,0,4367,4366,1,0,0,0,4367,4368,1,0,0,0,4368,4369,1,0,0,0, + 4369,4371,5,193,0,0,4370,4362,1,0,0,0,4370,4367,1,0,0,0,4371,323, + 1,0,0,0,4372,4373,5,464,0,0,4373,4374,5,472,0,0,4374,4380,3,326, + 163,0,4375,4376,5,134,0,0,4376,4380,5,193,0,0,4377,4378,5,134,0, + 0,4378,4380,5,538,0,0,4379,4372,1,0,0,0,4379,4375,1,0,0,0,4379,4377, + 1,0,0,0,4380,325,1,0,0,0,4381,4382,5,799,0,0,4382,4389,5,134,0,0, + 4383,4384,5,134,0,0,4384,4389,5,800,0,0,4385,4386,5,134,0,0,4386, + 4389,5,801,0,0,4387,4389,5,802,0,0,4388,4381,1,0,0,0,4388,4383,1, + 0,0,0,4388,4385,1,0,0,0,4388,4387,1,0,0,0,4389,327,1,0,0,0,4390, + 4391,5,24,0,0,4391,4392,5,477,0,0,4392,4393,5,175,0,0,4393,4398, + 3,346,173,0,4394,4395,5,1135,0,0,4395,4397,3,346,173,0,4396,4394, + 1,0,0,0,4397,4400,1,0,0,0,4398,4396,1,0,0,0,4398,4399,1,0,0,0,4399, + 4402,1,0,0,0,4400,4398,1,0,0,0,4401,4403,3,354,177,0,4402,4401,1, + 0,0,0,4402,4403,1,0,0,0,4403,329,1,0,0,0,4404,4405,5,24,0,0,4405, + 4406,5,588,0,0,4406,4407,5,429,0,0,4407,4412,3,356,178,0,4408,4409, + 5,1135,0,0,4409,4411,3,356,178,0,4410,4408,1,0,0,0,4411,4414,1,0, + 0,0,4412,4410,1,0,0,0,4412,4413,1,0,0,0,4413,331,1,0,0,0,4414,4412, + 1,0,0,0,4415,4416,5,132,0,0,4416,4417,7,56,0,0,4417,4422,5,476,0, + 0,4418,4419,5,175,0,0,4419,4423,5,1148,0,0,4420,4421,5,15,0,0,4421, + 4423,5,1148,0,0,4422,4418,1,0,0,0,4422,4420,1,0,0,0,4423,333,1,0, + 0,0,4424,4425,5,589,0,0,4425,4426,5,477,0,0,4426,335,1,0,0,0,4427, + 4428,5,589,0,0,4428,4430,5,614,0,0,4429,4431,5,6,0,0,4430,4429,1, + 0,0,0,4430,4431,1,0,0,0,4431,4433,1,0,0,0,4432,4434,3,354,177,0, + 4433,4432,1,0,0,0,4433,4434,1,0,0,0,4434,337,1,0,0,0,4435,4436,5, + 629,0,0,4436,4445,5,614,0,0,4437,4442,3,360,180,0,4438,4439,5,1135, + 0,0,4439,4441,3,360,180,0,4440,4438,1,0,0,0,4441,4444,1,0,0,0,4442, + 4440,1,0,0,0,4442,4443,1,0,0,0,4443,4446,1,0,0,0,4444,4442,1,0,0, + 0,4445,4437,1,0,0,0,4445,4446,1,0,0,0,4446,4449,1,0,0,0,4447,4448, + 5,663,0,0,4448,4450,3,362,181,0,4449,4447,1,0,0,0,4449,4450,1,0, + 0,0,4450,4454,1,0,0,0,4451,4453,3,364,182,0,4452,4451,1,0,0,0,4453, + 4456,1,0,0,0,4454,4452,1,0,0,0,4454,4455,1,0,0,0,4455,4458,1,0,0, + 0,4456,4454,1,0,0,0,4457,4459,3,354,177,0,4458,4457,1,0,0,0,4458, + 4459,1,0,0,0,4459,339,1,0,0,0,4460,4461,5,635,0,0,4461,4470,5,614, + 0,0,4462,4467,3,360,180,0,4463,4464,5,1135,0,0,4464,4466,3,360,180, + 0,4465,4463,1,0,0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0,4467,4468, + 1,0,0,0,4468,4471,1,0,0,0,4469,4467,1,0,0,0,4470,4462,1,0,0,0,4470, + 4471,1,0,0,0,4471,341,1,0,0,0,4472,4473,5,629,0,0,4473,4474,5,441, + 0,0,4474,343,1,0,0,0,4475,4476,5,635,0,0,4476,4477,5,441,0,0,4477, + 345,1,0,0,0,4478,4479,3,348,174,0,4479,4480,5,1124,0,0,4480,4481, + 5,1148,0,0,4481,4508,1,0,0,0,4482,4483,3,350,175,0,4483,4484,5,1124, + 0,0,4484,4485,3,590,295,0,4485,4508,1,0,0,0,4486,4487,3,352,176, + 0,4487,4488,5,1124,0,0,4488,4489,7,24,0,0,4489,4508,1,0,0,0,4490, + 4491,5,481,0,0,4491,4492,5,1124,0,0,4492,4508,5,1151,0,0,4493,4494, + 5,449,0,0,4494,4495,5,1124,0,0,4495,4504,5,1133,0,0,4496,4501,3, + 584,292,0,4497,4498,5,1135,0,0,4498,4500,3,584,292,0,4499,4497,1, + 0,0,0,4500,4503,1,0,0,0,4501,4499,1,0,0,0,4501,4502,1,0,0,0,4502, + 4505,1,0,0,0,4503,4501,1,0,0,0,4504,4496,1,0,0,0,4504,4505,1,0,0, + 0,4505,4506,1,0,0,0,4506,4508,5,1134,0,0,4507,4478,1,0,0,0,4507, + 4482,1,0,0,0,4507,4486,1,0,0,0,4507,4490,1,0,0,0,4507,4493,1,0,0, + 0,4508,347,1,0,0,0,4509,4510,7,57,0,0,4510,349,1,0,0,0,4511,4512, + 7,58,0,0,4512,351,1,0,0,0,4513,4514,7,59,0,0,4514,353,1,0,0,0,4515, + 4516,5,65,0,0,4516,4517,5,355,0,0,4517,4518,5,1148,0,0,4518,355, + 1,0,0,0,4519,4520,5,581,0,0,4520,4521,5,1124,0,0,4521,4522,5,1133, + 0,0,4522,4523,3,616,308,0,4523,4524,5,1134,0,0,4524,4569,1,0,0,0, + 4525,4526,5,583,0,0,4526,4527,5,1124,0,0,4527,4528,5,1133,0,0,4528, + 4529,3,616,308,0,4529,4530,5,1134,0,0,4530,4569,1,0,0,0,4531,4532, + 5,582,0,0,4532,4533,5,1124,0,0,4533,4534,5,1133,0,0,4534,4535,3, + 620,310,0,4535,4536,5,1134,0,0,4536,4569,1,0,0,0,4537,4538,5,584, + 0,0,4538,4539,5,1124,0,0,4539,4540,5,1133,0,0,4540,4541,3,620,310, + 0,4541,4542,5,1134,0,0,4542,4569,1,0,0,0,4543,4544,5,586,0,0,4544, + 4545,5,1124,0,0,4545,4546,5,1133,0,0,4546,4547,3,630,315,0,4547, + 4548,5,1134,0,0,4548,4569,1,0,0,0,4549,4550,5,587,0,0,4550,4551, + 5,1124,0,0,4551,4552,5,1133,0,0,4552,4553,3,630,315,0,4553,4554, + 5,1134,0,0,4554,4569,1,0,0,0,4555,4556,5,585,0,0,4556,4557,5,1124, + 0,0,4557,4558,5,1133,0,0,4558,4563,3,358,179,0,4559,4560,5,1135, + 0,0,4560,4562,3,358,179,0,4561,4559,1,0,0,0,4562,4565,1,0,0,0,4563, + 4561,1,0,0,0,4563,4564,1,0,0,0,4564,4566,1,0,0,0,4565,4563,1,0,0, + 0,4566,4567,5,1134,0,0,4567,4569,1,0,0,0,4568,4519,1,0,0,0,4568, + 4525,1,0,0,0,4568,4531,1,0,0,0,4568,4537,1,0,0,0,4568,4543,1,0,0, + 0,4568,4549,1,0,0,0,4568,4555,1,0,0,0,4569,357,1,0,0,0,4570,4571, + 5,1133,0,0,4571,4572,3,550,275,0,4572,4573,5,1135,0,0,4573,4574, + 3,550,275,0,4574,4575,5,1134,0,0,4575,359,1,0,0,0,4576,4577,7,60, + 0,0,4577,361,1,0,0,0,4578,4579,7,61,0,0,4579,4580,5,1124,0,0,4580, + 4597,3,366,183,0,4581,4582,5,483,0,0,4582,4583,5,1124,0,0,4583,4584, + 5,1148,0,0,4584,4585,5,1135,0,0,4585,4586,5,484,0,0,4586,4587,5, + 1124,0,0,4587,4597,3,590,295,0,4588,4589,5,575,0,0,4589,4590,5,1124, + 0,0,4590,4591,5,1148,0,0,4591,4592,5,1135,0,0,4592,4593,5,576,0, + 0,4593,4594,5,1124,0,0,4594,4597,3,590,295,0,4595,4597,5,623,0,0, + 4596,4578,1,0,0,0,4596,4581,1,0,0,0,4596,4588,1,0,0,0,4596,4595, + 1,0,0,0,4597,363,1,0,0,0,4598,4599,5,665,0,0,4599,4600,5,1124,0, + 0,4600,4611,5,1148,0,0,4601,4602,5,551,0,0,4602,4603,5,1124,0,0, + 4603,4611,5,1148,0,0,4604,4605,5,391,0,0,4605,4606,5,1124,0,0,4606, + 4611,5,1148,0,0,4607,4608,5,555,0,0,4608,4609,5,1124,0,0,4609,4611, + 5,1148,0,0,4610,4598,1,0,0,0,4610,4601,1,0,0,0,4610,4604,1,0,0,0, + 4610,4607,1,0,0,0,4611,365,1,0,0,0,4612,4617,3,576,288,0,4613,4614, + 5,1135,0,0,4614,4616,3,576,288,0,4615,4613,1,0,0,0,4616,4619,1,0, + 0,0,4617,4615,1,0,0,0,4617,4618,1,0,0,0,4618,4622,1,0,0,0,4619,4617, + 1,0,0,0,4620,4622,5,1148,0,0,4621,4612,1,0,0,0,4621,4620,1,0,0,0, + 4622,367,1,0,0,0,4623,4624,5,681,0,0,4624,4625,7,62,0,0,4625,4627, + 3,578,289,0,4626,4628,7,63,0,0,4627,4626,1,0,0,0,4627,4628,1,0,0, + 0,4628,369,1,0,0,0,4629,4630,5,681,0,0,4630,4631,5,407,0,0,4631, + 4637,3,578,289,0,4632,4635,5,643,0,0,4633,4634,5,65,0,0,4634,4636, + 5,509,0,0,4635,4633,1,0,0,0,4635,4636,1,0,0,0,4636,4638,1,0,0,0, + 4637,4632,1,0,0,0,4637,4638,1,0,0,0,4638,371,1,0,0,0,4639,4640,5, + 681,0,0,4640,4641,5,560,0,0,4641,4642,3,578,289,0,4642,373,1,0,0, + 0,4643,4644,5,681,0,0,4644,4645,5,369,0,0,4645,4648,3,578,289,0, + 4646,4647,5,536,0,0,4647,4649,5,553,0,0,4648,4646,1,0,0,0,4648,4649, + 1,0,0,0,4649,375,1,0,0,0,4650,4651,5,681,0,0,4651,4652,5,597,0,0, + 4652,4653,3,578,289,0,4653,377,1,0,0,0,4654,4655,5,681,0,0,4655, + 4658,5,570,0,0,4656,4657,5,32,0,0,4657,4659,3,578,289,0,4658,4656, + 1,0,0,0,4658,4659,1,0,0,0,4659,379,1,0,0,0,4660,4661,5,560,0,0,4661, + 4662,3,584,292,0,4662,4665,5,68,0,0,4663,4666,5,1148,0,0,4664,4666, + 5,1159,0,0,4665,4663,1,0,0,0,4665,4664,1,0,0,0,4666,381,1,0,0,0, + 4667,4668,5,708,0,0,4668,4671,3,584,292,0,4669,4670,5,187,0,0,4670, + 4672,3,632,316,0,4671,4669,1,0,0,0,4671,4672,1,0,0,0,4672,383,1, + 0,0,0,4673,4674,7,64,0,0,4674,4675,5,560,0,0,4675,4676,3,584,292, + 0,4676,385,1,0,0,0,4677,4680,3,388,194,0,4678,4680,3,4,2,0,4679, + 4677,1,0,0,0,4679,4678,1,0,0,0,4680,387,1,0,0,0,4681,4682,3,584, + 292,0,4682,4683,5,1144,0,0,4683,4685,1,0,0,0,4684,4681,1,0,0,0,4684, + 4685,1,0,0,0,4685,4686,1,0,0,0,4686,4692,5,344,0,0,4687,4688,3,408, + 204,0,4688,4689,5,1136,0,0,4689,4691,1,0,0,0,4690,4687,1,0,0,0,4691, + 4694,1,0,0,0,4692,4690,1,0,0,0,4692,4693,1,0,0,0,4693,4700,1,0,0, + 0,4694,4692,1,0,0,0,4695,4696,3,410,205,0,4696,4697,5,1136,0,0,4697, + 4699,1,0,0,0,4698,4695,1,0,0,0,4699,4702,1,0,0,0,4700,4698,1,0,0, + 0,4700,4701,1,0,0,0,4701,4708,1,0,0,0,4702,4700,1,0,0,0,4703,4704, + 3,412,206,0,4704,4705,5,1136,0,0,4705,4707,1,0,0,0,4706,4703,1,0, + 0,0,4707,4710,1,0,0,0,4708,4706,1,0,0,0,4708,4709,1,0,0,0,4709,4716, + 1,0,0,0,4710,4708,1,0,0,0,4711,4712,3,414,207,0,4712,4713,5,1136, + 0,0,4713,4715,1,0,0,0,4714,4711,1,0,0,0,4715,4718,1,0,0,0,4716,4714, + 1,0,0,0,4716,4717,1,0,0,0,4717,4722,1,0,0,0,4718,4716,1,0,0,0,4719, + 4721,3,418,209,0,4720,4719,1,0,0,0,4721,4724,1,0,0,0,4722,4720,1, + 0,0,0,4722,4723,1,0,0,0,4723,4725,1,0,0,0,4724,4722,1,0,0,0,4725, + 4727,5,407,0,0,4726,4728,3,584,292,0,4727,4726,1,0,0,0,4727,4728, + 1,0,0,0,4728,389,1,0,0,0,4729,4732,5,22,0,0,4730,4733,3,584,292, + 0,4731,4733,3,688,344,0,4732,4730,1,0,0,0,4732,4731,1,0,0,0,4732, + 4733,1,0,0,0,4733,4735,1,0,0,0,4734,4736,3,420,210,0,4735,4734,1, + 0,0,0,4736,4737,1,0,0,0,4737,4735,1,0,0,0,4737,4738,1,0,0,0,4738, + 4745,1,0,0,0,4739,4741,5,53,0,0,4740,4742,3,418,209,0,4741,4740, + 1,0,0,0,4742,4743,1,0,0,0,4743,4741,1,0,0,0,4743,4744,1,0,0,0,4744, + 4746,1,0,0,0,4745,4739,1,0,0,0,4745,4746,1,0,0,0,4746,4747,1,0,0, + 0,4747,4748,5,407,0,0,4748,4749,5,22,0,0,4749,391,1,0,0,0,4750,4751, + 5,77,0,0,4751,4752,3,688,344,0,4752,4754,5,174,0,0,4753,4755,3,418, + 209,0,4754,4753,1,0,0,0,4755,4756,1,0,0,0,4756,4754,1,0,0,0,4756, + 4757,1,0,0,0,4757,4761,1,0,0,0,4758,4760,3,422,211,0,4759,4758,1, + 0,0,0,4760,4763,1,0,0,0,4761,4759,1,0,0,0,4761,4762,1,0,0,0,4762, + 4770,1,0,0,0,4763,4761,1,0,0,0,4764,4766,5,53,0,0,4765,4767,3,418, + 209,0,4766,4765,1,0,0,0,4767,4768,1,0,0,0,4768,4766,1,0,0,0,4768, + 4769,1,0,0,0,4769,4771,1,0,0,0,4770,4764,1,0,0,0,4770,4771,1,0,0, + 0,4771,4772,1,0,0,0,4772,4773,5,407,0,0,4773,4774,5,77,0,0,4774, + 393,1,0,0,0,4775,4776,5,89,0,0,4776,4777,3,584,292,0,4777,395,1, + 0,0,0,4778,4779,5,96,0,0,4779,4780,3,584,292,0,4780,397,1,0,0,0, + 4781,4782,3,584,292,0,4782,4783,5,1144,0,0,4783,4785,1,0,0,0,4784, + 4781,1,0,0,0,4784,4785,1,0,0,0,4785,4786,1,0,0,0,4786,4788,5,105, + 0,0,4787,4789,3,418,209,0,4788,4787,1,0,0,0,4789,4790,1,0,0,0,4790, + 4788,1,0,0,0,4790,4791,1,0,0,0,4791,4792,1,0,0,0,4792,4793,5,407, + 0,0,4793,4795,5,105,0,0,4794,4796,3,584,292,0,4795,4794,1,0,0,0, + 4795,4796,1,0,0,0,4796,399,1,0,0,0,4797,4798,3,584,292,0,4798,4799, + 5,1144,0,0,4799,4801,1,0,0,0,4800,4797,1,0,0,0,4800,4801,1,0,0,0, + 4801,4802,1,0,0,0,4802,4804,5,140,0,0,4803,4805,3,418,209,0,4804, + 4803,1,0,0,0,4805,4806,1,0,0,0,4806,4804,1,0,0,0,4806,4807,1,0,0, + 0,4807,4808,1,0,0,0,4808,4809,5,663,0,0,4809,4810,3,688,344,0,4810, + 4811,5,407,0,0,4811,4813,5,140,0,0,4812,4814,3,584,292,0,4813,4812, + 1,0,0,0,4813,4814,1,0,0,0,4814,401,1,0,0,0,4815,4816,5,146,0,0,4816, + 4817,3,688,344,0,4817,403,1,0,0,0,4818,4819,3,584,292,0,4819,4820, + 5,1144,0,0,4820,4822,1,0,0,0,4821,4818,1,0,0,0,4821,4822,1,0,0,0, + 4822,4823,1,0,0,0,4823,4824,5,191,0,0,4824,4825,3,688,344,0,4825, + 4827,5,399,0,0,4826,4828,3,418,209,0,4827,4826,1,0,0,0,4828,4829, + 1,0,0,0,4829,4827,1,0,0,0,4829,4830,1,0,0,0,4830,4831,1,0,0,0,4831, + 4832,5,407,0,0,4832,4834,5,191,0,0,4833,4835,3,584,292,0,4834,4833, + 1,0,0,0,4834,4835,1,0,0,0,4835,405,1,0,0,0,4836,4837,5,361,0,0,4837, + 4852,3,584,292,0,4838,4843,5,64,0,0,4839,4841,5,520,0,0,4840,4839, + 1,0,0,0,4840,4841,1,0,0,0,4841,4842,1,0,0,0,4842,4844,5,68,0,0,4843, + 4840,1,0,0,0,4843,4844,1,0,0,0,4844,4845,1,0,0,0,4845,4846,3,584, + 292,0,4846,4847,5,87,0,0,4847,4848,3,616,308,0,4848,4852,1,0,0,0, + 4849,4850,5,539,0,0,4850,4852,3,584,292,0,4851,4836,1,0,0,0,4851, + 4838,1,0,0,0,4851,4849,1,0,0,0,4852,407,1,0,0,0,4853,4854,5,41,0, + 0,4854,4855,3,616,308,0,4855,4858,3,604,302,0,4856,4857,5,42,0,0, + 4857,4859,3,688,344,0,4858,4856,1,0,0,0,4858,4859,1,0,0,0,4859,409, + 1,0,0,0,4860,4861,5,41,0,0,4861,4862,3,584,292,0,4862,4863,5,29, + 0,0,4863,4870,5,65,0,0,4864,4871,3,590,295,0,4865,4867,5,162,0,0, + 4866,4868,5,669,0,0,4867,4866,1,0,0,0,4867,4868,1,0,0,0,4868,4869, + 1,0,0,0,4869,4871,5,1148,0,0,4870,4864,1,0,0,0,4870,4865,1,0,0,0, + 4871,411,1,0,0,0,4872,4873,5,41,0,0,4873,4874,3,584,292,0,4874,4875, + 5,38,0,0,4875,4876,5,65,0,0,4876,4877,3,198,99,0,4877,413,1,0,0, + 0,4878,4879,5,41,0,0,4879,4880,7,65,0,0,4880,4881,5,442,0,0,4881, + 4882,5,65,0,0,4882,4887,3,416,208,0,4883,4884,5,1135,0,0,4884,4886, + 3,416,208,0,4885,4883,1,0,0,0,4886,4889,1,0,0,0,4887,4885,1,0,0, + 0,4887,4888,1,0,0,0,4888,4890,1,0,0,0,4889,4887,1,0,0,0,4890,4891, + 3,386,193,0,4891,415,1,0,0,0,4892,4904,3,590,295,0,4893,4895,5,162, + 0,0,4894,4896,5,669,0,0,4895,4894,1,0,0,0,4895,4896,1,0,0,0,4896, + 4897,1,0,0,0,4897,4904,5,1148,0,0,4898,4904,3,584,292,0,4899,4904, + 5,163,0,0,4900,4901,5,114,0,0,4901,4904,5,435,0,0,4902,4904,5,161, + 0,0,4903,4892,1,0,0,0,4903,4893,1,0,0,0,4903,4898,1,0,0,0,4903,4899, + 1,0,0,0,4903,4900,1,0,0,0,4903,4902,1,0,0,0,4904,417,1,0,0,0,4905, + 4908,3,16,8,0,4906,4908,3,4,2,0,4907,4905,1,0,0,0,4907,4906,1,0, + 0,0,4908,4909,1,0,0,0,4909,4910,5,1136,0,0,4910,419,1,0,0,0,4911, + 4914,5,189,0,0,4912,4915,3,602,301,0,4913,4915,3,688,344,0,4914, + 4912,1,0,0,0,4914,4913,1,0,0,0,4915,4916,1,0,0,0,4916,4918,5,174, + 0,0,4917,4919,3,418,209,0,4918,4917,1,0,0,0,4919,4920,1,0,0,0,4920, + 4918,1,0,0,0,4920,4921,1,0,0,0,4921,421,1,0,0,0,4922,4923,5,54,0, + 0,4923,4924,3,688,344,0,4924,4926,5,174,0,0,4925,4927,3,418,209, + 0,4926,4925,1,0,0,0,4927,4928,1,0,0,0,4928,4926,1,0,0,0,4928,4929, + 1,0,0,0,4929,423,1,0,0,0,4930,4931,5,7,0,0,4931,4932,5,665,0,0,4932, + 4937,3,444,222,0,4933,4934,5,1135,0,0,4934,4936,3,444,222,0,4935, + 4933,1,0,0,0,4936,4939,1,0,0,0,4937,4935,1,0,0,0,4937,4938,1,0,0, + 0,4938,5004,1,0,0,0,4939,4937,1,0,0,0,4940,4941,5,7,0,0,4941,4943, + 5,665,0,0,4942,4944,3,640,320,0,4943,4942,1,0,0,0,4943,4944,1,0, + 0,0,4944,4945,1,0,0,0,4945,4950,3,446,223,0,4946,4947,5,1135,0,0, + 4947,4949,3,446,223,0,4948,4946,1,0,0,0,4949,4952,1,0,0,0,4950,4948, + 1,0,0,0,4950,4951,1,0,0,0,4951,4967,1,0,0,0,4952,4950,1,0,0,0,4953, + 4965,5,142,0,0,4954,4966,5,529,0,0,4955,4962,3,452,226,0,4956,4958, + 5,10,0,0,4957,4956,1,0,0,0,4957,4958,1,0,0,0,4958,4959,1,0,0,0,4959, + 4961,3,452,226,0,4960,4957,1,0,0,0,4961,4964,1,0,0,0,4962,4960,1, + 0,0,0,4962,4963,1,0,0,0,4963,4966,1,0,0,0,4964,4962,1,0,0,0,4965, + 4954,1,0,0,0,4965,4955,1,0,0,0,4966,4968,1,0,0,0,4967,4953,1,0,0, + 0,4967,4968,1,0,0,0,4968,4975,1,0,0,0,4969,4971,5,192,0,0,4970,4972, + 3,454,227,0,4971,4970,1,0,0,0,4972,4973,1,0,0,0,4973,4971,1,0,0, + 0,4973,4974,1,0,0,0,4974,4976,1,0,0,0,4975,4969,1,0,0,0,4975,4976, + 1,0,0,0,4976,4981,1,0,0,0,4977,4980,3,456,228,0,4978,4980,3,458, + 229,0,4979,4977,1,0,0,0,4979,4978,1,0,0,0,4980,4983,1,0,0,0,4981, + 4979,1,0,0,0,4981,4982,1,0,0,0,4982,4988,1,0,0,0,4983,4981,1,0,0, + 0,4984,4985,5,368,0,0,4985,4989,5,1148,0,0,4986,4987,5,14,0,0,4987, + 4989,5,1148,0,0,4988,4984,1,0,0,0,4988,4986,1,0,0,0,4988,4989,1, + 0,0,0,4989,5004,1,0,0,0,4990,4991,5,7,0,0,4991,4993,5,665,0,0,4992, + 4994,3,640,320,0,4993,4992,1,0,0,0,4993,4994,1,0,0,0,4994,4997,1, + 0,0,0,4995,4998,3,564,282,0,4996,4998,3,584,292,0,4997,4995,1,0, + 0,0,4997,4996,1,0,0,0,4998,4999,1,0,0,0,4999,5000,5,42,0,0,5000, + 5001,5,596,0,0,5001,5002,3,432,216,0,5002,5004,1,0,0,0,5003,4930, + 1,0,0,0,5003,4940,1,0,0,0,5003,4990,1,0,0,0,5004,425,1,0,0,0,5005, + 5006,5,33,0,0,5006,5007,5,665,0,0,5007,5012,3,446,223,0,5008,5009, + 5,1135,0,0,5009,5011,3,446,223,0,5010,5008,1,0,0,0,5011,5014,1,0, + 0,0,5012,5010,1,0,0,0,5012,5013,1,0,0,0,5013,5071,1,0,0,0,5014,5012, + 1,0,0,0,5015,5016,5,33,0,0,5016,5018,5,665,0,0,5017,5019,3,642,321, + 0,5018,5017,1,0,0,0,5018,5019,1,0,0,0,5019,5020,1,0,0,0,5020,5025, + 3,446,223,0,5021,5022,5,1135,0,0,5022,5024,3,446,223,0,5023,5021, + 1,0,0,0,5024,5027,1,0,0,0,5025,5023,1,0,0,0,5025,5026,1,0,0,0,5026, + 5031,1,0,0,0,5027,5025,1,0,0,0,5028,5029,5,42,0,0,5029,5030,5,596, + 0,0,5030,5032,3,432,216,0,5031,5028,1,0,0,0,5031,5032,1,0,0,0,5032, + 5047,1,0,0,0,5033,5045,5,142,0,0,5034,5046,5,529,0,0,5035,5042,3, + 452,226,0,5036,5038,5,10,0,0,5037,5036,1,0,0,0,5037,5038,1,0,0,0, + 5038,5039,1,0,0,0,5039,5041,3,452,226,0,5040,5037,1,0,0,0,5041,5044, + 1,0,0,0,5042,5040,1,0,0,0,5042,5043,1,0,0,0,5043,5046,1,0,0,0,5044, + 5042,1,0,0,0,5045,5034,1,0,0,0,5045,5035,1,0,0,0,5046,5048,1,0,0, + 0,5047,5033,1,0,0,0,5047,5048,1,0,0,0,5048,5055,1,0,0,0,5049,5051, + 5,192,0,0,5050,5052,3,454,227,0,5051,5050,1,0,0,0,5052,5053,1,0, + 0,0,5053,5051,1,0,0,0,5053,5054,1,0,0,0,5054,5056,1,0,0,0,5055,5049, + 1,0,0,0,5055,5056,1,0,0,0,5056,5061,1,0,0,0,5057,5060,3,456,228, + 0,5058,5060,3,458,229,0,5059,5057,1,0,0,0,5059,5058,1,0,0,0,5060, + 5063,1,0,0,0,5061,5059,1,0,0,0,5061,5062,1,0,0,0,5062,5068,1,0,0, + 0,5063,5061,1,0,0,0,5064,5065,5,368,0,0,5065,5069,5,1148,0,0,5066, + 5067,5,14,0,0,5067,5069,5,1148,0,0,5068,5064,1,0,0,0,5068,5066,1, + 0,0,0,5068,5069,1,0,0,0,5069,5071,1,0,0,0,5070,5005,1,0,0,0,5070, + 5015,1,0,0,0,5071,427,1,0,0,0,5072,5073,5,51,0,0,5073,5075,5,665, + 0,0,5074,5076,3,640,320,0,5075,5074,1,0,0,0,5075,5076,1,0,0,0,5076, + 5077,1,0,0,0,5077,5082,3,564,282,0,5078,5079,5,1135,0,0,5079,5081, + 3,564,282,0,5080,5078,1,0,0,0,5081,5084,1,0,0,0,5082,5080,1,0,0, + 0,5082,5083,1,0,0,0,5083,429,1,0,0,0,5084,5082,1,0,0,0,5085,5086, + 5,72,0,0,5086,5091,3,460,230,0,5087,5088,5,1135,0,0,5088,5090,3, + 460,230,0,5089,5087,1,0,0,0,5090,5093,1,0,0,0,5091,5089,1,0,0,0, + 5091,5092,1,0,0,0,5092,5094,1,0,0,0,5093,5091,1,0,0,0,5094,5096, + 5,118,0,0,5095,5097,7,66,0,0,5096,5095,1,0,0,0,5096,5097,1,0,0,0, + 5097,5098,1,0,0,0,5098,5099,3,464,232,0,5099,5100,5,175,0,0,5100, + 5105,3,446,223,0,5101,5102,5,1135,0,0,5102,5104,3,446,223,0,5103, + 5101,1,0,0,0,5104,5107,1,0,0,0,5105,5103,1,0,0,0,5105,5106,1,0,0, + 0,5106,5122,1,0,0,0,5107,5105,1,0,0,0,5108,5120,5,142,0,0,5109,5121, + 5,529,0,0,5110,5117,3,452,226,0,5111,5113,5,10,0,0,5112,5111,1,0, + 0,0,5112,5113,1,0,0,0,5113,5114,1,0,0,0,5114,5116,3,452,226,0,5115, + 5112,1,0,0,0,5116,5119,1,0,0,0,5117,5115,1,0,0,0,5117,5118,1,0,0, + 0,5118,5121,1,0,0,0,5119,5117,1,0,0,0,5120,5109,1,0,0,0,5120,5110, + 1,0,0,0,5121,5123,1,0,0,0,5122,5108,1,0,0,0,5122,5123,1,0,0,0,5123, + 5133,1,0,0,0,5124,5130,5,192,0,0,5125,5126,5,72,0,0,5126,5129,5, + 120,0,0,5127,5129,3,454,227,0,5128,5125,1,0,0,0,5128,5127,1,0,0, + 0,5129,5132,1,0,0,0,5130,5128,1,0,0,0,5130,5131,1,0,0,0,5131,5134, + 1,0,0,0,5132,5130,1,0,0,0,5133,5124,1,0,0,0,5133,5134,1,0,0,0,5134, + 5141,1,0,0,0,5135,5136,5,12,0,0,5136,5137,3,564,282,0,5137,5138, + 5,192,0,0,5138,5139,5,596,0,0,5139,5140,3,432,216,0,5140,5142,1, + 0,0,0,5141,5135,1,0,0,0,5141,5142,1,0,0,0,5142,5179,1,0,0,0,5143, + 5146,5,72,0,0,5144,5147,3,564,282,0,5145,5147,3,584,292,0,5146,5144, + 1,0,0,0,5146,5145,1,0,0,0,5147,5155,1,0,0,0,5148,5151,5,1135,0,0, + 5149,5152,3,564,282,0,5150,5152,3,584,292,0,5151,5149,1,0,0,0,5151, + 5150,1,0,0,0,5152,5154,1,0,0,0,5153,5148,1,0,0,0,5154,5157,1,0,0, + 0,5155,5153,1,0,0,0,5155,5156,1,0,0,0,5156,5158,1,0,0,0,5157,5155, + 1,0,0,0,5158,5161,5,175,0,0,5159,5162,3,564,282,0,5160,5162,3,584, + 292,0,5161,5159,1,0,0,0,5161,5160,1,0,0,0,5162,5170,1,0,0,0,5163, + 5166,5,1135,0,0,5164,5167,3,564,282,0,5165,5167,3,584,292,0,5166, + 5164,1,0,0,0,5166,5165,1,0,0,0,5167,5169,1,0,0,0,5168,5163,1,0,0, + 0,5169,5172,1,0,0,0,5170,5168,1,0,0,0,5170,5171,1,0,0,0,5171,5176, + 1,0,0,0,5172,5170,1,0,0,0,5173,5174,5,192,0,0,5174,5175,5,697,0, + 0,5175,5177,5,120,0,0,5176,5173,1,0,0,0,5176,5177,1,0,0,0,5177,5179, + 1,0,0,0,5178,5085,1,0,0,0,5178,5143,1,0,0,0,5179,431,1,0,0,0,5180, + 5203,5,42,0,0,5181,5203,5,529,0,0,5182,5192,5,6,0,0,5183,5184,5, + 59,0,0,5184,5189,3,564,282,0,5185,5186,5,1135,0,0,5186,5188,3,564, + 282,0,5187,5185,1,0,0,0,5188,5191,1,0,0,0,5189,5187,1,0,0,0,5189, + 5190,1,0,0,0,5190,5193,1,0,0,0,5191,5189,1,0,0,0,5192,5183,1,0,0, + 0,5192,5193,1,0,0,0,5193,5203,1,0,0,0,5194,5199,3,564,282,0,5195, + 5196,5,1135,0,0,5196,5198,3,564,282,0,5197,5195,1,0,0,0,5198,5201, + 1,0,0,0,5199,5197,1,0,0,0,5199,5200,1,0,0,0,5200,5203,1,0,0,0,5201, + 5199,1,0,0,0,5202,5180,1,0,0,0,5202,5181,1,0,0,0,5202,5182,1,0,0, + 0,5202,5194,1,0,0,0,5203,433,1,0,0,0,5204,5205,5,72,0,0,5205,5206, + 5,566,0,0,5206,5207,5,118,0,0,5207,5208,3,564,282,0,5208,5209,5, + 175,0,0,5209,5214,3,564,282,0,5210,5211,5,1135,0,0,5211,5213,3,564, + 282,0,5212,5210,1,0,0,0,5213,5216,1,0,0,0,5214,5212,1,0,0,0,5214, + 5215,1,0,0,0,5215,5220,1,0,0,0,5216,5214,1,0,0,0,5217,5218,5,192, + 0,0,5218,5219,5,72,0,0,5219,5221,5,120,0,0,5220,5217,1,0,0,0,5220, + 5221,1,0,0,0,5221,435,1,0,0,0,5222,5223,5,139,0,0,5223,5224,5,665, + 0,0,5224,5229,3,466,233,0,5225,5226,5,1135,0,0,5226,5228,3,466,233, + 0,5227,5225,1,0,0,0,5228,5231,1,0,0,0,5229,5227,1,0,0,0,5229,5230, + 1,0,0,0,5230,437,1,0,0,0,5231,5229,1,0,0,0,5232,5233,5,147,0,0,5233, + 5238,3,460,230,0,5234,5235,5,1135,0,0,5235,5237,3,460,230,0,5236, + 5234,1,0,0,0,5237,5240,1,0,0,0,5238,5236,1,0,0,0,5238,5239,1,0,0, + 0,5239,5241,1,0,0,0,5240,5238,1,0,0,0,5241,5243,5,118,0,0,5242,5244, + 7,66,0,0,5243,5242,1,0,0,0,5243,5244,1,0,0,0,5244,5245,1,0,0,0,5245, + 5246,3,464,232,0,5246,5247,5,68,0,0,5247,5252,3,564,282,0,5248,5249, + 5,1135,0,0,5249,5251,3,564,282,0,5250,5248,1,0,0,0,5251,5254,1,0, + 0,0,5252,5250,1,0,0,0,5252,5253,1,0,0,0,5253,5303,1,0,0,0,5254,5252, + 1,0,0,0,5255,5256,5,147,0,0,5256,5258,5,6,0,0,5257,5259,5,725,0, + 0,5258,5257,1,0,0,0,5258,5259,1,0,0,0,5259,5260,1,0,0,0,5260,5261, + 5,1135,0,0,5261,5262,5,72,0,0,5262,5263,5,120,0,0,5263,5264,5,68, + 0,0,5264,5269,3,564,282,0,5265,5266,5,1135,0,0,5266,5268,3,564,282, + 0,5267,5265,1,0,0,0,5268,5271,1,0,0,0,5269,5267,1,0,0,0,5269,5270, + 1,0,0,0,5270,5303,1,0,0,0,5271,5269,1,0,0,0,5272,5275,5,147,0,0, + 5273,5276,3,564,282,0,5274,5276,3,584,292,0,5275,5273,1,0,0,0,5275, + 5274,1,0,0,0,5276,5284,1,0,0,0,5277,5280,5,1135,0,0,5278,5281,3, + 564,282,0,5279,5281,3,584,292,0,5280,5278,1,0,0,0,5280,5279,1,0, + 0,0,5281,5283,1,0,0,0,5282,5277,1,0,0,0,5283,5286,1,0,0,0,5284,5282, + 1,0,0,0,5284,5285,1,0,0,0,5285,5287,1,0,0,0,5286,5284,1,0,0,0,5287, + 5290,5,68,0,0,5288,5291,3,564,282,0,5289,5291,3,584,292,0,5290,5288, + 1,0,0,0,5290,5289,1,0,0,0,5291,5299,1,0,0,0,5292,5295,5,1135,0,0, + 5293,5296,3,564,282,0,5294,5296,3,584,292,0,5295,5293,1,0,0,0,5295, + 5294,1,0,0,0,5296,5298,1,0,0,0,5297,5292,1,0,0,0,5298,5301,1,0,0, + 0,5299,5297,1,0,0,0,5299,5300,1,0,0,0,5300,5303,1,0,0,0,5301,5299, + 1,0,0,0,5302,5232,1,0,0,0,5302,5255,1,0,0,0,5302,5272,1,0,0,0,5303, + 439,1,0,0,0,5304,5305,5,147,0,0,5305,5306,5,566,0,0,5306,5307,5, + 118,0,0,5307,5308,3,564,282,0,5308,5309,5,68,0,0,5309,5314,3,564, + 282,0,5310,5311,5,1135,0,0,5311,5313,3,564,282,0,5312,5310,1,0,0, + 0,5313,5316,1,0,0,0,5314,5312,1,0,0,0,5314,5315,1,0,0,0,5315,441, + 1,0,0,0,5316,5314,1,0,0,0,5317,5318,5,153,0,0,5318,5321,5,551,0, + 0,5319,5320,5,65,0,0,5320,5322,3,564,282,0,5321,5319,1,0,0,0,5321, + 5322,1,0,0,0,5322,5323,1,0,0,0,5323,5326,5,1124,0,0,5324,5327,3, + 682,341,0,5325,5327,5,1148,0,0,5326,5324,1,0,0,0,5326,5325,1,0,0, + 0,5327,443,1,0,0,0,5328,5329,3,564,282,0,5329,5330,3,456,228,0,5330, + 445,1,0,0,0,5331,5332,3,564,282,0,5332,5333,5,448,0,0,5333,5334, + 5,19,0,0,5334,5335,5,551,0,0,5335,5336,5,1148,0,0,5336,5357,1,0, + 0,0,5337,5338,3,564,282,0,5338,5339,5,448,0,0,5339,5340,5,19,0,0, + 5340,5341,5,991,0,0,5341,5342,5,551,0,0,5342,5343,3,448,224,0,5343, + 5357,1,0,0,0,5344,5345,3,564,282,0,5345,5346,5,448,0,0,5346,5347, + 5,19,0,0,5347,5348,5,1148,0,0,5348,5349,3,448,224,0,5349,5357,1, + 0,0,0,5350,5351,3,564,282,0,5351,5352,5,448,0,0,5352,5353,5,192, + 0,0,5353,5354,3,450,225,0,5354,5357,1,0,0,0,5355,5357,3,564,282, + 0,5356,5331,1,0,0,0,5356,5337,1,0,0,0,5356,5344,1,0,0,0,5356,5350, + 1,0,0,0,5356,5355,1,0,0,0,5357,447,1,0,0,0,5358,5359,5,141,0,0,5359, + 5361,5,1148,0,0,5360,5358,1,0,0,0,5360,5361,1,0,0,0,5361,5365,1, + 0,0,0,5362,5363,5,145,0,0,5363,5364,5,35,0,0,5364,5366,5,551,0,0, + 5365,5362,1,0,0,0,5365,5366,1,0,0,0,5366,449,1,0,0,0,5367,5375,3, + 582,291,0,5368,5372,7,67,0,0,5369,5373,5,1148,0,0,5370,5371,5,991, + 0,0,5371,5373,5,551,0,0,5372,5369,1,0,0,0,5372,5370,1,0,0,0,5373, + 5374,1,0,0,0,5374,5376,3,448,224,0,5375,5368,1,0,0,0,5375,5376,1, + 0,0,0,5376,5382,1,0,0,0,5377,5378,3,582,291,0,5378,5379,5,187,0, + 0,5379,5380,3,682,341,0,5380,5382,1,0,0,0,5381,5367,1,0,0,0,5381, + 5377,1,0,0,0,5382,451,1,0,0,0,5383,5392,5,167,0,0,5384,5392,5,680, + 0,0,5385,5386,5,358,0,0,5386,5392,5,1148,0,0,5387,5388,5,465,0,0, + 5388,5392,5,1148,0,0,5389,5390,5,640,0,0,5390,5392,5,1148,0,0,5391, + 5383,1,0,0,0,5391,5384,1,0,0,0,5391,5385,1,0,0,0,5391,5387,1,0,0, + 0,5391,5389,1,0,0,0,5392,453,1,0,0,0,5393,5394,5,499,0,0,5394,5402, + 3,590,295,0,5395,5396,5,502,0,0,5396,5402,3,590,295,0,5397,5398, + 5,498,0,0,5398,5402,3,590,295,0,5399,5400,5,503,0,0,5400,5402,3, + 590,295,0,5401,5393,1,0,0,0,5401,5395,1,0,0,0,5401,5397,1,0,0,0, + 5401,5399,1,0,0,0,5402,455,1,0,0,0,5403,5404,5,551,0,0,5404,5411, + 5,420,0,0,5405,5412,5,42,0,0,5406,5412,5,519,0,0,5407,5408,5,86, + 0,0,5408,5409,3,590,295,0,5409,5410,5,691,0,0,5410,5412,1,0,0,0, + 5411,5405,1,0,0,0,5411,5406,1,0,0,0,5411,5407,1,0,0,0,5411,5412, + 1,0,0,0,5412,5442,1,0,0,0,5413,5414,5,551,0,0,5414,5417,5,445,0, + 0,5415,5418,5,42,0,0,5416,5418,3,590,295,0,5417,5415,1,0,0,0,5417, + 5416,1,0,0,0,5418,5442,1,0,0,0,5419,5420,5,551,0,0,5420,5421,5,595, + 0,0,5421,5426,5,86,0,0,5422,5427,5,42,0,0,5423,5424,3,590,295,0, + 5424,5425,5,691,0,0,5425,5427,1,0,0,0,5426,5422,1,0,0,0,5426,5423, + 1,0,0,0,5427,5442,1,0,0,0,5428,5429,5,551,0,0,5429,5430,5,142,0, + 0,5430,5432,5,35,0,0,5431,5433,7,68,0,0,5432,5431,1,0,0,0,5432,5433, + 1,0,0,0,5433,5442,1,0,0,0,5434,5435,5,424,0,0,5435,5442,3,590,295, + 0,5436,5439,5,552,0,0,5437,5440,3,590,295,0,5438,5440,5,657,0,0, + 5439,5437,1,0,0,0,5439,5438,1,0,0,0,5440,5442,1,0,0,0,5441,5403, + 1,0,0,0,5441,5413,1,0,0,0,5441,5419,1,0,0,0,5441,5428,1,0,0,0,5441, + 5434,1,0,0,0,5441,5436,1,0,0,0,5442,457,1,0,0,0,5443,5444,5,332, + 0,0,5444,5445,7,69,0,0,5445,459,1,0,0,0,5446,5451,3,462,231,0,5447, + 5448,5,1133,0,0,5448,5449,3,616,308,0,5449,5450,5,1134,0,0,5450, + 5452,1,0,0,0,5451,5447,1,0,0,0,5451,5452,1,0,0,0,5452,461,1,0,0, + 0,5453,5455,5,6,0,0,5454,5456,5,725,0,0,5455,5454,1,0,0,0,5455,5456, + 1,0,0,0,5456,5547,1,0,0,0,5457,5459,5,7,0,0,5458,5460,5,733,0,0, + 5459,5458,1,0,0,0,5459,5460,1,0,0,0,5460,5547,1,0,0,0,5461,5469, + 5,33,0,0,5462,5463,5,649,0,0,5463,5470,5,742,0,0,5464,5470,5,733, + 0,0,5465,5470,5,671,0,0,5466,5470,5,665,0,0,5467,5470,5,647,0,0, + 5468,5470,5,596,0,0,5469,5462,1,0,0,0,5469,5464,1,0,0,0,5469,5465, + 1,0,0,0,5469,5466,1,0,0,0,5469,5467,1,0,0,0,5469,5468,1,0,0,0,5469, + 5470,1,0,0,0,5470,5547,1,0,0,0,5471,5547,5,44,0,0,5472,5474,5,51, + 0,0,5473,5475,5,596,0,0,5474,5473,1,0,0,0,5474,5475,1,0,0,0,5475, + 5547,1,0,0,0,5476,5547,5,415,0,0,5477,5547,5,708,0,0,5478,5547,5, + 709,0,0,5479,5480,5,72,0,0,5480,5547,5,120,0,0,5481,5547,5,81,0, + 0,5482,5547,5,85,0,0,5483,5484,5,103,0,0,5484,5547,5,742,0,0,5485, + 5547,5,726,0,0,5486,5547,5,566,0,0,5487,5547,5,136,0,0,5488,5547, + 5,727,0,0,5489,5490,5,588,0,0,5490,5547,7,70,0,0,5491,5547,5,152, + 0,0,5492,5493,5,155,0,0,5493,5547,7,71,0,0,5494,5547,5,739,0,0,5495, + 5547,5,740,0,0,5496,5547,5,177,0,0,5497,5547,5,184,0,0,5498,5547, + 5,185,0,0,5499,5547,5,698,0,0,5500,5547,5,699,0,0,5501,5547,5,700, + 0,0,5502,5547,5,701,0,0,5503,5547,5,702,0,0,5504,5547,5,703,0,0, + 5505,5547,5,704,0,0,5506,5547,5,705,0,0,5507,5547,5,706,0,0,5508, + 5547,5,707,0,0,5509,5547,5,710,0,0,5510,5547,5,711,0,0,5511,5547, + 5,712,0,0,5512,5547,5,713,0,0,5513,5547,5,714,0,0,5514,5547,5,715, + 0,0,5515,5547,5,716,0,0,5516,5547,5,717,0,0,5517,5547,5,718,0,0, + 5518,5547,5,719,0,0,5519,5547,5,722,0,0,5520,5547,5,723,0,0,5521, + 5547,5,724,0,0,5522,5547,5,728,0,0,5523,5547,5,729,0,0,5524,5547, + 5,730,0,0,5525,5547,5,731,0,0,5526,5547,5,732,0,0,5527,5547,5,735, + 0,0,5528,5547,5,736,0,0,5529,5547,5,737,0,0,5530,5547,5,158,0,0, + 5531,5547,5,738,0,0,5532,5547,5,1077,0,0,5533,5547,5,741,0,0,5534, + 5547,5,743,0,0,5535,5547,5,1088,0,0,5536,5547,5,744,0,0,5537,5547, + 5,745,0,0,5538,5539,5,102,0,0,5539,5540,5,68,0,0,5540,5547,5,734, + 0,0,5541,5542,5,152,0,0,5542,5543,5,87,0,0,5543,5547,5,734,0,0,5544, + 5545,5,720,0,0,5545,5547,5,721,0,0,5546,5453,1,0,0,0,5546,5457,1, + 0,0,0,5546,5461,1,0,0,0,5546,5471,1,0,0,0,5546,5472,1,0,0,0,5546, + 5476,1,0,0,0,5546,5477,1,0,0,0,5546,5478,1,0,0,0,5546,5479,1,0,0, + 0,5546,5481,1,0,0,0,5546,5482,1,0,0,0,5546,5483,1,0,0,0,5546,5485, + 1,0,0,0,5546,5486,1,0,0,0,5546,5487,1,0,0,0,5546,5488,1,0,0,0,5546, + 5489,1,0,0,0,5546,5491,1,0,0,0,5546,5492,1,0,0,0,5546,5494,1,0,0, + 0,5546,5495,1,0,0,0,5546,5496,1,0,0,0,5546,5497,1,0,0,0,5546,5498, + 1,0,0,0,5546,5499,1,0,0,0,5546,5500,1,0,0,0,5546,5501,1,0,0,0,5546, + 5502,1,0,0,0,5546,5503,1,0,0,0,5546,5504,1,0,0,0,5546,5505,1,0,0, + 0,5546,5506,1,0,0,0,5546,5507,1,0,0,0,5546,5508,1,0,0,0,5546,5509, + 1,0,0,0,5546,5510,1,0,0,0,5546,5511,1,0,0,0,5546,5512,1,0,0,0,5546, + 5513,1,0,0,0,5546,5514,1,0,0,0,5546,5515,1,0,0,0,5546,5516,1,0,0, + 0,5546,5517,1,0,0,0,5546,5518,1,0,0,0,5546,5519,1,0,0,0,5546,5520, + 1,0,0,0,5546,5521,1,0,0,0,5546,5522,1,0,0,0,5546,5523,1,0,0,0,5546, + 5524,1,0,0,0,5546,5525,1,0,0,0,5546,5526,1,0,0,0,5546,5527,1,0,0, + 0,5546,5528,1,0,0,0,5546,5529,1,0,0,0,5546,5530,1,0,0,0,5546,5531, + 1,0,0,0,5546,5532,1,0,0,0,5546,5533,1,0,0,0,5546,5534,1,0,0,0,5546, + 5535,1,0,0,0,5546,5536,1,0,0,0,5546,5537,1,0,0,0,5546,5538,1,0,0, + 0,5546,5541,1,0,0,0,5546,5544,1,0,0,0,5547,463,1,0,0,0,5548,5565, + 5,1117,0,0,5549,5550,5,1117,0,0,5550,5551,5,1132,0,0,5551,5565,5, + 1117,0,0,5552,5553,3,584,292,0,5553,5554,5,1132,0,0,5554,5555,5, + 1117,0,0,5555,5565,1,0,0,0,5556,5557,3,584,292,0,5557,5558,5,1132, + 0,0,5558,5559,3,584,292,0,5559,5565,1,0,0,0,5560,5561,3,584,292, + 0,5561,5562,3,588,294,0,5562,5565,1,0,0,0,5563,5565,3,584,292,0, + 5564,5548,1,0,0,0,5564,5549,1,0,0,0,5564,5552,1,0,0,0,5564,5556, + 1,0,0,0,5564,5560,1,0,0,0,5564,5563,1,0,0,0,5565,465,1,0,0,0,5566, + 5567,3,564,282,0,5567,5568,5,175,0,0,5568,5569,3,564,282,0,5569, + 467,1,0,0,0,5570,5572,5,9,0,0,5571,5573,7,72,0,0,5572,5571,1,0,0, + 0,5572,5573,1,0,0,0,5573,5574,1,0,0,0,5574,5575,7,54,0,0,5575,5593, + 3,620,310,0,5576,5577,5,184,0,0,5577,5578,5,76,0,0,5578,5579,5,118, + 0,0,5579,5584,3,556,278,0,5580,5581,5,1135,0,0,5581,5583,3,556,278, + 0,5582,5580,1,0,0,0,5583,5586,1,0,0,0,5584,5582,1,0,0,0,5584,5585, + 1,0,0,0,5585,5591,1,0,0,0,5586,5584,1,0,0,0,5587,5588,5,192,0,0, + 5588,5589,3,590,295,0,5589,5590,5,18,0,0,5590,5592,1,0,0,0,5591, + 5587,1,0,0,0,5591,5592,1,0,0,0,5592,5594,1,0,0,0,5593,5576,1,0,0, + 0,5593,5594,1,0,0,0,5594,5606,1,0,0,0,5595,5596,5,51,0,0,5596,5597, + 5,76,0,0,5597,5598,5,118,0,0,5598,5603,3,556,278,0,5599,5600,5,1135, + 0,0,5600,5602,3,556,278,0,5601,5599,1,0,0,0,5602,5605,1,0,0,0,5603, + 5601,1,0,0,0,5603,5604,1,0,0,0,5604,5607,1,0,0,0,5605,5603,1,0,0, + 0,5606,5595,1,0,0,0,5606,5607,1,0,0,0,5607,469,1,0,0,0,5608,5609, + 5,26,0,0,5609,5610,5,172,0,0,5610,5614,3,620,310,0,5611,5613,3,478, + 239,0,5612,5611,1,0,0,0,5613,5616,1,0,0,0,5614,5612,1,0,0,0,5614, + 5615,1,0,0,0,5615,471,1,0,0,0,5616,5614,1,0,0,0,5617,5618,5,356, + 0,0,5618,5619,5,172,0,0,5619,5621,3,620,310,0,5620,5622,7,73,0,0, + 5621,5620,1,0,0,0,5621,5622,1,0,0,0,5622,473,1,0,0,0,5623,5625,5, + 119,0,0,5624,5626,7,72,0,0,5625,5624,1,0,0,0,5625,5626,1,0,0,0,5626, + 5627,1,0,0,0,5627,5628,7,54,0,0,5628,5629,3,620,310,0,5629,475,1, + 0,0,0,5630,5632,5,580,0,0,5631,5633,7,72,0,0,5632,5631,1,0,0,0,5632, + 5633,1,0,0,0,5633,5634,1,0,0,0,5634,5635,5,172,0,0,5635,5637,3,620, + 310,0,5636,5638,5,568,0,0,5637,5636,1,0,0,0,5637,5638,1,0,0,0,5638, + 5640,1,0,0,0,5639,5641,5,422,0,0,5640,5639,1,0,0,0,5640,5641,1,0, + 0,0,5641,5643,1,0,0,0,5642,5644,5,666,0,0,5643,5642,1,0,0,0,5643, + 5644,1,0,0,0,5644,477,1,0,0,0,5645,5646,5,65,0,0,5646,5653,5,664, + 0,0,5647,5653,5,568,0,0,5648,5653,5,425,0,0,5649,5653,5,504,0,0, + 5650,5653,5,422,0,0,5651,5653,5,354,0,0,5652,5645,1,0,0,0,5652,5647, + 1,0,0,0,5652,5648,1,0,0,0,5652,5649,1,0,0,0,5652,5650,1,0,0,0,5652, + 5651,1,0,0,0,5653,479,1,0,0,0,5654,5656,5,33,0,0,5655,5657,5,335, + 0,0,5656,5655,1,0,0,0,5656,5657,1,0,0,0,5657,5658,1,0,0,0,5658,5660, + 5,437,0,0,5659,5661,3,642,321,0,5660,5659,1,0,0,0,5660,5661,1,0, + 0,0,5661,5662,1,0,0,0,5662,5663,3,584,292,0,5663,5664,5,594,0,0, + 5664,5665,7,74,0,0,5665,5666,5,619,0,0,5666,5667,5,1148,0,0,5667, + 481,1,0,0,0,5668,5669,5,456,0,0,5669,5670,5,554,0,0,5670,5671,3, + 584,292,0,5671,5672,5,619,0,0,5672,5673,5,1148,0,0,5673,483,1,0, + 0,0,5674,5675,5,661,0,0,5675,5676,5,554,0,0,5676,5677,3,584,292, + 0,5677,485,1,0,0,0,5678,5679,5,153,0,0,5679,5680,3,490,245,0,5680, + 5683,7,75,0,0,5681,5684,3,688,344,0,5682,5684,5,118,0,0,5683,5681, + 1,0,0,0,5683,5682,1,0,0,0,5684,5694,1,0,0,0,5685,5686,5,1135,0,0, + 5686,5687,3,490,245,0,5687,5690,7,75,0,0,5688,5691,3,688,344,0,5689, + 5691,5,118,0,0,5690,5688,1,0,0,0,5690,5689,1,0,0,0,5691,5693,1,0, + 0,0,5692,5685,1,0,0,0,5693,5696,1,0,0,0,5694,5692,1,0,0,0,5694,5695, + 1,0,0,0,5695,5731,1,0,0,0,5696,5694,1,0,0,0,5697,5698,5,153,0,0, + 5698,5701,3,58,29,0,5699,5702,3,568,284,0,5700,5702,5,42,0,0,5701, + 5699,1,0,0,0,5701,5700,1,0,0,0,5702,5731,1,0,0,0,5703,5704,5,153, + 0,0,5704,5711,5,517,0,0,5705,5708,3,568,284,0,5706,5707,5,27,0,0, + 5707,5709,3,570,285,0,5708,5706,1,0,0,0,5708,5709,1,0,0,0,5709,5712, + 1,0,0,0,5710,5712,5,42,0,0,5711,5705,1,0,0,0,5711,5710,1,0,0,0,5712, + 5731,1,0,0,0,5713,5731,3,442,221,0,5714,5731,3,316,158,0,5715,5731, + 3,314,157,0,5716,5717,5,153,0,0,5717,5718,3,548,274,0,5718,5719, + 7,75,0,0,5719,5727,3,688,344,0,5720,5721,5,1135,0,0,5721,5722,3, + 548,274,0,5722,5723,7,75,0,0,5723,5724,3,688,344,0,5724,5726,1,0, + 0,0,5725,5720,1,0,0,0,5726,5729,1,0,0,0,5727,5725,1,0,0,0,5727,5728, + 1,0,0,0,5728,5731,1,0,0,0,5729,5727,1,0,0,0,5730,5678,1,0,0,0,5730, + 5697,1,0,0,0,5730,5703,1,0,0,0,5730,5713,1,0,0,0,5730,5714,1,0,0, + 0,5730,5715,1,0,0,0,5730,5716,1,0,0,0,5731,487,1,0,0,0,5732,5733, + 5,155,0,0,5733,5734,7,56,0,0,5734,5886,5,476,0,0,5735,5736,5,155, + 0,0,5736,5737,7,76,0,0,5737,5740,5,416,0,0,5738,5739,5,80,0,0,5739, + 5741,5,1148,0,0,5740,5738,1,0,0,0,5740,5741,1,0,0,0,5741,5744,1, + 0,0,0,5742,5743,5,68,0,0,5743,5745,3,590,295,0,5744,5742,1,0,0,0, + 5744,5745,1,0,0,0,5745,5753,1,0,0,0,5746,5750,5,99,0,0,5747,5748, + 3,590,295,0,5748,5749,5,1135,0,0,5749,5751,1,0,0,0,5750,5747,1,0, + 0,0,5750,5751,1,0,0,0,5751,5752,1,0,0,0,5752,5754,3,590,295,0,5753, + 5746,1,0,0,0,5753,5754,1,0,0,0,5754,5886,1,0,0,0,5755,5756,5,155, + 0,0,5756,5758,3,492,246,0,5757,5759,3,494,247,0,5758,5757,1,0,0, + 0,5758,5759,1,0,0,0,5759,5886,1,0,0,0,5760,5762,5,155,0,0,5761,5763, + 5,436,0,0,5762,5761,1,0,0,0,5762,5763,1,0,0,0,5763,5764,1,0,0,0, + 5764,5765,7,41,0,0,5765,5766,7,77,0,0,5766,5769,3,550,275,0,5767, + 5768,7,77,0,0,5768,5770,3,584,292,0,5769,5767,1,0,0,0,5769,5770, + 1,0,0,0,5770,5772,1,0,0,0,5771,5773,3,494,247,0,5772,5771,1,0,0, + 0,5772,5773,1,0,0,0,5773,5886,1,0,0,0,5774,5775,5,155,0,0,5775,5776, + 5,33,0,0,5776,5778,7,0,0,0,5777,5779,3,642,321,0,5778,5777,1,0,0, + 0,5778,5779,1,0,0,0,5779,5780,1,0,0,0,5780,5886,3,584,292,0,5781, + 5782,5,155,0,0,5782,5783,5,33,0,0,5783,5784,7,78,0,0,5784,5886,3, + 548,274,0,5785,5786,5,155,0,0,5786,5787,5,33,0,0,5787,5788,5,665, + 0,0,5788,5886,3,564,282,0,5789,5790,5,155,0,0,5790,5791,5,409,0, + 0,5791,5792,3,572,286,0,5792,5793,7,79,0,0,5793,5886,1,0,0,0,5794, + 5795,5,155,0,0,5795,5886,3,496,248,0,5796,5797,5,155,0,0,5797,5805, + 7,80,0,0,5798,5802,5,99,0,0,5799,5800,3,590,295,0,5800,5801,5,1135, + 0,0,5801,5803,1,0,0,0,5802,5799,1,0,0,0,5802,5803,1,0,0,0,5803,5804, + 1,0,0,0,5804,5806,3,590,295,0,5805,5798,1,0,0,0,5805,5806,1,0,0, + 0,5806,5886,1,0,0,0,5807,5808,5,155,0,0,5808,5809,5,290,0,0,5809, + 5810,5,1133,0,0,5810,5811,5,1117,0,0,5811,5812,5,1134,0,0,5812,5886, + 7,80,0,0,5813,5814,5,155,0,0,5814,5817,3,498,249,0,5815,5816,7,77, + 0,0,5816,5818,3,584,292,0,5817,5815,1,0,0,0,5817,5818,1,0,0,0,5818, + 5820,1,0,0,0,5819,5821,3,494,247,0,5820,5819,1,0,0,0,5820,5821,1, + 0,0,0,5821,5886,1,0,0,0,5822,5823,5,155,0,0,5823,5824,7,81,0,0,5824, + 5825,5,364,0,0,5825,5886,3,548,274,0,5826,5827,5,155,0,0,5827,5830, + 5,440,0,0,5828,5829,5,65,0,0,5829,5831,3,564,282,0,5830,5828,1,0, + 0,0,5830,5831,1,0,0,0,5831,5886,1,0,0,0,5832,5833,5,155,0,0,5833, + 5834,7,82,0,0,5834,5835,7,77,0,0,5835,5838,3,550,275,0,5836,5837, + 7,77,0,0,5837,5839,3,584,292,0,5838,5836,1,0,0,0,5838,5839,1,0,0, + 0,5839,5842,1,0,0,0,5840,5841,5,190,0,0,5841,5843,3,688,344,0,5842, + 5840,1,0,0,0,5842,5843,1,0,0,0,5843,5886,1,0,0,0,5844,5845,5,155, + 0,0,5845,5846,5,539,0,0,5846,5849,5,742,0,0,5847,5848,7,77,0,0,5848, + 5850,3,584,292,0,5849,5847,1,0,0,0,5849,5850,1,0,0,0,5850,5852,1, + 0,0,0,5851,5853,3,494,247,0,5852,5851,1,0,0,0,5852,5853,1,0,0,0, + 5853,5886,1,0,0,0,5854,5855,5,155,0,0,5855,5856,5,564,0,0,5856,5861, + 3,500,250,0,5857,5858,5,1135,0,0,5858,5860,3,500,250,0,5859,5857, + 1,0,0,0,5860,5863,1,0,0,0,5861,5859,1,0,0,0,5861,5862,1,0,0,0,5862, + 5867,1,0,0,0,5863,5861,1,0,0,0,5864,5865,5,65,0,0,5865,5866,5,567, + 0,0,5866,5868,3,590,295,0,5867,5864,1,0,0,0,5867,5868,1,0,0,0,5868, + 5869,1,0,0,0,5869,5873,5,99,0,0,5870,5871,3,590,295,0,5871,5872, + 5,1135,0,0,5872,5874,1,0,0,0,5873,5870,1,0,0,0,5873,5874,1,0,0,0, + 5874,5875,1,0,0,0,5875,5876,3,590,295,0,5876,5886,1,0,0,0,5877,5878, + 5,155,0,0,5878,5879,5,614,0,0,5879,5883,5,634,0,0,5880,5881,5,65, + 0,0,5881,5882,5,355,0,0,5882,5884,5,1148,0,0,5883,5880,1,0,0,0,5883, + 5884,1,0,0,0,5884,5886,1,0,0,0,5885,5732,1,0,0,0,5885,5735,1,0,0, + 0,5885,5755,1,0,0,0,5885,5760,1,0,0,0,5885,5774,1,0,0,0,5885,5781, + 1,0,0,0,5885,5785,1,0,0,0,5885,5789,1,0,0,0,5885,5794,1,0,0,0,5885, + 5796,1,0,0,0,5885,5807,1,0,0,0,5885,5813,1,0,0,0,5885,5822,1,0,0, + 0,5885,5826,1,0,0,0,5885,5832,1,0,0,0,5885,5844,1,0,0,0,5885,5854, + 1,0,0,0,5885,5877,1,0,0,0,5886,489,1,0,0,0,5887,5898,5,1159,0,0, + 5888,5898,5,1160,0,0,5889,5890,5,1137,0,0,5890,5892,5,1137,0,0,5891, + 5889,1,0,0,0,5891,5892,1,0,0,0,5892,5893,1,0,0,0,5893,5895,7,83, + 0,0,5894,5891,1,0,0,0,5894,5895,1,0,0,0,5895,5896,1,0,0,0,5896,5898, + 3,584,292,0,5897,5887,1,0,0,0,5897,5888,1,0,0,0,5897,5894,1,0,0, + 0,5898,491,1,0,0,0,5899,5900,5,25,0,0,5900,5913,5,153,0,0,5901,5913, + 5,844,0,0,5902,5913,5,40,0,0,5903,5913,5,151,0,0,5904,5905,5,437, + 0,0,5905,5913,5,634,0,0,5906,5907,5,131,0,0,5907,5913,5,634,0,0, + 5908,5910,7,55,0,0,5909,5908,1,0,0,0,5909,5910,1,0,0,0,5910,5911, + 1,0,0,0,5911,5913,7,84,0,0,5912,5899,1,0,0,0,5912,5901,1,0,0,0,5912, + 5902,1,0,0,0,5912,5903,1,0,0,0,5912,5904,1,0,0,0,5912,5906,1,0,0, + 0,5912,5909,1,0,0,0,5913,493,1,0,0,0,5914,5915,5,98,0,0,5915,5919, + 5,1148,0,0,5916,5917,5,190,0,0,5917,5919,3,688,344,0,5918,5914,1, + 0,0,0,5918,5916,1,0,0,0,5919,495,1,0,0,0,5920,5922,5,636,0,0,5921, + 5920,1,0,0,0,5921,5922,1,0,0,0,5922,5923,1,0,0,0,5923,5938,5,410, + 0,0,5924,5925,5,477,0,0,5925,5938,5,634,0,0,5926,5938,5,556,0,0, + 5927,5938,5,725,0,0,5928,5930,5,436,0,0,5929,5928,1,0,0,0,5929,5930, + 1,0,0,0,5930,5931,1,0,0,0,5931,5938,5,563,0,0,5932,5938,5,565,0, + 0,5933,5934,5,614,0,0,5934,5938,5,447,0,0,5935,5938,5,339,0,0,5936, + 5938,5,383,0,0,5937,5921,1,0,0,0,5937,5924,1,0,0,0,5937,5926,1,0, + 0,0,5937,5927,1,0,0,0,5937,5929,1,0,0,0,5937,5932,1,0,0,0,5937,5933, + 1,0,0,0,5937,5935,1,0,0,0,5937,5936,1,0,0,0,5938,497,1,0,0,0,5939, + 5948,5,416,0,0,5940,5941,5,172,0,0,5941,5948,5,634,0,0,5942,5944, + 5,436,0,0,5943,5942,1,0,0,0,5943,5944,1,0,0,0,5944,5945,1,0,0,0, + 5945,5948,5,742,0,0,5946,5948,5,655,0,0,5947,5939,1,0,0,0,5947,5940, + 1,0,0,0,5947,5943,1,0,0,0,5947,5946,1,0,0,0,5948,499,1,0,0,0,5949, + 5962,5,6,0,0,5950,5951,5,347,0,0,5951,5962,5,461,0,0,5952,5953,5, + 382,0,0,5953,5962,5,645,0,0,5954,5962,5,385,0,0,5955,5962,5,463, + 0,0,5956,5962,5,792,0,0,5957,5958,5,544,0,0,5958,5962,5,426,0,0, + 5959,5962,5,621,0,0,5960,5962,5,644,0,0,5961,5949,1,0,0,0,5961,5950, + 1,0,0,0,5961,5952,1,0,0,0,5961,5954,1,0,0,0,5961,5955,1,0,0,0,5961, + 5956,1,0,0,0,5961,5957,1,0,0,0,5961,5959,1,0,0,0,5961,5960,1,0,0, + 0,5962,501,1,0,0,0,5963,5964,5,345,0,0,5964,5965,5,1148,0,0,5965, + 503,1,0,0,0,5966,5967,5,351,0,0,5967,5968,5,81,0,0,5968,5973,3,516, + 258,0,5969,5970,5,1135,0,0,5970,5972,3,516,258,0,5971,5969,1,0,0, + 0,5972,5975,1,0,0,0,5973,5971,1,0,0,0,5973,5974,1,0,0,0,5974,5983, + 1,0,0,0,5975,5973,1,0,0,0,5976,5977,5,129,0,0,5977,5980,5,1133,0, + 0,5978,5981,3,616,308,0,5979,5981,5,6,0,0,5980,5978,1,0,0,0,5980, + 5979,1,0,0,0,5981,5982,1,0,0,0,5982,5984,5,1134,0,0,5983,5976,1, + 0,0,0,5983,5984,1,0,0,0,5984,5985,1,0,0,0,5985,5986,5,80,0,0,5986, + 5987,3,584,292,0,5987,505,1,0,0,0,5988,5990,5,432,0,0,5989,5991, + 7,72,0,0,5990,5989,1,0,0,0,5990,5991,1,0,0,0,5991,5992,1,0,0,0,5992, + 5997,3,518,259,0,5993,5994,5,1135,0,0,5994,5996,3,518,259,0,5995, + 5993,1,0,0,0,5996,5999,1,0,0,0,5997,5995,1,0,0,0,5997,5998,1,0,0, + 0,5998,507,1,0,0,0,5999,5997,1,0,0,0,6000,6002,5,93,0,0,6001,6003, + 7,85,0,0,6002,6001,1,0,0,0,6002,6003,1,0,0,0,6003,6004,1,0,0,0,6004, + 6005,3,688,344,0,6005,509,1,0,0,0,6006,6007,5,102,0,0,6007,6008, + 5,81,0,0,6008,6009,5,87,0,0,6009,6010,5,351,0,0,6010,6015,3,522, + 261,0,6011,6012,5,1135,0,0,6012,6014,3,522,261,0,6013,6011,1,0,0, + 0,6014,6017,1,0,0,0,6015,6013,1,0,0,0,6015,6016,1,0,0,0,6016,511, + 1,0,0,0,6017,6015,1,0,0,0,6018,6019,5,589,0,0,6019,6020,5,567,0, + 0,6020,6021,5,351,0,0,6021,513,1,0,0,0,6022,6023,5,739,0,0,6023, + 515,1,0,0,0,6024,6032,3,550,275,0,6025,6027,7,20,0,0,6026,6025,1, + 0,0,0,6026,6027,1,0,0,0,6027,6028,1,0,0,0,6028,6029,5,1133,0,0,6029, + 6030,3,616,308,0,6030,6031,5,1134,0,0,6031,6033,1,0,0,0,6032,6026, + 1,0,0,0,6032,6033,1,0,0,0,6033,517,1,0,0,0,6034,6053,5,394,0,0,6035, + 6053,5,447,0,0,6036,6038,7,86,0,0,6037,6036,1,0,0,0,6037,6038,1, + 0,0,0,6038,6039,1,0,0,0,6039,6053,5,476,0,0,6040,6053,5,540,0,0, + 6041,6053,5,725,0,0,6042,6043,5,567,0,0,6043,6053,5,351,0,0,6044, + 6053,5,634,0,0,6045,6053,5,667,0,0,6046,6050,5,742,0,0,6047,6048, + 5,192,0,0,6048,6049,5,134,0,0,6049,6051,5,103,0,0,6050,6047,1,0, + 0,0,6050,6051,1,0,0,0,6051,6053,1,0,0,0,6052,6034,1,0,0,0,6052,6035, + 1,0,0,0,6052,6037,1,0,0,0,6052,6040,1,0,0,0,6052,6041,1,0,0,0,6052, + 6042,1,0,0,0,6052,6044,1,0,0,0,6052,6045,1,0,0,0,6052,6046,1,0,0, + 0,6053,6067,1,0,0,0,6054,6055,5,574,0,0,6055,6057,5,476,0,0,6056, + 6058,3,354,177,0,6057,6056,1,0,0,0,6057,6058,1,0,0,0,6058,6067,1, + 0,0,0,6059,6061,7,54,0,0,6060,6062,3,620,310,0,6061,6060,1,0,0,0, + 6061,6062,1,0,0,0,6062,6064,1,0,0,0,6063,6065,3,520,260,0,6064,6063, + 1,0,0,0,6064,6065,1,0,0,0,6065,6067,1,0,0,0,6066,6052,1,0,0,0,6066, + 6054,1,0,0,0,6066,6059,1,0,0,0,6067,519,1,0,0,0,6068,6069,5,192, + 0,0,6069,6070,5,134,0,0,6070,6074,5,103,0,0,6071,6072,5,65,0,0,6072, + 6074,5,421,0,0,6073,6068,1,0,0,0,6073,6071,1,0,0,0,6074,521,1,0, + 0,0,6075,6083,3,550,275,0,6076,6077,5,129,0,0,6077,6080,5,1133,0, + 0,6078,6081,3,616,308,0,6079,6081,5,6,0,0,6080,6078,1,0,0,0,6080, + 6079,1,0,0,0,6081,6082,1,0,0,0,6082,6084,5,1134,0,0,6083,6076,1, + 0,0,0,6083,6084,1,0,0,0,6084,6092,1,0,0,0,6085,6087,7,20,0,0,6086, + 6085,1,0,0,0,6086,6087,1,0,0,0,6087,6088,1,0,0,0,6088,6089,5,1133, + 0,0,6089,6090,3,616,308,0,6090,6091,5,1134,0,0,6091,6093,1,0,0,0, + 6092,6086,1,0,0,0,6092,6093,1,0,0,0,6093,6096,1,0,0,0,6094,6095, + 5,78,0,0,6095,6097,5,470,0,0,6096,6094,1,0,0,0,6096,6097,1,0,0,0, + 6097,523,1,0,0,0,6098,6099,7,87,0,0,6099,6102,3,550,275,0,6100,6103, + 3,584,292,0,6101,6103,5,1148,0,0,6102,6100,1,0,0,0,6102,6101,1,0, + 0,0,6102,6103,1,0,0,0,6103,525,1,0,0,0,6104,6108,7,87,0,0,6105,6106, + 7,88,0,0,6106,6107,5,1124,0,0,6107,6109,7,89,0,0,6108,6105,1,0,0, + 0,6108,6109,1,0,0,0,6109,6110,1,0,0,0,6110,6111,3,546,273,0,6111, + 527,1,0,0,0,6112,6113,5,444,0,0,6113,6114,5,1148,0,0,6114,529,1, + 0,0,0,6115,6116,5,186,0,0,6116,6117,3,584,292,0,6117,531,1,0,0,0, + 6118,6126,5,156,0,0,6119,6121,5,162,0,0,6120,6122,5,669,0,0,6121, + 6120,1,0,0,0,6121,6122,1,0,0,0,6122,6123,1,0,0,0,6123,6127,3,594, + 297,0,6124,6127,5,1156,0,0,6125,6127,5,1157,0,0,6126,6119,1,0,0, + 0,6126,6124,1,0,0,0,6126,6125,1,0,0,0,6127,6137,1,0,0,0,6128,6129, + 5,153,0,0,6129,6134,3,536,268,0,6130,6131,5,1135,0,0,6131,6133,3, + 536,268,0,6132,6130,1,0,0,0,6133,6136,1,0,0,0,6134,6132,1,0,0,0, + 6134,6135,1,0,0,0,6135,6138,1,0,0,0,6136,6134,1,0,0,0,6137,6128, + 1,0,0,0,6137,6138,1,0,0,0,6138,533,1,0,0,0,6139,6147,5,143,0,0,6140, + 6142,5,162,0,0,6141,6143,5,669,0,0,6142,6141,1,0,0,0,6142,6143,1, + 0,0,0,6143,6144,1,0,0,0,6144,6148,3,594,297,0,6145,6148,5,1156,0, + 0,6146,6148,5,1157,0,0,6147,6140,1,0,0,0,6147,6145,1,0,0,0,6147, + 6146,1,0,0,0,6147,6148,1,0,0,0,6148,6158,1,0,0,0,6149,6150,5,153, + 0,0,6150,6155,3,536,268,0,6151,6152,5,1135,0,0,6152,6154,3,536,268, + 0,6153,6151,1,0,0,0,6154,6157,1,0,0,0,6155,6153,1,0,0,0,6155,6156, + 1,0,0,0,6156,6159,1,0,0,0,6157,6155,1,0,0,0,6158,6149,1,0,0,0,6158, + 6159,1,0,0,0,6159,535,1,0,0,0,6160,6161,7,90,0,0,6161,6166,5,1124, + 0,0,6162,6167,3,594,297,0,6163,6167,5,1149,0,0,6164,6167,3,566,283, + 0,6165,6167,3,586,293,0,6166,6162,1,0,0,0,6166,6163,1,0,0,0,6166, + 6164,1,0,0,0,6166,6165,1,0,0,0,6167,537,1,0,0,0,6168,6170,5,192, + 0,0,6169,6171,5,571,0,0,6170,6169,1,0,0,0,6170,6171,1,0,0,0,6171, + 6172,1,0,0,0,6172,6177,3,48,24,0,6173,6174,5,1135,0,0,6174,6176, + 3,48,24,0,6175,6173,1,0,0,0,6176,6179,1,0,0,0,6177,6175,1,0,0,0, + 6177,6178,1,0,0,0,6178,539,1,0,0,0,6179,6177,1,0,0,0,6180,6181,5, + 172,0,0,6181,6183,3,550,275,0,6182,6184,3,228,114,0,6183,6182,1, + 0,0,0,6183,6184,1,0,0,0,6184,6186,1,0,0,0,6185,6187,3,292,146,0, + 6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,541,1,0,0,0,6188,6190,5, + 71,0,0,6189,6191,7,91,0,0,6190,6189,1,0,0,0,6190,6191,1,0,0,0,6191, + 6192,1,0,0,0,6192,6224,5,48,0,0,6193,6194,3,490,245,0,6194,6195, + 5,1124,0,0,6195,6203,7,92,0,0,6196,6197,5,1135,0,0,6197,6198,3,490, + 245,0,6198,6199,5,1124,0,0,6199,6200,7,92,0,0,6200,6202,1,0,0,0, + 6201,6196,1,0,0,0,6202,6205,1,0,0,0,6203,6201,1,0,0,0,6203,6204, + 1,0,0,0,6204,6225,1,0,0,0,6205,6203,1,0,0,0,6206,6209,5,29,0,0,6207, + 6210,3,590,295,0,6208,6210,3,490,245,0,6209,6207,1,0,0,0,6209,6208, + 1,0,0,0,6210,6211,1,0,0,0,6211,6212,3,490,245,0,6212,6213,5,1124, + 0,0,6213,6221,3,544,272,0,6214,6215,5,1135,0,0,6215,6216,3,490,245, + 0,6216,6217,5,1124,0,0,6217,6218,3,544,272,0,6218,6220,1,0,0,0,6219, + 6214,1,0,0,0,6220,6223,1,0,0,0,6221,6219,1,0,0,0,6221,6222,1,0,0, + 0,6222,6225,1,0,0,0,6223,6221,1,0,0,0,6224,6193,1,0,0,0,6224,6206, + 1,0,0,0,6225,543,1,0,0,0,6226,6227,7,93,0,0,6227,545,1,0,0,0,6228, + 6234,3,198,99,0,6229,6234,3,184,92,0,6230,6234,3,190,95,0,6231,6234, + 3,196,98,0,6232,6234,3,200,100,0,6233,6228,1,0,0,0,6233,6229,1,0, + 0,0,6233,6230,1,0,0,0,6233,6231,1,0,0,0,6233,6232,1,0,0,0,6234,6239, + 1,0,0,0,6235,6236,5,65,0,0,6236,6237,5,376,0,0,6237,6239,3,584,292, + 0,6238,6233,1,0,0,0,6238,6235,1,0,0,0,6239,547,1,0,0,0,6240,6244, + 3,584,292,0,6241,6245,5,1155,0,0,6242,6243,5,1132,0,0,6243,6245, + 3,584,292,0,6244,6241,1,0,0,0,6244,6242,1,0,0,0,6244,6245,1,0,0, + 0,6245,549,1,0,0,0,6246,6247,3,548,274,0,6247,551,1,0,0,0,6248,6253, + 3,550,275,0,6249,6250,5,1135,0,0,6250,6252,3,550,275,0,6251,6249, + 1,0,0,0,6252,6255,1,0,0,0,6253,6251,1,0,0,0,6253,6254,1,0,0,0,6254, + 553,1,0,0,0,6255,6253,1,0,0,0,6256,6259,3,564,282,0,6257,6259,3, + 584,292,0,6258,6256,1,0,0,0,6258,6257,1,0,0,0,6259,555,1,0,0,0,6260, + 6265,3,584,292,0,6261,6263,3,588,294,0,6262,6264,3,588,294,0,6263, + 6262,1,0,0,0,6263,6264,1,0,0,0,6264,6266,1,0,0,0,6265,6261,1,0,0, + 0,6265,6266,1,0,0,0,6266,6275,1,0,0,0,6267,6269,9,0,0,0,6268,6267, + 1,0,0,0,6268,6269,1,0,0,0,6269,6270,1,0,0,0,6270,6272,3,588,294, + 0,6271,6273,3,588,294,0,6272,6271,1,0,0,0,6272,6273,1,0,0,0,6273, + 6275,1,0,0,0,6274,6260,1,0,0,0,6274,6268,1,0,0,0,6275,557,1,0,0, + 0,6276,6279,3,584,292,0,6277,6279,5,1148,0,0,6278,6276,1,0,0,0,6278, + 6277,1,0,0,0,6279,6284,1,0,0,0,6280,6281,5,1133,0,0,6281,6282,3, + 590,295,0,6282,6283,5,1134,0,0,6283,6285,1,0,0,0,6284,6280,1,0,0, + 0,6284,6285,1,0,0,0,6285,6288,1,0,0,0,6286,6288,3,688,344,0,6287, + 6278,1,0,0,0,6287,6286,1,0,0,0,6288,6290,1,0,0,0,6289,6291,7,48, + 0,0,6290,6289,1,0,0,0,6290,6291,1,0,0,0,6291,559,1,0,0,0,6292,6297, + 5,1148,0,0,6293,6297,5,1156,0,0,6294,6297,5,697,0,0,6295,6297,3, + 718,359,0,6296,6292,1,0,0,0,6296,6293,1,0,0,0,6296,6294,1,0,0,0, + 6296,6295,1,0,0,0,6297,561,1,0,0,0,6298,6299,7,94,0,0,6299,563,1, + 0,0,0,6300,6306,3,560,280,0,6301,6302,3,560,280,0,6302,6303,3,562, + 281,0,6303,6306,1,0,0,0,6304,6306,3,60,30,0,6305,6300,1,0,0,0,6305, + 6301,1,0,0,0,6305,6304,1,0,0,0,6306,565,1,0,0,0,6307,6308,7,95,0, + 0,6308,567,1,0,0,0,6309,6314,5,226,0,0,6310,6314,3,708,354,0,6311, + 6314,5,1148,0,0,6312,6314,5,1145,0,0,6313,6309,1,0,0,0,6313,6310, + 1,0,0,0,6313,6311,1,0,0,0,6313,6312,1,0,0,0,6314,569,1,0,0,0,6315, + 6318,3,584,292,0,6316,6318,5,1148,0,0,6317,6315,1,0,0,0,6317,6316, + 1,0,0,0,6318,571,1,0,0,0,6319,6323,3,574,287,0,6320,6323,5,1156, + 0,0,6321,6323,5,1148,0,0,6322,6319,1,0,0,0,6322,6320,1,0,0,0,6322, + 6321,1,0,0,0,6323,573,1,0,0,0,6324,6325,7,96,0,0,6325,575,1,0,0, + 0,6326,6327,3,590,295,0,6327,6328,5,1121,0,0,6328,6329,3,590,295, + 0,6329,6330,5,1121,0,0,6330,6331,3,590,295,0,6331,6332,5,1121,0, + 0,6332,6333,3,590,295,0,6333,6334,5,1121,0,0,6334,6340,3,590,295, + 0,6335,6336,5,1144,0,0,6336,6337,3,590,295,0,6337,6338,5,1121,0, + 0,6338,6339,3,590,295,0,6339,6341,1,0,0,0,6340,6335,1,0,0,0,6341, + 6342,1,0,0,0,6342,6340,1,0,0,0,6342,6343,1,0,0,0,6343,577,1,0,0, + 0,6344,6351,3,580,290,0,6345,6346,5,1135,0,0,6346,6349,3,580,290, + 0,6347,6348,5,1135,0,0,6348,6350,3,590,295,0,6349,6347,1,0,0,0,6349, + 6350,1,0,0,0,6350,6352,1,0,0,0,6351,6345,1,0,0,0,6351,6352,1,0,0, + 0,6352,579,1,0,0,0,6353,6361,5,1148,0,0,6354,6361,5,1153,0,0,6355, + 6357,5,1150,0,0,6356,6355,1,0,0,0,6357,6358,1,0,0,0,6358,6356,1, + 0,0,0,6358,6359,1,0,0,0,6359,6361,1,0,0,0,6360,6353,1,0,0,0,6360, + 6354,1,0,0,0,6360,6356,1,0,0,0,6361,581,1,0,0,0,6362,6365,3,584, + 292,0,6363,6365,5,1148,0,0,6364,6362,1,0,0,0,6364,6363,1,0,0,0,6365, + 583,1,0,0,0,6366,6370,3,586,293,0,6367,6370,5,1145,0,0,6368,6370, + 5,1148,0,0,6369,6366,1,0,0,0,6369,6367,1,0,0,0,6369,6368,1,0,0,0, + 6370,585,1,0,0,0,6371,6381,5,1156,0,0,6372,6381,3,708,354,0,6373, + 6381,3,710,355,0,6374,6381,3,574,287,0,6375,6381,3,712,356,0,6376, + 6381,3,714,357,0,6377,6381,3,716,358,0,6378,6381,3,718,359,0,6379, + 6381,3,680,340,0,6380,6371,1,0,0,0,6380,6372,1,0,0,0,6380,6373,1, + 0,0,0,6380,6374,1,0,0,0,6380,6375,1,0,0,0,6380,6376,1,0,0,0,6380, + 6377,1,0,0,0,6380,6378,1,0,0,0,6380,6379,1,0,0,0,6381,587,1,0,0, + 0,6382,6386,5,1155,0,0,6383,6384,5,1132,0,0,6384,6386,3,584,292, + 0,6385,6382,1,0,0,0,6385,6383,1,0,0,0,6386,589,1,0,0,0,6387,6388, + 7,97,0,0,6388,591,1,0,0,0,6389,6392,5,1146,0,0,6390,6392,3,590,295, + 0,6391,6389,1,0,0,0,6391,6390,1,0,0,0,6392,593,1,0,0,0,6393,6395, + 5,1154,0,0,6394,6393,1,0,0,0,6394,6395,1,0,0,0,6395,6396,1,0,0,0, + 6396,6399,5,1148,0,0,6397,6399,5,1147,0,0,6398,6394,1,0,0,0,6398, + 6397,1,0,0,0,6399,6401,1,0,0,0,6400,6402,5,1148,0,0,6401,6400,1, + 0,0,0,6402,6403,1,0,0,0,6403,6401,1,0,0,0,6403,6404,1,0,0,0,6404, + 6417,1,0,0,0,6405,6407,5,1154,0,0,6406,6405,1,0,0,0,6406,6407,1, + 0,0,0,6407,6408,1,0,0,0,6408,6411,5,1148,0,0,6409,6411,5,1147,0, + 0,6410,6406,1,0,0,0,6410,6409,1,0,0,0,6411,6414,1,0,0,0,6412,6413, + 5,27,0,0,6413,6415,3,570,285,0,6414,6412,1,0,0,0,6414,6415,1,0,0, + 0,6415,6417,1,0,0,0,6416,6398,1,0,0,0,6416,6410,1,0,0,0,6417,595, + 1,0,0,0,6418,6419,7,98,0,0,6419,597,1,0,0,0,6420,6422,5,1154,0,0, + 6421,6420,1,0,0,0,6421,6422,1,0,0,0,6422,6423,1,0,0,0,6423,6424, + 5,1150,0,0,6424,599,1,0,0,0,6425,6427,5,114,0,0,6426,6425,1,0,0, + 0,6426,6427,1,0,0,0,6427,6428,1,0,0,0,6428,6429,7,99,0,0,6429,601, + 1,0,0,0,6430,6443,3,594,297,0,6431,6443,3,590,295,0,6432,6433,5, + 1121,0,0,6433,6443,3,590,295,0,6434,6443,3,598,299,0,6435,6443,3, + 596,298,0,6436,6443,5,1151,0,0,6437,6443,5,1153,0,0,6438,6440,5, + 114,0,0,6439,6438,1,0,0,0,6439,6440,1,0,0,0,6440,6441,1,0,0,0,6441, + 6443,7,99,0,0,6442,6430,1,0,0,0,6442,6431,1,0,0,0,6442,6432,1,0, + 0,0,6442,6434,1,0,0,0,6442,6435,1,0,0,0,6442,6436,1,0,0,0,6442,6437, + 1,0,0,0,6442,6439,1,0,0,0,6443,603,1,0,0,0,6444,6446,7,100,0,0,6445, + 6447,5,238,0,0,6446,6445,1,0,0,0,6446,6447,1,0,0,0,6447,6449,1,0, + 0,0,6448,6450,3,610,305,0,6449,6448,1,0,0,0,6449,6450,1,0,0,0,6450, + 6452,1,0,0,0,6451,6453,5,226,0,0,6452,6451,1,0,0,0,6452,6453,1,0, + 0,0,6453,6457,1,0,0,0,6454,6455,3,58,29,0,6455,6456,3,568,284,0, + 6456,6458,1,0,0,0,6457,6454,1,0,0,0,6457,6458,1,0,0,0,6458,6462, + 1,0,0,0,6459,6460,5,27,0,0,6460,6463,3,570,285,0,6461,6463,5,226, + 0,0,6462,6459,1,0,0,0,6462,6461,1,0,0,0,6462,6463,1,0,0,0,6463,6571, + 1,0,0,0,6464,6465,5,225,0,0,6465,6466,7,101,0,0,6466,6468,5,238, + 0,0,6467,6469,3,610,305,0,6468,6467,1,0,0,0,6468,6469,1,0,0,0,6469, + 6471,1,0,0,0,6470,6472,5,226,0,0,6471,6470,1,0,0,0,6471,6472,1,0, + 0,0,6472,6571,1,0,0,0,6473,6474,5,225,0,0,6474,6476,7,102,0,0,6475, + 6477,3,610,305,0,6476,6475,1,0,0,0,6476,6477,1,0,0,0,6477,6479,1, + 0,0,0,6478,6480,5,226,0,0,6479,6478,1,0,0,0,6479,6480,1,0,0,0,6480, + 6571,1,0,0,0,6481,6482,5,518,0,0,6482,6484,5,223,0,0,6483,6485,3, + 610,305,0,6484,6483,1,0,0,0,6484,6485,1,0,0,0,6485,6487,1,0,0,0, + 6486,6488,5,226,0,0,6487,6486,1,0,0,0,6487,6488,1,0,0,0,6488,6571, + 1,0,0,0,6489,6491,7,103,0,0,6490,6492,3,610,305,0,6491,6490,1,0, + 0,0,6491,6492,1,0,0,0,6492,6496,1,0,0,0,6493,6495,7,104,0,0,6494, + 6493,1,0,0,0,6495,6498,1,0,0,0,6496,6494,1,0,0,0,6496,6497,1,0,0, + 0,6497,6571,1,0,0,0,6498,6496,1,0,0,0,6499,6501,5,208,0,0,6500,6502, + 3,612,306,0,6501,6500,1,0,0,0,6501,6502,1,0,0,0,6502,6506,1,0,0, + 0,6503,6505,7,104,0,0,6504,6503,1,0,0,0,6505,6508,1,0,0,0,6506,6504, + 1,0,0,0,6506,6507,1,0,0,0,6507,6571,1,0,0,0,6508,6506,1,0,0,0,6509, + 6511,5,209,0,0,6510,6512,5,210,0,0,6511,6510,1,0,0,0,6511,6512,1, + 0,0,0,6512,6514,1,0,0,0,6513,6515,3,612,306,0,6514,6513,1,0,0,0, + 6514,6515,1,0,0,0,6515,6519,1,0,0,0,6516,6518,7,104,0,0,6517,6516, + 1,0,0,0,6518,6521,1,0,0,0,6519,6517,1,0,0,0,6519,6520,1,0,0,0,6520, + 6571,1,0,0,0,6521,6519,1,0,0,0,6522,6524,7,105,0,0,6523,6525,3,614, + 307,0,6524,6523,1,0,0,0,6524,6525,1,0,0,0,6525,6529,1,0,0,0,6526, + 6528,7,104,0,0,6527,6526,1,0,0,0,6528,6531,1,0,0,0,6529,6527,1,0, + 0,0,6529,6530,1,0,0,0,6530,6571,1,0,0,0,6531,6529,1,0,0,0,6532,6571, + 7,106,0,0,6533,6535,7,107,0,0,6534,6536,3,610,305,0,6535,6534,1, + 0,0,0,6535,6536,1,0,0,0,6536,6571,1,0,0,0,6537,6538,7,108,0,0,6538, + 6540,3,606,303,0,6539,6541,5,226,0,0,6540,6539,1,0,0,0,6540,6541, + 1,0,0,0,6541,6545,1,0,0,0,6542,6543,3,58,29,0,6543,6544,3,568,284, + 0,6544,6546,1,0,0,0,6545,6542,1,0,0,0,6545,6546,1,0,0,0,6546,6571, + 1,0,0,0,6547,6550,7,109,0,0,6548,6549,5,1012,0,0,6549,6551,3,590, + 295,0,6550,6548,1,0,0,0,6550,6551,1,0,0,0,6551,6571,1,0,0,0,6552, + 6554,5,231,0,0,6553,6555,5,223,0,0,6554,6553,1,0,0,0,6554,6555,1, + 0,0,0,6555,6557,1,0,0,0,6556,6558,5,226,0,0,6557,6556,1,0,0,0,6557, + 6558,1,0,0,0,6558,6562,1,0,0,0,6559,6560,3,58,29,0,6560,6561,3,568, + 284,0,6561,6563,1,0,0,0,6562,6559,1,0,0,0,6562,6563,1,0,0,0,6563, + 6566,1,0,0,0,6564,6565,5,27,0,0,6565,6567,3,570,285,0,6566,6564, + 1,0,0,0,6566,6567,1,0,0,0,6567,6571,1,0,0,0,6568,6569,5,231,0,0, + 6569,6571,5,227,0,0,6570,6444,1,0,0,0,6570,6464,1,0,0,0,6570,6473, + 1,0,0,0,6570,6481,1,0,0,0,6570,6489,1,0,0,0,6570,6499,1,0,0,0,6570, + 6509,1,0,0,0,6570,6522,1,0,0,0,6570,6532,1,0,0,0,6570,6533,1,0,0, + 0,6570,6537,1,0,0,0,6570,6547,1,0,0,0,6570,6552,1,0,0,0,6570,6568, + 1,0,0,0,6571,605,1,0,0,0,6572,6573,5,1133,0,0,6573,6578,5,1148,0, + 0,6574,6575,5,1135,0,0,6575,6577,5,1148,0,0,6576,6574,1,0,0,0,6577, + 6580,1,0,0,0,6578,6576,1,0,0,0,6578,6579,1,0,0,0,6579,6581,1,0,0, + 0,6580,6578,1,0,0,0,6581,6582,5,1134,0,0,6582,607,1,0,0,0,6583,6585, + 7,110,0,0,6584,6586,3,610,305,0,6585,6584,1,0,0,0,6585,6586,1,0, + 0,0,6586,6606,1,0,0,0,6587,6589,5,222,0,0,6588,6590,3,610,305,0, + 6589,6588,1,0,0,0,6589,6590,1,0,0,0,6590,6594,1,0,0,0,6591,6592, + 3,58,29,0,6592,6593,3,568,284,0,6593,6595,1,0,0,0,6594,6591,1,0, + 0,0,6594,6595,1,0,0,0,6595,6606,1,0,0,0,6596,6606,7,111,0,0,6597, + 6599,7,112,0,0,6598,6600,3,614,307,0,6599,6598,1,0,0,0,6599,6600, + 1,0,0,0,6600,6606,1,0,0,0,6601,6603,7,113,0,0,6602,6604,7,114,0, + 0,6603,6602,1,0,0,0,6603,6604,1,0,0,0,6604,6606,1,0,0,0,6605,6583, + 1,0,0,0,6605,6587,1,0,0,0,6605,6596,1,0,0,0,6605,6597,1,0,0,0,6605, + 6601,1,0,0,0,6606,6608,1,0,0,0,6607,6609,5,11,0,0,6608,6607,1,0, + 0,0,6608,6609,1,0,0,0,6609,609,1,0,0,0,6610,6611,5,1133,0,0,6611, + 6612,3,590,295,0,6612,6613,5,1134,0,0,6613,611,1,0,0,0,6614,6615, + 5,1133,0,0,6615,6616,3,590,295,0,6616,6617,5,1135,0,0,6617,6618, + 3,590,295,0,6618,6619,5,1134,0,0,6619,613,1,0,0,0,6620,6621,5,1133, + 0,0,6621,6624,3,590,295,0,6622,6623,5,1135,0,0,6623,6625,3,590,295, + 0,6624,6622,1,0,0,0,6624,6625,1,0,0,0,6625,6626,1,0,0,0,6626,6627, + 5,1134,0,0,6627,615,1,0,0,0,6628,6633,3,584,292,0,6629,6630,5,1135, + 0,0,6630,6632,3,584,292,0,6631,6629,1,0,0,0,6632,6635,1,0,0,0,6633, + 6631,1,0,0,0,6633,6634,1,0,0,0,6634,617,1,0,0,0,6635,6633,1,0,0, + 0,6636,6641,3,556,278,0,6637,6638,5,1135,0,0,6638,6640,3,556,278, + 0,6639,6637,1,0,0,0,6640,6643,1,0,0,0,6641,6639,1,0,0,0,6641,6642, + 1,0,0,0,6642,619,1,0,0,0,6643,6641,1,0,0,0,6644,6649,3,550,275,0, + 6645,6646,5,1135,0,0,6646,6648,3,550,275,0,6647,6645,1,0,0,0,6648, + 6651,1,0,0,0,6649,6647,1,0,0,0,6649,6650,1,0,0,0,6650,621,1,0,0, + 0,6651,6649,1,0,0,0,6652,6653,5,1133,0,0,6653,6658,3,558,279,0,6654, + 6655,5,1135,0,0,6655,6657,3,558,279,0,6656,6654,1,0,0,0,6657,6660, + 1,0,0,0,6658,6656,1,0,0,0,6658,6659,1,0,0,0,6659,6661,1,0,0,0,6660, + 6658,1,0,0,0,6661,6662,5,1134,0,0,6662,623,1,0,0,0,6663,6668,3,688, + 344,0,6664,6665,5,1135,0,0,6665,6667,3,688,344,0,6666,6664,1,0,0, + 0,6667,6670,1,0,0,0,6668,6666,1,0,0,0,6668,6669,1,0,0,0,6669,625, + 1,0,0,0,6670,6668,1,0,0,0,6671,6676,3,638,319,0,6672,6673,5,1135, + 0,0,6673,6675,3,638,319,0,6674,6672,1,0,0,0,6675,6678,1,0,0,0,6676, + 6674,1,0,0,0,6676,6677,1,0,0,0,6677,627,1,0,0,0,6678,6676,1,0,0, + 0,6679,6684,3,602,301,0,6680,6681,5,1135,0,0,6681,6683,3,602,301, + 0,6682,6680,1,0,0,0,6683,6686,1,0,0,0,6684,6682,1,0,0,0,6684,6685, + 1,0,0,0,6685,629,1,0,0,0,6686,6684,1,0,0,0,6687,6692,5,1148,0,0, + 6688,6689,5,1135,0,0,6689,6691,5,1148,0,0,6690,6688,1,0,0,0,6691, + 6694,1,0,0,0,6692,6690,1,0,0,0,6692,6693,1,0,0,0,6693,631,1,0,0, + 0,6694,6692,1,0,0,0,6695,6700,5,1159,0,0,6696,6697,5,1135,0,0,6697, + 6699,5,1159,0,0,6698,6696,1,0,0,0,6699,6702,1,0,0,0,6700,6698,1, + 0,0,0,6700,6701,1,0,0,0,6701,633,1,0,0,0,6702,6700,1,0,0,0,6703, + 6730,5,116,0,0,6704,6705,5,23,0,0,6705,6706,5,1133,0,0,6706,6707, + 3,688,344,0,6707,6708,5,12,0,0,6708,6709,3,608,304,0,6709,6710,5, + 1134,0,0,6710,6730,1,0,0,0,6711,6713,3,694,347,0,6712,6711,1,0,0, + 0,6712,6713,1,0,0,0,6713,6714,1,0,0,0,6714,6730,3,602,301,0,6715, + 6719,3,636,318,0,6716,6717,5,118,0,0,6717,6718,5,184,0,0,6718,6720, + 3,636,318,0,6719,6716,1,0,0,0,6719,6720,1,0,0,0,6720,6730,1,0,0, + 0,6721,6722,5,1133,0,0,6722,6723,3,688,344,0,6723,6724,5,1134,0, + 0,6724,6730,1,0,0,0,6725,6726,5,1133,0,0,6726,6727,3,548,274,0,6727, + 6728,5,1134,0,0,6728,6730,1,0,0,0,6729,6703,1,0,0,0,6729,6704,1, + 0,0,0,6729,6712,1,0,0,0,6729,6715,1,0,0,0,6729,6721,1,0,0,0,6729, + 6725,1,0,0,0,6730,635,1,0,0,0,6731,6737,7,115,0,0,6732,6734,5,1133, + 0,0,6733,6735,3,590,295,0,6734,6733,1,0,0,0,6734,6735,1,0,0,0,6735, + 6736,1,0,0,0,6736,6738,5,1134,0,0,6737,6732,1,0,0,0,6737,6738,1, + 0,0,0,6738,6746,1,0,0,0,6739,6740,5,323,0,0,6740,6742,5,1133,0,0, + 6741,6743,3,590,295,0,6742,6741,1,0,0,0,6742,6743,1,0,0,0,6743,6744, + 1,0,0,0,6744,6746,5,1134,0,0,6745,6731,1,0,0,0,6745,6739,1,0,0,0, + 6746,637,1,0,0,0,6747,6750,3,688,344,0,6748,6750,5,42,0,0,6749,6747, + 1,0,0,0,6749,6748,1,0,0,0,6750,639,1,0,0,0,6751,6752,5,77,0,0,6752, + 6753,5,60,0,0,6753,641,1,0,0,0,6754,6755,5,77,0,0,6755,6756,5,114, + 0,0,6756,6757,5,60,0,0,6757,643,1,0,0,0,6758,6759,5,123,0,0,6759, + 6760,5,141,0,0,6760,645,1,0,0,0,6761,6762,5,674,0,0,6762,6765,3, + 590,295,0,6763,6765,5,527,0,0,6764,6761,1,0,0,0,6764,6763,1,0,0, + 0,6765,647,1,0,0,0,6766,6785,3,650,325,0,6767,6785,3,658,329,0,6768, + 6785,3,660,330,0,6769,6770,3,680,340,0,6770,6772,5,1133,0,0,6771, + 6773,3,684,342,0,6772,6771,1,0,0,0,6772,6773,1,0,0,0,6773,6774,1, + 0,0,0,6774,6775,5,1134,0,0,6775,6785,1,0,0,0,6776,6777,3,548,274, + 0,6777,6779,5,1133,0,0,6778,6780,3,684,342,0,6779,6778,1,0,0,0,6779, + 6780,1,0,0,0,6780,6781,1,0,0,0,6781,6782,5,1134,0,0,6782,6785,1, + 0,0,0,6783,6785,3,682,341,0,6784,6766,1,0,0,0,6784,6767,1,0,0,0, + 6784,6768,1,0,0,0,6784,6769,1,0,0,0,6784,6776,1,0,0,0,6784,6783, + 1,0,0,0,6785,649,1,0,0,0,6786,6789,7,116,0,0,6787,6788,5,1133,0, + 0,6788,6790,5,1134,0,0,6789,6787,1,0,0,0,6789,6790,1,0,0,0,6790, + 6966,1,0,0,0,6791,6966,3,60,30,0,6792,6793,5,32,0,0,6793,6794,5, + 1133,0,0,6794,6795,3,688,344,0,6795,6796,5,1135,0,0,6796,6797,3, + 608,304,0,6797,6798,5,1134,0,0,6798,6966,1,0,0,0,6799,6800,5,32, + 0,0,6800,6801,5,1133,0,0,6801,6802,3,688,344,0,6802,6803,5,187,0, + 0,6803,6804,3,568,284,0,6804,6805,5,1134,0,0,6805,6966,1,0,0,0,6806, + 6807,5,23,0,0,6807,6808,5,1133,0,0,6808,6809,3,688,344,0,6809,6810, + 5,12,0,0,6810,6811,3,608,304,0,6811,6812,5,1134,0,0,6812,6966,1, + 0,0,0,6813,6814,5,188,0,0,6814,6815,5,1133,0,0,6815,6816,3,556,278, + 0,6816,6817,5,1134,0,0,6817,6966,1,0,0,0,6818,6819,5,22,0,0,6819, + 6821,3,688,344,0,6820,6822,3,652,326,0,6821,6820,1,0,0,0,6822,6823, + 1,0,0,0,6823,6821,1,0,0,0,6823,6824,1,0,0,0,6824,6827,1,0,0,0,6825, + 6826,5,53,0,0,6826,6828,3,686,343,0,6827,6825,1,0,0,0,6827,6828, + 1,0,0,0,6828,6829,1,0,0,0,6829,6830,5,407,0,0,6830,6966,1,0,0,0, + 6831,6833,5,22,0,0,6832,6834,3,652,326,0,6833,6832,1,0,0,0,6834, + 6835,1,0,0,0,6835,6833,1,0,0,0,6835,6836,1,0,0,0,6836,6839,1,0,0, + 0,6837,6838,5,53,0,0,6838,6840,3,686,343,0,6839,6837,1,0,0,0,6839, + 6840,1,0,0,0,6840,6841,1,0,0,0,6841,6842,5,407,0,0,6842,6966,1,0, + 0,0,6843,6844,5,222,0,0,6844,6845,5,1133,0,0,6845,6848,3,684,342, + 0,6846,6847,5,187,0,0,6847,6849,3,568,284,0,6848,6846,1,0,0,0,6848, + 6849,1,0,0,0,6849,6850,1,0,0,0,6850,6851,5,1134,0,0,6851,6966,1, + 0,0,0,6852,6853,5,324,0,0,6853,6856,5,1133,0,0,6854,6857,3,594,297, + 0,6855,6857,3,688,344,0,6856,6854,1,0,0,0,6856,6855,1,0,0,0,6857, + 6858,1,0,0,0,6858,6861,5,80,0,0,6859,6862,3,594,297,0,6860,6862, + 3,688,344,0,6861,6859,1,0,0,0,6861,6860,1,0,0,0,6862,6863,1,0,0, + 0,6863,6864,5,1134,0,0,6864,6966,1,0,0,0,6865,6866,7,117,0,0,6866, + 6869,5,1133,0,0,6867,6870,3,594,297,0,6868,6870,3,688,344,0,6869, + 6867,1,0,0,0,6869,6868,1,0,0,0,6870,6871,1,0,0,0,6871,6874,5,68, + 0,0,6872,6875,3,590,295,0,6873,6875,3,688,344,0,6874,6872,1,0,0, + 0,6874,6873,1,0,0,0,6875,6881,1,0,0,0,6876,6879,5,65,0,0,6877,6880, + 3,590,295,0,6878,6880,3,688,344,0,6879,6877,1,0,0,0,6879,6878,1, + 0,0,0,6880,6882,1,0,0,0,6881,6876,1,0,0,0,6881,6882,1,0,0,0,6882, + 6883,1,0,0,0,6883,6884,5,1134,0,0,6884,6966,1,0,0,0,6885,6886,5, + 328,0,0,6886,6887,5,1133,0,0,6887,6890,7,118,0,0,6888,6891,3,594, + 297,0,6889,6891,3,688,344,0,6890,6888,1,0,0,0,6890,6889,1,0,0,0, + 6890,6891,1,0,0,0,6891,6892,1,0,0,0,6892,6895,5,68,0,0,6893,6896, + 3,594,297,0,6894,6896,3,688,344,0,6895,6893,1,0,0,0,6895,6894,1, + 0,0,0,6896,6897,1,0,0,0,6897,6898,5,1134,0,0,6898,6966,1,0,0,0,6899, + 6900,5,328,0,0,6900,6903,5,1133,0,0,6901,6904,3,594,297,0,6902,6904, + 3,688,344,0,6903,6901,1,0,0,0,6903,6902,1,0,0,0,6904,6905,1,0,0, + 0,6905,6908,5,68,0,0,6906,6909,3,594,297,0,6907,6909,3,688,344,0, + 6908,6906,1,0,0,0,6908,6907,1,0,0,0,6909,6910,1,0,0,0,6910,6911, + 5,1134,0,0,6911,6966,1,0,0,0,6912,6913,5,1103,0,0,6913,6916,5,1133, + 0,0,6914,6917,3,594,297,0,6915,6917,3,688,344,0,6916,6914,1,0,0, + 0,6916,6915,1,0,0,0,6917,6924,1,0,0,0,6918,6919,5,12,0,0,6919,6920, + 7,119,0,0,6920,6921,5,1133,0,0,6921,6922,3,590,295,0,6922,6923,5, + 1134,0,0,6923,6925,1,0,0,0,6924,6918,1,0,0,0,6924,6925,1,0,0,0,6925, + 6927,1,0,0,0,6926,6928,3,654,327,0,6927,6926,1,0,0,0,6927,6928,1, + 0,0,0,6928,6929,1,0,0,0,6929,6930,5,1134,0,0,6930,6966,1,0,0,0,6931, + 6932,5,321,0,0,6932,6933,5,1133,0,0,6933,6934,3,70,35,0,6934,6937, + 5,68,0,0,6935,6938,3,594,297,0,6936,6938,3,688,344,0,6937,6935,1, + 0,0,0,6937,6936,1,0,0,0,6938,6939,1,0,0,0,6939,6940,5,1134,0,0,6940, + 6966,1,0,0,0,6941,6942,5,900,0,0,6942,6943,5,1133,0,0,6943,6944, + 7,120,0,0,6944,6945,5,1135,0,0,6945,6946,3,594,297,0,6946,6947,5, + 1134,0,0,6947,6966,1,0,0,0,6948,6949,5,282,0,0,6949,6950,5,1133, + 0,0,6950,6951,3,688,344,0,6951,6952,5,1135,0,0,6952,6955,3,688,344, + 0,6953,6954,5,593,0,0,6954,6956,3,608,304,0,6955,6953,1,0,0,0,6955, + 6956,1,0,0,0,6956,6958,1,0,0,0,6957,6959,3,266,133,0,6958,6957,1, + 0,0,0,6958,6959,1,0,0,0,6959,6961,1,0,0,0,6960,6962,3,268,134,0, + 6961,6960,1,0,0,0,6961,6962,1,0,0,0,6962,6963,1,0,0,0,6963,6964, + 5,1134,0,0,6964,6966,1,0,0,0,6965,6786,1,0,0,0,6965,6791,1,0,0,0, + 6965,6792,1,0,0,0,6965,6799,1,0,0,0,6965,6806,1,0,0,0,6965,6813, + 1,0,0,0,6965,6818,1,0,0,0,6965,6831,1,0,0,0,6965,6843,1,0,0,0,6965, + 6852,1,0,0,0,6965,6865,1,0,0,0,6965,6885,1,0,0,0,6965,6899,1,0,0, + 0,6965,6912,1,0,0,0,6965,6931,1,0,0,0,6965,6941,1,0,0,0,6965,6948, + 1,0,0,0,6966,651,1,0,0,0,6967,6968,5,189,0,0,6968,6969,3,686,343, + 0,6969,6970,5,174,0,0,6970,6971,3,686,343,0,6971,653,1,0,0,0,6972, + 6973,5,472,0,0,6973,6978,3,656,328,0,6974,6975,5,1135,0,0,6975,6977, + 3,656,328,0,6976,6974,1,0,0,0,6977,6980,1,0,0,0,6978,6976,1,0,0, + 0,6978,6979,1,0,0,0,6979,6987,1,0,0,0,6980,6978,1,0,0,0,6981,6982, + 5,472,0,0,6982,6983,3,590,295,0,6983,6984,5,1121,0,0,6984,6985,3, + 590,295,0,6985,6987,1,0,0,0,6986,6972,1,0,0,0,6986,6981,1,0,0,0, + 6987,655,1,0,0,0,6988,6990,3,590,295,0,6989,6991,7,121,0,0,6990, + 6989,1,0,0,0,6990,6991,1,0,0,0,6991,657,1,0,0,0,6992,6993,7,122, + 0,0,6993,6995,5,1133,0,0,6994,6996,7,44,0,0,6995,6994,1,0,0,0,6995, + 6996,1,0,0,0,6996,6997,1,0,0,0,6997,6998,3,686,343,0,6998,7000,5, + 1134,0,0,6999,7001,3,662,331,0,7000,6999,1,0,0,0,7000,7001,1,0,0, + 0,7001,7052,1,0,0,0,7002,7003,5,290,0,0,7003,7011,5,1133,0,0,7004, + 7012,5,1117,0,0,7005,7007,5,6,0,0,7006,7005,1,0,0,0,7006,7007,1, + 0,0,0,7007,7008,1,0,0,0,7008,7012,3,686,343,0,7009,7010,5,49,0,0, + 7010,7012,3,684,342,0,7011,7004,1,0,0,0,7011,7006,1,0,0,0,7011,7009, + 1,0,0,0,7012,7013,1,0,0,0,7013,7015,5,1134,0,0,7014,7016,3,662,331, + 0,7015,7014,1,0,0,0,7015,7016,1,0,0,0,7016,7052,1,0,0,0,7017,7018, + 7,123,0,0,7018,7020,5,1133,0,0,7019,7021,5,6,0,0,7020,7019,1,0,0, + 0,7020,7021,1,0,0,0,7021,7022,1,0,0,0,7022,7023,3,686,343,0,7023, + 7025,5,1134,0,0,7024,7026,3,662,331,0,7025,7024,1,0,0,0,7025,7026, + 1,0,0,0,7026,7052,1,0,0,0,7027,7028,5,294,0,0,7028,7030,5,1133,0, + 0,7029,7031,5,49,0,0,7030,7029,1,0,0,0,7030,7031,1,0,0,0,7031,7032, + 1,0,0,0,7032,7043,3,684,342,0,7033,7034,5,124,0,0,7034,7035,5,19, + 0,0,7035,7040,3,230,115,0,7036,7037,5,1135,0,0,7037,7039,3,230,115, + 0,7038,7036,1,0,0,0,7039,7042,1,0,0,0,7040,7038,1,0,0,0,7040,7041, + 1,0,0,0,7041,7044,1,0,0,0,7042,7040,1,0,0,0,7043,7033,1,0,0,0,7043, + 7044,1,0,0,0,7044,7047,1,0,0,0,7045,7046,5,154,0,0,7046,7048,5,1148, + 0,0,7047,7045,1,0,0,0,7047,7048,1,0,0,0,7048,7049,1,0,0,0,7049,7050, + 5,1134,0,0,7050,7052,1,0,0,0,7051,6992,1,0,0,0,7051,7002,1,0,0,0, + 7051,7017,1,0,0,0,7051,7027,1,0,0,0,7052,659,1,0,0,0,7053,7054,7, + 124,0,0,7054,7055,5,1133,0,0,7055,7058,3,688,344,0,7056,7057,5,1135, + 0,0,7057,7059,3,590,295,0,7058,7056,1,0,0,0,7058,7059,1,0,0,0,7059, + 7062,1,0,0,0,7060,7061,5,1135,0,0,7061,7063,3,590,295,0,7062,7060, + 1,0,0,0,7062,7063,1,0,0,0,7063,7064,1,0,0,0,7064,7065,5,1134,0,0, + 7065,7066,3,662,331,0,7066,7092,1,0,0,0,7067,7068,7,125,0,0,7068, + 7069,5,1133,0,0,7069,7070,3,688,344,0,7070,7071,5,1134,0,0,7071, + 7072,3,662,331,0,7072,7092,1,0,0,0,7073,7074,7,126,0,0,7074,7075, + 5,1133,0,0,7075,7076,5,1134,0,0,7076,7092,3,662,331,0,7077,7078, + 5,301,0,0,7078,7079,5,1133,0,0,7079,7080,3,688,344,0,7080,7081,5, + 1135,0,0,7081,7082,3,590,295,0,7082,7083,5,1134,0,0,7083,7084,3, + 662,331,0,7084,7092,1,0,0,0,7085,7086,5,300,0,0,7086,7087,5,1133, + 0,0,7087,7088,3,590,295,0,7088,7089,5,1134,0,0,7089,7090,3,662,331, + 0,7090,7092,1,0,0,0,7091,7053,1,0,0,0,7091,7067,1,0,0,0,7091,7073, + 1,0,0,0,7091,7077,1,0,0,0,7091,7085,1,0,0,0,7092,661,1,0,0,0,7093, + 7099,5,128,0,0,7094,7095,5,1133,0,0,7095,7096,3,664,332,0,7096,7097, + 5,1134,0,0,7097,7100,1,0,0,0,7098,7100,3,666,333,0,7099,7094,1,0, + 0,0,7099,7098,1,0,0,0,7100,663,1,0,0,0,7101,7103,3,666,333,0,7102, + 7101,1,0,0,0,7102,7103,1,0,0,0,7103,7105,1,0,0,0,7104,7106,3,678, + 339,0,7105,7104,1,0,0,0,7105,7106,1,0,0,0,7106,7108,1,0,0,0,7107, + 7109,3,228,114,0,7108,7107,1,0,0,0,7108,7109,1,0,0,0,7109,7111,1, + 0,0,0,7110,7112,3,668,334,0,7111,7110,1,0,0,0,7111,7112,1,0,0,0, + 7112,665,1,0,0,0,7113,7114,3,584,292,0,7114,667,1,0,0,0,7115,7116, + 3,670,335,0,7116,7117,3,672,336,0,7117,669,1,0,0,0,7118,7119,7,127, + 0,0,7119,671,1,0,0,0,7120,7123,3,676,338,0,7121,7123,3,674,337,0, + 7122,7120,1,0,0,0,7122,7121,1,0,0,0,7123,673,1,0,0,0,7124,7125,5, + 16,0,0,7125,7126,3,676,338,0,7126,7127,5,10,0,0,7127,7128,3,676, + 338,0,7128,675,1,0,0,0,7129,7130,5,35,0,0,7130,7137,5,600,0,0,7131, + 7132,5,657,0,0,7132,7137,7,128,0,0,7133,7134,3,688,344,0,7134,7135, + 7,128,0,0,7135,7137,1,0,0,0,7136,7129,1,0,0,0,7136,7131,1,0,0,0, + 7136,7133,1,0,0,0,7137,677,1,0,0,0,7138,7139,5,129,0,0,7139,7140, + 5,19,0,0,7140,7145,3,688,344,0,7141,7142,5,1135,0,0,7142,7144,3, + 688,344,0,7143,7141,1,0,0,0,7144,7147,1,0,0,0,7145,7143,1,0,0,0, + 7145,7146,1,0,0,0,7146,679,1,0,0,0,7147,7145,1,0,0,0,7148,7173,3, + 720,360,0,7149,7173,5,747,0,0,7150,7173,5,317,0,0,7151,7173,5,313, + 0,0,7152,7173,5,314,0,0,7153,7173,5,315,0,0,7154,7173,5,318,0,0, + 7155,7173,5,319,0,0,7156,7173,5,320,0,0,7157,7173,5,77,0,0,7158, + 7173,5,85,0,0,7159,7173,5,316,0,0,7160,7173,5,322,0,0,7161,7173, + 5,508,0,0,7162,7173,5,323,0,0,7163,7173,5,140,0,0,7164,7173,5,141, + 0,0,7165,7173,5,325,0,0,7166,7173,5,326,0,0,7167,7173,5,327,0,0, + 7168,7173,5,328,0,0,7169,7173,5,329,0,0,7170,7173,5,330,0,0,7171, + 7173,5,331,0,0,7172,7148,1,0,0,0,7172,7149,1,0,0,0,7172,7150,1,0, + 0,0,7172,7151,1,0,0,0,7172,7152,1,0,0,0,7172,7153,1,0,0,0,7172,7154, + 1,0,0,0,7172,7155,1,0,0,0,7172,7156,1,0,0,0,7172,7157,1,0,0,0,7172, + 7158,1,0,0,0,7172,7159,1,0,0,0,7172,7160,1,0,0,0,7172,7161,1,0,0, + 0,7172,7162,1,0,0,0,7172,7163,1,0,0,0,7172,7164,1,0,0,0,7172,7165, + 1,0,0,0,7172,7166,1,0,0,0,7172,7167,1,0,0,0,7172,7168,1,0,0,0,7172, + 7169,1,0,0,0,7172,7170,1,0,0,0,7172,7171,1,0,0,0,7173,681,1,0,0, + 0,7174,7175,7,129,0,0,7175,7176,5,1133,0,0,7176,7177,3,686,343,0, + 7177,7178,5,1134,0,0,7178,683,1,0,0,0,7179,7184,3,602,301,0,7180, + 7184,3,556,278,0,7181,7184,3,648,324,0,7182,7184,3,688,344,0,7183, + 7179,1,0,0,0,7183,7180,1,0,0,0,7183,7181,1,0,0,0,7183,7182,1,0,0, + 0,7184,7194,1,0,0,0,7185,7190,5,1135,0,0,7186,7191,3,602,301,0,7187, + 7191,3,556,278,0,7188,7191,3,648,324,0,7189,7191,3,688,344,0,7190, + 7186,1,0,0,0,7190,7187,1,0,0,0,7190,7188,1,0,0,0,7190,7189,1,0,0, + 0,7191,7193,1,0,0,0,7192,7185,1,0,0,0,7193,7196,1,0,0,0,7194,7192, + 1,0,0,0,7194,7195,1,0,0,0,7195,685,1,0,0,0,7196,7194,1,0,0,0,7197, + 7202,3,602,301,0,7198,7202,3,556,278,0,7199,7202,3,648,324,0,7200, + 7202,3,688,344,0,7201,7197,1,0,0,0,7201,7198,1,0,0,0,7201,7199,1, + 0,0,0,7201,7200,1,0,0,0,7202,687,1,0,0,0,7203,7204,6,344,-1,0,7204, + 7205,7,130,0,0,7205,7215,3,688,344,4,7206,7207,3,690,345,0,7207, + 7209,5,88,0,0,7208,7210,5,114,0,0,7209,7208,1,0,0,0,7209,7210,1, + 0,0,0,7210,7211,1,0,0,0,7211,7212,7,131,0,0,7212,7215,1,0,0,0,7213, + 7215,3,690,345,0,7214,7203,1,0,0,0,7214,7206,1,0,0,0,7214,7213,1, + 0,0,0,7215,7222,1,0,0,0,7216,7217,10,3,0,0,7217,7218,3,698,349,0, + 7218,7219,3,688,344,4,7219,7221,1,0,0,0,7220,7216,1,0,0,0,7221,7224, + 1,0,0,0,7222,7220,1,0,0,0,7222,7223,1,0,0,0,7223,689,1,0,0,0,7224, + 7222,1,0,0,0,7225,7226,6,345,-1,0,7226,7227,3,692,346,0,7227,7292, + 1,0,0,0,7228,7229,10,8,0,0,7229,7230,3,696,348,0,7230,7231,3,690, + 345,9,7231,7291,1,0,0,0,7232,7234,10,6,0,0,7233,7235,5,114,0,0,7234, + 7233,1,0,0,0,7234,7235,1,0,0,0,7235,7236,1,0,0,0,7236,7237,5,16, + 0,0,7237,7238,3,690,345,0,7238,7239,5,10,0,0,7239,7240,3,690,345, + 7,7240,7291,1,0,0,0,7241,7242,10,5,0,0,7242,7243,5,620,0,0,7243, + 7244,5,98,0,0,7244,7291,3,690,345,6,7245,7247,10,3,0,0,7246,7248, + 5,114,0,0,7247,7246,1,0,0,0,7247,7248,1,0,0,0,7248,7249,1,0,0,0, + 7249,7250,7,132,0,0,7250,7291,3,690,345,4,7251,7253,10,10,0,0,7252, + 7254,5,114,0,0,7253,7252,1,0,0,0,7253,7254,1,0,0,0,7254,7255,1,0, + 0,0,7255,7256,5,80,0,0,7256,7259,5,1133,0,0,7257,7260,3,198,99,0, + 7258,7260,3,624,312,0,7259,7257,1,0,0,0,7259,7258,1,0,0,0,7260,7261, + 1,0,0,0,7261,7262,5,1134,0,0,7262,7291,1,0,0,0,7263,7264,10,9,0, + 0,7264,7265,5,88,0,0,7265,7291,3,600,300,0,7266,7267,10,7,0,0,7267, + 7268,3,696,348,0,7268,7269,7,133,0,0,7269,7270,5,1133,0,0,7270,7271, + 3,198,99,0,7271,7272,5,1134,0,0,7272,7291,1,0,0,0,7273,7275,10,4, + 0,0,7274,7276,5,114,0,0,7275,7274,1,0,0,0,7275,7276,1,0,0,0,7276, + 7277,1,0,0,0,7277,7278,5,98,0,0,7278,7281,3,690,345,0,7279,7280, + 5,413,0,0,7280,7282,5,1148,0,0,7281,7279,1,0,0,0,7281,7282,1,0,0, + 0,7282,7291,1,0,0,0,7283,7284,10,2,0,0,7284,7285,5,505,0,0,7285, + 7286,5,533,0,0,7286,7287,5,1133,0,0,7287,7288,3,690,345,0,7288,7289, + 5,1134,0,0,7289,7291,1,0,0,0,7290,7228,1,0,0,0,7290,7232,1,0,0,0, + 7290,7241,1,0,0,0,7290,7245,1,0,0,0,7290,7251,1,0,0,0,7290,7263, + 1,0,0,0,7290,7266,1,0,0,0,7290,7273,1,0,0,0,7290,7283,1,0,0,0,7291, + 7294,1,0,0,0,7292,7290,1,0,0,0,7292,7293,1,0,0,0,7293,691,1,0,0, + 0,7294,7292,1,0,0,0,7295,7296,6,346,-1,0,7296,7344,3,602,301,0,7297, + 7344,3,556,278,0,7298,7344,3,648,324,0,7299,7344,3,566,283,0,7300, + 7301,3,694,347,0,7301,7302,3,692,346,12,7302,7344,1,0,0,0,7303,7304, + 5,226,0,0,7304,7344,3,692,346,11,7305,7306,5,1159,0,0,7306,7307, + 5,1108,0,0,7307,7344,3,692,346,10,7308,7309,5,1133,0,0,7309,7314, + 3,688,344,0,7310,7311,5,1135,0,0,7311,7313,3,688,344,0,7312,7310, + 1,0,0,0,7313,7316,1,0,0,0,7314,7312,1,0,0,0,7314,7315,1,0,0,0,7315, + 7317,1,0,0,0,7316,7314,1,0,0,0,7317,7318,5,1134,0,0,7318,7344,1, + 0,0,0,7319,7320,5,600,0,0,7320,7321,5,1133,0,0,7321,7324,3,688,344, + 0,7322,7323,5,1135,0,0,7323,7325,3,688,344,0,7324,7322,1,0,0,0,7325, + 7326,1,0,0,0,7326,7324,1,0,0,0,7326,7327,1,0,0,0,7327,7328,1,0,0, + 0,7328,7329,5,1134,0,0,7329,7344,1,0,0,0,7330,7331,5,60,0,0,7331, + 7332,5,1133,0,0,7332,7333,3,198,99,0,7333,7334,5,1134,0,0,7334,7344, + 1,0,0,0,7335,7336,5,1133,0,0,7336,7337,3,198,99,0,7337,7338,5,1134, + 0,0,7338,7344,1,0,0,0,7339,7340,5,86,0,0,7340,7341,3,688,344,0,7341, + 7342,3,70,35,0,7342,7344,1,0,0,0,7343,7295,1,0,0,0,7343,7297,1,0, + 0,0,7343,7298,1,0,0,0,7343,7299,1,0,0,0,7343,7300,1,0,0,0,7343,7303, + 1,0,0,0,7343,7305,1,0,0,0,7343,7308,1,0,0,0,7343,7319,1,0,0,0,7343, + 7330,1,0,0,0,7343,7335,1,0,0,0,7343,7339,1,0,0,0,7344,7366,1,0,0, + 0,7345,7346,10,4,0,0,7346,7347,3,700,350,0,7347,7348,3,692,346,5, + 7348,7365,1,0,0,0,7349,7350,10,3,0,0,7350,7351,3,702,351,0,7351, + 7352,3,692,346,4,7352,7365,1,0,0,0,7353,7354,10,2,0,0,7354,7355, + 3,704,352,0,7355,7356,3,692,346,3,7356,7365,1,0,0,0,7357,7358,10, + 1,0,0,7358,7359,3,706,353,0,7359,7360,3,692,346,2,7360,7365,1,0, + 0,0,7361,7362,10,14,0,0,7362,7363,5,27,0,0,7363,7365,3,570,285,0, + 7364,7345,1,0,0,0,7364,7349,1,0,0,0,7364,7353,1,0,0,0,7364,7357, + 1,0,0,0,7364,7361,1,0,0,0,7365,7368,1,0,0,0,7366,7364,1,0,0,0,7366, + 7367,1,0,0,0,7367,693,1,0,0,0,7368,7366,1,0,0,0,7369,7370,7,134, + 0,0,7370,695,1,0,0,0,7371,7386,5,1124,0,0,7372,7386,5,1125,0,0,7373, + 7386,5,1126,0,0,7374,7375,5,1126,0,0,7375,7386,5,1124,0,0,7376,7377, + 5,1125,0,0,7377,7386,5,1124,0,0,7378,7379,5,1126,0,0,7379,7386,5, + 1125,0,0,7380,7381,5,1127,0,0,7381,7386,5,1124,0,0,7382,7383,5,1126, + 0,0,7383,7384,5,1124,0,0,7384,7386,5,1125,0,0,7385,7371,1,0,0,0, + 7385,7372,1,0,0,0,7385,7373,1,0,0,0,7385,7374,1,0,0,0,7385,7376, + 1,0,0,0,7385,7378,1,0,0,0,7385,7380,1,0,0,0,7385,7382,1,0,0,0,7386, + 697,1,0,0,0,7387,7395,5,10,0,0,7388,7389,5,1130,0,0,7389,7395,5, + 1130,0,0,7390,7395,5,194,0,0,7391,7395,5,123,0,0,7392,7393,5,1129, + 0,0,7393,7395,5,1129,0,0,7394,7387,1,0,0,0,7394,7388,1,0,0,0,7394, + 7390,1,0,0,0,7394,7391,1,0,0,0,7394,7392,1,0,0,0,7395,699,1,0,0, + 0,7396,7397,5,1126,0,0,7397,7404,5,1126,0,0,7398,7399,5,1125,0,0, + 7399,7404,5,1125,0,0,7400,7404,5,1130,0,0,7401,7404,5,1131,0,0,7402, + 7404,5,1129,0,0,7403,7396,1,0,0,0,7403,7398,1,0,0,0,7403,7400,1, + 0,0,0,7403,7401,1,0,0,0,7403,7402,1,0,0,0,7404,701,1,0,0,0,7405, + 7406,7,135,0,0,7406,703,1,0,0,0,7407,7408,7,136,0,0,7408,705,1,0, + 0,0,7409,7410,5,1121,0,0,7410,7415,5,1125,0,0,7411,7412,5,1121,0, + 0,7412,7413,5,1125,0,0,7413,7415,5,1125,0,0,7414,7409,1,0,0,0,7414, + 7411,1,0,0,0,7415,707,1,0,0,0,7416,7417,7,137,0,0,7417,709,1,0,0, + 0,7418,7419,7,138,0,0,7419,711,1,0,0,0,7420,7421,7,139,0,0,7421, + 713,1,0,0,0,7422,7423,7,140,0,0,7423,715,1,0,0,0,7424,7425,7,141, + 0,0,7425,717,1,0,0,0,7426,7427,7,142,0,0,7427,719,1,0,0,0,7428,7429, + 7,143,0,0,7429,721,1,0,0,0,1081,723,729,735,744,784,799,810,827, + 832,844,871,880,885,891,896,900,909,912,915,919,926,929,934,942, + 947,952,955,957,969,972,976,979,983,986,990,993,996,1000,1003,1007, + 1013,1019,1025,1032,1039,1042,1046,1051,1057,1066,1071,1076,1083, + 1100,1107,1111,1121,1125,1129,1133,1137,1142,1145,1148,1151,1154, + 1160,1164,1170,1175,1178,1181,1183,1194,1198,1201,1215,1218,1222, + 1225,1229,1232,1236,1239,1243,1246,1249,1253,1256,1260,1266,1270, + 1282,1288,1299,1304,1312,1320,1325,1328,1333,1341,1346,1352,1357, + 1361,1363,1366,1370,1374,1377,1381,1385,1389,1395,1398,1405,1410, + 1416,1423,1429,1437,1440,1447,1450,1452,1458,1464,1481,1488,1495, + 1507,1512,1515,1518,1531,1544,1549,1565,1573,1583,1586,1589,1595, + 1599,1602,1613,1616,1621,1634,1641,1648,1650,1657,1661,1663,1668, + 1671,1677,1682,1684,1688,1691,1694,1700,1705,1707,1712,1719,1721, + 1728,1733,1737,1740,1748,1756,1758,1768,1772,1775,1781,1786,1789, + 1795,1798,1802,1805,1809,1814,1819,1824,1828,1832,1836,1840,1844, + 1848,1853,1858,1863,1869,1874,1879,1884,1889,1894,1900,1905,1910, + 1915,1920,1925,1930,1935,1942,1947,1952,1957,1961,1966,1974,1979, + 1985,1997,2004,2006,2014,2019,2022,2030,2036,2040,2053,2065,2067, + 2070,2078,2084,2090,2103,2110,2119,2124,2135,2144,2149,2161,2168, + 2177,2182,2194,2201,2210,2215,2222,2231,2236,2238,2243,2251,2260, + 2264,2267,2271,2276,2282,2288,2293,2298,2303,2308,2311,2316,2321, + 2331,2335,2342,2347,2350,2355,2358,2362,2366,2374,2393,2396,2399, + 2403,2413,2426,2433,2436,2441,2448,2451,2454,2465,2468,2472,2480, + 2483,2488,2496,2502,2506,2510,2515,2520,2527,2531,2542,2550,2553, + 2559,2565,2567,2572,2575,2581,2587,2589,2593,2596,2599,2605,2611, + 2614,2620,2626,2628,2633,2641,2643,2652,2655,2658,2663,2665,2674, + 2677,2680,2685,2687,2696,2701,2709,2713,2721,2731,2736,2743,2747, + 2751,2770,2780,2786,2803,2807,2817,2822,2825,2834,2845,2853,2859, + 2869,2881,2888,2895,2910,2923,2929,2935,2941,2947,2953,2959,2964, + 2971,2978,2985,2990,2993,2995,3009,3016,3023,3029,3033,3037,3044, + 3047,3052,3059,3066,3070,3075,3082,3095,3098,3103,3108,3112,3118, + 3127,3136,3145,3148,3152,3161,3165,3168,3171,3177,3180,3184,3187, + 3191,3194,3202,3205,3216,3219,3224,3227,3232,3242,3247,3253,3255, + 3261,3263,3269,3277,3282,3290,3293,3298,3301,3306,3314,3322,3328, + 3336,3341,3349,3352,3356,3359,3367,3373,3382,3385,3389,3393,3397, + 3402,3406,3410,3412,3415,3418,3421,3427,3431,3434,3437,3440,3443, + 3450,3452,3456,3461,3467,3472,3479,3485,3490,3493,3499,3503,3511, + 3515,3518,3521,3526,3529,3536,3540,3543,3547,3551,3554,3557,3562, + 3568,3572,3582,3588,3592,3598,3602,3608,3611,3623,3627,3631,3639, + 3643,3651,3654,3658,3661,3669,3674,3677,3680,3684,3687,3696,3701, + 3710,3715,3722,3729,3737,3743,3751,3754,3757,3764,3767,3774,3782, + 3788,3799,3802,3806,3812,3821,3826,3830,3836,3842,3844,3848,3857, + 3867,3877,3883,3888,3892,3895,3898,3901,3904,3910,3916,3919,3922, + 3925,3928,3931,3933,3939,3945,3948,3951,3954,3957,3960,3964,3970, + 3974,3982,3986,3989,3991,4004,4007,4014,4024,4027,4032,4034,4038, + 4046,4052,4061,4074,4078,4084,4093,4096,4100,4103,4107,4111,4114, + 4116,4124,4136,4142,4144,4150,4152,4154,4160,4168,4176,4180,4184, + 4193,4198,4218,4223,4229,4236,4241,4250,4253,4257,4261,4265,4268, + 4271,4274,4278,4282,4285,4288,4291,4298,4302,4317,4321,4333,4341, + 4351,4355,4358,4364,4367,4370,4379,4388,4398,4402,4412,4422,4430, + 4433,4442,4445,4449,4454,4458,4467,4470,4501,4504,4507,4563,4568, + 4596,4610,4617,4621,4627,4635,4637,4648,4658,4665,4671,4679,4684, + 4692,4700,4708,4716,4722,4727,4732,4737,4743,4745,4756,4761,4768, + 4770,4784,4790,4795,4800,4806,4813,4821,4829,4834,4840,4843,4851, + 4858,4867,4870,4887,4895,4903,4907,4914,4920,4928,4937,4943,4950, + 4957,4962,4965,4967,4973,4975,4979,4981,4988,4993,4997,5003,5012, + 5018,5025,5031,5037,5042,5045,5047,5053,5055,5059,5061,5068,5070, + 5075,5082,5091,5096,5105,5112,5117,5120,5122,5128,5130,5133,5141, + 5146,5151,5155,5161,5166,5170,5176,5178,5189,5192,5199,5202,5214, + 5220,5229,5238,5243,5252,5258,5269,5275,5280,5284,5290,5295,5299, + 5302,5314,5321,5326,5356,5360,5365,5372,5375,5381,5391,5401,5411, + 5417,5426,5432,5439,5441,5451,5455,5459,5469,5474,5546,5564,5572, + 5584,5591,5593,5603,5606,5614,5621,5625,5632,5637,5640,5643,5652, + 5656,5660,5683,5690,5694,5701,5708,5711,5727,5730,5740,5744,5750, + 5753,5758,5762,5769,5772,5778,5802,5805,5817,5820,5830,5838,5842, + 5849,5852,5861,5867,5873,5883,5885,5891,5894,5897,5909,5912,5918, + 5921,5929,5937,5943,5947,5961,5973,5980,5983,5990,5997,6002,6015, + 6026,6032,6037,6050,6052,6057,6061,6064,6066,6073,6080,6083,6086, + 6092,6096,6102,6108,6121,6126,6134,6137,6142,6147,6155,6158,6166, + 6170,6177,6183,6186,6190,6203,6209,6221,6224,6233,6238,6244,6253, + 6258,6263,6265,6268,6272,6274,6278,6284,6287,6290,6296,6305,6313, + 6317,6322,6342,6349,6351,6358,6360,6364,6369,6380,6385,6391,6394, + 6398,6403,6406,6410,6414,6416,6421,6426,6439,6442,6446,6449,6452, + 6457,6462,6468,6471,6476,6479,6484,6487,6491,6496,6501,6506,6511, + 6514,6519,6524,6529,6535,6540,6545,6550,6554,6557,6562,6566,6570, + 6578,6585,6589,6594,6599,6603,6605,6608,6624,6633,6641,6649,6658, + 6668,6676,6684,6692,6700,6712,6719,6729,6734,6737,6742,6745,6749, + 6764,6772,6779,6784,6789,6823,6827,6835,6839,6848,6856,6861,6869, + 6874,6879,6881,6890,6895,6903,6908,6916,6924,6927,6937,6955,6958, + 6961,6965,6978,6986,6990,6995,7000,7006,7011,7015,7020,7025,7030, + 7040,7043,7047,7051,7058,7062,7091,7099,7102,7105,7108,7111,7122, + 7136,7145,7172,7183,7190,7194,7201,7209,7214,7222,7234,7247,7253, + 7259,7275,7281,7290,7292,7314,7326,7343,7364,7366,7385,7394,7403, + 7414 ]; private static __ATN: antlr.ATN; @@ -55192,8 +55186,8 @@ export class RootContext extends antlr.ParserRuleContext { public EOF(): antlr.TerminalNode { return this.getToken(MySqlParser.EOF, 0)!; } - public sqlStatements(): SqlStatementsContext | null { - return this.getRuleContext(0, SqlStatementsContext); + public statements(): StatementsContext | null { + return this.getRuleContext(0, StatementsContext); } public override get ruleIndex(): number { return MySqlParser.RULE_root; @@ -55208,25 +55202,25 @@ export class RootContext extends antlr.ParserRuleContext { } -export class SqlStatementsContext extends antlr.ParserRuleContext { +export class StatementsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sqlStatement(): SqlStatementContext | null { - return this.getRuleContext(0, SqlStatementContext); + public statement(): StatementContext { + return this.getRuleContext(0, StatementContext)!; } public SEMI(): antlr.TerminalNode | null { return this.getToken(MySqlParser.SEMI, 0); } - public sqlStatements(): SqlStatementsContext | null { - return this.getRuleContext(0, SqlStatementsContext); + public statements(): StatementsContext | null { + return this.getRuleContext(0, StatementsContext); } public override get ruleIndex(): number { - return MySqlParser.RULE_sqlStatements; + return MySqlParser.RULE_statements; } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSqlStatements) { - return visitor.visitSqlStatements(this); + if (visitor.visitStatements) { + return visitor.visitStatements(this); } else { return visitor.visitChildren(this); } @@ -55234,7 +55228,7 @@ export class SqlStatementsContext extends antlr.ParserRuleContext { } -export class SqlStatementContext extends antlr.ParserRuleContext { +export class StatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -55260,11 +55254,11 @@ export class SqlStatementContext extends antlr.ParserRuleContext { return this.getRuleContext(0, UtilityStatementContext); } public override get ruleIndex(): number { - return MySqlParser.RULE_sqlStatement; + return MySqlParser.RULE_statement; } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSqlStatement) { - return visitor.visitSqlStatement(this); + if (visitor.visitStatement) { + return visitor.visitStatement(this); } else { return visitor.visitChildren(this); } @@ -68605,8 +68599,8 @@ export class RoutineBodyContext extends antlr.ParserRuleContext { public blockStatement(): BlockStatementContext | null { return this.getRuleContext(0, BlockStatementContext); } - public sqlStatement(): SqlStatementContext | null { - return this.getRuleContext(0, SqlStatementContext); + public statement(): StatementContext | null { + return this.getRuleContext(0, StatementContext); } public override get ruleIndex(): number { return MySqlParser.RULE_routineBody; @@ -69428,8 +69422,8 @@ export class ProcedureSqlStatementContext extends antlr.ParserRuleContext { public compoundStatement(): CompoundStatementContext | null { return this.getRuleContext(0, CompoundStatementContext); } - public sqlStatement(): SqlStatementContext | null { - return this.getRuleContext(0, SqlStatementContext); + public statement(): StatementContext | null { + return this.getRuleContext(0, StatementContext); } public override get ruleIndex(): number { return MySqlParser.RULE_procedureSqlStatement; diff --git a/src/autocomplete/mysql/generated/MySqlParserVisitor.ts b/src/autocomplete/mysql/generated/MySqlParserVisitor.ts index aa1b6aa4..e3a6d5eb 100644 --- a/src/autocomplete/mysql/generated/MySqlParserVisitor.ts +++ b/src/autocomplete/mysql/generated/MySqlParserVisitor.ts @@ -13,8 +13,8 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; import { RootContext } from "./MySqlParser.js"; -import { SqlStatementsContext } from "./MySqlParser.js"; -import { SqlStatementContext } from "./MySqlParser.js"; +import { StatementsContext } from "./MySqlParser.js"; +import { StatementContext } from "./MySqlParser.js"; import { DdlStatementContext } from "./MySqlParser.js"; import { DmlStatementContext } from "./MySqlParser.js"; import { TransactionStatementContext } from "./MySqlParser.js"; @@ -647,17 +647,17 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitRoot?: (ctx: RootContext) => Result; /** - * Visit a parse tree produced by `MySqlParser.sqlStatements`. + * Visit a parse tree produced by `MySqlParser.statements`. * @param ctx the parse tree * @return the visitor result */ - visitSqlStatements?: (ctx: SqlStatementsContext) => Result; + visitStatements?: (ctx: StatementsContext) => Result; /** - * Visit a parse tree produced by `MySqlParser.sqlStatement`. + * Visit a parse tree produced by `MySqlParser.statement`. * @param ctx the parse tree * @return the visitor result */ - visitSqlStatement?: (ctx: SqlStatementContext) => Result; + visitStatement?: (ctx: StatementContext) => Result; /** * Visit a parse tree produced by `MySqlParser.ddlStatement`. * @param ctx the parse tree diff --git a/src/autocomplete/mysql/grammar/MySqlParser.g4 b/src/autocomplete/mysql/grammar/MySqlParser.g4 index 6c3e4b68..3ddcd60d 100644 --- a/src/autocomplete/mysql/grammar/MySqlParser.g4 +++ b/src/autocomplete/mysql/grammar/MySqlParser.g4 @@ -32,17 +32,16 @@ options { // Top Level Description root - : sqlStatements? EOF + : statements? EOF ; // We can omit statement semicolon only if it's the last statement -sqlStatements - : sqlStatement SEMI? - | sqlStatement SEMI sqlStatements - | +statements + : statement SEMI? + | statement SEMI statements ; -sqlStatement +statement : ddlStatement | dmlStatement | transactionStatement @@ -1248,7 +1247,7 @@ deallocatePrepare routineBody : blockStatement - | sqlStatement + | statement ; // details @@ -1323,7 +1322,7 @@ handlerConditionValue ; procedureSqlStatement - : (compoundStatement | sqlStatement) SEMI + : (compoundStatement | statement) SEMI ; caseAlternative diff --git a/src/autocomplete/postgresql/generated/PostgreSqlParser.interp b/src/autocomplete/postgresql/generated/PostgreSqlParser.interp index 3c4a0b66..8519a95e 100644 --- a/src/autocomplete/postgresql/generated/PostgreSqlParser.interp +++ b/src/autocomplete/postgresql/generated/PostgreSqlParser.interp @@ -1364,817 +1364,754 @@ AfterEscapeStringConstantWithNewlineMode_Continued rule names: root -plsqlroot -stmtmulti -stmt -plsqlconsolecommand -callstmt -createrolestmt -opt_with -optrolelist -alteroptrolelist -alteroptroleelem -createoptroleelem -createuserstmt -alterrolestmt -opt_in_database -alterrolesetstmt -droprolestmt -creategroupstmt -altergroupstmt -add_drop -createschemastmt -optschemaname -optschemaeltlist -schema_stmt -variablesetstmt -set_rest -generic_set -set_rest_more -var_name -var_list -var_value -iso_level -opt_boolean_or_string -zone_value -opt_encoding -nonreservedword_or_sconst -variableresetstmt -reset_rest -generic_reset -setresetclause -functionsetresetclause -variableshowstmt -constraintssetstmt -constraints_set_list -constraints_set_mode -checkpointstmt -discardstmt -altertablestmt -alter_table_cmds -partition_cmd -index_partition_cmd -alter_table_cmd -alter_column_default -opt_drop_behavior -opt_collate_clause -alter_using -replica_identity -reloptions -opt_reloptions -reloption_list -reloption_elem -alter_identity_column_option_list -alter_identity_column_option -partitionboundspec -hash_partbound_elem -hash_partbound -altercompositetypestmt -alter_type_cmds -alter_type_cmd -closeportalstmt -copystmt -copy_from -opt_program -copy_file_name -copy_options -copy_opt_list -copy_opt_item -opt_binary -copy_delimiter -opt_using -copy_generic_opt_list -copy_generic_opt_elem -copy_generic_opt_arg -copy_generic_opt_arg_list -copy_generic_opt_arg_list_item -createstmt -opttemp -opttableelementlist -opttypedtableelementlist -tableelementlist -typedtableelementlist -tableelement -typedtableelement -columnDef +plsqlRoot +statements +statement +plsqlConsoleCommand +callStatement +createRoleStatement +optionalWith +optionalRoleList +alterOptionalRoleList +alterRoleElemement +createRoleElement +createUserStatement +alterRoleStatement +optionalInDatabase +alterRoleSetStatement +dropRoleStatement +createGroupStatement +alterGroupStatement +addOrDrop +createSchemaStatement +optionalSchemaName +optionalSchemaList +schemaStatement +variableSetStatement +setStatementEnding +genericSetClause +setStatementMore +variableName +variableList +variableValue +isoLevel +booleanOrString +zoneValue +optionalEncoding +nonReservedWordOrSconst +variableResetStatement +resetClauseRest +genericResetClause +setResetClause +functionSetResetClause +variableShowStatement +setConstraintsStatement +constraintsSetList +constraintsSetMode +checkpointStatement +discardStatement +alterTableStatement +alterTableCommands +partitionCommand +indexPartitionCommand +alterTableCommand +alterColumnDefault +optionalDropBehavior +optionalCollateClause +alterUsing +replicaIdentity +relOptions +optionalRelOptions +relOptionList +relOptionElem +alterIdentityColumnOptionList +alterIdentityColumnOption +partitionBoundSpecification +hashPartitionBoundElement +hashPartitionBound +alterCompositeTypeStatement +alterTypeCommands +alterTypeCommand +closePortalStatement +copyStatement +fromOrTo +copyFileName +copyOptions +copyOptionsItem +copyDelimiter +copyGenericOptionList +copyGenericOptionElem +copyGenericOptionArgument +createStatement +temporaryOption +optionalTableElementList +optionalTypedTableElementList +tableElementList +typedTableElementList +tableElement +typedTableElement +columnDefinition columnOptions -colquallist -colconstraint -colconstraintelem -generated_when -constraintattr -tablelikeclause -tablelikeoptionlist -tablelikeoption -tableconstraint -constraintelem -opt_no_inherit -opt_column_list -columnlist -columnElem -opt_c_include -key_match -exclusionconstraintlist -exclusionconstraintelem -exclusionwhereclause -key_actions -key_update -key_delete -key_action -optinherit -optpartitionspec -partitionspec -part_params -part_elem -table_access_method_clause -optwith -oncommitoption -opttablespace -optconstablespace -existingindex -createstatsstmt -alterstatsstmt -createasstmt -create_as_target -opt_with_data -creatematviewstmt -create_mv_target -optnolog -refreshmatviewstmt -createseqstmt -alterseqstmt -optseqoptlist -optparenthesizedseqoptlist -seqoptlist -seqoptelem -opt_by -numericonly -numericonly_list -createplangstmt -opt_trusted -handler_name -opt_inline_handler -validator_clause -opt_validator -opt_procedural -createtablespacestmt -opttablespaceowner -droptablespacestmt -createextensionstmt -create_extension_opt_list -create_extension_opt_item -alterextensionstmt -alter_extension_opt_list -alter_extension_opt_item -alterextensioncontentsstmt -createfdwstmt -fdw_option -fdw_options -opt_fdw_options -alterfdwstmt -create_generic_options -generic_option_list -alter_generic_options -alter_generic_option_list -alter_generic_option_elem -generic_option_elem -generic_option_name -generic_option_arg -createforeignserverstmt -opt_type -foreign_server_version -opt_foreign_server_version -alterforeignserverstmt -createforeigntablestmt -importforeignschemastmt -import_qualification_type -import_qualification -createusermappingstmt -auth_ident -dropusermappingstmt -alterusermappingstmt -createpolicystmt -alterpolicystmt -rowsecurityoptionalexpr -rowsecurityoptionalwithcheck -rowsecuritydefaulttorole -rowsecurityoptionaltorole -rowsecuritydefaultpermissive -rowsecuritydefaultforcmd -row_security_cmd -createamstmt -am_type -createtrigstmt -triggeractiontime -triggerevents -triggeroneevent -triggerreferencing -triggertransitions -triggertransition -transitionoldornew -transitionrowortable -transitionrelname -triggerforspec -triggerforopteach -triggerfortype -triggerwhen -function_or_procedure -triggerfuncargs -triggerfuncarg -optconstrfromtable -constraintattributespec -constraintattributeElem -createeventtrigstmt -event_trigger_when_list -event_trigger_when_item -event_trigger_value_list -altereventtrigstmt -enable_trigger -createassertionstmt -definestmt +columnQualifierList +columnConstraint +columnConstraintElement +generatedWhen +constraintAttribute +tableLikeClause +tableLikeOptionList +tableLikeOption +tableConstraint +constraintElement +columnListWithParentheses +columnList +columnElement +optionalColumnListInclude +matchClause +exclusionConstraintList +exclusionConstraintElement +exclusionWhereClause +keyActions +onKeyUpdateClause +onKeyDeleteClause +keyAction +inheritClause +optionalPartitionSpecification +partitionSpecification +partitionElements +partitionElement +optionalTableAccessMethodClause +with +onCommitOption +optionalTablespace +usingIndexTablespace +existingIndex +createStatsStatement +alterStatsStatement +createAsStatement +createAsTarget +withData +createMaterializedViewStatement +createMaterializedViewTarget +refreshMaterializedViewStatement +createSequenceStatement +alterSequenceStatement +optionalParenthesizedSeqOptionsList +sequenceOptionList +sequenceOptionItem +numericOnly +numericOnlyList +createProcedureLangStatement +handlerName +optionalInlineHandler +validatorClause +optionalProcedural +createTablespaceStatement +optionalTablespaceOwner +dropTablespaceStatement +createExtensionStatement +createExtensionOptionItem +alterExtensionStatement +alterExtensionOptionItem +alterExtensionContentsStatement +createForeignDataWrapperStatement +forwardOption +forwardOptions +alterForeignDataWrapperStatement +createGenericOptions +genericOptionList +alterGenericOptions +alterGenericOptionList +alterGenericOptionElem +genericOptionElement +genericOptionName +genericOptionArgument +createForeignServerStatement +optionalType +foreignServerVersion +alterForeignServerStatement +createForeignTableStatement +importForeignSchemaStatement +importQualificationType +importQualification +createUserMappingStatement +authIdentifier +dropUserMappingStatement +alterUserMappingStatement +createPolicyStatement +alterPolicyStatement +rowSecurityOptionalExpression +rowSecurityOptionalWithCheck +rowSecurityDefaultToRole +rowSecurityOptionalToRole +rowSecurityDefaultPermissive +rowSecurityDefaultForCmd +rowSecurityCommand +createAccessMethodStatement +accessMethodType +createTriggerStatement +triggerActionTime +triggerEvents +triggerOneEvent +triggerReferencing +triggerTransitions +triggerTransition +transitionOldOrNew +transitionRowOrTable +transitionRelName +triggerForSpec +triggerForType +triggerWhen +functionOrProcedure +triggerFunctionArguments +triggerFunctionArgument +optionalConstraintFromTable +constraintAttributeSpecification +constraintAttributeElement +createEventTriggerStatement +eventTriggerWhenList +eventTriggerWhenItem +eventTriggerValueList +alterEventTriggerStatement +enableTrigger +createAssertionStatement +defineStatement definition -def_list -def_elem -def_arg -old_aggr_definition -old_aggr_list -old_aggr_elem -opt_enum_val_list -enum_val_list -alterenumstmt -opt_if_not_exists -createopclassstmt -opclass_item_list -opclass_item -opt_default -opt_opfamily -opclass_purpose -opt_recheck -createopfamilystmt -alteropfamilystmt -opclass_drop_list -opclass_drop -dropopclassstmt -dropopfamilystmt -dropownedstmt -reassignownedstmt -dropstmt -object_type_any_name -object_type_name -drop_type_name -object_type_name_on_any_name -any_name_list -any_name -attrs -type_name_list -truncatestmt -opt_restart_seqs -commentstmt -comment_text -seclabelstmt -opt_provider -security_label -fetchstmt -fetch_args -from_in -opt_from_in -grantstmt -revokestmt +definitionElement +definitionArgument +oldAggregateDefinition +oldAggregateElement +enumValueList +alterEnumStatement +optionalIfNotExists +createOperatorClassStatement +operatorClassItemList +operatorClassItem +optionalOperatorFamily +operatorClassPurpose +createOperatorFamilyStatement +alterOperatorFamilyStatement +operatorClassDropList +operatorClassDrop +dropOperatorClassStatement +dropOperatorFamilyStatement +dropOwnedStatement +reassignOwnedStatement +dropStatement +objectTypeAnyName +objectTypeName +dropTypeName +objectTypeNameOnAnyName +anyNameList +anyName +attributes +typeNameList +truncateStatement +optionalRestartSequences +commentStatement +commentText +securityLabelStatement +optionalProvider +securityLabel +fetchStatement +fetchArguments +fromOrIn +optionalFromOrIn +grantStatement +revokeStatement privileges -privilege_list +privilegeList privilege -privilege_target -grantee_list +privilegeTarget +granteeList grantee -opt_grant_grant_option -grantrolestmt -revokerolestmt -opt_grant_admin_option -opt_granted_by -alterdefaultprivilegesstmt -defacloptionlist -defacloption -defaclaction -defacl_privilege_target -indexstmt -opt_unique -opt_concurrently -opt_index_name -access_method_clause -index_params -index_elem_options -index_elem -opt_include -index_including_params -opt_collate -opt_class -opt_asc_desc -opt_nulls_order -createfunctionstmt -opt_or_replace -func_args -func_args_list -function_with_argtypes_list -function_with_argtypes -func_args_with_defaults -func_args_with_defaults_list -func_arg -arg_class -param_name -func_return -func_type -func_arg_with_default -aggr_arg -aggr_args -aggr_args_list -aggregate_with_argtypes -aggregate_with_argtypes_list -createfunc_opt_list -common_func_opt_item -createfunc_opt_item -func_as -transform_type_list -opt_definition -table_func_column -table_func_column_list -alterfunctionstmt -alterfunc_opt_list -opt_restrict -removefuncstmt -removeaggrstmt -removeoperstmt -oper_argtypes -any_operator -operator_with_argtypes_list -operator_with_argtypes -dostmt -dostmt_opt_list -dostmt_opt_item -createcaststmt -cast_context -dropcaststmt -opt_if_exists -createtransformstmt -transform_element_list -droptransformstmt -reindexstmt -reindex_target_type -reindex_target_multitable -reindex_option_list -reindex_option_elem -altertblspcstmt -renamestmt -opt_column -opt_set_data -alterobjectdependsstmt -opt_no -alterobjectschemastmt -alteroperatorstmt -operator_def_list -operator_def_elem -operator_def_arg -altertypestmt -alterownerstmt -createpublicationstmt -opt_publication_for_tables -publication_for_tables -alterpublicationstmt -createsubscriptionstmt -publication_name_list -publication_name_item -altersubscriptionstmt -dropsubscriptionstmt -rulestmt -ruleactionlist -ruleactionmulti -ruleactionstmt -ruleactionstmtOrEmpty +optionalWithGrantOption +grantRoleStatement +revokeRoleStatement +optionalGrantAdminOption +optionalGrantedBy +alterDefaultPrivilegesStatement +defultPrivilegeOption +defaultPrivelegeAction +defultPrivilegeTarget +indexStatement +optionalConcurrently +optionalAccessMethodClause +indexParameters +indexElemOptions +indexElement +optionalInclude +optionalCollate +optionalClass +optionalAscOrDesc +optionalNullsOrder +createFunctionStatement +optionalOrReplace +functionArgumentsList +functionWithArgumentTypesList +functionWithArgumentTypes +functionArgumentsWithDefaultsList +functionArgumentWithDefault +functionArgument +argumentClass +parameterName +functionReturn +functionType +aggregateArguments +aggregateArgumentsList +aggregateWithArgumentTypes +aggregateWithArgumentTypesList +createFunctionOptionList +commonFunctionOptionItem +createFunctionOptionItem +functionAs +transformTypeList +optionalDefinition +tableFunctionColumn +tableFunctionColumnList +alterFunctionStatement +removeFunctionStatement +removeAggregateStatement +removeOperatorStatement +operatorArgumentTypes +anyOperator +operatorWithArgumentTypesList +operatorWithArgumentTypes +doStatement +doStatementOptionsList +doStatementOptionItem +createCastStatement +castContext +dropCastStatement +optionalIfExists +createTransformStatement +transformElementList +dropTransformStatement +reindexStatement +reindexTargetType +reindexTargetMultiTable +reindexOptionList +reindexOptionElement +alterTablespaceStatement +renameStatement +optionalColumn +optionalSetData +alterObjectDependsStatement +alterObjectSchemaStatement +alterOperatorStatement +operatorDefinitionList +operatorDefinitionElement +operatorDefinitionArgument +alterTypeStatement +alterOwnerStatement +createPublicationStatement +optionalPublicationForTables +publicationForTables +alterPublicationStatement +createSubscriptionStatement +publicationNameList +publicationNameItem +alterSubscriptionStatement +dropSubscriptionStatement +ruleStatement +ruleActionList +ruleActionMulti +ruleActionStatement +ruleActionStatementOrEmpty event -opt_instead -notifystmt -notify_payload -listenstmt -unlistenstmt -transactionstmt -opt_transaction -transaction_mode_item -transaction_mode_list -transaction_mode_list_or_empty -opt_transaction_chain -viewstmt -opt_check_option -loadstmt -createdbstmt -createdb_opt_list -createdb_opt_items -createdb_opt_item -createdb_opt_name -opt_equal -alterdatabasestmt -alterdatabasesetstmt -dropdbstmt -drop_option_list -drop_option -altercollationstmt -altersystemstmt -createdomainstmt -alterdomainstmt -opt_as -altertsdictionarystmt -altertsconfigurationstmt -any_with -createconversionstmt -clusterstmt -cluster_index_specification -vacuumstmt -analyzestmt -vac_analyze_option_list -analyze_keyword -vac_analyze_option_elem -vac_analyze_option_name -vac_analyze_option_arg -opt_analyze -opt_verbose -opt_full -opt_freeze -opt_name_list -vacuum_relation -vacuum_relation_list -opt_vacuum_relation_list -explainstmt -explainablestmt -explain_option_list -explain_option_elem -explain_option_name -explain_option_arg -preparestmt -prep_type_clause -preparablestmt -executestmt -execute_param_clause -deallocatestmt -insertstmt -insert_target -insert_rest -override_kind -insert_column_list -insert_column_item -opt_on_conflict -opt_conf_expr -returning_clause -mergestmt -merge_insert_clause -merge_update_clause -merge_delete_clause -deletestmt -using_clause -lockstmt -opt_lock -lock_type -opt_nowait -opt_nowait_or_skip -updatestmt -set_clause_list -set_clause -set_target -set_target_list -declarecursorstmt -cursor_name -cursor_options -opt_hold -selectstmt -select_with_parens -select_no_parens -select_clause -simple_select_intersect -simple_select_start -simple_select_pramary -with_clause -cte_list -common_table_expr -opt_materialized -into_clause -opt_strict -opttempTableName -opt_table -all_or_distinct -distinct_clause -all_clause -opt_sort_clause -sort_clause -sortby_list -sortby -select_limit -opt_select_limit -limit_clause -offset_clause -select_limit_value -select_offset_value -select_fetch_first_value -i_or_f_const -row_or_rows -first_or_next -group_clause -group_by_list -group_by_item -empty_grouping_set -rollup_clause -cube_clause -grouping_sets_clause -having_clause -for_locking_clause -opt_for_locking_clause -for_locking_items -for_locking_item -for_locking_strength -locked_rels_list -values_clause -from_clause -from_list -non_ansi_join -table_ref -alias_clause -opt_alias_clause -table_alias_clause -func_alias_clause -join_type -join_qual -relation_expr -relation_expr_list -relation_expr_opt_alias -tablesample_clause -opt_repeatable_clause -func_table -rowsfrom_item -rowsfrom_list -opt_col_def_list -opt_ordinality -where_clause -where_or_current_clause -opttablefuncelementlist -tablefuncelementlist -tablefuncelement -xmltable -xmltable_column_list -xmltable_column_el -xmltable_column_option_list -xmltable_column_option_el -xml_namespace_list -xml_namespace_el -typename -opt_array_bounds -simpletypename -consttypename -generictype -opt_type_modifiers +optionalInstead +notifyStatement +notifyPayload +listenStatement +unlistenStatement +transactionStatement +optionalTransaction +transactionModeItem +transactionModeList +optionalTransactionChain +viewStatement +optionalCheckOption +loadStatement +createDatabaseStatement +createDatabaseOptionList +createDatabaseOptionItem +createDatabaseOptionName +alterDatabaseStatement +alterDatabaseSetStatement +dropDatabaseStatement +alterCollationStatement +alterSystemStatement +createDomainStatement +alterDomainStatement +optionalAs +altertsDictionaryStatement +altertsConfigurationStatement +createConversionStatement +clusterStatement +clusterIndexSpecification +vacuumStatement +analyzeStatement +vacuumAnalyzeOptionList +analyzeKeyword +vacuumAnalyzeOptionElement +vacuumAnalyzeOptionName +vacuumAnalyzeOptionArgument +optionalVerbose +optionalNameList +vacuumRelation +optionalVacuumRelationList +explainStatement +explainableStatement +explainOptionElement +explainOptionName +explainOptionArgument +prepareStatement +prepareTypeClause +preparableStatement +executeStatement +executeParameterClause +deallocateStatement +insertStatement +insertTarget +insertRest +overrideKind +insertColumnList +insertColumnItem +optionalOnConflict +optionalConflictExpr +returningClause +mergeStatement +mergeInsertClause +mergeUpdateClause +mergeDeleteClause +deleteStatement +usingClause +lockStatement +optionalLock +lockType +optionalNowait +optionalNowaitOrSkip +updateStatement +setClauseList +setClause +setTarget +declareCursorStatement +cursorName +optionalHold +selectStatement +selectWithParenthesis +selectWithoutParenthesis +selectClause +simpleSelectIntersect +simpleSelectStart +simpleSelectPramary +withClause +commonTableExpression +optionalMaterialized +intoClause +optionalTemporaryTableName +optionalTable +allOrDistinct +distinctClause +allClause +optionalSortClause +sortClause +sortByList +sortBy +selectLimit +optionalSelectLimit +limitClause +offsetClause +selectLimitValue +selectOffsetValue +selectFetchFirstValue +anyConst +rowOrRows +firstOrNext +groupClause +groupByList +groupByItem +havingClause +forLockingClause +forLockingItem +forLockingStrength +lockedRelationsList +valuesClause +fromClause +fromList +nonAnsiJoin +tableReference +aliasClause +optionalAliasClause +tableAliasClause +functionAliasClause +joinType +joinQualifier +relationExpression +relationExpressionList +relationExpressionOptionalAlias +tableSampleClause +functionTable +rowsFromItem +optionalColumnDefinitionList +optionalOrdinality +whereClause +whereOrCurrentClause +optionalTableFunctionElementList +tableFunctionElementList +tableFunctionElement +xmlTable +xmlTableColumnElement +xmlTableColumnOptionList +xmlTableColumnOptionElement +xmlNamespaceList +xmlNamespaceElement +typeName +simpleTypeName +constTypeName +genericType +optionalTypeModifiers numeric -opt_float +optionalFloat bit -constbit -bitwithlength -bitwithoutlength +constBit +bitWithLength +bitWithoutLength character -constcharacter -character_c -opt_varying -constdatetime -constinterval -opt_timezone -opt_interval -interval_second -opt_escape -a_expr -a_expr_qual -a_expr_lessless -a_expr_or -a_expr_and -a_expr_between -a_expr_in -a_expr_unary_not -a_expr_isnull -a_expr_is_not -a_expr_compare -a_expr_like -a_expr_qual_op -a_expr_unary_qualop -a_expr_add -a_expr_mul -a_expr_caret -a_expr_unary_sign -a_expr_at_time_zone -a_expr_collate -a_expr_typecast -b_expr -c_expr -plsqlvariablename -func_application -func_expr -func_expr_windowless -func_expr_common_subexpr -xml_root_version -opt_xml_root_standalone -xml_attributes -xml_attribute_list -xml_attribute_el -document_or_content -xml_whitespace_option -xmlexists_argument -xml_passing_mech -within_group_clause -filter_clause -window_clause -window_definition_list -window_definition -over_clause -window_specification -opt_existing_window_name -opt_partition_clause -opt_frame_clause -frame_extent -frame_bound -opt_window_exclusion_clause +constCharacter +characterChar +optionalVarying +constDateTime +constInterval +optionalTimezone +optionalInterval +intervalSecond +optionalEscape +expression1 +expression1Qualifier +expression1LessLess +expression1Or +expression1And +expression1Between +expression1In +expression1UnaryNot +expression1IsNull +expression1IsNot +expression1Compare +expression1Like +expression1qualifierOperator +expression1UnaryQualifierOperator +expression1Add +expressionMultiply +expression1Caret +expression1UnarySign +expression1AtTimeZone +expression1Collate +expression1Typecast +expression2 +expression3 +plsqlVariableName +functionApplication +functionExpression +functionExpressionWindowless +functionExpressionCommonSubexpr +xmlRootVersion +optionalXmlRootStandalone +xmlAttributes +xmlAttributeList +xmlAttributeElement +documentOrContent +xmlWhitespaceOption +xmlExistsArgument +xmlPassingMech +withinGroupClause +filterClause +windowClause +windowDefinitionList +windowDefinition +overClause +windowSpecification +optionalExistingWindowName +optionalPartitionClause +optionalFrameClause +frameExtent +frameBound +optionalWindowExclusionClause row -explicit_row -implicit_row -sub_type -all_op -mathop -qual_op -qual_all_op -subquery_Op -expr_list -func_arg_list -func_arg_expr -type_list -array_expr -array_expr_list -extract_list -extract_arg -unicode_normal_form -overlay_list -position_list -substr_list -trim_list -in_expr -case_expr -when_clause_list -when_clause -case_default -case_arg -columnref -indirection_el -opt_slice_bound +explicitRow +implicitRow +subType +allOperator +mathOperator +operatorQualifier +allOperatorQualifier +subqueryOperator +expressionList +functionArgumentList +functionArgumentExpression +typeList +arrayExpression +arrayExpressionList +extractList +extractArgument +unicodeNormalForm +overlayList +positionList +substrList +trimList +inExpression +caseExpression +whenClauseList +whenClause +caseDefault +caseArg +columnReference +indirectionElement indirection -opt_indirection -opt_target_list -target_list -target_el -qualified_name_list -qualified_name -name_list +optionalIndirection +optionalTargetList +targetList +targetElement +qualifiedNameList +qualifiedName +nameList name -attr_name -file_name -func_name -aexprconst +attributeName +fileName +functionName +aExpressionConst xconst bconst fconst iconst sconst -anysconst -opt_uescape -signediconst -roleid -rolespec -role_list -colid -table_alias -type_function_name -nonreservedword -collabel +anySconst +optionalUescape +signedIconst +roleId +roleSpecification +roleList +columnId +tableAlias +typeFunctionName +nonReservedWord +columnLabel identifier -plsqlidentifier -unreserved_keyword -col_name_keyword -type_func_name_keyword -reserved_keyword -builtin_function_name -pl_function -comp_options -comp_option +plsqlIdentifier +unreservedKeyword +columnNameKeyword +typeFunctionNameKeyword +reservedKeyword +builtinFunctionName +plsqlFunction +computeOptions +computeOption sharp -option_value -opt_semi -pl_block -decl_sect -decl_start -decl_stmts -label_decl -decl_stmt -decl_statement -opt_scrollable -decl_cursor_query -decl_cursor_args -decl_cursor_arglist -decl_cursor_arg -decl_is_for -decl_aliasitem -decl_varname -decl_const -decl_datatype -decl_collate -decl_notnull -decl_defval -decl_defkey -assign_operator -proc_sect -proc_stmt -stmt_perform -stmt_call -opt_expr_list -stmt_assign -stmt_getdiag -getdiag_area_opt -getdiag_list -getdiag_list_item -getdiag_item -getdiag_target -assign_var -stmt_if -stmt_elsifs -stmt_else -stmt_case -opt_expr_until_when -case_when_list -case_when -opt_case_else -stmt_loop -stmt_while -stmt_for -for_control -opt_for_using_expression -opt_cursor_parameters -opt_reverse -opt_by_expression -for_variable -stmt_foreach_a -foreach_slice -stmt_exit -exit_type -stmt_return -opt_return_result -stmt_raise -opt_stmt_raise_level -opt_raise_list -opt_raise_using -opt_raise_using_elem -opt_raise_using_elem_list -stmt_assert -opt_stmt_assert_message -loop_body -stmt_execsql -stmt_dynexecute -opt_execute_using -opt_execute_using_list -opt_execute_into -stmt_open -opt_open_bound_list_item -opt_open_bound_list -opt_open_using -opt_scroll_option -opt_scroll_option_no -stmt_fetch -into_target -opt_cursor_from -opt_fetch_direction -stmt_move -stmt_close -stmt_null -stmt_commit -stmt_rollback -plsql_opt_transaction_chain -stmt_set -cursor_variable -exception_sect -proc_exceptions -proc_exception -proc_conditions -proc_condition -opt_block_label -opt_loop_label -opt_label -opt_exitcond -any_identifier -plsql_unreserved_keyword -sql_expression -expr_until_then -expr_until_semi -expr_until_rightbracket -expr_until_loop -make_execsql_stmt -opt_returning_clause_into +optionValue +optionalSemi +plsqlBlock +declareSection +declareStart +declareStatements +labelDeclaration +declareStatement +declareStatement2 +optionalScrollable +declareCursorQuery +declareCursorArgs +declareCursorArglist +declareCursorArg +declareIsOrFor +declareAliasItem +declareVarname +declareConst +declareDatatype +declareCollate +declareNotNull +declareDefaultValue +declareDefaultKey +assignOperator +procedureSection +proceduralStatement +statementPerform +statementCall +optionalExpressionList +statementAssign +statementGetDiagram +optionalGetDiagramArea +getDiagramList +getDiagramListItem +getDiagramItem +getDiagramTarget +assignVariable +statementIf +statementElsifs +statementElse +statementCase +optionalExpressionUntilWhen +caseWhenList +caseWhen +optionalCaseElse +statementLoop +statementWhile +statementFor +forControl +optionalForUsingExpression +optionalCursorParameters +optionalReverse +optionalByExpression +forVariable +statementForeachA +foreachSlice +statementExit +exitType +statementReturn +optionalReturnResult +statementRaise +optionalStatementRaiseLevel +optionalRaiseList +optionalRaiseUsing +optionalRaiseUsingElement +statementAssert +optionalStatementAssertMessage +loopBody +statementExecSql +statementDynExecute +optionalExecuteUsing +optionalExecuteUsingList +optionalExecuteInto +statementOpen +optionalOpenBoundListItem +statementFetch +intoTarget +optionalCursorFrom +optionalFetchDirection +statementMove +statementClose +statementNull +statementCommit +statementRollback +plsqlOptionalTransactionChain +statementSet +cursorVariable +exceptionSection +procedureExceptions +procedureException +procedureConditions +procedureCondition +optionalBlockLabel +optionalLoopLabel +optionalLabel +optionalExitCondition +anyIdentifier +plsqlUnreservedKeyword +sqlExpression +expressionUntilThen +expressionUntilSemi +expressionUntilRightbracket +expressionUntilLoop +makeExecuteSqlStatement +optionalReturningClauseInto atn: -[4, 1, 679, 10701, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 2, 748, 7, 748, 2, 749, 7, 749, 2, 750, 7, 750, 2, 751, 7, 751, 2, 752, 7, 752, 2, 753, 7, 753, 2, 754, 7, 754, 2, 755, 7, 755, 2, 756, 7, 756, 2, 757, 7, 757, 2, 758, 7, 758, 2, 759, 7, 759, 2, 760, 7, 760, 2, 761, 7, 761, 2, 762, 7, 762, 2, 763, 7, 763, 2, 764, 7, 764, 2, 765, 7, 765, 2, 766, 7, 766, 2, 767, 7, 767, 2, 768, 7, 768, 2, 769, 7, 769, 2, 770, 7, 770, 2, 771, 7, 771, 2, 772, 7, 772, 2, 773, 7, 773, 2, 774, 7, 774, 2, 775, 7, 775, 2, 776, 7, 776, 2, 777, 7, 777, 2, 778, 7, 778, 2, 779, 7, 779, 2, 780, 7, 780, 2, 781, 7, 781, 2, 782, 7, 782, 2, 783, 7, 783, 2, 784, 7, 784, 2, 785, 7, 785, 2, 786, 7, 786, 2, 787, 7, 787, 2, 788, 7, 788, 2, 789, 7, 789, 2, 790, 7, 790, 2, 791, 7, 791, 2, 792, 7, 792, 2, 793, 7, 793, 2, 794, 7, 794, 2, 795, 7, 795, 2, 796, 7, 796, 2, 797, 7, 797, 2, 798, 7, 798, 2, 799, 7, 799, 2, 800, 7, 800, 2, 801, 7, 801, 2, 802, 7, 802, 2, 803, 7, 803, 2, 804, 7, 804, 2, 805, 7, 805, 2, 806, 7, 806, 2, 807, 7, 807, 2, 808, 7, 808, 2, 809, 7, 809, 2, 810, 7, 810, 1, 0, 3, 0, 1624, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1632, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1638, 8, 2, 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, 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, 1, 3, 1, 3, 1, 3, 3, 3, 1765, 8, 3, 1, 4, 1, 4, 3, 4, 1769, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 1782, 8, 7, 1, 8, 5, 8, 1785, 8, 8, 10, 8, 12, 8, 1788, 9, 8, 1, 9, 5, 9, 1791, 8, 9, 10, 9, 12, 9, 1794, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1799, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1814, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1826, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1844, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1849, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1859, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1883, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1890, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1896, 8, 21, 1, 22, 5, 22, 1899, 8, 22, 10, 22, 12, 22, 1902, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1910, 8, 23, 1, 24, 1, 24, 3, 24, 1914, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1926, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1957, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1962, 8, 28, 10, 28, 12, 28, 1965, 9, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1970, 8, 29, 10, 29, 12, 29, 1973, 9, 29, 1, 30, 1, 30, 3, 30, 1977, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1984, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1990, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 2007, 8, 33, 1, 34, 1, 34, 1, 34, 3, 34, 2012, 8, 34, 1, 35, 1, 35, 3, 35, 2016, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2029, 8, 37, 1, 38, 1, 38, 3, 38, 2033, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 2038, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 2043, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 2055, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 2064, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2077, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2082, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2093, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2104, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2109, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2120, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2131, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2140, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2150, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2165, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2177, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2182, 8, 47, 1, 48, 1, 48, 1, 48, 5, 48, 2187, 8, 48, 10, 48, 12, 48, 2190, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2200, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2458, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2465, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 2470, 8, 53, 1, 54, 1, 54, 1, 54, 3, 54, 2475, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 2480, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2488, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 2497, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 2502, 8, 59, 10, 59, 12, 59, 2505, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2514, 8, 60, 3, 60, 2516, 8, 60, 1, 61, 4, 61, 2519, 8, 61, 11, 61, 12, 61, 2520, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2527, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2533, 8, 62, 3, 62, 2535, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2563, 8, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 5, 65, 2571, 8, 65, 10, 65, 12, 65, 2574, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2584, 8, 67, 10, 67, 12, 67, 2587, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2598, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2612, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2617, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2641, 8, 70, 1, 71, 1, 71, 1, 72, 1, 72, 3, 72, 2647, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 2652, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2659, 8, 74, 1, 75, 5, 75, 2662, 8, 75, 10, 75, 12, 75, 2665, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2702, 8, 76, 1, 77, 1, 77, 3, 77, 2706, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2713, 8, 78, 1, 79, 1, 79, 3, 79, 2717, 8, 79, 1, 80, 1, 80, 1, 80, 5, 80, 2722, 8, 80, 10, 80, 12, 80, 2725, 9, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2738, 8, 82, 1, 83, 1, 83, 1, 83, 5, 83, 2743, 8, 83, 10, 83, 12, 83, 2746, 9, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2756, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2789, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2799, 8, 86, 1, 87, 1, 87, 3, 87, 2803, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2810, 8, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2815, 8, 89, 10, 89, 12, 89, 2818, 9, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2823, 8, 90, 10, 90, 12, 90, 2826, 9, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2831, 8, 91, 1, 92, 1, 92, 3, 92, 2835, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 3, 94, 2845, 8, 94, 1, 94, 1, 94, 1, 95, 5, 95, 2850, 8, 95, 10, 95, 12, 95, 2853, 9, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2863, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2895, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2903, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2908, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2915, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 5, 101, 2923, 8, 101, 10, 101, 12, 101, 2926, 9, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2935, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2955, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2970, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2995, 8, 104, 1, 105, 1, 105, 1, 105, 3, 105, 3000, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3007, 8, 106, 1, 107, 1, 107, 1, 107, 5, 107, 3012, 8, 107, 10, 107, 12, 107, 3015, 9, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3025, 8, 109, 1, 110, 1, 110, 1, 110, 3, 110, 3030, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 3035, 8, 111, 10, 111, 12, 111, 3038, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3048, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3056, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3067, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3083, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3091, 8, 118, 1, 119, 1, 119, 3, 119, 3095, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 5, 121, 3107, 8, 121, 10, 121, 12, 121, 3110, 9, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3126, 8, 122, 1, 123, 1, 123, 1, 123, 3, 123, 3131, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3138, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3147, 8, 125, 1, 125, 3, 125, 3150, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 3155, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3162, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3173, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3186, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3199, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3217, 8, 133, 1, 133, 3, 133, 3220, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3229, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3244, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3259, 8, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3268, 8, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 3275, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3282, 8, 141, 1, 142, 4, 142, 3285, 8, 142, 11, 142, 12, 142, 3286, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3317, 8, 143, 3, 143, 3319, 8, 143, 1, 144, 1, 144, 3, 144, 3323, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3331, 8, 145, 1, 146, 1, 146, 1, 146, 5, 146, 3336, 8, 146, 10, 146, 12, 146, 3339, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3352, 8, 147, 1, 148, 1, 148, 3, 148, 3356, 8, 148, 1, 149, 1, 149, 3, 149, 3360, 8, 149, 1, 150, 1, 150, 1, 150, 3, 150, 3365, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3371, 8, 151, 1, 152, 1, 152, 3, 152, 3375, 8, 152, 1, 153, 1, 153, 3, 153, 3379, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 3392, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3398, 8, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3407, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 5, 158, 3414, 8, 158, 10, 158, 12, 158, 3417, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3426, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 5, 161, 3435, 8, 161, 10, 161, 12, 161, 3438, 9, 161, 1, 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, 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, 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, 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, 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, 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, 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, 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, 3547, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3565, 8, 165, 1, 166, 4, 166, 3568, 8, 166, 11, 166, 12, 166, 3569, 1, 167, 1, 167, 3, 167, 3574, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3591, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3599, 8, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3604, 8, 170, 10, 170, 12, 170, 3607, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3617, 8, 172, 10, 172, 12, 172, 3620, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3629, 8, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3663, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 3668, 8, 178, 1, 179, 1, 179, 1, 179, 3, 179, 3673, 8, 179, 1, 180, 1, 180, 3, 180, 3677, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3685, 8, 181, 3, 181, 3687, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3745, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 3, 184, 3762, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3770, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 3793, 8, 186, 1, 187, 1, 187, 3, 187, 3797, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3817, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3854, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3863, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 3868, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 3873, 8, 195, 1, 196, 1, 196, 1, 196, 3, 196, 3878, 8, 196, 1, 197, 1, 197, 1, 197, 3, 197, 3883, 8, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 3936, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3942, 8, 202, 1, 203, 1, 203, 1, 203, 5, 203, 3947, 8, 203, 10, 203, 12, 203, 3950, 9, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 3959, 8, 204, 1, 205, 1, 205, 1, 205, 3, 205, 3964, 8, 205, 1, 206, 4, 206, 3967, 8, 206, 11, 206, 12, 206, 3968, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3987, 8, 211, 1, 212, 1, 212, 3, 212, 3991, 8, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4001, 8, 214, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4007, 8, 216, 1, 216, 1, 216, 5, 216, 4011, 8, 216, 10, 216, 12, 216, 4014, 9, 216, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4020, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 4025, 8, 218, 1, 219, 5, 219, 4028, 8, 219, 10, 219, 12, 219, 4031, 9, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 4044, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 4072, 8, 221, 1, 222, 1, 222, 1, 222, 5, 222, 4077, 8, 222, 10, 222, 12, 222, 4080, 9, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 4091, 8, 224, 10, 224, 12, 224, 4094, 9, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 4108, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 4225, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 5, 230, 4234, 8, 230, 10, 230, 12, 230, 4237, 9, 230, 1, 231, 1, 231, 1, 231, 3, 231, 4242, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 4250, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 5, 234, 4259, 8, 234, 10, 234, 12, 234, 4262, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 3, 236, 4270, 8, 236, 1, 237, 1, 237, 1, 237, 5, 237, 4275, 8, 237, 10, 237, 12, 237, 4278, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 4317, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4323, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 5, 241, 4342, 8, 241, 10, 241, 12, 241, 4345, 9, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 4372, 8, 242, 1, 243, 1, 243, 3, 243, 4376, 8, 243, 1, 244, 1, 244, 1, 244, 3, 244, 4381, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 4390, 8, 245, 1, 246, 1, 246, 3, 246, 4394, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 4421, 8, 248, 1, 249, 1, 249, 1, 249, 5, 249, 4426, 8, 249, 10, 249, 12, 249, 4429, 9, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4443, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 4463, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 4483, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 4576, 8, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4601, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4608, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4624, 8, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 5, 260, 4631, 8, 260, 10, 260, 12, 260, 4634, 9, 260, 1, 261, 1, 261, 3, 261, 4638, 8, 261, 1, 262, 1, 262, 4, 262, 4642, 8, 262, 11, 262, 12, 262, 4643, 1, 263, 1, 263, 1, 263, 5, 263, 4649, 8, 263, 10, 263, 12, 263, 4652, 9, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4665, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4814, 8, 266, 1, 267, 1, 267, 3, 267, 4818, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 4911, 8, 268, 1, 269, 1, 269, 1, 269, 3, 269, 4916, 8, 269, 1, 270, 1, 270, 3, 270, 4920, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 4926, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 4994, 8, 272, 1, 273, 1, 273, 1, 274, 1, 274, 3, 274, 5000, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 5029, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 5046, 8, 277, 1, 278, 1, 278, 1, 278, 5, 278, 5051, 8, 278, 10, 278, 12, 278, 5054, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 5065, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 5125, 8, 280, 1, 281, 1, 281, 1, 281, 5, 281, 5130, 8, 281, 10, 281, 12, 281, 5133, 9, 281, 1, 282, 1, 282, 1, 282, 3, 282, 5138, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5144, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5170, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5176, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 5182, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 5, 289, 5191, 8, 289, 10, 289, 12, 289, 5194, 9, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5205, 8, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 5234, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5273, 8, 293, 1, 294, 1, 294, 3, 294, 5277, 8, 294, 1, 295, 1, 295, 3, 295, 5281, 8, 295, 1, 296, 1, 296, 3, 296, 5285, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 5290, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 5295, 8, 298, 10, 298, 12, 298, 5298, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 5311, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5324, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5332, 8, 301, 1, 302, 1, 302, 1, 302, 5, 302, 5337, 8, 302, 10, 302, 12, 302, 5340, 9, 302, 1, 303, 1, 303, 1, 303, 3, 303, 5345, 8, 303, 1, 304, 1, 304, 3, 304, 5349, 8, 304, 1, 305, 1, 305, 1, 305, 3, 305, 5354, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 5361, 8, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 5375, 8, 307, 3, 307, 5377, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 3, 308, 5384, 8, 308, 1, 309, 1, 309, 3, 309, 5388, 8, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5395, 8, 310, 10, 310, 12, 310, 5398, 9, 310, 1, 311, 1, 311, 1, 311, 5, 311, 5403, 8, 311, 10, 311, 12, 311, 5406, 9, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 5414, 8, 312, 3, 312, 5416, 8, 312, 1, 313, 1, 313, 3, 313, 5420, 8, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 5, 314, 5427, 8, 314, 10, 314, 12, 314, 5430, 9, 314, 1, 315, 1, 315, 3, 315, 5434, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 5440, 8, 315, 1, 315, 1, 315, 1, 315, 3, 315, 5445, 8, 315, 1, 316, 1, 316, 3, 316, 5449, 8, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5454, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 5460, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 3, 319, 5466, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 5472, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 5478, 8, 319, 1, 320, 1, 320, 1, 320, 3, 320, 5483, 8, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 5498, 8, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 5, 323, 5505, 8, 323, 10, 323, 12, 323, 5508, 9, 323, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 5516, 8, 325, 10, 325, 12, 325, 5519, 9, 325, 1, 326, 4, 326, 5522, 8, 326, 11, 326, 12, 326, 5523, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 5563, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 3, 328, 5573, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 5580, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 5, 330, 5589, 8, 330, 10, 330, 12, 330, 5592, 9, 330, 1, 331, 1, 331, 1, 331, 3, 331, 5597, 8, 331, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 5, 333, 5605, 8, 333, 10, 333, 12, 333, 5608, 9, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 4, 335, 5617, 8, 335, 11, 335, 12, 335, 5618, 1, 336, 1, 336, 3, 336, 5623, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 5661, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 5675, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 5689, 8, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5713, 8, 340, 1, 341, 1, 341, 1, 341, 5, 341, 5718, 8, 341, 10, 341, 12, 341, 5721, 9, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 5728, 8, 342, 10, 342, 12, 342, 5731, 9, 342, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 345, 4, 345, 5740, 8, 345, 11, 345, 12, 345, 5741, 1, 346, 1, 346, 1, 346, 3, 346, 5747, 8, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 5783, 8, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 5790, 8, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 5805, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 5852, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 5889, 8, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 5, 357, 5898, 8, 357, 10, 357, 12, 357, 5901, 9, 357, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 5917, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 6387, 8, 360, 1, 361, 1, 361, 3, 361, 6391, 8, 361, 1, 362, 1, 362, 1, 362, 3, 362, 6396, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 6455, 8, 363, 1, 364, 1, 364, 3, 364, 6459, 8, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6678, 8, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 5, 367, 6691, 8, 367, 10, 367, 12, 367, 6694, 9, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 6704, 8, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 6711, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6904, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 6914, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 6922, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 6951, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 5, 377, 6965, 8, 377, 10, 377, 12, 377, 6968, 9, 377, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 3, 379, 7009, 8, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7023, 8, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7045, 8, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7050, 8, 383, 10, 383, 12, 383, 7053, 9, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7060, 8, 384, 1, 385, 1, 385, 3, 385, 7064, 8, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 3, 387, 7071, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 3, 389, 7080, 8, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7089, 8, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7141, 8, 392, 1, 393, 1, 393, 1, 393, 3, 393, 7146, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7158, 8, 394, 1, 395, 1, 395, 3, 395, 7162, 8, 395, 1, 395, 5, 395, 7165, 8, 395, 10, 395, 12, 395, 7168, 9, 395, 1, 396, 1, 396, 3, 396, 7172, 8, 396, 1, 397, 1, 397, 3, 397, 7176, 8, 397, 1, 397, 1, 397, 3, 397, 7180, 8, 397, 1, 398, 1, 398, 1, 398, 3, 398, 7185, 8, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7201, 8, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 3, 399, 7209, 8, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7214, 8, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 3, 402, 7227, 8, 402, 1, 403, 4, 403, 7230, 8, 403, 11, 403, 12, 403, 7231, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7239, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7249, 8, 405, 1, 406, 1, 406, 3, 406, 7253, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7264, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7275, 8, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7283, 8, 409, 1, 410, 1, 410, 1, 410, 5, 410, 7288, 8, 410, 10, 410, 12, 410, 7291, 9, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7329, 8, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7337, 8, 415, 1, 416, 1, 416, 3, 416, 7341, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7422, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 3, 421, 7450, 8, 421, 1, 422, 1, 422, 1, 422, 3, 422, 7455, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7470, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7482, 8, 424, 1, 425, 1, 425, 1, 425, 5, 425, 7487, 8, 425, 10, 425, 12, 425, 7490, 9, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 7499, 8, 428, 1, 429, 1, 429, 1, 429, 3, 429, 7504, 8, 429, 1, 430, 1, 430, 3, 430, 7508, 8, 430, 1, 431, 1, 431, 3, 431, 7512, 8, 431, 1, 432, 1, 432, 3, 432, 7516, 8, 432, 1, 433, 1, 433, 3, 433, 7520, 8, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 7527, 8, 434, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 5, 436, 7535, 8, 436, 10, 436, 12, 436, 7538, 9, 436, 1, 437, 1, 437, 3, 437, 7542, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 7560, 8, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 7571, 8, 439, 1, 440, 1, 440, 1, 440, 5, 440, 7576, 8, 440, 10, 440, 12, 440, 7579, 9, 440, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 7586, 8, 442, 1, 443, 1, 443, 1, 443, 3, 443, 7591, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 7604, 8, 445, 1, 446, 1, 446, 1, 446, 1, 446, 3, 446, 7610, 8, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 7639, 8, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 7646, 8, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 7658, 8, 449, 1, 450, 3, 450, 7661, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 3, 451, 7673, 8, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 7688, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 7694, 8, 452, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 5, 454, 7701, 8, 454, 10, 454, 12, 454, 7704, 9, 454, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 7719, 8, 456, 1, 456, 3, 456, 7722, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 7733, 8, 457, 1, 458, 1, 458, 1, 458, 3, 458, 7738, 8, 458, 1, 459, 1, 459, 3, 459, 7742, 8, 459, 1, 459, 1, 459, 3, 459, 7746, 8, 459, 1, 459, 1, 459, 1, 459, 3, 459, 7751, 8, 459, 1, 459, 3, 459, 7754, 8, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 7760, 8, 459, 1, 459, 1, 459, 3, 459, 7764, 8, 459, 3, 459, 7766, 8, 459, 1, 459, 3, 459, 7769, 8, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 7776, 8, 460, 1, 460, 3, 460, 7779, 8, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 7786, 8, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 3, 461, 7794, 8, 461, 1, 461, 3, 461, 7797, 8, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 3, 462, 7806, 8, 462, 1, 462, 1, 462, 1, 463, 3, 463, 7811, 8, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 3, 464, 7823, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 3, 466, 7836, 8, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 3, 467, 7847, 8, 467, 1, 467, 3, 467, 7850, 8, 467, 1, 468, 1, 468, 3, 468, 7854, 8, 468, 1, 469, 1, 469, 1, 469, 1, 469, 3, 469, 7860, 8, 469, 1, 470, 3, 470, 7863, 8, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 5, 471, 7876, 8, 471, 10, 471, 12, 471, 7879, 9, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 3, 472, 7891, 8, 472, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 5, 474, 7899, 8, 474, 10, 474, 12, 474, 7902, 9, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 5, 477, 7919, 8, 477, 10, 477, 12, 477, 7922, 9, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 3, 478, 7929, 8, 478, 1, 479, 1, 479, 3, 479, 7933, 8, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 3, 480, 7943, 8, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 7953, 8, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 7964, 8, 481, 3, 481, 7966, 8, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 5, 482, 7973, 8, 482, 10, 482, 12, 482, 7976, 9, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 5, 483, 7983, 8, 483, 10, 483, 12, 483, 7986, 9, 483, 1, 484, 1, 484, 3, 484, 7990, 8, 484, 1, 484, 1, 484, 1, 484, 3, 484, 7995, 8, 484, 1, 484, 1, 484, 1, 484, 3, 484, 8000, 8, 484, 1, 484, 3, 484, 8003, 8, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 3, 485, 8017, 8, 485, 1, 486, 1, 486, 3, 486, 8021, 8, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 5, 487, 8028, 8, 487, 10, 487, 12, 487, 8031, 9, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 3, 489, 8045, 8, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 3, 490, 8052, 8, 490, 1, 491, 1, 491, 3, 491, 8056, 8, 491, 1, 492, 3, 492, 8059, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8072, 8, 492, 1, 493, 1, 493, 3, 493, 8076, 8, 493, 1, 494, 1, 494, 1, 494, 3, 494, 8081, 8, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 3, 495, 8089, 8, 495, 1, 496, 1, 496, 1, 497, 1, 497, 3, 497, 8095, 8, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 5, 499, 8104, 8, 499, 10, 499, 12, 499, 8107, 9, 499, 1, 500, 1, 500, 1, 500, 1, 500, 3, 500, 8113, 8, 500, 1, 500, 1, 500, 1, 501, 1, 501, 3, 501, 8119, 8, 501, 1, 501, 1, 501, 3, 501, 8123, 8, 501, 3, 501, 8125, 8, 501, 1, 502, 1, 502, 3, 502, 8129, 8, 502, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8135, 8, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8144, 8, 503, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8150, 8, 503, 3, 503, 8152, 8, 503, 3, 503, 8154, 8, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 3, 504, 8161, 8, 504, 1, 505, 1, 505, 3, 505, 8165, 8, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 3, 507, 8174, 8, 507, 1, 508, 1, 508, 3, 508, 8178, 8, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 1, 511, 3, 511, 8188, 8, 511, 1, 512, 1, 512, 1, 512, 5, 512, 8193, 8, 512, 10, 512, 12, 512, 8196, 9, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 8203, 8, 513, 1, 514, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 518, 1, 518, 1, 518, 3, 518, 8227, 8, 518, 1, 519, 1, 519, 1, 519, 1, 519, 3, 519, 8233, 8, 519, 1, 520, 1, 520, 3, 520, 8237, 8, 520, 1, 521, 4, 521, 8240, 8, 521, 11, 521, 12, 521, 8241, 1, 522, 1, 522, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 3, 523, 8251, 8, 523, 1, 523, 1, 523, 3, 523, 8255, 8, 523, 1, 523, 3, 523, 8258, 8, 523, 1, 524, 1, 524, 1, 524, 3, 524, 8263, 8, 524, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 1, 525, 5, 525, 8274, 8, 525, 10, 525, 12, 525, 8277, 9, 525, 1, 526, 1, 526, 1, 526, 3, 526, 8282, 8, 526, 1, 527, 1, 527, 1, 527, 1, 527, 5, 527, 8288, 8, 527, 10, 527, 12, 527, 8291, 9, 527, 3, 527, 8293, 8, 527, 1, 528, 1, 528, 1, 528, 4, 528, 8298, 8, 528, 11, 528, 12, 528, 8299, 1, 529, 1, 529, 1, 529, 3, 529, 8305, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8326, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8335, 8, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8340, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8346, 8, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8351, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8358, 8, 529, 1, 529, 1, 529, 1, 529, 3, 529, 8363, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 5, 529, 8369, 8, 529, 10, 529, 12, 529, 8372, 9, 529, 1, 530, 3, 530, 8375, 8, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 3, 530, 8382, 8, 530, 1, 531, 1, 531, 3, 531, 8386, 8, 531, 1, 532, 3, 532, 8389, 8, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 3, 532, 8396, 8, 532, 1, 533, 1, 533, 1, 533, 3, 533, 8401, 8, 533, 1, 533, 3, 533, 8404, 8, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 8411, 8, 533, 1, 534, 1, 534, 3, 534, 8415, 8, 534, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, 535, 3, 535, 8424, 8, 535, 1, 536, 1, 536, 3, 536, 8428, 8, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 1, 536, 3, 536, 8436, 8, 536, 3, 536, 8438, 8, 536, 1, 537, 1, 537, 1, 537, 5, 537, 8443, 8, 537, 10, 537, 12, 537, 8446, 9, 537, 1, 538, 1, 538, 3, 538, 8450, 8, 538, 1, 538, 3, 538, 8453, 8, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 3, 540, 8468, 8, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 3, 541, 8480, 8, 541, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 5, 543, 8488, 8, 543, 10, 543, 12, 543, 8491, 9, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 8499, 8, 544, 1, 545, 1, 545, 1, 545, 3, 545, 8504, 8, 545, 1, 546, 1, 546, 1, 546, 3, 546, 8509, 8, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 3, 547, 8516, 8, 547, 1, 547, 3, 547, 8519, 8, 547, 1, 548, 1, 548, 3, 548, 8523, 8, 548, 1, 549, 1, 549, 1, 549, 5, 549, 8528, 8, 549, 10, 549, 12, 549, 8531, 9, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 3, 551, 8554, 8, 551, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 5, 552, 8561, 8, 552, 10, 552, 12, 552, 8564, 9, 552, 1, 553, 1, 553, 1, 553, 3, 553, 8569, 8, 553, 1, 553, 1, 553, 3, 553, 8573, 8, 553, 1, 554, 4, 554, 8576, 8, 554, 11, 554, 12, 554, 8577, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 3, 555, 8588, 8, 555, 1, 556, 1, 556, 1, 556, 5, 556, 8593, 8, 556, 10, 556, 12, 556, 8596, 9, 556, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 3, 557, 8604, 8, 557, 1, 558, 3, 558, 8607, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 8616, 8, 558, 3, 558, 8618, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 8624, 8, 558, 1, 559, 1, 559, 3, 559, 8628, 8, 559, 1, 559, 5, 559, 8631, 8, 559, 10, 559, 12, 559, 8634, 9, 559, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 8647, 8, 560, 3, 560, 8649, 8, 560, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 8655, 8, 561, 1, 562, 1, 562, 1, 562, 1, 562, 3, 562, 8661, 8, 562, 1, 562, 3, 562, 8664, 8, 562, 1, 562, 1, 562, 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 3, 563, 8673, 8, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 3, 564, 8691, 8, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 3, 565, 8698, 8, 565, 1, 566, 1, 566, 3, 566, 8702, 8, 566, 1, 567, 1, 567, 3, 567, 8706, 8, 567, 1, 568, 1, 568, 1, 568, 1, 568, 1, 568, 1, 568, 1, 569, 1, 569, 1, 569, 1, 570, 1, 570, 1, 570, 1, 570, 1, 570, 3, 570, 8722, 8, 570, 1, 571, 1, 571, 1, 571, 1, 571, 1, 571, 3, 571, 8729, 8, 571, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 3, 572, 8737, 8, 572, 1, 573, 1, 573, 3, 573, 8741, 8, 573, 1, 574, 1, 574, 1, 574, 1, 574, 1, 574, 3, 574, 8748, 8, 574, 1, 574, 1, 574, 1, 575, 1, 575, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 3, 576, 8761, 8, 576, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 1, 577, 3, 577, 8777, 8, 577, 1, 577, 1, 577, 1, 577, 1, 577, 3, 577, 8783, 8, 577, 1, 577, 1, 577, 1, 577, 1, 577, 3, 577, 8789, 8, 577, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 3, 578, 8796, 8, 578, 1, 579, 1, 579, 1, 579, 3, 579, 8801, 8, 579, 1, 580, 1, 580, 1, 581, 1, 581, 3, 581, 8807, 8, 581, 1, 582, 1, 582, 1, 582, 5, 582, 8812, 8, 582, 10, 582, 12, 582, 8815, 9, 582, 1, 583, 1, 583, 1, 583, 5, 583, 8820, 8, 583, 10, 583, 12, 583, 8823, 9, 583, 1, 584, 1, 584, 1, 584, 5, 584, 8828, 8, 584, 10, 584, 12, 584, 8831, 9, 584, 1, 585, 1, 585, 3, 585, 8835, 8, 585, 1, 585, 1, 585, 3, 585, 8839, 8, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 8845, 8, 585, 1, 586, 1, 586, 3, 586, 8849, 8, 586, 1, 586, 1, 586, 3, 586, 8853, 8, 586, 1, 587, 3, 587, 8856, 8, 587, 1, 587, 1, 587, 1, 588, 1, 588, 3, 588, 8862, 8, 588, 1, 589, 1, 589, 1, 589, 3, 589, 8867, 8, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 8883, 8, 589, 1, 589, 3, 589, 8886, 8, 589, 3, 589, 8888, 8, 589, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 1, 590, 3, 590, 8900, 8, 590, 3, 590, 8902, 8, 590, 1, 591, 1, 591, 3, 591, 8906, 8, 591, 1, 591, 1, 591, 1, 591, 1, 591, 3, 591, 8912, 8, 591, 1, 591, 1, 591, 1, 591, 3, 591, 8917, 8, 591, 1, 592, 1, 592, 1, 592, 1, 592, 5, 592, 8923, 8, 592, 10, 592, 12, 592, 8926, 9, 592, 1, 593, 3, 593, 8929, 8, 593, 1, 593, 1, 593, 1, 594, 1, 594, 1, 594, 5, 594, 8936, 8, 594, 10, 594, 12, 594, 8939, 9, 594, 1, 595, 1, 595, 1, 595, 5, 595, 8944, 8, 595, 10, 595, 12, 595, 8947, 9, 595, 1, 596, 1, 596, 1, 596, 3, 596, 8952, 8, 596, 1, 597, 3, 597, 8955, 8, 597, 1, 597, 1, 597, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 3, 598, 8964, 8, 598, 1, 599, 1, 599, 1, 599, 3, 599, 8969, 8, 599, 1, 600, 1, 600, 1, 600, 5, 600, 8974, 8, 600, 10, 600, 12, 600, 8977, 9, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 8986, 8, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 9012, 8, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 9023, 8, 601, 5, 601, 9025, 8, 601, 10, 601, 12, 601, 9028, 9, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9035, 8, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9058, 8, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9066, 8, 602, 1, 603, 1, 603, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9076, 8, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9090, 8, 604, 1, 604, 1, 604, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 3, 605, 9100, 8, 605, 1, 606, 1, 606, 3, 606, 9104, 8, 606, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9118, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9125, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9132, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9139, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9164, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9193, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9232, 8, 607, 3, 607, 9234, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9262, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9283, 8, 607, 1, 608, 1, 608, 1, 608, 1, 608, 1, 608, 3, 608, 9290, 8, 608, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 3, 609, 9303, 8, 609, 1, 610, 1, 610, 1, 610, 1, 610, 1, 610, 1, 611, 1, 611, 1, 611, 5, 611, 9313, 8, 611, 10, 611, 12, 611, 9316, 9, 611, 1, 612, 1, 612, 1, 612, 3, 612, 9321, 8, 612, 1, 613, 1, 613, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9330, 8, 614, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9347, 8, 615, 1, 616, 1, 616, 1, 616, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 3, 617, 9359, 8, 617, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 3, 618, 9368, 8, 618, 1, 619, 1, 619, 1, 619, 3, 619, 9373, 8, 619, 1, 620, 1, 620, 1, 620, 5, 620, 9378, 8, 620, 10, 620, 12, 620, 9381, 9, 620, 1, 621, 1, 621, 1, 621, 1, 621, 1, 622, 1, 622, 1, 622, 3, 622, 9390, 8, 622, 1, 622, 3, 622, 9393, 8, 622, 1, 623, 1, 623, 1, 623, 1, 623, 1, 623, 1, 623, 1, 623, 1, 624, 1, 624, 3, 624, 9404, 8, 624, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9410, 8, 625, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9425, 8, 626, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9433, 8, 627, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9442, 8, 628, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 9451, 8, 629, 1, 629, 3, 629, 9454, 8, 629, 1, 630, 1, 630, 1, 630, 3, 630, 9459, 8, 630, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 3, 630, 9468, 8, 630, 1, 631, 1, 631, 1, 631, 3, 631, 9473, 8, 631, 1, 631, 1, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 633, 1, 633, 1, 634, 1, 634, 3, 634, 9487, 8, 634, 1, 635, 1, 635, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 3, 636, 9497, 8, 636, 1, 637, 1, 637, 1, 637, 1, 637, 1, 637, 1, 637, 3, 637, 9505, 8, 637, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 1, 638, 3, 638, 9519, 8, 638, 1, 639, 1, 639, 1, 639, 5, 639, 9524, 8, 639, 10, 639, 12, 639, 9527, 9, 639, 1, 640, 1, 640, 1, 640, 5, 640, 9532, 8, 640, 10, 640, 12, 640, 9535, 9, 640, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 3, 641, 9542, 8, 641, 1, 642, 1, 642, 1, 642, 5, 642, 9547, 8, 642, 10, 642, 12, 642, 9550, 9, 642, 1, 643, 1, 643, 1, 643, 3, 643, 9555, 8, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 5, 644, 9562, 8, 644, 10, 644, 12, 644, 9565, 9, 644, 1, 645, 1, 645, 1, 645, 1, 645, 1, 645, 3, 645, 9572, 8, 645, 1, 646, 1, 646, 1, 646, 1, 646, 1, 646, 1, 646, 1, 646, 1, 646, 3, 646, 9582, 8, 646, 1, 647, 1, 647, 1, 648, 1, 648, 1, 648, 1, 648, 1, 648, 1, 648, 1, 648, 3, 648, 9593, 8, 648, 1, 649, 1, 649, 1, 649, 1, 649, 1, 649, 3, 649, 9600, 8, 649, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 1, 650, 3, 650, 9629, 8, 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 3, 651, 9638, 8, 651, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 3, 652, 9645, 8, 652, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 654, 4, 654, 9654, 8, 654, 11, 654, 12, 654, 9655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 656, 1, 656, 1, 656, 3, 656, 9666, 8, 656, 1, 657, 1, 657, 3, 657, 9670, 8, 657, 1, 658, 1, 658, 3, 658, 9674, 8, 658, 1, 659, 1, 659, 1, 659, 3, 659, 9679, 8, 659, 1, 659, 1, 659, 1, 659, 1, 659, 1, 659, 1, 659, 3, 659, 9687, 8, 659, 1, 659, 1, 659, 3, 659, 9691, 8, 659, 1, 660, 1, 660, 3, 660, 9695, 8, 660, 1, 661, 4, 661, 9698, 8, 661, 11, 661, 12, 661, 9699, 1, 662, 5, 662, 9703, 8, 662, 10, 662, 12, 662, 9706, 9, 662, 1, 663, 1, 663, 3, 663, 9710, 8, 663, 1, 664, 1, 664, 1, 664, 5, 664, 9715, 8, 664, 10, 664, 12, 664, 9718, 9, 664, 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, 3, 665, 9726, 8, 665, 3, 665, 9728, 8, 665, 1, 666, 1, 666, 1, 666, 5, 666, 9733, 8, 666, 10, 666, 12, 666, 9736, 9, 666, 1, 667, 1, 667, 3, 667, 9740, 8, 667, 1, 668, 1, 668, 1, 668, 5, 668, 9745, 8, 668, 10, 668, 12, 668, 9748, 9, 668, 1, 669, 1, 669, 1, 670, 1, 670, 1, 671, 1, 671, 1, 672, 1, 672, 1, 672, 1, 672, 1, 672, 1, 672, 1, 672, 3, 672, 9763, 8, 672, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 3, 673, 9778, 8, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 3, 673, 9792, 8, 673, 1, 673, 1, 673, 1, 673, 3, 673, 9797, 8, 673, 1, 674, 1, 674, 1, 675, 1, 675, 1, 676, 1, 676, 1, 677, 1, 677, 1, 678, 1, 678, 1, 678, 1, 679, 1, 679, 1, 679, 1, 679, 5, 679, 9814, 8, 679, 10, 679, 12, 679, 9817, 9, 679, 1, 679, 1, 679, 3, 679, 9821, 8, 679, 1, 680, 1, 680, 1, 680, 3, 680, 9826, 8, 680, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 3, 681, 9833, 8, 681, 1, 682, 1, 682, 1, 683, 1, 683, 1, 683, 3, 683, 9840, 8, 683, 1, 684, 1, 684, 1, 684, 5, 684, 9845, 8, 684, 10, 684, 12, 684, 9848, 9, 684, 1, 685, 1, 685, 1, 685, 1, 685, 1, 685, 1, 685, 3, 685, 9856, 8, 685, 1, 686, 1, 686, 1, 686, 1, 686, 3, 686, 9862, 8, 686, 1, 687, 1, 687, 1, 687, 1, 687, 3, 687, 9868, 8, 687, 1, 688, 1, 688, 1, 688, 1, 688, 3, 688, 9874, 8, 688, 1, 689, 1, 689, 1, 689, 1, 689, 1, 689, 1, 689, 3, 689, 9882, 8, 689, 1, 690, 1, 690, 1, 690, 1, 690, 1, 690, 1, 690, 1, 690, 3, 690, 9891, 8, 690, 1, 691, 1, 691, 1, 692, 1, 692, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 3, 693, 9949, 8, 693, 1, 694, 1, 694, 1, 695, 1, 695, 1, 696, 1, 696, 1, 697, 1, 697, 1, 697, 1, 697, 1, 698, 5, 698, 9962, 8, 698, 10, 698, 12, 698, 9965, 9, 698, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 3, 699, 9987, 8, 699, 1, 700, 1, 700, 1, 701, 1, 701, 1, 701, 1, 701, 3, 701, 9995, 8, 701, 1, 702, 1, 702, 3, 702, 9999, 8, 702, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 704, 1, 704, 1, 704, 3, 704, 10011, 8, 704, 3, 704, 10013, 8, 704, 1, 705, 1, 705, 1, 706, 4, 706, 10018, 8, 706, 11, 706, 12, 706, 10019, 1, 707, 1, 707, 1, 707, 1, 707, 1, 708, 1, 708, 1, 708, 3, 708, 10029, 8, 708, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 3, 709, 10047, 8, 709, 1, 709, 1, 709, 1, 710, 1, 710, 1, 710, 1, 710, 3, 710, 10055, 8, 710, 1, 711, 1, 711, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 3, 712, 10064, 8, 712, 1, 713, 1, 713, 1, 713, 5, 713, 10069, 8, 713, 10, 713, 12, 713, 10072, 9, 713, 1, 714, 1, 714, 1, 714, 1, 715, 1, 715, 1, 716, 1, 716, 3, 716, 10081, 8, 716, 1, 717, 1, 717, 1, 718, 1, 718, 3, 718, 10087, 8, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 720, 3, 720, 10094, 8, 720, 1, 721, 1, 721, 1, 721, 3, 721, 10099, 8, 721, 1, 722, 1, 722, 1, 722, 1, 722, 3, 722, 10105, 8, 722, 1, 723, 1, 723, 3, 723, 10109, 8, 723, 1, 724, 1, 724, 1, 725, 5, 725, 10114, 8, 725, 10, 725, 12, 725, 10117, 9, 725, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 3, 726, 10146, 8, 726, 1, 727, 1, 727, 1, 727, 1, 727, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 3, 728, 10166, 8, 728, 1, 729, 1, 729, 3, 729, 10170, 8, 729, 1, 730, 1, 730, 1, 730, 1, 730, 1, 730, 1, 731, 1, 731, 1, 731, 1, 731, 1, 731, 1, 731, 1, 732, 1, 732, 1, 732, 3, 732, 10186, 8, 732, 1, 733, 1, 733, 1, 733, 5, 733, 10191, 8, 733, 10, 733, 12, 733, 10194, 9, 733, 1, 734, 1, 734, 1, 734, 1, 734, 1, 735, 1, 735, 1, 736, 1, 736, 1, 737, 1, 737, 3, 737, 10206, 8, 737, 1, 737, 1, 737, 1, 737, 1, 737, 5, 737, 10212, 8, 737, 10, 737, 12, 737, 10215, 9, 737, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 739, 1, 739, 1, 739, 1, 739, 1, 739, 5, 739, 10232, 8, 739, 10, 739, 12, 739, 10235, 9, 739, 1, 740, 1, 740, 1, 740, 3, 740, 10240, 8, 740, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 742, 1, 742, 3, 742, 10252, 8, 742, 1, 743, 4, 743, 10255, 8, 743, 11, 743, 12, 743, 10256, 1, 744, 1, 744, 1, 744, 1, 744, 1, 744, 1, 745, 1, 745, 1, 745, 3, 745, 10267, 8, 745, 1, 746, 1, 746, 1, 746, 1, 747, 1, 747, 1, 747, 1, 747, 1, 747, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 1, 749, 3, 749, 10299, 8, 749, 1, 750, 1, 750, 1, 750, 3, 750, 10304, 8, 750, 1, 751, 1, 751, 1, 751, 1, 751, 1, 751, 5, 751, 10311, 8, 751, 10, 751, 12, 751, 10314, 9, 751, 1, 751, 1, 751, 3, 751, 10318, 8, 751, 1, 752, 1, 752, 3, 752, 10322, 8, 752, 1, 753, 1, 753, 1, 753, 3, 753, 10327, 8, 753, 1, 754, 1, 754, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 756, 1, 756, 1, 756, 3, 756, 10343, 8, 756, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 758, 1, 758, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 3, 759, 10361, 8, 759, 1, 759, 3, 759, 10364, 8, 759, 1, 759, 1, 759, 1, 760, 1, 760, 3, 760, 10370, 8, 760, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 1, 761, 3, 761, 10398, 8, 761, 1, 762, 1, 762, 1, 762, 1, 762, 1, 762, 1, 762, 1, 762, 1, 762, 3, 762, 10408, 8, 762, 1, 763, 1, 763, 1, 763, 4, 763, 10413, 8, 763, 11, 763, 12, 763, 10414, 3, 763, 10417, 8, 763, 1, 764, 1, 764, 1, 764, 3, 764, 10422, 8, 764, 1, 765, 1, 765, 1, 765, 1, 765, 1, 766, 1, 766, 1, 766, 5, 766, 10431, 8, 766, 10, 766, 12, 766, 10434, 9, 766, 1, 767, 1, 767, 1, 767, 1, 767, 1, 767, 1, 768, 1, 768, 1, 768, 3, 768, 10444, 8, 768, 1, 769, 1, 769, 1, 769, 1, 769, 1, 769, 1, 769, 1, 769, 1, 770, 1, 770, 1, 770, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 3, 771, 10465, 8, 771, 1, 771, 1, 771, 1, 772, 1, 772, 1, 772, 3, 772, 10472, 8, 772, 1, 773, 1, 773, 1, 773, 5, 773, 10477, 8, 773, 10, 773, 12, 773, 10480, 9, 773, 1, 774, 1, 774, 1, 774, 3, 774, 10485, 8, 774, 1, 774, 3, 774, 10488, 8, 774, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 3, 775, 10499, 8, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 775, 3, 775, 10506, 8, 775, 3, 775, 10508, 8, 775, 1, 775, 1, 775, 1, 776, 1, 776, 1, 776, 1, 776, 1, 776, 3, 776, 10517, 8, 776, 1, 777, 1, 777, 1, 777, 5, 777, 10522, 8, 777, 10, 777, 12, 777, 10525, 9, 777, 1, 778, 1, 778, 1, 778, 3, 778, 10530, 8, 778, 1, 779, 1, 779, 1, 779, 1, 779, 3, 779, 10536, 8, 779, 1, 780, 1, 780, 3, 780, 10540, 8, 780, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 781, 1, 782, 1, 782, 1, 783, 1, 783, 1, 783, 3, 783, 10555, 8, 783, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 3, 784, 10572, 8, 784, 3, 784, 10574, 8, 784, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 786, 1, 786, 1, 786, 1, 786, 1, 787, 1, 787, 1, 787, 1, 788, 1, 788, 1, 788, 1, 788, 1, 789, 1, 789, 1, 789, 1, 789, 1, 790, 1, 790, 3, 790, 10598, 8, 790, 1, 790, 1, 790, 3, 790, 10602, 8, 790, 1, 791, 1, 791, 1, 791, 1, 791, 1, 791, 1, 791, 1, 791, 1, 791, 1, 791, 3, 791, 10613, 8, 791, 1, 791, 3, 791, 10616, 8, 791, 1, 792, 1, 792, 3, 792, 10620, 8, 792, 1, 793, 1, 793, 1, 793, 3, 793, 10625, 8, 793, 1, 794, 4, 794, 10628, 8, 794, 11, 794, 12, 794, 10629, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 796, 1, 796, 1, 796, 5, 796, 10640, 8, 796, 10, 796, 12, 796, 10643, 9, 796, 1, 797, 1, 797, 1, 797, 3, 797, 10648, 8, 797, 1, 798, 1, 798, 3, 798, 10652, 8, 798, 1, 799, 1, 799, 3, 799, 10656, 8, 799, 1, 800, 1, 800, 3, 800, 10660, 8, 800, 1, 801, 1, 801, 1, 801, 3, 801, 10665, 8, 801, 1, 802, 1, 802, 3, 802, 10669, 8, 802, 1, 803, 1, 803, 1, 804, 1, 804, 3, 804, 10675, 8, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 805, 1, 805, 1, 806, 1, 806, 1, 807, 1, 807, 1, 808, 1, 808, 1, 809, 1, 809, 1, 809, 1, 810, 1, 810, 1, 810, 1, 810, 1, 810, 3, 810, 10699, 8, 810, 1, 810, 0, 1, 1202, 811, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 0, 69, 2, 0, 195, 195, 357, 357, 2, 0, 66, 66, 311, 311, 2, 0, 99, 99, 311, 311, 3, 0, 66, 66, 99, 99, 311, 311, 2, 0, 133, 133, 191, 191, 2, 0, 245, 245, 325, 325, 2, 0, 10, 10, 94, 94, 2, 0, 162, 162, 356, 356, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 281, 281, 322, 322, 345, 345, 347, 347, 2, 0, 64, 64, 94, 94, 2, 0, 345, 345, 347, 347, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 335, 335, 338, 338, 438, 438, 3, 0, 113, 113, 277, 277, 329, 329, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 252, 252, 255, 255, 5, 0, 30, 30, 88, 88, 182, 182, 232, 232, 362, 362, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 407, 407, 2, 0, 334, 334, 407, 407, 2, 0, 211, 211, 289, 289, 3, 0, 314, 314, 350, 350, 445, 445, 2, 0, 64, 64, 68, 68, 5, 0, 212, 212, 322, 322, 343, 343, 354, 354, 455, 456, 2, 0, 10, 10, 53, 53, 3, 0, 211, 211, 289, 289, 442, 442, 5, 0, 92, 92, 175, 175, 226, 226, 316, 316, 342, 342, 3, 0, 175, 175, 316, 316, 342, 342, 3, 0, 109, 109, 128, 128, 344, 344, 4, 0, 88, 88, 182, 182, 232, 232, 362, 362, 2, 0, 151, 151, 245, 245, 2, 0, 306, 306, 326, 326, 1, 0, 31, 32, 2, 0, 99, 99, 342, 342, 2, 0, 201, 201, 327, 327, 2, 0, 59, 59, 97, 97, 2, 0, 213, 213, 245, 245, 2, 0, 313, 313, 407, 407, 2, 0, 207, 207, 261, 261, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 353, 353, 477, 477, 2, 0, 384, 385, 399, 399, 1, 0, 384, 385, 1, 0, 411, 412, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 30, 30, 56, 56, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 297, 297, 450, 450, 2, 0, 208, 208, 282, 282, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 11, 0, 124, 124, 129, 249, 251, 252, 254, 303, 305, 379, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 5, 0, 106, 118, 120, 123, 125, 125, 127, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 5, 0, 304, 304, 418, 424, 504, 504, 513, 513, 521, 635, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 2, 0, 144, 144, 210, 210, 36, 0, 33, 33, 35, 35, 43, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 232, 232, 240, 240, 258, 258, 261, 262, 272, 272, 286, 286, 300, 300, 306, 306, 312, 312, 316, 317, 326, 326, 353, 353, 433, 434, 477, 477, 490, 502, 506, 512, 514, 518, 520, 520, 11570, 0, 1623, 1, 0, 0, 0, 2, 1627, 1, 0, 0, 0, 4, 1637, 1, 0, 0, 0, 6, 1764, 1, 0, 0, 0, 8, 1766, 1, 0, 0, 0, 10, 1770, 1, 0, 0, 0, 12, 1773, 1, 0, 0, 0, 14, 1781, 1, 0, 0, 0, 16, 1786, 1, 0, 0, 0, 18, 1792, 1, 0, 0, 0, 20, 1813, 1, 0, 0, 0, 22, 1825, 1, 0, 0, 0, 24, 1827, 1, 0, 0, 0, 26, 1833, 1, 0, 0, 0, 28, 1843, 1, 0, 0, 0, 30, 1845, 1, 0, 0, 0, 32, 1854, 1, 0, 0, 0, 34, 1862, 1, 0, 0, 0, 36, 1868, 1, 0, 0, 0, 38, 1875, 1, 0, 0, 0, 40, 1877, 1, 0, 0, 0, 42, 1895, 1, 0, 0, 0, 44, 1900, 1, 0, 0, 0, 46, 1909, 1, 0, 0, 0, 48, 1911, 1, 0, 0, 0, 50, 1925, 1, 0, 0, 0, 52, 1927, 1, 0, 0, 0, 54, 1956, 1, 0, 0, 0, 56, 1958, 1, 0, 0, 0, 58, 1966, 1, 0, 0, 0, 60, 1976, 1, 0, 0, 0, 62, 1983, 1, 0, 0, 0, 64, 1989, 1, 0, 0, 0, 66, 2006, 1, 0, 0, 0, 68, 2011, 1, 0, 0, 0, 70, 2015, 1, 0, 0, 0, 72, 2017, 1, 0, 0, 0, 74, 2028, 1, 0, 0, 0, 76, 2032, 1, 0, 0, 0, 78, 2037, 1, 0, 0, 0, 80, 2042, 1, 0, 0, 0, 82, 2044, 1, 0, 0, 0, 84, 2056, 1, 0, 0, 0, 86, 2063, 1, 0, 0, 0, 88, 2065, 1, 0, 0, 0, 90, 2067, 1, 0, 0, 0, 92, 2069, 1, 0, 0, 0, 94, 2181, 1, 0, 0, 0, 96, 2183, 1, 0, 0, 0, 98, 2199, 1, 0, 0, 0, 100, 2201, 1, 0, 0, 0, 102, 2457, 1, 0, 0, 0, 104, 2464, 1, 0, 0, 0, 106, 2469, 1, 0, 0, 0, 108, 2474, 1, 0, 0, 0, 110, 2479, 1, 0, 0, 0, 112, 2487, 1, 0, 0, 0, 114, 2489, 1, 0, 0, 0, 116, 2496, 1, 0, 0, 0, 118, 2498, 1, 0, 0, 0, 120, 2506, 1, 0, 0, 0, 122, 2518, 1, 0, 0, 0, 124, 2534, 1, 0, 0, 0, 126, 2562, 1, 0, 0, 0, 128, 2564, 1, 0, 0, 0, 130, 2567, 1, 0, 0, 0, 132, 2575, 1, 0, 0, 0, 134, 2580, 1, 0, 0, 0, 136, 2611, 1, 0, 0, 0, 138, 2613, 1, 0, 0, 0, 140, 2640, 1, 0, 0, 0, 142, 2642, 1, 0, 0, 0, 144, 2646, 1, 0, 0, 0, 146, 2651, 1, 0, 0, 0, 148, 2658, 1, 0, 0, 0, 150, 2663, 1, 0, 0, 0, 152, 2701, 1, 0, 0, 0, 154, 2705, 1, 0, 0, 0, 156, 2712, 1, 0, 0, 0, 158, 2716, 1, 0, 0, 0, 160, 2718, 1, 0, 0, 0, 162, 2726, 1, 0, 0, 0, 164, 2737, 1, 0, 0, 0, 166, 2739, 1, 0, 0, 0, 168, 2747, 1, 0, 0, 0, 170, 2749, 1, 0, 0, 0, 172, 2798, 1, 0, 0, 0, 174, 2802, 1, 0, 0, 0, 176, 2809, 1, 0, 0, 0, 178, 2811, 1, 0, 0, 0, 180, 2819, 1, 0, 0, 0, 182, 2830, 1, 0, 0, 0, 184, 2834, 1, 0, 0, 0, 186, 2836, 1, 0, 0, 0, 188, 2841, 1, 0, 0, 0, 190, 2851, 1, 0, 0, 0, 192, 2862, 1, 0, 0, 0, 194, 2902, 1, 0, 0, 0, 196, 2907, 1, 0, 0, 0, 198, 2914, 1, 0, 0, 0, 200, 2916, 1, 0, 0, 0, 202, 2924, 1, 0, 0, 0, 204, 2927, 1, 0, 0, 0, 206, 2934, 1, 0, 0, 0, 208, 2994, 1, 0, 0, 0, 210, 2999, 1, 0, 0, 0, 212, 3006, 1, 0, 0, 0, 214, 3008, 1, 0, 0, 0, 216, 3016, 1, 0, 0, 0, 218, 3024, 1, 0, 0, 0, 220, 3029, 1, 0, 0, 0, 222, 3031, 1, 0, 0, 0, 224, 3039, 1, 0, 0, 0, 226, 3055, 1, 0, 0, 0, 228, 3066, 1, 0, 0, 0, 230, 3068, 1, 0, 0, 0, 232, 3072, 1, 0, 0, 0, 234, 3082, 1, 0, 0, 0, 236, 3090, 1, 0, 0, 0, 238, 3094, 1, 0, 0, 0, 240, 3096, 1, 0, 0, 0, 242, 3103, 1, 0, 0, 0, 244, 3125, 1, 0, 0, 0, 246, 3130, 1, 0, 0, 0, 248, 3137, 1, 0, 0, 0, 250, 3149, 1, 0, 0, 0, 252, 3154, 1, 0, 0, 0, 254, 3161, 1, 0, 0, 0, 256, 3163, 1, 0, 0, 0, 258, 3167, 1, 0, 0, 0, 260, 3181, 1, 0, 0, 0, 262, 3192, 1, 0, 0, 0, 264, 3205, 1, 0, 0, 0, 266, 3219, 1, 0, 0, 0, 268, 3221, 1, 0, 0, 0, 270, 3235, 1, 0, 0, 0, 272, 3243, 1, 0, 0, 0, 274, 3245, 1, 0, 0, 0, 276, 3252, 1, 0, 0, 0, 278, 3263, 1, 0, 0, 0, 280, 3274, 1, 0, 0, 0, 282, 3281, 1, 0, 0, 0, 284, 3284, 1, 0, 0, 0, 286, 3318, 1, 0, 0, 0, 288, 3322, 1, 0, 0, 0, 290, 3330, 1, 0, 0, 0, 292, 3332, 1, 0, 0, 0, 294, 3340, 1, 0, 0, 0, 296, 3355, 1, 0, 0, 0, 298, 3357, 1, 0, 0, 0, 300, 3364, 1, 0, 0, 0, 302, 3370, 1, 0, 0, 0, 304, 3374, 1, 0, 0, 0, 306, 3378, 1, 0, 0, 0, 308, 3380, 1, 0, 0, 0, 310, 3391, 1, 0, 0, 0, 312, 3393, 1, 0, 0, 0, 314, 3401, 1, 0, 0, 0, 316, 3415, 1, 0, 0, 0, 318, 3425, 1, 0, 0, 0, 320, 3427, 1, 0, 0, 0, 322, 3436, 1, 0, 0, 0, 324, 3439, 1, 0, 0, 0, 326, 3546, 1, 0, 0, 0, 328, 3548, 1, 0, 0, 0, 330, 3564, 1, 0, 0, 0, 332, 3567, 1, 0, 0, 0, 334, 3573, 1, 0, 0, 0, 336, 3590, 1, 0, 0, 0, 338, 3598, 1, 0, 0, 0, 340, 3600, 1, 0, 0, 0, 342, 3608, 1, 0, 0, 0, 344, 3613, 1, 0, 0, 0, 346, 3628, 1, 0, 0, 0, 348, 3630, 1, 0, 0, 0, 350, 3633, 1, 0, 0, 0, 352, 3635, 1, 0, 0, 0, 354, 3662, 1, 0, 0, 0, 356, 3667, 1, 0, 0, 0, 358, 3669, 1, 0, 0, 0, 360, 3676, 1, 0, 0, 0, 362, 3678, 1, 0, 0, 0, 364, 3744, 1, 0, 0, 0, 366, 3746, 1, 0, 0, 0, 368, 3761, 1, 0, 0, 0, 370, 3769, 1, 0, 0, 0, 372, 3792, 1, 0, 0, 0, 374, 3796, 1, 0, 0, 0, 376, 3816, 1, 0, 0, 0, 378, 3818, 1, 0, 0, 0, 380, 3827, 1, 0, 0, 0, 382, 3838, 1, 0, 0, 0, 384, 3853, 1, 0, 0, 0, 386, 3862, 1, 0, 0, 0, 388, 3867, 1, 0, 0, 0, 390, 3872, 1, 0, 0, 0, 392, 3877, 1, 0, 0, 0, 394, 3882, 1, 0, 0, 0, 396, 3884, 1, 0, 0, 0, 398, 3886, 1, 0, 0, 0, 400, 3895, 1, 0, 0, 0, 402, 3935, 1, 0, 0, 0, 404, 3941, 1, 0, 0, 0, 406, 3943, 1, 0, 0, 0, 408, 3958, 1, 0, 0, 0, 410, 3963, 1, 0, 0, 0, 412, 3966, 1, 0, 0, 0, 414, 3970, 1, 0, 0, 0, 416, 3975, 1, 0, 0, 0, 418, 3977, 1, 0, 0, 0, 420, 3979, 1, 0, 0, 0, 422, 3986, 1, 0, 0, 0, 424, 3990, 1, 0, 0, 0, 426, 3992, 1, 0, 0, 0, 428, 4000, 1, 0, 0, 0, 430, 4002, 1, 0, 0, 0, 432, 4006, 1, 0, 0, 0, 434, 4019, 1, 0, 0, 0, 436, 4024, 1, 0, 0, 0, 438, 4029, 1, 0, 0, 0, 440, 4043, 1, 0, 0, 0, 442, 4071, 1, 0, 0, 0, 444, 4073, 1, 0, 0, 0, 446, 4081, 1, 0, 0, 0, 448, 4087, 1, 0, 0, 0, 450, 4095, 1, 0, 0, 0, 452, 4107, 1, 0, 0, 0, 454, 4109, 1, 0, 0, 0, 456, 4224, 1, 0, 0, 0, 458, 4226, 1, 0, 0, 0, 460, 4230, 1, 0, 0, 0, 462, 4238, 1, 0, 0, 0, 464, 4249, 1, 0, 0, 0, 466, 4251, 1, 0, 0, 0, 468, 4255, 1, 0, 0, 0, 470, 4263, 1, 0, 0, 0, 472, 4269, 1, 0, 0, 0, 474, 4271, 1, 0, 0, 0, 476, 4316, 1, 0, 0, 0, 478, 4322, 1, 0, 0, 0, 480, 4324, 1, 0, 0, 0, 482, 4338, 1, 0, 0, 0, 484, 4371, 1, 0, 0, 0, 486, 4375, 1, 0, 0, 0, 488, 4380, 1, 0, 0, 0, 490, 4389, 1, 0, 0, 0, 492, 4393, 1, 0, 0, 0, 494, 4395, 1, 0, 0, 0, 496, 4420, 1, 0, 0, 0, 498, 4422, 1, 0, 0, 0, 500, 4442, 1, 0, 0, 0, 502, 4462, 1, 0, 0, 0, 504, 4482, 1, 0, 0, 0, 506, 4484, 1, 0, 0, 0, 508, 4490, 1, 0, 0, 0, 510, 4575, 1, 0, 0, 0, 512, 4600, 1, 0, 0, 0, 514, 4607, 1, 0, 0, 0, 516, 4623, 1, 0, 0, 0, 518, 4625, 1, 0, 0, 0, 520, 4627, 1, 0, 0, 0, 522, 4635, 1, 0, 0, 0, 524, 4641, 1, 0, 0, 0, 526, 4645, 1, 0, 0, 0, 528, 4653, 1, 0, 0, 0, 530, 4664, 1, 0, 0, 0, 532, 4813, 1, 0, 0, 0, 534, 4817, 1, 0, 0, 0, 536, 4910, 1, 0, 0, 0, 538, 4915, 1, 0, 0, 0, 540, 4919, 1, 0, 0, 0, 542, 4925, 1, 0, 0, 0, 544, 4993, 1, 0, 0, 0, 546, 4995, 1, 0, 0, 0, 548, 4999, 1, 0, 0, 0, 550, 5001, 1, 0, 0, 0, 552, 5028, 1, 0, 0, 0, 554, 5045, 1, 0, 0, 0, 556, 5047, 1, 0, 0, 0, 558, 5064, 1, 0, 0, 0, 560, 5124, 1, 0, 0, 0, 562, 5126, 1, 0, 0, 0, 564, 5137, 1, 0, 0, 0, 566, 5143, 1, 0, 0, 0, 568, 5145, 1, 0, 0, 0, 570, 5169, 1, 0, 0, 0, 572, 5175, 1, 0, 0, 0, 574, 5181, 1, 0, 0, 0, 576, 5183, 1, 0, 0, 0, 578, 5192, 1, 0, 0, 0, 580, 5204, 1, 0, 0, 0, 582, 5233, 1, 0, 0, 0, 584, 5235, 1, 0, 0, 0, 586, 5272, 1, 0, 0, 0, 588, 5276, 1, 0, 0, 0, 590, 5280, 1, 0, 0, 0, 592, 5284, 1, 0, 0, 0, 594, 5289, 1, 0, 0, 0, 596, 5291, 1, 0, 0, 0, 598, 5310, 1, 0, 0, 0, 600, 5323, 1, 0, 0, 0, 602, 5331, 1, 0, 0, 0, 604, 5333, 1, 0, 0, 0, 606, 5344, 1, 0, 0, 0, 608, 5348, 1, 0, 0, 0, 610, 5353, 1, 0, 0, 0, 612, 5360, 1, 0, 0, 0, 614, 5362, 1, 0, 0, 0, 616, 5383, 1, 0, 0, 0, 618, 5385, 1, 0, 0, 0, 620, 5391, 1, 0, 0, 0, 622, 5399, 1, 0, 0, 0, 624, 5415, 1, 0, 0, 0, 626, 5417, 1, 0, 0, 0, 628, 5423, 1, 0, 0, 0, 630, 5444, 1, 0, 0, 0, 632, 5453, 1, 0, 0, 0, 634, 5459, 1, 0, 0, 0, 636, 5461, 1, 0, 0, 0, 638, 5477, 1, 0, 0, 0, 640, 5479, 1, 0, 0, 0, 642, 5484, 1, 0, 0, 0, 644, 5486, 1, 0, 0, 0, 646, 5501, 1, 0, 0, 0, 648, 5509, 1, 0, 0, 0, 650, 5512, 1, 0, 0, 0, 652, 5521, 1, 0, 0, 0, 654, 5562, 1, 0, 0, 0, 656, 5572, 1, 0, 0, 0, 658, 5579, 1, 0, 0, 0, 660, 5581, 1, 0, 0, 0, 662, 5596, 1, 0, 0, 0, 664, 5598, 1, 0, 0, 0, 666, 5601, 1, 0, 0, 0, 668, 5609, 1, 0, 0, 0, 670, 5616, 1, 0, 0, 0, 672, 5622, 1, 0, 0, 0, 674, 5660, 1, 0, 0, 0, 676, 5674, 1, 0, 0, 0, 678, 5688, 1, 0, 0, 0, 680, 5712, 1, 0, 0, 0, 682, 5719, 1, 0, 0, 0, 684, 5724, 1, 0, 0, 0, 686, 5732, 1, 0, 0, 0, 688, 5735, 1, 0, 0, 0, 690, 5739, 1, 0, 0, 0, 692, 5746, 1, 0, 0, 0, 694, 5782, 1, 0, 0, 0, 696, 5789, 1, 0, 0, 0, 698, 5791, 1, 0, 0, 0, 700, 5804, 1, 0, 0, 0, 702, 5806, 1, 0, 0, 0, 704, 5851, 1, 0, 0, 0, 706, 5853, 1, 0, 0, 0, 708, 5888, 1, 0, 0, 0, 710, 5890, 1, 0, 0, 0, 712, 5892, 1, 0, 0, 0, 714, 5894, 1, 0, 0, 0, 716, 5902, 1, 0, 0, 0, 718, 5916, 1, 0, 0, 0, 720, 6386, 1, 0, 0, 0, 722, 6390, 1, 0, 0, 0, 724, 6395, 1, 0, 0, 0, 726, 6454, 1, 0, 0, 0, 728, 6458, 1, 0, 0, 0, 730, 6677, 1, 0, 0, 0, 732, 6679, 1, 0, 0, 0, 734, 6687, 1, 0, 0, 0, 736, 6703, 1, 0, 0, 0, 738, 6710, 1, 0, 0, 0, 740, 6712, 1, 0, 0, 0, 742, 6903, 1, 0, 0, 0, 744, 6905, 1, 0, 0, 0, 746, 6913, 1, 0, 0, 0, 748, 6921, 1, 0, 0, 0, 750, 6950, 1, 0, 0, 0, 752, 6952, 1, 0, 0, 0, 754, 6961, 1, 0, 0, 0, 756, 6969, 1, 0, 0, 0, 758, 7008, 1, 0, 0, 0, 760, 7022, 1, 0, 0, 0, 762, 7024, 1, 0, 0, 0, 764, 7044, 1, 0, 0, 0, 766, 7046, 1, 0, 0, 0, 768, 7059, 1, 0, 0, 0, 770, 7063, 1, 0, 0, 0, 772, 7065, 1, 0, 0, 0, 774, 7070, 1, 0, 0, 0, 776, 7072, 1, 0, 0, 0, 778, 7079, 1, 0, 0, 0, 780, 7081, 1, 0, 0, 0, 782, 7088, 1, 0, 0, 0, 784, 7140, 1, 0, 0, 0, 786, 7145, 1, 0, 0, 0, 788, 7157, 1, 0, 0, 0, 790, 7159, 1, 0, 0, 0, 792, 7171, 1, 0, 0, 0, 794, 7179, 1, 0, 0, 0, 796, 7181, 1, 0, 0, 0, 798, 7213, 1, 0, 0, 0, 800, 7215, 1, 0, 0, 0, 802, 7218, 1, 0, 0, 0, 804, 7226, 1, 0, 0, 0, 806, 7229, 1, 0, 0, 0, 808, 7233, 1, 0, 0, 0, 810, 7248, 1, 0, 0, 0, 812, 7252, 1, 0, 0, 0, 814, 7254, 1, 0, 0, 0, 816, 7265, 1, 0, 0, 0, 818, 7270, 1, 0, 0, 0, 820, 7284, 1, 0, 0, 0, 822, 7292, 1, 0, 0, 0, 824, 7294, 1, 0, 0, 0, 826, 7300, 1, 0, 0, 0, 828, 7305, 1, 0, 0, 0, 830, 7312, 1, 0, 0, 0, 832, 7340, 1, 0, 0, 0, 834, 7342, 1, 0, 0, 0, 836, 7421, 1, 0, 0, 0, 838, 7423, 1, 0, 0, 0, 840, 7425, 1, 0, 0, 0, 842, 7449, 1, 0, 0, 0, 844, 7454, 1, 0, 0, 0, 846, 7469, 1, 0, 0, 0, 848, 7481, 1, 0, 0, 0, 850, 7483, 1, 0, 0, 0, 852, 7491, 1, 0, 0, 0, 854, 7493, 1, 0, 0, 0, 856, 7498, 1, 0, 0, 0, 858, 7503, 1, 0, 0, 0, 860, 7507, 1, 0, 0, 0, 862, 7511, 1, 0, 0, 0, 864, 7515, 1, 0, 0, 0, 866, 7519, 1, 0, 0, 0, 868, 7526, 1, 0, 0, 0, 870, 7528, 1, 0, 0, 0, 872, 7531, 1, 0, 0, 0, 874, 7541, 1, 0, 0, 0, 876, 7559, 1, 0, 0, 0, 878, 7570, 1, 0, 0, 0, 880, 7572, 1, 0, 0, 0, 882, 7580, 1, 0, 0, 0, 884, 7585, 1, 0, 0, 0, 886, 7590, 1, 0, 0, 0, 888, 7592, 1, 0, 0, 0, 890, 7603, 1, 0, 0, 0, 892, 7609, 1, 0, 0, 0, 894, 7638, 1, 0, 0, 0, 896, 7645, 1, 0, 0, 0, 898, 7657, 1, 0, 0, 0, 900, 7660, 1, 0, 0, 0, 902, 7669, 1, 0, 0, 0, 904, 7693, 1, 0, 0, 0, 906, 7695, 1, 0, 0, 0, 908, 7697, 1, 0, 0, 0, 910, 7705, 1, 0, 0, 0, 912, 7721, 1, 0, 0, 0, 914, 7732, 1, 0, 0, 0, 916, 7737, 1, 0, 0, 0, 918, 7739, 1, 0, 0, 0, 920, 7770, 1, 0, 0, 0, 922, 7789, 1, 0, 0, 0, 924, 7802, 1, 0, 0, 0, 926, 7810, 1, 0, 0, 0, 928, 7822, 1, 0, 0, 0, 930, 7824, 1, 0, 0, 0, 932, 7835, 1, 0, 0, 0, 934, 7849, 1, 0, 0, 0, 936, 7853, 1, 0, 0, 0, 938, 7859, 1, 0, 0, 0, 940, 7862, 1, 0, 0, 0, 942, 7872, 1, 0, 0, 0, 944, 7890, 1, 0, 0, 0, 946, 7892, 1, 0, 0, 0, 948, 7895, 1, 0, 0, 0, 950, 7903, 1, 0, 0, 0, 952, 7911, 1, 0, 0, 0, 954, 7920, 1, 0, 0, 0, 956, 7928, 1, 0, 0, 0, 958, 7932, 1, 0, 0, 0, 960, 7942, 1, 0, 0, 0, 962, 7965, 1, 0, 0, 0, 964, 7967, 1, 0, 0, 0, 966, 7977, 1, 0, 0, 0, 968, 8002, 1, 0, 0, 0, 970, 8016, 1, 0, 0, 0, 972, 8018, 1, 0, 0, 0, 974, 8024, 1, 0, 0, 0, 976, 8032, 1, 0, 0, 0, 978, 8044, 1, 0, 0, 0, 980, 8046, 1, 0, 0, 0, 982, 8055, 1, 0, 0, 0, 984, 8071, 1, 0, 0, 0, 986, 8075, 1, 0, 0, 0, 988, 8080, 1, 0, 0, 0, 990, 8082, 1, 0, 0, 0, 992, 8090, 1, 0, 0, 0, 994, 8094, 1, 0, 0, 0, 996, 8096, 1, 0, 0, 0, 998, 8100, 1, 0, 0, 0, 1000, 8108, 1, 0, 0, 0, 1002, 8124, 1, 0, 0, 0, 1004, 8128, 1, 0, 0, 0, 1006, 8153, 1, 0, 0, 0, 1008, 8155, 1, 0, 0, 0, 1010, 8164, 1, 0, 0, 0, 1012, 8166, 1, 0, 0, 0, 1014, 8173, 1, 0, 0, 0, 1016, 8177, 1, 0, 0, 0, 1018, 8179, 1, 0, 0, 0, 1020, 8181, 1, 0, 0, 0, 1022, 8187, 1, 0, 0, 0, 1024, 8189, 1, 0, 0, 0, 1026, 8202, 1, 0, 0, 0, 1028, 8204, 1, 0, 0, 0, 1030, 8207, 1, 0, 0, 0, 1032, 8212, 1, 0, 0, 0, 1034, 8217, 1, 0, 0, 0, 1036, 8226, 1, 0, 0, 0, 1038, 8232, 1, 0, 0, 0, 1040, 8236, 1, 0, 0, 0, 1042, 8239, 1, 0, 0, 0, 1044, 8243, 1, 0, 0, 0, 1046, 8247, 1, 0, 0, 0, 1048, 8262, 1, 0, 0, 0, 1050, 8264, 1, 0, 0, 0, 1052, 8281, 1, 0, 0, 0, 1054, 8292, 1, 0, 0, 0, 1056, 8294, 1, 0, 0, 0, 1058, 8350, 1, 0, 0, 0, 1060, 8374, 1, 0, 0, 0, 1062, 8385, 1, 0, 0, 0, 1064, 8388, 1, 0, 0, 0, 1066, 8410, 1, 0, 0, 0, 1068, 8412, 1, 0, 0, 0, 1070, 8423, 1, 0, 0, 0, 1072, 8437, 1, 0, 0, 0, 1074, 8439, 1, 0, 0, 0, 1076, 8447, 1, 0, 0, 0, 1078, 8454, 1, 0, 0, 0, 1080, 8467, 1, 0, 0, 0, 1082, 8479, 1, 0, 0, 0, 1084, 8481, 1, 0, 0, 0, 1086, 8484, 1, 0, 0, 0, 1088, 8498, 1, 0, 0, 0, 1090, 8503, 1, 0, 0, 0, 1092, 8508, 1, 0, 0, 0, 1094, 8518, 1, 0, 0, 0, 1096, 8522, 1, 0, 0, 0, 1098, 8524, 1, 0, 0, 0, 1100, 8532, 1, 0, 0, 0, 1102, 8536, 1, 0, 0, 0, 1104, 8557, 1, 0, 0, 0, 1106, 8565, 1, 0, 0, 0, 1108, 8575, 1, 0, 0, 0, 1110, 8587, 1, 0, 0, 0, 1112, 8589, 1, 0, 0, 0, 1114, 8603, 1, 0, 0, 0, 1116, 8623, 1, 0, 0, 0, 1118, 8632, 1, 0, 0, 0, 1120, 8648, 1, 0, 0, 0, 1122, 8654, 1, 0, 0, 0, 1124, 8660, 1, 0, 0, 0, 1126, 8672, 1, 0, 0, 0, 1128, 8690, 1, 0, 0, 0, 1130, 8697, 1, 0, 0, 0, 1132, 8701, 1, 0, 0, 0, 1134, 8705, 1, 0, 0, 0, 1136, 8707, 1, 0, 0, 0, 1138, 8713, 1, 0, 0, 0, 1140, 8716, 1, 0, 0, 0, 1142, 8723, 1, 0, 0, 0, 1144, 8736, 1, 0, 0, 0, 1146, 8740, 1, 0, 0, 0, 1148, 8742, 1, 0, 0, 0, 1150, 8751, 1, 0, 0, 0, 1152, 8760, 1, 0, 0, 0, 1154, 8788, 1, 0, 0, 0, 1156, 8790, 1, 0, 0, 0, 1158, 8800, 1, 0, 0, 0, 1160, 8802, 1, 0, 0, 0, 1162, 8804, 1, 0, 0, 0, 1164, 8808, 1, 0, 0, 0, 1166, 8816, 1, 0, 0, 0, 1168, 8824, 1, 0, 0, 0, 1170, 8832, 1, 0, 0, 0, 1172, 8846, 1, 0, 0, 0, 1174, 8855, 1, 0, 0, 0, 1176, 8859, 1, 0, 0, 0, 1178, 8863, 1, 0, 0, 0, 1180, 8889, 1, 0, 0, 0, 1182, 8903, 1, 0, 0, 0, 1184, 8918, 1, 0, 0, 0, 1186, 8928, 1, 0, 0, 0, 1188, 8932, 1, 0, 0, 0, 1190, 8940, 1, 0, 0, 0, 1192, 8948, 1, 0, 0, 0, 1194, 8954, 1, 0, 0, 0, 1196, 8958, 1, 0, 0, 0, 1198, 8965, 1, 0, 0, 0, 1200, 8970, 1, 0, 0, 0, 1202, 8985, 1, 0, 0, 0, 1204, 9065, 1, 0, 0, 0, 1206, 9067, 1, 0, 0, 0, 1208, 9069, 1, 0, 0, 0, 1210, 9099, 1, 0, 0, 0, 1212, 9103, 1, 0, 0, 0, 1214, 9282, 1, 0, 0, 0, 1216, 9289, 1, 0, 0, 0, 1218, 9302, 1, 0, 0, 0, 1220, 9304, 1, 0, 0, 0, 1222, 9309, 1, 0, 0, 0, 1224, 9317, 1, 0, 0, 0, 1226, 9322, 1, 0, 0, 0, 1228, 9329, 1, 0, 0, 0, 1230, 9346, 1, 0, 0, 0, 1232, 9348, 1, 0, 0, 0, 1234, 9358, 1, 0, 0, 0, 1236, 9367, 1, 0, 0, 0, 1238, 9372, 1, 0, 0, 0, 1240, 9374, 1, 0, 0, 0, 1242, 9382, 1, 0, 0, 0, 1244, 9392, 1, 0, 0, 0, 1246, 9394, 1, 0, 0, 0, 1248, 9403, 1, 0, 0, 0, 1250, 9409, 1, 0, 0, 0, 1252, 9424, 1, 0, 0, 0, 1254, 9432, 1, 0, 0, 0, 1256, 9441, 1, 0, 0, 0, 1258, 9453, 1, 0, 0, 0, 1260, 9467, 1, 0, 0, 0, 1262, 9469, 1, 0, 0, 0, 1264, 9476, 1, 0, 0, 0, 1266, 9482, 1, 0, 0, 0, 1268, 9486, 1, 0, 0, 0, 1270, 9488, 1, 0, 0, 0, 1272, 9496, 1, 0, 0, 0, 1274, 9504, 1, 0, 0, 0, 1276, 9518, 1, 0, 0, 0, 1278, 9520, 1, 0, 0, 0, 1280, 9528, 1, 0, 0, 0, 1282, 9541, 1, 0, 0, 0, 1284, 9543, 1, 0, 0, 0, 1286, 9551, 1, 0, 0, 0, 1288, 9558, 1, 0, 0, 0, 1290, 9571, 1, 0, 0, 0, 1292, 9581, 1, 0, 0, 0, 1294, 9583, 1, 0, 0, 0, 1296, 9585, 1, 0, 0, 0, 1298, 9599, 1, 0, 0, 0, 1300, 9628, 1, 0, 0, 0, 1302, 9637, 1, 0, 0, 0, 1304, 9644, 1, 0, 0, 0, 1306, 9646, 1, 0, 0, 0, 1308, 9653, 1, 0, 0, 0, 1310, 9657, 1, 0, 0, 0, 1312, 9665, 1, 0, 0, 0, 1314, 9669, 1, 0, 0, 0, 1316, 9671, 1, 0, 0, 0, 1318, 9690, 1, 0, 0, 0, 1320, 9694, 1, 0, 0, 0, 1322, 9697, 1, 0, 0, 0, 1324, 9704, 1, 0, 0, 0, 1326, 9709, 1, 0, 0, 0, 1328, 9711, 1, 0, 0, 0, 1330, 9727, 1, 0, 0, 0, 1332, 9729, 1, 0, 0, 0, 1334, 9737, 1, 0, 0, 0, 1336, 9741, 1, 0, 0, 0, 1338, 9749, 1, 0, 0, 0, 1340, 9751, 1, 0, 0, 0, 1342, 9753, 1, 0, 0, 0, 1344, 9762, 1, 0, 0, 0, 1346, 9796, 1, 0, 0, 0, 1348, 9798, 1, 0, 0, 0, 1350, 9800, 1, 0, 0, 0, 1352, 9802, 1, 0, 0, 0, 1354, 9804, 1, 0, 0, 0, 1356, 9806, 1, 0, 0, 0, 1358, 9820, 1, 0, 0, 0, 1360, 9825, 1, 0, 0, 0, 1362, 9832, 1, 0, 0, 0, 1364, 9834, 1, 0, 0, 0, 1366, 9839, 1, 0, 0, 0, 1368, 9841, 1, 0, 0, 0, 1370, 9855, 1, 0, 0, 0, 1372, 9861, 1, 0, 0, 0, 1374, 9867, 1, 0, 0, 0, 1376, 9873, 1, 0, 0, 0, 1378, 9881, 1, 0, 0, 0, 1380, 9890, 1, 0, 0, 0, 1382, 9892, 1, 0, 0, 0, 1384, 9894, 1, 0, 0, 0, 1386, 9948, 1, 0, 0, 0, 1388, 9950, 1, 0, 0, 0, 1390, 9952, 1, 0, 0, 0, 1392, 9954, 1, 0, 0, 0, 1394, 9956, 1, 0, 0, 0, 1396, 9963, 1, 0, 0, 0, 1398, 9986, 1, 0, 0, 0, 1400, 9988, 1, 0, 0, 0, 1402, 9994, 1, 0, 0, 0, 1404, 9998, 1, 0, 0, 0, 1406, 10000, 1, 0, 0, 0, 1408, 10007, 1, 0, 0, 0, 1410, 10014, 1, 0, 0, 0, 1412, 10017, 1, 0, 0, 0, 1414, 10021, 1, 0, 0, 0, 1416, 10028, 1, 0, 0, 0, 1418, 10030, 1, 0, 0, 0, 1420, 10054, 1, 0, 0, 0, 1422, 10056, 1, 0, 0, 0, 1424, 10063, 1, 0, 0, 0, 1426, 10065, 1, 0, 0, 0, 1428, 10073, 1, 0, 0, 0, 1430, 10076, 1, 0, 0, 0, 1432, 10080, 1, 0, 0, 0, 1434, 10082, 1, 0, 0, 0, 1436, 10086, 1, 0, 0, 0, 1438, 10088, 1, 0, 0, 0, 1440, 10093, 1, 0, 0, 0, 1442, 10098, 1, 0, 0, 0, 1444, 10104, 1, 0, 0, 0, 1446, 10108, 1, 0, 0, 0, 1448, 10110, 1, 0, 0, 0, 1450, 10115, 1, 0, 0, 0, 1452, 10145, 1, 0, 0, 0, 1454, 10147, 1, 0, 0, 0, 1456, 10165, 1, 0, 0, 0, 1458, 10169, 1, 0, 0, 0, 1460, 10171, 1, 0, 0, 0, 1462, 10176, 1, 0, 0, 0, 1464, 10185, 1, 0, 0, 0, 1466, 10187, 1, 0, 0, 0, 1468, 10195, 1, 0, 0, 0, 1470, 10199, 1, 0, 0, 0, 1472, 10201, 1, 0, 0, 0, 1474, 10205, 1, 0, 0, 0, 1476, 10216, 1, 0, 0, 0, 1478, 10233, 1, 0, 0, 0, 1480, 10239, 1, 0, 0, 0, 1482, 10241, 1, 0, 0, 0, 1484, 10251, 1, 0, 0, 0, 1486, 10254, 1, 0, 0, 0, 1488, 10258, 1, 0, 0, 0, 1490, 10266, 1, 0, 0, 0, 1492, 10268, 1, 0, 0, 0, 1494, 10271, 1, 0, 0, 0, 1496, 10276, 1, 0, 0, 0, 1498, 10281, 1, 0, 0, 0, 1500, 10303, 1, 0, 0, 0, 1502, 10317, 1, 0, 0, 0, 1504, 10321, 1, 0, 0, 0, 1506, 10326, 1, 0, 0, 0, 1508, 10328, 1, 0, 0, 0, 1510, 10330, 1, 0, 0, 0, 1512, 10342, 1, 0, 0, 0, 1514, 10344, 1, 0, 0, 0, 1516, 10349, 1, 0, 0, 0, 1518, 10351, 1, 0, 0, 0, 1520, 10369, 1, 0, 0, 0, 1522, 10397, 1, 0, 0, 0, 1524, 10407, 1, 0, 0, 0, 1526, 10416, 1, 0, 0, 0, 1528, 10421, 1, 0, 0, 0, 1530, 10423, 1, 0, 0, 0, 1532, 10427, 1, 0, 0, 0, 1534, 10435, 1, 0, 0, 0, 1536, 10443, 1, 0, 0, 0, 1538, 10445, 1, 0, 0, 0, 1540, 10452, 1, 0, 0, 0, 1542, 10455, 1, 0, 0, 0, 1544, 10471, 1, 0, 0, 0, 1546, 10473, 1, 0, 0, 0, 1548, 10487, 1, 0, 0, 0, 1550, 10489, 1, 0, 0, 0, 1552, 10516, 1, 0, 0, 0, 1554, 10518, 1, 0, 0, 0, 1556, 10529, 1, 0, 0, 0, 1558, 10535, 1, 0, 0, 0, 1560, 10539, 1, 0, 0, 0, 1562, 10541, 1, 0, 0, 0, 1564, 10549, 1, 0, 0, 0, 1566, 10554, 1, 0, 0, 0, 1568, 10573, 1, 0, 0, 0, 1570, 10575, 1, 0, 0, 0, 1572, 10580, 1, 0, 0, 0, 1574, 10584, 1, 0, 0, 0, 1576, 10587, 1, 0, 0, 0, 1578, 10591, 1, 0, 0, 0, 1580, 10601, 1, 0, 0, 0, 1582, 10615, 1, 0, 0, 0, 1584, 10619, 1, 0, 0, 0, 1586, 10624, 1, 0, 0, 0, 1588, 10627, 1, 0, 0, 0, 1590, 10631, 1, 0, 0, 0, 1592, 10636, 1, 0, 0, 0, 1594, 10647, 1, 0, 0, 0, 1596, 10651, 1, 0, 0, 0, 1598, 10655, 1, 0, 0, 0, 1600, 10659, 1, 0, 0, 0, 1602, 10664, 1, 0, 0, 0, 1604, 10668, 1, 0, 0, 0, 1606, 10670, 1, 0, 0, 0, 1608, 10672, 1, 0, 0, 0, 1610, 10682, 1, 0, 0, 0, 1612, 10684, 1, 0, 0, 0, 1614, 10686, 1, 0, 0, 0, 1616, 10688, 1, 0, 0, 0, 1618, 10690, 1, 0, 0, 0, 1620, 10698, 1, 0, 0, 0, 1622, 1624, 3, 4, 2, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 5, 0, 0, 1, 1626, 1, 1, 0, 0, 0, 1627, 1628, 3, 1394, 697, 0, 1628, 3, 1, 0, 0, 0, 1629, 1631, 3, 6, 3, 0, 1630, 1632, 5, 7, 0, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1638, 1, 0, 0, 0, 1633, 1634, 3, 6, 3, 0, 1634, 1635, 5, 7, 0, 0, 1635, 1636, 3, 4, 2, 0, 1636, 1638, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1633, 1, 0, 0, 0, 1638, 5, 1, 0, 0, 0, 1639, 1765, 3, 450, 225, 0, 1640, 1765, 3, 824, 412, 0, 1641, 1765, 3, 814, 407, 0, 1642, 1765, 3, 816, 408, 0, 1643, 1765, 3, 576, 288, 0, 1644, 1765, 3, 830, 415, 0, 1645, 1765, 3, 476, 238, 0, 1646, 1765, 3, 320, 160, 0, 1647, 1765, 3, 326, 163, 0, 1648, 1765, 3, 336, 168, 0, 1649, 1765, 3, 362, 181, 0, 1650, 1765, 3, 668, 334, 0, 1651, 1765, 3, 36, 18, 0, 1652, 1765, 3, 726, 363, 0, 1653, 1765, 3, 730, 365, 0, 1654, 1765, 3, 742, 371, 0, 1655, 1765, 3, 732, 366, 0, 1656, 1765, 3, 740, 370, 0, 1657, 1765, 3, 382, 191, 0, 1658, 1765, 3, 278, 139, 0, 1659, 1765, 3, 826, 413, 0, 1660, 1765, 3, 94, 47, 0, 1661, 1765, 3, 718, 359, 0, 1662, 1765, 3, 132, 66, 0, 1663, 1765, 3, 750, 375, 0, 1664, 1765, 3, 30, 15, 0, 1665, 1765, 3, 26, 13, 0, 1666, 1765, 3, 758, 379, 0, 1667, 1765, 3, 260, 130, 0, 1668, 1765, 3, 836, 418, 0, 1669, 1765, 3, 834, 417, 0, 1670, 1765, 3, 378, 189, 0, 1671, 1765, 3, 848, 424, 0, 1672, 1765, 3, 10, 5, 0, 1673, 1765, 3, 90, 45, 0, 1674, 1765, 3, 138, 69, 0, 1675, 1765, 3, 842, 421, 0, 1676, 1765, 3, 532, 266, 0, 1677, 1765, 3, 84, 42, 0, 1678, 1765, 3, 140, 70, 0, 1679, 1765, 3, 398, 199, 0, 1680, 1765, 3, 262, 131, 0, 1681, 1765, 3, 454, 227, 0, 1682, 1765, 3, 694, 347, 0, 1683, 1765, 3, 840, 420, 0, 1684, 1765, 3, 828, 414, 0, 1685, 1765, 3, 314, 157, 0, 1686, 1765, 3, 328, 164, 0, 1687, 1765, 3, 354, 177, 0, 1688, 1765, 3, 364, 182, 0, 1689, 1765, 3, 614, 307, 0, 1690, 1765, 3, 34, 17, 0, 1691, 1765, 3, 268, 134, 0, 1692, 1765, 3, 480, 240, 0, 1693, 1765, 3, 494, 247, 0, 1694, 1765, 3, 744, 372, 0, 1695, 1765, 3, 496, 248, 0, 1696, 1765, 3, 380, 190, 0, 1697, 1765, 3, 294, 147, 0, 1698, 1765, 3, 40, 20, 0, 1699, 1765, 3, 276, 138, 0, 1700, 1765, 3, 170, 85, 0, 1701, 1765, 3, 752, 376, 0, 1702, 1765, 3, 258, 129, 0, 1703, 1765, 3, 308, 154, 0, 1704, 1765, 3, 702, 351, 0, 1705, 1765, 3, 402, 201, 0, 1706, 1765, 3, 442, 221, 0, 1707, 1765, 3, 12, 6, 0, 1708, 1765, 3, 24, 12, 0, 1709, 1765, 3, 372, 186, 0, 1710, 1765, 3, 802, 401, 0, 1711, 1765, 3, 898, 449, 0, 1712, 1765, 3, 950, 475, 0, 1713, 1765, 3, 456, 228, 0, 1714, 1765, 3, 926, 463, 0, 1715, 1765, 3, 92, 46, 0, 1716, 1765, 3, 688, 344, 0, 1717, 1765, 3, 698, 349, 0, 1718, 1765, 3, 502, 251, 0, 1719, 1765, 3, 504, 252, 0, 1720, 1765, 3, 506, 253, 0, 1721, 1765, 3, 510, 255, 0, 1722, 1765, 3, 760, 380, 0, 1723, 1765, 3, 312, 156, 0, 1724, 1765, 3, 706, 353, 0, 1725, 1765, 3, 32, 16, 0, 1726, 1765, 3, 376, 188, 0, 1727, 1765, 3, 818, 409, 0, 1728, 1765, 3, 894, 447, 0, 1729, 1765, 3, 876, 438, 0, 1730, 1765, 3, 542, 271, 0, 1731, 1765, 3, 550, 275, 0, 1732, 1765, 3, 568, 284, 0, 1733, 1765, 3, 366, 183, 0, 1734, 1765, 3, 586, 293, 0, 1735, 1765, 3, 900, 450, 0, 1736, 1765, 3, 918, 459, 0, 1737, 1765, 3, 780, 390, 0, 1738, 1765, 3, 274, 137, 0, 1739, 1765, 3, 800, 400, 0, 1740, 1765, 3, 930, 465, 0, 1741, 1765, 3, 776, 388, 0, 1742, 1765, 3, 888, 444, 0, 1743, 1765, 3, 508, 254, 0, 1744, 1765, 3, 708, 354, 0, 1745, 1765, 3, 676, 338, 0, 1746, 1765, 3, 674, 337, 0, 1747, 1765, 3, 678, 339, 0, 1748, 1765, 3, 720, 360, 0, 1749, 1765, 3, 552, 276, 0, 1750, 1765, 3, 570, 285, 0, 1751, 1765, 3, 762, 381, 0, 1752, 1765, 3, 536, 268, 0, 1753, 1765, 3, 958, 479, 0, 1754, 1765, 3, 784, 392, 0, 1755, 1765, 3, 528, 264, 0, 1756, 1765, 3, 782, 391, 0, 1757, 1765, 3, 940, 470, 0, 1758, 1765, 3, 846, 423, 0, 1759, 1765, 3, 72, 36, 0, 1760, 1765, 3, 48, 24, 0, 1761, 1765, 3, 82, 41, 0, 1762, 1765, 3, 796, 398, 0, 1763, 1765, 3, 8, 4, 0, 1764, 1639, 1, 0, 0, 0, 1764, 1640, 1, 0, 0, 0, 1764, 1641, 1, 0, 0, 0, 1764, 1642, 1, 0, 0, 0, 1764, 1643, 1, 0, 0, 0, 1764, 1644, 1, 0, 0, 0, 1764, 1645, 1, 0, 0, 0, 1764, 1646, 1, 0, 0, 0, 1764, 1647, 1, 0, 0, 0, 1764, 1648, 1, 0, 0, 0, 1764, 1649, 1, 0, 0, 0, 1764, 1650, 1, 0, 0, 0, 1764, 1651, 1, 0, 0, 0, 1764, 1652, 1, 0, 0, 0, 1764, 1653, 1, 0, 0, 0, 1764, 1654, 1, 0, 0, 0, 1764, 1655, 1, 0, 0, 0, 1764, 1656, 1, 0, 0, 0, 1764, 1657, 1, 0, 0, 0, 1764, 1658, 1, 0, 0, 0, 1764, 1659, 1, 0, 0, 0, 1764, 1660, 1, 0, 0, 0, 1764, 1661, 1, 0, 0, 0, 1764, 1662, 1, 0, 0, 0, 1764, 1663, 1, 0, 0, 0, 1764, 1664, 1, 0, 0, 0, 1764, 1665, 1, 0, 0, 0, 1764, 1666, 1, 0, 0, 0, 1764, 1667, 1, 0, 0, 0, 1764, 1668, 1, 0, 0, 0, 1764, 1669, 1, 0, 0, 0, 1764, 1670, 1, 0, 0, 0, 1764, 1671, 1, 0, 0, 0, 1764, 1672, 1, 0, 0, 0, 1764, 1673, 1, 0, 0, 0, 1764, 1674, 1, 0, 0, 0, 1764, 1675, 1, 0, 0, 0, 1764, 1676, 1, 0, 0, 0, 1764, 1677, 1, 0, 0, 0, 1764, 1678, 1, 0, 0, 0, 1764, 1679, 1, 0, 0, 0, 1764, 1680, 1, 0, 0, 0, 1764, 1681, 1, 0, 0, 0, 1764, 1682, 1, 0, 0, 0, 1764, 1683, 1, 0, 0, 0, 1764, 1684, 1, 0, 0, 0, 1764, 1685, 1, 0, 0, 0, 1764, 1686, 1, 0, 0, 0, 1764, 1687, 1, 0, 0, 0, 1764, 1688, 1, 0, 0, 0, 1764, 1689, 1, 0, 0, 0, 1764, 1690, 1, 0, 0, 0, 1764, 1691, 1, 0, 0, 0, 1764, 1692, 1, 0, 0, 0, 1764, 1693, 1, 0, 0, 0, 1764, 1694, 1, 0, 0, 0, 1764, 1695, 1, 0, 0, 0, 1764, 1696, 1, 0, 0, 0, 1764, 1697, 1, 0, 0, 0, 1764, 1698, 1, 0, 0, 0, 1764, 1699, 1, 0, 0, 0, 1764, 1700, 1, 0, 0, 0, 1764, 1701, 1, 0, 0, 0, 1764, 1702, 1, 0, 0, 0, 1764, 1703, 1, 0, 0, 0, 1764, 1704, 1, 0, 0, 0, 1764, 1705, 1, 0, 0, 0, 1764, 1706, 1, 0, 0, 0, 1764, 1707, 1, 0, 0, 0, 1764, 1708, 1, 0, 0, 0, 1764, 1709, 1, 0, 0, 0, 1764, 1710, 1, 0, 0, 0, 1764, 1711, 1, 0, 0, 0, 1764, 1712, 1, 0, 0, 0, 1764, 1713, 1, 0, 0, 0, 1764, 1714, 1, 0, 0, 0, 1764, 1715, 1, 0, 0, 0, 1764, 1716, 1, 0, 0, 0, 1764, 1717, 1, 0, 0, 0, 1764, 1718, 1, 0, 0, 0, 1764, 1719, 1, 0, 0, 0, 1764, 1720, 1, 0, 0, 0, 1764, 1721, 1, 0, 0, 0, 1764, 1722, 1, 0, 0, 0, 1764, 1723, 1, 0, 0, 0, 1764, 1724, 1, 0, 0, 0, 1764, 1725, 1, 0, 0, 0, 1764, 1726, 1, 0, 0, 0, 1764, 1727, 1, 0, 0, 0, 1764, 1728, 1, 0, 0, 0, 1764, 1729, 1, 0, 0, 0, 1764, 1730, 1, 0, 0, 0, 1764, 1731, 1, 0, 0, 0, 1764, 1732, 1, 0, 0, 0, 1764, 1733, 1, 0, 0, 0, 1764, 1734, 1, 0, 0, 0, 1764, 1735, 1, 0, 0, 0, 1764, 1736, 1, 0, 0, 0, 1764, 1737, 1, 0, 0, 0, 1764, 1738, 1, 0, 0, 0, 1764, 1739, 1, 0, 0, 0, 1764, 1740, 1, 0, 0, 0, 1764, 1741, 1, 0, 0, 0, 1764, 1742, 1, 0, 0, 0, 1764, 1743, 1, 0, 0, 0, 1764, 1744, 1, 0, 0, 0, 1764, 1745, 1, 0, 0, 0, 1764, 1746, 1, 0, 0, 0, 1764, 1747, 1, 0, 0, 0, 1764, 1748, 1, 0, 0, 0, 1764, 1749, 1, 0, 0, 0, 1764, 1750, 1, 0, 0, 0, 1764, 1751, 1, 0, 0, 0, 1764, 1752, 1, 0, 0, 0, 1764, 1753, 1, 0, 0, 0, 1764, 1754, 1, 0, 0, 0, 1764, 1755, 1, 0, 0, 0, 1764, 1756, 1, 0, 0, 0, 1764, 1757, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1759, 1, 0, 0, 0, 1764, 1760, 1, 0, 0, 0, 1764, 1761, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 7, 1, 0, 0, 0, 1766, 1768, 5, 668, 0, 0, 1767, 1769, 5, 669, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 9, 1, 0, 0, 0, 1770, 1771, 5, 433, 0, 0, 1771, 1772, 3, 1208, 604, 0, 1772, 11, 1, 0, 0, 0, 1773, 1774, 5, 46, 0, 0, 1774, 1775, 5, 311, 0, 0, 1775, 1776, 3, 1364, 682, 0, 1776, 1777, 3, 14, 7, 0, 1777, 1778, 3, 16, 8, 0, 1778, 13, 1, 0, 0, 0, 1779, 1782, 5, 105, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1780, 1, 0, 0, 0, 1782, 15, 1, 0, 0, 0, 1783, 1785, 3, 22, 11, 0, 1784, 1783, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 17, 1, 0, 0, 0, 1788, 1786, 1, 0, 0, 0, 1789, 1791, 3, 20, 10, 0, 1790, 1789, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 19, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1798, 5, 280, 0, 0, 1796, 1799, 3, 1356, 678, 0, 1797, 1799, 5, 78, 0, 0, 1798, 1796, 1, 0, 0, 0, 1798, 1797, 1, 0, 0, 0, 1799, 1814, 1, 0, 0, 0, 1800, 1801, 7, 0, 0, 0, 1801, 1802, 5, 280, 0, 0, 1802, 1814, 3, 1356, 678, 0, 1803, 1814, 5, 228, 0, 0, 1804, 1805, 5, 164, 0, 0, 1805, 1806, 5, 74, 0, 0, 1806, 1814, 3, 1362, 681, 0, 1807, 1808, 5, 364, 0, 0, 1808, 1809, 5, 361, 0, 0, 1809, 1814, 3, 1356, 678, 0, 1810, 1811, 5, 99, 0, 0, 1811, 1814, 3, 1368, 684, 0, 1812, 1814, 3, 1380, 690, 0, 1813, 1795, 1, 0, 0, 0, 1813, 1800, 1, 0, 0, 0, 1813, 1803, 1, 0, 0, 0, 1813, 1804, 1, 0, 0, 0, 1813, 1807, 1, 0, 0, 0, 1813, 1810, 1, 0, 0, 0, 1813, 1812, 1, 0, 0, 0, 1814, 21, 1, 0, 0, 0, 1815, 1826, 3, 20, 10, 0, 1816, 1817, 5, 341, 0, 0, 1817, 1826, 3, 1354, 677, 0, 1818, 1819, 5, 134, 0, 0, 1819, 1826, 3, 1368, 684, 0, 1820, 1821, 5, 311, 0, 0, 1821, 1826, 3, 1368, 684, 0, 1822, 1823, 5, 68, 0, 0, 1823, 1824, 7, 1, 0, 0, 1824, 1826, 3, 1368, 684, 0, 1825, 1815, 1, 0, 0, 0, 1825, 1816, 1, 0, 0, 0, 1825, 1818, 1, 0, 0, 0, 1825, 1820, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 23, 1, 0, 0, 0, 1827, 1828, 5, 46, 0, 0, 1828, 1829, 5, 99, 0, 0, 1829, 1830, 3, 1364, 682, 0, 1830, 1831, 3, 14, 7, 0, 1831, 1832, 3, 16, 8, 0, 1832, 25, 1, 0, 0, 0, 1833, 1834, 5, 138, 0, 0, 1834, 1835, 7, 2, 0, 0, 1835, 1836, 3, 1366, 683, 0, 1836, 1837, 3, 14, 7, 0, 1837, 1838, 3, 18, 9, 0, 1838, 27, 1, 0, 0, 0, 1839, 1844, 1, 0, 0, 0, 1840, 1841, 5, 68, 0, 0, 1841, 1842, 5, 175, 0, 0, 1842, 1844, 3, 1338, 669, 0, 1843, 1839, 1, 0, 0, 0, 1843, 1840, 1, 0, 0, 0, 1844, 29, 1, 0, 0, 0, 1845, 1846, 5, 138, 0, 0, 1846, 1848, 7, 2, 0, 0, 1847, 1849, 5, 30, 0, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 3, 1366, 683, 0, 1851, 1852, 3, 28, 14, 0, 1852, 1853, 3, 78, 39, 0, 1853, 31, 1, 0, 0, 0, 1854, 1855, 5, 191, 0, 0, 1855, 1858, 7, 3, 0, 0, 1856, 1857, 5, 220, 0, 0, 1857, 1859, 5, 389, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 3, 1368, 684, 0, 1861, 33, 1, 0, 0, 0, 1862, 1863, 5, 46, 0, 0, 1863, 1864, 5, 66, 0, 0, 1864, 1865, 3, 1364, 682, 0, 1865, 1866, 3, 14, 7, 0, 1866, 1867, 3, 16, 8, 0, 1867, 35, 1, 0, 0, 0, 1868, 1869, 5, 138, 0, 0, 1869, 1870, 5, 66, 0, 0, 1870, 1871, 3, 1366, 683, 0, 1871, 1872, 3, 38, 19, 0, 1872, 1873, 5, 99, 0, 0, 1873, 1874, 3, 1368, 684, 0, 1874, 37, 1, 0, 0, 0, 1875, 1876, 7, 4, 0, 0, 1876, 39, 1, 0, 0, 0, 1877, 1878, 5, 46, 0, 0, 1878, 1882, 5, 316, 0, 0, 1879, 1880, 5, 220, 0, 0, 1880, 1881, 5, 77, 0, 0, 1881, 1883, 5, 389, 0, 0, 1882, 1879, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1889, 1, 0, 0, 0, 1884, 1885, 3, 42, 21, 0, 1885, 1886, 5, 106, 0, 0, 1886, 1887, 3, 1366, 683, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1890, 3, 1370, 685, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 3, 44, 22, 0, 1892, 41, 1, 0, 0, 0, 1893, 1896, 3, 1370, 685, 0, 1894, 1896, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1894, 1, 0, 0, 0, 1896, 43, 1, 0, 0, 0, 1897, 1899, 3, 46, 23, 0, 1898, 1897, 1, 0, 0, 0, 1899, 1902, 1, 0, 0, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 45, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1903, 1910, 3, 170, 85, 0, 1904, 1910, 3, 586, 293, 0, 1905, 1910, 3, 276, 138, 0, 1906, 1910, 3, 402, 201, 0, 1907, 1910, 3, 550, 275, 0, 1908, 1910, 3, 796, 398, 0, 1909, 1903, 1, 0, 0, 0, 1909, 1904, 1, 0, 0, 0, 1909, 1905, 1, 0, 0, 0, 1909, 1906, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 47, 1, 0, 0, 0, 1911, 1913, 5, 326, 0, 0, 1912, 1914, 7, 5, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 3, 50, 25, 0, 1916, 49, 1, 0, 0, 0, 1917, 1918, 5, 349, 0, 0, 1918, 1926, 3, 790, 395, 0, 1919, 1920, 5, 325, 0, 0, 1920, 1921, 5, 154, 0, 0, 1921, 1922, 5, 36, 0, 0, 1922, 1923, 5, 349, 0, 0, 1923, 1926, 3, 790, 395, 0, 1924, 1926, 3, 54, 27, 0, 1925, 1917, 1, 0, 0, 0, 1925, 1919, 1, 0, 0, 0, 1925, 1924, 1, 0, 0, 0, 1926, 51, 1, 0, 0, 0, 1927, 1928, 3, 56, 28, 0, 1928, 1929, 7, 6, 0, 0, 1929, 1930, 3, 58, 29, 0, 1930, 53, 1, 0, 0, 0, 1931, 1957, 3, 52, 26, 0, 1932, 1933, 3, 56, 28, 0, 1933, 1934, 5, 64, 0, 0, 1934, 1935, 5, 434, 0, 0, 1935, 1957, 1, 0, 0, 0, 1936, 1937, 5, 411, 0, 0, 1937, 1938, 5, 379, 0, 0, 1938, 1957, 3, 66, 33, 0, 1939, 1940, 5, 152, 0, 0, 1940, 1957, 3, 1356, 678, 0, 1941, 1942, 5, 316, 0, 0, 1942, 1957, 3, 1356, 678, 0, 1943, 1944, 5, 260, 0, 0, 1944, 1957, 3, 68, 34, 0, 1945, 1946, 5, 311, 0, 0, 1946, 1957, 3, 70, 35, 0, 1947, 1948, 5, 325, 0, 0, 1948, 1949, 5, 106, 0, 0, 1949, 1957, 3, 70, 35, 0, 1950, 1951, 5, 376, 0, 0, 1951, 1952, 5, 272, 0, 0, 1952, 1957, 3, 1226, 613, 0, 1953, 1954, 5, 349, 0, 0, 1954, 1955, 5, 330, 0, 0, 1955, 1957, 3, 1356, 678, 0, 1956, 1931, 1, 0, 0, 0, 1956, 1932, 1, 0, 0, 0, 1956, 1936, 1, 0, 0, 0, 1956, 1939, 1, 0, 0, 0, 1956, 1941, 1, 0, 0, 0, 1956, 1943, 1, 0, 0, 0, 1956, 1945, 1, 0, 0, 0, 1956, 1947, 1, 0, 0, 0, 1956, 1950, 1, 0, 0, 0, 1956, 1953, 1, 0, 0, 0, 1957, 55, 1, 0, 0, 0, 1958, 1963, 3, 1370, 685, 0, 1959, 1960, 5, 11, 0, 0, 1960, 1962, 3, 1370, 685, 0, 1961, 1959, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 57, 1, 0, 0, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1971, 3, 60, 30, 0, 1967, 1968, 5, 6, 0, 0, 1968, 1970, 3, 60, 30, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 59, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1977, 3, 64, 32, 0, 1975, 1977, 3, 290, 145, 0, 1976, 1974, 1, 0, 0, 0, 1976, 1975, 1, 0, 0, 0, 1977, 61, 1, 0, 0, 0, 1978, 1979, 5, 293, 0, 0, 1979, 1984, 7, 7, 0, 0, 1980, 1981, 5, 303, 0, 0, 1981, 1984, 5, 293, 0, 0, 1982, 1984, 5, 323, 0, 0, 1983, 1978, 1, 0, 0, 0, 1983, 1980, 1, 0, 0, 0, 1983, 1982, 1, 0, 0, 0, 1984, 63, 1, 0, 0, 0, 1985, 1990, 5, 96, 0, 0, 1986, 1990, 5, 60, 0, 0, 1987, 1990, 5, 80, 0, 0, 1988, 1990, 3, 70, 35, 0, 1989, 1985, 1, 0, 0, 0, 1989, 1986, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 65, 1, 0, 0, 0, 1991, 2007, 3, 1356, 678, 0, 1992, 2007, 3, 1380, 690, 0, 1993, 1994, 3, 1150, 575, 0, 1994, 1995, 3, 1356, 678, 0, 1995, 1996, 3, 1154, 577, 0, 1996, 2007, 1, 0, 0, 0, 1997, 1998, 3, 1150, 575, 0, 1998, 1999, 5, 2, 0, 0, 1999, 2000, 3, 1354, 677, 0, 2000, 2001, 5, 3, 0, 0, 2001, 2002, 3, 1356, 678, 0, 2002, 2007, 1, 0, 0, 0, 2003, 2007, 3, 290, 145, 0, 2004, 2007, 5, 53, 0, 0, 2005, 2007, 5, 245, 0, 0, 2006, 1991, 1, 0, 0, 0, 2006, 1992, 1, 0, 0, 0, 2006, 1993, 1, 0, 0, 0, 2006, 1997, 1, 0, 0, 0, 2006, 2003, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2006, 2005, 1, 0, 0, 0, 2007, 67, 1, 0, 0, 0, 2008, 2012, 3, 1356, 678, 0, 2009, 2012, 5, 53, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2008, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2011, 2010, 1, 0, 0, 0, 2012, 69, 1, 0, 0, 0, 2013, 2016, 3, 1376, 688, 0, 2014, 2016, 3, 1356, 678, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2014, 1, 0, 0, 0, 2016, 71, 1, 0, 0, 0, 2017, 2018, 5, 306, 0, 0, 2018, 2019, 3, 74, 37, 0, 2019, 73, 1, 0, 0, 0, 2020, 2029, 3, 76, 38, 0, 2021, 2022, 5, 411, 0, 0, 2022, 2029, 5, 379, 0, 0, 2023, 2024, 5, 349, 0, 0, 2024, 2025, 5, 235, 0, 0, 2025, 2029, 5, 242, 0, 0, 2026, 2027, 5, 325, 0, 0, 2027, 2029, 5, 106, 0, 0, 2028, 2020, 1, 0, 0, 0, 2028, 2021, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 75, 1, 0, 0, 0, 2030, 2033, 3, 56, 28, 0, 2031, 2033, 5, 30, 0, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 77, 1, 0, 0, 0, 2034, 2035, 5, 326, 0, 0, 2035, 2038, 3, 50, 25, 0, 2036, 2038, 3, 72, 36, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 79, 1, 0, 0, 0, 2039, 2040, 5, 326, 0, 0, 2040, 2043, 3, 54, 27, 0, 2041, 2043, 3, 72, 36, 0, 2042, 2039, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2043, 81, 1, 0, 0, 0, 2044, 2054, 5, 328, 0, 0, 2045, 2055, 3, 56, 28, 0, 2046, 2047, 5, 411, 0, 0, 2047, 2055, 5, 379, 0, 0, 2048, 2049, 5, 349, 0, 0, 2049, 2050, 5, 235, 0, 0, 2050, 2055, 5, 242, 0, 0, 2051, 2052, 5, 325, 0, 0, 2052, 2055, 5, 106, 0, 0, 2053, 2055, 5, 30, 0, 0, 2054, 2045, 1, 0, 0, 0, 2054, 2046, 1, 0, 0, 0, 2054, 2048, 1, 0, 0, 0, 2054, 2051, 1, 0, 0, 0, 2054, 2053, 1, 0, 0, 0, 2055, 83, 1, 0, 0, 0, 2056, 2057, 5, 326, 0, 0, 2057, 2058, 5, 165, 0, 0, 2058, 2059, 3, 86, 43, 0, 2059, 2060, 3, 88, 44, 0, 2060, 85, 1, 0, 0, 0, 2061, 2064, 5, 30, 0, 0, 2062, 2064, 3, 1332, 666, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2062, 1, 0, 0, 0, 2064, 87, 1, 0, 0, 0, 2065, 2066, 7, 8, 0, 0, 2066, 89, 1, 0, 0, 0, 2067, 2068, 5, 155, 0, 0, 2068, 91, 1, 0, 0, 0, 2069, 2070, 5, 187, 0, 0, 2070, 2071, 7, 9, 0, 0, 2071, 93, 1, 0, 0, 0, 2072, 2073, 5, 138, 0, 0, 2073, 2076, 5, 92, 0, 0, 2074, 2075, 5, 220, 0, 0, 2075, 2077, 5, 389, 0, 0, 2076, 2074, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2081, 3, 1072, 536, 0, 2079, 2082, 3, 96, 48, 0, 2080, 2082, 3, 98, 49, 0, 2081, 2079, 1, 0, 0, 0, 2081, 2080, 1, 0, 0, 0, 2082, 2182, 1, 0, 0, 0, 2083, 2084, 5, 138, 0, 0, 2084, 2085, 5, 92, 0, 0, 2085, 2086, 5, 30, 0, 0, 2086, 2087, 5, 68, 0, 0, 2087, 2088, 5, 344, 0, 0, 2088, 2092, 3, 1338, 669, 0, 2089, 2090, 5, 274, 0, 0, 2090, 2091, 5, 147, 0, 0, 2091, 2093, 3, 1368, 684, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 5, 326, 0, 0, 2095, 2096, 5, 344, 0, 0, 2096, 2097, 3, 1338, 669, 0, 2097, 2098, 3, 936, 468, 0, 2098, 2182, 1, 0, 0, 0, 2099, 2100, 5, 138, 0, 0, 2100, 2103, 5, 226, 0, 0, 2101, 2102, 5, 220, 0, 0, 2102, 2104, 5, 389, 0, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2108, 3, 1334, 667, 0, 2106, 2109, 3, 96, 48, 0, 2107, 2109, 3, 100, 50, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2107, 1, 0, 0, 0, 2109, 2182, 1, 0, 0, 0, 2110, 2111, 5, 138, 0, 0, 2111, 2112, 5, 226, 0, 0, 2112, 2113, 5, 30, 0, 0, 2113, 2114, 5, 68, 0, 0, 2114, 2115, 5, 344, 0, 0, 2115, 2119, 3, 1338, 669, 0, 2116, 2117, 5, 274, 0, 0, 2117, 2118, 5, 147, 0, 0, 2118, 2120, 3, 1368, 684, 0, 2119, 2116, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 5, 326, 0, 0, 2122, 2123, 5, 344, 0, 0, 2123, 2124, 3, 1338, 669, 0, 2124, 2125, 3, 936, 468, 0, 2125, 2182, 1, 0, 0, 0, 2126, 2127, 5, 138, 0, 0, 2127, 2130, 5, 321, 0, 0, 2128, 2129, 5, 220, 0, 0, 2129, 2131, 5, 389, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 3, 1334, 667, 0, 2133, 2134, 3, 96, 48, 0, 2134, 2182, 1, 0, 0, 0, 2135, 2136, 5, 138, 0, 0, 2136, 2139, 5, 369, 0, 0, 2137, 2138, 5, 220, 0, 0, 2138, 2140, 5, 389, 0, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 3, 1334, 667, 0, 2142, 2143, 3, 96, 48, 0, 2143, 2182, 1, 0, 0, 0, 2144, 2145, 5, 138, 0, 0, 2145, 2146, 5, 251, 0, 0, 2146, 2149, 5, 369, 0, 0, 2147, 2148, 5, 220, 0, 0, 2148, 2150, 5, 389, 0, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 3, 1334, 667, 0, 2152, 2153, 3, 96, 48, 0, 2153, 2182, 1, 0, 0, 0, 2154, 2155, 5, 138, 0, 0, 2155, 2156, 5, 251, 0, 0, 2156, 2157, 5, 369, 0, 0, 2157, 2158, 5, 30, 0, 0, 2158, 2159, 5, 68, 0, 0, 2159, 2160, 5, 344, 0, 0, 2160, 2164, 3, 1338, 669, 0, 2161, 2162, 5, 274, 0, 0, 2162, 2163, 5, 147, 0, 0, 2163, 2165, 3, 1368, 684, 0, 2164, 2161, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 5, 326, 0, 0, 2167, 2168, 5, 344, 0, 0, 2168, 2169, 3, 1338, 669, 0, 2169, 2170, 3, 936, 468, 0, 2170, 2182, 1, 0, 0, 0, 2171, 2172, 5, 138, 0, 0, 2172, 2173, 5, 63, 0, 0, 2173, 2176, 5, 92, 0, 0, 2174, 2175, 5, 220, 0, 0, 2175, 2177, 5, 389, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2179, 3, 1072, 536, 0, 2179, 2180, 3, 96, 48, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2072, 1, 0, 0, 0, 2181, 2083, 1, 0, 0, 0, 2181, 2099, 1, 0, 0, 0, 2181, 2110, 1, 0, 0, 0, 2181, 2126, 1, 0, 0, 0, 2181, 2135, 1, 0, 0, 0, 2181, 2144, 1, 0, 0, 0, 2181, 2154, 1, 0, 0, 0, 2181, 2171, 1, 0, 0, 0, 2182, 95, 1, 0, 0, 0, 2183, 2188, 3, 102, 51, 0, 2184, 2185, 5, 6, 0, 0, 2185, 2187, 3, 102, 51, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 97, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2192, 5, 435, 0, 0, 2192, 2193, 5, 278, 0, 0, 2193, 2194, 3, 1334, 667, 0, 2194, 2195, 3, 126, 63, 0, 2195, 2200, 1, 0, 0, 0, 2196, 2197, 5, 436, 0, 0, 2197, 2198, 5, 278, 0, 0, 2198, 2200, 3, 1334, 667, 0, 2199, 2191, 1, 0, 0, 0, 2199, 2196, 1, 0, 0, 0, 2200, 99, 1, 0, 0, 0, 2201, 2202, 5, 435, 0, 0, 2202, 2203, 5, 278, 0, 0, 2203, 2204, 3, 1334, 667, 0, 2204, 101, 1, 0, 0, 0, 2205, 2206, 5, 133, 0, 0, 2206, 2458, 3, 186, 93, 0, 2207, 2208, 5, 133, 0, 0, 2208, 2209, 5, 220, 0, 0, 2209, 2210, 5, 77, 0, 0, 2210, 2211, 5, 389, 0, 0, 2211, 2458, 3, 186, 93, 0, 2212, 2213, 5, 133, 0, 0, 2213, 2214, 5, 44, 0, 0, 2214, 2458, 3, 186, 93, 0, 2215, 2216, 5, 133, 0, 0, 2216, 2217, 5, 44, 0, 0, 2217, 2218, 5, 220, 0, 0, 2218, 2219, 5, 77, 0, 0, 2219, 2220, 5, 389, 0, 0, 2220, 2458, 3, 186, 93, 0, 2221, 2222, 5, 138, 0, 0, 2222, 2223, 3, 722, 361, 0, 2223, 2224, 3, 1370, 685, 0, 2224, 2225, 3, 104, 52, 0, 2225, 2458, 1, 0, 0, 0, 2226, 2227, 5, 138, 0, 0, 2227, 2228, 3, 722, 361, 0, 2228, 2229, 3, 1370, 685, 0, 2229, 2230, 5, 191, 0, 0, 2230, 2231, 5, 77, 0, 0, 2231, 2232, 5, 78, 0, 0, 2232, 2458, 1, 0, 0, 0, 2233, 2234, 5, 138, 0, 0, 2234, 2235, 3, 722, 361, 0, 2235, 2236, 3, 1370, 685, 0, 2236, 2237, 5, 326, 0, 0, 2237, 2238, 5, 77, 0, 0, 2238, 2239, 5, 78, 0, 0, 2239, 2458, 1, 0, 0, 0, 2240, 2241, 5, 138, 0, 0, 2241, 2242, 3, 722, 361, 0, 2242, 2243, 3, 1370, 685, 0, 2243, 2244, 5, 191, 0, 0, 2244, 2245, 5, 437, 0, 0, 2245, 2458, 1, 0, 0, 0, 2246, 2247, 5, 138, 0, 0, 2247, 2248, 3, 722, 361, 0, 2248, 2249, 3, 1370, 685, 0, 2249, 2250, 5, 191, 0, 0, 2250, 2251, 5, 437, 0, 0, 2251, 2252, 5, 220, 0, 0, 2252, 2253, 5, 389, 0, 0, 2253, 2458, 1, 0, 0, 0, 2254, 2255, 5, 138, 0, 0, 2255, 2256, 3, 722, 361, 0, 2256, 2257, 3, 1370, 685, 0, 2257, 2258, 5, 326, 0, 0, 2258, 2259, 5, 335, 0, 0, 2259, 2260, 3, 1362, 681, 0, 2260, 2458, 1, 0, 0, 0, 2261, 2262, 5, 138, 0, 0, 2262, 2263, 3, 722, 361, 0, 2263, 2264, 3, 1354, 677, 0, 2264, 2265, 5, 326, 0, 0, 2265, 2266, 5, 335, 0, 0, 2266, 2267, 3, 1362, 681, 0, 2267, 2458, 1, 0, 0, 0, 2268, 2269, 5, 138, 0, 0, 2269, 2270, 3, 722, 361, 0, 2270, 2271, 3, 1370, 685, 0, 2271, 2272, 5, 326, 0, 0, 2272, 2273, 3, 114, 57, 0, 2273, 2458, 1, 0, 0, 0, 2274, 2275, 5, 138, 0, 0, 2275, 2276, 3, 722, 361, 0, 2276, 2277, 3, 1370, 685, 0, 2277, 2278, 5, 306, 0, 0, 2278, 2279, 3, 114, 57, 0, 2279, 2458, 1, 0, 0, 0, 2280, 2281, 5, 138, 0, 0, 2281, 2282, 3, 722, 361, 0, 2282, 2283, 3, 1370, 685, 0, 2283, 2284, 5, 326, 0, 0, 2284, 2285, 5, 338, 0, 0, 2285, 2286, 3, 1370, 685, 0, 2286, 2458, 1, 0, 0, 0, 2287, 2288, 5, 138, 0, 0, 2288, 2289, 3, 722, 361, 0, 2289, 2290, 3, 1370, 685, 0, 2290, 2291, 5, 133, 0, 0, 2291, 2292, 5, 438, 0, 0, 2292, 2293, 3, 196, 98, 0, 2293, 2294, 5, 36, 0, 0, 2294, 2295, 5, 219, 0, 0, 2295, 2296, 3, 282, 141, 0, 2296, 2458, 1, 0, 0, 0, 2297, 2298, 5, 138, 0, 0, 2298, 2299, 3, 722, 361, 0, 2299, 2300, 3, 1370, 685, 0, 2300, 2301, 3, 122, 61, 0, 2301, 2458, 1, 0, 0, 0, 2302, 2303, 5, 138, 0, 0, 2303, 2304, 3, 722, 361, 0, 2304, 2305, 3, 1370, 685, 0, 2305, 2306, 5, 191, 0, 0, 2306, 2307, 5, 219, 0, 0, 2307, 2458, 1, 0, 0, 0, 2308, 2309, 5, 138, 0, 0, 2309, 2310, 3, 722, 361, 0, 2310, 2311, 3, 1370, 685, 0, 2311, 2312, 5, 191, 0, 0, 2312, 2313, 5, 219, 0, 0, 2313, 2314, 5, 220, 0, 0, 2314, 2315, 5, 389, 0, 0, 2315, 2458, 1, 0, 0, 0, 2316, 2317, 5, 191, 0, 0, 2317, 2318, 3, 722, 361, 0, 2318, 2319, 5, 220, 0, 0, 2319, 2320, 5, 389, 0, 0, 2320, 2321, 3, 1370, 685, 0, 2321, 2322, 3, 106, 53, 0, 2322, 2458, 1, 0, 0, 0, 2323, 2324, 5, 191, 0, 0, 2324, 2325, 3, 722, 361, 0, 2325, 2326, 3, 1370, 685, 0, 2326, 2327, 3, 106, 53, 0, 2327, 2458, 1, 0, 0, 0, 2328, 2329, 5, 138, 0, 0, 2329, 2330, 3, 722, 361, 0, 2330, 2331, 3, 1370, 685, 0, 2331, 2332, 3, 724, 362, 0, 2332, 2333, 5, 353, 0, 0, 2333, 2334, 3, 1116, 558, 0, 2334, 2335, 3, 108, 54, 0, 2335, 2336, 3, 110, 55, 0, 2336, 2458, 1, 0, 0, 0, 2337, 2338, 5, 138, 0, 0, 2338, 2339, 3, 722, 361, 0, 2339, 2340, 3, 1370, 685, 0, 2340, 2341, 3, 342, 171, 0, 2341, 2458, 1, 0, 0, 0, 2342, 2343, 5, 133, 0, 0, 2343, 2458, 3, 206, 103, 0, 2344, 2345, 5, 138, 0, 0, 2345, 2346, 5, 45, 0, 0, 2346, 2347, 3, 1338, 669, 0, 2347, 2348, 3, 438, 219, 0, 2348, 2458, 1, 0, 0, 0, 2349, 2350, 5, 365, 0, 0, 2350, 2351, 5, 45, 0, 0, 2351, 2458, 3, 1338, 669, 0, 2352, 2353, 5, 191, 0, 0, 2353, 2354, 5, 45, 0, 0, 2354, 2355, 5, 220, 0, 0, 2355, 2356, 5, 389, 0, 0, 2356, 2357, 3, 1338, 669, 0, 2357, 2358, 3, 106, 53, 0, 2358, 2458, 1, 0, 0, 0, 2359, 2360, 5, 191, 0, 0, 2360, 2361, 5, 45, 0, 0, 2361, 2362, 3, 1338, 669, 0, 2362, 2363, 3, 106, 53, 0, 2363, 2458, 1, 0, 0, 0, 2364, 2365, 5, 326, 0, 0, 2365, 2366, 5, 372, 0, 0, 2366, 2458, 5, 270, 0, 0, 2367, 2368, 5, 158, 0, 0, 2368, 2369, 5, 80, 0, 0, 2369, 2458, 3, 1338, 669, 0, 2370, 2371, 5, 326, 0, 0, 2371, 2372, 5, 372, 0, 0, 2372, 2458, 5, 158, 0, 0, 2373, 2374, 5, 326, 0, 0, 2374, 2458, 5, 439, 0, 0, 2375, 2376, 5, 326, 0, 0, 2376, 2458, 5, 360, 0, 0, 2377, 2378, 5, 193, 0, 0, 2378, 2379, 5, 350, 0, 0, 2379, 2458, 3, 1338, 669, 0, 2380, 2381, 5, 193, 0, 0, 2381, 2382, 5, 139, 0, 0, 2382, 2383, 5, 350, 0, 0, 2383, 2458, 3, 1338, 669, 0, 2384, 2385, 5, 193, 0, 0, 2385, 2386, 5, 305, 0, 0, 2386, 2387, 5, 350, 0, 0, 2387, 2458, 3, 1338, 669, 0, 2388, 2389, 5, 193, 0, 0, 2389, 2390, 5, 350, 0, 0, 2390, 2458, 5, 30, 0, 0, 2391, 2392, 5, 193, 0, 0, 2392, 2393, 5, 350, 0, 0, 2393, 2458, 5, 99, 0, 0, 2394, 2395, 5, 186, 0, 0, 2395, 2396, 5, 350, 0, 0, 2396, 2458, 3, 1338, 669, 0, 2397, 2398, 5, 186, 0, 0, 2398, 2399, 5, 350, 0, 0, 2399, 2458, 5, 30, 0, 0, 2400, 2401, 5, 186, 0, 0, 2401, 2402, 5, 350, 0, 0, 2402, 2458, 5, 99, 0, 0, 2403, 2404, 5, 193, 0, 0, 2404, 2405, 5, 314, 0, 0, 2405, 2458, 3, 1338, 669, 0, 2406, 2407, 5, 193, 0, 0, 2407, 2408, 5, 139, 0, 0, 2408, 2409, 5, 314, 0, 0, 2409, 2458, 3, 1338, 669, 0, 2410, 2411, 5, 193, 0, 0, 2411, 2412, 5, 305, 0, 0, 2412, 2413, 5, 314, 0, 0, 2413, 2458, 3, 1338, 669, 0, 2414, 2415, 5, 186, 0, 0, 2415, 2416, 5, 314, 0, 0, 2416, 2458, 3, 1338, 669, 0, 2417, 2418, 5, 228, 0, 0, 2418, 2458, 3, 1334, 667, 0, 2419, 2420, 5, 262, 0, 0, 2420, 2421, 5, 228, 0, 0, 2421, 2458, 3, 1334, 667, 0, 2422, 2423, 5, 268, 0, 0, 2423, 2458, 3, 522, 261, 0, 2424, 2425, 5, 77, 0, 0, 2425, 2458, 5, 268, 0, 0, 2426, 2427, 5, 275, 0, 0, 2427, 2428, 5, 94, 0, 0, 2428, 2458, 3, 1366, 683, 0, 2429, 2430, 5, 326, 0, 0, 2430, 2431, 5, 344, 0, 0, 2431, 2458, 3, 1338, 669, 0, 2432, 2433, 5, 326, 0, 0, 2433, 2458, 3, 114, 57, 0, 2434, 2435, 5, 306, 0, 0, 2435, 2458, 3, 114, 57, 0, 2436, 2437, 5, 305, 0, 0, 2437, 2438, 5, 219, 0, 0, 2438, 2458, 3, 112, 56, 0, 2439, 2440, 5, 193, 0, 0, 2440, 2441, 5, 407, 0, 0, 2441, 2442, 5, 242, 0, 0, 2442, 2458, 5, 320, 0, 0, 2443, 2444, 5, 186, 0, 0, 2444, 2445, 5, 407, 0, 0, 2445, 2446, 5, 242, 0, 0, 2446, 2458, 5, 320, 0, 0, 2447, 2448, 5, 209, 0, 0, 2448, 2449, 5, 407, 0, 0, 2449, 2450, 5, 242, 0, 0, 2450, 2458, 5, 320, 0, 0, 2451, 2452, 5, 262, 0, 0, 2452, 2453, 5, 209, 0, 0, 2453, 2454, 5, 407, 0, 0, 2454, 2455, 5, 242, 0, 0, 2455, 2458, 5, 320, 0, 0, 2456, 2458, 3, 342, 171, 0, 2457, 2205, 1, 0, 0, 0, 2457, 2207, 1, 0, 0, 0, 2457, 2212, 1, 0, 0, 0, 2457, 2215, 1, 0, 0, 0, 2457, 2221, 1, 0, 0, 0, 2457, 2226, 1, 0, 0, 0, 2457, 2233, 1, 0, 0, 0, 2457, 2240, 1, 0, 0, 0, 2457, 2246, 1, 0, 0, 0, 2457, 2254, 1, 0, 0, 0, 2457, 2261, 1, 0, 0, 0, 2457, 2268, 1, 0, 0, 0, 2457, 2274, 1, 0, 0, 0, 2457, 2280, 1, 0, 0, 0, 2457, 2287, 1, 0, 0, 0, 2457, 2297, 1, 0, 0, 0, 2457, 2302, 1, 0, 0, 0, 2457, 2308, 1, 0, 0, 0, 2457, 2316, 1, 0, 0, 0, 2457, 2323, 1, 0, 0, 0, 2457, 2328, 1, 0, 0, 0, 2457, 2337, 1, 0, 0, 0, 2457, 2342, 1, 0, 0, 0, 2457, 2344, 1, 0, 0, 0, 2457, 2349, 1, 0, 0, 0, 2457, 2352, 1, 0, 0, 0, 2457, 2359, 1, 0, 0, 0, 2457, 2364, 1, 0, 0, 0, 2457, 2367, 1, 0, 0, 0, 2457, 2370, 1, 0, 0, 0, 2457, 2373, 1, 0, 0, 0, 2457, 2375, 1, 0, 0, 0, 2457, 2377, 1, 0, 0, 0, 2457, 2380, 1, 0, 0, 0, 2457, 2384, 1, 0, 0, 0, 2457, 2388, 1, 0, 0, 0, 2457, 2391, 1, 0, 0, 0, 2457, 2394, 1, 0, 0, 0, 2457, 2397, 1, 0, 0, 0, 2457, 2400, 1, 0, 0, 0, 2457, 2403, 1, 0, 0, 0, 2457, 2406, 1, 0, 0, 0, 2457, 2410, 1, 0, 0, 0, 2457, 2414, 1, 0, 0, 0, 2457, 2417, 1, 0, 0, 0, 2457, 2419, 1, 0, 0, 0, 2457, 2422, 1, 0, 0, 0, 2457, 2424, 1, 0, 0, 0, 2457, 2426, 1, 0, 0, 0, 2457, 2429, 1, 0, 0, 0, 2457, 2432, 1, 0, 0, 0, 2457, 2434, 1, 0, 0, 0, 2457, 2436, 1, 0, 0, 0, 2457, 2439, 1, 0, 0, 0, 2457, 2443, 1, 0, 0, 0, 2457, 2447, 1, 0, 0, 0, 2457, 2451, 1, 0, 0, 0, 2457, 2456, 1, 0, 0, 0, 2458, 103, 1, 0, 0, 0, 2459, 2460, 5, 326, 0, 0, 2460, 2461, 5, 53, 0, 0, 2461, 2465, 3, 1160, 580, 0, 2462, 2463, 5, 191, 0, 0, 2463, 2465, 5, 53, 0, 0, 2464, 2459, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 105, 1, 0, 0, 0, 2466, 2470, 5, 150, 0, 0, 2467, 2470, 5, 308, 0, 0, 2468, 2470, 1, 0, 0, 0, 2469, 2466, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2468, 1, 0, 0, 0, 2470, 107, 1, 0, 0, 0, 2471, 2472, 5, 43, 0, 0, 2472, 2475, 3, 522, 261, 0, 2473, 2475, 1, 0, 0, 0, 2474, 2471, 1, 0, 0, 0, 2474, 2473, 1, 0, 0, 0, 2475, 109, 1, 0, 0, 0, 2476, 2477, 5, 100, 0, 0, 2477, 2480, 3, 1160, 580, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2476, 1, 0, 0, 0, 2479, 2478, 1, 0, 0, 0, 2480, 111, 1, 0, 0, 0, 2481, 2488, 5, 263, 0, 0, 2482, 2488, 5, 113, 0, 0, 2483, 2488, 5, 53, 0, 0, 2484, 2485, 5, 100, 0, 0, 2485, 2486, 5, 226, 0, 0, 2486, 2488, 3, 1338, 669, 0, 2487, 2481, 1, 0, 0, 0, 2487, 2482, 1, 0, 0, 0, 2487, 2483, 1, 0, 0, 0, 2487, 2484, 1, 0, 0, 0, 2488, 113, 1, 0, 0, 0, 2489, 2490, 5, 2, 0, 0, 2490, 2491, 3, 118, 59, 0, 2491, 2492, 5, 3, 0, 0, 2492, 115, 1, 0, 0, 0, 2493, 2494, 5, 105, 0, 0, 2494, 2497, 3, 114, 57, 0, 2495, 2497, 1, 0, 0, 0, 2496, 2493, 1, 0, 0, 0, 2496, 2495, 1, 0, 0, 0, 2497, 117, 1, 0, 0, 0, 2498, 2503, 3, 120, 60, 0, 2499, 2500, 5, 6, 0, 0, 2500, 2502, 3, 120, 60, 0, 2501, 2499, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 119, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2515, 3, 1378, 689, 0, 2507, 2508, 5, 10, 0, 0, 2508, 2516, 3, 464, 232, 0, 2509, 2510, 5, 11, 0, 0, 2510, 2513, 3, 1378, 689, 0, 2511, 2512, 5, 10, 0, 0, 2512, 2514, 3, 464, 232, 0, 2513, 2511, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2516, 1, 0, 0, 0, 2515, 2507, 1, 0, 0, 0, 2515, 2509, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 121, 1, 0, 0, 0, 2517, 2519, 3, 124, 62, 0, 2518, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 123, 1, 0, 0, 0, 2522, 2526, 5, 307, 0, 0, 2523, 2524, 3, 14, 7, 0, 2524, 2525, 3, 290, 145, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2523, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2535, 1, 0, 0, 0, 2528, 2532, 5, 326, 0, 0, 2529, 2533, 3, 286, 143, 0, 2530, 2531, 5, 438, 0, 0, 2531, 2533, 3, 196, 98, 0, 2532, 2529, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2522, 1, 0, 0, 0, 2534, 2528, 1, 0, 0, 0, 2535, 125, 1, 0, 0, 0, 2536, 2537, 5, 62, 0, 0, 2537, 2538, 5, 415, 0, 0, 2538, 2539, 5, 105, 0, 0, 2539, 2540, 5, 2, 0, 0, 2540, 2541, 3, 130, 65, 0, 2541, 2542, 5, 3, 0, 0, 2542, 2563, 1, 0, 0, 0, 2543, 2544, 5, 62, 0, 0, 2544, 2545, 5, 415, 0, 0, 2545, 2546, 5, 68, 0, 0, 2546, 2547, 5, 2, 0, 0, 2547, 2548, 3, 1278, 639, 0, 2548, 2549, 5, 3, 0, 0, 2549, 2563, 1, 0, 0, 0, 2550, 2551, 5, 62, 0, 0, 2551, 2552, 5, 415, 0, 0, 2552, 2553, 5, 64, 0, 0, 2553, 2554, 5, 2, 0, 0, 2554, 2555, 3, 1278, 639, 0, 2555, 2556, 5, 3, 0, 0, 2556, 2557, 5, 94, 0, 0, 2557, 2558, 5, 2, 0, 0, 2558, 2559, 3, 1278, 639, 0, 2559, 2560, 5, 3, 0, 0, 2560, 2563, 1, 0, 0, 0, 2561, 2563, 5, 53, 0, 0, 2562, 2536, 1, 0, 0, 0, 2562, 2543, 1, 0, 0, 0, 2562, 2550, 1, 0, 0, 0, 2562, 2561, 1, 0, 0, 0, 2563, 127, 1, 0, 0, 0, 2564, 2565, 3, 1376, 688, 0, 2565, 2566, 3, 1354, 677, 0, 2566, 129, 1, 0, 0, 0, 2567, 2572, 3, 128, 64, 0, 2568, 2569, 5, 6, 0, 0, 2569, 2571, 3, 128, 64, 0, 2570, 2568, 1, 0, 0, 0, 2571, 2574, 1, 0, 0, 0, 2572, 2570, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 131, 1, 0, 0, 0, 2574, 2572, 1, 0, 0, 0, 2575, 2576, 5, 138, 0, 0, 2576, 2577, 5, 353, 0, 0, 2577, 2578, 3, 522, 261, 0, 2578, 2579, 3, 134, 67, 0, 2579, 133, 1, 0, 0, 0, 2580, 2585, 3, 136, 68, 0, 2581, 2582, 5, 6, 0, 0, 2582, 2584, 3, 136, 68, 0, 2583, 2581, 1, 0, 0, 0, 2584, 2587, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 135, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2589, 5, 133, 0, 0, 2589, 2590, 5, 143, 0, 0, 2590, 2591, 3, 1100, 550, 0, 2591, 2592, 3, 106, 53, 0, 2592, 2612, 1, 0, 0, 0, 2593, 2594, 5, 191, 0, 0, 2594, 2597, 5, 143, 0, 0, 2595, 2596, 5, 220, 0, 0, 2596, 2598, 5, 389, 0, 0, 2597, 2595, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 1370, 685, 0, 2600, 2601, 3, 106, 53, 0, 2601, 2612, 1, 0, 0, 0, 2602, 2603, 5, 138, 0, 0, 2603, 2604, 5, 143, 0, 0, 2604, 2605, 3, 1370, 685, 0, 2605, 2606, 3, 724, 362, 0, 2606, 2607, 5, 353, 0, 0, 2607, 2608, 3, 1116, 558, 0, 2608, 2609, 3, 108, 54, 0, 2609, 2610, 3, 106, 53, 0, 2610, 2612, 1, 0, 0, 0, 2611, 2588, 1, 0, 0, 0, 2611, 2593, 1, 0, 0, 0, 2611, 2602, 1, 0, 0, 0, 2612, 137, 1, 0, 0, 0, 2613, 2616, 5, 157, 0, 0, 2614, 2617, 3, 952, 476, 0, 2615, 2617, 5, 30, 0, 0, 2616, 2614, 1, 0, 0, 0, 2616, 2615, 1, 0, 0, 0, 2617, 139, 1, 0, 0, 0, 2618, 2619, 5, 169, 0, 0, 2619, 2620, 3, 154, 77, 0, 2620, 2621, 3, 1334, 667, 0, 2621, 2622, 3, 212, 106, 0, 2622, 2623, 3, 142, 71, 0, 2623, 2624, 3, 144, 72, 0, 2624, 2625, 3, 146, 73, 0, 2625, 2626, 3, 156, 78, 0, 2626, 2627, 3, 14, 7, 0, 2627, 2628, 3, 148, 74, 0, 2628, 2629, 3, 1092, 546, 0, 2629, 2641, 1, 0, 0, 0, 2630, 2631, 5, 169, 0, 0, 2631, 2632, 5, 2, 0, 0, 2632, 2633, 3, 892, 446, 0, 2633, 2634, 5, 3, 0, 0, 2634, 2635, 5, 94, 0, 0, 2635, 2636, 3, 144, 72, 0, 2636, 2637, 3, 146, 73, 0, 2637, 2638, 3, 14, 7, 0, 2638, 2639, 3, 148, 74, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2618, 1, 0, 0, 0, 2640, 2630, 1, 0, 0, 0, 2641, 141, 1, 0, 0, 0, 2642, 2643, 7, 10, 0, 0, 2643, 143, 1, 0, 0, 0, 2644, 2647, 5, 290, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2645, 1, 0, 0, 0, 2647, 145, 1, 0, 0, 0, 2648, 2652, 3, 1356, 678, 0, 2649, 2652, 5, 336, 0, 0, 2650, 2652, 5, 337, 0, 0, 2651, 2648, 1, 0, 0, 0, 2651, 2649, 1, 0, 0, 0, 2651, 2650, 1, 0, 0, 0, 2652, 147, 1, 0, 0, 0, 2653, 2659, 3, 150, 75, 0, 2654, 2655, 5, 2, 0, 0, 2655, 2656, 3, 160, 80, 0, 2656, 2657, 5, 3, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2653, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2659, 149, 1, 0, 0, 0, 2660, 2662, 3, 152, 76, 0, 2661, 2660, 1, 0, 0, 0, 2662, 2665, 1, 0, 0, 0, 2663, 2661, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 151, 1, 0, 0, 0, 2665, 2663, 1, 0, 0, 0, 2666, 2702, 5, 107, 0, 0, 2667, 2702, 5, 112, 0, 0, 2668, 2669, 5, 183, 0, 0, 2669, 2670, 3, 832, 416, 0, 2670, 2671, 3, 1356, 678, 0, 2671, 2702, 1, 0, 0, 0, 2672, 2673, 5, 78, 0, 0, 2673, 2674, 3, 832, 416, 0, 2674, 2675, 3, 1356, 678, 0, 2675, 2702, 1, 0, 0, 0, 2676, 2702, 5, 171, 0, 0, 2677, 2702, 5, 216, 0, 0, 2678, 2679, 5, 291, 0, 0, 2679, 2680, 3, 832, 416, 0, 2680, 2681, 3, 1356, 678, 0, 2681, 2702, 1, 0, 0, 0, 2682, 2683, 5, 197, 0, 0, 2683, 2684, 3, 832, 416, 0, 2684, 2685, 3, 1356, 678, 0, 2685, 2702, 1, 0, 0, 0, 2686, 2687, 5, 209, 0, 0, 2687, 2688, 5, 291, 0, 0, 2688, 2702, 3, 214, 107, 0, 2689, 2690, 5, 209, 0, 0, 2690, 2691, 5, 291, 0, 0, 2691, 2702, 5, 9, 0, 0, 2692, 2693, 5, 209, 0, 0, 2693, 2694, 5, 77, 0, 0, 2694, 2695, 5, 78, 0, 0, 2695, 2702, 3, 214, 107, 0, 2696, 2697, 5, 209, 0, 0, 2697, 2698, 5, 78, 0, 0, 2698, 2702, 3, 214, 107, 0, 2699, 2700, 5, 194, 0, 0, 2700, 2702, 3, 1356, 678, 0, 2701, 2666, 1, 0, 0, 0, 2701, 2667, 1, 0, 0, 0, 2701, 2668, 1, 0, 0, 0, 2701, 2672, 1, 0, 0, 0, 2701, 2676, 1, 0, 0, 0, 2701, 2677, 1, 0, 0, 0, 2701, 2678, 1, 0, 0, 0, 2701, 2682, 1, 0, 0, 0, 2701, 2686, 1, 0, 0, 0, 2701, 2689, 1, 0, 0, 0, 2701, 2692, 1, 0, 0, 0, 2701, 2696, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2702, 153, 1, 0, 0, 0, 2703, 2706, 5, 107, 0, 0, 2704, 2706, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2704, 1, 0, 0, 0, 2706, 155, 1, 0, 0, 0, 2707, 2708, 3, 158, 79, 0, 2708, 2709, 5, 184, 0, 0, 2709, 2710, 3, 1356, 678, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2713, 1, 0, 0, 0, 2712, 2707, 1, 0, 0, 0, 2712, 2711, 1, 0, 0, 0, 2713, 157, 1, 0, 0, 0, 2714, 2717, 5, 100, 0, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 159, 1, 0, 0, 0, 2718, 2723, 3, 162, 81, 0, 2719, 2720, 5, 6, 0, 0, 2720, 2722, 3, 162, 81, 0, 2721, 2719, 1, 0, 0, 0, 2722, 2725, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 161, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2726, 2727, 3, 1378, 689, 0, 2727, 2728, 3, 164, 82, 0, 2728, 163, 1, 0, 0, 0, 2729, 2738, 3, 64, 32, 0, 2730, 2738, 3, 290, 145, 0, 2731, 2738, 5, 9, 0, 0, 2732, 2733, 5, 2, 0, 0, 2733, 2734, 3, 166, 83, 0, 2734, 2735, 5, 3, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2730, 1, 0, 0, 0, 2737, 2731, 1, 0, 0, 0, 2737, 2732, 1, 0, 0, 0, 2737, 2736, 1, 0, 0, 0, 2738, 165, 1, 0, 0, 0, 2739, 2744, 3, 168, 84, 0, 2740, 2741, 5, 6, 0, 0, 2741, 2743, 3, 168, 84, 0, 2742, 2740, 1, 0, 0, 0, 2743, 2746, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 167, 1, 0, 0, 0, 2746, 2744, 1, 0, 0, 0, 2747, 2748, 3, 64, 32, 0, 2748, 169, 1, 0, 0, 0, 2749, 2750, 5, 46, 0, 0, 2750, 2751, 3, 172, 86, 0, 2751, 2755, 5, 92, 0, 0, 2752, 2753, 5, 220, 0, 0, 2753, 2754, 5, 77, 0, 0, 2754, 2756, 5, 389, 0, 0, 2755, 2752, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2788, 3, 1334, 667, 0, 2758, 2759, 5, 2, 0, 0, 2759, 2760, 3, 174, 87, 0, 2760, 2761, 5, 3, 0, 0, 2761, 2762, 3, 236, 118, 0, 2762, 2763, 3, 238, 119, 0, 2763, 2764, 3, 246, 123, 0, 2764, 2765, 3, 248, 124, 0, 2765, 2766, 3, 250, 125, 0, 2766, 2767, 3, 252, 126, 0, 2767, 2789, 1, 0, 0, 0, 2768, 2769, 5, 268, 0, 0, 2769, 2770, 3, 522, 261, 0, 2770, 2771, 3, 176, 88, 0, 2771, 2772, 3, 238, 119, 0, 2772, 2773, 3, 246, 123, 0, 2773, 2774, 3, 248, 124, 0, 2774, 2775, 3, 250, 125, 0, 2775, 2776, 3, 252, 126, 0, 2776, 2789, 1, 0, 0, 0, 2777, 2778, 5, 278, 0, 0, 2778, 2779, 5, 268, 0, 0, 2779, 2780, 3, 1334, 667, 0, 2780, 2781, 3, 176, 88, 0, 2781, 2782, 3, 126, 63, 0, 2782, 2783, 3, 238, 119, 0, 2783, 2784, 3, 246, 123, 0, 2784, 2785, 3, 248, 124, 0, 2785, 2786, 3, 250, 125, 0, 2786, 2787, 3, 252, 126, 0, 2787, 2789, 1, 0, 0, 0, 2788, 2758, 1, 0, 0, 0, 2788, 2768, 1, 0, 0, 0, 2788, 2777, 1, 0, 0, 0, 2789, 171, 1, 0, 0, 0, 2790, 2799, 5, 347, 0, 0, 2791, 2799, 5, 345, 0, 0, 2792, 2793, 5, 245, 0, 0, 2793, 2799, 7, 11, 0, 0, 2794, 2795, 5, 213, 0, 0, 2795, 2799, 7, 11, 0, 0, 2796, 2799, 5, 360, 0, 0, 2797, 2799, 1, 0, 0, 0, 2798, 2790, 1, 0, 0, 0, 2798, 2791, 1, 0, 0, 0, 2798, 2792, 1, 0, 0, 0, 2798, 2794, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2797, 1, 0, 0, 0, 2799, 173, 1, 0, 0, 0, 2800, 2803, 3, 178, 89, 0, 2801, 2803, 1, 0, 0, 0, 2802, 2800, 1, 0, 0, 0, 2802, 2801, 1, 0, 0, 0, 2803, 175, 1, 0, 0, 0, 2804, 2805, 5, 2, 0, 0, 2805, 2806, 3, 180, 90, 0, 2806, 2807, 5, 3, 0, 0, 2807, 2810, 1, 0, 0, 0, 2808, 2810, 1, 0, 0, 0, 2809, 2804, 1, 0, 0, 0, 2809, 2808, 1, 0, 0, 0, 2810, 177, 1, 0, 0, 0, 2811, 2816, 3, 182, 91, 0, 2812, 2813, 5, 6, 0, 0, 2813, 2815, 3, 182, 91, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 179, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2824, 3, 184, 92, 0, 2820, 2821, 5, 6, 0, 0, 2821, 2823, 3, 184, 92, 0, 2822, 2820, 1, 0, 0, 0, 2823, 2826, 1, 0, 0, 0, 2824, 2822, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 181, 1, 0, 0, 0, 2826, 2824, 1, 0, 0, 0, 2827, 2831, 3, 206, 103, 0, 2828, 2831, 3, 200, 100, 0, 2829, 2831, 3, 186, 93, 0, 2830, 2827, 1, 0, 0, 0, 2830, 2828, 1, 0, 0, 0, 2830, 2829, 1, 0, 0, 0, 2831, 183, 1, 0, 0, 0, 2832, 2835, 3, 188, 94, 0, 2833, 2835, 3, 206, 103, 0, 2834, 2832, 1, 0, 0, 0, 2834, 2833, 1, 0, 0, 0, 2835, 185, 1, 0, 0, 0, 2836, 2837, 3, 1370, 685, 0, 2837, 2838, 3, 1116, 558, 0, 2838, 2839, 3, 338, 169, 0, 2839, 2840, 3, 190, 95, 0, 2840, 187, 1, 0, 0, 0, 2841, 2844, 3, 1370, 685, 0, 2842, 2843, 5, 105, 0, 0, 2843, 2845, 5, 273, 0, 0, 2844, 2842, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 3, 190, 95, 0, 2847, 189, 1, 0, 0, 0, 2848, 2850, 3, 192, 96, 0, 2849, 2848, 1, 0, 0, 0, 2850, 2853, 1, 0, 0, 0, 2851, 2849, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 191, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2854, 2855, 5, 45, 0, 0, 2855, 2856, 3, 1338, 669, 0, 2856, 2857, 3, 194, 97, 0, 2857, 2863, 1, 0, 0, 0, 2858, 2863, 3, 194, 97, 0, 2859, 2863, 3, 198, 99, 0, 2860, 2861, 5, 43, 0, 0, 2861, 2863, 3, 522, 261, 0, 2862, 2854, 1, 0, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2859, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 193, 1, 0, 0, 0, 2864, 2865, 5, 77, 0, 0, 2865, 2903, 5, 78, 0, 0, 2866, 2903, 5, 78, 0, 0, 2867, 2868, 5, 98, 0, 0, 2868, 2869, 3, 662, 331, 0, 2869, 2870, 3, 254, 127, 0, 2870, 2903, 1, 0, 0, 0, 2871, 2872, 5, 85, 0, 0, 2872, 2873, 5, 236, 0, 0, 2873, 2874, 3, 662, 331, 0, 2874, 2875, 3, 254, 127, 0, 2875, 2903, 1, 0, 0, 0, 2876, 2877, 5, 42, 0, 0, 2877, 2878, 5, 2, 0, 0, 2878, 2879, 3, 1160, 580, 0, 2879, 2880, 5, 3, 0, 0, 2880, 2881, 3, 210, 105, 0, 2881, 2903, 1, 0, 0, 0, 2882, 2883, 5, 53, 0, 0, 2883, 2903, 3, 1202, 601, 0, 2884, 2885, 5, 438, 0, 0, 2885, 2886, 3, 196, 98, 0, 2886, 2894, 5, 36, 0, 0, 2887, 2888, 5, 219, 0, 0, 2888, 2895, 3, 282, 141, 0, 2889, 2890, 5, 2, 0, 0, 2890, 2891, 3, 1160, 580, 0, 2891, 2892, 5, 3, 0, 0, 2892, 2893, 5, 440, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2887, 1, 0, 0, 0, 2894, 2889, 1, 0, 0, 0, 2895, 2903, 1, 0, 0, 0, 2896, 2897, 5, 86, 0, 0, 2897, 2898, 3, 1334, 667, 0, 2898, 2899, 3, 212, 106, 0, 2899, 2900, 3, 220, 110, 0, 2900, 2901, 3, 228, 114, 0, 2901, 2903, 1, 0, 0, 0, 2902, 2864, 1, 0, 0, 0, 2902, 2866, 1, 0, 0, 0, 2902, 2867, 1, 0, 0, 0, 2902, 2871, 1, 0, 0, 0, 2902, 2876, 1, 0, 0, 0, 2902, 2882, 1, 0, 0, 0, 2902, 2884, 1, 0, 0, 0, 2902, 2896, 1, 0, 0, 0, 2903, 195, 1, 0, 0, 0, 2904, 2908, 5, 139, 0, 0, 2905, 2906, 5, 147, 0, 0, 2906, 2908, 5, 53, 0, 0, 2907, 2904, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2908, 197, 1, 0, 0, 0, 2909, 2915, 5, 54, 0, 0, 2910, 2911, 5, 77, 0, 0, 2911, 2915, 5, 54, 0, 0, 2912, 2913, 5, 69, 0, 0, 2913, 2915, 7, 8, 0, 0, 2914, 2909, 1, 0, 0, 0, 2914, 2910, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2915, 199, 1, 0, 0, 0, 2916, 2917, 5, 120, 0, 0, 2917, 2918, 3, 1334, 667, 0, 2918, 2919, 3, 202, 101, 0, 2919, 201, 1, 0, 0, 0, 2920, 2921, 7, 12, 0, 0, 2921, 2923, 3, 204, 102, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2926, 1, 0, 0, 0, 2924, 2922, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 203, 1, 0, 0, 0, 2926, 2924, 1, 0, 0, 0, 2927, 2928, 7, 13, 0, 0, 2928, 205, 1, 0, 0, 0, 2929, 2930, 5, 45, 0, 0, 2930, 2931, 3, 1338, 669, 0, 2931, 2932, 3, 208, 104, 0, 2932, 2935, 1, 0, 0, 0, 2933, 2935, 3, 208, 104, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2933, 1, 0, 0, 0, 2935, 207, 1, 0, 0, 0, 2936, 2937, 5, 42, 0, 0, 2937, 2938, 5, 2, 0, 0, 2938, 2939, 3, 1160, 580, 0, 2939, 2940, 5, 3, 0, 0, 2940, 2941, 3, 438, 219, 0, 2941, 2995, 1, 0, 0, 0, 2942, 2954, 5, 98, 0, 0, 2943, 2944, 5, 2, 0, 0, 2944, 2945, 3, 214, 107, 0, 2945, 2946, 5, 3, 0, 0, 2946, 2947, 3, 218, 109, 0, 2947, 2948, 3, 662, 331, 0, 2948, 2949, 3, 254, 127, 0, 2949, 2950, 3, 438, 219, 0, 2950, 2955, 1, 0, 0, 0, 2951, 2952, 3, 256, 128, 0, 2952, 2953, 3, 438, 219, 0, 2953, 2955, 1, 0, 0, 0, 2954, 2943, 1, 0, 0, 0, 2954, 2951, 1, 0, 0, 0, 2955, 2995, 1, 0, 0, 0, 2956, 2957, 5, 85, 0, 0, 2957, 2969, 5, 236, 0, 0, 2958, 2959, 5, 2, 0, 0, 2959, 2960, 3, 214, 107, 0, 2960, 2961, 5, 3, 0, 0, 2961, 2962, 3, 218, 109, 0, 2962, 2963, 3, 662, 331, 0, 2963, 2964, 3, 254, 127, 0, 2964, 2965, 3, 438, 219, 0, 2965, 2970, 1, 0, 0, 0, 2966, 2967, 3, 256, 128, 0, 2967, 2968, 3, 438, 219, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2958, 1, 0, 0, 0, 2969, 2966, 1, 0, 0, 0, 2970, 2995, 1, 0, 0, 0, 2971, 2972, 5, 199, 0, 0, 2972, 2973, 3, 594, 297, 0, 2973, 2974, 5, 2, 0, 0, 2974, 2975, 3, 222, 111, 0, 2975, 2976, 5, 3, 0, 0, 2976, 2977, 3, 218, 109, 0, 2977, 2978, 3, 662, 331, 0, 2978, 2979, 3, 254, 127, 0, 2979, 2980, 3, 226, 113, 0, 2980, 2981, 3, 438, 219, 0, 2981, 2995, 1, 0, 0, 0, 2982, 2983, 5, 63, 0, 0, 2983, 2984, 5, 236, 0, 0, 2984, 2985, 5, 2, 0, 0, 2985, 2986, 3, 214, 107, 0, 2986, 2987, 5, 3, 0, 0, 2987, 2988, 5, 86, 0, 0, 2988, 2989, 3, 1334, 667, 0, 2989, 2990, 3, 212, 106, 0, 2990, 2991, 3, 220, 110, 0, 2991, 2992, 3, 228, 114, 0, 2992, 2993, 3, 438, 219, 0, 2993, 2995, 1, 0, 0, 0, 2994, 2936, 1, 0, 0, 0, 2994, 2942, 1, 0, 0, 0, 2994, 2956, 1, 0, 0, 0, 2994, 2971, 1, 0, 0, 0, 2994, 2982, 1, 0, 0, 0, 2995, 209, 1, 0, 0, 0, 2996, 2997, 5, 262, 0, 0, 2997, 3000, 5, 228, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2996, 1, 0, 0, 0, 2999, 2998, 1, 0, 0, 0, 3000, 211, 1, 0, 0, 0, 3001, 3002, 5, 2, 0, 0, 3002, 3003, 3, 214, 107, 0, 3003, 3004, 5, 3, 0, 0, 3004, 3007, 1, 0, 0, 0, 3005, 3007, 1, 0, 0, 0, 3006, 3001, 1, 0, 0, 0, 3006, 3005, 1, 0, 0, 0, 3007, 213, 1, 0, 0, 0, 3008, 3013, 3, 216, 108, 0, 3009, 3010, 5, 6, 0, 0, 3010, 3012, 3, 216, 108, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3015, 1, 0, 0, 0, 3013, 3011, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 215, 1, 0, 0, 0, 3015, 3013, 1, 0, 0, 0, 3016, 3017, 3, 1370, 685, 0, 3017, 217, 1, 0, 0, 0, 3018, 3019, 5, 441, 0, 0, 3019, 3020, 5, 2, 0, 0, 3020, 3021, 3, 214, 107, 0, 3021, 3022, 5, 3, 0, 0, 3022, 3025, 1, 0, 0, 0, 3023, 3025, 1, 0, 0, 0, 3024, 3018, 1, 0, 0, 0, 3024, 3023, 1, 0, 0, 0, 3025, 219, 1, 0, 0, 0, 3026, 3027, 5, 249, 0, 0, 3027, 3030, 7, 14, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3026, 1, 0, 0, 0, 3029, 3028, 1, 0, 0, 0, 3030, 221, 1, 0, 0, 0, 3031, 3036, 3, 224, 112, 0, 3032, 3033, 5, 6, 0, 0, 3033, 3035, 3, 224, 112, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3038, 1, 0, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 223, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3039, 3040, 3, 600, 300, 0, 3040, 3047, 5, 105, 0, 0, 3041, 3048, 3, 682, 341, 0, 3042, 3043, 5, 271, 0, 0, 3043, 3044, 5, 2, 0, 0, 3044, 3045, 3, 682, 341, 0, 3045, 3046, 5, 3, 0, 0, 3046, 3048, 1, 0, 0, 0, 3047, 3041, 1, 0, 0, 0, 3047, 3042, 1, 0, 0, 0, 3048, 225, 1, 0, 0, 0, 3049, 3050, 5, 103, 0, 0, 3050, 3051, 5, 2, 0, 0, 3051, 3052, 3, 1160, 580, 0, 3052, 3053, 5, 3, 0, 0, 3053, 3056, 1, 0, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 3049, 1, 0, 0, 0, 3055, 3054, 1, 0, 0, 0, 3056, 227, 1, 0, 0, 0, 3057, 3067, 3, 230, 115, 0, 3058, 3067, 3, 232, 116, 0, 3059, 3060, 3, 230, 115, 0, 3060, 3061, 3, 232, 116, 0, 3061, 3067, 1, 0, 0, 0, 3062, 3063, 3, 232, 116, 0, 3063, 3064, 3, 230, 115, 0, 3064, 3067, 1, 0, 0, 0, 3065, 3067, 1, 0, 0, 0, 3066, 3057, 1, 0, 0, 0, 3066, 3058, 1, 0, 0, 0, 3066, 3059, 1, 0, 0, 0, 3066, 3062, 1, 0, 0, 0, 3066, 3065, 1, 0, 0, 0, 3067, 229, 1, 0, 0, 0, 3068, 3069, 5, 80, 0, 0, 3069, 3070, 5, 362, 0, 0, 3070, 3071, 3, 234, 117, 0, 3071, 231, 1, 0, 0, 0, 3072, 3073, 5, 80, 0, 0, 3073, 3074, 5, 182, 0, 0, 3074, 3075, 3, 234, 117, 0, 3075, 233, 1, 0, 0, 0, 3076, 3077, 5, 262, 0, 0, 3077, 3083, 5, 132, 0, 0, 3078, 3083, 5, 308, 0, 0, 3079, 3083, 5, 150, 0, 0, 3080, 3081, 5, 326, 0, 0, 3081, 3083, 7, 15, 0, 0, 3082, 3076, 1, 0, 0, 0, 3082, 3078, 1, 0, 0, 0, 3082, 3079, 1, 0, 0, 0, 3082, 3080, 1, 0, 0, 0, 3083, 235, 1, 0, 0, 0, 3084, 3085, 5, 229, 0, 0, 3085, 3086, 5, 2, 0, 0, 3086, 3087, 3, 1332, 666, 0, 3087, 3088, 5, 3, 0, 0, 3088, 3091, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3084, 1, 0, 0, 0, 3090, 3089, 1, 0, 0, 0, 3091, 237, 1, 0, 0, 0, 3092, 3095, 3, 240, 120, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3093, 1, 0, 0, 0, 3095, 239, 1, 0, 0, 0, 3096, 3097, 5, 278, 0, 0, 3097, 3098, 5, 147, 0, 0, 3098, 3099, 3, 1370, 685, 0, 3099, 3100, 5, 2, 0, 0, 3100, 3101, 3, 242, 121, 0, 3101, 3102, 5, 3, 0, 0, 3102, 241, 1, 0, 0, 0, 3103, 3108, 3, 244, 122, 0, 3104, 3105, 5, 6, 0, 0, 3105, 3107, 3, 244, 122, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3110, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 243, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3112, 3, 1370, 685, 0, 3112, 3113, 3, 606, 303, 0, 3113, 3114, 3, 608, 304, 0, 3114, 3126, 1, 0, 0, 0, 3115, 3116, 3, 1212, 606, 0, 3116, 3117, 3, 606, 303, 0, 3117, 3118, 3, 608, 304, 0, 3118, 3126, 1, 0, 0, 0, 3119, 3120, 5, 2, 0, 0, 3120, 3121, 3, 1160, 580, 0, 3121, 3122, 5, 3, 0, 0, 3122, 3123, 3, 606, 303, 0, 3123, 3124, 3, 608, 304, 0, 3124, 3126, 1, 0, 0, 0, 3125, 3111, 1, 0, 0, 0, 3125, 3115, 1, 0, 0, 0, 3125, 3119, 1, 0, 0, 0, 3126, 245, 1, 0, 0, 0, 3127, 3128, 5, 100, 0, 0, 3128, 3131, 3, 1338, 669, 0, 3129, 3131, 1, 0, 0, 0, 3130, 3127, 1, 0, 0, 0, 3130, 3129, 1, 0, 0, 0, 3131, 247, 1, 0, 0, 0, 3132, 3133, 5, 105, 0, 0, 3133, 3138, 3, 114, 57, 0, 3134, 3135, 5, 372, 0, 0, 3135, 3138, 5, 270, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3132, 1, 0, 0, 0, 3137, 3134, 1, 0, 0, 0, 3137, 3136, 1, 0, 0, 0, 3138, 249, 1, 0, 0, 0, 3139, 3140, 5, 80, 0, 0, 3140, 3146, 5, 161, 0, 0, 3141, 3147, 5, 191, 0, 0, 3142, 3143, 5, 182, 0, 0, 3143, 3147, 5, 313, 0, 0, 3144, 3145, 5, 285, 0, 0, 3145, 3147, 5, 313, 0, 0, 3146, 3141, 1, 0, 0, 0, 3146, 3142, 1, 0, 0, 0, 3146, 3144, 1, 0, 0, 0, 3147, 3150, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3139, 1, 0, 0, 0, 3149, 3148, 1, 0, 0, 0, 3150, 251, 1, 0, 0, 0, 3151, 3152, 5, 344, 0, 0, 3152, 3155, 3, 1338, 669, 0, 3153, 3155, 1, 0, 0, 0, 3154, 3151, 1, 0, 0, 0, 3154, 3153, 1, 0, 0, 0, 3155, 253, 1, 0, 0, 0, 3156, 3157, 5, 100, 0, 0, 3157, 3158, 5, 226, 0, 0, 3158, 3159, 5, 344, 0, 0, 3159, 3162, 3, 1338, 669, 0, 3160, 3162, 1, 0, 0, 0, 3161, 3156, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 255, 1, 0, 0, 0, 3163, 3164, 5, 100, 0, 0, 3164, 3165, 5, 226, 0, 0, 3165, 3166, 3, 1338, 669, 0, 3166, 257, 1, 0, 0, 0, 3167, 3168, 5, 46, 0, 0, 3168, 3172, 5, 335, 0, 0, 3169, 3170, 5, 220, 0, 0, 3170, 3171, 5, 77, 0, 0, 3171, 3173, 5, 389, 0, 0, 3172, 3169, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 3, 522, 261, 0, 3175, 3176, 3, 868, 434, 0, 3176, 3177, 5, 80, 0, 0, 3177, 3178, 3, 1278, 639, 0, 3178, 3179, 5, 64, 0, 0, 3179, 3180, 3, 1054, 527, 0, 3180, 259, 1, 0, 0, 0, 3181, 3182, 5, 138, 0, 0, 3182, 3185, 5, 335, 0, 0, 3183, 3184, 5, 220, 0, 0, 3184, 3186, 5, 389, 0, 0, 3185, 3183, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3188, 3, 522, 261, 0, 3188, 3189, 5, 326, 0, 0, 3189, 3190, 5, 335, 0, 0, 3190, 3191, 3, 1362, 681, 0, 3191, 261, 1, 0, 0, 0, 3192, 3193, 5, 46, 0, 0, 3193, 3194, 3, 172, 86, 0, 3194, 3198, 5, 92, 0, 0, 3195, 3196, 5, 220, 0, 0, 3196, 3197, 5, 77, 0, 0, 3197, 3199, 5, 389, 0, 0, 3198, 3195, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 3, 264, 132, 0, 3201, 3202, 5, 36, 0, 0, 3202, 3203, 3, 958, 479, 0, 3203, 3204, 3, 266, 133, 0, 3204, 263, 1, 0, 0, 0, 3205, 3206, 3, 1334, 667, 0, 3206, 3207, 3, 212, 106, 0, 3207, 3208, 3, 246, 123, 0, 3208, 3209, 3, 248, 124, 0, 3209, 3210, 3, 250, 125, 0, 3210, 3211, 3, 252, 126, 0, 3211, 265, 1, 0, 0, 0, 3212, 3216, 5, 105, 0, 0, 3213, 3217, 5, 174, 0, 0, 3214, 3215, 5, 262, 0, 0, 3215, 3217, 5, 174, 0, 0, 3216, 3213, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3217, 3220, 1, 0, 0, 0, 3218, 3220, 1, 0, 0, 0, 3219, 3212, 1, 0, 0, 0, 3219, 3218, 1, 0, 0, 0, 3220, 267, 1, 0, 0, 0, 3221, 3222, 5, 46, 0, 0, 3222, 3223, 3, 272, 136, 0, 3223, 3224, 5, 251, 0, 0, 3224, 3228, 5, 369, 0, 0, 3225, 3226, 5, 220, 0, 0, 3226, 3227, 5, 77, 0, 0, 3227, 3229, 5, 389, 0, 0, 3228, 3225, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 3, 270, 135, 0, 3231, 3232, 5, 36, 0, 0, 3232, 3233, 3, 958, 479, 0, 3233, 3234, 3, 266, 133, 0, 3234, 269, 1, 0, 0, 0, 3235, 3236, 3, 1334, 667, 0, 3236, 3237, 3, 212, 106, 0, 3237, 3238, 3, 246, 123, 0, 3238, 3239, 3, 116, 58, 0, 3239, 3240, 3, 252, 126, 0, 3240, 271, 1, 0, 0, 0, 3241, 3244, 5, 360, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3241, 1, 0, 0, 0, 3243, 3242, 1, 0, 0, 0, 3244, 273, 1, 0, 0, 0, 3245, 3246, 5, 298, 0, 0, 3246, 3247, 5, 251, 0, 0, 3247, 3248, 5, 369, 0, 0, 3248, 3249, 3, 590, 295, 0, 3249, 3250, 3, 1334, 667, 0, 3250, 3251, 3, 266, 133, 0, 3251, 275, 1, 0, 0, 0, 3252, 3253, 5, 46, 0, 0, 3253, 3254, 3, 172, 86, 0, 3254, 3258, 5, 321, 0, 0, 3255, 3256, 5, 220, 0, 0, 3256, 3257, 5, 77, 0, 0, 3257, 3259, 5, 389, 0, 0, 3258, 3255, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 3, 1334, 667, 0, 3261, 3262, 3, 280, 140, 0, 3262, 277, 1, 0, 0, 0, 3263, 3264, 5, 138, 0, 0, 3264, 3267, 5, 321, 0, 0, 3265, 3266, 5, 220, 0, 0, 3266, 3268, 5, 389, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 3, 1334, 667, 0, 3270, 3271, 3, 284, 142, 0, 3271, 279, 1, 0, 0, 0, 3272, 3275, 3, 284, 142, 0, 3273, 3275, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3273, 1, 0, 0, 0, 3275, 281, 1, 0, 0, 0, 3276, 3277, 5, 2, 0, 0, 3277, 3278, 3, 284, 142, 0, 3278, 3279, 5, 3, 0, 0, 3279, 3282, 1, 0, 0, 0, 3280, 3282, 1, 0, 0, 0, 3281, 3276, 1, 0, 0, 0, 3281, 3280, 1, 0, 0, 0, 3282, 283, 1, 0, 0, 0, 3283, 3285, 3, 286, 143, 0, 3284, 3283, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 285, 1, 0, 0, 0, 3288, 3289, 5, 36, 0, 0, 3289, 3319, 3, 1120, 560, 0, 3290, 3291, 5, 148, 0, 0, 3291, 3319, 3, 290, 145, 0, 3292, 3319, 5, 173, 0, 0, 3293, 3294, 5, 225, 0, 0, 3294, 3295, 3, 288, 144, 0, 3295, 3296, 3, 290, 145, 0, 3296, 3319, 1, 0, 0, 0, 3297, 3298, 5, 252, 0, 0, 3298, 3319, 3, 290, 145, 0, 3299, 3300, 5, 255, 0, 0, 3300, 3319, 3, 290, 145, 0, 3301, 3302, 5, 262, 0, 0, 3302, 3319, 7, 16, 0, 0, 3303, 3304, 5, 274, 0, 0, 3304, 3305, 5, 147, 0, 0, 3305, 3319, 3, 522, 261, 0, 3306, 3307, 5, 321, 0, 0, 3307, 3308, 5, 259, 0, 0, 3308, 3319, 3, 522, 261, 0, 3309, 3310, 5, 333, 0, 0, 3310, 3311, 3, 14, 7, 0, 3311, 3312, 3, 290, 145, 0, 3312, 3319, 1, 0, 0, 0, 3313, 3314, 5, 307, 0, 0, 3314, 3316, 3, 14, 7, 0, 3315, 3317, 3, 290, 145, 0, 3316, 3315, 1, 0, 0, 0, 3316, 3317, 1, 0, 0, 0, 3317, 3319, 1, 0, 0, 0, 3318, 3288, 1, 0, 0, 0, 3318, 3290, 1, 0, 0, 0, 3318, 3292, 1, 0, 0, 0, 3318, 3293, 1, 0, 0, 0, 3318, 3297, 1, 0, 0, 0, 3318, 3299, 1, 0, 0, 0, 3318, 3301, 1, 0, 0, 0, 3318, 3303, 1, 0, 0, 0, 3318, 3306, 1, 0, 0, 0, 3318, 3309, 1, 0, 0, 0, 3318, 3313, 1, 0, 0, 0, 3319, 287, 1, 0, 0, 0, 3320, 3323, 5, 147, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3321, 1, 0, 0, 0, 3323, 289, 1, 0, 0, 0, 3324, 3331, 3, 1352, 676, 0, 3325, 3326, 5, 12, 0, 0, 3326, 3331, 3, 1352, 676, 0, 3327, 3328, 5, 13, 0, 0, 3328, 3331, 3, 1352, 676, 0, 3329, 3331, 3, 1362, 681, 0, 3330, 3324, 1, 0, 0, 0, 3330, 3325, 1, 0, 0, 0, 3330, 3327, 1, 0, 0, 0, 3330, 3329, 1, 0, 0, 0, 3331, 291, 1, 0, 0, 0, 3332, 3337, 3, 290, 145, 0, 3333, 3334, 5, 6, 0, 0, 3334, 3336, 3, 290, 145, 0, 3335, 3333, 1, 0, 0, 0, 3336, 3339, 1, 0, 0, 0, 3337, 3335, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 293, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3341, 5, 46, 0, 0, 3341, 3342, 3, 616, 308, 0, 3342, 3343, 3, 296, 148, 0, 3343, 3344, 3, 306, 153, 0, 3344, 3345, 5, 238, 0, 0, 3345, 3351, 3, 1338, 669, 0, 3346, 3347, 5, 215, 0, 0, 3347, 3348, 3, 298, 149, 0, 3348, 3349, 3, 300, 150, 0, 3349, 3350, 3, 304, 152, 0, 3350, 3352, 1, 0, 0, 0, 3351, 3346, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 295, 1, 0, 0, 0, 3353, 3356, 5, 352, 0, 0, 3354, 3356, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3354, 1, 0, 0, 0, 3356, 297, 1, 0, 0, 0, 3357, 3359, 3, 1338, 669, 0, 3358, 3360, 3, 524, 262, 0, 3359, 3358, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 299, 1, 0, 0, 0, 3361, 3362, 5, 230, 0, 0, 3362, 3365, 3, 298, 149, 0, 3363, 3365, 1, 0, 0, 0, 3364, 3361, 1, 0, 0, 0, 3364, 3363, 1, 0, 0, 0, 3365, 301, 1, 0, 0, 0, 3366, 3367, 5, 366, 0, 0, 3367, 3371, 3, 298, 149, 0, 3368, 3369, 5, 262, 0, 0, 3369, 3371, 5, 366, 0, 0, 3370, 3366, 1, 0, 0, 0, 3370, 3368, 1, 0, 0, 0, 3371, 303, 1, 0, 0, 0, 3372, 3375, 3, 302, 151, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3373, 1, 0, 0, 0, 3375, 305, 1, 0, 0, 0, 3376, 3379, 5, 288, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3376, 1, 0, 0, 0, 3378, 3377, 1, 0, 0, 0, 3379, 307, 1, 0, 0, 0, 3380, 3381, 5, 46, 0, 0, 3381, 3382, 5, 344, 0, 0, 3382, 3383, 3, 1338, 669, 0, 3383, 3384, 3, 310, 155, 0, 3384, 3385, 5, 246, 0, 0, 3385, 3386, 3, 1356, 678, 0, 3386, 3387, 3, 116, 58, 0, 3387, 309, 1, 0, 0, 0, 3388, 3389, 5, 275, 0, 0, 3389, 3392, 3, 1366, 683, 0, 3390, 3392, 1, 0, 0, 0, 3391, 3388, 1, 0, 0, 0, 3391, 3390, 1, 0, 0, 0, 3392, 311, 1, 0, 0, 0, 3393, 3394, 5, 191, 0, 0, 3394, 3397, 5, 344, 0, 0, 3395, 3396, 5, 220, 0, 0, 3396, 3398, 5, 389, 0, 0, 3397, 3395, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 3, 1338, 669, 0, 3400, 313, 1, 0, 0, 0, 3401, 3402, 5, 46, 0, 0, 3402, 3406, 5, 204, 0, 0, 3403, 3404, 5, 220, 0, 0, 3404, 3405, 5, 77, 0, 0, 3405, 3407, 5, 389, 0, 0, 3406, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3409, 3, 1338, 669, 0, 3409, 3410, 3, 14, 7, 0, 3410, 3411, 3, 316, 158, 0, 3411, 315, 1, 0, 0, 0, 3412, 3414, 3, 318, 159, 0, 3413, 3412, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 317, 1, 0, 0, 0, 3417, 3415, 1, 0, 0, 0, 3418, 3419, 5, 316, 0, 0, 3419, 3426, 3, 1338, 669, 0, 3420, 3421, 5, 368, 0, 0, 3421, 3426, 3, 70, 35, 0, 3422, 3423, 5, 64, 0, 0, 3423, 3426, 3, 70, 35, 0, 3424, 3426, 5, 150, 0, 0, 3425, 3418, 1, 0, 0, 0, 3425, 3420, 1, 0, 0, 0, 3425, 3422, 1, 0, 0, 0, 3425, 3424, 1, 0, 0, 0, 3426, 319, 1, 0, 0, 0, 3427, 3428, 5, 138, 0, 0, 3428, 3429, 5, 204, 0, 0, 3429, 3430, 3, 1338, 669, 0, 3430, 3431, 5, 362, 0, 0, 3431, 3432, 3, 322, 161, 0, 3432, 321, 1, 0, 0, 0, 3433, 3435, 3, 324, 162, 0, 3434, 3433, 1, 0, 0, 0, 3435, 3438, 1, 0, 0, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 323, 1, 0, 0, 0, 3438, 3436, 1, 0, 0, 0, 3439, 3440, 5, 94, 0, 0, 3440, 3441, 3, 70, 35, 0, 3441, 325, 1, 0, 0, 0, 3442, 3443, 5, 138, 0, 0, 3443, 3444, 5, 204, 0, 0, 3444, 3445, 3, 1338, 669, 0, 3445, 3446, 3, 38, 19, 0, 3446, 3447, 3, 514, 257, 0, 3447, 3448, 3, 1338, 669, 0, 3448, 3547, 1, 0, 0, 0, 3449, 3450, 5, 138, 0, 0, 3450, 3451, 5, 204, 0, 0, 3451, 3452, 3, 1338, 669, 0, 3452, 3453, 3, 38, 19, 0, 3453, 3454, 3, 512, 256, 0, 3454, 3455, 3, 522, 261, 0, 3455, 3547, 1, 0, 0, 0, 3456, 3457, 5, 138, 0, 0, 3457, 3458, 5, 204, 0, 0, 3458, 3459, 3, 1338, 669, 0, 3459, 3460, 3, 38, 19, 0, 3460, 3461, 5, 136, 0, 0, 3461, 3462, 3, 648, 324, 0, 3462, 3547, 1, 0, 0, 0, 3463, 3464, 5, 138, 0, 0, 3464, 3465, 5, 204, 0, 0, 3465, 3466, 3, 1338, 669, 0, 3466, 3467, 3, 38, 19, 0, 3467, 3468, 5, 41, 0, 0, 3468, 3469, 5, 2, 0, 0, 3469, 3470, 3, 1116, 558, 0, 3470, 3471, 5, 36, 0, 0, 3471, 3472, 3, 1116, 558, 0, 3472, 3473, 5, 3, 0, 0, 3473, 3547, 1, 0, 0, 0, 3474, 3475, 5, 138, 0, 0, 3475, 3476, 5, 204, 0, 0, 3476, 3477, 3, 1338, 669, 0, 3477, 3478, 3, 38, 19, 0, 3478, 3479, 5, 189, 0, 0, 3479, 3480, 3, 1116, 558, 0, 3480, 3547, 1, 0, 0, 0, 3481, 3482, 5, 138, 0, 0, 3482, 3483, 5, 204, 0, 0, 3483, 3484, 3, 1338, 669, 0, 3484, 3485, 3, 38, 19, 0, 3485, 3486, 5, 211, 0, 0, 3486, 3487, 3, 624, 312, 0, 3487, 3547, 1, 0, 0, 0, 3488, 3489, 5, 138, 0, 0, 3489, 3490, 5, 204, 0, 0, 3490, 3491, 3, 1338, 669, 0, 3491, 3492, 3, 38, 19, 0, 3492, 3493, 5, 271, 0, 0, 3493, 3494, 3, 686, 343, 0, 3494, 3547, 1, 0, 0, 0, 3495, 3496, 5, 138, 0, 0, 3496, 3497, 5, 204, 0, 0, 3497, 3498, 3, 1338, 669, 0, 3498, 3499, 3, 38, 19, 0, 3499, 3500, 5, 271, 0, 0, 3500, 3501, 5, 156, 0, 0, 3501, 3502, 3, 522, 261, 0, 3502, 3503, 5, 100, 0, 0, 3503, 3504, 3, 1338, 669, 0, 3504, 3547, 1, 0, 0, 0, 3505, 3506, 5, 138, 0, 0, 3506, 3507, 5, 204, 0, 0, 3507, 3508, 3, 1338, 669, 0, 3508, 3509, 3, 38, 19, 0, 3509, 3510, 5, 271, 0, 0, 3510, 3511, 5, 206, 0, 0, 3511, 3512, 3, 522, 261, 0, 3512, 3513, 5, 100, 0, 0, 3513, 3514, 3, 1338, 669, 0, 3514, 3547, 1, 0, 0, 0, 3515, 3516, 5, 138, 0, 0, 3516, 3517, 5, 204, 0, 0, 3517, 3518, 3, 1338, 669, 0, 3518, 3519, 3, 38, 19, 0, 3519, 3520, 5, 289, 0, 0, 3520, 3521, 3, 624, 312, 0, 3521, 3547, 1, 0, 0, 0, 3522, 3523, 5, 138, 0, 0, 3523, 3524, 5, 204, 0, 0, 3524, 3525, 3, 1338, 669, 0, 3525, 3526, 3, 38, 19, 0, 3526, 3527, 5, 442, 0, 0, 3527, 3528, 3, 624, 312, 0, 3528, 3547, 1, 0, 0, 0, 3529, 3530, 5, 138, 0, 0, 3530, 3531, 5, 204, 0, 0, 3531, 3532, 3, 1338, 669, 0, 3532, 3533, 3, 38, 19, 0, 3533, 3534, 5, 443, 0, 0, 3534, 3535, 5, 62, 0, 0, 3535, 3536, 3, 1116, 558, 0, 3536, 3537, 5, 238, 0, 0, 3537, 3538, 3, 1338, 669, 0, 3538, 3547, 1, 0, 0, 0, 3539, 3540, 5, 138, 0, 0, 3540, 3541, 5, 204, 0, 0, 3541, 3542, 3, 1338, 669, 0, 3542, 3543, 3, 38, 19, 0, 3543, 3544, 5, 353, 0, 0, 3544, 3545, 3, 1116, 558, 0, 3545, 3547, 1, 0, 0, 0, 3546, 3442, 1, 0, 0, 0, 3546, 3449, 1, 0, 0, 0, 3546, 3456, 1, 0, 0, 0, 3546, 3463, 1, 0, 0, 0, 3546, 3474, 1, 0, 0, 0, 3546, 3481, 1, 0, 0, 0, 3546, 3488, 1, 0, 0, 0, 3546, 3495, 1, 0, 0, 0, 3546, 3505, 1, 0, 0, 0, 3546, 3515, 1, 0, 0, 0, 3546, 3522, 1, 0, 0, 0, 3546, 3529, 1, 0, 0, 0, 3546, 3539, 1, 0, 0, 0, 3547, 327, 1, 0, 0, 0, 3548, 3549, 5, 46, 0, 0, 3549, 3550, 5, 63, 0, 0, 3550, 3551, 5, 174, 0, 0, 3551, 3552, 5, 374, 0, 0, 3552, 3553, 3, 1338, 669, 0, 3553, 3554, 3, 334, 167, 0, 3554, 3555, 3, 338, 169, 0, 3555, 329, 1, 0, 0, 0, 3556, 3557, 5, 215, 0, 0, 3557, 3565, 3, 298, 149, 0, 3558, 3559, 5, 262, 0, 0, 3559, 3565, 5, 215, 0, 0, 3560, 3561, 5, 366, 0, 0, 3561, 3565, 3, 298, 149, 0, 3562, 3563, 5, 262, 0, 0, 3563, 3565, 5, 366, 0, 0, 3564, 3556, 1, 0, 0, 0, 3564, 3558, 1, 0, 0, 0, 3564, 3560, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 331, 1, 0, 0, 0, 3566, 3568, 3, 330, 165, 0, 3567, 3566, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 333, 1, 0, 0, 0, 3571, 3574, 3, 332, 166, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3572, 1, 0, 0, 0, 3574, 335, 1, 0, 0, 0, 3575, 3576, 5, 138, 0, 0, 3576, 3577, 5, 63, 0, 0, 3577, 3578, 5, 174, 0, 0, 3578, 3579, 5, 374, 0, 0, 3579, 3580, 3, 1338, 669, 0, 3580, 3581, 3, 334, 167, 0, 3581, 3582, 3, 342, 171, 0, 3582, 3591, 1, 0, 0, 0, 3583, 3584, 5, 138, 0, 0, 3584, 3585, 5, 63, 0, 0, 3585, 3586, 5, 174, 0, 0, 3586, 3587, 5, 374, 0, 0, 3587, 3588, 3, 1338, 669, 0, 3588, 3589, 3, 332, 166, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3575, 1, 0, 0, 0, 3590, 3583, 1, 0, 0, 0, 3591, 337, 1, 0, 0, 0, 3592, 3593, 5, 273, 0, 0, 3593, 3594, 5, 2, 0, 0, 3594, 3595, 3, 340, 170, 0, 3595, 3596, 5, 3, 0, 0, 3596, 3599, 1, 0, 0, 0, 3597, 3599, 1, 0, 0, 0, 3598, 3592, 1, 0, 0, 0, 3598, 3597, 1, 0, 0, 0, 3599, 339, 1, 0, 0, 0, 3600, 3605, 3, 348, 174, 0, 3601, 3602, 5, 6, 0, 0, 3602, 3604, 3, 348, 174, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 341, 1, 0, 0, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3609, 5, 273, 0, 0, 3609, 3610, 5, 2, 0, 0, 3610, 3611, 3, 344, 172, 0, 3611, 3612, 5, 3, 0, 0, 3612, 343, 1, 0, 0, 0, 3613, 3618, 3, 346, 173, 0, 3614, 3615, 5, 6, 0, 0, 3615, 3617, 3, 346, 173, 0, 3616, 3614, 1, 0, 0, 0, 3617, 3620, 1, 0, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 345, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3621, 3629, 3, 348, 174, 0, 3622, 3623, 5, 326, 0, 0, 3623, 3629, 3, 348, 174, 0, 3624, 3625, 5, 133, 0, 0, 3625, 3629, 3, 348, 174, 0, 3626, 3627, 5, 191, 0, 0, 3627, 3629, 3, 350, 175, 0, 3628, 3621, 1, 0, 0, 0, 3628, 3622, 1, 0, 0, 0, 3628, 3624, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3629, 347, 1, 0, 0, 0, 3630, 3631, 3, 350, 175, 0, 3631, 3632, 3, 352, 176, 0, 3632, 349, 1, 0, 0, 0, 3633, 3634, 3, 1378, 689, 0, 3634, 351, 1, 0, 0, 0, 3635, 3636, 3, 1356, 678, 0, 3636, 353, 1, 0, 0, 0, 3637, 3638, 5, 46, 0, 0, 3638, 3639, 5, 324, 0, 0, 3639, 3640, 3, 1338, 669, 0, 3640, 3641, 3, 356, 178, 0, 3641, 3642, 3, 360, 180, 0, 3642, 3643, 5, 63, 0, 0, 3643, 3644, 5, 174, 0, 0, 3644, 3645, 5, 374, 0, 0, 3645, 3646, 3, 1338, 669, 0, 3646, 3647, 3, 338, 169, 0, 3647, 3663, 1, 0, 0, 0, 3648, 3649, 5, 46, 0, 0, 3649, 3650, 5, 324, 0, 0, 3650, 3651, 5, 220, 0, 0, 3651, 3652, 5, 77, 0, 0, 3652, 3653, 5, 389, 0, 0, 3653, 3654, 3, 1338, 669, 0, 3654, 3655, 3, 356, 178, 0, 3655, 3656, 3, 360, 180, 0, 3656, 3657, 5, 63, 0, 0, 3657, 3658, 5, 174, 0, 0, 3658, 3659, 5, 374, 0, 0, 3659, 3660, 3, 1338, 669, 0, 3660, 3661, 3, 338, 169, 0, 3661, 3663, 1, 0, 0, 0, 3662, 3637, 1, 0, 0, 0, 3662, 3648, 1, 0, 0, 0, 3663, 355, 1, 0, 0, 0, 3664, 3665, 5, 353, 0, 0, 3665, 3668, 3, 1356, 678, 0, 3666, 3668, 1, 0, 0, 0, 3667, 3664, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 357, 1, 0, 0, 0, 3669, 3672, 5, 368, 0, 0, 3670, 3673, 3, 1356, 678, 0, 3671, 3673, 5, 78, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 359, 1, 0, 0, 0, 3674, 3677, 3, 358, 179, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3674, 1, 0, 0, 0, 3676, 3675, 1, 0, 0, 0, 3677, 361, 1, 0, 0, 0, 3678, 3679, 5, 138, 0, 0, 3679, 3680, 5, 324, 0, 0, 3680, 3686, 3, 1338, 669, 0, 3681, 3687, 3, 342, 171, 0, 3682, 3684, 3, 358, 179, 0, 3683, 3685, 3, 342, 171, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3681, 1, 0, 0, 0, 3686, 3682, 1, 0, 0, 0, 3687, 363, 1, 0, 0, 0, 3688, 3689, 5, 46, 0, 0, 3689, 3690, 5, 63, 0, 0, 3690, 3691, 5, 92, 0, 0, 3691, 3692, 3, 1334, 667, 0, 3692, 3693, 5, 2, 0, 0, 3693, 3694, 3, 174, 87, 0, 3694, 3695, 5, 3, 0, 0, 3695, 3696, 3, 236, 118, 0, 3696, 3697, 5, 324, 0, 0, 3697, 3698, 3, 1338, 669, 0, 3698, 3699, 3, 338, 169, 0, 3699, 3745, 1, 0, 0, 0, 3700, 3701, 5, 46, 0, 0, 3701, 3702, 5, 63, 0, 0, 3702, 3703, 5, 92, 0, 0, 3703, 3704, 5, 220, 0, 0, 3704, 3705, 5, 77, 0, 0, 3705, 3706, 5, 389, 0, 0, 3706, 3707, 3, 1334, 667, 0, 3707, 3708, 5, 2, 0, 0, 3708, 3709, 3, 174, 87, 0, 3709, 3710, 5, 3, 0, 0, 3710, 3711, 3, 236, 118, 0, 3711, 3712, 5, 324, 0, 0, 3712, 3713, 3, 1338, 669, 0, 3713, 3714, 3, 338, 169, 0, 3714, 3745, 1, 0, 0, 0, 3715, 3716, 5, 46, 0, 0, 3716, 3717, 5, 63, 0, 0, 3717, 3718, 5, 92, 0, 0, 3718, 3719, 3, 1334, 667, 0, 3719, 3720, 5, 278, 0, 0, 3720, 3721, 5, 268, 0, 0, 3721, 3722, 3, 1334, 667, 0, 3722, 3723, 3, 176, 88, 0, 3723, 3724, 3, 126, 63, 0, 3724, 3725, 5, 324, 0, 0, 3725, 3726, 3, 1338, 669, 0, 3726, 3727, 3, 338, 169, 0, 3727, 3745, 1, 0, 0, 0, 3728, 3729, 5, 46, 0, 0, 3729, 3730, 5, 63, 0, 0, 3730, 3731, 5, 92, 0, 0, 3731, 3732, 5, 220, 0, 0, 3732, 3733, 5, 77, 0, 0, 3733, 3734, 5, 389, 0, 0, 3734, 3735, 3, 1334, 667, 0, 3735, 3736, 5, 278, 0, 0, 3736, 3737, 5, 268, 0, 0, 3737, 3738, 3, 1334, 667, 0, 3738, 3739, 3, 176, 88, 0, 3739, 3740, 3, 126, 63, 0, 3740, 3741, 5, 324, 0, 0, 3741, 3742, 3, 1338, 669, 0, 3742, 3743, 3, 338, 169, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3688, 1, 0, 0, 0, 3744, 3700, 1, 0, 0, 0, 3744, 3715, 1, 0, 0, 0, 3744, 3728, 1, 0, 0, 0, 3745, 365, 1, 0, 0, 0, 3746, 3747, 5, 444, 0, 0, 3747, 3748, 5, 63, 0, 0, 3748, 3749, 5, 316, 0, 0, 3749, 3750, 3, 1338, 669, 0, 3750, 3751, 3, 370, 185, 0, 3751, 3752, 5, 64, 0, 0, 3752, 3753, 5, 324, 0, 0, 3753, 3754, 3, 1338, 669, 0, 3754, 3755, 5, 71, 0, 0, 3755, 3756, 3, 1338, 669, 0, 3756, 3757, 3, 338, 169, 0, 3757, 367, 1, 0, 0, 0, 3758, 3759, 5, 74, 0, 0, 3759, 3762, 5, 94, 0, 0, 3760, 3762, 5, 59, 0, 0, 3761, 3758, 1, 0, 0, 0, 3761, 3760, 1, 0, 0, 0, 3762, 369, 1, 0, 0, 0, 3763, 3764, 3, 368, 184, 0, 3764, 3765, 5, 2, 0, 0, 3765, 3766, 3, 1074, 537, 0, 3766, 3767, 5, 3, 0, 0, 3767, 3770, 1, 0, 0, 0, 3768, 3770, 1, 0, 0, 0, 3769, 3763, 1, 0, 0, 0, 3769, 3768, 1, 0, 0, 0, 3770, 371, 1, 0, 0, 0, 3771, 3772, 5, 46, 0, 0, 3772, 3773, 5, 99, 0, 0, 3773, 3774, 5, 248, 0, 0, 3774, 3775, 5, 62, 0, 0, 3775, 3776, 3, 374, 187, 0, 3776, 3777, 5, 324, 0, 0, 3777, 3778, 3, 1338, 669, 0, 3778, 3779, 3, 338, 169, 0, 3779, 3793, 1, 0, 0, 0, 3780, 3781, 5, 46, 0, 0, 3781, 3782, 5, 99, 0, 0, 3782, 3783, 5, 248, 0, 0, 3783, 3784, 5, 220, 0, 0, 3784, 3785, 5, 77, 0, 0, 3785, 3786, 5, 389, 0, 0, 3786, 3787, 5, 62, 0, 0, 3787, 3788, 3, 374, 187, 0, 3788, 3789, 5, 324, 0, 0, 3789, 3790, 3, 1338, 669, 0, 3790, 3791, 3, 338, 169, 0, 3791, 3793, 1, 0, 0, 0, 3792, 3771, 1, 0, 0, 0, 3792, 3780, 1, 0, 0, 0, 3793, 373, 1, 0, 0, 0, 3794, 3797, 3, 1366, 683, 0, 3795, 3797, 5, 99, 0, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3795, 1, 0, 0, 0, 3797, 375, 1, 0, 0, 0, 3798, 3799, 5, 191, 0, 0, 3799, 3800, 5, 99, 0, 0, 3800, 3801, 5, 248, 0, 0, 3801, 3802, 5, 62, 0, 0, 3802, 3803, 3, 374, 187, 0, 3803, 3804, 5, 324, 0, 0, 3804, 3805, 3, 1338, 669, 0, 3805, 3817, 1, 0, 0, 0, 3806, 3807, 5, 191, 0, 0, 3807, 3808, 5, 99, 0, 0, 3808, 3809, 5, 248, 0, 0, 3809, 3810, 5, 220, 0, 0, 3810, 3811, 5, 389, 0, 0, 3811, 3812, 5, 62, 0, 0, 3812, 3813, 3, 374, 187, 0, 3813, 3814, 5, 324, 0, 0, 3814, 3815, 3, 1338, 669, 0, 3815, 3817, 1, 0, 0, 0, 3816, 3798, 1, 0, 0, 0, 3816, 3806, 1, 0, 0, 0, 3817, 377, 1, 0, 0, 0, 3818, 3819, 5, 138, 0, 0, 3819, 3820, 5, 99, 0, 0, 3820, 3821, 5, 248, 0, 0, 3821, 3822, 5, 62, 0, 0, 3822, 3823, 3, 374, 187, 0, 3823, 3824, 5, 324, 0, 0, 3824, 3825, 3, 1338, 669, 0, 3825, 3826, 3, 342, 171, 0, 3826, 379, 1, 0, 0, 0, 3827, 3828, 5, 46, 0, 0, 3828, 3829, 5, 445, 0, 0, 3829, 3830, 3, 1338, 669, 0, 3830, 3831, 5, 80, 0, 0, 3831, 3832, 3, 1334, 667, 0, 3832, 3833, 3, 392, 196, 0, 3833, 3834, 3, 394, 197, 0, 3834, 3835, 3, 388, 194, 0, 3835, 3836, 3, 384, 192, 0, 3836, 3837, 3, 386, 193, 0, 3837, 381, 1, 0, 0, 0, 3838, 3839, 5, 138, 0, 0, 3839, 3840, 5, 445, 0, 0, 3840, 3841, 3, 1338, 669, 0, 3841, 3842, 5, 80, 0, 0, 3842, 3843, 3, 1334, 667, 0, 3843, 3844, 3, 390, 195, 0, 3844, 3845, 3, 384, 192, 0, 3845, 3846, 3, 386, 193, 0, 3846, 383, 1, 0, 0, 0, 3847, 3848, 5, 100, 0, 0, 3848, 3849, 5, 2, 0, 0, 3849, 3850, 3, 1160, 580, 0, 3850, 3851, 5, 3, 0, 0, 3851, 3854, 1, 0, 0, 0, 3852, 3854, 1, 0, 0, 0, 3853, 3847, 1, 0, 0, 0, 3853, 3852, 1, 0, 0, 0, 3854, 385, 1, 0, 0, 0, 3855, 3856, 5, 105, 0, 0, 3856, 3857, 5, 42, 0, 0, 3857, 3858, 5, 2, 0, 0, 3858, 3859, 3, 1160, 580, 0, 3859, 3860, 5, 3, 0, 0, 3860, 3863, 1, 0, 0, 0, 3861, 3863, 1, 0, 0, 0, 3862, 3855, 1, 0, 0, 0, 3862, 3861, 1, 0, 0, 0, 3863, 387, 1, 0, 0, 0, 3864, 3865, 5, 94, 0, 0, 3865, 3868, 3, 1368, 684, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3864, 1, 0, 0, 0, 3867, 3866, 1, 0, 0, 0, 3868, 389, 1, 0, 0, 0, 3869, 3870, 5, 94, 0, 0, 3870, 3873, 3, 1368, 684, 0, 3871, 3873, 1, 0, 0, 0, 3872, 3869, 1, 0, 0, 0, 3872, 3871, 1, 0, 0, 0, 3873, 391, 1, 0, 0, 0, 3874, 3875, 5, 36, 0, 0, 3875, 3878, 3, 1380, 690, 0, 3876, 3878, 1, 0, 0, 0, 3877, 3874, 1, 0, 0, 0, 3877, 3876, 1, 0, 0, 0, 3878, 393, 1, 0, 0, 0, 3879, 3880, 5, 62, 0, 0, 3880, 3883, 3, 396, 198, 0, 3881, 3883, 1, 0, 0, 0, 3882, 3879, 1, 0, 0, 0, 3882, 3881, 1, 0, 0, 0, 3883, 395, 1, 0, 0, 0, 3884, 3885, 7, 17, 0, 0, 3885, 397, 1, 0, 0, 0, 3886, 3887, 5, 46, 0, 0, 3887, 3888, 5, 131, 0, 0, 3888, 3889, 5, 446, 0, 0, 3889, 3890, 3, 1338, 669, 0, 3890, 3891, 5, 353, 0, 0, 3891, 3892, 3, 400, 200, 0, 3892, 3893, 5, 215, 0, 0, 3893, 3894, 3, 298, 149, 0, 3894, 399, 1, 0, 0, 0, 3895, 3896, 7, 18, 0, 0, 3896, 401, 1, 0, 0, 0, 3897, 3898, 5, 46, 0, 0, 3898, 3899, 5, 350, 0, 0, 3899, 3900, 3, 1338, 669, 0, 3900, 3901, 3, 404, 202, 0, 3901, 3902, 3, 406, 203, 0, 3902, 3903, 5, 80, 0, 0, 3903, 3904, 3, 1334, 667, 0, 3904, 3905, 3, 410, 205, 0, 3905, 3906, 3, 422, 211, 0, 3906, 3907, 3, 428, 214, 0, 3907, 3908, 5, 202, 0, 0, 3908, 3909, 3, 430, 215, 0, 3909, 3910, 3, 1344, 672, 0, 3910, 3911, 5, 2, 0, 0, 3911, 3912, 3, 432, 216, 0, 3912, 3913, 5, 3, 0, 0, 3913, 3936, 1, 0, 0, 0, 3914, 3915, 5, 46, 0, 0, 3915, 3916, 5, 45, 0, 0, 3916, 3917, 5, 350, 0, 0, 3917, 3918, 3, 1338, 669, 0, 3918, 3919, 5, 135, 0, 0, 3919, 3920, 3, 406, 203, 0, 3920, 3921, 5, 80, 0, 0, 3921, 3922, 3, 1334, 667, 0, 3922, 3923, 3, 436, 218, 0, 3923, 3924, 3, 438, 219, 0, 3924, 3925, 5, 62, 0, 0, 3925, 3926, 5, 192, 0, 0, 3926, 3927, 5, 407, 0, 0, 3927, 3928, 3, 428, 214, 0, 3928, 3929, 5, 202, 0, 0, 3929, 3930, 3, 430, 215, 0, 3930, 3931, 3, 1344, 672, 0, 3931, 3932, 5, 2, 0, 0, 3932, 3933, 3, 432, 216, 0, 3933, 3934, 5, 3, 0, 0, 3934, 3936, 1, 0, 0, 0, 3935, 3897, 1, 0, 0, 0, 3935, 3914, 1, 0, 0, 0, 3936, 403, 1, 0, 0, 0, 3937, 3942, 5, 145, 0, 0, 3938, 3942, 5, 135, 0, 0, 3939, 3940, 5, 233, 0, 0, 3940, 3942, 5, 268, 0, 0, 3941, 3937, 1, 0, 0, 0, 3941, 3938, 1, 0, 0, 0, 3941, 3939, 1, 0, 0, 0, 3942, 405, 1, 0, 0, 0, 3943, 3948, 3, 408, 204, 0, 3944, 3945, 5, 82, 0, 0, 3945, 3947, 3, 408, 204, 0, 3946, 3944, 1, 0, 0, 0, 3947, 3950, 1, 0, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 407, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3959, 5, 232, 0, 0, 3952, 3959, 5, 182, 0, 0, 3953, 3959, 5, 362, 0, 0, 3954, 3955, 5, 362, 0, 0, 3955, 3956, 5, 268, 0, 0, 3956, 3959, 3, 214, 107, 0, 3957, 3959, 5, 351, 0, 0, 3958, 3951, 1, 0, 0, 0, 3958, 3952, 1, 0, 0, 0, 3958, 3953, 1, 0, 0, 0, 3958, 3954, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 409, 1, 0, 0, 0, 3960, 3961, 5, 447, 0, 0, 3961, 3964, 3, 412, 206, 0, 3962, 3964, 1, 0, 0, 0, 3963, 3960, 1, 0, 0, 0, 3963, 3962, 1, 0, 0, 0, 3964, 411, 1, 0, 0, 0, 3965, 3967, 3, 414, 207, 0, 3966, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3966, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 413, 1, 0, 0, 0, 3970, 3971, 3, 416, 208, 0, 3971, 3972, 3, 418, 209, 0, 3972, 3973, 3, 832, 416, 0, 3973, 3974, 3, 420, 210, 0, 3974, 415, 1, 0, 0, 0, 3975, 3976, 7, 19, 0, 0, 3976, 417, 1, 0, 0, 0, 3977, 3978, 7, 20, 0, 0, 3978, 419, 1, 0, 0, 0, 3979, 3980, 3, 1370, 685, 0, 3980, 421, 1, 0, 0, 0, 3981, 3982, 5, 62, 0, 0, 3982, 3983, 3, 424, 212, 0, 3983, 3984, 3, 426, 213, 0, 3984, 3987, 1, 0, 0, 0, 3985, 3987, 1, 0, 0, 0, 3986, 3981, 1, 0, 0, 0, 3986, 3985, 1, 0, 0, 0, 3987, 423, 1, 0, 0, 0, 3988, 3991, 5, 192, 0, 0, 3989, 3991, 1, 0, 0, 0, 3990, 3988, 1, 0, 0, 0, 3990, 3989, 1, 0, 0, 0, 3991, 425, 1, 0, 0, 0, 3992, 3993, 7, 21, 0, 0, 3993, 427, 1, 0, 0, 0, 3994, 3995, 5, 102, 0, 0, 3995, 3996, 5, 2, 0, 0, 3996, 3997, 3, 1160, 580, 0, 3997, 3998, 5, 3, 0, 0, 3998, 4001, 1, 0, 0, 0, 3999, 4001, 1, 0, 0, 0, 4000, 3994, 1, 0, 0, 0, 4000, 3999, 1, 0, 0, 0, 4001, 429, 1, 0, 0, 0, 4002, 4003, 7, 22, 0, 0, 4003, 431, 1, 0, 0, 0, 4004, 4007, 3, 434, 217, 0, 4005, 4007, 1, 0, 0, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4005, 1, 0, 0, 0, 4007, 4012, 1, 0, 0, 0, 4008, 4009, 5, 6, 0, 0, 4009, 4011, 3, 434, 217, 0, 4010, 4008, 1, 0, 0, 0, 4011, 4014, 1, 0, 0, 0, 4012, 4010, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 433, 1, 0, 0, 0, 4014, 4012, 1, 0, 0, 0, 4015, 4020, 3, 1354, 677, 0, 4016, 4020, 3, 1352, 676, 0, 4017, 4020, 3, 1356, 678, 0, 4018, 4020, 3, 1378, 689, 0, 4019, 4015, 1, 0, 0, 0, 4019, 4016, 1, 0, 0, 0, 4019, 4017, 1, 0, 0, 0, 4019, 4018, 1, 0, 0, 0, 4020, 435, 1, 0, 0, 0, 4021, 4022, 5, 64, 0, 0, 4022, 4025, 3, 1334, 667, 0, 4023, 4025, 1, 0, 0, 0, 4024, 4021, 1, 0, 0, 0, 4024, 4023, 1, 0, 0, 0, 4025, 437, 1, 0, 0, 0, 4026, 4028, 3, 440, 220, 0, 4027, 4026, 1, 0, 0, 0, 4028, 4031, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 439, 1, 0, 0, 0, 4031, 4029, 1, 0, 0, 0, 4032, 4033, 5, 77, 0, 0, 4033, 4044, 5, 54, 0, 0, 4034, 4044, 5, 54, 0, 0, 4035, 4036, 5, 69, 0, 0, 4036, 4044, 5, 221, 0, 0, 4037, 4038, 5, 69, 0, 0, 4038, 4044, 5, 180, 0, 0, 4039, 4040, 5, 77, 0, 0, 4040, 4044, 5, 364, 0, 0, 4041, 4042, 5, 262, 0, 0, 4042, 4044, 5, 228, 0, 0, 4043, 4032, 1, 0, 0, 0, 4043, 4034, 1, 0, 0, 0, 4043, 4035, 1, 0, 0, 0, 4043, 4037, 1, 0, 0, 0, 4043, 4039, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4044, 441, 1, 0, 0, 0, 4045, 4046, 5, 46, 0, 0, 4046, 4047, 5, 198, 0, 0, 4047, 4048, 5, 350, 0, 0, 4048, 4049, 3, 1338, 669, 0, 4049, 4050, 5, 80, 0, 0, 4050, 4051, 3, 1378, 689, 0, 4051, 4052, 5, 202, 0, 0, 4052, 4053, 3, 430, 215, 0, 4053, 4054, 3, 1344, 672, 0, 4054, 4055, 5, 2, 0, 0, 4055, 4056, 5, 3, 0, 0, 4056, 4072, 1, 0, 0, 0, 4057, 4058, 5, 46, 0, 0, 4058, 4059, 5, 198, 0, 0, 4059, 4060, 5, 350, 0, 0, 4060, 4061, 3, 1338, 669, 0, 4061, 4062, 5, 80, 0, 0, 4062, 4063, 3, 1378, 689, 0, 4063, 4064, 5, 102, 0, 0, 4064, 4065, 3, 444, 222, 0, 4065, 4066, 5, 202, 0, 0, 4066, 4067, 3, 430, 215, 0, 4067, 4068, 3, 1344, 672, 0, 4068, 4069, 5, 2, 0, 0, 4069, 4070, 5, 3, 0, 0, 4070, 4072, 1, 0, 0, 0, 4071, 4045, 1, 0, 0, 0, 4071, 4057, 1, 0, 0, 0, 4072, 443, 1, 0, 0, 0, 4073, 4078, 3, 446, 223, 0, 4074, 4075, 5, 33, 0, 0, 4075, 4077, 3, 446, 223, 0, 4076, 4074, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 445, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4081, 4082, 3, 1370, 685, 0, 4082, 4083, 5, 68, 0, 0, 4083, 4084, 5, 2, 0, 0, 4084, 4085, 3, 448, 224, 0, 4085, 4086, 5, 3, 0, 0, 4086, 447, 1, 0, 0, 0, 4087, 4092, 3, 1356, 678, 0, 4088, 4089, 5, 6, 0, 0, 4089, 4091, 3, 1356, 678, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 449, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4096, 5, 138, 0, 0, 4096, 4097, 5, 198, 0, 0, 4097, 4098, 5, 350, 0, 0, 4098, 4099, 3, 1338, 669, 0, 4099, 4100, 3, 452, 226, 0, 4100, 451, 1, 0, 0, 0, 4101, 4108, 5, 193, 0, 0, 4102, 4103, 5, 193, 0, 0, 4103, 4108, 5, 305, 0, 0, 4104, 4105, 5, 193, 0, 0, 4105, 4108, 5, 139, 0, 0, 4106, 4108, 5, 186, 0, 0, 4107, 4101, 1, 0, 0, 0, 4107, 4102, 1, 0, 0, 0, 4107, 4104, 1, 0, 0, 0, 4107, 4106, 1, 0, 0, 0, 4108, 453, 1, 0, 0, 0, 4109, 4110, 5, 46, 0, 0, 4110, 4111, 5, 140, 0, 0, 4111, 4112, 3, 522, 261, 0, 4112, 4113, 5, 42, 0, 0, 4113, 4114, 5, 2, 0, 0, 4114, 4115, 3, 1160, 580, 0, 4115, 4116, 5, 3, 0, 0, 4116, 4117, 3, 438, 219, 0, 4117, 455, 1, 0, 0, 0, 4118, 4119, 5, 46, 0, 0, 4119, 4120, 3, 616, 308, 0, 4120, 4121, 5, 136, 0, 0, 4121, 4122, 3, 1344, 672, 0, 4122, 4123, 3, 644, 322, 0, 4123, 4124, 3, 458, 229, 0, 4124, 4225, 1, 0, 0, 0, 4125, 4126, 5, 46, 0, 0, 4126, 4127, 3, 616, 308, 0, 4127, 4128, 5, 136, 0, 0, 4128, 4129, 3, 1344, 672, 0, 4129, 4130, 3, 466, 233, 0, 4130, 4225, 1, 0, 0, 0, 4131, 4132, 5, 46, 0, 0, 4132, 4133, 5, 271, 0, 0, 4133, 4134, 3, 682, 341, 0, 4134, 4135, 3, 458, 229, 0, 4135, 4225, 1, 0, 0, 0, 4136, 4137, 5, 46, 0, 0, 4137, 4138, 5, 353, 0, 0, 4138, 4139, 3, 522, 261, 0, 4139, 4140, 3, 458, 229, 0, 4140, 4225, 1, 0, 0, 0, 4141, 4142, 5, 46, 0, 0, 4142, 4143, 5, 353, 0, 0, 4143, 4225, 3, 522, 261, 0, 4144, 4145, 5, 46, 0, 0, 4145, 4146, 5, 353, 0, 0, 4146, 4147, 3, 522, 261, 0, 4147, 4148, 5, 36, 0, 0, 4148, 4149, 5, 2, 0, 0, 4149, 4150, 3, 1096, 548, 0, 4150, 4151, 5, 3, 0, 0, 4151, 4225, 1, 0, 0, 0, 4152, 4153, 5, 46, 0, 0, 4153, 4154, 5, 353, 0, 0, 4154, 4155, 3, 522, 261, 0, 4155, 4156, 5, 36, 0, 0, 4156, 4157, 5, 196, 0, 0, 4157, 4158, 5, 2, 0, 0, 4158, 4159, 3, 472, 236, 0, 4159, 4160, 5, 3, 0, 0, 4160, 4225, 1, 0, 0, 0, 4161, 4162, 5, 46, 0, 0, 4162, 4163, 5, 353, 0, 0, 4163, 4164, 3, 522, 261, 0, 4164, 4165, 5, 36, 0, 0, 4165, 4166, 5, 292, 0, 0, 4166, 4167, 3, 458, 229, 0, 4167, 4225, 1, 0, 0, 0, 4168, 4169, 5, 46, 0, 0, 4169, 4170, 5, 348, 0, 0, 4170, 4171, 5, 318, 0, 0, 4171, 4172, 5, 276, 0, 0, 4172, 4173, 3, 522, 261, 0, 4173, 4174, 3, 458, 229, 0, 4174, 4225, 1, 0, 0, 0, 4175, 4176, 5, 46, 0, 0, 4176, 4177, 5, 348, 0, 0, 4177, 4178, 5, 318, 0, 0, 4178, 4179, 5, 185, 0, 0, 4179, 4180, 3, 522, 261, 0, 4180, 4181, 3, 458, 229, 0, 4181, 4225, 1, 0, 0, 0, 4182, 4183, 5, 46, 0, 0, 4183, 4184, 5, 348, 0, 0, 4184, 4185, 5, 318, 0, 0, 4185, 4186, 5, 346, 0, 0, 4186, 4187, 3, 522, 261, 0, 4187, 4188, 3, 458, 229, 0, 4188, 4225, 1, 0, 0, 0, 4189, 4190, 5, 46, 0, 0, 4190, 4191, 5, 348, 0, 0, 4191, 4192, 5, 318, 0, 0, 4192, 4193, 5, 163, 0, 0, 4193, 4194, 3, 522, 261, 0, 4194, 4195, 3, 458, 229, 0, 4195, 4225, 1, 0, 0, 0, 4196, 4197, 5, 46, 0, 0, 4197, 4198, 5, 108, 0, 0, 4198, 4199, 3, 522, 261, 0, 4199, 4200, 3, 458, 229, 0, 4200, 4225, 1, 0, 0, 0, 4201, 4202, 5, 46, 0, 0, 4202, 4203, 5, 108, 0, 0, 4203, 4204, 5, 220, 0, 0, 4204, 4205, 5, 77, 0, 0, 4205, 4206, 5, 389, 0, 0, 4206, 4207, 3, 522, 261, 0, 4207, 4208, 3, 458, 229, 0, 4208, 4225, 1, 0, 0, 0, 4209, 4210, 5, 46, 0, 0, 4210, 4211, 5, 108, 0, 0, 4211, 4212, 3, 522, 261, 0, 4212, 4213, 5, 64, 0, 0, 4213, 4214, 3, 522, 261, 0, 4214, 4225, 1, 0, 0, 0, 4215, 4216, 5, 46, 0, 0, 4216, 4217, 5, 108, 0, 0, 4217, 4218, 5, 220, 0, 0, 4218, 4219, 5, 77, 0, 0, 4219, 4220, 5, 389, 0, 0, 4220, 4221, 3, 522, 261, 0, 4221, 4222, 5, 64, 0, 0, 4222, 4223, 3, 522, 261, 0, 4223, 4225, 1, 0, 0, 0, 4224, 4118, 1, 0, 0, 0, 4224, 4125, 1, 0, 0, 0, 4224, 4131, 1, 0, 0, 0, 4224, 4136, 1, 0, 0, 0, 4224, 4141, 1, 0, 0, 0, 4224, 4144, 1, 0, 0, 0, 4224, 4152, 1, 0, 0, 0, 4224, 4161, 1, 0, 0, 0, 4224, 4168, 1, 0, 0, 0, 4224, 4175, 1, 0, 0, 0, 4224, 4182, 1, 0, 0, 0, 4224, 4189, 1, 0, 0, 0, 4224, 4196, 1, 0, 0, 0, 4224, 4201, 1, 0, 0, 0, 4224, 4209, 1, 0, 0, 0, 4224, 4215, 1, 0, 0, 0, 4225, 457, 1, 0, 0, 0, 4226, 4227, 5, 2, 0, 0, 4227, 4228, 3, 460, 230, 0, 4228, 4229, 5, 3, 0, 0, 4229, 459, 1, 0, 0, 0, 4230, 4235, 3, 462, 231, 0, 4231, 4232, 5, 6, 0, 0, 4232, 4234, 3, 462, 231, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4237, 1, 0, 0, 0, 4235, 4233, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 461, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4238, 4241, 3, 1378, 689, 0, 4239, 4240, 5, 10, 0, 0, 4240, 4242, 3, 464, 232, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 463, 1, 0, 0, 0, 4243, 4250, 3, 638, 319, 0, 4244, 4250, 3, 1390, 695, 0, 4245, 4250, 3, 1274, 637, 0, 4246, 4250, 3, 290, 145, 0, 4247, 4250, 3, 1356, 678, 0, 4248, 4250, 5, 400, 0, 0, 4249, 4243, 1, 0, 0, 0, 4249, 4244, 1, 0, 0, 0, 4249, 4245, 1, 0, 0, 0, 4249, 4246, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4249, 4248, 1, 0, 0, 0, 4250, 465, 1, 0, 0, 0, 4251, 4252, 5, 2, 0, 0, 4252, 4253, 3, 468, 234, 0, 4253, 4254, 5, 3, 0, 0, 4254, 467, 1, 0, 0, 0, 4255, 4260, 3, 470, 235, 0, 4256, 4257, 5, 6, 0, 0, 4257, 4259, 3, 470, 235, 0, 4258, 4256, 1, 0, 0, 0, 4259, 4262, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 469, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4263, 4264, 3, 1380, 690, 0, 4264, 4265, 5, 10, 0, 0, 4265, 4266, 3, 464, 232, 0, 4266, 471, 1, 0, 0, 0, 4267, 4270, 3, 474, 237, 0, 4268, 4270, 1, 0, 0, 0, 4269, 4267, 1, 0, 0, 0, 4269, 4268, 1, 0, 0, 0, 4270, 473, 1, 0, 0, 0, 4271, 4276, 3, 1356, 678, 0, 4272, 4273, 5, 6, 0, 0, 4273, 4275, 3, 1356, 678, 0, 4274, 4272, 1, 0, 0, 0, 4275, 4278, 1, 0, 0, 0, 4276, 4274, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 475, 1, 0, 0, 0, 4278, 4276, 1, 0, 0, 0, 4279, 4280, 5, 138, 0, 0, 4280, 4281, 5, 353, 0, 0, 4281, 4282, 3, 522, 261, 0, 4282, 4283, 5, 133, 0, 0, 4283, 4284, 5, 450, 0, 0, 4284, 4285, 3, 478, 239, 0, 4285, 4286, 3, 1356, 678, 0, 4286, 4317, 1, 0, 0, 0, 4287, 4288, 5, 138, 0, 0, 4288, 4289, 5, 353, 0, 0, 4289, 4290, 3, 522, 261, 0, 4290, 4291, 5, 133, 0, 0, 4291, 4292, 5, 450, 0, 0, 4292, 4293, 3, 478, 239, 0, 4293, 4294, 3, 1356, 678, 0, 4294, 4295, 5, 145, 0, 0, 4295, 4296, 3, 1356, 678, 0, 4296, 4317, 1, 0, 0, 0, 4297, 4298, 5, 138, 0, 0, 4298, 4299, 5, 353, 0, 0, 4299, 4300, 3, 522, 261, 0, 4300, 4301, 5, 133, 0, 0, 4301, 4302, 5, 450, 0, 0, 4302, 4303, 3, 478, 239, 0, 4303, 4304, 3, 1356, 678, 0, 4304, 4305, 5, 135, 0, 0, 4305, 4306, 3, 1356, 678, 0, 4306, 4317, 1, 0, 0, 0, 4307, 4308, 5, 138, 0, 0, 4308, 4309, 5, 353, 0, 0, 4309, 4310, 3, 522, 261, 0, 4310, 4311, 5, 302, 0, 0, 4311, 4312, 5, 450, 0, 0, 4312, 4313, 3, 1356, 678, 0, 4313, 4314, 5, 94, 0, 0, 4314, 4315, 3, 1356, 678, 0, 4315, 4317, 1, 0, 0, 0, 4316, 4279, 1, 0, 0, 0, 4316, 4287, 1, 0, 0, 0, 4316, 4297, 1, 0, 0, 0, 4316, 4307, 1, 0, 0, 0, 4317, 477, 1, 0, 0, 0, 4318, 4319, 5, 220, 0, 0, 4319, 4320, 5, 77, 0, 0, 4320, 4323, 5, 389, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4318, 1, 0, 0, 0, 4322, 4321, 1, 0, 0, 0, 4323, 479, 1, 0, 0, 0, 4324, 4325, 5, 46, 0, 0, 4325, 4326, 5, 271, 0, 0, 4326, 4327, 5, 156, 0, 0, 4327, 4328, 3, 522, 261, 0, 4328, 4329, 3, 486, 243, 0, 4329, 4330, 5, 62, 0, 0, 4330, 4331, 5, 353, 0, 0, 4331, 4332, 3, 1116, 558, 0, 4332, 4333, 5, 100, 0, 0, 4333, 4334, 3, 1338, 669, 0, 4334, 4335, 3, 488, 244, 0, 4335, 4336, 5, 36, 0, 0, 4336, 4337, 3, 482, 241, 0, 4337, 481, 1, 0, 0, 0, 4338, 4343, 3, 484, 242, 0, 4339, 4340, 5, 6, 0, 0, 4340, 4342, 3, 484, 242, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4345, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 483, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4346, 4347, 5, 271, 0, 0, 4347, 4348, 3, 1354, 677, 0, 4348, 4349, 3, 682, 341, 0, 4349, 4350, 3, 490, 245, 0, 4350, 4351, 3, 492, 246, 0, 4351, 4372, 1, 0, 0, 0, 4352, 4353, 5, 271, 0, 0, 4353, 4354, 3, 1354, 677, 0, 4354, 4355, 3, 686, 343, 0, 4355, 4356, 3, 490, 245, 0, 4356, 4357, 3, 492, 246, 0, 4357, 4372, 1, 0, 0, 0, 4358, 4359, 5, 211, 0, 0, 4359, 4360, 3, 1354, 677, 0, 4360, 4361, 3, 624, 312, 0, 4361, 4372, 1, 0, 0, 0, 4362, 4363, 5, 211, 0, 0, 4363, 4364, 3, 1354, 677, 0, 4364, 4365, 5, 2, 0, 0, 4365, 4366, 3, 1284, 642, 0, 4366, 4367, 5, 3, 0, 0, 4367, 4368, 3, 624, 312, 0, 4368, 4372, 1, 0, 0, 0, 4369, 4370, 5, 338, 0, 0, 4370, 4372, 3, 1116, 558, 0, 4371, 4346, 1, 0, 0, 0, 4371, 4352, 1, 0, 0, 0, 4371, 4358, 1, 0, 0, 0, 4371, 4362, 1, 0, 0, 0, 4371, 4369, 1, 0, 0, 0, 4372, 485, 1, 0, 0, 0, 4373, 4376, 5, 53, 0, 0, 4374, 4376, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4375, 4374, 1, 0, 0, 0, 4376, 487, 1, 0, 0, 0, 4377, 4378, 5, 206, 0, 0, 4378, 4381, 3, 522, 261, 0, 4379, 4381, 1, 0, 0, 0, 4380, 4377, 1, 0, 0, 0, 4380, 4379, 1, 0, 0, 0, 4381, 489, 1, 0, 0, 0, 4382, 4383, 5, 62, 0, 0, 4383, 4390, 5, 318, 0, 0, 4384, 4385, 5, 62, 0, 0, 4385, 4386, 5, 83, 0, 0, 4386, 4387, 5, 147, 0, 0, 4387, 4390, 3, 522, 261, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4382, 1, 0, 0, 0, 4389, 4384, 1, 0, 0, 0, 4389, 4388, 1, 0, 0, 0, 4390, 491, 1, 0, 0, 0, 4391, 4394, 5, 295, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4391, 1, 0, 0, 0, 4393, 4392, 1, 0, 0, 0, 4394, 493, 1, 0, 0, 0, 4395, 4396, 5, 46, 0, 0, 4396, 4397, 5, 271, 0, 0, 4397, 4398, 5, 206, 0, 0, 4398, 4399, 3, 522, 261, 0, 4399, 4400, 5, 100, 0, 0, 4400, 4401, 3, 1338, 669, 0, 4401, 495, 1, 0, 0, 0, 4402, 4403, 5, 138, 0, 0, 4403, 4404, 5, 271, 0, 0, 4404, 4405, 5, 206, 0, 0, 4405, 4406, 3, 522, 261, 0, 4406, 4407, 5, 100, 0, 0, 4407, 4408, 3, 1338, 669, 0, 4408, 4409, 5, 133, 0, 0, 4409, 4410, 3, 482, 241, 0, 4410, 4421, 1, 0, 0, 0, 4411, 4412, 5, 138, 0, 0, 4412, 4413, 5, 271, 0, 0, 4413, 4414, 5, 206, 0, 0, 4414, 4415, 3, 522, 261, 0, 4415, 4416, 5, 100, 0, 0, 4416, 4417, 3, 1338, 669, 0, 4417, 4418, 5, 191, 0, 0, 4418, 4419, 3, 498, 249, 0, 4419, 4421, 1, 0, 0, 0, 4420, 4402, 1, 0, 0, 0, 4420, 4411, 1, 0, 0, 0, 4421, 497, 1, 0, 0, 0, 4422, 4427, 3, 500, 250, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 500, 250, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 499, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4431, 5, 271, 0, 0, 4431, 4432, 3, 1354, 677, 0, 4432, 4433, 5, 2, 0, 0, 4433, 4434, 3, 1284, 642, 0, 4434, 4435, 5, 3, 0, 0, 4435, 4443, 1, 0, 0, 0, 4436, 4437, 5, 211, 0, 0, 4437, 4438, 3, 1354, 677, 0, 4438, 4439, 5, 2, 0, 0, 4439, 4440, 3, 1284, 642, 0, 4440, 4441, 5, 3, 0, 0, 4441, 4443, 1, 0, 0, 0, 4442, 4430, 1, 0, 0, 0, 4442, 4436, 1, 0, 0, 0, 4443, 501, 1, 0, 0, 0, 4444, 4445, 5, 191, 0, 0, 4445, 4446, 5, 271, 0, 0, 4446, 4447, 5, 156, 0, 0, 4447, 4448, 3, 522, 261, 0, 4448, 4449, 5, 100, 0, 0, 4449, 4450, 3, 1338, 669, 0, 4450, 4451, 3, 106, 53, 0, 4451, 4463, 1, 0, 0, 0, 4452, 4453, 5, 191, 0, 0, 4453, 4454, 5, 271, 0, 0, 4454, 4455, 5, 156, 0, 0, 4455, 4456, 5, 220, 0, 0, 4456, 4457, 5, 389, 0, 0, 4457, 4458, 3, 522, 261, 0, 4458, 4459, 5, 100, 0, 0, 4459, 4460, 3, 1338, 669, 0, 4460, 4461, 3, 106, 53, 0, 4461, 4463, 1, 0, 0, 0, 4462, 4444, 1, 0, 0, 0, 4462, 4452, 1, 0, 0, 0, 4463, 503, 1, 0, 0, 0, 4464, 4465, 5, 191, 0, 0, 4465, 4466, 5, 271, 0, 0, 4466, 4467, 5, 206, 0, 0, 4467, 4468, 3, 522, 261, 0, 4468, 4469, 5, 100, 0, 0, 4469, 4470, 3, 1338, 669, 0, 4470, 4471, 3, 106, 53, 0, 4471, 4483, 1, 0, 0, 0, 4472, 4473, 5, 191, 0, 0, 4473, 4474, 5, 271, 0, 0, 4474, 4475, 5, 206, 0, 0, 4475, 4476, 5, 220, 0, 0, 4476, 4477, 5, 389, 0, 0, 4477, 4478, 3, 522, 261, 0, 4478, 4479, 5, 100, 0, 0, 4479, 4480, 3, 1338, 669, 0, 4480, 4481, 3, 106, 53, 0, 4481, 4483, 1, 0, 0, 0, 4482, 4464, 1, 0, 0, 0, 4482, 4472, 1, 0, 0, 0, 4483, 505, 1, 0, 0, 0, 4484, 4485, 5, 191, 0, 0, 4485, 4486, 5, 274, 0, 0, 4486, 4487, 5, 147, 0, 0, 4487, 4488, 3, 1368, 684, 0, 4488, 4489, 3, 106, 53, 0, 4489, 507, 1, 0, 0, 0, 4490, 4491, 5, 294, 0, 0, 4491, 4492, 5, 274, 0, 0, 4492, 4493, 5, 147, 0, 0, 4493, 4494, 3, 1368, 684, 0, 4494, 4495, 5, 94, 0, 0, 4495, 4496, 3, 1366, 683, 0, 4496, 509, 1, 0, 0, 0, 4497, 4498, 5, 191, 0, 0, 4498, 4499, 3, 512, 256, 0, 4499, 4500, 5, 220, 0, 0, 4500, 4501, 5, 389, 0, 0, 4501, 4502, 3, 520, 260, 0, 4502, 4503, 3, 106, 53, 0, 4503, 4576, 1, 0, 0, 0, 4504, 4505, 5, 191, 0, 0, 4505, 4506, 3, 512, 256, 0, 4506, 4507, 3, 520, 260, 0, 4507, 4508, 3, 106, 53, 0, 4508, 4576, 1, 0, 0, 0, 4509, 4510, 5, 191, 0, 0, 4510, 4511, 3, 516, 258, 0, 4511, 4512, 5, 220, 0, 0, 4512, 4513, 5, 389, 0, 0, 4513, 4514, 3, 1336, 668, 0, 4514, 4515, 3, 106, 53, 0, 4515, 4576, 1, 0, 0, 0, 4516, 4517, 5, 191, 0, 0, 4517, 4518, 3, 516, 258, 0, 4518, 4519, 3, 1336, 668, 0, 4519, 4520, 3, 106, 53, 0, 4520, 4576, 1, 0, 0, 0, 4521, 4522, 5, 191, 0, 0, 4522, 4523, 3, 518, 259, 0, 4523, 4524, 3, 1338, 669, 0, 4524, 4525, 5, 80, 0, 0, 4525, 4526, 3, 522, 261, 0, 4526, 4527, 3, 106, 53, 0, 4527, 4576, 1, 0, 0, 0, 4528, 4529, 5, 191, 0, 0, 4529, 4530, 3, 518, 259, 0, 4530, 4531, 5, 220, 0, 0, 4531, 4532, 5, 389, 0, 0, 4532, 4533, 3, 1338, 669, 0, 4533, 4534, 5, 80, 0, 0, 4534, 4535, 3, 522, 261, 0, 4535, 4536, 3, 106, 53, 0, 4536, 4576, 1, 0, 0, 0, 4537, 4538, 5, 191, 0, 0, 4538, 4539, 5, 353, 0, 0, 4539, 4540, 3, 526, 263, 0, 4540, 4541, 3, 106, 53, 0, 4541, 4576, 1, 0, 0, 0, 4542, 4543, 5, 191, 0, 0, 4543, 4544, 5, 353, 0, 0, 4544, 4545, 5, 220, 0, 0, 4545, 4546, 5, 389, 0, 0, 4546, 4547, 3, 526, 263, 0, 4547, 4548, 3, 106, 53, 0, 4548, 4576, 1, 0, 0, 0, 4549, 4550, 5, 191, 0, 0, 4550, 4551, 5, 189, 0, 0, 4551, 4552, 3, 526, 263, 0, 4552, 4553, 3, 106, 53, 0, 4553, 4576, 1, 0, 0, 0, 4554, 4555, 5, 191, 0, 0, 4555, 4556, 5, 189, 0, 0, 4556, 4557, 5, 220, 0, 0, 4557, 4558, 5, 389, 0, 0, 4558, 4559, 3, 526, 263, 0, 4559, 4560, 3, 106, 53, 0, 4560, 4576, 1, 0, 0, 0, 4561, 4562, 5, 191, 0, 0, 4562, 4563, 5, 226, 0, 0, 4563, 4564, 5, 109, 0, 0, 4564, 4565, 3, 520, 260, 0, 4565, 4566, 3, 106, 53, 0, 4566, 4576, 1, 0, 0, 0, 4567, 4568, 5, 191, 0, 0, 4568, 4569, 5, 226, 0, 0, 4569, 4570, 5, 109, 0, 0, 4570, 4571, 5, 220, 0, 0, 4571, 4572, 5, 389, 0, 0, 4572, 4573, 3, 520, 260, 0, 4573, 4574, 3, 106, 53, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4497, 1, 0, 0, 0, 4575, 4504, 1, 0, 0, 0, 4575, 4509, 1, 0, 0, 0, 4575, 4516, 1, 0, 0, 0, 4575, 4521, 1, 0, 0, 0, 4575, 4528, 1, 0, 0, 0, 4575, 4537, 1, 0, 0, 0, 4575, 4542, 1, 0, 0, 0, 4575, 4549, 1, 0, 0, 0, 4575, 4554, 1, 0, 0, 0, 4575, 4561, 1, 0, 0, 0, 4575, 4567, 1, 0, 0, 0, 4576, 511, 1, 0, 0, 0, 4577, 4601, 5, 92, 0, 0, 4578, 4601, 5, 321, 0, 0, 4579, 4601, 5, 369, 0, 0, 4580, 4581, 5, 251, 0, 0, 4581, 4601, 5, 369, 0, 0, 4582, 4601, 5, 226, 0, 0, 4583, 4584, 5, 63, 0, 0, 4584, 4601, 5, 92, 0, 0, 4585, 4601, 5, 108, 0, 0, 4586, 4601, 5, 168, 0, 0, 4587, 4601, 5, 335, 0, 0, 4588, 4589, 5, 348, 0, 0, 4589, 4590, 5, 318, 0, 0, 4590, 4601, 5, 276, 0, 0, 4591, 4592, 5, 348, 0, 0, 4592, 4593, 5, 318, 0, 0, 4593, 4601, 5, 185, 0, 0, 4594, 4595, 5, 348, 0, 0, 4595, 4596, 5, 318, 0, 0, 4596, 4601, 5, 346, 0, 0, 4597, 4598, 5, 348, 0, 0, 4598, 4599, 5, 318, 0, 0, 4599, 4601, 5, 163, 0, 0, 4600, 4577, 1, 0, 0, 0, 4600, 4578, 1, 0, 0, 0, 4600, 4579, 1, 0, 0, 0, 4600, 4580, 1, 0, 0, 0, 4600, 4582, 1, 0, 0, 0, 4600, 4583, 1, 0, 0, 0, 4600, 4585, 1, 0, 0, 0, 4600, 4586, 1, 0, 0, 0, 4600, 4587, 1, 0, 0, 0, 4600, 4588, 1, 0, 0, 0, 4600, 4591, 1, 0, 0, 0, 4600, 4594, 1, 0, 0, 0, 4600, 4597, 1, 0, 0, 0, 4601, 513, 1, 0, 0, 0, 4602, 4608, 3, 516, 258, 0, 4603, 4608, 5, 175, 0, 0, 4604, 4608, 5, 311, 0, 0, 4605, 4608, 5, 451, 0, 0, 4606, 4608, 5, 344, 0, 0, 4607, 4602, 1, 0, 0, 0, 4607, 4603, 1, 0, 0, 0, 4607, 4604, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4606, 1, 0, 0, 0, 4608, 515, 1, 0, 0, 0, 4609, 4610, 5, 131, 0, 0, 4610, 4624, 5, 446, 0, 0, 4611, 4612, 5, 198, 0, 0, 4612, 4624, 5, 350, 0, 0, 4613, 4624, 5, 204, 0, 0, 4614, 4615, 5, 63, 0, 0, 4615, 4616, 5, 174, 0, 0, 4616, 4624, 5, 374, 0, 0, 4617, 4618, 3, 306, 153, 0, 4618, 4619, 5, 238, 0, 0, 4619, 4624, 1, 0, 0, 0, 4620, 4624, 5, 452, 0, 0, 4621, 4624, 5, 316, 0, 0, 4622, 4624, 5, 324, 0, 0, 4623, 4609, 1, 0, 0, 0, 4623, 4611, 1, 0, 0, 0, 4623, 4613, 1, 0, 0, 0, 4623, 4614, 1, 0, 0, 0, 4623, 4617, 1, 0, 0, 0, 4623, 4620, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4623, 4622, 1, 0, 0, 0, 4624, 517, 1, 0, 0, 0, 4625, 4626, 7, 23, 0, 0, 4626, 519, 1, 0, 0, 0, 4627, 4632, 3, 522, 261, 0, 4628, 4629, 5, 6, 0, 0, 4629, 4631, 3, 522, 261, 0, 4630, 4628, 1, 0, 0, 0, 4631, 4634, 1, 0, 0, 0, 4632, 4630, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 521, 1, 0, 0, 0, 4634, 4632, 1, 0, 0, 0, 4635, 4637, 3, 1370, 685, 0, 4636, 4638, 3, 524, 262, 0, 4637, 4636, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 523, 1, 0, 0, 0, 4639, 4640, 5, 11, 0, 0, 4640, 4642, 3, 1340, 670, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 525, 1, 0, 0, 0, 4645, 4650, 3, 1116, 558, 0, 4646, 4647, 5, 6, 0, 0, 4647, 4649, 3, 1116, 558, 0, 4648, 4646, 1, 0, 0, 0, 4649, 4652, 1, 0, 0, 0, 4650, 4648, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 527, 1, 0, 0, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4654, 5, 351, 0, 0, 4654, 4655, 3, 986, 493, 0, 4655, 4656, 3, 1074, 537, 0, 4656, 4657, 3, 530, 265, 0, 4657, 4658, 3, 106, 53, 0, 4658, 529, 1, 0, 0, 0, 4659, 4660, 5, 167, 0, 0, 4660, 4665, 5, 219, 0, 0, 4661, 4662, 5, 307, 0, 0, 4662, 4665, 5, 219, 0, 0, 4663, 4665, 1, 0, 0, 0, 4664, 4659, 1, 0, 0, 0, 4664, 4661, 1, 0, 0, 0, 4664, 4663, 1, 0, 0, 0, 4665, 531, 1, 0, 0, 0, 4666, 4667, 5, 159, 0, 0, 4667, 4668, 5, 80, 0, 0, 4668, 4669, 3, 512, 256, 0, 4669, 4670, 3, 522, 261, 0, 4670, 4671, 5, 116, 0, 0, 4671, 4672, 3, 534, 267, 0, 4672, 4814, 1, 0, 0, 0, 4673, 4674, 5, 159, 0, 0, 4674, 4675, 5, 80, 0, 0, 4675, 4676, 5, 44, 0, 0, 4676, 4677, 3, 522, 261, 0, 4677, 4678, 5, 116, 0, 0, 4678, 4679, 3, 534, 267, 0, 4679, 4814, 1, 0, 0, 0, 4680, 4681, 5, 159, 0, 0, 4681, 4682, 5, 80, 0, 0, 4682, 4683, 3, 514, 257, 0, 4683, 4684, 3, 1338, 669, 0, 4684, 4685, 5, 116, 0, 0, 4685, 4686, 3, 534, 267, 0, 4686, 4814, 1, 0, 0, 0, 4687, 4688, 5, 159, 0, 0, 4688, 4689, 5, 80, 0, 0, 4689, 4690, 5, 353, 0, 0, 4690, 4691, 3, 1116, 558, 0, 4691, 4692, 5, 116, 0, 0, 4692, 4693, 3, 534, 267, 0, 4693, 4814, 1, 0, 0, 0, 4694, 4695, 5, 159, 0, 0, 4695, 4696, 5, 80, 0, 0, 4696, 4697, 5, 189, 0, 0, 4697, 4698, 3, 1116, 558, 0, 4698, 4699, 5, 116, 0, 0, 4699, 4700, 3, 534, 267, 0, 4700, 4814, 1, 0, 0, 0, 4701, 4702, 5, 159, 0, 0, 4702, 4703, 5, 80, 0, 0, 4703, 4704, 5, 136, 0, 0, 4704, 4705, 3, 648, 324, 0, 4705, 4706, 5, 116, 0, 0, 4706, 4707, 3, 534, 267, 0, 4707, 4814, 1, 0, 0, 0, 4708, 4709, 5, 159, 0, 0, 4709, 4710, 5, 80, 0, 0, 4710, 4711, 5, 211, 0, 0, 4711, 4712, 3, 624, 312, 0, 4712, 4713, 5, 116, 0, 0, 4713, 4714, 3, 534, 267, 0, 4714, 4814, 1, 0, 0, 0, 4715, 4716, 5, 159, 0, 0, 4716, 4717, 5, 80, 0, 0, 4717, 4718, 5, 271, 0, 0, 4718, 4719, 3, 686, 343, 0, 4719, 4720, 5, 116, 0, 0, 4720, 4721, 3, 534, 267, 0, 4721, 4814, 1, 0, 0, 0, 4722, 4723, 5, 159, 0, 0, 4723, 4724, 5, 80, 0, 0, 4724, 4725, 5, 45, 0, 0, 4725, 4726, 3, 1338, 669, 0, 4726, 4727, 5, 80, 0, 0, 4727, 4728, 3, 522, 261, 0, 4728, 4729, 5, 116, 0, 0, 4729, 4730, 3, 534, 267, 0, 4730, 4814, 1, 0, 0, 0, 4731, 4732, 5, 159, 0, 0, 4732, 4733, 5, 80, 0, 0, 4733, 4734, 5, 45, 0, 0, 4734, 4735, 3, 1338, 669, 0, 4735, 4736, 5, 80, 0, 0, 4736, 4737, 5, 189, 0, 0, 4737, 4738, 3, 522, 261, 0, 4738, 4739, 5, 116, 0, 0, 4739, 4740, 3, 534, 267, 0, 4740, 4814, 1, 0, 0, 0, 4741, 4742, 5, 159, 0, 0, 4742, 4743, 5, 80, 0, 0, 4743, 4744, 3, 518, 259, 0, 4744, 4745, 3, 1338, 669, 0, 4745, 4746, 5, 80, 0, 0, 4746, 4747, 3, 522, 261, 0, 4747, 4748, 5, 116, 0, 0, 4748, 4749, 3, 534, 267, 0, 4749, 4814, 1, 0, 0, 0, 4750, 4751, 5, 159, 0, 0, 4751, 4752, 5, 80, 0, 0, 4752, 4753, 5, 289, 0, 0, 4753, 4754, 3, 624, 312, 0, 4754, 4755, 5, 116, 0, 0, 4755, 4756, 3, 534, 267, 0, 4756, 4814, 1, 0, 0, 0, 4757, 4758, 5, 159, 0, 0, 4758, 4759, 5, 80, 0, 0, 4759, 4760, 5, 442, 0, 0, 4760, 4761, 3, 624, 312, 0, 4761, 4762, 5, 116, 0, 0, 4762, 4763, 3, 534, 267, 0, 4763, 4814, 1, 0, 0, 0, 4764, 4765, 5, 159, 0, 0, 4765, 4766, 5, 80, 0, 0, 4766, 4767, 5, 443, 0, 0, 4767, 4768, 5, 62, 0, 0, 4768, 4769, 3, 1116, 558, 0, 4769, 4770, 5, 238, 0, 0, 4770, 4771, 3, 1338, 669, 0, 4771, 4772, 5, 116, 0, 0, 4772, 4773, 3, 534, 267, 0, 4773, 4814, 1, 0, 0, 0, 4774, 4775, 5, 159, 0, 0, 4775, 4776, 5, 80, 0, 0, 4776, 4777, 5, 271, 0, 0, 4777, 4778, 5, 156, 0, 0, 4778, 4779, 3, 522, 261, 0, 4779, 4780, 5, 100, 0, 0, 4780, 4781, 3, 1338, 669, 0, 4781, 4782, 5, 116, 0, 0, 4782, 4783, 3, 534, 267, 0, 4783, 4814, 1, 0, 0, 0, 4784, 4785, 5, 159, 0, 0, 4785, 4786, 5, 80, 0, 0, 4786, 4787, 5, 271, 0, 0, 4787, 4788, 5, 206, 0, 0, 4788, 4789, 3, 522, 261, 0, 4789, 4790, 5, 100, 0, 0, 4790, 4791, 3, 1338, 669, 0, 4791, 4792, 5, 116, 0, 0, 4792, 4793, 3, 534, 267, 0, 4793, 4814, 1, 0, 0, 0, 4794, 4795, 5, 159, 0, 0, 4795, 4796, 5, 80, 0, 0, 4796, 4797, 5, 239, 0, 0, 4797, 4798, 5, 267, 0, 0, 4798, 4799, 3, 290, 145, 0, 4799, 4800, 5, 116, 0, 0, 4800, 4801, 3, 534, 267, 0, 4801, 4814, 1, 0, 0, 0, 4802, 4803, 5, 159, 0, 0, 4803, 4804, 5, 80, 0, 0, 4804, 4805, 5, 41, 0, 0, 4805, 4806, 5, 2, 0, 0, 4806, 4807, 3, 1116, 558, 0, 4807, 4808, 5, 36, 0, 0, 4808, 4809, 3, 1116, 558, 0, 4809, 4810, 5, 3, 0, 0, 4810, 4811, 5, 116, 0, 0, 4811, 4812, 3, 534, 267, 0, 4812, 4814, 1, 0, 0, 0, 4813, 4666, 1, 0, 0, 0, 4813, 4673, 1, 0, 0, 0, 4813, 4680, 1, 0, 0, 0, 4813, 4687, 1, 0, 0, 0, 4813, 4694, 1, 0, 0, 0, 4813, 4701, 1, 0, 0, 0, 4813, 4708, 1, 0, 0, 0, 4813, 4715, 1, 0, 0, 0, 4813, 4722, 1, 0, 0, 0, 4813, 4731, 1, 0, 0, 0, 4813, 4741, 1, 0, 0, 0, 4813, 4750, 1, 0, 0, 0, 4813, 4757, 1, 0, 0, 0, 4813, 4764, 1, 0, 0, 0, 4813, 4774, 1, 0, 0, 0, 4813, 4784, 1, 0, 0, 0, 4813, 4794, 1, 0, 0, 0, 4813, 4802, 1, 0, 0, 0, 4814, 533, 1, 0, 0, 0, 4815, 4818, 3, 1356, 678, 0, 4816, 4818, 5, 78, 0, 0, 4817, 4815, 1, 0, 0, 0, 4817, 4816, 1, 0, 0, 0, 4818, 535, 1, 0, 0, 0, 4819, 4820, 5, 320, 0, 0, 4820, 4821, 5, 237, 0, 0, 4821, 4822, 3, 538, 269, 0, 4822, 4823, 5, 80, 0, 0, 4823, 4824, 3, 512, 256, 0, 4824, 4825, 3, 522, 261, 0, 4825, 4826, 5, 116, 0, 0, 4826, 4827, 3, 540, 270, 0, 4827, 4911, 1, 0, 0, 0, 4828, 4829, 5, 320, 0, 0, 4829, 4830, 5, 237, 0, 0, 4830, 4831, 3, 538, 269, 0, 4831, 4832, 5, 80, 0, 0, 4832, 4833, 5, 44, 0, 0, 4833, 4834, 3, 522, 261, 0, 4834, 4835, 5, 116, 0, 0, 4835, 4836, 3, 540, 270, 0, 4836, 4911, 1, 0, 0, 0, 4837, 4838, 5, 320, 0, 0, 4838, 4839, 5, 237, 0, 0, 4839, 4840, 3, 538, 269, 0, 4840, 4841, 5, 80, 0, 0, 4841, 4842, 3, 514, 257, 0, 4842, 4843, 3, 1338, 669, 0, 4843, 4844, 5, 116, 0, 0, 4844, 4845, 3, 540, 270, 0, 4845, 4911, 1, 0, 0, 0, 4846, 4847, 5, 320, 0, 0, 4847, 4848, 5, 237, 0, 0, 4848, 4849, 3, 538, 269, 0, 4849, 4850, 5, 80, 0, 0, 4850, 4851, 5, 353, 0, 0, 4851, 4852, 3, 1116, 558, 0, 4852, 4853, 5, 116, 0, 0, 4853, 4854, 3, 540, 270, 0, 4854, 4911, 1, 0, 0, 0, 4855, 4856, 5, 320, 0, 0, 4856, 4857, 5, 237, 0, 0, 4857, 4858, 3, 538, 269, 0, 4858, 4859, 5, 80, 0, 0, 4859, 4860, 5, 189, 0, 0, 4860, 4861, 3, 1116, 558, 0, 4861, 4862, 5, 116, 0, 0, 4862, 4863, 3, 540, 270, 0, 4863, 4911, 1, 0, 0, 0, 4864, 4865, 5, 320, 0, 0, 4865, 4866, 5, 237, 0, 0, 4866, 4867, 3, 538, 269, 0, 4867, 4868, 5, 80, 0, 0, 4868, 4869, 5, 136, 0, 0, 4869, 4870, 3, 648, 324, 0, 4870, 4871, 5, 116, 0, 0, 4871, 4872, 3, 540, 270, 0, 4872, 4911, 1, 0, 0, 0, 4873, 4874, 5, 320, 0, 0, 4874, 4875, 5, 237, 0, 0, 4875, 4876, 3, 538, 269, 0, 4876, 4877, 5, 80, 0, 0, 4877, 4878, 5, 211, 0, 0, 4878, 4879, 3, 624, 312, 0, 4879, 4880, 5, 116, 0, 0, 4880, 4881, 3, 540, 270, 0, 4881, 4911, 1, 0, 0, 0, 4882, 4883, 5, 320, 0, 0, 4883, 4884, 5, 237, 0, 0, 4884, 4885, 3, 538, 269, 0, 4885, 4886, 5, 80, 0, 0, 4886, 4887, 5, 239, 0, 0, 4887, 4888, 5, 267, 0, 0, 4888, 4889, 3, 290, 145, 0, 4889, 4890, 5, 116, 0, 0, 4890, 4891, 3, 540, 270, 0, 4891, 4911, 1, 0, 0, 0, 4892, 4893, 5, 320, 0, 0, 4893, 4894, 5, 237, 0, 0, 4894, 4895, 3, 538, 269, 0, 4895, 4896, 5, 80, 0, 0, 4896, 4897, 5, 289, 0, 0, 4897, 4898, 3, 624, 312, 0, 4898, 4899, 5, 116, 0, 0, 4899, 4900, 3, 540, 270, 0, 4900, 4911, 1, 0, 0, 0, 4901, 4902, 5, 320, 0, 0, 4902, 4903, 5, 237, 0, 0, 4903, 4904, 3, 538, 269, 0, 4904, 4905, 5, 80, 0, 0, 4905, 4906, 5, 442, 0, 0, 4906, 4907, 3, 624, 312, 0, 4907, 4908, 5, 116, 0, 0, 4908, 4909, 3, 540, 270, 0, 4909, 4911, 1, 0, 0, 0, 4910, 4819, 1, 0, 0, 0, 4910, 4828, 1, 0, 0, 0, 4910, 4837, 1, 0, 0, 0, 4910, 4846, 1, 0, 0, 0, 4910, 4855, 1, 0, 0, 0, 4910, 4864, 1, 0, 0, 0, 4910, 4873, 1, 0, 0, 0, 4910, 4882, 1, 0, 0, 0, 4910, 4892, 1, 0, 0, 0, 4910, 4901, 1, 0, 0, 0, 4911, 537, 1, 0, 0, 0, 4912, 4913, 5, 62, 0, 0, 4913, 4916, 3, 70, 35, 0, 4914, 4916, 1, 0, 0, 0, 4915, 4912, 1, 0, 0, 0, 4915, 4914, 1, 0, 0, 0, 4916, 539, 1, 0, 0, 0, 4917, 4920, 3, 1356, 678, 0, 4918, 4920, 5, 78, 0, 0, 4919, 4917, 1, 0, 0, 0, 4919, 4918, 1, 0, 0, 0, 4920, 541, 1, 0, 0, 0, 4921, 4922, 5, 61, 0, 0, 4922, 4926, 3, 544, 272, 0, 4923, 4924, 5, 258, 0, 0, 4924, 4926, 3, 544, 272, 0, 4925, 4921, 1, 0, 0, 0, 4925, 4923, 1, 0, 0, 0, 4926, 543, 1, 0, 0, 0, 4927, 4994, 3, 952, 476, 0, 4928, 4929, 3, 546, 273, 0, 4929, 4930, 3, 952, 476, 0, 4930, 4994, 1, 0, 0, 0, 4931, 4932, 5, 261, 0, 0, 4932, 4933, 3, 548, 274, 0, 4933, 4934, 3, 952, 476, 0, 4934, 4994, 1, 0, 0, 0, 4935, 4936, 5, 286, 0, 0, 4936, 4937, 3, 548, 274, 0, 4937, 4938, 3, 952, 476, 0, 4938, 4994, 1, 0, 0, 0, 4939, 4940, 5, 207, 0, 0, 4940, 4941, 3, 548, 274, 0, 4941, 4942, 3, 952, 476, 0, 4942, 4994, 1, 0, 0, 0, 4943, 4944, 5, 240, 0, 0, 4944, 4945, 3, 548, 274, 0, 4945, 4946, 3, 952, 476, 0, 4946, 4994, 1, 0, 0, 0, 4947, 4948, 5, 130, 0, 0, 4948, 4949, 3, 1362, 681, 0, 4949, 4950, 3, 548, 274, 0, 4950, 4951, 3, 952, 476, 0, 4951, 4994, 1, 0, 0, 0, 4952, 4953, 5, 300, 0, 0, 4953, 4954, 3, 1362, 681, 0, 4954, 4955, 3, 548, 274, 0, 4955, 4956, 3, 952, 476, 0, 4956, 4994, 1, 0, 0, 0, 4957, 4958, 3, 1362, 681, 0, 4958, 4959, 3, 548, 274, 0, 4959, 4960, 3, 952, 476, 0, 4960, 4994, 1, 0, 0, 0, 4961, 4962, 5, 30, 0, 0, 4962, 4963, 3, 548, 274, 0, 4963, 4964, 3, 952, 476, 0, 4964, 4994, 1, 0, 0, 0, 4965, 4966, 5, 210, 0, 0, 4966, 4967, 3, 548, 274, 0, 4967, 4968, 3, 952, 476, 0, 4968, 4994, 1, 0, 0, 0, 4969, 4970, 5, 210, 0, 0, 4970, 4971, 3, 1362, 681, 0, 4971, 4972, 3, 548, 274, 0, 4972, 4973, 3, 952, 476, 0, 4973, 4994, 1, 0, 0, 0, 4974, 4975, 5, 210, 0, 0, 4975, 4976, 5, 30, 0, 0, 4976, 4977, 3, 548, 274, 0, 4977, 4978, 3, 952, 476, 0, 4978, 4994, 1, 0, 0, 0, 4979, 4980, 5, 144, 0, 0, 4980, 4981, 3, 548, 274, 0, 4981, 4982, 3, 952, 476, 0, 4982, 4994, 1, 0, 0, 0, 4983, 4984, 5, 144, 0, 0, 4984, 4985, 3, 1362, 681, 0, 4985, 4986, 3, 548, 274, 0, 4986, 4987, 3, 952, 476, 0, 4987, 4994, 1, 0, 0, 0, 4988, 4989, 5, 144, 0, 0, 4989, 4990, 5, 30, 0, 0, 4990, 4991, 3, 548, 274, 0, 4991, 4992, 3, 952, 476, 0, 4992, 4994, 1, 0, 0, 0, 4993, 4927, 1, 0, 0, 0, 4993, 4928, 1, 0, 0, 0, 4993, 4931, 1, 0, 0, 0, 4993, 4935, 1, 0, 0, 0, 4993, 4939, 1, 0, 0, 0, 4993, 4943, 1, 0, 0, 0, 4993, 4947, 1, 0, 0, 0, 4993, 4952, 1, 0, 0, 0, 4993, 4957, 1, 0, 0, 0, 4993, 4961, 1, 0, 0, 0, 4993, 4965, 1, 0, 0, 0, 4993, 4969, 1, 0, 0, 0, 4993, 4974, 1, 0, 0, 0, 4993, 4979, 1, 0, 0, 0, 4993, 4983, 1, 0, 0, 0, 4993, 4988, 1, 0, 0, 0, 4994, 545, 1, 0, 0, 0, 4995, 4996, 7, 24, 0, 0, 4996, 547, 1, 0, 0, 0, 4997, 5000, 3, 546, 273, 0, 4998, 5000, 1, 0, 0, 0, 4999, 4997, 1, 0, 0, 0, 4999, 4998, 1, 0, 0, 0, 5000, 549, 1, 0, 0, 0, 5001, 5002, 5, 65, 0, 0, 5002, 5003, 3, 554, 277, 0, 5003, 5004, 5, 80, 0, 0, 5004, 5005, 3, 560, 280, 0, 5005, 5006, 5, 94, 0, 0, 5006, 5007, 3, 562, 281, 0, 5007, 5008, 3, 566, 283, 0, 5008, 551, 1, 0, 0, 0, 5009, 5010, 5, 310, 0, 0, 5010, 5011, 3, 554, 277, 0, 5011, 5012, 5, 80, 0, 0, 5012, 5013, 3, 560, 280, 0, 5013, 5014, 5, 64, 0, 0, 5014, 5015, 3, 562, 281, 0, 5015, 5016, 3, 106, 53, 0, 5016, 5029, 1, 0, 0, 0, 5017, 5018, 5, 310, 0, 0, 5018, 5019, 5, 65, 0, 0, 5019, 5020, 5, 272, 0, 0, 5020, 5021, 5, 62, 0, 0, 5021, 5022, 3, 554, 277, 0, 5022, 5023, 5, 80, 0, 0, 5023, 5024, 3, 560, 280, 0, 5024, 5025, 5, 64, 0, 0, 5025, 5026, 3, 562, 281, 0, 5026, 5027, 3, 106, 53, 0, 5027, 5029, 1, 0, 0, 0, 5028, 5009, 1, 0, 0, 0, 5028, 5017, 1, 0, 0, 0, 5029, 553, 1, 0, 0, 0, 5030, 5046, 3, 556, 278, 0, 5031, 5046, 5, 30, 0, 0, 5032, 5033, 5, 30, 0, 0, 5033, 5046, 5, 287, 0, 0, 5034, 5035, 5, 30, 0, 0, 5035, 5036, 5, 2, 0, 0, 5036, 5037, 3, 214, 107, 0, 5037, 5038, 5, 3, 0, 0, 5038, 5046, 1, 0, 0, 0, 5039, 5040, 5, 30, 0, 0, 5040, 5041, 5, 287, 0, 0, 5041, 5042, 5, 2, 0, 0, 5042, 5043, 3, 214, 107, 0, 5043, 5044, 5, 3, 0, 0, 5044, 5046, 1, 0, 0, 0, 5045, 5030, 1, 0, 0, 0, 5045, 5031, 1, 0, 0, 0, 5045, 5032, 1, 0, 0, 0, 5045, 5034, 1, 0, 0, 0, 5045, 5039, 1, 0, 0, 0, 5046, 555, 1, 0, 0, 0, 5047, 5052, 3, 558, 279, 0, 5048, 5049, 5, 6, 0, 0, 5049, 5051, 3, 558, 279, 0, 5050, 5048, 1, 0, 0, 0, 5051, 5054, 1, 0, 0, 0, 5052, 5050, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 557, 1, 0, 0, 0, 5054, 5052, 1, 0, 0, 0, 5055, 5056, 5, 88, 0, 0, 5056, 5065, 3, 212, 106, 0, 5057, 5058, 5, 86, 0, 0, 5058, 5065, 3, 212, 106, 0, 5059, 5060, 5, 46, 0, 0, 5060, 5065, 3, 212, 106, 0, 5061, 5062, 3, 1370, 685, 0, 5062, 5063, 3, 212, 106, 0, 5063, 5065, 1, 0, 0, 0, 5064, 5055, 1, 0, 0, 0, 5064, 5057, 1, 0, 0, 0, 5064, 5059, 1, 0, 0, 0, 5064, 5061, 1, 0, 0, 0, 5065, 559, 1, 0, 0, 0, 5066, 5125, 3, 1332, 666, 0, 5067, 5068, 5, 92, 0, 0, 5068, 5125, 3, 1332, 666, 0, 5069, 5070, 5, 321, 0, 0, 5070, 5125, 3, 1332, 666, 0, 5071, 5072, 5, 63, 0, 0, 5072, 5073, 5, 174, 0, 0, 5073, 5074, 5, 374, 0, 0, 5074, 5125, 3, 1336, 668, 0, 5075, 5076, 5, 63, 0, 0, 5076, 5077, 5, 324, 0, 0, 5077, 5125, 3, 1336, 668, 0, 5078, 5079, 5, 211, 0, 0, 5079, 5125, 3, 622, 311, 0, 5080, 5081, 5, 289, 0, 0, 5081, 5125, 3, 622, 311, 0, 5082, 5083, 5, 442, 0, 0, 5083, 5125, 3, 622, 311, 0, 5084, 5085, 5, 175, 0, 0, 5085, 5125, 3, 1336, 668, 0, 5086, 5087, 5, 189, 0, 0, 5087, 5125, 3, 520, 260, 0, 5088, 5089, 5, 238, 0, 0, 5089, 5125, 3, 1336, 668, 0, 5090, 5091, 5, 239, 0, 0, 5091, 5092, 5, 267, 0, 0, 5092, 5125, 3, 292, 146, 0, 5093, 5094, 5, 316, 0, 0, 5094, 5125, 3, 1336, 668, 0, 5095, 5096, 5, 344, 0, 0, 5096, 5125, 3, 1336, 668, 0, 5097, 5098, 5, 353, 0, 0, 5098, 5125, 3, 520, 260, 0, 5099, 5100, 5, 30, 0, 0, 5100, 5101, 5, 343, 0, 0, 5101, 5102, 5, 68, 0, 0, 5102, 5103, 5, 316, 0, 0, 5103, 5125, 3, 1336, 668, 0, 5104, 5105, 5, 30, 0, 0, 5105, 5106, 5, 322, 0, 0, 5106, 5107, 5, 68, 0, 0, 5107, 5108, 5, 316, 0, 0, 5108, 5125, 3, 1336, 668, 0, 5109, 5110, 5, 30, 0, 0, 5110, 5111, 5, 212, 0, 0, 5111, 5112, 5, 68, 0, 0, 5112, 5113, 5, 316, 0, 0, 5113, 5125, 3, 1336, 668, 0, 5114, 5115, 5, 30, 0, 0, 5115, 5116, 5, 457, 0, 0, 5116, 5117, 5, 68, 0, 0, 5117, 5118, 5, 316, 0, 0, 5118, 5125, 3, 1336, 668, 0, 5119, 5120, 5, 30, 0, 0, 5120, 5121, 5, 455, 0, 0, 5121, 5122, 5, 68, 0, 0, 5122, 5123, 5, 316, 0, 0, 5123, 5125, 3, 1336, 668, 0, 5124, 5066, 1, 0, 0, 0, 5124, 5067, 1, 0, 0, 0, 5124, 5069, 1, 0, 0, 0, 5124, 5071, 1, 0, 0, 0, 5124, 5075, 1, 0, 0, 0, 5124, 5078, 1, 0, 0, 0, 5124, 5080, 1, 0, 0, 0, 5124, 5082, 1, 0, 0, 0, 5124, 5084, 1, 0, 0, 0, 5124, 5086, 1, 0, 0, 0, 5124, 5088, 1, 0, 0, 0, 5124, 5090, 1, 0, 0, 0, 5124, 5093, 1, 0, 0, 0, 5124, 5095, 1, 0, 0, 0, 5124, 5097, 1, 0, 0, 0, 5124, 5099, 1, 0, 0, 0, 5124, 5104, 1, 0, 0, 0, 5124, 5109, 1, 0, 0, 0, 5124, 5114, 1, 0, 0, 0, 5124, 5119, 1, 0, 0, 0, 5125, 561, 1, 0, 0, 0, 5126, 5131, 3, 564, 282, 0, 5127, 5128, 5, 6, 0, 0, 5128, 5130, 3, 564, 282, 0, 5129, 5127, 1, 0, 0, 0, 5130, 5133, 1, 0, 0, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 563, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5134, 5138, 3, 1366, 683, 0, 5135, 5136, 5, 66, 0, 0, 5136, 5138, 3, 1366, 683, 0, 5137, 5134, 1, 0, 0, 0, 5137, 5135, 1, 0, 0, 0, 5138, 565, 1, 0, 0, 0, 5139, 5140, 5, 105, 0, 0, 5140, 5141, 5, 65, 0, 0, 5141, 5144, 5, 272, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, 5139, 1, 0, 0, 0, 5143, 5142, 1, 0, 0, 0, 5144, 567, 1, 0, 0, 0, 5145, 5146, 5, 65, 0, 0, 5146, 5147, 3, 556, 278, 0, 5147, 5148, 5, 94, 0, 0, 5148, 5149, 3, 1368, 684, 0, 5149, 5150, 3, 572, 286, 0, 5150, 5151, 3, 574, 287, 0, 5151, 569, 1, 0, 0, 0, 5152, 5153, 5, 310, 0, 0, 5153, 5154, 3, 556, 278, 0, 5154, 5155, 5, 64, 0, 0, 5155, 5156, 3, 1368, 684, 0, 5156, 5157, 3, 574, 287, 0, 5157, 5158, 3, 106, 53, 0, 5158, 5170, 1, 0, 0, 0, 5159, 5160, 5, 310, 0, 0, 5160, 5161, 5, 134, 0, 0, 5161, 5162, 5, 272, 0, 0, 5162, 5163, 5, 62, 0, 0, 5163, 5164, 3, 556, 278, 0, 5164, 5165, 5, 64, 0, 0, 5165, 5166, 3, 1368, 684, 0, 5166, 5167, 3, 574, 287, 0, 5167, 5168, 3, 106, 53, 0, 5168, 5170, 1, 0, 0, 0, 5169, 5152, 1, 0, 0, 0, 5169, 5159, 1, 0, 0, 0, 5170, 571, 1, 0, 0, 0, 5171, 5172, 5, 105, 0, 0, 5172, 5173, 5, 134, 0, 0, 5173, 5176, 5, 272, 0, 0, 5174, 5176, 1, 0, 0, 0, 5175, 5171, 1, 0, 0, 0, 5175, 5174, 1, 0, 0, 0, 5176, 573, 1, 0, 0, 0, 5177, 5178, 5, 214, 0, 0, 5178, 5179, 5, 147, 0, 0, 5179, 5182, 3, 1366, 683, 0, 5180, 5182, 1, 0, 0, 0, 5181, 5177, 1, 0, 0, 0, 5181, 5180, 1, 0, 0, 0, 5182, 575, 1, 0, 0, 0, 5183, 5184, 5, 138, 0, 0, 5184, 5185, 5, 53, 0, 0, 5185, 5186, 5, 287, 0, 0, 5186, 5187, 3, 578, 289, 0, 5187, 5188, 3, 582, 291, 0, 5188, 577, 1, 0, 0, 0, 5189, 5191, 3, 580, 290, 0, 5190, 5189, 1, 0, 0, 0, 5191, 5194, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 579, 1, 0, 0, 0, 5194, 5192, 1, 0, 0, 0, 5195, 5196, 5, 68, 0, 0, 5196, 5197, 5, 316, 0, 0, 5197, 5205, 3, 1336, 668, 0, 5198, 5199, 5, 62, 0, 0, 5199, 5200, 5, 311, 0, 0, 5200, 5205, 3, 1368, 684, 0, 5201, 5202, 5, 62, 0, 0, 5202, 5203, 5, 99, 0, 0, 5203, 5205, 3, 1368, 684, 0, 5204, 5195, 1, 0, 0, 0, 5204, 5198, 1, 0, 0, 0, 5204, 5201, 1, 0, 0, 0, 5205, 581, 1, 0, 0, 0, 5206, 5207, 5, 65, 0, 0, 5207, 5208, 3, 554, 277, 0, 5208, 5209, 5, 80, 0, 0, 5209, 5210, 3, 584, 292, 0, 5210, 5211, 5, 94, 0, 0, 5211, 5212, 3, 562, 281, 0, 5212, 5213, 3, 566, 283, 0, 5213, 5234, 1, 0, 0, 0, 5214, 5215, 5, 310, 0, 0, 5215, 5216, 3, 554, 277, 0, 5216, 5217, 5, 80, 0, 0, 5217, 5218, 3, 584, 292, 0, 5218, 5219, 5, 64, 0, 0, 5219, 5220, 3, 562, 281, 0, 5220, 5221, 3, 106, 53, 0, 5221, 5234, 1, 0, 0, 0, 5222, 5223, 5, 310, 0, 0, 5223, 5224, 5, 65, 0, 0, 5224, 5225, 5, 272, 0, 0, 5225, 5226, 5, 62, 0, 0, 5226, 5227, 3, 554, 277, 0, 5227, 5228, 5, 80, 0, 0, 5228, 5229, 3, 584, 292, 0, 5229, 5230, 5, 64, 0, 0, 5230, 5231, 3, 562, 281, 0, 5231, 5232, 3, 106, 53, 0, 5232, 5234, 1, 0, 0, 0, 5233, 5206, 1, 0, 0, 0, 5233, 5214, 1, 0, 0, 0, 5233, 5222, 1, 0, 0, 0, 5234, 583, 1, 0, 0, 0, 5235, 5236, 7, 25, 0, 0, 5236, 585, 1, 0, 0, 0, 5237, 5238, 5, 46, 0, 0, 5238, 5239, 3, 588, 294, 0, 5239, 5240, 5, 226, 0, 0, 5240, 5241, 3, 590, 295, 0, 5241, 5242, 3, 592, 296, 0, 5242, 5243, 5, 80, 0, 0, 5243, 5244, 3, 1072, 536, 0, 5244, 5245, 3, 594, 297, 0, 5245, 5246, 5, 2, 0, 0, 5246, 5247, 3, 596, 298, 0, 5247, 5248, 5, 3, 0, 0, 5248, 5249, 3, 602, 301, 0, 5249, 5250, 3, 116, 58, 0, 5250, 5251, 3, 252, 126, 0, 5251, 5252, 3, 1092, 546, 0, 5252, 5273, 1, 0, 0, 0, 5253, 5254, 5, 46, 0, 0, 5254, 5255, 3, 588, 294, 0, 5255, 5256, 5, 226, 0, 0, 5256, 5257, 3, 590, 295, 0, 5257, 5258, 5, 220, 0, 0, 5258, 5259, 5, 77, 0, 0, 5259, 5260, 5, 389, 0, 0, 5260, 5261, 3, 1338, 669, 0, 5261, 5262, 5, 80, 0, 0, 5262, 5263, 3, 1072, 536, 0, 5263, 5264, 3, 594, 297, 0, 5264, 5265, 5, 2, 0, 0, 5265, 5266, 3, 596, 298, 0, 5266, 5267, 5, 3, 0, 0, 5267, 5268, 3, 602, 301, 0, 5268, 5269, 3, 116, 58, 0, 5269, 5270, 3, 252, 126, 0, 5270, 5271, 3, 1092, 546, 0, 5271, 5273, 1, 0, 0, 0, 5272, 5237, 1, 0, 0, 0, 5272, 5253, 1, 0, 0, 0, 5273, 587, 1, 0, 0, 0, 5274, 5277, 5, 98, 0, 0, 5275, 5277, 1, 0, 0, 0, 5276, 5274, 1, 0, 0, 0, 5276, 5275, 1, 0, 0, 0, 5277, 589, 1, 0, 0, 0, 5278, 5281, 5, 109, 0, 0, 5279, 5281, 1, 0, 0, 0, 5280, 5278, 1, 0, 0, 0, 5280, 5279, 1, 0, 0, 0, 5281, 591, 1, 0, 0, 0, 5282, 5285, 3, 1338, 669, 0, 5283, 5285, 1, 0, 0, 0, 5284, 5282, 1, 0, 0, 0, 5284, 5283, 1, 0, 0, 0, 5285, 593, 1, 0, 0, 0, 5286, 5287, 5, 100, 0, 0, 5287, 5290, 3, 1338, 669, 0, 5288, 5290, 1, 0, 0, 0, 5289, 5286, 1, 0, 0, 0, 5289, 5288, 1, 0, 0, 0, 5290, 595, 1, 0, 0, 0, 5291, 5296, 3, 600, 300, 0, 5292, 5293, 5, 6, 0, 0, 5293, 5295, 3, 600, 300, 0, 5294, 5292, 1, 0, 0, 0, 5295, 5298, 1, 0, 0, 0, 5296, 5294, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 597, 1, 0, 0, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5300, 3, 606, 303, 0, 5300, 5301, 3, 608, 304, 0, 5301, 5302, 3, 610, 305, 0, 5302, 5303, 3, 612, 306, 0, 5303, 5311, 1, 0, 0, 0, 5304, 5305, 3, 606, 303, 0, 5305, 5306, 3, 522, 261, 0, 5306, 5307, 3, 114, 57, 0, 5307, 5308, 3, 610, 305, 0, 5308, 5309, 3, 612, 306, 0, 5309, 5311, 1, 0, 0, 0, 5310, 5299, 1, 0, 0, 0, 5310, 5304, 1, 0, 0, 0, 5311, 599, 1, 0, 0, 0, 5312, 5313, 3, 1370, 685, 0, 5313, 5314, 3, 598, 299, 0, 5314, 5324, 1, 0, 0, 0, 5315, 5316, 3, 1212, 606, 0, 5316, 5317, 3, 598, 299, 0, 5317, 5324, 1, 0, 0, 0, 5318, 5319, 5, 2, 0, 0, 5319, 5320, 3, 1160, 580, 0, 5320, 5321, 5, 3, 0, 0, 5321, 5322, 3, 598, 299, 0, 5322, 5324, 1, 0, 0, 0, 5323, 5312, 1, 0, 0, 0, 5323, 5315, 1, 0, 0, 0, 5323, 5318, 1, 0, 0, 0, 5324, 601, 1, 0, 0, 0, 5325, 5326, 5, 441, 0, 0, 5326, 5327, 5, 2, 0, 0, 5327, 5328, 3, 604, 302, 0, 5328, 5329, 5, 3, 0, 0, 5329, 5332, 1, 0, 0, 0, 5330, 5332, 1, 0, 0, 0, 5331, 5325, 1, 0, 0, 0, 5331, 5330, 1, 0, 0, 0, 5332, 603, 1, 0, 0, 0, 5333, 5338, 3, 600, 300, 0, 5334, 5335, 5, 6, 0, 0, 5335, 5337, 3, 600, 300, 0, 5336, 5334, 1, 0, 0, 0, 5337, 5340, 1, 0, 0, 0, 5338, 5336, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 605, 1, 0, 0, 0, 5340, 5338, 1, 0, 0, 0, 5341, 5342, 5, 43, 0, 0, 5342, 5345, 3, 522, 261, 0, 5343, 5345, 1, 0, 0, 0, 5344, 5341, 1, 0, 0, 0, 5344, 5343, 1, 0, 0, 0, 5345, 607, 1, 0, 0, 0, 5346, 5349, 3, 522, 261, 0, 5347, 5349, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5348, 5347, 1, 0, 0, 0, 5349, 609, 1, 0, 0, 0, 5350, 5354, 5, 37, 0, 0, 5351, 5354, 5, 55, 0, 0, 5352, 5354, 1, 0, 0, 0, 5353, 5350, 1, 0, 0, 0, 5353, 5351, 1, 0, 0, 0, 5353, 5352, 1, 0, 0, 0, 5354, 611, 1, 0, 0, 0, 5355, 5356, 5, 266, 0, 0, 5356, 5361, 5, 207, 0, 0, 5357, 5358, 5, 266, 0, 0, 5358, 5361, 5, 240, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5355, 1, 0, 0, 0, 5360, 5357, 1, 0, 0, 0, 5360, 5359, 1, 0, 0, 0, 5361, 613, 1, 0, 0, 0, 5362, 5363, 5, 46, 0, 0, 5363, 5364, 3, 616, 308, 0, 5364, 5365, 7, 22, 0, 0, 5365, 5366, 3, 1344, 672, 0, 5366, 5376, 3, 626, 313, 0, 5367, 5374, 5, 309, 0, 0, 5368, 5375, 3, 636, 318, 0, 5369, 5370, 5, 92, 0, 0, 5370, 5371, 5, 2, 0, 0, 5371, 5372, 3, 666, 333, 0, 5372, 5373, 5, 3, 0, 0, 5373, 5375, 1, 0, 0, 0, 5374, 5368, 1, 0, 0, 0, 5374, 5369, 1, 0, 0, 0, 5375, 5377, 1, 0, 0, 0, 5376, 5367, 1, 0, 0, 0, 5376, 5377, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5379, 3, 652, 326, 0, 5379, 615, 1, 0, 0, 0, 5380, 5381, 5, 82, 0, 0, 5381, 5384, 5, 304, 0, 0, 5382, 5384, 1, 0, 0, 0, 5383, 5380, 1, 0, 0, 0, 5383, 5382, 1, 0, 0, 0, 5384, 617, 1, 0, 0, 0, 5385, 5387, 5, 2, 0, 0, 5386, 5388, 3, 620, 310, 0, 5387, 5386, 1, 0, 0, 0, 5387, 5388, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 5390, 5, 3, 0, 0, 5390, 619, 1, 0, 0, 0, 5391, 5396, 3, 630, 315, 0, 5392, 5393, 5, 6, 0, 0, 5393, 5395, 3, 630, 315, 0, 5394, 5392, 1, 0, 0, 0, 5395, 5398, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5396, 5397, 1, 0, 0, 0, 5397, 621, 1, 0, 0, 0, 5398, 5396, 1, 0, 0, 0, 5399, 5404, 3, 624, 312, 0, 5400, 5401, 5, 6, 0, 0, 5401, 5403, 3, 624, 312, 0, 5402, 5400, 1, 0, 0, 0, 5403, 5406, 1, 0, 0, 0, 5404, 5402, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 623, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5407, 5408, 3, 1344, 672, 0, 5408, 5409, 3, 618, 309, 0, 5409, 5416, 1, 0, 0, 0, 5410, 5416, 3, 1388, 694, 0, 5411, 5413, 3, 1370, 685, 0, 5412, 5414, 3, 1322, 661, 0, 5413, 5412, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5416, 1, 0, 0, 0, 5415, 5407, 1, 0, 0, 0, 5415, 5410, 1, 0, 0, 0, 5415, 5411, 1, 0, 0, 0, 5416, 625, 1, 0, 0, 0, 5417, 5419, 5, 2, 0, 0, 5418, 5420, 3, 628, 314, 0, 5419, 5418, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5422, 5, 3, 0, 0, 5422, 627, 1, 0, 0, 0, 5423, 5428, 3, 640, 320, 0, 5424, 5425, 5, 6, 0, 0, 5425, 5427, 3, 640, 320, 0, 5426, 5424, 1, 0, 0, 0, 5427, 5430, 1, 0, 0, 0, 5428, 5426, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 629, 1, 0, 0, 0, 5430, 5428, 1, 0, 0, 0, 5431, 5433, 3, 632, 316, 0, 5432, 5434, 3, 634, 317, 0, 5433, 5432, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5436, 3, 638, 319, 0, 5436, 5445, 1, 0, 0, 0, 5437, 5439, 3, 634, 317, 0, 5438, 5440, 3, 632, 316, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5442, 3, 638, 319, 0, 5442, 5445, 1, 0, 0, 0, 5443, 5445, 3, 638, 319, 0, 5444, 5431, 1, 0, 0, 0, 5444, 5437, 1, 0, 0, 0, 5444, 5443, 1, 0, 0, 0, 5445, 631, 1, 0, 0, 0, 5446, 5448, 5, 68, 0, 0, 5447, 5449, 5, 453, 0, 0, 5448, 5447, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 5454, 1, 0, 0, 0, 5450, 5454, 5, 453, 0, 0, 5451, 5454, 5, 393, 0, 0, 5452, 5454, 5, 101, 0, 0, 5453, 5446, 1, 0, 0, 0, 5453, 5450, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5453, 5452, 1, 0, 0, 0, 5454, 633, 1, 0, 0, 0, 5455, 5460, 3, 1374, 687, 0, 5456, 5460, 3, 1392, 696, 0, 5457, 5460, 5, 119, 0, 0, 5458, 5460, 5, 126, 0, 0, 5459, 5455, 1, 0, 0, 0, 5459, 5456, 1, 0, 0, 0, 5459, 5457, 1, 0, 0, 0, 5459, 5458, 1, 0, 0, 0, 5460, 635, 1, 0, 0, 0, 5461, 5462, 3, 638, 319, 0, 5462, 637, 1, 0, 0, 0, 5463, 5478, 3, 1116, 558, 0, 5464, 5466, 5, 408, 0, 0, 5465, 5464, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 5471, 1, 0, 0, 0, 5467, 5472, 3, 1392, 696, 0, 5468, 5472, 3, 1374, 687, 0, 5469, 5472, 5, 119, 0, 0, 5470, 5472, 5, 126, 0, 0, 5471, 5467, 1, 0, 0, 0, 5471, 5468, 1, 0, 0, 0, 5471, 5469, 1, 0, 0, 0, 5471, 5470, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 5474, 3, 524, 262, 0, 5474, 5475, 5, 27, 0, 0, 5475, 5476, 5, 353, 0, 0, 5476, 5478, 1, 0, 0, 0, 5477, 5463, 1, 0, 0, 0, 5477, 5465, 1, 0, 0, 0, 5478, 639, 1, 0, 0, 0, 5479, 5482, 3, 630, 315, 0, 5480, 5481, 7, 26, 0, 0, 5481, 5483, 3, 1160, 580, 0, 5482, 5480, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 641, 1, 0, 0, 0, 5484, 5485, 3, 630, 315, 0, 5485, 643, 1, 0, 0, 0, 5486, 5497, 5, 2, 0, 0, 5487, 5498, 5, 9, 0, 0, 5488, 5498, 3, 646, 323, 0, 5489, 5490, 5, 83, 0, 0, 5490, 5491, 5, 147, 0, 0, 5491, 5498, 3, 646, 323, 0, 5492, 5493, 3, 646, 323, 0, 5493, 5494, 5, 83, 0, 0, 5494, 5495, 5, 147, 0, 0, 5495, 5496, 3, 646, 323, 0, 5496, 5498, 1, 0, 0, 0, 5497, 5487, 1, 0, 0, 0, 5497, 5488, 1, 0, 0, 0, 5497, 5489, 1, 0, 0, 0, 5497, 5492, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 5500, 5, 3, 0, 0, 5500, 645, 1, 0, 0, 0, 5501, 5506, 3, 642, 321, 0, 5502, 5503, 5, 6, 0, 0, 5503, 5505, 3, 642, 321, 0, 5504, 5502, 1, 0, 0, 0, 5505, 5508, 1, 0, 0, 0, 5506, 5504, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 647, 1, 0, 0, 0, 5508, 5506, 1, 0, 0, 0, 5509, 5510, 3, 1344, 672, 0, 5510, 5511, 3, 644, 322, 0, 5511, 649, 1, 0, 0, 0, 5512, 5517, 3, 648, 324, 0, 5513, 5514, 5, 6, 0, 0, 5514, 5516, 3, 648, 324, 0, 5515, 5513, 1, 0, 0, 0, 5516, 5519, 1, 0, 0, 0, 5517, 5515, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 651, 1, 0, 0, 0, 5519, 5517, 1, 0, 0, 0, 5520, 5522, 3, 656, 328, 0, 5521, 5520, 1, 0, 0, 0, 5522, 5523, 1, 0, 0, 0, 5523, 5521, 1, 0, 0, 0, 5523, 5524, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5526, 6, 326, -1, 0, 5526, 653, 1, 0, 0, 0, 5527, 5528, 5, 149, 0, 0, 5528, 5529, 5, 80, 0, 0, 5529, 5530, 5, 78, 0, 0, 5530, 5563, 5, 458, 0, 0, 5531, 5532, 5, 309, 0, 0, 5532, 5533, 5, 78, 0, 0, 5533, 5534, 5, 80, 0, 0, 5534, 5535, 5, 78, 0, 0, 5535, 5563, 5, 458, 0, 0, 5536, 5563, 5, 339, 0, 0, 5537, 5563, 5, 222, 0, 0, 5538, 5563, 5, 331, 0, 0, 5539, 5563, 5, 370, 0, 0, 5540, 5541, 5, 205, 0, 0, 5541, 5542, 5, 320, 0, 0, 5542, 5563, 5, 181, 0, 0, 5543, 5544, 5, 205, 0, 0, 5544, 5545, 5, 320, 0, 0, 5545, 5563, 5, 234, 0, 0, 5546, 5547, 5, 320, 0, 0, 5547, 5563, 5, 181, 0, 0, 5548, 5549, 5, 320, 0, 0, 5549, 5563, 5, 234, 0, 0, 5550, 5563, 5, 241, 0, 0, 5551, 5552, 5, 77, 0, 0, 5552, 5563, 5, 241, 0, 0, 5553, 5554, 5, 170, 0, 0, 5554, 5563, 3, 290, 145, 0, 5555, 5556, 5, 313, 0, 0, 5556, 5563, 3, 290, 145, 0, 5557, 5558, 5, 459, 0, 0, 5558, 5563, 3, 522, 261, 0, 5559, 5563, 3, 80, 40, 0, 5560, 5561, 5, 460, 0, 0, 5561, 5563, 3, 1370, 685, 0, 5562, 5527, 1, 0, 0, 0, 5562, 5531, 1, 0, 0, 0, 5562, 5536, 1, 0, 0, 0, 5562, 5537, 1, 0, 0, 0, 5562, 5538, 1, 0, 0, 0, 5562, 5539, 1, 0, 0, 0, 5562, 5540, 1, 0, 0, 0, 5562, 5543, 1, 0, 0, 0, 5562, 5546, 1, 0, 0, 0, 5562, 5548, 1, 0, 0, 0, 5562, 5550, 1, 0, 0, 0, 5562, 5551, 1, 0, 0, 0, 5562, 5553, 1, 0, 0, 0, 5562, 5555, 1, 0, 0, 0, 5562, 5557, 1, 0, 0, 0, 5562, 5559, 1, 0, 0, 0, 5562, 5560, 1, 0, 0, 0, 5563, 655, 1, 0, 0, 0, 5564, 5565, 5, 36, 0, 0, 5565, 5573, 3, 658, 329, 0, 5566, 5567, 5, 238, 0, 0, 5567, 5573, 3, 70, 35, 0, 5568, 5569, 5, 443, 0, 0, 5569, 5573, 3, 660, 330, 0, 5570, 5573, 5, 104, 0, 0, 5571, 5573, 3, 654, 327, 0, 5572, 5564, 1, 0, 0, 0, 5572, 5566, 1, 0, 0, 0, 5572, 5568, 1, 0, 0, 0, 5572, 5570, 1, 0, 0, 0, 5572, 5571, 1, 0, 0, 0, 5573, 657, 1, 0, 0, 0, 5574, 5580, 3, 1356, 678, 0, 5575, 5576, 3, 1356, 678, 0, 5576, 5577, 5, 6, 0, 0, 5577, 5578, 3, 1356, 678, 0, 5578, 5580, 1, 0, 0, 0, 5579, 5574, 1, 0, 0, 0, 5579, 5575, 1, 0, 0, 0, 5580, 659, 1, 0, 0, 0, 5581, 5582, 5, 62, 0, 0, 5582, 5583, 5, 353, 0, 0, 5583, 5590, 3, 1116, 558, 0, 5584, 5585, 5, 6, 0, 0, 5585, 5586, 5, 62, 0, 0, 5586, 5587, 5, 353, 0, 0, 5587, 5589, 3, 1116, 558, 0, 5588, 5584, 1, 0, 0, 0, 5589, 5592, 1, 0, 0, 0, 5590, 5588, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, 661, 1, 0, 0, 0, 5592, 5590, 1, 0, 0, 0, 5593, 5594, 5, 105, 0, 0, 5594, 5597, 3, 458, 229, 0, 5595, 5597, 1, 0, 0, 0, 5596, 5593, 1, 0, 0, 0, 5596, 5595, 1, 0, 0, 0, 5597, 663, 1, 0, 0, 0, 5598, 5599, 3, 634, 317, 0, 5599, 5600, 3, 638, 319, 0, 5600, 665, 1, 0, 0, 0, 5601, 5606, 3, 664, 332, 0, 5602, 5603, 5, 6, 0, 0, 5603, 5605, 3, 664, 332, 0, 5604, 5602, 1, 0, 0, 0, 5605, 5608, 1, 0, 0, 0, 5606, 5604, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 667, 1, 0, 0, 0, 5608, 5606, 1, 0, 0, 0, 5609, 5610, 5, 138, 0, 0, 5610, 5611, 7, 27, 0, 0, 5611, 5612, 3, 624, 312, 0, 5612, 5613, 3, 670, 335, 0, 5613, 5614, 3, 672, 336, 0, 5614, 669, 1, 0, 0, 0, 5615, 5617, 3, 654, 327, 0, 5616, 5615, 1, 0, 0, 0, 5617, 5618, 1, 0, 0, 0, 5618, 5616, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 671, 1, 0, 0, 0, 5620, 5623, 5, 308, 0, 0, 5621, 5623, 1, 0, 0, 0, 5622, 5620, 1, 0, 0, 0, 5622, 5621, 1, 0, 0, 0, 5623, 673, 1, 0, 0, 0, 5624, 5625, 5, 191, 0, 0, 5625, 5626, 5, 211, 0, 0, 5626, 5627, 3, 622, 311, 0, 5627, 5628, 3, 106, 53, 0, 5628, 5661, 1, 0, 0, 0, 5629, 5630, 5, 191, 0, 0, 5630, 5631, 5, 211, 0, 0, 5631, 5632, 5, 220, 0, 0, 5632, 5633, 5, 389, 0, 0, 5633, 5634, 3, 622, 311, 0, 5634, 5635, 3, 106, 53, 0, 5635, 5661, 1, 0, 0, 0, 5636, 5637, 5, 191, 0, 0, 5637, 5638, 5, 289, 0, 0, 5638, 5639, 3, 622, 311, 0, 5639, 5640, 3, 106, 53, 0, 5640, 5661, 1, 0, 0, 0, 5641, 5642, 5, 191, 0, 0, 5642, 5643, 5, 289, 0, 0, 5643, 5644, 5, 220, 0, 0, 5644, 5645, 5, 389, 0, 0, 5645, 5646, 3, 622, 311, 0, 5646, 5647, 3, 106, 53, 0, 5647, 5661, 1, 0, 0, 0, 5648, 5649, 5, 191, 0, 0, 5649, 5650, 5, 442, 0, 0, 5650, 5651, 3, 622, 311, 0, 5651, 5652, 3, 106, 53, 0, 5652, 5661, 1, 0, 0, 0, 5653, 5654, 5, 191, 0, 0, 5654, 5655, 5, 442, 0, 0, 5655, 5656, 5, 220, 0, 0, 5656, 5657, 5, 389, 0, 0, 5657, 5658, 3, 622, 311, 0, 5658, 5659, 3, 106, 53, 0, 5659, 5661, 1, 0, 0, 0, 5660, 5624, 1, 0, 0, 0, 5660, 5629, 1, 0, 0, 0, 5660, 5636, 1, 0, 0, 0, 5660, 5641, 1, 0, 0, 0, 5660, 5648, 1, 0, 0, 0, 5660, 5653, 1, 0, 0, 0, 5661, 675, 1, 0, 0, 0, 5662, 5663, 5, 191, 0, 0, 5663, 5664, 5, 136, 0, 0, 5664, 5665, 3, 650, 325, 0, 5665, 5666, 3, 106, 53, 0, 5666, 5675, 1, 0, 0, 0, 5667, 5668, 5, 191, 0, 0, 5668, 5669, 5, 136, 0, 0, 5669, 5670, 5, 220, 0, 0, 5670, 5671, 5, 389, 0, 0, 5671, 5672, 3, 650, 325, 0, 5672, 5673, 3, 106, 53, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5662, 1, 0, 0, 0, 5674, 5667, 1, 0, 0, 0, 5675, 677, 1, 0, 0, 0, 5676, 5677, 5, 191, 0, 0, 5677, 5678, 5, 271, 0, 0, 5678, 5679, 3, 684, 342, 0, 5679, 5680, 3, 106, 53, 0, 5680, 5689, 1, 0, 0, 0, 5681, 5682, 5, 191, 0, 0, 5682, 5683, 5, 271, 0, 0, 5683, 5684, 5, 220, 0, 0, 5684, 5685, 5, 389, 0, 0, 5685, 5686, 3, 684, 342, 0, 5686, 5687, 3, 106, 53, 0, 5687, 5689, 1, 0, 0, 0, 5688, 5676, 1, 0, 0, 0, 5688, 5681, 1, 0, 0, 0, 5689, 679, 1, 0, 0, 0, 5690, 5691, 5, 2, 0, 0, 5691, 5692, 3, 1116, 558, 0, 5692, 5693, 5, 3, 0, 0, 5693, 5713, 1, 0, 0, 0, 5694, 5695, 5, 2, 0, 0, 5695, 5696, 3, 1116, 558, 0, 5696, 5697, 5, 6, 0, 0, 5697, 5698, 3, 1116, 558, 0, 5698, 5699, 5, 3, 0, 0, 5699, 5713, 1, 0, 0, 0, 5700, 5701, 5, 2, 0, 0, 5701, 5702, 5, 400, 0, 0, 5702, 5703, 5, 6, 0, 0, 5703, 5704, 3, 1116, 558, 0, 5704, 5705, 5, 3, 0, 0, 5705, 5713, 1, 0, 0, 0, 5706, 5707, 5, 2, 0, 0, 5707, 5708, 3, 1116, 558, 0, 5708, 5709, 5, 6, 0, 0, 5709, 5710, 5, 400, 0, 0, 5710, 5711, 5, 3, 0, 0, 5711, 5713, 1, 0, 0, 0, 5712, 5690, 1, 0, 0, 0, 5712, 5694, 1, 0, 0, 0, 5712, 5700, 1, 0, 0, 0, 5712, 5706, 1, 0, 0, 0, 5713, 681, 1, 0, 0, 0, 5714, 5715, 3, 1370, 685, 0, 5715, 5716, 5, 11, 0, 0, 5716, 5718, 1, 0, 0, 0, 5717, 5714, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5717, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5719, 1, 0, 0, 0, 5722, 5723, 3, 1268, 634, 0, 5723, 683, 1, 0, 0, 0, 5724, 5729, 3, 686, 343, 0, 5725, 5726, 5, 6, 0, 0, 5726, 5728, 3, 686, 343, 0, 5727, 5725, 1, 0, 0, 0, 5728, 5731, 1, 0, 0, 0, 5729, 5727, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 685, 1, 0, 0, 0, 5731, 5729, 1, 0, 0, 0, 5732, 5733, 3, 682, 341, 0, 5733, 5734, 3, 680, 340, 0, 5734, 687, 1, 0, 0, 0, 5735, 5736, 5, 57, 0, 0, 5736, 5737, 3, 690, 345, 0, 5737, 689, 1, 0, 0, 0, 5738, 5740, 3, 692, 346, 0, 5739, 5738, 1, 0, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 5739, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 691, 1, 0, 0, 0, 5743, 5747, 3, 1356, 678, 0, 5744, 5745, 5, 238, 0, 0, 5745, 5747, 3, 70, 35, 0, 5746, 5743, 1, 0, 0, 0, 5746, 5744, 1, 0, 0, 0, 5747, 693, 1, 0, 0, 0, 5748, 5749, 5, 46, 0, 0, 5749, 5750, 5, 41, 0, 0, 5750, 5751, 5, 2, 0, 0, 5751, 5752, 3, 1116, 558, 0, 5752, 5753, 5, 36, 0, 0, 5753, 5754, 3, 1116, 558, 0, 5754, 5755, 5, 3, 0, 0, 5755, 5756, 5, 105, 0, 0, 5756, 5757, 5, 211, 0, 0, 5757, 5758, 3, 624, 312, 0, 5758, 5759, 3, 696, 348, 0, 5759, 5783, 1, 0, 0, 0, 5760, 5761, 5, 46, 0, 0, 5761, 5762, 5, 41, 0, 0, 5762, 5763, 5, 2, 0, 0, 5763, 5764, 3, 1116, 558, 0, 5764, 5765, 5, 36, 0, 0, 5765, 5766, 3, 1116, 558, 0, 5766, 5767, 5, 3, 0, 0, 5767, 5768, 5, 372, 0, 0, 5768, 5769, 5, 211, 0, 0, 5769, 5770, 3, 696, 348, 0, 5770, 5783, 1, 0, 0, 0, 5771, 5772, 5, 46, 0, 0, 5772, 5773, 5, 41, 0, 0, 5773, 5774, 5, 2, 0, 0, 5774, 5775, 3, 1116, 558, 0, 5775, 5776, 5, 36, 0, 0, 5776, 5777, 3, 1116, 558, 0, 5777, 5778, 5, 3, 0, 0, 5778, 5779, 5, 105, 0, 0, 5779, 5780, 5, 393, 0, 0, 5780, 5781, 3, 696, 348, 0, 5781, 5783, 1, 0, 0, 0, 5782, 5748, 1, 0, 0, 0, 5782, 5760, 1, 0, 0, 0, 5782, 5771, 1, 0, 0, 0, 5783, 695, 1, 0, 0, 0, 5784, 5785, 5, 36, 0, 0, 5785, 5790, 5, 223, 0, 0, 5786, 5787, 5, 36, 0, 0, 5787, 5790, 5, 141, 0, 0, 5788, 5790, 1, 0, 0, 0, 5789, 5784, 1, 0, 0, 0, 5789, 5786, 1, 0, 0, 0, 5789, 5788, 1, 0, 0, 0, 5790, 697, 1, 0, 0, 0, 5791, 5792, 5, 191, 0, 0, 5792, 5793, 5, 41, 0, 0, 5793, 5794, 3, 700, 350, 0, 5794, 5795, 5, 2, 0, 0, 5795, 5796, 3, 1116, 558, 0, 5796, 5797, 5, 36, 0, 0, 5797, 5798, 3, 1116, 558, 0, 5798, 5799, 5, 3, 0, 0, 5799, 5800, 3, 106, 53, 0, 5800, 699, 1, 0, 0, 0, 5801, 5802, 5, 220, 0, 0, 5802, 5805, 5, 389, 0, 0, 5803, 5805, 1, 0, 0, 0, 5804, 5801, 1, 0, 0, 0, 5804, 5803, 1, 0, 0, 0, 5805, 701, 1, 0, 0, 0, 5806, 5807, 5, 46, 0, 0, 5807, 5808, 3, 616, 308, 0, 5808, 5809, 5, 443, 0, 0, 5809, 5810, 5, 62, 0, 0, 5810, 5811, 3, 1116, 558, 0, 5811, 5812, 5, 238, 0, 0, 5812, 5813, 3, 1338, 669, 0, 5813, 5814, 5, 2, 0, 0, 5814, 5815, 3, 704, 352, 0, 5815, 5816, 5, 3, 0, 0, 5816, 703, 1, 0, 0, 0, 5817, 5818, 5, 64, 0, 0, 5818, 5819, 5, 461, 0, 0, 5819, 5820, 5, 105, 0, 0, 5820, 5821, 5, 211, 0, 0, 5821, 5822, 3, 624, 312, 0, 5822, 5823, 5, 6, 0, 0, 5823, 5824, 5, 94, 0, 0, 5824, 5825, 5, 461, 0, 0, 5825, 5826, 5, 105, 0, 0, 5826, 5827, 5, 211, 0, 0, 5827, 5828, 3, 624, 312, 0, 5828, 5852, 1, 0, 0, 0, 5829, 5830, 5, 94, 0, 0, 5830, 5831, 5, 461, 0, 0, 5831, 5832, 5, 105, 0, 0, 5832, 5833, 5, 211, 0, 0, 5833, 5834, 3, 624, 312, 0, 5834, 5835, 5, 6, 0, 0, 5835, 5836, 5, 64, 0, 0, 5836, 5837, 5, 461, 0, 0, 5837, 5838, 5, 105, 0, 0, 5838, 5839, 5, 211, 0, 0, 5839, 5840, 3, 624, 312, 0, 5840, 5852, 1, 0, 0, 0, 5841, 5842, 5, 64, 0, 0, 5842, 5843, 5, 461, 0, 0, 5843, 5844, 5, 105, 0, 0, 5844, 5845, 5, 211, 0, 0, 5845, 5852, 3, 624, 312, 0, 5846, 5847, 5, 94, 0, 0, 5847, 5848, 5, 461, 0, 0, 5848, 5849, 5, 105, 0, 0, 5849, 5850, 5, 211, 0, 0, 5850, 5852, 3, 624, 312, 0, 5851, 5817, 1, 0, 0, 0, 5851, 5829, 1, 0, 0, 0, 5851, 5841, 1, 0, 0, 0, 5851, 5846, 1, 0, 0, 0, 5852, 705, 1, 0, 0, 0, 5853, 5854, 5, 191, 0, 0, 5854, 5855, 5, 443, 0, 0, 5855, 5856, 3, 700, 350, 0, 5856, 5857, 5, 62, 0, 0, 5857, 5858, 3, 1116, 558, 0, 5858, 5859, 5, 238, 0, 0, 5859, 5860, 3, 1338, 669, 0, 5860, 5861, 3, 106, 53, 0, 5861, 707, 1, 0, 0, 0, 5862, 5863, 5, 299, 0, 0, 5863, 5864, 3, 710, 355, 0, 5864, 5865, 3, 590, 295, 0, 5865, 5866, 3, 1334, 667, 0, 5866, 5889, 1, 0, 0, 0, 5867, 5868, 5, 299, 0, 0, 5868, 5869, 3, 712, 356, 0, 5869, 5870, 3, 590, 295, 0, 5870, 5871, 3, 1338, 669, 0, 5871, 5889, 1, 0, 0, 0, 5872, 5873, 5, 299, 0, 0, 5873, 5874, 5, 2, 0, 0, 5874, 5875, 3, 714, 357, 0, 5875, 5876, 5, 3, 0, 0, 5876, 5877, 3, 710, 355, 0, 5877, 5878, 3, 590, 295, 0, 5878, 5879, 3, 1334, 667, 0, 5879, 5889, 1, 0, 0, 0, 5880, 5881, 5, 299, 0, 0, 5881, 5882, 5, 2, 0, 0, 5882, 5883, 3, 714, 357, 0, 5883, 5884, 5, 3, 0, 0, 5884, 5885, 3, 712, 356, 0, 5885, 5886, 3, 590, 295, 0, 5886, 5887, 3, 1338, 669, 0, 5887, 5889, 1, 0, 0, 0, 5888, 5862, 1, 0, 0, 0, 5888, 5867, 1, 0, 0, 0, 5888, 5872, 1, 0, 0, 0, 5888, 5880, 1, 0, 0, 0, 5889, 709, 1, 0, 0, 0, 5890, 5891, 7, 28, 0, 0, 5891, 711, 1, 0, 0, 0, 5892, 5893, 7, 29, 0, 0, 5893, 713, 1, 0, 0, 0, 5894, 5899, 3, 716, 358, 0, 5895, 5896, 5, 6, 0, 0, 5896, 5898, 3, 716, 358, 0, 5897, 5895, 1, 0, 0, 0, 5898, 5901, 1, 0, 0, 0, 5899, 5897, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 715, 1, 0, 0, 0, 5901, 5899, 1, 0, 0, 0, 5902, 5903, 7, 30, 0, 0, 5903, 717, 1, 0, 0, 0, 5904, 5905, 5, 138, 0, 0, 5905, 5906, 5, 344, 0, 0, 5906, 5907, 3, 1338, 669, 0, 5907, 5908, 5, 326, 0, 0, 5908, 5909, 3, 114, 57, 0, 5909, 5917, 1, 0, 0, 0, 5910, 5911, 5, 138, 0, 0, 5911, 5912, 5, 344, 0, 0, 5912, 5913, 3, 1338, 669, 0, 5913, 5914, 5, 306, 0, 0, 5914, 5915, 3, 114, 57, 0, 5915, 5917, 1, 0, 0, 0, 5916, 5904, 1, 0, 0, 0, 5916, 5910, 1, 0, 0, 0, 5917, 719, 1, 0, 0, 0, 5918, 5919, 5, 138, 0, 0, 5919, 5920, 5, 136, 0, 0, 5920, 5921, 3, 648, 324, 0, 5921, 5922, 5, 302, 0, 0, 5922, 5923, 5, 94, 0, 0, 5923, 5924, 3, 1338, 669, 0, 5924, 6387, 1, 0, 0, 0, 5925, 5926, 5, 138, 0, 0, 5926, 5927, 5, 108, 0, 0, 5927, 5928, 3, 522, 261, 0, 5928, 5929, 5, 302, 0, 0, 5929, 5930, 5, 94, 0, 0, 5930, 5931, 3, 1338, 669, 0, 5931, 6387, 1, 0, 0, 0, 5932, 5933, 5, 138, 0, 0, 5933, 5934, 5, 168, 0, 0, 5934, 5935, 3, 522, 261, 0, 5935, 5936, 5, 302, 0, 0, 5936, 5937, 5, 94, 0, 0, 5937, 5938, 3, 1338, 669, 0, 5938, 6387, 1, 0, 0, 0, 5939, 5940, 5, 138, 0, 0, 5940, 5941, 5, 175, 0, 0, 5941, 5942, 3, 1338, 669, 0, 5942, 5943, 5, 302, 0, 0, 5943, 5944, 5, 94, 0, 0, 5944, 5945, 3, 1338, 669, 0, 5945, 6387, 1, 0, 0, 0, 5946, 5947, 5, 138, 0, 0, 5947, 5948, 5, 189, 0, 0, 5948, 5949, 3, 522, 261, 0, 5949, 5950, 5, 302, 0, 0, 5950, 5951, 5, 94, 0, 0, 5951, 5952, 3, 1338, 669, 0, 5952, 6387, 1, 0, 0, 0, 5953, 5954, 5, 138, 0, 0, 5954, 5955, 5, 189, 0, 0, 5955, 5956, 3, 522, 261, 0, 5956, 5957, 5, 302, 0, 0, 5957, 5958, 5, 45, 0, 0, 5958, 5959, 3, 1338, 669, 0, 5959, 5960, 5, 94, 0, 0, 5960, 5961, 3, 1338, 669, 0, 5961, 6387, 1, 0, 0, 0, 5962, 5963, 5, 138, 0, 0, 5963, 5964, 5, 63, 0, 0, 5964, 5965, 5, 174, 0, 0, 5965, 5966, 5, 374, 0, 0, 5966, 5967, 3, 1338, 669, 0, 5967, 5968, 5, 302, 0, 0, 5968, 5969, 5, 94, 0, 0, 5969, 5970, 3, 1338, 669, 0, 5970, 6387, 1, 0, 0, 0, 5971, 5972, 5, 138, 0, 0, 5972, 5973, 5, 211, 0, 0, 5973, 5974, 3, 624, 312, 0, 5974, 5975, 5, 302, 0, 0, 5975, 5976, 5, 94, 0, 0, 5976, 5977, 3, 1338, 669, 0, 5977, 6387, 1, 0, 0, 0, 5978, 5979, 5, 138, 0, 0, 5979, 5980, 5, 66, 0, 0, 5980, 5981, 3, 1364, 682, 0, 5981, 5982, 5, 302, 0, 0, 5982, 5983, 5, 94, 0, 0, 5983, 5984, 3, 1364, 682, 0, 5984, 6387, 1, 0, 0, 0, 5985, 5986, 5, 138, 0, 0, 5986, 5987, 3, 306, 153, 0, 5987, 5988, 5, 238, 0, 0, 5988, 5989, 3, 1338, 669, 0, 5989, 5990, 5, 302, 0, 0, 5990, 5991, 5, 94, 0, 0, 5991, 5992, 3, 1338, 669, 0, 5992, 6387, 1, 0, 0, 0, 5993, 5994, 5, 138, 0, 0, 5994, 5995, 5, 271, 0, 0, 5995, 5996, 5, 156, 0, 0, 5996, 5997, 3, 522, 261, 0, 5997, 5998, 5, 100, 0, 0, 5998, 5999, 3, 1338, 669, 0, 5999, 6000, 5, 302, 0, 0, 6000, 6001, 5, 94, 0, 0, 6001, 6002, 3, 1338, 669, 0, 6002, 6387, 1, 0, 0, 0, 6003, 6004, 5, 138, 0, 0, 6004, 6005, 5, 271, 0, 0, 6005, 6006, 5, 206, 0, 0, 6006, 6007, 3, 522, 261, 0, 6007, 6008, 5, 100, 0, 0, 6008, 6009, 3, 1338, 669, 0, 6009, 6010, 5, 302, 0, 0, 6010, 6011, 5, 94, 0, 0, 6011, 6012, 3, 1338, 669, 0, 6012, 6387, 1, 0, 0, 0, 6013, 6014, 5, 138, 0, 0, 6014, 6015, 5, 445, 0, 0, 6015, 6016, 3, 1338, 669, 0, 6016, 6017, 5, 80, 0, 0, 6017, 6018, 3, 1334, 667, 0, 6018, 6019, 5, 302, 0, 0, 6019, 6020, 5, 94, 0, 0, 6020, 6021, 3, 1338, 669, 0, 6021, 6387, 1, 0, 0, 0, 6022, 6023, 5, 138, 0, 0, 6023, 6024, 5, 445, 0, 0, 6024, 6025, 5, 220, 0, 0, 6025, 6026, 5, 389, 0, 0, 6026, 6027, 3, 1338, 669, 0, 6027, 6028, 5, 80, 0, 0, 6028, 6029, 3, 1334, 667, 0, 6029, 6030, 5, 302, 0, 0, 6030, 6031, 5, 94, 0, 0, 6031, 6032, 3, 1338, 669, 0, 6032, 6387, 1, 0, 0, 0, 6033, 6034, 5, 138, 0, 0, 6034, 6035, 5, 289, 0, 0, 6035, 6036, 3, 624, 312, 0, 6036, 6037, 5, 302, 0, 0, 6037, 6038, 5, 94, 0, 0, 6038, 6039, 3, 1338, 669, 0, 6039, 6387, 1, 0, 0, 0, 6040, 6041, 5, 138, 0, 0, 6041, 6042, 5, 452, 0, 0, 6042, 6043, 3, 1338, 669, 0, 6043, 6044, 5, 302, 0, 0, 6044, 6045, 5, 94, 0, 0, 6045, 6046, 3, 1338, 669, 0, 6046, 6387, 1, 0, 0, 0, 6047, 6048, 5, 138, 0, 0, 6048, 6049, 5, 442, 0, 0, 6049, 6050, 3, 624, 312, 0, 6050, 6051, 5, 302, 0, 0, 6051, 6052, 5, 94, 0, 0, 6052, 6053, 3, 1338, 669, 0, 6053, 6387, 1, 0, 0, 0, 6054, 6055, 5, 138, 0, 0, 6055, 6056, 5, 316, 0, 0, 6056, 6057, 3, 1338, 669, 0, 6057, 6058, 5, 302, 0, 0, 6058, 6059, 5, 94, 0, 0, 6059, 6060, 3, 1338, 669, 0, 6060, 6387, 1, 0, 0, 0, 6061, 6062, 5, 138, 0, 0, 6062, 6063, 5, 324, 0, 0, 6063, 6064, 3, 1338, 669, 0, 6064, 6065, 5, 302, 0, 0, 6065, 6066, 5, 94, 0, 0, 6066, 6067, 3, 1338, 669, 0, 6067, 6387, 1, 0, 0, 0, 6068, 6069, 5, 138, 0, 0, 6069, 6070, 5, 451, 0, 0, 6070, 6071, 3, 1338, 669, 0, 6071, 6072, 5, 302, 0, 0, 6072, 6073, 5, 94, 0, 0, 6073, 6074, 3, 1338, 669, 0, 6074, 6387, 1, 0, 0, 0, 6075, 6076, 5, 138, 0, 0, 6076, 6077, 5, 92, 0, 0, 6077, 6078, 3, 1072, 536, 0, 6078, 6079, 5, 302, 0, 0, 6079, 6080, 5, 94, 0, 0, 6080, 6081, 3, 1338, 669, 0, 6081, 6387, 1, 0, 0, 0, 6082, 6083, 5, 138, 0, 0, 6083, 6084, 5, 92, 0, 0, 6084, 6085, 5, 220, 0, 0, 6085, 6086, 5, 389, 0, 0, 6086, 6087, 3, 1072, 536, 0, 6087, 6088, 5, 302, 0, 0, 6088, 6089, 5, 94, 0, 0, 6089, 6090, 3, 1338, 669, 0, 6090, 6387, 1, 0, 0, 0, 6091, 6092, 5, 138, 0, 0, 6092, 6093, 5, 321, 0, 0, 6093, 6094, 3, 1334, 667, 0, 6094, 6095, 5, 302, 0, 0, 6095, 6096, 5, 94, 0, 0, 6096, 6097, 3, 1338, 669, 0, 6097, 6387, 1, 0, 0, 0, 6098, 6099, 5, 138, 0, 0, 6099, 6100, 5, 321, 0, 0, 6100, 6101, 5, 220, 0, 0, 6101, 6102, 5, 389, 0, 0, 6102, 6103, 3, 1334, 667, 0, 6103, 6104, 5, 302, 0, 0, 6104, 6105, 5, 94, 0, 0, 6105, 6106, 3, 1338, 669, 0, 6106, 6387, 1, 0, 0, 0, 6107, 6108, 5, 138, 0, 0, 6108, 6109, 5, 369, 0, 0, 6109, 6110, 3, 1334, 667, 0, 6110, 6111, 5, 302, 0, 0, 6111, 6112, 5, 94, 0, 0, 6112, 6113, 3, 1338, 669, 0, 6113, 6387, 1, 0, 0, 0, 6114, 6115, 5, 138, 0, 0, 6115, 6116, 5, 369, 0, 0, 6116, 6117, 5, 220, 0, 0, 6117, 6118, 5, 389, 0, 0, 6118, 6119, 3, 1334, 667, 0, 6119, 6120, 5, 302, 0, 0, 6120, 6121, 5, 94, 0, 0, 6121, 6122, 3, 1338, 669, 0, 6122, 6387, 1, 0, 0, 0, 6123, 6124, 5, 138, 0, 0, 6124, 6125, 5, 251, 0, 0, 6125, 6126, 5, 369, 0, 0, 6126, 6127, 3, 1334, 667, 0, 6127, 6128, 5, 302, 0, 0, 6128, 6129, 5, 94, 0, 0, 6129, 6130, 3, 1338, 669, 0, 6130, 6387, 1, 0, 0, 0, 6131, 6132, 5, 138, 0, 0, 6132, 6133, 5, 251, 0, 0, 6133, 6134, 5, 369, 0, 0, 6134, 6135, 5, 220, 0, 0, 6135, 6136, 5, 389, 0, 0, 6136, 6137, 3, 1334, 667, 0, 6137, 6138, 5, 302, 0, 0, 6138, 6139, 5, 94, 0, 0, 6139, 6140, 3, 1338, 669, 0, 6140, 6387, 1, 0, 0, 0, 6141, 6142, 5, 138, 0, 0, 6142, 6143, 5, 226, 0, 0, 6143, 6144, 3, 1334, 667, 0, 6144, 6145, 5, 302, 0, 0, 6145, 6146, 5, 94, 0, 0, 6146, 6147, 3, 1338, 669, 0, 6147, 6387, 1, 0, 0, 0, 6148, 6149, 5, 138, 0, 0, 6149, 6150, 5, 226, 0, 0, 6150, 6151, 5, 220, 0, 0, 6151, 6152, 5, 389, 0, 0, 6152, 6153, 3, 1334, 667, 0, 6153, 6154, 5, 302, 0, 0, 6154, 6155, 5, 94, 0, 0, 6155, 6156, 3, 1338, 669, 0, 6156, 6387, 1, 0, 0, 0, 6157, 6158, 5, 138, 0, 0, 6158, 6159, 5, 63, 0, 0, 6159, 6160, 5, 92, 0, 0, 6160, 6161, 3, 1072, 536, 0, 6161, 6162, 5, 302, 0, 0, 6162, 6163, 5, 94, 0, 0, 6163, 6164, 3, 1338, 669, 0, 6164, 6387, 1, 0, 0, 0, 6165, 6166, 5, 138, 0, 0, 6166, 6167, 5, 63, 0, 0, 6167, 6168, 5, 92, 0, 0, 6168, 6169, 5, 220, 0, 0, 6169, 6170, 5, 389, 0, 0, 6170, 6171, 3, 1072, 536, 0, 6171, 6172, 5, 302, 0, 0, 6172, 6173, 5, 94, 0, 0, 6173, 6174, 3, 1338, 669, 0, 6174, 6387, 1, 0, 0, 0, 6175, 6176, 5, 138, 0, 0, 6176, 6177, 5, 92, 0, 0, 6177, 6178, 3, 1072, 536, 0, 6178, 6179, 5, 302, 0, 0, 6179, 6180, 3, 722, 361, 0, 6180, 6181, 3, 1338, 669, 0, 6181, 6182, 5, 94, 0, 0, 6182, 6183, 3, 1338, 669, 0, 6183, 6387, 1, 0, 0, 0, 6184, 6185, 5, 138, 0, 0, 6185, 6186, 5, 92, 0, 0, 6186, 6187, 5, 220, 0, 0, 6187, 6188, 5, 389, 0, 0, 6188, 6189, 3, 1072, 536, 0, 6189, 6190, 5, 302, 0, 0, 6190, 6191, 3, 722, 361, 0, 6191, 6192, 3, 1338, 669, 0, 6192, 6193, 5, 94, 0, 0, 6193, 6194, 3, 1338, 669, 0, 6194, 6387, 1, 0, 0, 0, 6195, 6196, 5, 138, 0, 0, 6196, 6197, 5, 369, 0, 0, 6197, 6198, 3, 1334, 667, 0, 6198, 6199, 5, 302, 0, 0, 6199, 6200, 3, 722, 361, 0, 6200, 6201, 3, 1338, 669, 0, 6201, 6202, 5, 94, 0, 0, 6202, 6203, 3, 1338, 669, 0, 6203, 6387, 1, 0, 0, 0, 6204, 6205, 5, 138, 0, 0, 6205, 6206, 5, 369, 0, 0, 6206, 6207, 5, 220, 0, 0, 6207, 6208, 5, 389, 0, 0, 6208, 6209, 3, 1334, 667, 0, 6209, 6210, 5, 302, 0, 0, 6210, 6211, 3, 722, 361, 0, 6211, 6212, 3, 1338, 669, 0, 6212, 6213, 5, 94, 0, 0, 6213, 6214, 3, 1338, 669, 0, 6214, 6387, 1, 0, 0, 0, 6215, 6216, 5, 138, 0, 0, 6216, 6217, 5, 251, 0, 0, 6217, 6218, 5, 369, 0, 0, 6218, 6219, 3, 1334, 667, 0, 6219, 6220, 5, 302, 0, 0, 6220, 6221, 3, 722, 361, 0, 6221, 6222, 3, 1338, 669, 0, 6222, 6223, 5, 94, 0, 0, 6223, 6224, 3, 1338, 669, 0, 6224, 6387, 1, 0, 0, 0, 6225, 6226, 5, 138, 0, 0, 6226, 6227, 5, 251, 0, 0, 6227, 6228, 5, 369, 0, 0, 6228, 6229, 5, 220, 0, 0, 6229, 6230, 5, 389, 0, 0, 6230, 6231, 3, 1334, 667, 0, 6231, 6232, 5, 302, 0, 0, 6232, 6233, 3, 722, 361, 0, 6233, 6234, 3, 1338, 669, 0, 6234, 6235, 5, 94, 0, 0, 6235, 6236, 3, 1338, 669, 0, 6236, 6387, 1, 0, 0, 0, 6237, 6238, 5, 138, 0, 0, 6238, 6239, 5, 92, 0, 0, 6239, 6240, 3, 1072, 536, 0, 6240, 6241, 5, 302, 0, 0, 6241, 6242, 5, 45, 0, 0, 6242, 6243, 3, 1338, 669, 0, 6243, 6244, 5, 94, 0, 0, 6244, 6245, 3, 1338, 669, 0, 6245, 6387, 1, 0, 0, 0, 6246, 6247, 5, 138, 0, 0, 6247, 6248, 5, 92, 0, 0, 6248, 6249, 5, 220, 0, 0, 6249, 6250, 5, 389, 0, 0, 6250, 6251, 3, 1072, 536, 0, 6251, 6252, 5, 302, 0, 0, 6252, 6253, 5, 45, 0, 0, 6253, 6254, 3, 1338, 669, 0, 6254, 6255, 5, 94, 0, 0, 6255, 6256, 3, 1338, 669, 0, 6256, 6387, 1, 0, 0, 0, 6257, 6258, 5, 138, 0, 0, 6258, 6259, 5, 63, 0, 0, 6259, 6260, 5, 92, 0, 0, 6260, 6261, 3, 1072, 536, 0, 6261, 6262, 5, 302, 0, 0, 6262, 6263, 3, 722, 361, 0, 6263, 6264, 3, 1338, 669, 0, 6264, 6265, 5, 94, 0, 0, 6265, 6266, 3, 1338, 669, 0, 6266, 6387, 1, 0, 0, 0, 6267, 6268, 5, 138, 0, 0, 6268, 6269, 5, 63, 0, 0, 6269, 6270, 5, 92, 0, 0, 6270, 6271, 5, 220, 0, 0, 6271, 6272, 5, 389, 0, 0, 6272, 6273, 3, 1072, 536, 0, 6273, 6274, 5, 302, 0, 0, 6274, 6275, 3, 722, 361, 0, 6275, 6276, 3, 1338, 669, 0, 6276, 6277, 5, 94, 0, 0, 6277, 6278, 3, 1338, 669, 0, 6278, 6387, 1, 0, 0, 0, 6279, 6280, 5, 138, 0, 0, 6280, 6281, 5, 314, 0, 0, 6281, 6282, 3, 1338, 669, 0, 6282, 6283, 5, 80, 0, 0, 6283, 6284, 3, 1334, 667, 0, 6284, 6285, 5, 302, 0, 0, 6285, 6286, 5, 94, 0, 0, 6286, 6287, 3, 1338, 669, 0, 6287, 6387, 1, 0, 0, 0, 6288, 6289, 5, 138, 0, 0, 6289, 6290, 5, 350, 0, 0, 6290, 6291, 3, 1338, 669, 0, 6291, 6292, 5, 80, 0, 0, 6292, 6293, 3, 1334, 667, 0, 6293, 6294, 5, 302, 0, 0, 6294, 6295, 5, 94, 0, 0, 6295, 6296, 3, 1338, 669, 0, 6296, 6387, 1, 0, 0, 0, 6297, 6298, 5, 138, 0, 0, 6298, 6299, 5, 198, 0, 0, 6299, 6300, 5, 350, 0, 0, 6300, 6301, 3, 1338, 669, 0, 6301, 6302, 5, 302, 0, 0, 6302, 6303, 5, 94, 0, 0, 6303, 6304, 3, 1338, 669, 0, 6304, 6387, 1, 0, 0, 0, 6305, 6306, 5, 138, 0, 0, 6306, 6307, 5, 311, 0, 0, 6307, 6308, 3, 1364, 682, 0, 6308, 6309, 5, 302, 0, 0, 6309, 6310, 5, 94, 0, 0, 6310, 6311, 3, 1364, 682, 0, 6311, 6387, 1, 0, 0, 0, 6312, 6313, 5, 138, 0, 0, 6313, 6314, 5, 99, 0, 0, 6314, 6315, 3, 1364, 682, 0, 6315, 6316, 5, 302, 0, 0, 6316, 6317, 5, 94, 0, 0, 6317, 6318, 3, 1364, 682, 0, 6318, 6387, 1, 0, 0, 0, 6319, 6320, 5, 138, 0, 0, 6320, 6321, 5, 344, 0, 0, 6321, 6322, 3, 1338, 669, 0, 6322, 6323, 5, 302, 0, 0, 6323, 6324, 5, 94, 0, 0, 6324, 6325, 3, 1338, 669, 0, 6325, 6387, 1, 0, 0, 0, 6326, 6327, 5, 138, 0, 0, 6327, 6328, 5, 335, 0, 0, 6328, 6329, 3, 522, 261, 0, 6329, 6330, 5, 302, 0, 0, 6330, 6331, 5, 94, 0, 0, 6331, 6332, 3, 1338, 669, 0, 6332, 6387, 1, 0, 0, 0, 6333, 6334, 5, 138, 0, 0, 6334, 6335, 5, 348, 0, 0, 6335, 6336, 5, 318, 0, 0, 6336, 6337, 5, 276, 0, 0, 6337, 6338, 3, 522, 261, 0, 6338, 6339, 5, 302, 0, 0, 6339, 6340, 5, 94, 0, 0, 6340, 6341, 3, 1338, 669, 0, 6341, 6387, 1, 0, 0, 0, 6342, 6343, 5, 138, 0, 0, 6343, 6344, 5, 348, 0, 0, 6344, 6345, 5, 318, 0, 0, 6345, 6346, 5, 185, 0, 0, 6346, 6347, 3, 522, 261, 0, 6347, 6348, 5, 302, 0, 0, 6348, 6349, 5, 94, 0, 0, 6349, 6350, 3, 1338, 669, 0, 6350, 6387, 1, 0, 0, 0, 6351, 6352, 5, 138, 0, 0, 6352, 6353, 5, 348, 0, 0, 6353, 6354, 5, 318, 0, 0, 6354, 6355, 5, 346, 0, 0, 6355, 6356, 3, 522, 261, 0, 6356, 6357, 5, 302, 0, 0, 6357, 6358, 5, 94, 0, 0, 6358, 6359, 3, 1338, 669, 0, 6359, 6387, 1, 0, 0, 0, 6360, 6361, 5, 138, 0, 0, 6361, 6362, 5, 348, 0, 0, 6362, 6363, 5, 318, 0, 0, 6363, 6364, 5, 163, 0, 0, 6364, 6365, 3, 522, 261, 0, 6365, 6366, 5, 302, 0, 0, 6366, 6367, 5, 94, 0, 0, 6367, 6368, 3, 1338, 669, 0, 6368, 6387, 1, 0, 0, 0, 6369, 6370, 5, 138, 0, 0, 6370, 6371, 5, 353, 0, 0, 6371, 6372, 3, 522, 261, 0, 6372, 6373, 5, 302, 0, 0, 6373, 6374, 5, 94, 0, 0, 6374, 6375, 3, 1338, 669, 0, 6375, 6387, 1, 0, 0, 0, 6376, 6377, 5, 138, 0, 0, 6377, 6378, 5, 353, 0, 0, 6378, 6379, 3, 522, 261, 0, 6379, 6380, 5, 302, 0, 0, 6380, 6381, 5, 143, 0, 0, 6381, 6382, 3, 1338, 669, 0, 6382, 6383, 5, 94, 0, 0, 6383, 6384, 3, 1338, 669, 0, 6384, 6385, 3, 106, 53, 0, 6385, 6387, 1, 0, 0, 0, 6386, 5918, 1, 0, 0, 0, 6386, 5925, 1, 0, 0, 0, 6386, 5932, 1, 0, 0, 0, 6386, 5939, 1, 0, 0, 0, 6386, 5946, 1, 0, 0, 0, 6386, 5953, 1, 0, 0, 0, 6386, 5962, 1, 0, 0, 0, 6386, 5971, 1, 0, 0, 0, 6386, 5978, 1, 0, 0, 0, 6386, 5985, 1, 0, 0, 0, 6386, 5993, 1, 0, 0, 0, 6386, 6003, 1, 0, 0, 0, 6386, 6013, 1, 0, 0, 0, 6386, 6022, 1, 0, 0, 0, 6386, 6033, 1, 0, 0, 0, 6386, 6040, 1, 0, 0, 0, 6386, 6047, 1, 0, 0, 0, 6386, 6054, 1, 0, 0, 0, 6386, 6061, 1, 0, 0, 0, 6386, 6068, 1, 0, 0, 0, 6386, 6075, 1, 0, 0, 0, 6386, 6082, 1, 0, 0, 0, 6386, 6091, 1, 0, 0, 0, 6386, 6098, 1, 0, 0, 0, 6386, 6107, 1, 0, 0, 0, 6386, 6114, 1, 0, 0, 0, 6386, 6123, 1, 0, 0, 0, 6386, 6131, 1, 0, 0, 0, 6386, 6141, 1, 0, 0, 0, 6386, 6148, 1, 0, 0, 0, 6386, 6157, 1, 0, 0, 0, 6386, 6165, 1, 0, 0, 0, 6386, 6175, 1, 0, 0, 0, 6386, 6184, 1, 0, 0, 0, 6386, 6195, 1, 0, 0, 0, 6386, 6204, 1, 0, 0, 0, 6386, 6215, 1, 0, 0, 0, 6386, 6225, 1, 0, 0, 0, 6386, 6237, 1, 0, 0, 0, 6386, 6246, 1, 0, 0, 0, 6386, 6257, 1, 0, 0, 0, 6386, 6267, 1, 0, 0, 0, 6386, 6279, 1, 0, 0, 0, 6386, 6288, 1, 0, 0, 0, 6386, 6297, 1, 0, 0, 0, 6386, 6305, 1, 0, 0, 0, 6386, 6312, 1, 0, 0, 0, 6386, 6319, 1, 0, 0, 0, 6386, 6326, 1, 0, 0, 0, 6386, 6333, 1, 0, 0, 0, 6386, 6342, 1, 0, 0, 0, 6386, 6351, 1, 0, 0, 0, 6386, 6360, 1, 0, 0, 0, 6386, 6369, 1, 0, 0, 0, 6386, 6376, 1, 0, 0, 0, 6387, 721, 1, 0, 0, 0, 6388, 6391, 5, 44, 0, 0, 6389, 6391, 1, 0, 0, 0, 6390, 6388, 1, 0, 0, 0, 6390, 6389, 1, 0, 0, 0, 6391, 723, 1, 0, 0, 0, 6392, 6393, 5, 326, 0, 0, 6393, 6396, 5, 174, 0, 0, 6394, 6396, 1, 0, 0, 0, 6395, 6392, 1, 0, 0, 0, 6395, 6394, 1, 0, 0, 0, 6396, 725, 1, 0, 0, 0, 6397, 6398, 5, 138, 0, 0, 6398, 6399, 5, 211, 0, 0, 6399, 6400, 3, 624, 312, 0, 6400, 6401, 3, 728, 364, 0, 6401, 6402, 5, 462, 0, 0, 6402, 6403, 5, 80, 0, 0, 6403, 6404, 5, 204, 0, 0, 6404, 6405, 3, 1338, 669, 0, 6405, 6455, 1, 0, 0, 0, 6406, 6407, 5, 138, 0, 0, 6407, 6408, 5, 289, 0, 0, 6408, 6409, 3, 624, 312, 0, 6409, 6410, 3, 728, 364, 0, 6410, 6411, 5, 462, 0, 0, 6411, 6412, 5, 80, 0, 0, 6412, 6413, 5, 204, 0, 0, 6413, 6414, 3, 1338, 669, 0, 6414, 6455, 1, 0, 0, 0, 6415, 6416, 5, 138, 0, 0, 6416, 6417, 5, 442, 0, 0, 6417, 6418, 3, 624, 312, 0, 6418, 6419, 3, 728, 364, 0, 6419, 6420, 5, 462, 0, 0, 6420, 6421, 5, 80, 0, 0, 6421, 6422, 5, 204, 0, 0, 6422, 6423, 3, 1338, 669, 0, 6423, 6455, 1, 0, 0, 0, 6424, 6425, 5, 138, 0, 0, 6425, 6426, 5, 350, 0, 0, 6426, 6427, 3, 1338, 669, 0, 6427, 6428, 5, 80, 0, 0, 6428, 6429, 3, 1334, 667, 0, 6429, 6430, 3, 728, 364, 0, 6430, 6431, 5, 462, 0, 0, 6431, 6432, 5, 80, 0, 0, 6432, 6433, 5, 204, 0, 0, 6433, 6434, 3, 1338, 669, 0, 6434, 6455, 1, 0, 0, 0, 6435, 6436, 5, 138, 0, 0, 6436, 6437, 5, 251, 0, 0, 6437, 6438, 5, 369, 0, 0, 6438, 6439, 3, 1334, 667, 0, 6439, 6440, 3, 728, 364, 0, 6440, 6441, 5, 462, 0, 0, 6441, 6442, 5, 80, 0, 0, 6442, 6443, 5, 204, 0, 0, 6443, 6444, 3, 1338, 669, 0, 6444, 6455, 1, 0, 0, 0, 6445, 6446, 5, 138, 0, 0, 6446, 6447, 5, 226, 0, 0, 6447, 6448, 3, 1334, 667, 0, 6448, 6449, 3, 728, 364, 0, 6449, 6450, 5, 462, 0, 0, 6450, 6451, 5, 80, 0, 0, 6451, 6452, 5, 204, 0, 0, 6452, 6453, 3, 1338, 669, 0, 6453, 6455, 1, 0, 0, 0, 6454, 6397, 1, 0, 0, 0, 6454, 6406, 1, 0, 0, 0, 6454, 6415, 1, 0, 0, 0, 6454, 6424, 1, 0, 0, 0, 6454, 6435, 1, 0, 0, 0, 6454, 6445, 1, 0, 0, 0, 6455, 727, 1, 0, 0, 0, 6456, 6459, 5, 262, 0, 0, 6457, 6459, 1, 0, 0, 0, 6458, 6456, 1, 0, 0, 0, 6458, 6457, 1, 0, 0, 0, 6459, 729, 1, 0, 0, 0, 6460, 6461, 5, 138, 0, 0, 6461, 6462, 5, 136, 0, 0, 6462, 6463, 3, 648, 324, 0, 6463, 6464, 5, 326, 0, 0, 6464, 6465, 5, 316, 0, 0, 6465, 6466, 3, 1338, 669, 0, 6466, 6678, 1, 0, 0, 0, 6467, 6468, 5, 138, 0, 0, 6468, 6469, 5, 108, 0, 0, 6469, 6470, 3, 522, 261, 0, 6470, 6471, 5, 326, 0, 0, 6471, 6472, 5, 316, 0, 0, 6472, 6473, 3, 1338, 669, 0, 6473, 6678, 1, 0, 0, 0, 6474, 6475, 5, 138, 0, 0, 6475, 6476, 5, 168, 0, 0, 6476, 6477, 3, 522, 261, 0, 6477, 6478, 5, 326, 0, 0, 6478, 6479, 5, 316, 0, 0, 6479, 6480, 3, 1338, 669, 0, 6480, 6678, 1, 0, 0, 0, 6481, 6482, 5, 138, 0, 0, 6482, 6483, 5, 189, 0, 0, 6483, 6484, 3, 522, 261, 0, 6484, 6485, 5, 326, 0, 0, 6485, 6486, 5, 316, 0, 0, 6486, 6487, 3, 1338, 669, 0, 6487, 6678, 1, 0, 0, 0, 6488, 6489, 5, 138, 0, 0, 6489, 6490, 5, 204, 0, 0, 6490, 6491, 3, 1338, 669, 0, 6491, 6492, 5, 326, 0, 0, 6492, 6493, 5, 316, 0, 0, 6493, 6494, 3, 1338, 669, 0, 6494, 6678, 1, 0, 0, 0, 6495, 6496, 5, 138, 0, 0, 6496, 6497, 5, 211, 0, 0, 6497, 6498, 3, 624, 312, 0, 6498, 6499, 5, 326, 0, 0, 6499, 6500, 5, 316, 0, 0, 6500, 6501, 3, 1338, 669, 0, 6501, 6678, 1, 0, 0, 0, 6502, 6503, 5, 138, 0, 0, 6503, 6504, 5, 271, 0, 0, 6504, 6505, 3, 686, 343, 0, 6505, 6506, 5, 326, 0, 0, 6506, 6507, 5, 316, 0, 0, 6507, 6508, 3, 1338, 669, 0, 6508, 6678, 1, 0, 0, 0, 6509, 6510, 5, 138, 0, 0, 6510, 6511, 5, 271, 0, 0, 6511, 6512, 5, 156, 0, 0, 6512, 6513, 3, 522, 261, 0, 6513, 6514, 5, 100, 0, 0, 6514, 6515, 3, 1338, 669, 0, 6515, 6516, 5, 326, 0, 0, 6516, 6517, 5, 316, 0, 0, 6517, 6518, 3, 1338, 669, 0, 6518, 6678, 1, 0, 0, 0, 6519, 6520, 5, 138, 0, 0, 6520, 6521, 5, 271, 0, 0, 6521, 6522, 5, 206, 0, 0, 6522, 6523, 3, 522, 261, 0, 6523, 6524, 5, 100, 0, 0, 6524, 6525, 3, 1338, 669, 0, 6525, 6526, 5, 326, 0, 0, 6526, 6527, 5, 316, 0, 0, 6527, 6528, 3, 1338, 669, 0, 6528, 6678, 1, 0, 0, 0, 6529, 6530, 5, 138, 0, 0, 6530, 6531, 5, 289, 0, 0, 6531, 6532, 3, 624, 312, 0, 6532, 6533, 5, 326, 0, 0, 6533, 6534, 5, 316, 0, 0, 6534, 6535, 3, 1338, 669, 0, 6535, 6678, 1, 0, 0, 0, 6536, 6537, 5, 138, 0, 0, 6537, 6538, 5, 442, 0, 0, 6538, 6539, 3, 624, 312, 0, 6539, 6540, 5, 326, 0, 0, 6540, 6541, 5, 316, 0, 0, 6541, 6542, 3, 1338, 669, 0, 6542, 6678, 1, 0, 0, 0, 6543, 6544, 5, 138, 0, 0, 6544, 6545, 5, 92, 0, 0, 6545, 6546, 3, 1072, 536, 0, 6546, 6547, 5, 326, 0, 0, 6547, 6548, 5, 316, 0, 0, 6548, 6549, 3, 1338, 669, 0, 6549, 6678, 1, 0, 0, 0, 6550, 6551, 5, 138, 0, 0, 6551, 6552, 5, 92, 0, 0, 6552, 6553, 5, 220, 0, 0, 6553, 6554, 5, 389, 0, 0, 6554, 6555, 3, 1072, 536, 0, 6555, 6556, 5, 326, 0, 0, 6556, 6557, 5, 316, 0, 0, 6557, 6558, 3, 1338, 669, 0, 6558, 6678, 1, 0, 0, 0, 6559, 6560, 5, 138, 0, 0, 6560, 6561, 5, 335, 0, 0, 6561, 6562, 3, 522, 261, 0, 6562, 6563, 5, 326, 0, 0, 6563, 6564, 5, 316, 0, 0, 6564, 6565, 3, 1338, 669, 0, 6565, 6678, 1, 0, 0, 0, 6566, 6567, 5, 138, 0, 0, 6567, 6568, 5, 348, 0, 0, 6568, 6569, 5, 318, 0, 0, 6569, 6570, 5, 276, 0, 0, 6570, 6571, 3, 522, 261, 0, 6571, 6572, 5, 326, 0, 0, 6572, 6573, 5, 316, 0, 0, 6573, 6574, 3, 1338, 669, 0, 6574, 6678, 1, 0, 0, 0, 6575, 6576, 5, 138, 0, 0, 6576, 6577, 5, 348, 0, 0, 6577, 6578, 5, 318, 0, 0, 6578, 6579, 5, 185, 0, 0, 6579, 6580, 3, 522, 261, 0, 6580, 6581, 5, 326, 0, 0, 6581, 6582, 5, 316, 0, 0, 6582, 6583, 3, 1338, 669, 0, 6583, 6678, 1, 0, 0, 0, 6584, 6585, 5, 138, 0, 0, 6585, 6586, 5, 348, 0, 0, 6586, 6587, 5, 318, 0, 0, 6587, 6588, 5, 346, 0, 0, 6588, 6589, 3, 522, 261, 0, 6589, 6590, 5, 326, 0, 0, 6590, 6591, 5, 316, 0, 0, 6591, 6592, 3, 1338, 669, 0, 6592, 6678, 1, 0, 0, 0, 6593, 6594, 5, 138, 0, 0, 6594, 6595, 5, 348, 0, 0, 6595, 6596, 5, 318, 0, 0, 6596, 6597, 5, 163, 0, 0, 6597, 6598, 3, 522, 261, 0, 6598, 6599, 5, 326, 0, 0, 6599, 6600, 5, 316, 0, 0, 6600, 6601, 3, 1338, 669, 0, 6601, 6678, 1, 0, 0, 0, 6602, 6603, 5, 138, 0, 0, 6603, 6604, 5, 321, 0, 0, 6604, 6605, 3, 1334, 667, 0, 6605, 6606, 5, 326, 0, 0, 6606, 6607, 5, 316, 0, 0, 6607, 6608, 3, 1338, 669, 0, 6608, 6678, 1, 0, 0, 0, 6609, 6610, 5, 138, 0, 0, 6610, 6611, 5, 321, 0, 0, 6611, 6612, 5, 220, 0, 0, 6612, 6613, 5, 389, 0, 0, 6613, 6614, 3, 1334, 667, 0, 6614, 6615, 5, 326, 0, 0, 6615, 6616, 5, 316, 0, 0, 6616, 6617, 3, 1338, 669, 0, 6617, 6678, 1, 0, 0, 0, 6618, 6619, 5, 138, 0, 0, 6619, 6620, 5, 369, 0, 0, 6620, 6621, 3, 1334, 667, 0, 6621, 6622, 5, 326, 0, 0, 6622, 6623, 5, 316, 0, 0, 6623, 6624, 3, 1338, 669, 0, 6624, 6678, 1, 0, 0, 0, 6625, 6626, 5, 138, 0, 0, 6626, 6627, 5, 369, 0, 0, 6627, 6628, 5, 220, 0, 0, 6628, 6629, 5, 389, 0, 0, 6629, 6630, 3, 1334, 667, 0, 6630, 6631, 5, 326, 0, 0, 6631, 6632, 5, 316, 0, 0, 6632, 6633, 3, 1338, 669, 0, 6633, 6678, 1, 0, 0, 0, 6634, 6635, 5, 138, 0, 0, 6635, 6636, 5, 251, 0, 0, 6636, 6637, 5, 369, 0, 0, 6637, 6638, 3, 1334, 667, 0, 6638, 6639, 5, 326, 0, 0, 6639, 6640, 5, 316, 0, 0, 6640, 6641, 3, 1338, 669, 0, 6641, 6678, 1, 0, 0, 0, 6642, 6643, 5, 138, 0, 0, 6643, 6644, 5, 251, 0, 0, 6644, 6645, 5, 369, 0, 0, 6645, 6646, 5, 220, 0, 0, 6646, 6647, 5, 389, 0, 0, 6647, 6648, 3, 1334, 667, 0, 6648, 6649, 5, 326, 0, 0, 6649, 6650, 5, 316, 0, 0, 6650, 6651, 3, 1338, 669, 0, 6651, 6678, 1, 0, 0, 0, 6652, 6653, 5, 138, 0, 0, 6653, 6654, 5, 63, 0, 0, 6654, 6655, 5, 92, 0, 0, 6655, 6656, 3, 1072, 536, 0, 6656, 6657, 5, 326, 0, 0, 6657, 6658, 5, 316, 0, 0, 6658, 6659, 3, 1338, 669, 0, 6659, 6678, 1, 0, 0, 0, 6660, 6661, 5, 138, 0, 0, 6661, 6662, 5, 63, 0, 0, 6662, 6663, 5, 92, 0, 0, 6663, 6664, 5, 220, 0, 0, 6664, 6665, 5, 389, 0, 0, 6665, 6666, 3, 1072, 536, 0, 6666, 6667, 5, 326, 0, 0, 6667, 6668, 5, 316, 0, 0, 6668, 6669, 3, 1338, 669, 0, 6669, 6678, 1, 0, 0, 0, 6670, 6671, 5, 138, 0, 0, 6671, 6672, 5, 353, 0, 0, 6672, 6673, 3, 522, 261, 0, 6673, 6674, 5, 326, 0, 0, 6674, 6675, 5, 316, 0, 0, 6675, 6676, 3, 1338, 669, 0, 6676, 6678, 1, 0, 0, 0, 6677, 6460, 1, 0, 0, 0, 6677, 6467, 1, 0, 0, 0, 6677, 6474, 1, 0, 0, 0, 6677, 6481, 1, 0, 0, 0, 6677, 6488, 1, 0, 0, 0, 6677, 6495, 1, 0, 0, 0, 6677, 6502, 1, 0, 0, 0, 6677, 6509, 1, 0, 0, 0, 6677, 6519, 1, 0, 0, 0, 6677, 6529, 1, 0, 0, 0, 6677, 6536, 1, 0, 0, 0, 6677, 6543, 1, 0, 0, 0, 6677, 6550, 1, 0, 0, 0, 6677, 6559, 1, 0, 0, 0, 6677, 6566, 1, 0, 0, 0, 6677, 6575, 1, 0, 0, 0, 6677, 6584, 1, 0, 0, 0, 6677, 6593, 1, 0, 0, 0, 6677, 6602, 1, 0, 0, 0, 6677, 6609, 1, 0, 0, 0, 6677, 6618, 1, 0, 0, 0, 6677, 6625, 1, 0, 0, 0, 6677, 6634, 1, 0, 0, 0, 6677, 6642, 1, 0, 0, 0, 6677, 6652, 1, 0, 0, 0, 6677, 6660, 1, 0, 0, 0, 6677, 6670, 1, 0, 0, 0, 6678, 731, 1, 0, 0, 0, 6679, 6680, 5, 138, 0, 0, 6680, 6681, 5, 271, 0, 0, 6681, 6682, 3, 686, 343, 0, 6682, 6683, 5, 326, 0, 0, 6683, 6684, 5, 2, 0, 0, 6684, 6685, 3, 734, 367, 0, 6685, 6686, 5, 3, 0, 0, 6686, 733, 1, 0, 0, 0, 6687, 6692, 3, 736, 368, 0, 6688, 6689, 5, 6, 0, 0, 6689, 6691, 3, 736, 368, 0, 6690, 6688, 1, 0, 0, 0, 6691, 6694, 1, 0, 0, 0, 6692, 6690, 1, 0, 0, 0, 6692, 6693, 1, 0, 0, 0, 6693, 735, 1, 0, 0, 0, 6694, 6692, 1, 0, 0, 0, 6695, 6696, 3, 1378, 689, 0, 6696, 6697, 5, 10, 0, 0, 6697, 6698, 5, 400, 0, 0, 6698, 6704, 1, 0, 0, 0, 6699, 6700, 3, 1378, 689, 0, 6700, 6701, 5, 10, 0, 0, 6701, 6702, 3, 738, 369, 0, 6702, 6704, 1, 0, 0, 0, 6703, 6695, 1, 0, 0, 0, 6703, 6699, 1, 0, 0, 0, 6704, 737, 1, 0, 0, 0, 6705, 6711, 3, 638, 319, 0, 6706, 6711, 3, 1390, 695, 0, 6707, 6711, 3, 1274, 637, 0, 6708, 6711, 3, 290, 145, 0, 6709, 6711, 3, 1356, 678, 0, 6710, 6705, 1, 0, 0, 0, 6710, 6706, 1, 0, 0, 0, 6710, 6707, 1, 0, 0, 0, 6710, 6708, 1, 0, 0, 0, 6710, 6709, 1, 0, 0, 0, 6711, 739, 1, 0, 0, 0, 6712, 6713, 5, 138, 0, 0, 6713, 6714, 5, 353, 0, 0, 6714, 6715, 3, 522, 261, 0, 6715, 6716, 5, 326, 0, 0, 6716, 6717, 5, 2, 0, 0, 6717, 6718, 3, 734, 367, 0, 6718, 6719, 5, 3, 0, 0, 6719, 741, 1, 0, 0, 0, 6720, 6721, 5, 138, 0, 0, 6721, 6722, 5, 136, 0, 0, 6722, 6723, 3, 648, 324, 0, 6723, 6724, 5, 275, 0, 0, 6724, 6725, 5, 94, 0, 0, 6725, 6726, 3, 1366, 683, 0, 6726, 6904, 1, 0, 0, 0, 6727, 6728, 5, 138, 0, 0, 6728, 6729, 5, 108, 0, 0, 6729, 6730, 3, 522, 261, 0, 6730, 6731, 5, 275, 0, 0, 6731, 6732, 5, 94, 0, 0, 6732, 6733, 3, 1366, 683, 0, 6733, 6904, 1, 0, 0, 0, 6734, 6735, 5, 138, 0, 0, 6735, 6736, 5, 168, 0, 0, 6736, 6737, 3, 522, 261, 0, 6737, 6738, 5, 275, 0, 0, 6738, 6739, 5, 94, 0, 0, 6739, 6740, 3, 1366, 683, 0, 6740, 6904, 1, 0, 0, 0, 6741, 6742, 5, 138, 0, 0, 6742, 6743, 5, 175, 0, 0, 6743, 6744, 3, 1338, 669, 0, 6744, 6745, 5, 275, 0, 0, 6745, 6746, 5, 94, 0, 0, 6746, 6747, 3, 1366, 683, 0, 6747, 6904, 1, 0, 0, 0, 6748, 6749, 5, 138, 0, 0, 6749, 6750, 5, 189, 0, 0, 6750, 6751, 3, 522, 261, 0, 6751, 6752, 5, 275, 0, 0, 6752, 6753, 5, 94, 0, 0, 6753, 6754, 3, 1366, 683, 0, 6754, 6904, 1, 0, 0, 0, 6755, 6756, 5, 138, 0, 0, 6756, 6757, 5, 211, 0, 0, 6757, 6758, 3, 624, 312, 0, 6758, 6759, 5, 275, 0, 0, 6759, 6760, 5, 94, 0, 0, 6760, 6761, 3, 1366, 683, 0, 6761, 6904, 1, 0, 0, 0, 6762, 6763, 5, 138, 0, 0, 6763, 6764, 3, 306, 153, 0, 6764, 6765, 5, 238, 0, 0, 6765, 6766, 3, 1338, 669, 0, 6766, 6767, 5, 275, 0, 0, 6767, 6768, 5, 94, 0, 0, 6768, 6769, 3, 1366, 683, 0, 6769, 6904, 1, 0, 0, 0, 6770, 6771, 5, 138, 0, 0, 6771, 6772, 5, 239, 0, 0, 6772, 6773, 5, 267, 0, 0, 6773, 6774, 3, 290, 145, 0, 6774, 6775, 5, 275, 0, 0, 6775, 6776, 5, 94, 0, 0, 6776, 6777, 3, 1366, 683, 0, 6777, 6904, 1, 0, 0, 0, 6778, 6779, 5, 138, 0, 0, 6779, 6780, 5, 271, 0, 0, 6780, 6781, 3, 686, 343, 0, 6781, 6782, 5, 275, 0, 0, 6782, 6783, 5, 94, 0, 0, 6783, 6784, 3, 1366, 683, 0, 6784, 6904, 1, 0, 0, 0, 6785, 6786, 5, 138, 0, 0, 6786, 6787, 5, 271, 0, 0, 6787, 6788, 5, 156, 0, 0, 6788, 6789, 3, 522, 261, 0, 6789, 6790, 5, 100, 0, 0, 6790, 6791, 3, 1338, 669, 0, 6791, 6792, 5, 275, 0, 0, 6792, 6793, 5, 94, 0, 0, 6793, 6794, 3, 1366, 683, 0, 6794, 6904, 1, 0, 0, 0, 6795, 6796, 5, 138, 0, 0, 6796, 6797, 5, 271, 0, 0, 6797, 6798, 5, 206, 0, 0, 6798, 6799, 3, 522, 261, 0, 6799, 6800, 5, 100, 0, 0, 6800, 6801, 3, 1338, 669, 0, 6801, 6802, 5, 275, 0, 0, 6802, 6803, 5, 94, 0, 0, 6803, 6804, 3, 1366, 683, 0, 6804, 6904, 1, 0, 0, 0, 6805, 6806, 5, 138, 0, 0, 6806, 6807, 5, 289, 0, 0, 6807, 6808, 3, 624, 312, 0, 6808, 6809, 5, 275, 0, 0, 6809, 6810, 5, 94, 0, 0, 6810, 6811, 3, 1366, 683, 0, 6811, 6904, 1, 0, 0, 0, 6812, 6813, 5, 138, 0, 0, 6813, 6814, 5, 442, 0, 0, 6814, 6815, 3, 624, 312, 0, 6815, 6816, 5, 275, 0, 0, 6816, 6817, 5, 94, 0, 0, 6817, 6818, 3, 1366, 683, 0, 6818, 6904, 1, 0, 0, 0, 6819, 6820, 5, 138, 0, 0, 6820, 6821, 5, 316, 0, 0, 6821, 6822, 3, 1338, 669, 0, 6822, 6823, 5, 275, 0, 0, 6823, 6824, 5, 94, 0, 0, 6824, 6825, 3, 1366, 683, 0, 6825, 6904, 1, 0, 0, 0, 6826, 6827, 5, 138, 0, 0, 6827, 6828, 5, 353, 0, 0, 6828, 6829, 3, 522, 261, 0, 6829, 6830, 5, 275, 0, 0, 6830, 6831, 5, 94, 0, 0, 6831, 6832, 3, 1366, 683, 0, 6832, 6904, 1, 0, 0, 0, 6833, 6834, 5, 138, 0, 0, 6834, 6835, 5, 344, 0, 0, 6835, 6836, 3, 1338, 669, 0, 6836, 6837, 5, 275, 0, 0, 6837, 6838, 5, 94, 0, 0, 6838, 6839, 3, 1366, 683, 0, 6839, 6904, 1, 0, 0, 0, 6840, 6841, 5, 138, 0, 0, 6841, 6842, 5, 335, 0, 0, 6842, 6843, 3, 522, 261, 0, 6843, 6844, 5, 275, 0, 0, 6844, 6845, 5, 94, 0, 0, 6845, 6846, 3, 1366, 683, 0, 6846, 6904, 1, 0, 0, 0, 6847, 6848, 5, 138, 0, 0, 6848, 6849, 5, 348, 0, 0, 6849, 6850, 5, 318, 0, 0, 6850, 6851, 5, 185, 0, 0, 6851, 6852, 3, 522, 261, 0, 6852, 6853, 5, 275, 0, 0, 6853, 6854, 5, 94, 0, 0, 6854, 6855, 3, 1366, 683, 0, 6855, 6904, 1, 0, 0, 0, 6856, 6857, 5, 138, 0, 0, 6857, 6858, 5, 348, 0, 0, 6858, 6859, 5, 318, 0, 0, 6859, 6860, 5, 163, 0, 0, 6860, 6861, 3, 522, 261, 0, 6861, 6862, 5, 275, 0, 0, 6862, 6863, 5, 94, 0, 0, 6863, 6864, 3, 1366, 683, 0, 6864, 6904, 1, 0, 0, 0, 6865, 6866, 5, 138, 0, 0, 6866, 6867, 5, 63, 0, 0, 6867, 6868, 5, 174, 0, 0, 6868, 6869, 5, 374, 0, 0, 6869, 6870, 3, 1338, 669, 0, 6870, 6871, 5, 275, 0, 0, 6871, 6872, 5, 94, 0, 0, 6872, 6873, 3, 1366, 683, 0, 6873, 6904, 1, 0, 0, 0, 6874, 6875, 5, 138, 0, 0, 6875, 6876, 5, 324, 0, 0, 6876, 6877, 3, 1338, 669, 0, 6877, 6878, 5, 275, 0, 0, 6878, 6879, 5, 94, 0, 0, 6879, 6880, 3, 1366, 683, 0, 6880, 6904, 1, 0, 0, 0, 6881, 6882, 5, 138, 0, 0, 6882, 6883, 5, 198, 0, 0, 6883, 6884, 5, 350, 0, 0, 6884, 6885, 3, 1338, 669, 0, 6885, 6886, 5, 275, 0, 0, 6886, 6887, 5, 94, 0, 0, 6887, 6888, 3, 1366, 683, 0, 6888, 6904, 1, 0, 0, 0, 6889, 6890, 5, 138, 0, 0, 6890, 6891, 5, 452, 0, 0, 6891, 6892, 3, 1338, 669, 0, 6892, 6893, 5, 275, 0, 0, 6893, 6894, 5, 94, 0, 0, 6894, 6895, 3, 1366, 683, 0, 6895, 6904, 1, 0, 0, 0, 6896, 6897, 5, 138, 0, 0, 6897, 6898, 5, 451, 0, 0, 6898, 6899, 3, 1338, 669, 0, 6899, 6900, 5, 275, 0, 0, 6900, 6901, 5, 94, 0, 0, 6901, 6902, 3, 1366, 683, 0, 6902, 6904, 1, 0, 0, 0, 6903, 6720, 1, 0, 0, 0, 6903, 6727, 1, 0, 0, 0, 6903, 6734, 1, 0, 0, 0, 6903, 6741, 1, 0, 0, 0, 6903, 6748, 1, 0, 0, 0, 6903, 6755, 1, 0, 0, 0, 6903, 6762, 1, 0, 0, 0, 6903, 6770, 1, 0, 0, 0, 6903, 6778, 1, 0, 0, 0, 6903, 6785, 1, 0, 0, 0, 6903, 6795, 1, 0, 0, 0, 6903, 6805, 1, 0, 0, 0, 6903, 6812, 1, 0, 0, 0, 6903, 6819, 1, 0, 0, 0, 6903, 6826, 1, 0, 0, 0, 6903, 6833, 1, 0, 0, 0, 6903, 6840, 1, 0, 0, 0, 6903, 6847, 1, 0, 0, 0, 6903, 6856, 1, 0, 0, 0, 6903, 6865, 1, 0, 0, 0, 6903, 6874, 1, 0, 0, 0, 6903, 6881, 1, 0, 0, 0, 6903, 6889, 1, 0, 0, 0, 6903, 6896, 1, 0, 0, 0, 6904, 743, 1, 0, 0, 0, 6905, 6906, 5, 46, 0, 0, 6906, 6907, 5, 452, 0, 0, 6907, 6908, 3, 1338, 669, 0, 6908, 6909, 3, 746, 373, 0, 6909, 6910, 3, 662, 331, 0, 6910, 745, 1, 0, 0, 0, 6911, 6914, 3, 748, 374, 0, 6912, 6914, 1, 0, 0, 0, 6913, 6911, 1, 0, 0, 0, 6913, 6912, 1, 0, 0, 0, 6914, 747, 1, 0, 0, 0, 6915, 6916, 5, 62, 0, 0, 6916, 6917, 5, 92, 0, 0, 6917, 6922, 3, 1074, 537, 0, 6918, 6919, 5, 62, 0, 0, 6919, 6920, 5, 30, 0, 0, 6920, 6922, 5, 343, 0, 0, 6921, 6915, 1, 0, 0, 0, 6921, 6918, 1, 0, 0, 0, 6922, 749, 1, 0, 0, 0, 6923, 6924, 5, 138, 0, 0, 6924, 6925, 5, 452, 0, 0, 6925, 6926, 3, 1338, 669, 0, 6926, 6927, 5, 326, 0, 0, 6927, 6928, 3, 458, 229, 0, 6928, 6951, 1, 0, 0, 0, 6929, 6930, 5, 138, 0, 0, 6930, 6931, 5, 452, 0, 0, 6931, 6932, 3, 1338, 669, 0, 6932, 6933, 5, 133, 0, 0, 6933, 6934, 5, 92, 0, 0, 6934, 6935, 3, 1074, 537, 0, 6935, 6951, 1, 0, 0, 0, 6936, 6937, 5, 138, 0, 0, 6937, 6938, 5, 452, 0, 0, 6938, 6939, 3, 1338, 669, 0, 6939, 6940, 5, 326, 0, 0, 6940, 6941, 5, 92, 0, 0, 6941, 6942, 3, 1074, 537, 0, 6942, 6951, 1, 0, 0, 0, 6943, 6944, 5, 138, 0, 0, 6944, 6945, 5, 452, 0, 0, 6945, 6946, 3, 1338, 669, 0, 6946, 6947, 5, 191, 0, 0, 6947, 6948, 5, 92, 0, 0, 6948, 6949, 3, 1074, 537, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6923, 1, 0, 0, 0, 6950, 6929, 1, 0, 0, 0, 6950, 6936, 1, 0, 0, 0, 6950, 6943, 1, 0, 0, 0, 6951, 751, 1, 0, 0, 0, 6952, 6953, 5, 46, 0, 0, 6953, 6954, 5, 451, 0, 0, 6954, 6955, 3, 1338, 669, 0, 6955, 6956, 5, 164, 0, 0, 6956, 6957, 3, 1356, 678, 0, 6957, 6958, 5, 452, 0, 0, 6958, 6959, 3, 754, 377, 0, 6959, 6960, 3, 662, 331, 0, 6960, 753, 1, 0, 0, 0, 6961, 6966, 3, 756, 378, 0, 6962, 6963, 5, 6, 0, 0, 6963, 6965, 3, 756, 378, 0, 6964, 6962, 1, 0, 0, 0, 6965, 6968, 1, 0, 0, 0, 6966, 6964, 1, 0, 0, 0, 6966, 6967, 1, 0, 0, 0, 6967, 755, 1, 0, 0, 0, 6968, 6966, 1, 0, 0, 0, 6969, 6970, 3, 1378, 689, 0, 6970, 757, 1, 0, 0, 0, 6971, 6972, 5, 138, 0, 0, 6972, 6973, 5, 451, 0, 0, 6973, 6974, 3, 1338, 669, 0, 6974, 6975, 5, 326, 0, 0, 6975, 6976, 3, 458, 229, 0, 6976, 7009, 1, 0, 0, 0, 6977, 6978, 5, 138, 0, 0, 6978, 6979, 5, 451, 0, 0, 6979, 6980, 3, 1338, 669, 0, 6980, 6981, 5, 164, 0, 0, 6981, 6982, 3, 1356, 678, 0, 6982, 7009, 1, 0, 0, 0, 6983, 6984, 5, 138, 0, 0, 6984, 6985, 5, 451, 0, 0, 6985, 6986, 3, 1338, 669, 0, 6986, 6987, 5, 298, 0, 0, 6987, 6988, 5, 452, 0, 0, 6988, 6989, 3, 662, 331, 0, 6989, 7009, 1, 0, 0, 0, 6990, 6991, 5, 138, 0, 0, 6991, 6992, 5, 451, 0, 0, 6992, 6993, 3, 1338, 669, 0, 6993, 6994, 5, 326, 0, 0, 6994, 6995, 5, 452, 0, 0, 6995, 6996, 3, 754, 377, 0, 6996, 6997, 3, 662, 331, 0, 6997, 7009, 1, 0, 0, 0, 6998, 6999, 5, 138, 0, 0, 6999, 7000, 5, 451, 0, 0, 7000, 7001, 3, 1338, 669, 0, 7001, 7002, 5, 193, 0, 0, 7002, 7009, 1, 0, 0, 0, 7003, 7004, 5, 138, 0, 0, 7004, 7005, 5, 451, 0, 0, 7005, 7006, 3, 1338, 669, 0, 7006, 7007, 5, 186, 0, 0, 7007, 7009, 1, 0, 0, 0, 7008, 6971, 1, 0, 0, 0, 7008, 6977, 1, 0, 0, 0, 7008, 6983, 1, 0, 0, 0, 7008, 6990, 1, 0, 0, 0, 7008, 6998, 1, 0, 0, 0, 7008, 7003, 1, 0, 0, 0, 7009, 759, 1, 0, 0, 0, 7010, 7011, 5, 191, 0, 0, 7011, 7012, 5, 451, 0, 0, 7012, 7013, 3, 1338, 669, 0, 7013, 7014, 3, 106, 53, 0, 7014, 7023, 1, 0, 0, 0, 7015, 7016, 5, 191, 0, 0, 7016, 7017, 5, 451, 0, 0, 7017, 7018, 5, 220, 0, 0, 7018, 7019, 5, 389, 0, 0, 7019, 7020, 3, 1338, 669, 0, 7020, 7021, 3, 106, 53, 0, 7021, 7023, 1, 0, 0, 0, 7022, 7010, 1, 0, 0, 0, 7022, 7015, 1, 0, 0, 0, 7023, 761, 1, 0, 0, 0, 7024, 7025, 5, 46, 0, 0, 7025, 7026, 3, 616, 308, 0, 7026, 7027, 5, 314, 0, 0, 7027, 7028, 3, 1338, 669, 0, 7028, 7029, 5, 36, 0, 0, 7029, 7030, 5, 80, 0, 0, 7030, 7031, 3, 772, 386, 0, 7031, 7032, 5, 94, 0, 0, 7032, 7033, 3, 1334, 667, 0, 7033, 7034, 3, 1092, 546, 0, 7034, 7035, 5, 57, 0, 0, 7035, 7036, 3, 774, 387, 0, 7036, 7037, 3, 764, 382, 0, 7037, 763, 1, 0, 0, 0, 7038, 7045, 5, 263, 0, 0, 7039, 7045, 3, 768, 384, 0, 7040, 7041, 5, 2, 0, 0, 7041, 7042, 3, 766, 383, 0, 7042, 7043, 5, 3, 0, 0, 7043, 7045, 1, 0, 0, 0, 7044, 7038, 1, 0, 0, 0, 7044, 7039, 1, 0, 0, 0, 7044, 7040, 1, 0, 0, 0, 7045, 765, 1, 0, 0, 0, 7046, 7051, 3, 770, 385, 0, 7047, 7048, 5, 7, 0, 0, 7048, 7050, 3, 770, 385, 0, 7049, 7047, 1, 0, 0, 0, 7050, 7053, 1, 0, 0, 0, 7051, 7049, 1, 0, 0, 0, 7051, 7052, 1, 0, 0, 0, 7052, 767, 1, 0, 0, 0, 7053, 7051, 1, 0, 0, 0, 7054, 7060, 3, 958, 479, 0, 7055, 7060, 3, 900, 450, 0, 7056, 7060, 3, 940, 470, 0, 7057, 7060, 3, 926, 463, 0, 7058, 7060, 3, 776, 388, 0, 7059, 7054, 1, 0, 0, 0, 7059, 7055, 1, 0, 0, 0, 7059, 7056, 1, 0, 0, 0, 7059, 7057, 1, 0, 0, 0, 7059, 7058, 1, 0, 0, 0, 7060, 769, 1, 0, 0, 0, 7061, 7064, 3, 768, 384, 0, 7062, 7064, 1, 0, 0, 0, 7063, 7061, 1, 0, 0, 0, 7063, 7062, 1, 0, 0, 0, 7064, 771, 1, 0, 0, 0, 7065, 7066, 7, 31, 0, 0, 7066, 773, 1, 0, 0, 0, 7067, 7071, 5, 233, 0, 0, 7068, 7071, 5, 137, 0, 0, 7069, 7071, 1, 0, 0, 0, 7070, 7067, 1, 0, 0, 0, 7070, 7068, 1, 0, 0, 0, 7070, 7069, 1, 0, 0, 0, 7071, 775, 1, 0, 0, 0, 7072, 7073, 5, 264, 0, 0, 7073, 7074, 3, 1370, 685, 0, 7074, 7075, 3, 778, 389, 0, 7075, 777, 1, 0, 0, 0, 7076, 7077, 5, 6, 0, 0, 7077, 7080, 3, 1356, 678, 0, 7078, 7080, 1, 0, 0, 0, 7079, 7076, 1, 0, 0, 0, 7079, 7078, 1, 0, 0, 0, 7080, 779, 1, 0, 0, 0, 7081, 7082, 5, 243, 0, 0, 7082, 7083, 3, 1370, 685, 0, 7083, 781, 1, 0, 0, 0, 7084, 7085, 5, 359, 0, 0, 7085, 7089, 3, 1370, 685, 0, 7086, 7087, 5, 359, 0, 0, 7087, 7089, 5, 9, 0, 0, 7088, 7084, 1, 0, 0, 0, 7088, 7086, 1, 0, 0, 0, 7089, 783, 1, 0, 0, 0, 7090, 7091, 5, 129, 0, 0, 7091, 7092, 3, 786, 393, 0, 7092, 7093, 3, 794, 397, 0, 7093, 7141, 1, 0, 0, 0, 7094, 7095, 5, 146, 0, 0, 7095, 7096, 3, 786, 393, 0, 7096, 7097, 3, 792, 396, 0, 7097, 7141, 1, 0, 0, 0, 7098, 7099, 5, 333, 0, 0, 7099, 7100, 5, 349, 0, 0, 7100, 7141, 3, 792, 396, 0, 7101, 7102, 5, 161, 0, 0, 7102, 7103, 3, 786, 393, 0, 7103, 7104, 3, 794, 397, 0, 7104, 7141, 1, 0, 0, 0, 7105, 7106, 5, 454, 0, 0, 7106, 7107, 3, 786, 393, 0, 7107, 7108, 3, 794, 397, 0, 7108, 7141, 1, 0, 0, 0, 7109, 7110, 5, 312, 0, 0, 7110, 7111, 3, 786, 393, 0, 7111, 7112, 3, 794, 397, 0, 7112, 7141, 1, 0, 0, 0, 7113, 7114, 5, 315, 0, 0, 7114, 7141, 3, 1370, 685, 0, 7115, 7116, 5, 301, 0, 0, 7116, 7117, 5, 315, 0, 0, 7117, 7141, 3, 1370, 685, 0, 7118, 7119, 5, 301, 0, 0, 7119, 7141, 3, 1370, 685, 0, 7120, 7121, 5, 312, 0, 0, 7121, 7122, 3, 786, 393, 0, 7122, 7123, 5, 94, 0, 0, 7123, 7124, 5, 315, 0, 0, 7124, 7125, 3, 1370, 685, 0, 7125, 7141, 1, 0, 0, 0, 7126, 7127, 5, 312, 0, 0, 7127, 7128, 3, 786, 393, 0, 7128, 7129, 5, 94, 0, 0, 7129, 7130, 3, 1370, 685, 0, 7130, 7141, 1, 0, 0, 0, 7131, 7132, 5, 283, 0, 0, 7132, 7133, 5, 349, 0, 0, 7133, 7141, 3, 1356, 678, 0, 7134, 7135, 5, 161, 0, 0, 7135, 7136, 5, 284, 0, 0, 7136, 7141, 3, 1356, 678, 0, 7137, 7138, 5, 312, 0, 0, 7138, 7139, 5, 284, 0, 0, 7139, 7141, 3, 1356, 678, 0, 7140, 7090, 1, 0, 0, 0, 7140, 7094, 1, 0, 0, 0, 7140, 7098, 1, 0, 0, 0, 7140, 7101, 1, 0, 0, 0, 7140, 7105, 1, 0, 0, 0, 7140, 7109, 1, 0, 0, 0, 7140, 7113, 1, 0, 0, 0, 7140, 7115, 1, 0, 0, 0, 7140, 7118, 1, 0, 0, 0, 7140, 7120, 1, 0, 0, 0, 7140, 7126, 1, 0, 0, 0, 7140, 7131, 1, 0, 0, 0, 7140, 7134, 1, 0, 0, 0, 7140, 7137, 1, 0, 0, 0, 7141, 785, 1, 0, 0, 0, 7142, 7146, 5, 373, 0, 0, 7143, 7146, 5, 349, 0, 0, 7144, 7146, 1, 0, 0, 0, 7145, 7142, 1, 0, 0, 0, 7145, 7143, 1, 0, 0, 0, 7145, 7144, 1, 0, 0, 0, 7146, 787, 1, 0, 0, 0, 7147, 7148, 5, 235, 0, 0, 7148, 7149, 5, 242, 0, 0, 7149, 7158, 3, 62, 31, 0, 7150, 7151, 5, 293, 0, 0, 7151, 7158, 5, 81, 0, 0, 7152, 7153, 5, 293, 0, 0, 7153, 7158, 5, 375, 0, 0, 7154, 7158, 5, 54, 0, 0, 7155, 7156, 5, 77, 0, 0, 7156, 7158, 5, 54, 0, 0, 7157, 7147, 1, 0, 0, 0, 7157, 7150, 1, 0, 0, 0, 7157, 7152, 1, 0, 0, 0, 7157, 7154, 1, 0, 0, 0, 7157, 7155, 1, 0, 0, 0, 7158, 789, 1, 0, 0, 0, 7159, 7166, 3, 788, 394, 0, 7160, 7162, 5, 6, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7165, 3, 788, 394, 0, 7164, 7161, 1, 0, 0, 0, 7165, 7168, 1, 0, 0, 0, 7166, 7164, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 791, 1, 0, 0, 0, 7168, 7166, 1, 0, 0, 0, 7169, 7172, 3, 790, 395, 0, 7170, 7172, 1, 0, 0, 0, 7171, 7169, 1, 0, 0, 0, 7171, 7170, 1, 0, 0, 0, 7172, 793, 1, 0, 0, 0, 7173, 7175, 5, 33, 0, 0, 7174, 7176, 5, 262, 0, 0, 7175, 7174, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7180, 5, 153, 0, 0, 7178, 7180, 1, 0, 0, 0, 7179, 7173, 1, 0, 0, 0, 7179, 7178, 1, 0, 0, 0, 7180, 795, 1, 0, 0, 0, 7181, 7184, 5, 46, 0, 0, 7182, 7183, 5, 82, 0, 0, 7183, 7185, 5, 304, 0, 0, 7184, 7182, 1, 0, 0, 0, 7184, 7185, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7200, 3, 172, 86, 0, 7187, 7188, 5, 369, 0, 0, 7188, 7189, 3, 1334, 667, 0, 7189, 7190, 3, 212, 106, 0, 7190, 7191, 3, 116, 58, 0, 7191, 7201, 1, 0, 0, 0, 7192, 7193, 5, 296, 0, 0, 7193, 7194, 5, 369, 0, 0, 7194, 7195, 3, 1334, 667, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 3, 214, 107, 0, 7197, 7198, 5, 3, 0, 0, 7198, 7199, 3, 116, 58, 0, 7199, 7201, 1, 0, 0, 0, 7200, 7187, 1, 0, 0, 0, 7200, 7192, 1, 0, 0, 0, 7201, 7202, 1, 0, 0, 0, 7202, 7203, 5, 36, 0, 0, 7203, 7204, 3, 958, 479, 0, 7204, 7205, 3, 798, 399, 0, 7205, 797, 1, 0, 0, 0, 7206, 7208, 5, 105, 0, 0, 7207, 7209, 7, 32, 0, 0, 7208, 7207, 1, 0, 0, 0, 7208, 7209, 1, 0, 0, 0, 7209, 7210, 1, 0, 0, 0, 7210, 7211, 5, 42, 0, 0, 7211, 7214, 5, 272, 0, 0, 7212, 7214, 1, 0, 0, 0, 7213, 7206, 1, 0, 0, 0, 7213, 7212, 1, 0, 0, 0, 7214, 799, 1, 0, 0, 0, 7215, 7216, 5, 244, 0, 0, 7216, 7217, 3, 1342, 671, 0, 7217, 801, 1, 0, 0, 0, 7218, 7219, 5, 46, 0, 0, 7219, 7220, 5, 175, 0, 0, 7220, 7221, 3, 1338, 669, 0, 7221, 7222, 3, 14, 7, 0, 7222, 7223, 3, 804, 402, 0, 7223, 803, 1, 0, 0, 0, 7224, 7227, 3, 806, 403, 0, 7225, 7227, 1, 0, 0, 0, 7226, 7224, 1, 0, 0, 0, 7226, 7225, 1, 0, 0, 0, 7227, 805, 1, 0, 0, 0, 7228, 7230, 3, 808, 404, 0, 7229, 7228, 1, 0, 0, 0, 7230, 7231, 1, 0, 0, 0, 7231, 7229, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 807, 1, 0, 0, 0, 7233, 7234, 3, 810, 405, 0, 7234, 7238, 3, 812, 406, 0, 7235, 7239, 3, 1362, 681, 0, 7236, 7239, 3, 64, 32, 0, 7237, 7239, 5, 53, 0, 0, 7238, 7235, 1, 0, 0, 0, 7238, 7236, 1, 0, 0, 0, 7238, 7237, 1, 0, 0, 0, 7239, 809, 1, 0, 0, 0, 7240, 7249, 3, 1380, 690, 0, 7241, 7242, 5, 164, 0, 0, 7242, 7249, 5, 74, 0, 0, 7243, 7249, 5, 194, 0, 0, 7244, 7249, 5, 246, 0, 0, 7245, 7249, 5, 275, 0, 0, 7246, 7249, 5, 344, 0, 0, 7247, 7249, 5, 346, 0, 0, 7248, 7240, 1, 0, 0, 0, 7248, 7241, 1, 0, 0, 0, 7248, 7243, 1, 0, 0, 0, 7248, 7244, 1, 0, 0, 0, 7248, 7245, 1, 0, 0, 0, 7248, 7246, 1, 0, 0, 0, 7248, 7247, 1, 0, 0, 0, 7249, 811, 1, 0, 0, 0, 7250, 7253, 5, 10, 0, 0, 7251, 7253, 1, 0, 0, 0, 7252, 7250, 1, 0, 0, 0, 7252, 7251, 1, 0, 0, 0, 7253, 813, 1, 0, 0, 0, 7254, 7255, 5, 138, 0, 0, 7255, 7256, 5, 175, 0, 0, 7256, 7263, 3, 1338, 669, 0, 7257, 7258, 5, 105, 0, 0, 7258, 7264, 3, 804, 402, 0, 7259, 7264, 3, 804, 402, 0, 7260, 7261, 5, 326, 0, 0, 7261, 7262, 5, 344, 0, 0, 7262, 7264, 3, 1338, 669, 0, 7263, 7257, 1, 0, 0, 0, 7263, 7259, 1, 0, 0, 0, 7263, 7260, 1, 0, 0, 0, 7264, 815, 1, 0, 0, 0, 7265, 7266, 5, 138, 0, 0, 7266, 7267, 5, 175, 0, 0, 7267, 7268, 3, 1338, 669, 0, 7268, 7269, 3, 78, 39, 0, 7269, 817, 1, 0, 0, 0, 7270, 7271, 5, 191, 0, 0, 7271, 7274, 5, 175, 0, 0, 7272, 7273, 5, 220, 0, 0, 7273, 7275, 5, 389, 0, 0, 7274, 7272, 1, 0, 0, 0, 7274, 7275, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 7282, 3, 1338, 669, 0, 7277, 7278, 3, 14, 7, 0, 7278, 7279, 5, 2, 0, 0, 7279, 7280, 3, 820, 410, 0, 7280, 7281, 5, 3, 0, 0, 7281, 7283, 1, 0, 0, 0, 7282, 7277, 1, 0, 0, 0, 7282, 7283, 1, 0, 0, 0, 7283, 819, 1, 0, 0, 0, 7284, 7289, 3, 822, 411, 0, 7285, 7286, 5, 6, 0, 0, 7286, 7288, 3, 822, 411, 0, 7287, 7285, 1, 0, 0, 0, 7288, 7291, 1, 0, 0, 0, 7289, 7287, 1, 0, 0, 0, 7289, 7290, 1, 0, 0, 0, 7290, 821, 1, 0, 0, 0, 7291, 7289, 1, 0, 0, 0, 7292, 7293, 5, 209, 0, 0, 7293, 823, 1, 0, 0, 0, 7294, 7295, 5, 138, 0, 0, 7295, 7296, 5, 108, 0, 0, 7296, 7297, 3, 522, 261, 0, 7297, 7298, 5, 298, 0, 0, 7298, 7299, 5, 368, 0, 0, 7299, 825, 1, 0, 0, 0, 7300, 7301, 5, 138, 0, 0, 7301, 7302, 5, 342, 0, 0, 7302, 7303, 7, 33, 0, 0, 7303, 7304, 3, 52, 26, 0, 7304, 827, 1, 0, 0, 0, 7305, 7306, 5, 46, 0, 0, 7306, 7307, 5, 189, 0, 0, 7307, 7308, 3, 522, 261, 0, 7308, 7309, 3, 832, 416, 0, 7309, 7310, 3, 1116, 558, 0, 7310, 7311, 3, 190, 95, 0, 7311, 829, 1, 0, 0, 0, 7312, 7313, 5, 138, 0, 0, 7313, 7314, 5, 189, 0, 0, 7314, 7336, 3, 522, 261, 0, 7315, 7337, 3, 104, 52, 0, 7316, 7317, 5, 191, 0, 0, 7317, 7318, 5, 77, 0, 0, 7318, 7337, 5, 78, 0, 0, 7319, 7320, 5, 326, 0, 0, 7320, 7321, 5, 77, 0, 0, 7321, 7337, 5, 78, 0, 0, 7322, 7323, 5, 133, 0, 0, 7323, 7337, 3, 206, 103, 0, 7324, 7325, 5, 191, 0, 0, 7325, 7328, 5, 45, 0, 0, 7326, 7327, 5, 220, 0, 0, 7327, 7329, 5, 389, 0, 0, 7328, 7326, 1, 0, 0, 0, 7328, 7329, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7331, 3, 1338, 669, 0, 7331, 7332, 3, 106, 53, 0, 7332, 7337, 1, 0, 0, 0, 7333, 7334, 5, 365, 0, 0, 7334, 7335, 5, 45, 0, 0, 7335, 7337, 3, 1338, 669, 0, 7336, 7315, 1, 0, 0, 0, 7336, 7316, 1, 0, 0, 0, 7336, 7319, 1, 0, 0, 0, 7336, 7322, 1, 0, 0, 0, 7336, 7324, 1, 0, 0, 0, 7336, 7333, 1, 0, 0, 0, 7337, 831, 1, 0, 0, 0, 7338, 7341, 5, 36, 0, 0, 7339, 7341, 1, 0, 0, 0, 7340, 7338, 1, 0, 0, 0, 7340, 7339, 1, 0, 0, 0, 7341, 833, 1, 0, 0, 0, 7342, 7343, 5, 138, 0, 0, 7343, 7344, 5, 348, 0, 0, 7344, 7345, 5, 318, 0, 0, 7345, 7346, 5, 185, 0, 0, 7346, 7347, 3, 522, 261, 0, 7347, 7348, 3, 458, 229, 0, 7348, 835, 1, 0, 0, 0, 7349, 7350, 5, 138, 0, 0, 7350, 7351, 5, 348, 0, 0, 7351, 7352, 5, 318, 0, 0, 7352, 7353, 5, 163, 0, 0, 7353, 7354, 3, 522, 261, 0, 7354, 7355, 5, 133, 0, 0, 7355, 7356, 5, 248, 0, 0, 7356, 7357, 5, 62, 0, 0, 7357, 7358, 3, 1336, 668, 0, 7358, 7359, 3, 838, 419, 0, 7359, 7360, 3, 520, 260, 0, 7360, 7422, 1, 0, 0, 0, 7361, 7362, 5, 138, 0, 0, 7362, 7363, 5, 348, 0, 0, 7363, 7364, 5, 318, 0, 0, 7364, 7365, 5, 163, 0, 0, 7365, 7366, 3, 522, 261, 0, 7366, 7367, 5, 138, 0, 0, 7367, 7368, 5, 248, 0, 0, 7368, 7369, 5, 62, 0, 0, 7369, 7370, 3, 1336, 668, 0, 7370, 7371, 3, 838, 419, 0, 7371, 7372, 3, 520, 260, 0, 7372, 7422, 1, 0, 0, 0, 7373, 7374, 5, 138, 0, 0, 7374, 7375, 5, 348, 0, 0, 7375, 7376, 5, 318, 0, 0, 7376, 7377, 5, 163, 0, 0, 7377, 7378, 3, 522, 261, 0, 7378, 7379, 5, 138, 0, 0, 7379, 7380, 5, 248, 0, 0, 7380, 7381, 5, 304, 0, 0, 7381, 7382, 3, 522, 261, 0, 7382, 7383, 3, 838, 419, 0, 7383, 7384, 3, 522, 261, 0, 7384, 7422, 1, 0, 0, 0, 7385, 7386, 5, 138, 0, 0, 7386, 7387, 5, 348, 0, 0, 7387, 7388, 5, 318, 0, 0, 7388, 7389, 5, 163, 0, 0, 7389, 7390, 3, 522, 261, 0, 7390, 7391, 5, 138, 0, 0, 7391, 7392, 5, 248, 0, 0, 7392, 7393, 5, 62, 0, 0, 7393, 7394, 3, 1336, 668, 0, 7394, 7395, 5, 304, 0, 0, 7395, 7396, 3, 522, 261, 0, 7396, 7397, 3, 838, 419, 0, 7397, 7398, 3, 522, 261, 0, 7398, 7422, 1, 0, 0, 0, 7399, 7400, 5, 138, 0, 0, 7400, 7401, 5, 348, 0, 0, 7401, 7402, 5, 318, 0, 0, 7402, 7403, 5, 163, 0, 0, 7403, 7404, 3, 522, 261, 0, 7404, 7405, 5, 191, 0, 0, 7405, 7406, 5, 248, 0, 0, 7406, 7407, 5, 62, 0, 0, 7407, 7408, 3, 1336, 668, 0, 7408, 7422, 1, 0, 0, 0, 7409, 7410, 5, 138, 0, 0, 7410, 7411, 5, 348, 0, 0, 7411, 7412, 5, 318, 0, 0, 7412, 7413, 5, 163, 0, 0, 7413, 7414, 3, 522, 261, 0, 7414, 7415, 5, 191, 0, 0, 7415, 7416, 5, 248, 0, 0, 7416, 7417, 5, 220, 0, 0, 7417, 7418, 5, 389, 0, 0, 7418, 7419, 5, 62, 0, 0, 7419, 7420, 3, 1336, 668, 0, 7420, 7422, 1, 0, 0, 0, 7421, 7349, 1, 0, 0, 0, 7421, 7361, 1, 0, 0, 0, 7421, 7373, 1, 0, 0, 0, 7421, 7385, 1, 0, 0, 0, 7421, 7399, 1, 0, 0, 0, 7421, 7409, 1, 0, 0, 0, 7422, 837, 1, 0, 0, 0, 7423, 7424, 5, 105, 0, 0, 7424, 839, 1, 0, 0, 0, 7425, 7426, 5, 46, 0, 0, 7426, 7427, 3, 486, 243, 0, 7427, 7428, 5, 168, 0, 0, 7428, 7429, 3, 522, 261, 0, 7429, 7430, 5, 62, 0, 0, 7430, 7431, 3, 1356, 678, 0, 7431, 7432, 5, 94, 0, 0, 7432, 7433, 3, 1356, 678, 0, 7433, 7434, 5, 64, 0, 0, 7434, 7435, 3, 522, 261, 0, 7435, 841, 1, 0, 0, 0, 7436, 7437, 5, 158, 0, 0, 7437, 7438, 3, 862, 431, 0, 7438, 7439, 3, 1334, 667, 0, 7439, 7440, 3, 844, 422, 0, 7440, 7450, 1, 0, 0, 0, 7441, 7442, 5, 158, 0, 0, 7442, 7450, 3, 862, 431, 0, 7443, 7444, 5, 158, 0, 0, 7444, 7445, 3, 862, 431, 0, 7445, 7446, 3, 1338, 669, 0, 7446, 7447, 5, 80, 0, 0, 7447, 7448, 3, 1334, 667, 0, 7448, 7450, 1, 0, 0, 0, 7449, 7436, 1, 0, 0, 0, 7449, 7441, 1, 0, 0, 0, 7449, 7443, 1, 0, 0, 0, 7450, 843, 1, 0, 0, 0, 7451, 7452, 5, 100, 0, 0, 7452, 7455, 3, 1338, 669, 0, 7453, 7455, 1, 0, 0, 0, 7454, 7451, 1, 0, 0, 0, 7454, 7453, 1, 0, 0, 0, 7455, 845, 1, 0, 0, 0, 7456, 7457, 5, 363, 0, 0, 7457, 7458, 3, 864, 432, 0, 7458, 7459, 3, 866, 433, 0, 7459, 7460, 3, 862, 431, 0, 7460, 7461, 3, 860, 430, 0, 7461, 7462, 3, 874, 437, 0, 7462, 7470, 1, 0, 0, 0, 7463, 7464, 5, 363, 0, 0, 7464, 7465, 5, 2, 0, 0, 7465, 7466, 3, 850, 425, 0, 7466, 7467, 5, 3, 0, 0, 7467, 7468, 3, 874, 437, 0, 7468, 7470, 1, 0, 0, 0, 7469, 7456, 1, 0, 0, 0, 7469, 7463, 1, 0, 0, 0, 7470, 847, 1, 0, 0, 0, 7471, 7472, 3, 852, 426, 0, 7472, 7473, 3, 862, 431, 0, 7473, 7474, 3, 874, 437, 0, 7474, 7482, 1, 0, 0, 0, 7475, 7476, 3, 852, 426, 0, 7476, 7477, 5, 2, 0, 0, 7477, 7478, 3, 850, 425, 0, 7478, 7479, 5, 3, 0, 0, 7479, 7480, 3, 874, 437, 0, 7480, 7482, 1, 0, 0, 0, 7481, 7471, 1, 0, 0, 0, 7481, 7475, 1, 0, 0, 0, 7482, 849, 1, 0, 0, 0, 7483, 7488, 3, 854, 427, 0, 7484, 7485, 5, 6, 0, 0, 7485, 7487, 3, 854, 427, 0, 7486, 7484, 1, 0, 0, 0, 7487, 7490, 1, 0, 0, 0, 7488, 7486, 1, 0, 0, 0, 7488, 7489, 1, 0, 0, 0, 7489, 851, 1, 0, 0, 0, 7490, 7488, 1, 0, 0, 0, 7491, 7492, 7, 34, 0, 0, 7492, 853, 1, 0, 0, 0, 7493, 7494, 3, 856, 428, 0, 7494, 7495, 3, 858, 429, 0, 7495, 855, 1, 0, 0, 0, 7496, 7499, 3, 1376, 688, 0, 7497, 7499, 3, 852, 426, 0, 7498, 7496, 1, 0, 0, 0, 7498, 7497, 1, 0, 0, 0, 7499, 857, 1, 0, 0, 0, 7500, 7504, 3, 64, 32, 0, 7501, 7504, 3, 290, 145, 0, 7502, 7504, 1, 0, 0, 0, 7503, 7500, 1, 0, 0, 0, 7503, 7501, 1, 0, 0, 0, 7503, 7502, 1, 0, 0, 0, 7504, 859, 1, 0, 0, 0, 7505, 7508, 3, 852, 426, 0, 7506, 7508, 1, 0, 0, 0, 7507, 7505, 1, 0, 0, 0, 7507, 7506, 1, 0, 0, 0, 7508, 861, 1, 0, 0, 0, 7509, 7512, 5, 128, 0, 0, 7510, 7512, 1, 0, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7510, 1, 0, 0, 0, 7512, 863, 1, 0, 0, 0, 7513, 7516, 5, 113, 0, 0, 7514, 7516, 1, 0, 0, 0, 7515, 7513, 1, 0, 0, 0, 7515, 7514, 1, 0, 0, 0, 7516, 865, 1, 0, 0, 0, 7517, 7520, 5, 112, 0, 0, 7518, 7520, 1, 0, 0, 0, 7519, 7517, 1, 0, 0, 0, 7519, 7518, 1, 0, 0, 0, 7520, 867, 1, 0, 0, 0, 7521, 7522, 5, 2, 0, 0, 7522, 7523, 3, 1336, 668, 0, 7523, 7524, 5, 3, 0, 0, 7524, 7527, 1, 0, 0, 0, 7525, 7527, 1, 0, 0, 0, 7526, 7521, 1, 0, 0, 0, 7526, 7525, 1, 0, 0, 0, 7527, 869, 1, 0, 0, 0, 7528, 7529, 3, 1334, 667, 0, 7529, 7530, 3, 868, 434, 0, 7530, 871, 1, 0, 0, 0, 7531, 7536, 3, 870, 435, 0, 7532, 7533, 5, 6, 0, 0, 7533, 7535, 3, 870, 435, 0, 7534, 7532, 1, 0, 0, 0, 7535, 7538, 1, 0, 0, 0, 7536, 7534, 1, 0, 0, 0, 7536, 7537, 1, 0, 0, 0, 7537, 873, 1, 0, 0, 0, 7538, 7536, 1, 0, 0, 0, 7539, 7542, 3, 872, 436, 0, 7540, 7542, 1, 0, 0, 0, 7541, 7539, 1, 0, 0, 0, 7541, 7540, 1, 0, 0, 0, 7542, 875, 1, 0, 0, 0, 7543, 7544, 5, 203, 0, 0, 7544, 7560, 3, 878, 439, 0, 7545, 7546, 5, 203, 0, 0, 7546, 7547, 3, 852, 426, 0, 7547, 7548, 3, 862, 431, 0, 7548, 7549, 3, 878, 439, 0, 7549, 7560, 1, 0, 0, 0, 7550, 7551, 5, 203, 0, 0, 7551, 7552, 5, 128, 0, 0, 7552, 7560, 3, 878, 439, 0, 7553, 7554, 5, 203, 0, 0, 7554, 7555, 5, 2, 0, 0, 7555, 7556, 3, 880, 440, 0, 7556, 7557, 5, 3, 0, 0, 7557, 7558, 3, 878, 439, 0, 7558, 7560, 1, 0, 0, 0, 7559, 7543, 1, 0, 0, 0, 7559, 7545, 1, 0, 0, 0, 7559, 7550, 1, 0, 0, 0, 7559, 7553, 1, 0, 0, 0, 7560, 877, 1, 0, 0, 0, 7561, 7571, 3, 958, 479, 0, 7562, 7571, 3, 900, 450, 0, 7563, 7571, 3, 940, 470, 0, 7564, 7571, 3, 926, 463, 0, 7565, 7571, 3, 950, 475, 0, 7566, 7571, 3, 262, 131, 0, 7567, 7571, 3, 268, 134, 0, 7568, 7571, 3, 274, 137, 0, 7569, 7571, 3, 894, 447, 0, 7570, 7561, 1, 0, 0, 0, 7570, 7562, 1, 0, 0, 0, 7570, 7563, 1, 0, 0, 0, 7570, 7564, 1, 0, 0, 0, 7570, 7565, 1, 0, 0, 0, 7570, 7566, 1, 0, 0, 0, 7570, 7567, 1, 0, 0, 0, 7570, 7568, 1, 0, 0, 0, 7570, 7569, 1, 0, 0, 0, 7571, 879, 1, 0, 0, 0, 7572, 7577, 3, 882, 441, 0, 7573, 7574, 5, 6, 0, 0, 7574, 7576, 3, 882, 441, 0, 7575, 7573, 1, 0, 0, 0, 7576, 7579, 1, 0, 0, 0, 7577, 7575, 1, 0, 0, 0, 7577, 7578, 1, 0, 0, 0, 7578, 881, 1, 0, 0, 0, 7579, 7577, 1, 0, 0, 0, 7580, 7581, 3, 884, 442, 0, 7581, 7582, 3, 886, 443, 0, 7582, 883, 1, 0, 0, 0, 7583, 7586, 3, 1376, 688, 0, 7584, 7586, 3, 852, 426, 0, 7585, 7583, 1, 0, 0, 0, 7585, 7584, 1, 0, 0, 0, 7586, 885, 1, 0, 0, 0, 7587, 7591, 3, 64, 32, 0, 7588, 7591, 3, 290, 145, 0, 7589, 7591, 1, 0, 0, 0, 7590, 7587, 1, 0, 0, 0, 7590, 7588, 1, 0, 0, 0, 7590, 7589, 1, 0, 0, 0, 7591, 887, 1, 0, 0, 0, 7592, 7593, 5, 283, 0, 0, 7593, 7594, 3, 1338, 669, 0, 7594, 7595, 3, 890, 445, 0, 7595, 7596, 5, 36, 0, 0, 7596, 7597, 3, 892, 446, 0, 7597, 889, 1, 0, 0, 0, 7598, 7599, 5, 2, 0, 0, 7599, 7600, 3, 1284, 642, 0, 7600, 7601, 5, 3, 0, 0, 7601, 7604, 1, 0, 0, 0, 7602, 7604, 1, 0, 0, 0, 7603, 7598, 1, 0, 0, 0, 7603, 7602, 1, 0, 0, 0, 7604, 891, 1, 0, 0, 0, 7605, 7610, 3, 958, 479, 0, 7606, 7610, 3, 900, 450, 0, 7607, 7610, 3, 940, 470, 0, 7608, 7610, 3, 926, 463, 0, 7609, 7605, 1, 0, 0, 0, 7609, 7606, 1, 0, 0, 0, 7609, 7607, 1, 0, 0, 0, 7609, 7608, 1, 0, 0, 0, 7610, 893, 1, 0, 0, 0, 7611, 7612, 5, 202, 0, 0, 7612, 7613, 3, 1338, 669, 0, 7613, 7614, 3, 896, 448, 0, 7614, 7639, 1, 0, 0, 0, 7615, 7616, 5, 46, 0, 0, 7616, 7617, 3, 172, 86, 0, 7617, 7618, 5, 92, 0, 0, 7618, 7619, 3, 264, 132, 0, 7619, 7620, 5, 36, 0, 0, 7620, 7621, 5, 202, 0, 0, 7621, 7622, 3, 1338, 669, 0, 7622, 7623, 3, 896, 448, 0, 7623, 7624, 3, 266, 133, 0, 7624, 7639, 1, 0, 0, 0, 7625, 7626, 5, 46, 0, 0, 7626, 7627, 3, 172, 86, 0, 7627, 7628, 5, 92, 0, 0, 7628, 7629, 5, 220, 0, 0, 7629, 7630, 5, 77, 0, 0, 7630, 7631, 5, 389, 0, 0, 7631, 7632, 3, 264, 132, 0, 7632, 7633, 5, 36, 0, 0, 7633, 7634, 5, 202, 0, 0, 7634, 7635, 3, 1338, 669, 0, 7635, 7636, 3, 896, 448, 0, 7636, 7637, 3, 266, 133, 0, 7637, 7639, 1, 0, 0, 0, 7638, 7611, 1, 0, 0, 0, 7638, 7615, 1, 0, 0, 0, 7638, 7625, 1, 0, 0, 0, 7639, 895, 1, 0, 0, 0, 7640, 7641, 5, 2, 0, 0, 7641, 7642, 3, 1278, 639, 0, 7642, 7643, 5, 3, 0, 0, 7643, 7646, 1, 0, 0, 0, 7644, 7646, 1, 0, 0, 0, 7645, 7640, 1, 0, 0, 0, 7645, 7644, 1, 0, 0, 0, 7646, 897, 1, 0, 0, 0, 7647, 7648, 5, 177, 0, 0, 7648, 7658, 3, 1338, 669, 0, 7649, 7650, 5, 177, 0, 0, 7650, 7651, 5, 283, 0, 0, 7651, 7658, 3, 1338, 669, 0, 7652, 7653, 5, 177, 0, 0, 7653, 7658, 5, 30, 0, 0, 7654, 7655, 5, 177, 0, 0, 7655, 7656, 5, 283, 0, 0, 7656, 7658, 5, 30, 0, 0, 7657, 7647, 1, 0, 0, 0, 7657, 7649, 1, 0, 0, 0, 7657, 7652, 1, 0, 0, 0, 7657, 7654, 1, 0, 0, 0, 7658, 899, 1, 0, 0, 0, 7659, 7661, 3, 972, 486, 0, 7660, 7659, 1, 0, 0, 0, 7660, 7661, 1, 0, 0, 0, 7661, 7662, 1, 0, 0, 0, 7662, 7663, 5, 232, 0, 0, 7663, 7664, 5, 71, 0, 0, 7664, 7665, 3, 902, 451, 0, 7665, 7666, 3, 904, 452, 0, 7666, 7667, 3, 912, 456, 0, 7667, 7668, 3, 916, 458, 0, 7668, 901, 1, 0, 0, 0, 7669, 7672, 3, 1334, 667, 0, 7670, 7671, 5, 36, 0, 0, 7671, 7673, 3, 1370, 685, 0, 7672, 7670, 1, 0, 0, 0, 7672, 7673, 1, 0, 0, 0, 7673, 903, 1, 0, 0, 0, 7674, 7694, 3, 958, 479, 0, 7675, 7676, 5, 463, 0, 0, 7676, 7677, 3, 906, 453, 0, 7677, 7678, 5, 450, 0, 0, 7678, 7679, 3, 958, 479, 0, 7679, 7694, 1, 0, 0, 0, 7680, 7681, 5, 2, 0, 0, 7681, 7682, 3, 908, 454, 0, 7682, 7687, 5, 3, 0, 0, 7683, 7684, 5, 463, 0, 0, 7684, 7685, 3, 906, 453, 0, 7685, 7686, 5, 450, 0, 0, 7686, 7688, 1, 0, 0, 0, 7687, 7683, 1, 0, 0, 0, 7687, 7688, 1, 0, 0, 0, 7688, 7689, 1, 0, 0, 0, 7689, 7690, 3, 958, 479, 0, 7690, 7694, 1, 0, 0, 0, 7691, 7692, 5, 53, 0, 0, 7692, 7694, 5, 415, 0, 0, 7693, 7674, 1, 0, 0, 0, 7693, 7675, 1, 0, 0, 0, 7693, 7680, 1, 0, 0, 0, 7693, 7691, 1, 0, 0, 0, 7694, 905, 1, 0, 0, 0, 7695, 7696, 7, 35, 0, 0, 7696, 907, 1, 0, 0, 0, 7697, 7702, 3, 910, 455, 0, 7698, 7699, 5, 6, 0, 0, 7699, 7701, 3, 910, 455, 0, 7700, 7698, 1, 0, 0, 0, 7701, 7704, 1, 0, 0, 0, 7702, 7700, 1, 0, 0, 0, 7702, 7703, 1, 0, 0, 0, 7703, 909, 1, 0, 0, 0, 7704, 7702, 1, 0, 0, 0, 7705, 7706, 3, 1370, 685, 0, 7706, 7707, 3, 1324, 662, 0, 7707, 911, 1, 0, 0, 0, 7708, 7709, 5, 80, 0, 0, 7709, 7710, 5, 464, 0, 0, 7710, 7711, 3, 914, 457, 0, 7711, 7718, 5, 57, 0, 0, 7712, 7713, 5, 362, 0, 0, 7713, 7714, 5, 326, 0, 0, 7714, 7715, 3, 942, 471, 0, 7715, 7716, 3, 1092, 546, 0, 7716, 7719, 1, 0, 0, 0, 7717, 7719, 5, 263, 0, 0, 7718, 7712, 1, 0, 0, 0, 7718, 7717, 1, 0, 0, 0, 7719, 7722, 1, 0, 0, 0, 7720, 7722, 1, 0, 0, 0, 7721, 7708, 1, 0, 0, 0, 7721, 7720, 1, 0, 0, 0, 7722, 913, 1, 0, 0, 0, 7723, 7724, 5, 2, 0, 0, 7724, 7725, 3, 596, 298, 0, 7725, 7726, 5, 3, 0, 0, 7726, 7727, 3, 1092, 546, 0, 7727, 7733, 1, 0, 0, 0, 7728, 7729, 5, 80, 0, 0, 7729, 7730, 5, 45, 0, 0, 7730, 7733, 3, 1338, 669, 0, 7731, 7733, 1, 0, 0, 0, 7732, 7723, 1, 0, 0, 0, 7732, 7728, 1, 0, 0, 0, 7732, 7731, 1, 0, 0, 0, 7733, 915, 1, 0, 0, 0, 7734, 7735, 5, 87, 0, 0, 7735, 7738, 3, 1328, 664, 0, 7736, 7738, 1, 0, 0, 0, 7737, 7734, 1, 0, 0, 0, 7737, 7736, 1, 0, 0, 0, 7738, 917, 1, 0, 0, 0, 7739, 7741, 5, 253, 0, 0, 7740, 7742, 5, 71, 0, 0, 7741, 7740, 1, 0, 0, 0, 7741, 7742, 1, 0, 0, 0, 7742, 7743, 1, 0, 0, 0, 7743, 7745, 3, 1334, 667, 0, 7744, 7746, 3, 1060, 530, 0, 7745, 7744, 1, 0, 0, 0, 7745, 7746, 1, 0, 0, 0, 7746, 7747, 1, 0, 0, 0, 7747, 7750, 5, 100, 0, 0, 7748, 7751, 3, 960, 480, 0, 7749, 7751, 3, 1334, 667, 0, 7750, 7748, 1, 0, 0, 0, 7750, 7749, 1, 0, 0, 0, 7751, 7753, 1, 0, 0, 0, 7752, 7754, 3, 1060, 530, 0, 7753, 7752, 1, 0, 0, 0, 7753, 7754, 1, 0, 0, 0, 7754, 7755, 1, 0, 0, 0, 7755, 7756, 5, 80, 0, 0, 7756, 7765, 3, 1160, 580, 0, 7757, 7759, 3, 920, 460, 0, 7758, 7760, 3, 922, 461, 0, 7759, 7758, 1, 0, 0, 0, 7759, 7760, 1, 0, 0, 0, 7760, 7766, 1, 0, 0, 0, 7761, 7763, 3, 922, 461, 0, 7762, 7764, 3, 920, 460, 0, 7763, 7762, 1, 0, 0, 0, 7763, 7764, 1, 0, 0, 0, 7764, 7766, 1, 0, 0, 0, 7765, 7757, 1, 0, 0, 0, 7765, 7761, 1, 0, 0, 0, 7766, 7768, 1, 0, 0, 0, 7767, 7769, 3, 924, 462, 0, 7768, 7767, 1, 0, 0, 0, 7768, 7769, 1, 0, 0, 0, 7769, 919, 1, 0, 0, 0, 7770, 7771, 5, 102, 0, 0, 7771, 7772, 5, 77, 0, 0, 7772, 7775, 5, 250, 0, 0, 7773, 7774, 5, 33, 0, 0, 7774, 7776, 3, 1160, 580, 0, 7775, 7773, 1, 0, 0, 0, 7775, 7776, 1, 0, 0, 0, 7776, 7778, 1, 0, 0, 0, 7777, 7779, 5, 93, 0, 0, 7778, 7777, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 7780, 1, 0, 0, 0, 7780, 7785, 5, 232, 0, 0, 7781, 7782, 5, 2, 0, 0, 7782, 7783, 3, 908, 454, 0, 7783, 7784, 5, 3, 0, 0, 7784, 7786, 1, 0, 0, 0, 7785, 7781, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 1, 0, 0, 0, 7787, 7788, 3, 1050, 525, 0, 7788, 921, 1, 0, 0, 0, 7789, 7790, 5, 102, 0, 0, 7790, 7793, 5, 250, 0, 0, 7791, 7792, 5, 33, 0, 0, 7792, 7794, 3, 1160, 580, 0, 7793, 7791, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7796, 1, 0, 0, 0, 7795, 7797, 5, 93, 0, 0, 7796, 7795, 1, 0, 0, 0, 7796, 7797, 1, 0, 0, 0, 7797, 7798, 1, 0, 0, 0, 7798, 7799, 5, 362, 0, 0, 7799, 7800, 5, 326, 0, 0, 7800, 7801, 3, 942, 471, 0, 7801, 923, 1, 0, 0, 0, 7802, 7803, 5, 102, 0, 0, 7803, 7805, 5, 250, 0, 0, 7804, 7806, 5, 93, 0, 0, 7805, 7804, 1, 0, 0, 0, 7805, 7806, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 7808, 5, 182, 0, 0, 7808, 925, 1, 0, 0, 0, 7809, 7811, 3, 972, 486, 0, 7810, 7809, 1, 0, 0, 0, 7810, 7811, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, 0, 7812, 7813, 5, 182, 0, 0, 7813, 7814, 5, 64, 0, 0, 7814, 7815, 3, 1076, 538, 0, 7815, 7816, 3, 928, 464, 0, 7816, 7817, 3, 1094, 547, 0, 7817, 7818, 3, 916, 458, 0, 7818, 927, 1, 0, 0, 0, 7819, 7820, 5, 100, 0, 0, 7820, 7823, 3, 1054, 527, 0, 7821, 7823, 1, 0, 0, 0, 7822, 7819, 1, 0, 0, 0, 7822, 7821, 1, 0, 0, 0, 7823, 929, 1, 0, 0, 0, 7824, 7825, 5, 247, 0, 0, 7825, 7826, 3, 986, 493, 0, 7826, 7827, 3, 1074, 537, 0, 7827, 7828, 3, 932, 466, 0, 7828, 7829, 3, 936, 468, 0, 7829, 931, 1, 0, 0, 0, 7830, 7831, 5, 68, 0, 0, 7831, 7832, 3, 934, 467, 0, 7832, 7833, 5, 256, 0, 0, 7833, 7836, 1, 0, 0, 0, 7834, 7836, 1, 0, 0, 0, 7835, 7830, 1, 0, 0, 0, 7835, 7834, 1, 0, 0, 0, 7836, 933, 1, 0, 0, 0, 7837, 7838, 5, 131, 0, 0, 7838, 7850, 7, 36, 0, 0, 7839, 7840, 5, 407, 0, 0, 7840, 7850, 7, 36, 0, 0, 7841, 7846, 5, 327, 0, 0, 7842, 7843, 5, 362, 0, 0, 7843, 7847, 5, 201, 0, 0, 7844, 7845, 5, 407, 0, 0, 7845, 7847, 5, 201, 0, 0, 7846, 7842, 1, 0, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7847, 1, 0, 0, 0, 7847, 7850, 1, 0, 0, 0, 7848, 7850, 5, 201, 0, 0, 7849, 7837, 1, 0, 0, 0, 7849, 7839, 1, 0, 0, 0, 7849, 7841, 1, 0, 0, 0, 7849, 7848, 1, 0, 0, 0, 7850, 935, 1, 0, 0, 0, 7851, 7854, 5, 265, 0, 0, 7852, 7854, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7853, 7852, 1, 0, 0, 0, 7854, 937, 1, 0, 0, 0, 7855, 7860, 5, 265, 0, 0, 7856, 7857, 5, 465, 0, 0, 7857, 7860, 5, 466, 0, 0, 7858, 7860, 1, 0, 0, 0, 7859, 7855, 1, 0, 0, 0, 7859, 7856, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 939, 1, 0, 0, 0, 7861, 7863, 3, 972, 486, 0, 7862, 7861, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7864, 1, 0, 0, 0, 7864, 7865, 5, 362, 0, 0, 7865, 7866, 3, 1076, 538, 0, 7866, 7867, 5, 326, 0, 0, 7867, 7868, 3, 942, 471, 0, 7868, 7869, 3, 1052, 526, 0, 7869, 7870, 3, 1094, 547, 0, 7870, 7871, 3, 916, 458, 0, 7871, 941, 1, 0, 0, 0, 7872, 7877, 3, 944, 472, 0, 7873, 7874, 5, 6, 0, 0, 7874, 7876, 3, 944, 472, 0, 7875, 7873, 1, 0, 0, 0, 7876, 7879, 1, 0, 0, 0, 7877, 7875, 1, 0, 0, 0, 7877, 7878, 1, 0, 0, 0, 7878, 943, 1, 0, 0, 0, 7879, 7877, 1, 0, 0, 0, 7880, 7881, 3, 946, 473, 0, 7881, 7882, 5, 10, 0, 0, 7882, 7883, 3, 1160, 580, 0, 7883, 7891, 1, 0, 0, 0, 7884, 7885, 5, 2, 0, 0, 7885, 7886, 3, 948, 474, 0, 7886, 7887, 5, 3, 0, 0, 7887, 7888, 5, 10, 0, 0, 7888, 7889, 3, 1160, 580, 0, 7889, 7891, 1, 0, 0, 0, 7890, 7880, 1, 0, 0, 0, 7890, 7884, 1, 0, 0, 0, 7891, 945, 1, 0, 0, 0, 7892, 7893, 3, 1370, 685, 0, 7893, 7894, 3, 1324, 662, 0, 7894, 947, 1, 0, 0, 0, 7895, 7900, 3, 946, 473, 0, 7896, 7897, 5, 6, 0, 0, 7897, 7899, 3, 946, 473, 0, 7898, 7896, 1, 0, 0, 0, 7899, 7902, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7900, 7901, 1, 0, 0, 0, 7901, 949, 1, 0, 0, 0, 7902, 7900, 1, 0, 0, 0, 7903, 7904, 5, 178, 0, 0, 7904, 7905, 3, 952, 476, 0, 7905, 7906, 3, 954, 477, 0, 7906, 7907, 5, 172, 0, 0, 7907, 7908, 3, 956, 478, 0, 7908, 7909, 5, 62, 0, 0, 7909, 7910, 3, 958, 479, 0, 7910, 951, 1, 0, 0, 0, 7911, 7912, 3, 1338, 669, 0, 7912, 953, 1, 0, 0, 0, 7913, 7914, 5, 262, 0, 0, 7914, 7919, 5, 317, 0, 0, 7915, 7919, 5, 317, 0, 0, 7916, 7919, 5, 107, 0, 0, 7917, 7919, 5, 231, 0, 0, 7918, 7913, 1, 0, 0, 0, 7918, 7915, 1, 0, 0, 0, 7918, 7916, 1, 0, 0, 0, 7918, 7917, 1, 0, 0, 0, 7919, 7922, 1, 0, 0, 0, 7920, 7918, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 955, 1, 0, 0, 0, 7922, 7920, 1, 0, 0, 0, 7923, 7929, 1, 0, 0, 0, 7924, 7925, 5, 105, 0, 0, 7925, 7929, 5, 217, 0, 0, 7926, 7927, 5, 372, 0, 0, 7927, 7929, 5, 217, 0, 0, 7928, 7923, 1, 0, 0, 0, 7928, 7924, 1, 0, 0, 0, 7928, 7926, 1, 0, 0, 0, 7929, 957, 1, 0, 0, 0, 7930, 7933, 3, 962, 481, 0, 7931, 7933, 3, 960, 480, 0, 7932, 7930, 1, 0, 0, 0, 7932, 7931, 1, 0, 0, 0, 7933, 959, 1, 0, 0, 0, 7934, 7935, 5, 2, 0, 0, 7935, 7936, 3, 962, 481, 0, 7936, 7937, 5, 3, 0, 0, 7937, 7943, 1, 0, 0, 0, 7938, 7939, 5, 2, 0, 0, 7939, 7940, 3, 960, 480, 0, 7940, 7941, 5, 3, 0, 0, 7941, 7943, 1, 0, 0, 0, 7942, 7934, 1, 0, 0, 0, 7942, 7938, 1, 0, 0, 0, 7943, 961, 1, 0, 0, 0, 7944, 7945, 3, 964, 482, 0, 7945, 7952, 3, 994, 497, 0, 7946, 7947, 3, 1038, 519, 0, 7947, 7948, 3, 1004, 502, 0, 7948, 7953, 1, 0, 0, 0, 7949, 7950, 3, 1002, 501, 0, 7950, 7951, 3, 1040, 520, 0, 7951, 7953, 1, 0, 0, 0, 7952, 7946, 1, 0, 0, 0, 7952, 7949, 1, 0, 0, 0, 7952, 7953, 1, 0, 0, 0, 7953, 7966, 1, 0, 0, 0, 7954, 7955, 3, 972, 486, 0, 7955, 7956, 3, 964, 482, 0, 7956, 7963, 3, 994, 497, 0, 7957, 7958, 3, 1038, 519, 0, 7958, 7959, 3, 1004, 502, 0, 7959, 7964, 1, 0, 0, 0, 7960, 7961, 3, 1002, 501, 0, 7961, 7962, 3, 1040, 520, 0, 7962, 7964, 1, 0, 0, 0, 7963, 7957, 1, 0, 0, 0, 7963, 7960, 1, 0, 0, 0, 7963, 7964, 1, 0, 0, 0, 7964, 7966, 1, 0, 0, 0, 7965, 7944, 1, 0, 0, 0, 7965, 7954, 1, 0, 0, 0, 7966, 963, 1, 0, 0, 0, 7967, 7974, 3, 966, 483, 0, 7968, 7969, 7, 37, 0, 0, 7969, 7970, 3, 988, 494, 0, 7970, 7971, 3, 966, 483, 0, 7971, 7973, 1, 0, 0, 0, 7972, 7968, 1, 0, 0, 0, 7973, 7976, 1, 0, 0, 0, 7974, 7972, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 965, 1, 0, 0, 0, 7976, 7974, 1, 0, 0, 0, 7977, 7984, 3, 970, 485, 0, 7978, 7979, 5, 70, 0, 0, 7979, 7980, 3, 988, 494, 0, 7980, 7981, 3, 970, 485, 0, 7981, 7983, 1, 0, 0, 0, 7982, 7978, 1, 0, 0, 0, 7983, 7986, 1, 0, 0, 0, 7984, 7982, 1, 0, 0, 0, 7984, 7985, 1, 0, 0, 0, 7985, 967, 1, 0, 0, 0, 7986, 7984, 1, 0, 0, 0, 7987, 7989, 3, 1328, 664, 0, 7988, 7990, 3, 980, 490, 0, 7989, 7988, 1, 0, 0, 0, 7989, 7990, 1, 0, 0, 0, 7990, 8003, 1, 0, 0, 0, 7991, 7992, 3, 992, 496, 0, 7992, 7994, 3, 1326, 663, 0, 7993, 7995, 3, 980, 490, 0, 7994, 7993, 1, 0, 0, 0, 7994, 7995, 1, 0, 0, 0, 7995, 8003, 1, 0, 0, 0, 7996, 7997, 3, 990, 495, 0, 7997, 7999, 3, 1328, 664, 0, 7998, 8000, 3, 980, 490, 0, 7999, 7998, 1, 0, 0, 0, 7999, 8000, 1, 0, 0, 0, 8000, 8003, 1, 0, 0, 0, 8001, 8003, 3, 980, 490, 0, 8002, 7987, 1, 0, 0, 0, 8002, 7991, 1, 0, 0, 0, 8002, 7996, 1, 0, 0, 0, 8002, 8001, 1, 0, 0, 0, 8003, 969, 1, 0, 0, 0, 8004, 8005, 5, 88, 0, 0, 8005, 8006, 3, 968, 484, 0, 8006, 8007, 3, 1052, 526, 0, 8007, 8008, 3, 1092, 546, 0, 8008, 8009, 3, 1022, 511, 0, 8009, 8010, 3, 1036, 518, 0, 8010, 8011, 3, 1238, 619, 0, 8011, 8017, 1, 0, 0, 0, 8012, 8017, 3, 1050, 525, 0, 8013, 8014, 5, 92, 0, 0, 8014, 8017, 3, 1072, 536, 0, 8015, 8017, 3, 960, 480, 0, 8016, 8004, 1, 0, 0, 0, 8016, 8012, 1, 0, 0, 0, 8016, 8013, 1, 0, 0, 0, 8016, 8015, 1, 0, 0, 0, 8017, 971, 1, 0, 0, 0, 8018, 8020, 5, 105, 0, 0, 8019, 8021, 5, 296, 0, 0, 8020, 8019, 1, 0, 0, 0, 8020, 8021, 1, 0, 0, 0, 8021, 8022, 1, 0, 0, 0, 8022, 8023, 3, 974, 487, 0, 8023, 973, 1, 0, 0, 0, 8024, 8029, 3, 976, 488, 0, 8025, 8026, 5, 6, 0, 0, 8026, 8028, 3, 976, 488, 0, 8027, 8025, 1, 0, 0, 0, 8028, 8031, 1, 0, 0, 0, 8029, 8027, 1, 0, 0, 0, 8029, 8030, 1, 0, 0, 0, 8030, 975, 1, 0, 0, 0, 8031, 8029, 1, 0, 0, 0, 8032, 8033, 3, 1338, 669, 0, 8033, 8034, 3, 868, 434, 0, 8034, 8035, 5, 36, 0, 0, 8035, 8036, 3, 978, 489, 0, 8036, 8037, 5, 2, 0, 0, 8037, 8038, 3, 892, 446, 0, 8038, 8039, 5, 3, 0, 0, 8039, 977, 1, 0, 0, 0, 8040, 8045, 5, 251, 0, 0, 8041, 8042, 5, 77, 0, 0, 8042, 8045, 5, 251, 0, 0, 8043, 8045, 1, 0, 0, 0, 8044, 8040, 1, 0, 0, 0, 8044, 8041, 1, 0, 0, 0, 8044, 8043, 1, 0, 0, 0, 8045, 979, 1, 0, 0, 0, 8046, 8051, 5, 71, 0, 0, 8047, 8048, 3, 982, 491, 0, 8048, 8049, 3, 984, 492, 0, 8049, 8052, 1, 0, 0, 0, 8050, 8052, 3, 1564, 782, 0, 8051, 8047, 1, 0, 0, 0, 8051, 8050, 1, 0, 0, 0, 8052, 981, 1, 0, 0, 0, 8053, 8056, 1, 0, 0, 0, 8054, 8056, 5, 339, 0, 0, 8055, 8053, 1, 0, 0, 0, 8055, 8054, 1, 0, 0, 0, 8056, 983, 1, 0, 0, 0, 8057, 8059, 7, 38, 0, 0, 8058, 8057, 1, 0, 0, 0, 8058, 8059, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8061, 7, 11, 0, 0, 8061, 8062, 3, 986, 493, 0, 8062, 8063, 3, 1334, 667, 0, 8063, 8072, 1, 0, 0, 0, 8064, 8065, 5, 360, 0, 0, 8065, 8066, 3, 986, 493, 0, 8066, 8067, 3, 1334, 667, 0, 8067, 8072, 1, 0, 0, 0, 8068, 8069, 5, 92, 0, 0, 8069, 8072, 3, 1334, 667, 0, 8070, 8072, 3, 1334, 667, 0, 8071, 8058, 1, 0, 0, 0, 8071, 8064, 1, 0, 0, 0, 8071, 8068, 1, 0, 0, 0, 8071, 8070, 1, 0, 0, 0, 8072, 985, 1, 0, 0, 0, 8073, 8076, 5, 92, 0, 0, 8074, 8076, 1, 0, 0, 0, 8075, 8073, 1, 0, 0, 0, 8075, 8074, 1, 0, 0, 0, 8076, 987, 1, 0, 0, 0, 8077, 8081, 5, 30, 0, 0, 8078, 8081, 5, 56, 0, 0, 8079, 8081, 1, 0, 0, 0, 8080, 8077, 1, 0, 0, 0, 8080, 8078, 1, 0, 0, 0, 8080, 8079, 1, 0, 0, 0, 8081, 989, 1, 0, 0, 0, 8082, 8088, 5, 56, 0, 0, 8083, 8084, 5, 80, 0, 0, 8084, 8085, 5, 2, 0, 0, 8085, 8086, 3, 1278, 639, 0, 8086, 8087, 5, 3, 0, 0, 8087, 8089, 1, 0, 0, 0, 8088, 8083, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 991, 1, 0, 0, 0, 8090, 8091, 5, 30, 0, 0, 8091, 993, 1, 0, 0, 0, 8092, 8095, 3, 996, 498, 0, 8093, 8095, 1, 0, 0, 0, 8094, 8092, 1, 0, 0, 0, 8094, 8093, 1, 0, 0, 0, 8095, 995, 1, 0, 0, 0, 8096, 8097, 5, 83, 0, 0, 8097, 8098, 5, 147, 0, 0, 8098, 8099, 3, 998, 499, 0, 8099, 997, 1, 0, 0, 0, 8100, 8105, 3, 1000, 500, 0, 8101, 8102, 5, 6, 0, 0, 8102, 8104, 3, 1000, 500, 0, 8103, 8101, 1, 0, 0, 0, 8104, 8107, 1, 0, 0, 0, 8105, 8103, 1, 0, 0, 0, 8105, 8106, 1, 0, 0, 0, 8106, 999, 1, 0, 0, 0, 8107, 8105, 1, 0, 0, 0, 8108, 8112, 3, 1160, 580, 0, 8109, 8110, 5, 100, 0, 0, 8110, 8113, 3, 1274, 637, 0, 8111, 8113, 3, 610, 305, 0, 8112, 8109, 1, 0, 0, 0, 8112, 8111, 1, 0, 0, 0, 8113, 8114, 1, 0, 0, 0, 8114, 8115, 3, 612, 306, 0, 8115, 1001, 1, 0, 0, 0, 8116, 8118, 3, 1006, 503, 0, 8117, 8119, 3, 1008, 504, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8125, 1, 0, 0, 0, 8120, 8122, 3, 1008, 504, 0, 8121, 8123, 3, 1006, 503, 0, 8122, 8121, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8125, 1, 0, 0, 0, 8124, 8116, 1, 0, 0, 0, 8124, 8120, 1, 0, 0, 0, 8125, 1003, 1, 0, 0, 0, 8126, 8129, 3, 1002, 501, 0, 8127, 8129, 1, 0, 0, 0, 8128, 8126, 1, 0, 0, 0, 8128, 8127, 1, 0, 0, 0, 8129, 1005, 1, 0, 0, 0, 8130, 8131, 5, 74, 0, 0, 8131, 8134, 3, 1010, 505, 0, 8132, 8133, 5, 6, 0, 0, 8133, 8135, 3, 1012, 506, 0, 8134, 8132, 1, 0, 0, 0, 8134, 8135, 1, 0, 0, 0, 8135, 8154, 1, 0, 0, 0, 8136, 8137, 5, 61, 0, 0, 8137, 8151, 3, 1020, 510, 0, 8138, 8139, 3, 1014, 507, 0, 8139, 8143, 3, 1018, 509, 0, 8140, 8144, 5, 81, 0, 0, 8141, 8142, 5, 105, 0, 0, 8142, 8144, 5, 467, 0, 0, 8143, 8140, 1, 0, 0, 0, 8143, 8141, 1, 0, 0, 0, 8144, 8152, 1, 0, 0, 0, 8145, 8149, 3, 1018, 509, 0, 8146, 8150, 5, 81, 0, 0, 8147, 8148, 5, 105, 0, 0, 8148, 8150, 5, 467, 0, 0, 8149, 8146, 1, 0, 0, 0, 8149, 8147, 1, 0, 0, 0, 8150, 8152, 1, 0, 0, 0, 8151, 8138, 1, 0, 0, 0, 8151, 8145, 1, 0, 0, 0, 8152, 8154, 1, 0, 0, 0, 8153, 8130, 1, 0, 0, 0, 8153, 8136, 1, 0, 0, 0, 8154, 1007, 1, 0, 0, 0, 8155, 8160, 5, 79, 0, 0, 8156, 8161, 3, 1012, 506, 0, 8157, 8158, 3, 1014, 507, 0, 8158, 8159, 3, 1018, 509, 0, 8159, 8161, 1, 0, 0, 0, 8160, 8156, 1, 0, 0, 0, 8160, 8157, 1, 0, 0, 0, 8161, 1009, 1, 0, 0, 0, 8162, 8165, 3, 1160, 580, 0, 8163, 8165, 5, 30, 0, 0, 8164, 8162, 1, 0, 0, 0, 8164, 8163, 1, 0, 0, 0, 8165, 1011, 1, 0, 0, 0, 8166, 8167, 3, 1160, 580, 0, 8167, 1013, 1, 0, 0, 0, 8168, 8174, 3, 1204, 602, 0, 8169, 8170, 5, 12, 0, 0, 8170, 8174, 3, 1016, 508, 0, 8171, 8172, 5, 13, 0, 0, 8172, 8174, 3, 1016, 508, 0, 8173, 8168, 1, 0, 0, 0, 8173, 8169, 1, 0, 0, 0, 8173, 8171, 1, 0, 0, 0, 8174, 1015, 1, 0, 0, 0, 8175, 8178, 3, 1354, 677, 0, 8176, 8178, 3, 1352, 676, 0, 8177, 8175, 1, 0, 0, 0, 8177, 8176, 1, 0, 0, 0, 8178, 1017, 1, 0, 0, 0, 8179, 8180, 7, 39, 0, 0, 8180, 1019, 1, 0, 0, 0, 8181, 8182, 7, 40, 0, 0, 8182, 1021, 1, 0, 0, 0, 8183, 8184, 5, 66, 0, 0, 8184, 8185, 5, 147, 0, 0, 8185, 8188, 3, 1024, 512, 0, 8186, 8188, 1, 0, 0, 0, 8187, 8183, 1, 0, 0, 0, 8187, 8186, 1, 0, 0, 0, 8188, 1023, 1, 0, 0, 0, 8189, 8194, 3, 1026, 513, 0, 8190, 8191, 5, 6, 0, 0, 8191, 8193, 3, 1026, 513, 0, 8192, 8190, 1, 0, 0, 0, 8193, 8196, 1, 0, 0, 0, 8194, 8192, 1, 0, 0, 0, 8194, 8195, 1, 0, 0, 0, 8195, 1025, 1, 0, 0, 0, 8196, 8194, 1, 0, 0, 0, 8197, 8203, 3, 1160, 580, 0, 8198, 8203, 3, 1028, 514, 0, 8199, 8203, 3, 1032, 516, 0, 8200, 8203, 3, 1030, 515, 0, 8201, 8203, 3, 1034, 517, 0, 8202, 8197, 1, 0, 0, 0, 8202, 8198, 1, 0, 0, 0, 8202, 8199, 1, 0, 0, 0, 8202, 8200, 1, 0, 0, 0, 8202, 8201, 1, 0, 0, 0, 8203, 1027, 1, 0, 0, 0, 8204, 8205, 5, 2, 0, 0, 8205, 8206, 5, 3, 0, 0, 8206, 1029, 1, 0, 0, 0, 8207, 8208, 5, 468, 0, 0, 8208, 8209, 5, 2, 0, 0, 8209, 8210, 3, 1278, 639, 0, 8210, 8211, 5, 3, 0, 0, 8211, 1031, 1, 0, 0, 0, 8212, 8213, 5, 469, 0, 0, 8213, 8214, 5, 2, 0, 0, 8214, 8215, 3, 1278, 639, 0, 8215, 8216, 5, 3, 0, 0, 8216, 1033, 1, 0, 0, 0, 8217, 8218, 5, 470, 0, 0, 8218, 8219, 5, 471, 0, 0, 8219, 8220, 5, 2, 0, 0, 8220, 8221, 3, 1024, 512, 0, 8221, 8222, 5, 3, 0, 0, 8222, 1035, 1, 0, 0, 0, 8223, 8224, 5, 67, 0, 0, 8224, 8227, 3, 1160, 580, 0, 8225, 8227, 1, 0, 0, 0, 8226, 8223, 1, 0, 0, 0, 8226, 8225, 1, 0, 0, 0, 8227, 1037, 1, 0, 0, 0, 8228, 8233, 3, 1042, 521, 0, 8229, 8230, 5, 62, 0, 0, 8230, 8231, 5, 293, 0, 0, 8231, 8233, 5, 81, 0, 0, 8232, 8228, 1, 0, 0, 0, 8232, 8229, 1, 0, 0, 0, 8233, 1039, 1, 0, 0, 0, 8234, 8237, 3, 1038, 519, 0, 8235, 8237, 1, 0, 0, 0, 8236, 8234, 1, 0, 0, 0, 8236, 8235, 1, 0, 0, 0, 8237, 1041, 1, 0, 0, 0, 8238, 8240, 3, 1044, 522, 0, 8239, 8238, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8239, 1, 0, 0, 0, 8241, 8242, 1, 0, 0, 0, 8242, 1043, 1, 0, 0, 0, 8243, 8244, 3, 1046, 523, 0, 8244, 8245, 3, 1048, 524, 0, 8245, 8246, 3, 938, 469, 0, 8246, 1045, 1, 0, 0, 0, 8247, 8257, 5, 62, 0, 0, 8248, 8249, 5, 262, 0, 0, 8249, 8251, 5, 236, 0, 0, 8250, 8248, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8252, 1, 0, 0, 0, 8252, 8258, 5, 362, 0, 0, 8253, 8255, 5, 236, 0, 0, 8254, 8253, 1, 0, 0, 0, 8254, 8255, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8258, 5, 327, 0, 0, 8257, 8250, 1, 0, 0, 0, 8257, 8254, 1, 0, 0, 0, 8258, 1047, 1, 0, 0, 0, 8259, 8260, 5, 268, 0, 0, 8260, 8263, 3, 1332, 666, 0, 8261, 8263, 1, 0, 0, 0, 8262, 8259, 1, 0, 0, 0, 8262, 8261, 1, 0, 0, 0, 8263, 1049, 1, 0, 0, 0, 8264, 8265, 5, 415, 0, 0, 8265, 8266, 5, 2, 0, 0, 8266, 8267, 3, 1278, 639, 0, 8267, 8275, 5, 3, 0, 0, 8268, 8269, 5, 6, 0, 0, 8269, 8270, 5, 2, 0, 0, 8270, 8271, 3, 1278, 639, 0, 8271, 8272, 5, 3, 0, 0, 8272, 8274, 1, 0, 0, 0, 8273, 8268, 1, 0, 0, 0, 8274, 8277, 1, 0, 0, 0, 8275, 8273, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 1051, 1, 0, 0, 0, 8277, 8275, 1, 0, 0, 0, 8278, 8279, 5, 64, 0, 0, 8279, 8282, 3, 1054, 527, 0, 8280, 8282, 1, 0, 0, 0, 8281, 8278, 1, 0, 0, 0, 8281, 8280, 1, 0, 0, 0, 8282, 1053, 1, 0, 0, 0, 8283, 8293, 3, 1056, 528, 0, 8284, 8289, 3, 1058, 529, 0, 8285, 8286, 5, 6, 0, 0, 8286, 8288, 3, 1058, 529, 0, 8287, 8285, 1, 0, 0, 0, 8288, 8291, 1, 0, 0, 0, 8289, 8287, 1, 0, 0, 0, 8289, 8290, 1, 0, 0, 0, 8290, 8293, 1, 0, 0, 0, 8291, 8289, 1, 0, 0, 0, 8292, 8283, 1, 0, 0, 0, 8292, 8284, 1, 0, 0, 0, 8293, 1055, 1, 0, 0, 0, 8294, 8297, 3, 1058, 529, 0, 8295, 8296, 5, 6, 0, 0, 8296, 8298, 3, 1058, 529, 0, 8297, 8295, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8297, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 1057, 1, 0, 0, 0, 8301, 8302, 3, 1072, 536, 0, 8302, 8304, 3, 1062, 531, 0, 8303, 8305, 3, 1078, 539, 0, 8304, 8303, 1, 0, 0, 0, 8304, 8305, 1, 0, 0, 0, 8305, 8351, 1, 0, 0, 0, 8306, 8307, 3, 1082, 541, 0, 8307, 8308, 3, 1066, 533, 0, 8308, 8351, 1, 0, 0, 0, 8309, 8310, 3, 1102, 551, 0, 8310, 8311, 3, 1062, 531, 0, 8311, 8351, 1, 0, 0, 0, 8312, 8313, 3, 960, 480, 0, 8313, 8314, 3, 1062, 531, 0, 8314, 8351, 1, 0, 0, 0, 8315, 8325, 5, 72, 0, 0, 8316, 8317, 3, 1102, 551, 0, 8317, 8318, 3, 1062, 531, 0, 8318, 8326, 1, 0, 0, 0, 8319, 8320, 3, 1082, 541, 0, 8320, 8321, 3, 1066, 533, 0, 8321, 8326, 1, 0, 0, 0, 8322, 8323, 3, 960, 480, 0, 8323, 8324, 3, 1062, 531, 0, 8324, 8326, 1, 0, 0, 0, 8325, 8316, 1, 0, 0, 0, 8325, 8319, 1, 0, 0, 0, 8325, 8322, 1, 0, 0, 0, 8326, 8351, 1, 0, 0, 0, 8327, 8328, 5, 2, 0, 0, 8328, 8345, 3, 1058, 529, 0, 8329, 8330, 5, 110, 0, 0, 8330, 8331, 5, 118, 0, 0, 8331, 8346, 3, 1058, 529, 0, 8332, 8334, 5, 121, 0, 0, 8333, 8335, 3, 1068, 534, 0, 8334, 8333, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 8337, 5, 118, 0, 0, 8337, 8346, 3, 1058, 529, 0, 8338, 8340, 3, 1068, 534, 0, 8339, 8338, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8341, 1, 0, 0, 0, 8341, 8342, 5, 118, 0, 0, 8342, 8343, 3, 1058, 529, 0, 8343, 8344, 3, 1070, 535, 0, 8344, 8346, 1, 0, 0, 0, 8345, 8329, 1, 0, 0, 0, 8345, 8332, 1, 0, 0, 0, 8345, 8339, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8348, 5, 3, 0, 0, 8348, 8349, 3, 1062, 531, 0, 8349, 8351, 1, 0, 0, 0, 8350, 8301, 1, 0, 0, 0, 8350, 8306, 1, 0, 0, 0, 8350, 8309, 1, 0, 0, 0, 8350, 8312, 1, 0, 0, 0, 8350, 8315, 1, 0, 0, 0, 8350, 8327, 1, 0, 0, 0, 8351, 8370, 1, 0, 0, 0, 8352, 8353, 5, 110, 0, 0, 8353, 8354, 5, 118, 0, 0, 8354, 8369, 3, 1058, 529, 0, 8355, 8357, 5, 121, 0, 0, 8356, 8358, 3, 1068, 534, 0, 8357, 8356, 1, 0, 0, 0, 8357, 8358, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8360, 5, 118, 0, 0, 8360, 8369, 3, 1058, 529, 0, 8361, 8363, 3, 1068, 534, 0, 8362, 8361, 1, 0, 0, 0, 8362, 8363, 1, 0, 0, 0, 8363, 8364, 1, 0, 0, 0, 8364, 8365, 5, 118, 0, 0, 8365, 8366, 3, 1058, 529, 0, 8366, 8367, 3, 1070, 535, 0, 8367, 8369, 1, 0, 0, 0, 8368, 8352, 1, 0, 0, 0, 8368, 8355, 1, 0, 0, 0, 8368, 8362, 1, 0, 0, 0, 8369, 8372, 1, 0, 0, 0, 8370, 8368, 1, 0, 0, 0, 8370, 8371, 1, 0, 0, 0, 8371, 1059, 1, 0, 0, 0, 8372, 8370, 1, 0, 0, 0, 8373, 8375, 5, 36, 0, 0, 8374, 8373, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 8381, 3, 1370, 685, 0, 8377, 8378, 5, 2, 0, 0, 8378, 8379, 3, 1336, 668, 0, 8379, 8380, 5, 3, 0, 0, 8380, 8382, 1, 0, 0, 0, 8381, 8377, 1, 0, 0, 0, 8381, 8382, 1, 0, 0, 0, 8382, 1061, 1, 0, 0, 0, 8383, 8386, 3, 1064, 532, 0, 8384, 8386, 1, 0, 0, 0, 8385, 8383, 1, 0, 0, 0, 8385, 8384, 1, 0, 0, 0, 8386, 1063, 1, 0, 0, 0, 8387, 8389, 5, 36, 0, 0, 8388, 8387, 1, 0, 0, 0, 8388, 8389, 1, 0, 0, 0, 8389, 8390, 1, 0, 0, 0, 8390, 8395, 3, 1372, 686, 0, 8391, 8392, 5, 2, 0, 0, 8392, 8393, 3, 1336, 668, 0, 8393, 8394, 5, 3, 0, 0, 8394, 8396, 1, 0, 0, 0, 8395, 8391, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 1065, 1, 0, 0, 0, 8397, 8411, 3, 1060, 530, 0, 8398, 8400, 5, 36, 0, 0, 8399, 8401, 3, 1370, 685, 0, 8400, 8399, 1, 0, 0, 0, 8400, 8401, 1, 0, 0, 0, 8401, 8404, 1, 0, 0, 0, 8402, 8404, 3, 1370, 685, 0, 8403, 8398, 1, 0, 0, 0, 8403, 8402, 1, 0, 0, 0, 8404, 8405, 1, 0, 0, 0, 8405, 8406, 5, 2, 0, 0, 8406, 8407, 3, 1098, 549, 0, 8407, 8408, 5, 3, 0, 0, 8408, 8411, 1, 0, 0, 0, 8409, 8411, 1, 0, 0, 0, 8410, 8397, 1, 0, 0, 0, 8410, 8403, 1, 0, 0, 0, 8410, 8409, 1, 0, 0, 0, 8411, 1067, 1, 0, 0, 0, 8412, 8414, 7, 41, 0, 0, 8413, 8415, 5, 123, 0, 0, 8414, 8413, 1, 0, 0, 0, 8414, 8415, 1, 0, 0, 0, 8415, 1069, 1, 0, 0, 0, 8416, 8417, 5, 100, 0, 0, 8417, 8418, 5, 2, 0, 0, 8418, 8419, 3, 1336, 668, 0, 8419, 8420, 5, 3, 0, 0, 8420, 8424, 1, 0, 0, 0, 8421, 8422, 5, 80, 0, 0, 8422, 8424, 3, 1160, 580, 0, 8423, 8416, 1, 0, 0, 0, 8423, 8421, 1, 0, 0, 0, 8424, 1071, 1, 0, 0, 0, 8425, 8427, 3, 1334, 667, 0, 8426, 8428, 5, 9, 0, 0, 8427, 8426, 1, 0, 0, 0, 8427, 8428, 1, 0, 0, 0, 8428, 8438, 1, 0, 0, 0, 8429, 8435, 5, 81, 0, 0, 8430, 8436, 3, 1334, 667, 0, 8431, 8432, 5, 2, 0, 0, 8432, 8433, 3, 1334, 667, 0, 8433, 8434, 5, 3, 0, 0, 8434, 8436, 1, 0, 0, 0, 8435, 8430, 1, 0, 0, 0, 8435, 8431, 1, 0, 0, 0, 8436, 8438, 1, 0, 0, 0, 8437, 8425, 1, 0, 0, 0, 8437, 8429, 1, 0, 0, 0, 8438, 1073, 1, 0, 0, 0, 8439, 8444, 3, 1072, 536, 0, 8440, 8441, 5, 6, 0, 0, 8441, 8443, 3, 1072, 536, 0, 8442, 8440, 1, 0, 0, 0, 8443, 8446, 1, 0, 0, 0, 8444, 8442, 1, 0, 0, 0, 8444, 8445, 1, 0, 0, 0, 8445, 1075, 1, 0, 0, 0, 8446, 8444, 1, 0, 0, 0, 8447, 8452, 3, 1072, 536, 0, 8448, 8450, 5, 36, 0, 0, 8449, 8448, 1, 0, 0, 0, 8449, 8450, 1, 0, 0, 0, 8450, 8451, 1, 0, 0, 0, 8451, 8453, 3, 1370, 685, 0, 8452, 8449, 1, 0, 0, 0, 8452, 8453, 1, 0, 0, 0, 8453, 1077, 1, 0, 0, 0, 8454, 8455, 5, 472, 0, 0, 8455, 8456, 3, 1344, 672, 0, 8456, 8457, 5, 2, 0, 0, 8457, 8458, 3, 1278, 639, 0, 8458, 8459, 5, 3, 0, 0, 8459, 8460, 3, 1080, 540, 0, 8460, 1079, 1, 0, 0, 0, 8461, 8462, 5, 303, 0, 0, 8462, 8463, 5, 2, 0, 0, 8463, 8464, 3, 1160, 580, 0, 8464, 8465, 5, 3, 0, 0, 8465, 8468, 1, 0, 0, 0, 8466, 8468, 1, 0, 0, 0, 8467, 8461, 1, 0, 0, 0, 8467, 8466, 1, 0, 0, 0, 8468, 1081, 1, 0, 0, 0, 8469, 8470, 3, 1212, 606, 0, 8470, 8471, 3, 1090, 545, 0, 8471, 8480, 1, 0, 0, 0, 8472, 8473, 5, 313, 0, 0, 8473, 8474, 5, 64, 0, 0, 8474, 8475, 5, 2, 0, 0, 8475, 8476, 3, 1086, 543, 0, 8476, 8477, 5, 3, 0, 0, 8477, 8478, 3, 1090, 545, 0, 8478, 8480, 1, 0, 0, 0, 8479, 8469, 1, 0, 0, 0, 8479, 8472, 1, 0, 0, 0, 8480, 1083, 1, 0, 0, 0, 8481, 8482, 3, 1212, 606, 0, 8482, 8483, 3, 1088, 544, 0, 8483, 1085, 1, 0, 0, 0, 8484, 8489, 3, 1084, 542, 0, 8485, 8486, 5, 6, 0, 0, 8486, 8488, 3, 1084, 542, 0, 8487, 8485, 1, 0, 0, 0, 8488, 8491, 1, 0, 0, 0, 8489, 8487, 1, 0, 0, 0, 8489, 8490, 1, 0, 0, 0, 8490, 1087, 1, 0, 0, 0, 8491, 8489, 1, 0, 0, 0, 8492, 8493, 5, 36, 0, 0, 8493, 8494, 5, 2, 0, 0, 8494, 8495, 3, 1098, 549, 0, 8495, 8496, 5, 3, 0, 0, 8496, 8499, 1, 0, 0, 0, 8497, 8499, 1, 0, 0, 0, 8498, 8492, 1, 0, 0, 0, 8498, 8497, 1, 0, 0, 0, 8499, 1089, 1, 0, 0, 0, 8500, 8501, 5, 105, 0, 0, 8501, 8504, 5, 473, 0, 0, 8502, 8504, 1, 0, 0, 0, 8503, 8500, 1, 0, 0, 0, 8503, 8502, 1, 0, 0, 0, 8504, 1091, 1, 0, 0, 0, 8505, 8506, 5, 103, 0, 0, 8506, 8509, 3, 1160, 580, 0, 8507, 8509, 1, 0, 0, 0, 8508, 8505, 1, 0, 0, 0, 8508, 8507, 1, 0, 0, 0, 8509, 1093, 1, 0, 0, 0, 8510, 8515, 5, 103, 0, 0, 8511, 8512, 5, 434, 0, 0, 8512, 8513, 5, 268, 0, 0, 8513, 8516, 3, 952, 476, 0, 8514, 8516, 3, 1160, 580, 0, 8515, 8511, 1, 0, 0, 0, 8515, 8514, 1, 0, 0, 0, 8516, 8519, 1, 0, 0, 0, 8517, 8519, 1, 0, 0, 0, 8518, 8510, 1, 0, 0, 0, 8518, 8517, 1, 0, 0, 0, 8519, 1095, 1, 0, 0, 0, 8520, 8523, 3, 1098, 549, 0, 8521, 8523, 1, 0, 0, 0, 8522, 8520, 1, 0, 0, 0, 8522, 8521, 1, 0, 0, 0, 8523, 1097, 1, 0, 0, 0, 8524, 8529, 3, 1100, 550, 0, 8525, 8526, 5, 6, 0, 0, 8526, 8528, 3, 1100, 550, 0, 8527, 8525, 1, 0, 0, 0, 8528, 8531, 1, 0, 0, 0, 8529, 8527, 1, 0, 0, 0, 8529, 8530, 1, 0, 0, 0, 8530, 1099, 1, 0, 0, 0, 8531, 8529, 1, 0, 0, 0, 8532, 8533, 3, 1370, 685, 0, 8533, 8534, 3, 1116, 558, 0, 8534, 8535, 3, 108, 54, 0, 8535, 1101, 1, 0, 0, 0, 8536, 8537, 5, 474, 0, 0, 8537, 8553, 5, 2, 0, 0, 8538, 8539, 3, 1204, 602, 0, 8539, 8540, 3, 1230, 615, 0, 8540, 8541, 5, 475, 0, 0, 8541, 8542, 3, 1104, 552, 0, 8542, 8554, 1, 0, 0, 0, 8543, 8544, 5, 476, 0, 0, 8544, 8545, 5, 2, 0, 0, 8545, 8546, 3, 1112, 556, 0, 8546, 8547, 5, 3, 0, 0, 8547, 8548, 5, 6, 0, 0, 8548, 8549, 3, 1204, 602, 0, 8549, 8550, 3, 1230, 615, 0, 8550, 8551, 5, 475, 0, 0, 8551, 8552, 3, 1104, 552, 0, 8552, 8554, 1, 0, 0, 0, 8553, 8538, 1, 0, 0, 0, 8553, 8543, 1, 0, 0, 0, 8554, 8555, 1, 0, 0, 0, 8555, 8556, 5, 3, 0, 0, 8556, 1103, 1, 0, 0, 0, 8557, 8562, 3, 1106, 553, 0, 8558, 8559, 5, 6, 0, 0, 8559, 8561, 3, 1106, 553, 0, 8560, 8558, 1, 0, 0, 0, 8561, 8564, 1, 0, 0, 0, 8562, 8560, 1, 0, 0, 0, 8562, 8563, 1, 0, 0, 0, 8563, 1105, 1, 0, 0, 0, 8564, 8562, 1, 0, 0, 0, 8565, 8572, 3, 1370, 685, 0, 8566, 8568, 3, 1116, 558, 0, 8567, 8569, 3, 1108, 554, 0, 8568, 8567, 1, 0, 0, 0, 8568, 8569, 1, 0, 0, 0, 8569, 8573, 1, 0, 0, 0, 8570, 8571, 5, 62, 0, 0, 8571, 8573, 5, 473, 0, 0, 8572, 8566, 1, 0, 0, 0, 8572, 8570, 1, 0, 0, 0, 8573, 1107, 1, 0, 0, 0, 8574, 8576, 3, 1110, 555, 0, 8575, 8574, 1, 0, 0, 0, 8576, 8577, 1, 0, 0, 0, 8577, 8575, 1, 0, 0, 0, 8577, 8578, 1, 0, 0, 0, 8578, 1109, 1, 0, 0, 0, 8579, 8580, 5, 53, 0, 0, 8580, 8588, 3, 1160, 580, 0, 8581, 8582, 3, 1380, 690, 0, 8582, 8583, 3, 1160, 580, 0, 8583, 8588, 1, 0, 0, 0, 8584, 8585, 5, 77, 0, 0, 8585, 8588, 5, 78, 0, 0, 8586, 8588, 5, 78, 0, 0, 8587, 8579, 1, 0, 0, 0, 8587, 8581, 1, 0, 0, 0, 8587, 8584, 1, 0, 0, 0, 8587, 8586, 1, 0, 0, 0, 8588, 1111, 1, 0, 0, 0, 8589, 8594, 3, 1114, 557, 0, 8590, 8591, 5, 6, 0, 0, 8591, 8593, 3, 1114, 557, 0, 8592, 8590, 1, 0, 0, 0, 8593, 8596, 1, 0, 0, 0, 8594, 8592, 1, 0, 0, 0, 8594, 8595, 1, 0, 0, 0, 8595, 1113, 1, 0, 0, 0, 8596, 8594, 1, 0, 0, 0, 8597, 8598, 3, 1202, 601, 0, 8598, 8599, 5, 36, 0, 0, 8599, 8600, 3, 1378, 689, 0, 8600, 8604, 1, 0, 0, 0, 8601, 8602, 5, 53, 0, 0, 8602, 8604, 3, 1202, 601, 0, 8603, 8597, 1, 0, 0, 0, 8603, 8601, 1, 0, 0, 0, 8604, 1115, 1, 0, 0, 0, 8605, 8607, 5, 408, 0, 0, 8606, 8605, 1, 0, 0, 0, 8606, 8607, 1, 0, 0, 0, 8607, 8608, 1, 0, 0, 0, 8608, 8617, 3, 1120, 560, 0, 8609, 8618, 3, 1118, 559, 0, 8610, 8615, 5, 35, 0, 0, 8611, 8612, 5, 4, 0, 0, 8612, 8613, 3, 1354, 677, 0, 8613, 8614, 5, 5, 0, 0, 8614, 8616, 1, 0, 0, 0, 8615, 8611, 1, 0, 0, 0, 8615, 8616, 1, 0, 0, 0, 8616, 8618, 1, 0, 0, 0, 8617, 8609, 1, 0, 0, 0, 8617, 8610, 1, 0, 0, 0, 8618, 8624, 1, 0, 0, 0, 8619, 8620, 3, 1334, 667, 0, 8620, 8621, 5, 27, 0, 0, 8621, 8622, 7, 42, 0, 0, 8622, 8624, 1, 0, 0, 0, 8623, 8606, 1, 0, 0, 0, 8623, 8619, 1, 0, 0, 0, 8624, 1117, 1, 0, 0, 0, 8625, 8627, 5, 4, 0, 0, 8626, 8628, 3, 1354, 677, 0, 8627, 8626, 1, 0, 0, 0, 8627, 8628, 1, 0, 0, 0, 8628, 8629, 1, 0, 0, 0, 8629, 8631, 5, 5, 0, 0, 8630, 8625, 1, 0, 0, 0, 8631, 8634, 1, 0, 0, 0, 8632, 8630, 1, 0, 0, 0, 8632, 8633, 1, 0, 0, 0, 8633, 1119, 1, 0, 0, 0, 8634, 8632, 1, 0, 0, 0, 8635, 8649, 3, 1124, 562, 0, 8636, 8649, 3, 1128, 564, 0, 8637, 8649, 3, 1132, 566, 0, 8638, 8649, 3, 1140, 570, 0, 8639, 8649, 3, 1148, 574, 0, 8640, 8646, 3, 1150, 575, 0, 8641, 8647, 3, 1154, 577, 0, 8642, 8643, 5, 2, 0, 0, 8643, 8644, 3, 1354, 677, 0, 8644, 8645, 5, 3, 0, 0, 8645, 8647, 1, 0, 0, 0, 8646, 8641, 1, 0, 0, 0, 8646, 8642, 1, 0, 0, 0, 8647, 8649, 1, 0, 0, 0, 8648, 8635, 1, 0, 0, 0, 8648, 8636, 1, 0, 0, 0, 8648, 8637, 1, 0, 0, 0, 8648, 8638, 1, 0, 0, 0, 8648, 8639, 1, 0, 0, 0, 8648, 8640, 1, 0, 0, 0, 8649, 1121, 1, 0, 0, 0, 8650, 8655, 3, 1128, 564, 0, 8651, 8655, 3, 1134, 567, 0, 8652, 8655, 3, 1142, 571, 0, 8653, 8655, 3, 1148, 574, 0, 8654, 8650, 1, 0, 0, 0, 8654, 8651, 1, 0, 0, 0, 8654, 8652, 1, 0, 0, 0, 8654, 8653, 1, 0, 0, 0, 8655, 1123, 1, 0, 0, 0, 8656, 8661, 3, 1392, 696, 0, 8657, 8661, 3, 1374, 687, 0, 8658, 8661, 5, 119, 0, 0, 8659, 8661, 5, 126, 0, 0, 8660, 8656, 1, 0, 0, 0, 8660, 8657, 1, 0, 0, 0, 8660, 8658, 1, 0, 0, 0, 8660, 8659, 1, 0, 0, 0, 8661, 8663, 1, 0, 0, 0, 8662, 8664, 3, 524, 262, 0, 8663, 8662, 1, 0, 0, 0, 8663, 8664, 1, 0, 0, 0, 8664, 8665, 1, 0, 0, 0, 8665, 8666, 3, 1126, 563, 0, 8666, 1125, 1, 0, 0, 0, 8667, 8668, 5, 2, 0, 0, 8668, 8669, 3, 1278, 639, 0, 8669, 8670, 5, 3, 0, 0, 8670, 8673, 1, 0, 0, 0, 8671, 8673, 1, 0, 0, 0, 8672, 8667, 1, 0, 0, 0, 8672, 8671, 1, 0, 0, 0, 8673, 1127, 1, 0, 0, 0, 8674, 8691, 5, 394, 0, 0, 8675, 8691, 5, 395, 0, 0, 8676, 8691, 5, 409, 0, 0, 8677, 8691, 5, 381, 0, 0, 8678, 8691, 5, 406, 0, 0, 8679, 8680, 5, 391, 0, 0, 8680, 8691, 3, 1130, 565, 0, 8681, 8682, 5, 190, 0, 0, 8682, 8691, 5, 405, 0, 0, 8683, 8684, 5, 388, 0, 0, 8684, 8691, 3, 1126, 563, 0, 8685, 8686, 5, 387, 0, 0, 8686, 8691, 3, 1126, 563, 0, 8687, 8688, 5, 402, 0, 0, 8688, 8691, 3, 1126, 563, 0, 8689, 8691, 5, 383, 0, 0, 8690, 8674, 1, 0, 0, 0, 8690, 8675, 1, 0, 0, 0, 8690, 8676, 1, 0, 0, 0, 8690, 8677, 1, 0, 0, 0, 8690, 8678, 1, 0, 0, 0, 8690, 8679, 1, 0, 0, 0, 8690, 8681, 1, 0, 0, 0, 8690, 8683, 1, 0, 0, 0, 8690, 8685, 1, 0, 0, 0, 8690, 8687, 1, 0, 0, 0, 8690, 8689, 1, 0, 0, 0, 8691, 1129, 1, 0, 0, 0, 8692, 8693, 5, 2, 0, 0, 8693, 8694, 3, 1354, 677, 0, 8694, 8695, 5, 3, 0, 0, 8695, 8698, 1, 0, 0, 0, 8696, 8698, 1, 0, 0, 0, 8697, 8692, 1, 0, 0, 0, 8697, 8696, 1, 0, 0, 0, 8698, 1131, 1, 0, 0, 0, 8699, 8702, 3, 1136, 568, 0, 8700, 8702, 3, 1138, 569, 0, 8701, 8699, 1, 0, 0, 0, 8701, 8700, 1, 0, 0, 0, 8702, 1133, 1, 0, 0, 0, 8703, 8706, 3, 1136, 568, 0, 8704, 8706, 3, 1138, 569, 0, 8705, 8703, 1, 0, 0, 0, 8705, 8704, 1, 0, 0, 0, 8706, 1135, 1, 0, 0, 0, 8707, 8708, 5, 382, 0, 0, 8708, 8709, 3, 1146, 573, 0, 8709, 8710, 5, 2, 0, 0, 8710, 8711, 3, 1278, 639, 0, 8711, 8712, 5, 3, 0, 0, 8712, 1137, 1, 0, 0, 0, 8713, 8714, 5, 382, 0, 0, 8714, 8715, 3, 1146, 573, 0, 8715, 1139, 1, 0, 0, 0, 8716, 8721, 3, 1144, 572, 0, 8717, 8718, 5, 2, 0, 0, 8718, 8719, 3, 1354, 677, 0, 8719, 8720, 5, 3, 0, 0, 8720, 8722, 1, 0, 0, 0, 8721, 8717, 1, 0, 0, 0, 8721, 8722, 1, 0, 0, 0, 8722, 1141, 1, 0, 0, 0, 8723, 8728, 3, 1144, 572, 0, 8724, 8725, 5, 2, 0, 0, 8725, 8726, 3, 1354, 677, 0, 8726, 8727, 5, 3, 0, 0, 8727, 8729, 1, 0, 0, 0, 8728, 8724, 1, 0, 0, 0, 8728, 8729, 1, 0, 0, 0, 8729, 1143, 1, 0, 0, 0, 8730, 8731, 7, 43, 0, 0, 8731, 8737, 3, 1146, 573, 0, 8732, 8737, 5, 416, 0, 0, 8733, 8734, 5, 398, 0, 0, 8734, 8735, 7, 44, 0, 0, 8735, 8737, 3, 1146, 573, 0, 8736, 8730, 1, 0, 0, 0, 8736, 8732, 1, 0, 0, 0, 8736, 8733, 1, 0, 0, 0, 8737, 1145, 1, 0, 0, 0, 8738, 8741, 5, 367, 0, 0, 8739, 8741, 1, 0, 0, 0, 8740, 8738, 1, 0, 0, 0, 8740, 8739, 1, 0, 0, 0, 8741, 1147, 1, 0, 0, 0, 8742, 8747, 7, 45, 0, 0, 8743, 8744, 5, 2, 0, 0, 8744, 8745, 3, 1354, 677, 0, 8745, 8746, 5, 3, 0, 0, 8746, 8748, 1, 0, 0, 0, 8747, 8743, 1, 0, 0, 0, 8747, 8748, 1, 0, 0, 0, 8748, 8749, 1, 0, 0, 0, 8749, 8750, 3, 1152, 576, 0, 8750, 1149, 1, 0, 0, 0, 8751, 8752, 5, 396, 0, 0, 8752, 1151, 1, 0, 0, 0, 8753, 8754, 5, 105, 0, 0, 8754, 8755, 5, 411, 0, 0, 8755, 8761, 5, 379, 0, 0, 8756, 8757, 5, 372, 0, 0, 8757, 8758, 5, 411, 0, 0, 8758, 8761, 5, 379, 0, 0, 8759, 8761, 1, 0, 0, 0, 8760, 8753, 1, 0, 0, 0, 8760, 8756, 1, 0, 0, 0, 8760, 8759, 1, 0, 0, 0, 8761, 1153, 1, 0, 0, 0, 8762, 8789, 5, 377, 0, 0, 8763, 8789, 5, 257, 0, 0, 8764, 8789, 5, 176, 0, 0, 8765, 8789, 5, 218, 0, 0, 8766, 8789, 5, 254, 0, 0, 8767, 8789, 3, 1156, 578, 0, 8768, 8769, 5, 377, 0, 0, 8769, 8770, 5, 94, 0, 0, 8770, 8789, 5, 257, 0, 0, 8771, 8772, 5, 176, 0, 0, 8772, 8776, 5, 94, 0, 0, 8773, 8777, 5, 218, 0, 0, 8774, 8777, 5, 254, 0, 0, 8775, 8777, 3, 1156, 578, 0, 8776, 8773, 1, 0, 0, 0, 8776, 8774, 1, 0, 0, 0, 8776, 8775, 1, 0, 0, 0, 8777, 8789, 1, 0, 0, 0, 8778, 8779, 5, 218, 0, 0, 8779, 8782, 5, 94, 0, 0, 8780, 8783, 5, 254, 0, 0, 8781, 8783, 3, 1156, 578, 0, 8782, 8780, 1, 0, 0, 0, 8782, 8781, 1, 0, 0, 0, 8783, 8789, 1, 0, 0, 0, 8784, 8785, 5, 254, 0, 0, 8785, 8786, 5, 94, 0, 0, 8786, 8789, 3, 1156, 578, 0, 8787, 8789, 1, 0, 0, 0, 8788, 8762, 1, 0, 0, 0, 8788, 8763, 1, 0, 0, 0, 8788, 8764, 1, 0, 0, 0, 8788, 8765, 1, 0, 0, 0, 8788, 8766, 1, 0, 0, 0, 8788, 8767, 1, 0, 0, 0, 8788, 8768, 1, 0, 0, 0, 8788, 8771, 1, 0, 0, 0, 8788, 8778, 1, 0, 0, 0, 8788, 8784, 1, 0, 0, 0, 8788, 8787, 1, 0, 0, 0, 8789, 1155, 1, 0, 0, 0, 8790, 8795, 5, 319, 0, 0, 8791, 8792, 5, 2, 0, 0, 8792, 8793, 3, 1354, 677, 0, 8793, 8794, 5, 3, 0, 0, 8794, 8796, 1, 0, 0, 0, 8795, 8791, 1, 0, 0, 0, 8795, 8796, 1, 0, 0, 0, 8796, 1157, 1, 0, 0, 0, 8797, 8798, 5, 197, 0, 0, 8798, 8801, 3, 1160, 580, 0, 8799, 8801, 1, 0, 0, 0, 8800, 8797, 1, 0, 0, 0, 8800, 8799, 1, 0, 0, 0, 8801, 1159, 1, 0, 0, 0, 8802, 8803, 3, 1162, 581, 0, 8803, 1161, 1, 0, 0, 0, 8804, 8806, 3, 1164, 582, 0, 8805, 8807, 3, 1272, 636, 0, 8806, 8805, 1, 0, 0, 0, 8806, 8807, 1, 0, 0, 0, 8807, 1163, 1, 0, 0, 0, 8808, 8813, 3, 1166, 583, 0, 8809, 8810, 7, 46, 0, 0, 8810, 8812, 3, 1166, 583, 0, 8811, 8809, 1, 0, 0, 0, 8812, 8815, 1, 0, 0, 0, 8813, 8811, 1, 0, 0, 0, 8813, 8814, 1, 0, 0, 0, 8814, 1165, 1, 0, 0, 0, 8815, 8813, 1, 0, 0, 0, 8816, 8821, 3, 1168, 584, 0, 8817, 8818, 5, 82, 0, 0, 8818, 8820, 3, 1168, 584, 0, 8819, 8817, 1, 0, 0, 0, 8820, 8823, 1, 0, 0, 0, 8821, 8819, 1, 0, 0, 0, 8821, 8822, 1, 0, 0, 0, 8822, 1167, 1, 0, 0, 0, 8823, 8821, 1, 0, 0, 0, 8824, 8829, 3, 1170, 585, 0, 8825, 8826, 5, 33, 0, 0, 8826, 8828, 3, 1170, 585, 0, 8827, 8825, 1, 0, 0, 0, 8828, 8831, 1, 0, 0, 0, 8829, 8827, 1, 0, 0, 0, 8829, 8830, 1, 0, 0, 0, 8830, 1169, 1, 0, 0, 0, 8831, 8829, 1, 0, 0, 0, 8832, 8844, 3, 1172, 586, 0, 8833, 8835, 5, 77, 0, 0, 8834, 8833, 1, 0, 0, 0, 8834, 8835, 1, 0, 0, 0, 8835, 8836, 1, 0, 0, 0, 8836, 8838, 5, 380, 0, 0, 8837, 8839, 5, 91, 0, 0, 8838, 8837, 1, 0, 0, 0, 8838, 8839, 1, 0, 0, 0, 8839, 8840, 1, 0, 0, 0, 8840, 8841, 3, 1172, 586, 0, 8841, 8842, 5, 33, 0, 0, 8842, 8843, 3, 1172, 586, 0, 8843, 8845, 1, 0, 0, 0, 8844, 8834, 1, 0, 0, 0, 8844, 8845, 1, 0, 0, 0, 8845, 1171, 1, 0, 0, 0, 8846, 8852, 3, 1174, 587, 0, 8847, 8849, 5, 77, 0, 0, 8848, 8847, 1, 0, 0, 0, 8848, 8849, 1, 0, 0, 0, 8849, 8850, 1, 0, 0, 0, 8850, 8851, 5, 68, 0, 0, 8851, 8853, 3, 1304, 652, 0, 8852, 8848, 1, 0, 0, 0, 8852, 8853, 1, 0, 0, 0, 8853, 1173, 1, 0, 0, 0, 8854, 8856, 5, 77, 0, 0, 8855, 8854, 1, 0, 0, 0, 8855, 8856, 1, 0, 0, 0, 8856, 8857, 1, 0, 0, 0, 8857, 8858, 3, 1176, 588, 0, 8858, 1175, 1, 0, 0, 0, 8859, 8861, 3, 1178, 589, 0, 8860, 8862, 7, 47, 0, 0, 8861, 8860, 1, 0, 0, 0, 8861, 8862, 1, 0, 0, 0, 8862, 1177, 1, 0, 0, 0, 8863, 8887, 3, 1180, 590, 0, 8864, 8866, 5, 116, 0, 0, 8865, 8867, 5, 77, 0, 0, 8866, 8865, 1, 0, 0, 0, 8866, 8867, 1, 0, 0, 0, 8867, 8885, 1, 0, 0, 0, 8868, 8886, 5, 78, 0, 0, 8869, 8886, 5, 96, 0, 0, 8870, 8886, 5, 60, 0, 0, 8871, 8886, 5, 358, 0, 0, 8872, 8873, 5, 56, 0, 0, 8873, 8874, 5, 64, 0, 0, 8874, 8886, 3, 1160, 580, 0, 8875, 8876, 5, 268, 0, 0, 8876, 8877, 5, 2, 0, 0, 8877, 8878, 3, 1284, 642, 0, 8878, 8879, 5, 3, 0, 0, 8879, 8886, 1, 0, 0, 0, 8880, 8886, 5, 188, 0, 0, 8881, 8883, 3, 1294, 647, 0, 8882, 8881, 1, 0, 0, 0, 8882, 8883, 1, 0, 0, 0, 8883, 8884, 1, 0, 0, 0, 8884, 8886, 5, 478, 0, 0, 8885, 8868, 1, 0, 0, 0, 8885, 8869, 1, 0, 0, 0, 8885, 8870, 1, 0, 0, 0, 8885, 8871, 1, 0, 0, 0, 8885, 8872, 1, 0, 0, 0, 8885, 8875, 1, 0, 0, 0, 8885, 8880, 1, 0, 0, 0, 8885, 8882, 1, 0, 0, 0, 8886, 8888, 1, 0, 0, 0, 8887, 8864, 1, 0, 0, 0, 8887, 8888, 1, 0, 0, 0, 8888, 1179, 1, 0, 0, 0, 8889, 8901, 3, 1182, 591, 0, 8890, 8891, 7, 48, 0, 0, 8891, 8902, 3, 1182, 591, 0, 8892, 8893, 3, 1276, 638, 0, 8893, 8899, 3, 1266, 633, 0, 8894, 8900, 3, 960, 480, 0, 8895, 8896, 5, 2, 0, 0, 8896, 8897, 3, 1160, 580, 0, 8897, 8898, 5, 3, 0, 0, 8898, 8900, 1, 0, 0, 0, 8899, 8894, 1, 0, 0, 0, 8899, 8895, 1, 0, 0, 0, 8900, 8902, 1, 0, 0, 0, 8901, 8890, 1, 0, 0, 0, 8901, 8892, 1, 0, 0, 0, 8901, 8902, 1, 0, 0, 0, 8902, 1181, 1, 0, 0, 0, 8903, 8916, 3, 1184, 592, 0, 8904, 8906, 5, 77, 0, 0, 8905, 8904, 1, 0, 0, 0, 8905, 8906, 1, 0, 0, 0, 8906, 8911, 1, 0, 0, 0, 8907, 8912, 5, 120, 0, 0, 8908, 8912, 5, 114, 0, 0, 8909, 8910, 5, 127, 0, 0, 8910, 8912, 5, 94, 0, 0, 8911, 8907, 1, 0, 0, 0, 8911, 8908, 1, 0, 0, 0, 8911, 8909, 1, 0, 0, 0, 8912, 8913, 1, 0, 0, 0, 8913, 8914, 3, 1184, 592, 0, 8914, 8915, 3, 1158, 579, 0, 8915, 8917, 1, 0, 0, 0, 8916, 8905, 1, 0, 0, 0, 8916, 8917, 1, 0, 0, 0, 8917, 1183, 1, 0, 0, 0, 8918, 8924, 3, 1186, 593, 0, 8919, 8920, 3, 1272, 636, 0, 8920, 8921, 3, 1186, 593, 0, 8921, 8923, 1, 0, 0, 0, 8922, 8919, 1, 0, 0, 0, 8923, 8926, 1, 0, 0, 0, 8924, 8922, 1, 0, 0, 0, 8924, 8925, 1, 0, 0, 0, 8925, 1185, 1, 0, 0, 0, 8926, 8924, 1, 0, 0, 0, 8927, 8929, 3, 1272, 636, 0, 8928, 8927, 1, 0, 0, 0, 8928, 8929, 1, 0, 0, 0, 8929, 8930, 1, 0, 0, 0, 8930, 8931, 3, 1188, 594, 0, 8931, 1187, 1, 0, 0, 0, 8932, 8937, 3, 1190, 595, 0, 8933, 8934, 7, 49, 0, 0, 8934, 8936, 3, 1190, 595, 0, 8935, 8933, 1, 0, 0, 0, 8936, 8939, 1, 0, 0, 0, 8937, 8935, 1, 0, 0, 0, 8937, 8938, 1, 0, 0, 0, 8938, 1189, 1, 0, 0, 0, 8939, 8937, 1, 0, 0, 0, 8940, 8945, 3, 1192, 596, 0, 8941, 8942, 7, 50, 0, 0, 8942, 8944, 3, 1192, 596, 0, 8943, 8941, 1, 0, 0, 0, 8944, 8947, 1, 0, 0, 0, 8945, 8943, 1, 0, 0, 0, 8945, 8946, 1, 0, 0, 0, 8946, 1191, 1, 0, 0, 0, 8947, 8945, 1, 0, 0, 0, 8948, 8951, 3, 1194, 597, 0, 8949, 8950, 5, 15, 0, 0, 8950, 8952, 3, 1160, 580, 0, 8951, 8949, 1, 0, 0, 0, 8951, 8952, 1, 0, 0, 0, 8952, 1193, 1, 0, 0, 0, 8953, 8955, 7, 49, 0, 0, 8954, 8953, 1, 0, 0, 0, 8954, 8955, 1, 0, 0, 0, 8955, 8956, 1, 0, 0, 0, 8956, 8957, 3, 1196, 598, 0, 8957, 1195, 1, 0, 0, 0, 8958, 8963, 3, 1198, 599, 0, 8959, 8960, 5, 142, 0, 0, 8960, 8961, 5, 411, 0, 0, 8961, 8962, 5, 379, 0, 0, 8962, 8964, 3, 1160, 580, 0, 8963, 8959, 1, 0, 0, 0, 8963, 8964, 1, 0, 0, 0, 8964, 1197, 1, 0, 0, 0, 8965, 8968, 3, 1200, 600, 0, 8966, 8967, 5, 43, 0, 0, 8967, 8969, 3, 522, 261, 0, 8968, 8966, 1, 0, 0, 0, 8968, 8969, 1, 0, 0, 0, 8969, 1199, 1, 0, 0, 0, 8970, 8975, 3, 1204, 602, 0, 8971, 8972, 5, 26, 0, 0, 8972, 8974, 3, 1116, 558, 0, 8973, 8971, 1, 0, 0, 0, 8974, 8977, 1, 0, 0, 0, 8975, 8973, 1, 0, 0, 0, 8975, 8976, 1, 0, 0, 0, 8976, 1201, 1, 0, 0, 0, 8977, 8975, 1, 0, 0, 0, 8978, 8979, 6, 601, -1, 0, 8979, 8986, 3, 1204, 602, 0, 8980, 8981, 7, 49, 0, 0, 8981, 8986, 3, 1202, 601, 9, 8982, 8983, 3, 1272, 636, 0, 8983, 8984, 3, 1202, 601, 3, 8984, 8986, 1, 0, 0, 0, 8985, 8978, 1, 0, 0, 0, 8985, 8980, 1, 0, 0, 0, 8985, 8982, 1, 0, 0, 0, 8986, 9026, 1, 0, 0, 0, 8987, 8988, 10, 8, 0, 0, 8988, 8989, 5, 15, 0, 0, 8989, 9025, 3, 1202, 601, 9, 8990, 8991, 10, 7, 0, 0, 8991, 8992, 7, 50, 0, 0, 8992, 9025, 3, 1202, 601, 8, 8993, 8994, 10, 6, 0, 0, 8994, 8995, 7, 49, 0, 0, 8995, 9025, 3, 1202, 601, 7, 8996, 8997, 10, 5, 0, 0, 8997, 8998, 3, 1272, 636, 0, 8998, 8999, 3, 1202, 601, 6, 8999, 9025, 1, 0, 0, 0, 9000, 9001, 10, 4, 0, 0, 9001, 9002, 7, 48, 0, 0, 9002, 9025, 3, 1202, 601, 5, 9003, 9004, 10, 10, 0, 0, 9004, 9005, 5, 26, 0, 0, 9005, 9025, 3, 1116, 558, 0, 9006, 9007, 10, 2, 0, 0, 9007, 9025, 3, 1272, 636, 0, 9008, 9009, 10, 1, 0, 0, 9009, 9011, 5, 116, 0, 0, 9010, 9012, 5, 77, 0, 0, 9011, 9010, 1, 0, 0, 0, 9011, 9012, 1, 0, 0, 0, 9012, 9022, 1, 0, 0, 0, 9013, 9014, 5, 56, 0, 0, 9014, 9015, 5, 64, 0, 0, 9015, 9023, 3, 1202, 601, 0, 9016, 9017, 5, 268, 0, 0, 9017, 9018, 5, 2, 0, 0, 9018, 9019, 3, 1284, 642, 0, 9019, 9020, 5, 3, 0, 0, 9020, 9023, 1, 0, 0, 0, 9021, 9023, 5, 188, 0, 0, 9022, 9013, 1, 0, 0, 0, 9022, 9016, 1, 0, 0, 0, 9022, 9021, 1, 0, 0, 0, 9023, 9025, 1, 0, 0, 0, 9024, 8987, 1, 0, 0, 0, 9024, 8990, 1, 0, 0, 0, 9024, 8993, 1, 0, 0, 0, 9024, 8996, 1, 0, 0, 0, 9024, 9000, 1, 0, 0, 0, 9024, 9003, 1, 0, 0, 0, 9024, 9006, 1, 0, 0, 0, 9024, 9008, 1, 0, 0, 0, 9025, 9028, 1, 0, 0, 0, 9026, 9024, 1, 0, 0, 0, 9026, 9027, 1, 0, 0, 0, 9027, 1203, 1, 0, 0, 0, 9028, 9026, 1, 0, 0, 0, 9029, 9030, 5, 389, 0, 0, 9030, 9066, 3, 960, 480, 0, 9031, 9034, 5, 35, 0, 0, 9032, 9035, 3, 960, 480, 0, 9033, 9035, 3, 1286, 643, 0, 9034, 9032, 1, 0, 0, 0, 9034, 9033, 1, 0, 0, 0, 9035, 9066, 1, 0, 0, 0, 9036, 9037, 5, 28, 0, 0, 9037, 9066, 3, 1324, 662, 0, 9038, 9039, 5, 470, 0, 0, 9039, 9040, 5, 2, 0, 0, 9040, 9041, 3, 1278, 639, 0, 9041, 9042, 5, 3, 0, 0, 9042, 9066, 1, 0, 0, 0, 9043, 9044, 5, 98, 0, 0, 9044, 9066, 3, 960, 480, 0, 9045, 9066, 3, 1316, 658, 0, 9046, 9066, 3, 1346, 673, 0, 9047, 9066, 3, 1206, 603, 0, 9048, 9049, 5, 2, 0, 0, 9049, 9050, 3, 1160, 580, 0, 9050, 9051, 5, 3, 0, 0, 9051, 9052, 3, 1324, 662, 0, 9052, 9066, 1, 0, 0, 0, 9053, 9066, 3, 1306, 653, 0, 9054, 9066, 3, 1210, 605, 0, 9055, 9057, 3, 960, 480, 0, 9056, 9058, 3, 1322, 661, 0, 9057, 9056, 1, 0, 0, 0, 9057, 9058, 1, 0, 0, 0, 9058, 9066, 1, 0, 0, 0, 9059, 9066, 3, 1262, 631, 0, 9060, 9066, 3, 1264, 632, 0, 9061, 9062, 3, 1260, 630, 0, 9062, 9063, 5, 125, 0, 0, 9063, 9064, 3, 1260, 630, 0, 9064, 9066, 1, 0, 0, 0, 9065, 9029, 1, 0, 0, 0, 9065, 9031, 1, 0, 0, 0, 9065, 9036, 1, 0, 0, 0, 9065, 9038, 1, 0, 0, 0, 9065, 9043, 1, 0, 0, 0, 9065, 9045, 1, 0, 0, 0, 9065, 9046, 1, 0, 0, 0, 9065, 9047, 1, 0, 0, 0, 9065, 9048, 1, 0, 0, 0, 9065, 9053, 1, 0, 0, 0, 9065, 9054, 1, 0, 0, 0, 9065, 9055, 1, 0, 0, 0, 9065, 9059, 1, 0, 0, 0, 9065, 9060, 1, 0, 0, 0, 9065, 9061, 1, 0, 0, 0, 9066, 1205, 1, 0, 0, 0, 9067, 9068, 5, 661, 0, 0, 9068, 1207, 1, 0, 0, 0, 9069, 9070, 3, 1344, 672, 0, 9070, 9089, 5, 2, 0, 0, 9071, 9075, 3, 1280, 640, 0, 9072, 9073, 5, 6, 0, 0, 9073, 9074, 5, 101, 0, 0, 9074, 9076, 3, 1282, 641, 0, 9075, 9072, 1, 0, 0, 0, 9075, 9076, 1, 0, 0, 0, 9076, 9077, 1, 0, 0, 0, 9077, 9078, 3, 994, 497, 0, 9078, 9090, 1, 0, 0, 0, 9079, 9080, 5, 101, 0, 0, 9080, 9081, 3, 1282, 641, 0, 9081, 9082, 3, 994, 497, 0, 9082, 9090, 1, 0, 0, 0, 9083, 9084, 7, 51, 0, 0, 9084, 9085, 3, 1280, 640, 0, 9085, 9086, 3, 994, 497, 0, 9086, 9090, 1, 0, 0, 0, 9087, 9090, 5, 9, 0, 0, 9088, 9090, 1, 0, 0, 0, 9089, 9071, 1, 0, 0, 0, 9089, 9079, 1, 0, 0, 0, 9089, 9083, 1, 0, 0, 0, 9089, 9087, 1, 0, 0, 0, 9089, 9088, 1, 0, 0, 0, 9090, 9091, 1, 0, 0, 0, 9091, 9092, 5, 3, 0, 0, 9092, 1209, 1, 0, 0, 0, 9093, 9094, 3, 1208, 604, 0, 9094, 9095, 3, 1234, 617, 0, 9095, 9096, 3, 1236, 618, 0, 9096, 9097, 3, 1244, 622, 0, 9097, 9100, 1, 0, 0, 0, 9098, 9100, 3, 1214, 607, 0, 9099, 9093, 1, 0, 0, 0, 9099, 9098, 1, 0, 0, 0, 9100, 1211, 1, 0, 0, 0, 9101, 9104, 3, 1208, 604, 0, 9102, 9104, 3, 1214, 607, 0, 9103, 9101, 1, 0, 0, 0, 9103, 9102, 1, 0, 0, 0, 9104, 1213, 1, 0, 0, 0, 9105, 9106, 5, 108, 0, 0, 9106, 9107, 5, 62, 0, 0, 9107, 9108, 5, 2, 0, 0, 9108, 9109, 3, 1160, 580, 0, 9109, 9110, 5, 3, 0, 0, 9110, 9283, 1, 0, 0, 0, 9111, 9283, 5, 48, 0, 0, 9112, 9117, 5, 50, 0, 0, 9113, 9114, 5, 2, 0, 0, 9114, 9115, 3, 1354, 677, 0, 9115, 9116, 5, 3, 0, 0, 9116, 9118, 1, 0, 0, 0, 9117, 9113, 1, 0, 0, 0, 9117, 9118, 1, 0, 0, 0, 9118, 9283, 1, 0, 0, 0, 9119, 9124, 5, 51, 0, 0, 9120, 9121, 5, 2, 0, 0, 9121, 9122, 3, 1354, 677, 0, 9122, 9123, 5, 3, 0, 0, 9123, 9125, 1, 0, 0, 0, 9124, 9120, 1, 0, 0, 0, 9124, 9125, 1, 0, 0, 0, 9125, 9283, 1, 0, 0, 0, 9126, 9131, 5, 75, 0, 0, 9127, 9128, 5, 2, 0, 0, 9128, 9129, 3, 1354, 677, 0, 9129, 9130, 5, 3, 0, 0, 9130, 9132, 1, 0, 0, 0, 9131, 9127, 1, 0, 0, 0, 9131, 9132, 1, 0, 0, 0, 9132, 9283, 1, 0, 0, 0, 9133, 9138, 5, 76, 0, 0, 9134, 9135, 5, 2, 0, 0, 9135, 9136, 3, 1354, 677, 0, 9136, 9137, 5, 3, 0, 0, 9137, 9139, 1, 0, 0, 0, 9138, 9134, 1, 0, 0, 0, 9138, 9139, 1, 0, 0, 0, 9139, 9283, 1, 0, 0, 0, 9140, 9283, 5, 49, 0, 0, 9141, 9283, 5, 52, 0, 0, 9142, 9283, 5, 89, 0, 0, 9143, 9283, 5, 99, 0, 0, 9144, 9283, 5, 47, 0, 0, 9145, 9283, 5, 111, 0, 0, 9146, 9147, 5, 41, 0, 0, 9147, 9148, 5, 2, 0, 0, 9148, 9149, 3, 1160, 580, 0, 9149, 9150, 5, 36, 0, 0, 9150, 9151, 3, 1116, 558, 0, 9151, 9152, 5, 3, 0, 0, 9152, 9283, 1, 0, 0, 0, 9153, 9154, 5, 390, 0, 0, 9154, 9155, 5, 2, 0, 0, 9155, 9156, 3, 1290, 645, 0, 9156, 9157, 5, 3, 0, 0, 9157, 9283, 1, 0, 0, 0, 9158, 9159, 5, 489, 0, 0, 9159, 9160, 5, 2, 0, 0, 9160, 9163, 3, 1160, 580, 0, 9161, 9162, 5, 6, 0, 0, 9162, 9164, 3, 1294, 647, 0, 9163, 9161, 1, 0, 0, 0, 9163, 9164, 1, 0, 0, 0, 9164, 9165, 1, 0, 0, 0, 9165, 9166, 5, 3, 0, 0, 9166, 9283, 1, 0, 0, 0, 9167, 9168, 5, 403, 0, 0, 9168, 9169, 5, 2, 0, 0, 9169, 9170, 3, 1296, 648, 0, 9170, 9171, 5, 3, 0, 0, 9171, 9283, 1, 0, 0, 0, 9172, 9173, 5, 404, 0, 0, 9173, 9174, 5, 2, 0, 0, 9174, 9175, 3, 1298, 649, 0, 9175, 9176, 5, 3, 0, 0, 9176, 9283, 1, 0, 0, 0, 9177, 9178, 5, 410, 0, 0, 9178, 9179, 5, 2, 0, 0, 9179, 9180, 3, 1300, 650, 0, 9180, 9181, 5, 3, 0, 0, 9181, 9283, 1, 0, 0, 0, 9182, 9183, 5, 413, 0, 0, 9183, 9184, 5, 2, 0, 0, 9184, 9185, 3, 1160, 580, 0, 9185, 9186, 5, 36, 0, 0, 9186, 9187, 3, 1116, 558, 0, 9187, 9188, 5, 3, 0, 0, 9188, 9283, 1, 0, 0, 0, 9189, 9190, 5, 414, 0, 0, 9190, 9192, 5, 2, 0, 0, 9191, 9193, 7, 52, 0, 0, 9192, 9191, 1, 0, 0, 0, 9192, 9193, 1, 0, 0, 0, 9193, 9194, 1, 0, 0, 0, 9194, 9195, 3, 1302, 651, 0, 9195, 9196, 5, 3, 0, 0, 9196, 9283, 1, 0, 0, 0, 9197, 9198, 5, 401, 0, 0, 9198, 9199, 5, 2, 0, 0, 9199, 9200, 3, 1160, 580, 0, 9200, 9201, 5, 6, 0, 0, 9201, 9202, 3, 1160, 580, 0, 9202, 9203, 5, 3, 0, 0, 9203, 9283, 1, 0, 0, 0, 9204, 9205, 5, 386, 0, 0, 9205, 9206, 5, 2, 0, 0, 9206, 9207, 3, 1278, 639, 0, 9207, 9208, 5, 3, 0, 0, 9208, 9283, 1, 0, 0, 0, 9209, 9210, 5, 392, 0, 0, 9210, 9211, 5, 2, 0, 0, 9211, 9212, 3, 1278, 639, 0, 9212, 9213, 5, 3, 0, 0, 9213, 9283, 1, 0, 0, 0, 9214, 9215, 5, 397, 0, 0, 9215, 9216, 5, 2, 0, 0, 9216, 9217, 3, 1278, 639, 0, 9217, 9218, 5, 3, 0, 0, 9218, 9283, 1, 0, 0, 0, 9219, 9220, 5, 425, 0, 0, 9220, 9221, 5, 2, 0, 0, 9221, 9222, 3, 1278, 639, 0, 9222, 9223, 5, 3, 0, 0, 9223, 9283, 1, 0, 0, 0, 9224, 9225, 5, 426, 0, 0, 9225, 9226, 5, 2, 0, 0, 9226, 9227, 5, 259, 0, 0, 9227, 9233, 3, 1378, 689, 0, 9228, 9231, 5, 6, 0, 0, 9229, 9232, 3, 1220, 610, 0, 9230, 9232, 3, 1278, 639, 0, 9231, 9229, 1, 0, 0, 0, 9231, 9230, 1, 0, 0, 0, 9232, 9234, 1, 0, 0, 0, 9233, 9228, 1, 0, 0, 0, 9233, 9234, 1, 0, 0, 0, 9234, 9235, 1, 0, 0, 0, 9235, 9236, 5, 3, 0, 0, 9236, 9283, 1, 0, 0, 0, 9237, 9238, 5, 427, 0, 0, 9238, 9239, 5, 2, 0, 0, 9239, 9240, 3, 1204, 602, 0, 9240, 9241, 3, 1230, 615, 0, 9241, 9242, 5, 3, 0, 0, 9242, 9283, 1, 0, 0, 0, 9243, 9244, 5, 428, 0, 0, 9244, 9245, 5, 2, 0, 0, 9245, 9246, 3, 1222, 611, 0, 9246, 9247, 5, 3, 0, 0, 9247, 9283, 1, 0, 0, 0, 9248, 9249, 5, 429, 0, 0, 9249, 9250, 5, 2, 0, 0, 9250, 9251, 3, 1226, 613, 0, 9251, 9252, 3, 1160, 580, 0, 9252, 9253, 3, 1228, 614, 0, 9253, 9254, 5, 3, 0, 0, 9254, 9283, 1, 0, 0, 0, 9255, 9256, 5, 430, 0, 0, 9256, 9257, 5, 2, 0, 0, 9257, 9258, 5, 259, 0, 0, 9258, 9261, 3, 1378, 689, 0, 9259, 9260, 5, 6, 0, 0, 9260, 9262, 3, 1160, 580, 0, 9261, 9259, 1, 0, 0, 0, 9261, 9262, 1, 0, 0, 0, 9262, 9263, 1, 0, 0, 0, 9263, 9264, 5, 3, 0, 0, 9264, 9283, 1, 0, 0, 0, 9265, 9266, 5, 431, 0, 0, 9266, 9267, 5, 2, 0, 0, 9267, 9268, 5, 376, 0, 0, 9268, 9269, 3, 1160, 580, 0, 9269, 9270, 5, 6, 0, 0, 9270, 9271, 3, 1216, 608, 0, 9271, 9272, 3, 1218, 609, 0, 9272, 9273, 5, 3, 0, 0, 9273, 9283, 1, 0, 0, 0, 9274, 9275, 5, 432, 0, 0, 9275, 9276, 5, 2, 0, 0, 9276, 9277, 3, 1226, 613, 0, 9277, 9278, 3, 1160, 580, 0, 9278, 9279, 5, 36, 0, 0, 9279, 9280, 3, 1120, 560, 0, 9280, 9281, 5, 3, 0, 0, 9281, 9283, 1, 0, 0, 0, 9282, 9105, 1, 0, 0, 0, 9282, 9111, 1, 0, 0, 0, 9282, 9112, 1, 0, 0, 0, 9282, 9119, 1, 0, 0, 0, 9282, 9126, 1, 0, 0, 0, 9282, 9133, 1, 0, 0, 0, 9282, 9140, 1, 0, 0, 0, 9282, 9141, 1, 0, 0, 0, 9282, 9142, 1, 0, 0, 0, 9282, 9143, 1, 0, 0, 0, 9282, 9144, 1, 0, 0, 0, 9282, 9145, 1, 0, 0, 0, 9282, 9146, 1, 0, 0, 0, 9282, 9153, 1, 0, 0, 0, 9282, 9158, 1, 0, 0, 0, 9282, 9167, 1, 0, 0, 0, 9282, 9172, 1, 0, 0, 0, 9282, 9177, 1, 0, 0, 0, 9282, 9182, 1, 0, 0, 0, 9282, 9189, 1, 0, 0, 0, 9282, 9197, 1, 0, 0, 0, 9282, 9204, 1, 0, 0, 0, 9282, 9209, 1, 0, 0, 0, 9282, 9214, 1, 0, 0, 0, 9282, 9219, 1, 0, 0, 0, 9282, 9224, 1, 0, 0, 0, 9282, 9237, 1, 0, 0, 0, 9282, 9243, 1, 0, 0, 0, 9282, 9248, 1, 0, 0, 0, 9282, 9255, 1, 0, 0, 0, 9282, 9265, 1, 0, 0, 0, 9282, 9274, 1, 0, 0, 0, 9283, 1215, 1, 0, 0, 0, 9284, 9285, 5, 368, 0, 0, 9285, 9290, 3, 1160, 580, 0, 9286, 9287, 5, 368, 0, 0, 9287, 9288, 5, 262, 0, 0, 9288, 9290, 5, 450, 0, 0, 9289, 9284, 1, 0, 0, 0, 9289, 9286, 1, 0, 0, 0, 9290, 1217, 1, 0, 0, 0, 9291, 9292, 5, 6, 0, 0, 9292, 9293, 5, 332, 0, 0, 9293, 9303, 5, 378, 0, 0, 9294, 9295, 5, 6, 0, 0, 9295, 9296, 5, 332, 0, 0, 9296, 9303, 5, 262, 0, 0, 9297, 9298, 5, 6, 0, 0, 9298, 9299, 5, 332, 0, 0, 9299, 9300, 5, 262, 0, 0, 9300, 9303, 5, 450, 0, 0, 9301, 9303, 1, 0, 0, 0, 9302, 9291, 1, 0, 0, 0, 9302, 9294, 1, 0, 0, 0, 9302, 9297, 1, 0, 0, 0, 9302, 9301, 1, 0, 0, 0, 9303, 1219, 1, 0, 0, 0, 9304, 9305, 5, 417, 0, 0, 9305, 9306, 5, 2, 0, 0, 9306, 9307, 3, 1222, 611, 0, 9307, 9308, 5, 3, 0, 0, 9308, 1221, 1, 0, 0, 0, 9309, 9314, 3, 1224, 612, 0, 9310, 9311, 5, 6, 0, 0, 9311, 9313, 3, 1224, 612, 0, 9312, 9310, 1, 0, 0, 0, 9313, 9316, 1, 0, 0, 0, 9314, 9312, 1, 0, 0, 0, 9314, 9315, 1, 0, 0, 0, 9315, 1223, 1, 0, 0, 0, 9316, 9314, 1, 0, 0, 0, 9317, 9320, 3, 1160, 580, 0, 9318, 9319, 5, 36, 0, 0, 9319, 9321, 3, 1378, 689, 0, 9320, 9318, 1, 0, 0, 0, 9320, 9321, 1, 0, 0, 0, 9321, 1225, 1, 0, 0, 0, 9322, 9323, 7, 53, 0, 0, 9323, 1227, 1, 0, 0, 0, 9324, 9325, 5, 285, 0, 0, 9325, 9330, 5, 371, 0, 0, 9326, 9327, 5, 340, 0, 0, 9327, 9330, 5, 371, 0, 0, 9328, 9330, 1, 0, 0, 0, 9329, 9324, 1, 0, 0, 0, 9329, 9326, 1, 0, 0, 0, 9329, 9328, 1, 0, 0, 0, 9330, 1229, 1, 0, 0, 0, 9331, 9332, 5, 279, 0, 0, 9332, 9347, 3, 1204, 602, 0, 9333, 9334, 5, 279, 0, 0, 9334, 9335, 3, 1204, 602, 0, 9335, 9336, 3, 1232, 616, 0, 9336, 9347, 1, 0, 0, 0, 9337, 9338, 5, 279, 0, 0, 9338, 9339, 3, 1232, 616, 0, 9339, 9340, 3, 1204, 602, 0, 9340, 9347, 1, 0, 0, 0, 9341, 9342, 5, 279, 0, 0, 9342, 9343, 3, 1232, 616, 0, 9343, 9344, 3, 1204, 602, 0, 9344, 9345, 3, 1232, 616, 0, 9345, 9347, 1, 0, 0, 0, 9346, 9331, 1, 0, 0, 0, 9346, 9333, 1, 0, 0, 0, 9346, 9337, 1, 0, 0, 0, 9346, 9341, 1, 0, 0, 0, 9347, 1231, 1, 0, 0, 0, 9348, 9349, 5, 147, 0, 0, 9349, 9350, 7, 54, 0, 0, 9350, 1233, 1, 0, 0, 0, 9351, 9352, 5, 479, 0, 0, 9352, 9353, 5, 66, 0, 0, 9353, 9354, 5, 2, 0, 0, 9354, 9355, 3, 996, 498, 0, 9355, 9356, 5, 3, 0, 0, 9356, 9359, 1, 0, 0, 0, 9357, 9359, 1, 0, 0, 0, 9358, 9351, 1, 0, 0, 0, 9358, 9357, 1, 0, 0, 0, 9359, 1235, 1, 0, 0, 0, 9360, 9361, 5, 480, 0, 0, 9361, 9362, 5, 2, 0, 0, 9362, 9363, 5, 103, 0, 0, 9363, 9364, 3, 1160, 580, 0, 9364, 9365, 5, 3, 0, 0, 9365, 9368, 1, 0, 0, 0, 9366, 9368, 1, 0, 0, 0, 9367, 9360, 1, 0, 0, 0, 9367, 9366, 1, 0, 0, 0, 9368, 1237, 1, 0, 0, 0, 9369, 9370, 5, 104, 0, 0, 9370, 9373, 3, 1240, 620, 0, 9371, 9373, 1, 0, 0, 0, 9372, 9369, 1, 0, 0, 0, 9372, 9371, 1, 0, 0, 0, 9373, 1239, 1, 0, 0, 0, 9374, 9379, 3, 1242, 621, 0, 9375, 9376, 5, 6, 0, 0, 9376, 9378, 3, 1242, 621, 0, 9377, 9375, 1, 0, 0, 0, 9378, 9381, 1, 0, 0, 0, 9379, 9377, 1, 0, 0, 0, 9379, 9380, 1, 0, 0, 0, 9380, 1241, 1, 0, 0, 0, 9381, 9379, 1, 0, 0, 0, 9382, 9383, 3, 1370, 685, 0, 9383, 9384, 5, 36, 0, 0, 9384, 9385, 3, 1246, 623, 0, 9385, 1243, 1, 0, 0, 0, 9386, 9389, 5, 124, 0, 0, 9387, 9390, 3, 1246, 623, 0, 9388, 9390, 3, 1370, 685, 0, 9389, 9387, 1, 0, 0, 0, 9389, 9388, 1, 0, 0, 0, 9390, 9393, 1, 0, 0, 0, 9391, 9393, 1, 0, 0, 0, 9392, 9386, 1, 0, 0, 0, 9392, 9391, 1, 0, 0, 0, 9393, 1245, 1, 0, 0, 0, 9394, 9395, 5, 2, 0, 0, 9395, 9396, 3, 1248, 624, 0, 9396, 9397, 3, 1250, 625, 0, 9397, 9398, 3, 994, 497, 0, 9398, 9399, 3, 1252, 626, 0, 9399, 9400, 5, 3, 0, 0, 9400, 1247, 1, 0, 0, 0, 9401, 9404, 3, 1370, 685, 0, 9402, 9404, 1, 0, 0, 0, 9403, 9401, 1, 0, 0, 0, 9403, 9402, 1, 0, 0, 0, 9404, 1249, 1, 0, 0, 0, 9405, 9406, 5, 278, 0, 0, 9406, 9407, 5, 147, 0, 0, 9407, 9410, 3, 1278, 639, 0, 9408, 9410, 1, 0, 0, 0, 9409, 9405, 1, 0, 0, 0, 9409, 9408, 1, 0, 0, 0, 9410, 1251, 1, 0, 0, 0, 9411, 9412, 5, 292, 0, 0, 9412, 9413, 3, 1254, 627, 0, 9413, 9414, 3, 1258, 629, 0, 9414, 9425, 1, 0, 0, 0, 9415, 9416, 5, 313, 0, 0, 9416, 9417, 3, 1254, 627, 0, 9417, 9418, 3, 1258, 629, 0, 9418, 9425, 1, 0, 0, 0, 9419, 9420, 5, 481, 0, 0, 9420, 9421, 3, 1254, 627, 0, 9421, 9422, 3, 1258, 629, 0, 9422, 9425, 1, 0, 0, 0, 9423, 9425, 1, 0, 0, 0, 9424, 9411, 1, 0, 0, 0, 9424, 9415, 1, 0, 0, 0, 9424, 9419, 1, 0, 0, 0, 9424, 9423, 1, 0, 0, 0, 9425, 1253, 1, 0, 0, 0, 9426, 9433, 3, 1256, 628, 0, 9427, 9428, 5, 380, 0, 0, 9428, 9429, 3, 1256, 628, 0, 9429, 9430, 5, 33, 0, 0, 9430, 9431, 3, 1256, 628, 0, 9431, 9433, 1, 0, 0, 0, 9432, 9426, 1, 0, 0, 0, 9432, 9427, 1, 0, 0, 0, 9433, 1255, 1, 0, 0, 0, 9434, 9435, 5, 355, 0, 0, 9435, 9442, 7, 55, 0, 0, 9436, 9437, 5, 434, 0, 0, 9437, 9442, 5, 407, 0, 0, 9438, 9439, 3, 1160, 580, 0, 9439, 9440, 7, 55, 0, 0, 9440, 9442, 1, 0, 0, 0, 9441, 9434, 1, 0, 0, 0, 9441, 9436, 1, 0, 0, 0, 9441, 9438, 1, 0, 0, 0, 9442, 1257, 1, 0, 0, 0, 9443, 9450, 5, 199, 0, 0, 9444, 9445, 5, 434, 0, 0, 9445, 9451, 5, 407, 0, 0, 9446, 9451, 5, 66, 0, 0, 9447, 9451, 5, 467, 0, 0, 9448, 9449, 5, 262, 0, 0, 9449, 9451, 5, 482, 0, 0, 9450, 9444, 1, 0, 0, 0, 9450, 9446, 1, 0, 0, 0, 9450, 9447, 1, 0, 0, 0, 9450, 9448, 1, 0, 0, 0, 9451, 9454, 1, 0, 0, 0, 9452, 9454, 1, 0, 0, 0, 9453, 9443, 1, 0, 0, 0, 9453, 9452, 1, 0, 0, 0, 9454, 1259, 1, 0, 0, 0, 9455, 9456, 5, 407, 0, 0, 9456, 9458, 5, 2, 0, 0, 9457, 9459, 3, 1278, 639, 0, 9458, 9457, 1, 0, 0, 0, 9458, 9459, 1, 0, 0, 0, 9459, 9460, 1, 0, 0, 0, 9460, 9468, 5, 3, 0, 0, 9461, 9462, 5, 2, 0, 0, 9462, 9463, 3, 1278, 639, 0, 9463, 9464, 5, 6, 0, 0, 9464, 9465, 3, 1160, 580, 0, 9465, 9466, 5, 3, 0, 0, 9466, 9468, 1, 0, 0, 0, 9467, 9455, 1, 0, 0, 0, 9467, 9461, 1, 0, 0, 0, 9468, 1261, 1, 0, 0, 0, 9469, 9470, 5, 407, 0, 0, 9470, 9472, 5, 2, 0, 0, 9471, 9473, 3, 1278, 639, 0, 9472, 9471, 1, 0, 0, 0, 9472, 9473, 1, 0, 0, 0, 9473, 9474, 1, 0, 0, 0, 9474, 9475, 5, 3, 0, 0, 9475, 1263, 1, 0, 0, 0, 9476, 9477, 5, 2, 0, 0, 9477, 9478, 3, 1278, 639, 0, 9478, 9479, 5, 6, 0, 0, 9479, 9480, 3, 1160, 580, 0, 9480, 9481, 5, 3, 0, 0, 9481, 1265, 1, 0, 0, 0, 9482, 9483, 7, 56, 0, 0, 9483, 1267, 1, 0, 0, 0, 9484, 9487, 5, 29, 0, 0, 9485, 9487, 3, 1270, 635, 0, 9486, 9484, 1, 0, 0, 0, 9486, 9485, 1, 0, 0, 0, 9487, 1269, 1, 0, 0, 0, 9488, 9489, 7, 57, 0, 0, 9489, 1271, 1, 0, 0, 0, 9490, 9497, 5, 29, 0, 0, 9491, 9492, 5, 271, 0, 0, 9492, 9493, 5, 2, 0, 0, 9493, 9494, 3, 682, 341, 0, 9494, 9495, 5, 3, 0, 0, 9495, 9497, 1, 0, 0, 0, 9496, 9490, 1, 0, 0, 0, 9496, 9491, 1, 0, 0, 0, 9497, 1273, 1, 0, 0, 0, 9498, 9505, 3, 1268, 634, 0, 9499, 9500, 5, 271, 0, 0, 9500, 9501, 5, 2, 0, 0, 9501, 9502, 3, 682, 341, 0, 9502, 9503, 5, 3, 0, 0, 9503, 9505, 1, 0, 0, 0, 9504, 9498, 1, 0, 0, 0, 9504, 9499, 1, 0, 0, 0, 9505, 1275, 1, 0, 0, 0, 9506, 9519, 3, 1268, 634, 0, 9507, 9508, 5, 271, 0, 0, 9508, 9509, 5, 2, 0, 0, 9509, 9510, 3, 682, 341, 0, 9510, 9511, 5, 3, 0, 0, 9511, 9519, 1, 0, 0, 0, 9512, 9519, 5, 120, 0, 0, 9513, 9514, 5, 77, 0, 0, 9514, 9519, 5, 120, 0, 0, 9515, 9519, 5, 114, 0, 0, 9516, 9517, 5, 77, 0, 0, 9517, 9519, 5, 114, 0, 0, 9518, 9506, 1, 0, 0, 0, 9518, 9507, 1, 0, 0, 0, 9518, 9512, 1, 0, 0, 0, 9518, 9513, 1, 0, 0, 0, 9518, 9515, 1, 0, 0, 0, 9518, 9516, 1, 0, 0, 0, 9519, 1277, 1, 0, 0, 0, 9520, 9525, 3, 1160, 580, 0, 9521, 9522, 5, 6, 0, 0, 9522, 9524, 3, 1160, 580, 0, 9523, 9521, 1, 0, 0, 0, 9524, 9527, 1, 0, 0, 0, 9525, 9523, 1, 0, 0, 0, 9525, 9526, 1, 0, 0, 0, 9526, 1279, 1, 0, 0, 0, 9527, 9525, 1, 0, 0, 0, 9528, 9533, 3, 1282, 641, 0, 9529, 9530, 5, 6, 0, 0, 9530, 9532, 3, 1282, 641, 0, 9531, 9529, 1, 0, 0, 0, 9532, 9535, 1, 0, 0, 0, 9533, 9531, 1, 0, 0, 0, 9533, 9534, 1, 0, 0, 0, 9534, 1281, 1, 0, 0, 0, 9535, 9533, 1, 0, 0, 0, 9536, 9542, 3, 1160, 580, 0, 9537, 9538, 3, 634, 317, 0, 9538, 9539, 7, 58, 0, 0, 9539, 9540, 3, 1160, 580, 0, 9540, 9542, 1, 0, 0, 0, 9541, 9536, 1, 0, 0, 0, 9541, 9537, 1, 0, 0, 0, 9542, 1283, 1, 0, 0, 0, 9543, 9548, 3, 1116, 558, 0, 9544, 9545, 5, 6, 0, 0, 9545, 9547, 3, 1116, 558, 0, 9546, 9544, 1, 0, 0, 0, 9547, 9550, 1, 0, 0, 0, 9548, 9546, 1, 0, 0, 0, 9548, 9549, 1, 0, 0, 0, 9549, 1285, 1, 0, 0, 0, 9550, 9548, 1, 0, 0, 0, 9551, 9554, 5, 4, 0, 0, 9552, 9555, 3, 1278, 639, 0, 9553, 9555, 3, 1288, 644, 0, 9554, 9552, 1, 0, 0, 0, 9554, 9553, 1, 0, 0, 0, 9554, 9555, 1, 0, 0, 0, 9555, 9556, 1, 0, 0, 0, 9556, 9557, 5, 5, 0, 0, 9557, 1287, 1, 0, 0, 0, 9558, 9563, 3, 1286, 643, 0, 9559, 9560, 5, 6, 0, 0, 9560, 9562, 3, 1286, 643, 0, 9561, 9559, 1, 0, 0, 0, 9562, 9565, 1, 0, 0, 0, 9563, 9561, 1, 0, 0, 0, 9563, 9564, 1, 0, 0, 0, 9564, 1289, 1, 0, 0, 0, 9565, 9563, 1, 0, 0, 0, 9566, 9567, 3, 1292, 646, 0, 9567, 9568, 5, 64, 0, 0, 9568, 9569, 3, 1160, 580, 0, 9569, 9572, 1, 0, 0, 0, 9570, 9572, 1, 0, 0, 0, 9571, 9566, 1, 0, 0, 0, 9571, 9570, 1, 0, 0, 0, 9572, 1291, 1, 0, 0, 0, 9573, 9582, 3, 1380, 690, 0, 9574, 9582, 5, 377, 0, 0, 9575, 9582, 5, 257, 0, 0, 9576, 9582, 5, 176, 0, 0, 9577, 9582, 5, 218, 0, 0, 9578, 9582, 5, 254, 0, 0, 9579, 9582, 5, 319, 0, 0, 9580, 9582, 3, 1356, 678, 0, 9581, 9573, 1, 0, 0, 0, 9581, 9574, 1, 0, 0, 0, 9581, 9575, 1, 0, 0, 0, 9581, 9576, 1, 0, 0, 0, 9581, 9577, 1, 0, 0, 0, 9581, 9578, 1, 0, 0, 0, 9581, 9579, 1, 0, 0, 0, 9581, 9580, 1, 0, 0, 0, 9582, 1293, 1, 0, 0, 0, 9583, 9584, 7, 59, 0, 0, 9584, 1295, 1, 0, 0, 0, 9585, 9586, 3, 1160, 580, 0, 9586, 9587, 5, 84, 0, 0, 9587, 9588, 3, 1160, 580, 0, 9588, 9589, 5, 64, 0, 0, 9589, 9592, 3, 1160, 580, 0, 9590, 9591, 5, 62, 0, 0, 9591, 9593, 3, 1160, 580, 0, 9592, 9590, 1, 0, 0, 0, 9592, 9593, 1, 0, 0, 0, 9593, 1297, 1, 0, 0, 0, 9594, 9595, 3, 1202, 601, 0, 9595, 9596, 5, 68, 0, 0, 9596, 9597, 3, 1202, 601, 0, 9597, 9600, 1, 0, 0, 0, 9598, 9600, 1, 0, 0, 0, 9599, 9594, 1, 0, 0, 0, 9599, 9598, 1, 0, 0, 0, 9600, 1299, 1, 0, 0, 0, 9601, 9602, 3, 1160, 580, 0, 9602, 9603, 5, 64, 0, 0, 9603, 9604, 3, 1160, 580, 0, 9604, 9605, 5, 62, 0, 0, 9605, 9606, 3, 1160, 580, 0, 9606, 9629, 1, 0, 0, 0, 9607, 9608, 3, 1160, 580, 0, 9608, 9609, 5, 62, 0, 0, 9609, 9610, 3, 1160, 580, 0, 9610, 9611, 5, 64, 0, 0, 9611, 9612, 3, 1160, 580, 0, 9612, 9629, 1, 0, 0, 0, 9613, 9614, 3, 1160, 580, 0, 9614, 9615, 5, 64, 0, 0, 9615, 9616, 3, 1160, 580, 0, 9616, 9629, 1, 0, 0, 0, 9617, 9618, 3, 1160, 580, 0, 9618, 9619, 5, 62, 0, 0, 9619, 9620, 3, 1160, 580, 0, 9620, 9629, 1, 0, 0, 0, 9621, 9622, 3, 1160, 580, 0, 9622, 9623, 5, 127, 0, 0, 9623, 9624, 3, 1160, 580, 0, 9624, 9625, 5, 197, 0, 0, 9625, 9626, 3, 1160, 580, 0, 9626, 9629, 1, 0, 0, 0, 9627, 9629, 3, 1278, 639, 0, 9628, 9601, 1, 0, 0, 0, 9628, 9607, 1, 0, 0, 0, 9628, 9613, 1, 0, 0, 0, 9628, 9617, 1, 0, 0, 0, 9628, 9621, 1, 0, 0, 0, 9628, 9627, 1, 0, 0, 0, 9629, 1301, 1, 0, 0, 0, 9630, 9631, 3, 1160, 580, 0, 9631, 9632, 5, 64, 0, 0, 9632, 9633, 3, 1278, 639, 0, 9633, 9638, 1, 0, 0, 0, 9634, 9635, 5, 64, 0, 0, 9635, 9638, 3, 1278, 639, 0, 9636, 9638, 3, 1278, 639, 0, 9637, 9630, 1, 0, 0, 0, 9637, 9634, 1, 0, 0, 0, 9637, 9636, 1, 0, 0, 0, 9638, 1303, 1, 0, 0, 0, 9639, 9645, 3, 960, 480, 0, 9640, 9641, 5, 2, 0, 0, 9641, 9642, 3, 1278, 639, 0, 9642, 9643, 5, 3, 0, 0, 9643, 9645, 1, 0, 0, 0, 9644, 9639, 1, 0, 0, 0, 9644, 9640, 1, 0, 0, 0, 9645, 1305, 1, 0, 0, 0, 9646, 9647, 5, 40, 0, 0, 9647, 9648, 3, 1314, 657, 0, 9648, 9649, 3, 1308, 654, 0, 9649, 9650, 3, 1312, 656, 0, 9650, 9651, 5, 454, 0, 0, 9651, 1307, 1, 0, 0, 0, 9652, 9654, 3, 1310, 655, 0, 9653, 9652, 1, 0, 0, 0, 9654, 9655, 1, 0, 0, 0, 9655, 9653, 1, 0, 0, 0, 9655, 9656, 1, 0, 0, 0, 9656, 1309, 1, 0, 0, 0, 9657, 9658, 5, 102, 0, 0, 9658, 9659, 3, 1160, 580, 0, 9659, 9660, 5, 93, 0, 0, 9660, 9661, 3, 1160, 580, 0, 9661, 1311, 1, 0, 0, 0, 9662, 9663, 5, 58, 0, 0, 9663, 9666, 3, 1160, 580, 0, 9664, 9666, 1, 0, 0, 0, 9665, 9662, 1, 0, 0, 0, 9665, 9664, 1, 0, 0, 0, 9666, 1313, 1, 0, 0, 0, 9667, 9670, 3, 1160, 580, 0, 9668, 9670, 1, 0, 0, 0, 9669, 9667, 1, 0, 0, 0, 9669, 9668, 1, 0, 0, 0, 9670, 1315, 1, 0, 0, 0, 9671, 9673, 3, 1370, 685, 0, 9672, 9674, 3, 1322, 661, 0, 9673, 9672, 1, 0, 0, 0, 9673, 9674, 1, 0, 0, 0, 9674, 1317, 1, 0, 0, 0, 9675, 9678, 5, 11, 0, 0, 9676, 9679, 3, 1340, 670, 0, 9677, 9679, 5, 9, 0, 0, 9678, 9676, 1, 0, 0, 0, 9678, 9677, 1, 0, 0, 0, 9679, 9691, 1, 0, 0, 0, 9680, 9686, 5, 4, 0, 0, 9681, 9687, 3, 1160, 580, 0, 9682, 9683, 3, 1320, 660, 0, 9683, 9684, 5, 8, 0, 0, 9684, 9685, 3, 1320, 660, 0, 9685, 9687, 1, 0, 0, 0, 9686, 9681, 1, 0, 0, 0, 9686, 9682, 1, 0, 0, 0, 9687, 9688, 1, 0, 0, 0, 9688, 9689, 5, 5, 0, 0, 9689, 9691, 1, 0, 0, 0, 9690, 9675, 1, 0, 0, 0, 9690, 9680, 1, 0, 0, 0, 9691, 1319, 1, 0, 0, 0, 9692, 9695, 3, 1160, 580, 0, 9693, 9695, 1, 0, 0, 0, 9694, 9692, 1, 0, 0, 0, 9694, 9693, 1, 0, 0, 0, 9695, 1321, 1, 0, 0, 0, 9696, 9698, 3, 1318, 659, 0, 9697, 9696, 1, 0, 0, 0, 9698, 9699, 1, 0, 0, 0, 9699, 9697, 1, 0, 0, 0, 9699, 9700, 1, 0, 0, 0, 9700, 1323, 1, 0, 0, 0, 9701, 9703, 3, 1318, 659, 0, 9702, 9701, 1, 0, 0, 0, 9703, 9706, 1, 0, 0, 0, 9704, 9702, 1, 0, 0, 0, 9704, 9705, 1, 0, 0, 0, 9705, 1325, 1, 0, 0, 0, 9706, 9704, 1, 0, 0, 0, 9707, 9710, 3, 1328, 664, 0, 9708, 9710, 1, 0, 0, 0, 9709, 9707, 1, 0, 0, 0, 9709, 9708, 1, 0, 0, 0, 9710, 1327, 1, 0, 0, 0, 9711, 9716, 3, 1330, 665, 0, 9712, 9713, 5, 6, 0, 0, 9713, 9715, 3, 1330, 665, 0, 9714, 9712, 1, 0, 0, 0, 9715, 9718, 1, 0, 0, 0, 9716, 9714, 1, 0, 0, 0, 9716, 9717, 1, 0, 0, 0, 9717, 1329, 1, 0, 0, 0, 9718, 9716, 1, 0, 0, 0, 9719, 9728, 5, 9, 0, 0, 9720, 9725, 3, 1160, 580, 0, 9721, 9722, 5, 36, 0, 0, 9722, 9726, 3, 1378, 689, 0, 9723, 9726, 3, 1380, 690, 0, 9724, 9726, 1, 0, 0, 0, 9725, 9721, 1, 0, 0, 0, 9725, 9723, 1, 0, 0, 0, 9725, 9724, 1, 0, 0, 0, 9726, 9728, 1, 0, 0, 0, 9727, 9719, 1, 0, 0, 0, 9727, 9720, 1, 0, 0, 0, 9728, 1331, 1, 0, 0, 0, 9729, 9734, 3, 1334, 667, 0, 9730, 9731, 5, 6, 0, 0, 9731, 9733, 3, 1334, 667, 0, 9732, 9730, 1, 0, 0, 0, 9733, 9736, 1, 0, 0, 0, 9734, 9732, 1, 0, 0, 0, 9734, 9735, 1, 0, 0, 0, 9735, 1333, 1, 0, 0, 0, 9736, 9734, 1, 0, 0, 0, 9737, 9739, 3, 1370, 685, 0, 9738, 9740, 3, 1322, 661, 0, 9739, 9738, 1, 0, 0, 0, 9739, 9740, 1, 0, 0, 0, 9740, 1335, 1, 0, 0, 0, 9741, 9746, 3, 1338, 669, 0, 9742, 9743, 5, 6, 0, 0, 9743, 9745, 3, 1338, 669, 0, 9744, 9742, 1, 0, 0, 0, 9745, 9748, 1, 0, 0, 0, 9746, 9744, 1, 0, 0, 0, 9746, 9747, 1, 0, 0, 0, 9747, 1337, 1, 0, 0, 0, 9748, 9746, 1, 0, 0, 0, 9749, 9750, 3, 1370, 685, 0, 9750, 1339, 1, 0, 0, 0, 9751, 9752, 3, 1378, 689, 0, 9752, 1341, 1, 0, 0, 0, 9753, 9754, 3, 1356, 678, 0, 9754, 1343, 1, 0, 0, 0, 9755, 9763, 3, 1392, 696, 0, 9756, 9763, 3, 1374, 687, 0, 9757, 9758, 3, 1370, 685, 0, 9758, 9759, 3, 1322, 661, 0, 9759, 9763, 1, 0, 0, 0, 9760, 9763, 5, 119, 0, 0, 9761, 9763, 5, 126, 0, 0, 9762, 9755, 1, 0, 0, 0, 9762, 9756, 1, 0, 0, 0, 9762, 9757, 1, 0, 0, 0, 9762, 9760, 1, 0, 0, 0, 9762, 9761, 1, 0, 0, 0, 9763, 1345, 1, 0, 0, 0, 9764, 9797, 3, 1354, 677, 0, 9765, 9797, 3, 1352, 676, 0, 9766, 9797, 3, 1356, 678, 0, 9767, 9797, 3, 1350, 675, 0, 9768, 9797, 3, 1348, 674, 0, 9769, 9777, 3, 1344, 672, 0, 9770, 9778, 3, 1356, 678, 0, 9771, 9772, 5, 2, 0, 0, 9772, 9773, 3, 1280, 640, 0, 9773, 9774, 3, 994, 497, 0, 9774, 9775, 5, 3, 0, 0, 9775, 9776, 3, 1356, 678, 0, 9776, 9778, 1, 0, 0, 0, 9777, 9770, 1, 0, 0, 0, 9777, 9771, 1, 0, 0, 0, 9778, 9797, 1, 0, 0, 0, 9779, 9780, 3, 1122, 561, 0, 9780, 9781, 3, 1356, 678, 0, 9781, 9797, 1, 0, 0, 0, 9782, 9791, 3, 1150, 575, 0, 9783, 9784, 3, 1356, 678, 0, 9784, 9785, 3, 1154, 577, 0, 9785, 9792, 1, 0, 0, 0, 9786, 9787, 5, 2, 0, 0, 9787, 9788, 3, 1354, 677, 0, 9788, 9789, 5, 3, 0, 0, 9789, 9790, 3, 1356, 678, 0, 9790, 9792, 1, 0, 0, 0, 9791, 9783, 1, 0, 0, 0, 9791, 9786, 1, 0, 0, 0, 9792, 9797, 1, 0, 0, 0, 9793, 9797, 5, 96, 0, 0, 9794, 9797, 5, 60, 0, 0, 9795, 9797, 5, 78, 0, 0, 9796, 9764, 1, 0, 0, 0, 9796, 9765, 1, 0, 0, 0, 9796, 9766, 1, 0, 0, 0, 9796, 9767, 1, 0, 0, 0, 9796, 9768, 1, 0, 0, 0, 9796, 9769, 1, 0, 0, 0, 9796, 9779, 1, 0, 0, 0, 9796, 9782, 1, 0, 0, 0, 9796, 9793, 1, 0, 0, 0, 9796, 9794, 1, 0, 0, 0, 9796, 9795, 1, 0, 0, 0, 9797, 1347, 1, 0, 0, 0, 9798, 9799, 5, 654, 0, 0, 9799, 1349, 1, 0, 0, 0, 9800, 9801, 5, 650, 0, 0, 9801, 1351, 1, 0, 0, 0, 9802, 9803, 5, 660, 0, 0, 9803, 1353, 1, 0, 0, 0, 9804, 9805, 5, 658, 0, 0, 9805, 1355, 1, 0, 0, 0, 9806, 9807, 3, 1358, 679, 0, 9807, 9808, 3, 1360, 680, 0, 9808, 1357, 1, 0, 0, 0, 9809, 9821, 5, 645, 0, 0, 9810, 9821, 5, 647, 0, 0, 9811, 9815, 5, 649, 0, 0, 9812, 9814, 5, 677, 0, 0, 9813, 9812, 1, 0, 0, 0, 9814, 9817, 1, 0, 0, 0, 9815, 9813, 1, 0, 0, 0, 9815, 9816, 1, 0, 0, 0, 9816, 9818, 1, 0, 0, 0, 9817, 9815, 1, 0, 0, 0, 9818, 9821, 5, 678, 0, 0, 9819, 9821, 5, 671, 0, 0, 9820, 9809, 1, 0, 0, 0, 9820, 9810, 1, 0, 0, 0, 9820, 9811, 1, 0, 0, 0, 9820, 9819, 1, 0, 0, 0, 9821, 1359, 1, 0, 0, 0, 9822, 9823, 5, 487, 0, 0, 9823, 9826, 3, 1358, 679, 0, 9824, 9826, 1, 0, 0, 0, 9825, 9822, 1, 0, 0, 0, 9825, 9824, 1, 0, 0, 0, 9826, 1361, 1, 0, 0, 0, 9827, 9833, 3, 1354, 677, 0, 9828, 9829, 5, 12, 0, 0, 9829, 9833, 3, 1354, 677, 0, 9830, 9831, 5, 13, 0, 0, 9831, 9833, 3, 1354, 677, 0, 9832, 9827, 1, 0, 0, 0, 9832, 9828, 1, 0, 0, 0, 9832, 9830, 1, 0, 0, 0, 9833, 1363, 1, 0, 0, 0, 9834, 9835, 3, 1366, 683, 0, 9835, 1365, 1, 0, 0, 0, 9836, 9840, 3, 1376, 688, 0, 9837, 9840, 5, 52, 0, 0, 9838, 9840, 5, 89, 0, 0, 9839, 9836, 1, 0, 0, 0, 9839, 9837, 1, 0, 0, 0, 9839, 9838, 1, 0, 0, 0, 9840, 1367, 1, 0, 0, 0, 9841, 9846, 3, 1366, 683, 0, 9842, 9843, 5, 6, 0, 0, 9843, 9845, 3, 1366, 683, 0, 9844, 9842, 1, 0, 0, 0, 9845, 9848, 1, 0, 0, 0, 9846, 9844, 1, 0, 0, 0, 9846, 9847, 1, 0, 0, 0, 9847, 1369, 1, 0, 0, 0, 9848, 9846, 1, 0, 0, 0, 9849, 9856, 3, 1380, 690, 0, 9850, 9856, 3, 1384, 692, 0, 9851, 9856, 3, 1386, 693, 0, 9852, 9856, 3, 1606, 803, 0, 9853, 9856, 5, 119, 0, 0, 9854, 9856, 5, 126, 0, 0, 9855, 9849, 1, 0, 0, 0, 9855, 9850, 1, 0, 0, 0, 9855, 9851, 1, 0, 0, 0, 9855, 9852, 1, 0, 0, 0, 9855, 9853, 1, 0, 0, 0, 9855, 9854, 1, 0, 0, 0, 9856, 1371, 1, 0, 0, 0, 9857, 9862, 3, 1380, 690, 0, 9858, 9862, 3, 1384, 692, 0, 9859, 9862, 3, 1386, 693, 0, 9860, 9862, 3, 1606, 803, 0, 9861, 9857, 1, 0, 0, 0, 9861, 9858, 1, 0, 0, 0, 9861, 9859, 1, 0, 0, 0, 9861, 9860, 1, 0, 0, 0, 9862, 1373, 1, 0, 0, 0, 9863, 9868, 3, 1380, 690, 0, 9864, 9868, 3, 1384, 692, 0, 9865, 9868, 3, 1606, 803, 0, 9866, 9868, 3, 1388, 694, 0, 9867, 9863, 1, 0, 0, 0, 9867, 9864, 1, 0, 0, 0, 9867, 9865, 1, 0, 0, 0, 9867, 9866, 1, 0, 0, 0, 9868, 1375, 1, 0, 0, 0, 9869, 9874, 3, 1380, 690, 0, 9870, 9874, 3, 1384, 692, 0, 9871, 9874, 3, 1386, 693, 0, 9872, 9874, 3, 1388, 694, 0, 9873, 9869, 1, 0, 0, 0, 9873, 9870, 1, 0, 0, 0, 9873, 9871, 1, 0, 0, 0, 9873, 9872, 1, 0, 0, 0, 9874, 1377, 1, 0, 0, 0, 9875, 9882, 3, 1380, 690, 0, 9876, 9882, 3, 1606, 803, 0, 9877, 9882, 3, 1384, 692, 0, 9878, 9882, 3, 1386, 693, 0, 9879, 9882, 3, 1388, 694, 0, 9880, 9882, 3, 1390, 695, 0, 9881, 9875, 1, 0, 0, 0, 9881, 9876, 1, 0, 0, 0, 9881, 9877, 1, 0, 0, 0, 9881, 9878, 1, 0, 0, 0, 9881, 9879, 1, 0, 0, 0, 9881, 9880, 1, 0, 0, 0, 9882, 1379, 1, 0, 0, 0, 9883, 9884, 5, 636, 0, 0, 9884, 9891, 3, 1360, 680, 0, 9885, 9891, 5, 637, 0, 0, 9886, 9891, 5, 641, 0, 0, 9887, 9891, 3, 1206, 603, 0, 9888, 9891, 3, 1382, 691, 0, 9889, 9891, 3, 1606, 803, 0, 9890, 9883, 1, 0, 0, 0, 9890, 9885, 1, 0, 0, 0, 9890, 9886, 1, 0, 0, 0, 9890, 9887, 1, 0, 0, 0, 9890, 9888, 1, 0, 0, 0, 9890, 9889, 1, 0, 0, 0, 9891, 1381, 1, 0, 0, 0, 9892, 9893, 5, 662, 0, 0, 9893, 1383, 1, 0, 0, 0, 9894, 9895, 7, 60, 0, 0, 9895, 1385, 1, 0, 0, 0, 9896, 9949, 5, 380, 0, 0, 9897, 9949, 5, 381, 0, 0, 9898, 9949, 3, 1132, 566, 0, 9899, 9949, 5, 383, 0, 0, 9900, 9949, 5, 384, 0, 0, 9901, 9949, 3, 1140, 570, 0, 9902, 9949, 5, 386, 0, 0, 9903, 9949, 5, 387, 0, 0, 9904, 9949, 5, 388, 0, 0, 9905, 9949, 5, 389, 0, 0, 9906, 9949, 5, 390, 0, 0, 9907, 9949, 5, 391, 0, 0, 9908, 9949, 5, 392, 0, 0, 9909, 9949, 5, 470, 0, 0, 9910, 9949, 5, 393, 0, 0, 9911, 9949, 5, 394, 0, 0, 9912, 9949, 5, 395, 0, 0, 9913, 9949, 5, 396, 0, 0, 9914, 9949, 5, 397, 0, 0, 9915, 9949, 5, 398, 0, 0, 9916, 9949, 5, 399, 0, 0, 9917, 9949, 5, 400, 0, 0, 9918, 9949, 5, 489, 0, 0, 9919, 9949, 5, 401, 0, 0, 9920, 9949, 3, 1128, 564, 0, 9921, 9949, 5, 453, 0, 0, 9922, 9949, 5, 403, 0, 0, 9923, 9949, 5, 404, 0, 0, 9924, 9949, 5, 405, 0, 0, 9925, 9949, 5, 406, 0, 0, 9926, 9949, 5, 407, 0, 0, 9927, 9949, 5, 408, 0, 0, 9928, 9949, 5, 409, 0, 0, 9929, 9949, 5, 410, 0, 0, 9930, 9949, 5, 411, 0, 0, 9931, 9949, 5, 412, 0, 0, 9932, 9949, 5, 413, 0, 0, 9933, 9949, 5, 414, 0, 0, 9934, 9949, 5, 415, 0, 0, 9935, 9949, 5, 416, 0, 0, 9936, 9949, 5, 417, 0, 0, 9937, 9949, 5, 425, 0, 0, 9938, 9949, 5, 426, 0, 0, 9939, 9949, 5, 427, 0, 0, 9940, 9949, 5, 428, 0, 0, 9941, 9949, 5, 476, 0, 0, 9942, 9949, 5, 429, 0, 0, 9943, 9949, 5, 430, 0, 0, 9944, 9949, 5, 431, 0, 0, 9945, 9949, 5, 432, 0, 0, 9946, 9949, 5, 474, 0, 0, 9947, 9949, 3, 1392, 696, 0, 9948, 9896, 1, 0, 0, 0, 9948, 9897, 1, 0, 0, 0, 9948, 9898, 1, 0, 0, 0, 9948, 9899, 1, 0, 0, 0, 9948, 9900, 1, 0, 0, 0, 9948, 9901, 1, 0, 0, 0, 9948, 9902, 1, 0, 0, 0, 9948, 9903, 1, 0, 0, 0, 9948, 9904, 1, 0, 0, 0, 9948, 9905, 1, 0, 0, 0, 9948, 9906, 1, 0, 0, 0, 9948, 9907, 1, 0, 0, 0, 9948, 9908, 1, 0, 0, 0, 9948, 9909, 1, 0, 0, 0, 9948, 9910, 1, 0, 0, 0, 9948, 9911, 1, 0, 0, 0, 9948, 9912, 1, 0, 0, 0, 9948, 9913, 1, 0, 0, 0, 9948, 9914, 1, 0, 0, 0, 9948, 9915, 1, 0, 0, 0, 9948, 9916, 1, 0, 0, 0, 9948, 9917, 1, 0, 0, 0, 9948, 9918, 1, 0, 0, 0, 9948, 9919, 1, 0, 0, 0, 9948, 9920, 1, 0, 0, 0, 9948, 9921, 1, 0, 0, 0, 9948, 9922, 1, 0, 0, 0, 9948, 9923, 1, 0, 0, 0, 9948, 9924, 1, 0, 0, 0, 9948, 9925, 1, 0, 0, 0, 9948, 9926, 1, 0, 0, 0, 9948, 9927, 1, 0, 0, 0, 9948, 9928, 1, 0, 0, 0, 9948, 9929, 1, 0, 0, 0, 9948, 9930, 1, 0, 0, 0, 9948, 9931, 1, 0, 0, 0, 9948, 9932, 1, 0, 0, 0, 9948, 9933, 1, 0, 0, 0, 9948, 9934, 1, 0, 0, 0, 9948, 9935, 1, 0, 0, 0, 9948, 9936, 1, 0, 0, 0, 9948, 9937, 1, 0, 0, 0, 9948, 9938, 1, 0, 0, 0, 9948, 9939, 1, 0, 0, 0, 9948, 9940, 1, 0, 0, 0, 9948, 9941, 1, 0, 0, 0, 9948, 9942, 1, 0, 0, 0, 9948, 9943, 1, 0, 0, 0, 9948, 9944, 1, 0, 0, 0, 9948, 9945, 1, 0, 0, 0, 9948, 9946, 1, 0, 0, 0, 9948, 9947, 1, 0, 0, 0, 9949, 1387, 1, 0, 0, 0, 9950, 9951, 7, 61, 0, 0, 9951, 1389, 1, 0, 0, 0, 9952, 9953, 7, 62, 0, 0, 9953, 1391, 1, 0, 0, 0, 9954, 9955, 7, 63, 0, 0, 9955, 1393, 1, 0, 0, 0, 9956, 9957, 3, 1396, 698, 0, 9957, 9958, 3, 1406, 703, 0, 9958, 9959, 3, 1404, 702, 0, 9959, 1395, 1, 0, 0, 0, 9960, 9962, 3, 1398, 699, 0, 9961, 9960, 1, 0, 0, 0, 9962, 9965, 1, 0, 0, 0, 9963, 9961, 1, 0, 0, 0, 9963, 9964, 1, 0, 0, 0, 9964, 1397, 1, 0, 0, 0, 9965, 9963, 1, 0, 0, 0, 9966, 9967, 3, 1400, 700, 0, 9967, 9968, 5, 272, 0, 0, 9968, 9969, 5, 490, 0, 0, 9969, 9987, 1, 0, 0, 0, 9970, 9971, 3, 1400, 700, 0, 9971, 9972, 5, 491, 0, 0, 9972, 9973, 3, 1402, 701, 0, 9973, 9987, 1, 0, 0, 0, 9974, 9975, 3, 1400, 700, 0, 9975, 9976, 5, 492, 0, 0, 9976, 9977, 5, 493, 0, 0, 9977, 9987, 1, 0, 0, 0, 9978, 9979, 3, 1400, 700, 0, 9979, 9980, 5, 492, 0, 0, 9980, 9981, 5, 494, 0, 0, 9981, 9987, 1, 0, 0, 0, 9982, 9983, 3, 1400, 700, 0, 9983, 9984, 5, 492, 0, 0, 9984, 9985, 5, 495, 0, 0, 9985, 9987, 1, 0, 0, 0, 9986, 9966, 1, 0, 0, 0, 9986, 9970, 1, 0, 0, 0, 9986, 9974, 1, 0, 0, 0, 9986, 9978, 1, 0, 0, 0, 9986, 9982, 1, 0, 0, 0, 9987, 1399, 1, 0, 0, 0, 9988, 9989, 5, 29, 0, 0, 9989, 1401, 1, 0, 0, 0, 9990, 9995, 3, 1356, 678, 0, 9991, 9995, 3, 1390, 695, 0, 9992, 9995, 3, 1606, 803, 0, 9993, 9995, 3, 1384, 692, 0, 9994, 9990, 1, 0, 0, 0, 9994, 9991, 1, 0, 0, 0, 9994, 9992, 1, 0, 0, 0, 9994, 9993, 1, 0, 0, 0, 9995, 1403, 1, 0, 0, 0, 9996, 9999, 1, 0, 0, 0, 9997, 9999, 5, 7, 0, 0, 9998, 9996, 1, 0, 0, 0, 9998, 9997, 1, 0, 0, 0, 9999, 1405, 1, 0, 0, 0, 10000, 10001, 3, 1408, 704, 0, 10001, 10002, 5, 146, 0, 0, 10002, 10003, 3, 1450, 725, 0, 10003, 10004, 3, 1586, 793, 0, 10004, 10005, 5, 454, 0, 0, 10005, 10006, 3, 1600, 800, 0, 10006, 1407, 1, 0, 0, 0, 10007, 10012, 3, 1596, 798, 0, 10008, 10010, 3, 1410, 705, 0, 10009, 10011, 3, 1412, 706, 0, 10010, 10009, 1, 0, 0, 0, 10010, 10011, 1, 0, 0, 0, 10011, 10013, 1, 0, 0, 0, 10012, 10008, 1, 0, 0, 0, 10012, 10013, 1, 0, 0, 0, 10013, 1409, 1, 0, 0, 0, 10014, 10015, 5, 178, 0, 0, 10015, 1411, 1, 0, 0, 0, 10016, 10018, 3, 1416, 708, 0, 10017, 10016, 1, 0, 0, 0, 10018, 10019, 1, 0, 0, 0, 10019, 10017, 1, 0, 0, 0, 10019, 10020, 1, 0, 0, 0, 10020, 1413, 1, 0, 0, 0, 10021, 10022, 5, 18, 0, 0, 10022, 10023, 3, 1604, 802, 0, 10023, 10024, 5, 19, 0, 0, 10024, 1415, 1, 0, 0, 0, 10025, 10029, 3, 1418, 709, 0, 10026, 10029, 5, 178, 0, 0, 10027, 10029, 3, 1414, 707, 0, 10028, 10025, 1, 0, 0, 0, 10028, 10026, 1, 0, 0, 0, 10028, 10027, 1, 0, 0, 0, 10029, 1417, 1, 0, 0, 0, 10030, 10046, 3, 1434, 717, 0, 10031, 10032, 5, 496, 0, 0, 10032, 10033, 5, 62, 0, 0, 10033, 10047, 3, 1432, 716, 0, 10034, 10035, 3, 1436, 718, 0, 10035, 10036, 3, 1438, 719, 0, 10036, 10037, 3, 1440, 720, 0, 10037, 10038, 3, 1442, 721, 0, 10038, 10039, 3, 1444, 722, 0, 10039, 10047, 1, 0, 0, 0, 10040, 10041, 3, 1420, 710, 0, 10041, 10042, 5, 172, 0, 0, 10042, 10043, 3, 1424, 712, 0, 10043, 10044, 3, 1430, 715, 0, 10044, 10045, 3, 1422, 711, 0, 10045, 10047, 1, 0, 0, 0, 10046, 10031, 1, 0, 0, 0, 10046, 10034, 1, 0, 0, 0, 10046, 10040, 1, 0, 0, 0, 10047, 10048, 1, 0, 0, 0, 10048, 10049, 5, 7, 0, 0, 10049, 1419, 1, 0, 0, 0, 10050, 10055, 1, 0, 0, 0, 10051, 10052, 5, 262, 0, 0, 10052, 10055, 5, 317, 0, 0, 10053, 10055, 5, 317, 0, 0, 10054, 10050, 1, 0, 0, 0, 10054, 10051, 1, 0, 0, 0, 10054, 10053, 1, 0, 0, 0, 10055, 1421, 1, 0, 0, 0, 10056, 10057, 3, 958, 479, 0, 10057, 1423, 1, 0, 0, 0, 10058, 10064, 1, 0, 0, 0, 10059, 10060, 5, 2, 0, 0, 10060, 10061, 3, 1426, 713, 0, 10061, 10062, 5, 3, 0, 0, 10062, 10064, 1, 0, 0, 0, 10063, 10058, 1, 0, 0, 0, 10063, 10059, 1, 0, 0, 0, 10064, 1425, 1, 0, 0, 0, 10065, 10070, 3, 1428, 714, 0, 10066, 10067, 5, 6, 0, 0, 10067, 10069, 3, 1428, 714, 0, 10068, 10066, 1, 0, 0, 0, 10069, 10072, 1, 0, 0, 0, 10070, 10068, 1, 0, 0, 0, 10070, 10071, 1, 0, 0, 0, 10071, 1427, 1, 0, 0, 0, 10072, 10070, 1, 0, 0, 0, 10073, 10074, 3, 1434, 717, 0, 10074, 10075, 3, 1438, 719, 0, 10075, 1429, 1, 0, 0, 0, 10076, 10077, 7, 64, 0, 0, 10077, 1431, 1, 0, 0, 0, 10078, 10081, 5, 28, 0, 0, 10079, 10081, 3, 1370, 685, 0, 10080, 10078, 1, 0, 0, 0, 10080, 10079, 1, 0, 0, 0, 10081, 1433, 1, 0, 0, 0, 10082, 10083, 3, 1604, 802, 0, 10083, 1435, 1, 0, 0, 0, 10084, 10087, 1, 0, 0, 0, 10085, 10087, 5, 497, 0, 0, 10086, 10084, 1, 0, 0, 0, 10086, 10085, 1, 0, 0, 0, 10087, 1437, 1, 0, 0, 0, 10088, 10089, 3, 1116, 558, 0, 10089, 1439, 1, 0, 0, 0, 10090, 10094, 1, 0, 0, 0, 10091, 10092, 5, 43, 0, 0, 10092, 10094, 3, 522, 261, 0, 10093, 10090, 1, 0, 0, 0, 10093, 10091, 1, 0, 0, 0, 10094, 1441, 1, 0, 0, 0, 10095, 10099, 1, 0, 0, 0, 10096, 10097, 5, 77, 0, 0, 10097, 10099, 5, 78, 0, 0, 10098, 10095, 1, 0, 0, 0, 10098, 10096, 1, 0, 0, 0, 10099, 1443, 1, 0, 0, 0, 10100, 10105, 1, 0, 0, 0, 10101, 10102, 3, 1446, 723, 0, 10102, 10103, 3, 1608, 804, 0, 10103, 10105, 1, 0, 0, 0, 10104, 10100, 1, 0, 0, 0, 10104, 10101, 1, 0, 0, 0, 10105, 1445, 1, 0, 0, 0, 10106, 10109, 3, 1448, 724, 0, 10107, 10109, 5, 53, 0, 0, 10108, 10106, 1, 0, 0, 0, 10108, 10107, 1, 0, 0, 0, 10109, 1447, 1, 0, 0, 0, 10110, 10111, 7, 65, 0, 0, 10111, 1449, 1, 0, 0, 0, 10112, 10114, 3, 1452, 726, 0, 10113, 10112, 1, 0, 0, 0, 10114, 10117, 1, 0, 0, 0, 10115, 10113, 1, 0, 0, 0, 10115, 10116, 1, 0, 0, 0, 10116, 1451, 1, 0, 0, 0, 10117, 10115, 1, 0, 0, 0, 10118, 10119, 3, 1406, 703, 0, 10119, 10120, 5, 7, 0, 0, 10120, 10146, 1, 0, 0, 0, 10121, 10146, 3, 1518, 759, 0, 10122, 10146, 3, 1522, 761, 0, 10123, 10146, 3, 1460, 730, 0, 10124, 10146, 3, 1476, 738, 0, 10125, 10146, 3, 1482, 741, 0, 10126, 10146, 3, 1492, 746, 0, 10127, 10146, 3, 1494, 747, 0, 10128, 10146, 3, 1496, 748, 0, 10129, 10146, 3, 1510, 755, 0, 10130, 10146, 3, 1514, 757, 0, 10131, 10146, 3, 1534, 767, 0, 10132, 10146, 3, 1540, 770, 0, 10133, 10146, 3, 1542, 771, 0, 10134, 10146, 3, 1454, 727, 0, 10135, 10146, 3, 1456, 728, 0, 10136, 10146, 3, 1462, 731, 0, 10137, 10146, 3, 1550, 775, 0, 10138, 10146, 3, 1562, 781, 0, 10139, 10146, 3, 1570, 785, 0, 10140, 10146, 3, 1572, 786, 0, 10141, 10146, 3, 1574, 787, 0, 10142, 10146, 3, 1576, 788, 0, 10143, 10146, 3, 1578, 789, 0, 10144, 10146, 3, 1582, 791, 0, 10145, 10118, 1, 0, 0, 0, 10145, 10121, 1, 0, 0, 0, 10145, 10122, 1, 0, 0, 0, 10145, 10123, 1, 0, 0, 0, 10145, 10124, 1, 0, 0, 0, 10145, 10125, 1, 0, 0, 0, 10145, 10126, 1, 0, 0, 0, 10145, 10127, 1, 0, 0, 0, 10145, 10128, 1, 0, 0, 0, 10145, 10129, 1, 0, 0, 0, 10145, 10130, 1, 0, 0, 0, 10145, 10131, 1, 0, 0, 0, 10145, 10132, 1, 0, 0, 0, 10145, 10133, 1, 0, 0, 0, 10145, 10134, 1, 0, 0, 0, 10145, 10135, 1, 0, 0, 0, 10145, 10136, 1, 0, 0, 0, 10145, 10137, 1, 0, 0, 0, 10145, 10138, 1, 0, 0, 0, 10145, 10139, 1, 0, 0, 0, 10145, 10140, 1, 0, 0, 0, 10145, 10141, 1, 0, 0, 0, 10145, 10142, 1, 0, 0, 0, 10145, 10143, 1, 0, 0, 0, 10145, 10144, 1, 0, 0, 0, 10146, 1453, 1, 0, 0, 0, 10147, 10148, 5, 498, 0, 0, 10148, 10149, 3, 1612, 806, 0, 10149, 10150, 5, 7, 0, 0, 10150, 1455, 1, 0, 0, 0, 10151, 10152, 5, 433, 0, 0, 10152, 10153, 3, 1604, 802, 0, 10153, 10154, 5, 2, 0, 0, 10154, 10155, 3, 1458, 729, 0, 10155, 10156, 5, 3, 0, 0, 10156, 10157, 5, 7, 0, 0, 10157, 10166, 1, 0, 0, 0, 10158, 10159, 5, 57, 0, 0, 10159, 10160, 3, 1604, 802, 0, 10160, 10161, 5, 2, 0, 0, 10161, 10162, 3, 1458, 729, 0, 10162, 10163, 5, 3, 0, 0, 10163, 10164, 5, 7, 0, 0, 10164, 10166, 1, 0, 0, 0, 10165, 10151, 1, 0, 0, 0, 10165, 10158, 1, 0, 0, 0, 10166, 1457, 1, 0, 0, 0, 10167, 10170, 1, 0, 0, 0, 10168, 10170, 3, 1278, 639, 0, 10169, 10167, 1, 0, 0, 0, 10169, 10168, 1, 0, 0, 0, 10170, 1459, 1, 0, 0, 0, 10171, 10172, 3, 1474, 737, 0, 10172, 10173, 3, 1448, 724, 0, 10173, 10174, 3, 1608, 804, 0, 10174, 10175, 5, 7, 0, 0, 10175, 1461, 1, 0, 0, 0, 10176, 10177, 5, 499, 0, 0, 10177, 10178, 3, 1464, 732, 0, 10178, 10179, 5, 500, 0, 0, 10179, 10180, 3, 1466, 733, 0, 10180, 10181, 5, 7, 0, 0, 10181, 1463, 1, 0, 0, 0, 10182, 10186, 1, 0, 0, 0, 10183, 10186, 5, 434, 0, 0, 10184, 10186, 5, 501, 0, 0, 10185, 10182, 1, 0, 0, 0, 10185, 10183, 1, 0, 0, 0, 10185, 10184, 1, 0, 0, 0, 10186, 1465, 1, 0, 0, 0, 10187, 10192, 3, 1468, 734, 0, 10188, 10189, 5, 6, 0, 0, 10189, 10191, 3, 1468, 734, 0, 10190, 10188, 1, 0, 0, 0, 10191, 10194, 1, 0, 0, 0, 10192, 10190, 1, 0, 0, 0, 10192, 10193, 1, 0, 0, 0, 10193, 1467, 1, 0, 0, 0, 10194, 10192, 1, 0, 0, 0, 10195, 10196, 3, 1472, 736, 0, 10196, 10197, 3, 1448, 724, 0, 10197, 10198, 3, 1470, 735, 0, 10198, 1469, 1, 0, 0, 0, 10199, 10200, 3, 1370, 685, 0, 10200, 1471, 1, 0, 0, 0, 10201, 10202, 3, 1474, 737, 0, 10202, 1473, 1, 0, 0, 0, 10203, 10206, 3, 522, 261, 0, 10204, 10206, 5, 28, 0, 0, 10205, 10203, 1, 0, 0, 0, 10205, 10204, 1, 0, 0, 0, 10206, 10213, 1, 0, 0, 0, 10207, 10208, 5, 4, 0, 0, 10208, 10209, 3, 1614, 807, 0, 10209, 10210, 5, 5, 0, 0, 10210, 10212, 1, 0, 0, 0, 10211, 10207, 1, 0, 0, 0, 10212, 10215, 1, 0, 0, 0, 10213, 10211, 1, 0, 0, 0, 10213, 10214, 1, 0, 0, 0, 10214, 1475, 1, 0, 0, 0, 10215, 10213, 1, 0, 0, 0, 10216, 10217, 5, 220, 0, 0, 10217, 10218, 3, 1610, 805, 0, 10218, 10219, 5, 93, 0, 0, 10219, 10220, 3, 1450, 725, 0, 10220, 10221, 3, 1478, 739, 0, 10221, 10222, 3, 1480, 740, 0, 10222, 10223, 5, 454, 0, 0, 10223, 10224, 5, 220, 0, 0, 10224, 10225, 5, 7, 0, 0, 10225, 1477, 1, 0, 0, 0, 10226, 10227, 5, 502, 0, 0, 10227, 10228, 3, 1160, 580, 0, 10228, 10229, 5, 93, 0, 0, 10229, 10230, 3, 1450, 725, 0, 10230, 10232, 1, 0, 0, 0, 10231, 10226, 1, 0, 0, 0, 10232, 10235, 1, 0, 0, 0, 10233, 10231, 1, 0, 0, 0, 10233, 10234, 1, 0, 0, 0, 10234, 1479, 1, 0, 0, 0, 10235, 10233, 1, 0, 0, 0, 10236, 10240, 1, 0, 0, 0, 10237, 10238, 5, 58, 0, 0, 10238, 10240, 3, 1450, 725, 0, 10239, 10236, 1, 0, 0, 0, 10239, 10237, 1, 0, 0, 0, 10240, 1481, 1, 0, 0, 0, 10241, 10242, 5, 40, 0, 0, 10242, 10243, 3, 1484, 742, 0, 10243, 10244, 3, 1486, 743, 0, 10244, 10245, 3, 1490, 745, 0, 10245, 10246, 5, 454, 0, 0, 10246, 10247, 5, 40, 0, 0, 10247, 10248, 5, 7, 0, 0, 10248, 1483, 1, 0, 0, 0, 10249, 10252, 1, 0, 0, 0, 10250, 10252, 3, 1608, 804, 0, 10251, 10249, 1, 0, 0, 0, 10251, 10250, 1, 0, 0, 0, 10252, 1485, 1, 0, 0, 0, 10253, 10255, 3, 1488, 744, 0, 10254, 10253, 1, 0, 0, 0, 10255, 10256, 1, 0, 0, 0, 10256, 10254, 1, 0, 0, 0, 10256, 10257, 1, 0, 0, 0, 10257, 1487, 1, 0, 0, 0, 10258, 10259, 5, 102, 0, 0, 10259, 10260, 3, 1278, 639, 0, 10260, 10261, 5, 93, 0, 0, 10261, 10262, 3, 1450, 725, 0, 10262, 1489, 1, 0, 0, 0, 10263, 10267, 1, 0, 0, 0, 10264, 10265, 5, 58, 0, 0, 10265, 10267, 3, 1450, 725, 0, 10266, 10263, 1, 0, 0, 0, 10266, 10264, 1, 0, 0, 0, 10267, 1491, 1, 0, 0, 0, 10268, 10269, 3, 1598, 799, 0, 10269, 10270, 3, 1538, 769, 0, 10270, 1493, 1, 0, 0, 0, 10271, 10272, 3, 1598, 799, 0, 10272, 10273, 5, 503, 0, 0, 10273, 10274, 3, 1616, 808, 0, 10274, 10275, 3, 1538, 769, 0, 10275, 1495, 1, 0, 0, 0, 10276, 10277, 3, 1598, 799, 0, 10277, 10278, 5, 62, 0, 0, 10278, 10279, 3, 1498, 749, 0, 10279, 10280, 3, 1538, 769, 0, 10280, 1497, 1, 0, 0, 0, 10281, 10282, 3, 1508, 754, 0, 10282, 10298, 5, 68, 0, 0, 10283, 10284, 3, 952, 476, 0, 10284, 10285, 3, 1502, 751, 0, 10285, 10299, 1, 0, 0, 0, 10286, 10299, 3, 958, 479, 0, 10287, 10299, 3, 876, 438, 0, 10288, 10289, 5, 202, 0, 0, 10289, 10290, 3, 1160, 580, 0, 10290, 10291, 3, 1500, 750, 0, 10291, 10299, 1, 0, 0, 0, 10292, 10293, 3, 1504, 752, 0, 10293, 10294, 3, 1160, 580, 0, 10294, 10295, 5, 24, 0, 0, 10295, 10296, 3, 1160, 580, 0, 10296, 10297, 3, 1506, 753, 0, 10297, 10299, 1, 0, 0, 0, 10298, 10283, 1, 0, 0, 0, 10298, 10286, 1, 0, 0, 0, 10298, 10287, 1, 0, 0, 0, 10298, 10288, 1, 0, 0, 0, 10298, 10292, 1, 0, 0, 0, 10299, 1499, 1, 0, 0, 0, 10300, 10304, 1, 0, 0, 0, 10301, 10302, 5, 100, 0, 0, 10302, 10304, 3, 1278, 639, 0, 10303, 10300, 1, 0, 0, 0, 10303, 10301, 1, 0, 0, 0, 10304, 1501, 1, 0, 0, 0, 10305, 10318, 1, 0, 0, 0, 10306, 10307, 5, 2, 0, 0, 10307, 10312, 3, 1160, 580, 0, 10308, 10309, 5, 6, 0, 0, 10309, 10311, 3, 1160, 580, 0, 10310, 10308, 1, 0, 0, 0, 10311, 10314, 1, 0, 0, 0, 10312, 10310, 1, 0, 0, 0, 10312, 10313, 1, 0, 0, 0, 10313, 10315, 1, 0, 0, 0, 10314, 10312, 1, 0, 0, 0, 10315, 10316, 5, 3, 0, 0, 10316, 10318, 1, 0, 0, 0, 10317, 10305, 1, 0, 0, 0, 10317, 10306, 1, 0, 0, 0, 10318, 1503, 1, 0, 0, 0, 10319, 10322, 1, 0, 0, 0, 10320, 10322, 5, 504, 0, 0, 10321, 10319, 1, 0, 0, 0, 10321, 10320, 1, 0, 0, 0, 10322, 1505, 1, 0, 0, 0, 10323, 10327, 1, 0, 0, 0, 10324, 10325, 5, 147, 0, 0, 10325, 10327, 3, 1160, 580, 0, 10326, 10323, 1, 0, 0, 0, 10326, 10324, 1, 0, 0, 0, 10327, 1507, 1, 0, 0, 0, 10328, 10329, 3, 520, 260, 0, 10329, 1509, 1, 0, 0, 0, 10330, 10331, 3, 1598, 799, 0, 10331, 10332, 5, 505, 0, 0, 10332, 10333, 3, 1508, 754, 0, 10333, 10334, 3, 1512, 756, 0, 10334, 10335, 5, 68, 0, 0, 10335, 10336, 5, 35, 0, 0, 10336, 10337, 3, 1160, 580, 0, 10337, 10338, 3, 1538, 769, 0, 10338, 1511, 1, 0, 0, 0, 10339, 10343, 1, 0, 0, 0, 10340, 10341, 5, 506, 0, 0, 10341, 10343, 3, 1354, 677, 0, 10342, 10339, 1, 0, 0, 0, 10342, 10340, 1, 0, 0, 0, 10343, 1513, 1, 0, 0, 0, 10344, 10345, 3, 1516, 758, 0, 10345, 10346, 3, 1600, 800, 0, 10346, 10347, 3, 1602, 801, 0, 10347, 10348, 5, 7, 0, 0, 10348, 1515, 1, 0, 0, 0, 10349, 10350, 7, 66, 0, 0, 10350, 1517, 1, 0, 0, 0, 10351, 10363, 5, 508, 0, 0, 10352, 10353, 5, 261, 0, 0, 10353, 10364, 3, 1608, 804, 0, 10354, 10360, 5, 509, 0, 0, 10355, 10356, 5, 202, 0, 0, 10356, 10357, 3, 1160, 580, 0, 10357, 10358, 3, 1500, 750, 0, 10358, 10361, 1, 0, 0, 0, 10359, 10361, 3, 958, 479, 0, 10360, 10355, 1, 0, 0, 0, 10360, 10359, 1, 0, 0, 0, 10361, 10364, 1, 0, 0, 0, 10362, 10364, 3, 1520, 760, 0, 10363, 10352, 1, 0, 0, 0, 10363, 10354, 1, 0, 0, 0, 10363, 10362, 1, 0, 0, 0, 10364, 10365, 1, 0, 0, 0, 10365, 10366, 5, 7, 0, 0, 10366, 1519, 1, 0, 0, 0, 10367, 10370, 1, 0, 0, 0, 10368, 10370, 3, 1608, 804, 0, 10369, 10367, 1, 0, 0, 0, 10369, 10368, 1, 0, 0, 0, 10370, 1521, 1, 0, 0, 0, 10371, 10372, 5, 510, 0, 0, 10372, 10373, 3, 1524, 762, 0, 10373, 10374, 3, 1356, 678, 0, 10374, 10375, 3, 1526, 763, 0, 10375, 10376, 3, 1528, 764, 0, 10376, 10377, 5, 7, 0, 0, 10377, 10398, 1, 0, 0, 0, 10378, 10379, 5, 510, 0, 0, 10379, 10380, 3, 1524, 762, 0, 10380, 10381, 3, 1380, 690, 0, 10381, 10382, 3, 1528, 764, 0, 10382, 10383, 5, 7, 0, 0, 10383, 10398, 1, 0, 0, 0, 10384, 10385, 5, 510, 0, 0, 10385, 10386, 3, 1524, 762, 0, 10386, 10387, 5, 511, 0, 0, 10387, 10388, 3, 1356, 678, 0, 10388, 10389, 3, 1528, 764, 0, 10389, 10390, 5, 7, 0, 0, 10390, 10398, 1, 0, 0, 0, 10391, 10392, 5, 510, 0, 0, 10392, 10393, 3, 1524, 762, 0, 10393, 10394, 3, 1528, 764, 0, 10394, 10395, 5, 7, 0, 0, 10395, 10398, 1, 0, 0, 0, 10396, 10398, 5, 510, 0, 0, 10397, 10371, 1, 0, 0, 0, 10397, 10378, 1, 0, 0, 0, 10397, 10384, 1, 0, 0, 0, 10397, 10391, 1, 0, 0, 0, 10397, 10396, 1, 0, 0, 0, 10398, 1523, 1, 0, 0, 0, 10399, 10408, 1, 0, 0, 0, 10400, 10408, 1, 0, 0, 0, 10401, 10408, 5, 512, 0, 0, 10402, 10408, 5, 513, 0, 0, 10403, 10408, 5, 514, 0, 0, 10404, 10408, 5, 515, 0, 0, 10405, 10408, 5, 516, 0, 0, 10406, 10408, 5, 517, 0, 0, 10407, 10399, 1, 0, 0, 0, 10407, 10400, 1, 0, 0, 0, 10407, 10401, 1, 0, 0, 0, 10407, 10402, 1, 0, 0, 0, 10407, 10403, 1, 0, 0, 0, 10407, 10404, 1, 0, 0, 0, 10407, 10405, 1, 0, 0, 0, 10407, 10406, 1, 0, 0, 0, 10408, 1525, 1, 0, 0, 0, 10409, 10417, 1, 0, 0, 0, 10410, 10411, 5, 6, 0, 0, 10411, 10413, 3, 1160, 580, 0, 10412, 10410, 1, 0, 0, 0, 10413, 10414, 1, 0, 0, 0, 10414, 10412, 1, 0, 0, 0, 10414, 10415, 1, 0, 0, 0, 10415, 10417, 1, 0, 0, 0, 10416, 10409, 1, 0, 0, 0, 10416, 10412, 1, 0, 0, 0, 10417, 1527, 1, 0, 0, 0, 10418, 10422, 1, 0, 0, 0, 10419, 10420, 5, 100, 0, 0, 10420, 10422, 3, 1532, 766, 0, 10421, 10418, 1, 0, 0, 0, 10421, 10419, 1, 0, 0, 0, 10422, 1529, 1, 0, 0, 0, 10423, 10424, 3, 1380, 690, 0, 10424, 10425, 5, 10, 0, 0, 10425, 10426, 3, 1160, 580, 0, 10426, 1531, 1, 0, 0, 0, 10427, 10432, 3, 1530, 765, 0, 10428, 10429, 5, 6, 0, 0, 10429, 10431, 3, 1530, 765, 0, 10430, 10428, 1, 0, 0, 0, 10431, 10434, 1, 0, 0, 0, 10432, 10430, 1, 0, 0, 0, 10432, 10433, 1, 0, 0, 0, 10433, 1533, 1, 0, 0, 0, 10434, 10432, 1, 0, 0, 0, 10435, 10436, 5, 518, 0, 0, 10436, 10437, 3, 1608, 804, 0, 10437, 10438, 3, 1536, 768, 0, 10438, 10439, 5, 7, 0, 0, 10439, 1535, 1, 0, 0, 0, 10440, 10444, 1, 0, 0, 0, 10441, 10442, 5, 6, 0, 0, 10442, 10444, 3, 1608, 804, 0, 10443, 10440, 1, 0, 0, 0, 10443, 10441, 1, 0, 0, 0, 10444, 1537, 1, 0, 0, 0, 10445, 10446, 5, 519, 0, 0, 10446, 10447, 3, 1450, 725, 0, 10447, 10448, 5, 454, 0, 0, 10448, 10449, 5, 519, 0, 0, 10449, 10450, 3, 1600, 800, 0, 10450, 10451, 5, 7, 0, 0, 10451, 1539, 1, 0, 0, 0, 10452, 10453, 3, 1618, 809, 0, 10453, 10454, 5, 7, 0, 0, 10454, 1541, 1, 0, 0, 0, 10455, 10456, 5, 202, 0, 0, 10456, 10464, 3, 1160, 580, 0, 10457, 10458, 3, 1548, 774, 0, 10458, 10459, 3, 1544, 772, 0, 10459, 10465, 1, 0, 0, 0, 10460, 10461, 3, 1544, 772, 0, 10461, 10462, 3, 1548, 774, 0, 10462, 10465, 1, 0, 0, 0, 10463, 10465, 1, 0, 0, 0, 10464, 10457, 1, 0, 0, 0, 10464, 10460, 1, 0, 0, 0, 10464, 10463, 1, 0, 0, 0, 10465, 10466, 1, 0, 0, 0, 10466, 10467, 5, 7, 0, 0, 10467, 1543, 1, 0, 0, 0, 10468, 10472, 1, 0, 0, 0, 10469, 10470, 5, 100, 0, 0, 10470, 10472, 3, 1546, 773, 0, 10471, 10468, 1, 0, 0, 0, 10471, 10469, 1, 0, 0, 0, 10472, 1545, 1, 0, 0, 0, 10473, 10478, 3, 1160, 580, 0, 10474, 10475, 5, 6, 0, 0, 10475, 10477, 3, 1160, 580, 0, 10476, 10474, 1, 0, 0, 0, 10477, 10480, 1, 0, 0, 0, 10478, 10476, 1, 0, 0, 0, 10478, 10479, 1, 0, 0, 0, 10479, 1547, 1, 0, 0, 0, 10480, 10478, 1, 0, 0, 0, 10481, 10488, 1, 0, 0, 0, 10482, 10484, 5, 71, 0, 0, 10483, 10485, 5, 339, 0, 0, 10484, 10483, 1, 0, 0, 0, 10484, 10485, 1, 0, 0, 0, 10485, 10486, 1, 0, 0, 0, 10486, 10488, 3, 1564, 782, 0, 10487, 10481, 1, 0, 0, 0, 10487, 10482, 1, 0, 0, 0, 10488, 1549, 1, 0, 0, 0, 10489, 10507, 5, 520, 0, 0, 10490, 10491, 3, 1584, 792, 0, 10491, 10492, 3, 1558, 779, 0, 10492, 10498, 5, 62, 0, 0, 10493, 10499, 3, 958, 479, 0, 10494, 10495, 5, 202, 0, 0, 10495, 10496, 3, 1608, 804, 0, 10496, 10497, 3, 1556, 778, 0, 10497, 10499, 1, 0, 0, 0, 10498, 10493, 1, 0, 0, 0, 10498, 10494, 1, 0, 0, 0, 10499, 10508, 1, 0, 0, 0, 10500, 10505, 3, 1370, 685, 0, 10501, 10502, 5, 2, 0, 0, 10502, 10503, 3, 1554, 777, 0, 10503, 10504, 5, 3, 0, 0, 10504, 10506, 1, 0, 0, 0, 10505, 10501, 1, 0, 0, 0, 10505, 10506, 1, 0, 0, 0, 10506, 10508, 1, 0, 0, 0, 10507, 10490, 1, 0, 0, 0, 10507, 10500, 1, 0, 0, 0, 10508, 10509, 1, 0, 0, 0, 10509, 10510, 5, 7, 0, 0, 10510, 1551, 1, 0, 0, 0, 10511, 10512, 3, 1370, 685, 0, 10512, 10513, 5, 20, 0, 0, 10513, 10514, 3, 1160, 580, 0, 10514, 10517, 1, 0, 0, 0, 10515, 10517, 3, 1160, 580, 0, 10516, 10511, 1, 0, 0, 0, 10516, 10515, 1, 0, 0, 0, 10517, 1553, 1, 0, 0, 0, 10518, 10523, 3, 1552, 776, 0, 10519, 10520, 5, 6, 0, 0, 10520, 10522, 3, 1552, 776, 0, 10521, 10519, 1, 0, 0, 0, 10522, 10525, 1, 0, 0, 0, 10523, 10521, 1, 0, 0, 0, 10523, 10524, 1, 0, 0, 0, 10524, 1555, 1, 0, 0, 0, 10525, 10523, 1, 0, 0, 0, 10526, 10530, 1, 0, 0, 0, 10527, 10528, 5, 100, 0, 0, 10528, 10530, 3, 1278, 639, 0, 10529, 10526, 1, 0, 0, 0, 10529, 10527, 1, 0, 0, 0, 10530, 1557, 1, 0, 0, 0, 10531, 10536, 1, 0, 0, 0, 10532, 10533, 3, 1560, 780, 0, 10533, 10534, 5, 317, 0, 0, 10534, 10536, 1, 0, 0, 0, 10535, 10531, 1, 0, 0, 0, 10535, 10532, 1, 0, 0, 0, 10536, 1559, 1, 0, 0, 0, 10537, 10540, 1, 0, 0, 0, 10538, 10540, 5, 262, 0, 0, 10539, 10537, 1, 0, 0, 0, 10539, 10538, 1, 0, 0, 0, 10540, 1561, 1, 0, 0, 0, 10541, 10542, 5, 61, 0, 0, 10542, 10543, 3, 1568, 784, 0, 10543, 10544, 3, 1566, 783, 0, 10544, 10545, 3, 1584, 792, 0, 10545, 10546, 5, 71, 0, 0, 10546, 10547, 3, 1564, 782, 0, 10547, 10548, 5, 7, 0, 0, 10548, 1563, 1, 0, 0, 0, 10549, 10550, 3, 1278, 639, 0, 10550, 1565, 1, 0, 0, 0, 10551, 10555, 1, 0, 0, 0, 10552, 10555, 5, 64, 0, 0, 10553, 10555, 5, 68, 0, 0, 10554, 10551, 1, 0, 0, 0, 10554, 10552, 1, 0, 0, 0, 10554, 10553, 1, 0, 0, 0, 10555, 1567, 1, 0, 0, 0, 10556, 10574, 1, 0, 0, 0, 10557, 10574, 1, 0, 0, 0, 10558, 10574, 5, 261, 0, 0, 10559, 10574, 5, 286, 0, 0, 10560, 10574, 5, 207, 0, 0, 10561, 10574, 5, 240, 0, 0, 10562, 10563, 5, 130, 0, 0, 10563, 10574, 3, 1160, 580, 0, 10564, 10565, 5, 300, 0, 0, 10565, 10574, 3, 1160, 580, 0, 10566, 10574, 3, 1160, 580, 0, 10567, 10574, 5, 30, 0, 0, 10568, 10571, 7, 67, 0, 0, 10569, 10572, 3, 1160, 580, 0, 10570, 10572, 5, 30, 0, 0, 10571, 10569, 1, 0, 0, 0, 10571, 10570, 1, 0, 0, 0, 10571, 10572, 1, 0, 0, 0, 10572, 10574, 1, 0, 0, 0, 10573, 10556, 1, 0, 0, 0, 10573, 10557, 1, 0, 0, 0, 10573, 10558, 1, 0, 0, 0, 10573, 10559, 1, 0, 0, 0, 10573, 10560, 1, 0, 0, 0, 10573, 10561, 1, 0, 0, 0, 10573, 10562, 1, 0, 0, 0, 10573, 10564, 1, 0, 0, 0, 10573, 10566, 1, 0, 0, 0, 10573, 10567, 1, 0, 0, 0, 10573, 10568, 1, 0, 0, 0, 10574, 1569, 1, 0, 0, 0, 10575, 10576, 5, 258, 0, 0, 10576, 10577, 3, 1568, 784, 0, 10577, 10578, 3, 1584, 792, 0, 10578, 10579, 5, 7, 0, 0, 10579, 1571, 1, 0, 0, 0, 10580, 10581, 5, 157, 0, 0, 10581, 10582, 3, 1584, 792, 0, 10582, 10583, 5, 7, 0, 0, 10583, 1573, 1, 0, 0, 0, 10584, 10585, 5, 78, 0, 0, 10585, 10586, 5, 7, 0, 0, 10586, 1575, 1, 0, 0, 0, 10587, 10588, 5, 161, 0, 0, 10588, 10589, 3, 1580, 790, 0, 10589, 10590, 5, 7, 0, 0, 10590, 1577, 1, 0, 0, 0, 10591, 10592, 5, 312, 0, 0, 10592, 10593, 3, 1580, 790, 0, 10593, 10594, 5, 7, 0, 0, 10594, 1579, 1, 0, 0, 0, 10595, 10597, 5, 33, 0, 0, 10596, 10598, 5, 262, 0, 0, 10597, 10596, 1, 0, 0, 0, 10597, 10598, 1, 0, 0, 0, 10598, 10599, 1, 0, 0, 0, 10599, 10602, 5, 153, 0, 0, 10600, 10602, 1, 0, 0, 0, 10601, 10595, 1, 0, 0, 0, 10601, 10600, 1, 0, 0, 0, 10602, 1581, 1, 0, 0, 0, 10603, 10604, 5, 326, 0, 0, 10604, 10605, 3, 522, 261, 0, 10605, 10606, 5, 94, 0, 0, 10606, 10607, 5, 53, 0, 0, 10607, 10608, 5, 7, 0, 0, 10608, 10616, 1, 0, 0, 0, 10609, 10612, 5, 306, 0, 0, 10610, 10613, 3, 522, 261, 0, 10611, 10613, 5, 30, 0, 0, 10612, 10610, 1, 0, 0, 0, 10612, 10611, 1, 0, 0, 0, 10613, 10614, 1, 0, 0, 0, 10614, 10616, 5, 7, 0, 0, 10615, 10603, 1, 0, 0, 0, 10615, 10609, 1, 0, 0, 0, 10616, 1583, 1, 0, 0, 0, 10617, 10620, 3, 1370, 685, 0, 10618, 10620, 5, 28, 0, 0, 10619, 10617, 1, 0, 0, 0, 10619, 10618, 1, 0, 0, 0, 10620, 1585, 1, 0, 0, 0, 10621, 10625, 1, 0, 0, 0, 10622, 10623, 5, 517, 0, 0, 10623, 10625, 3, 1588, 794, 0, 10624, 10621, 1, 0, 0, 0, 10624, 10622, 1, 0, 0, 0, 10625, 1587, 1, 0, 0, 0, 10626, 10628, 3, 1590, 795, 0, 10627, 10626, 1, 0, 0, 0, 10628, 10629, 1, 0, 0, 0, 10629, 10627, 1, 0, 0, 0, 10629, 10630, 1, 0, 0, 0, 10630, 1589, 1, 0, 0, 0, 10631, 10632, 5, 102, 0, 0, 10632, 10633, 3, 1592, 796, 0, 10633, 10634, 5, 93, 0, 0, 10634, 10635, 3, 1450, 725, 0, 10635, 1591, 1, 0, 0, 0, 10636, 10641, 3, 1594, 797, 0, 10637, 10638, 5, 82, 0, 0, 10638, 10640, 3, 1594, 797, 0, 10639, 10637, 1, 0, 0, 0, 10640, 10643, 1, 0, 0, 0, 10641, 10639, 1, 0, 0, 0, 10641, 10642, 1, 0, 0, 0, 10642, 1593, 1, 0, 0, 0, 10643, 10641, 1, 0, 0, 0, 10644, 10648, 3, 1604, 802, 0, 10645, 10646, 5, 511, 0, 0, 10646, 10648, 3, 1356, 678, 0, 10647, 10644, 1, 0, 0, 0, 10647, 10645, 1, 0, 0, 0, 10648, 1595, 1, 0, 0, 0, 10649, 10652, 1, 0, 0, 0, 10650, 10652, 3, 1414, 707, 0, 10651, 10649, 1, 0, 0, 0, 10651, 10650, 1, 0, 0, 0, 10652, 1597, 1, 0, 0, 0, 10653, 10656, 1, 0, 0, 0, 10654, 10656, 3, 1414, 707, 0, 10655, 10653, 1, 0, 0, 0, 10655, 10654, 1, 0, 0, 0, 10656, 1599, 1, 0, 0, 0, 10657, 10660, 1, 0, 0, 0, 10658, 10660, 3, 1604, 802, 0, 10659, 10657, 1, 0, 0, 0, 10659, 10658, 1, 0, 0, 0, 10660, 1601, 1, 0, 0, 0, 10661, 10662, 5, 102, 0, 0, 10662, 10665, 3, 1612, 806, 0, 10663, 10665, 1, 0, 0, 0, 10664, 10661, 1, 0, 0, 0, 10664, 10663, 1, 0, 0, 0, 10665, 1603, 1, 0, 0, 0, 10666, 10669, 3, 1370, 685, 0, 10667, 10669, 3, 1606, 803, 0, 10668, 10666, 1, 0, 0, 0, 10668, 10667, 1, 0, 0, 0, 10669, 1605, 1, 0, 0, 0, 10670, 10671, 7, 68, 0, 0, 10671, 1607, 1, 0, 0, 0, 10672, 10674, 3, 1326, 663, 0, 10673, 10675, 3, 980, 490, 0, 10674, 10673, 1, 0, 0, 0, 10674, 10675, 1, 0, 0, 0, 10675, 10676, 1, 0, 0, 0, 10676, 10677, 3, 1052, 526, 0, 10677, 10678, 3, 1092, 546, 0, 10678, 10679, 3, 1022, 511, 0, 10679, 10680, 3, 1036, 518, 0, 10680, 10681, 3, 1238, 619, 0, 10681, 1609, 1, 0, 0, 0, 10682, 10683, 3, 1608, 804, 0, 10683, 1611, 1, 0, 0, 0, 10684, 10685, 3, 1608, 804, 0, 10685, 1613, 1, 0, 0, 0, 10686, 10687, 3, 1160, 580, 0, 10687, 1615, 1, 0, 0, 0, 10688, 10689, 3, 1160, 580, 0, 10689, 1617, 1, 0, 0, 0, 10690, 10691, 3, 6, 3, 0, 10691, 10692, 3, 1620, 810, 0, 10692, 1619, 1, 0, 0, 0, 10693, 10694, 5, 71, 0, 0, 10694, 10695, 3, 982, 491, 0, 10695, 10696, 3, 1564, 782, 0, 10696, 10699, 1, 0, 0, 0, 10697, 10699, 1, 0, 0, 0, 10698, 10693, 1, 0, 0, 0, 10698, 10697, 1, 0, 0, 0, 10699, 1621, 1, 0, 0, 0, 749, 1623, 1631, 1637, 1764, 1768, 1781, 1786, 1792, 1798, 1813, 1825, 1843, 1848, 1858, 1882, 1889, 1895, 1900, 1909, 1913, 1925, 1956, 1963, 1971, 1976, 1983, 1989, 2006, 2011, 2015, 2028, 2032, 2037, 2042, 2054, 2063, 2076, 2081, 2092, 2103, 2108, 2119, 2130, 2139, 2149, 2164, 2176, 2181, 2188, 2199, 2457, 2464, 2469, 2474, 2479, 2487, 2496, 2503, 2513, 2515, 2520, 2526, 2532, 2534, 2562, 2572, 2585, 2597, 2611, 2616, 2640, 2646, 2651, 2658, 2663, 2701, 2705, 2712, 2716, 2723, 2737, 2744, 2755, 2788, 2798, 2802, 2809, 2816, 2824, 2830, 2834, 2844, 2851, 2862, 2894, 2902, 2907, 2914, 2924, 2934, 2954, 2969, 2994, 2999, 3006, 3013, 3024, 3029, 3036, 3047, 3055, 3066, 3082, 3090, 3094, 3108, 3125, 3130, 3137, 3146, 3149, 3154, 3161, 3172, 3185, 3198, 3216, 3219, 3228, 3243, 3258, 3267, 3274, 3281, 3286, 3316, 3318, 3322, 3330, 3337, 3351, 3355, 3359, 3364, 3370, 3374, 3378, 3391, 3397, 3406, 3415, 3425, 3436, 3546, 3564, 3569, 3573, 3590, 3598, 3605, 3618, 3628, 3662, 3667, 3672, 3676, 3684, 3686, 3744, 3761, 3769, 3792, 3796, 3816, 3853, 3862, 3867, 3872, 3877, 3882, 3935, 3941, 3948, 3958, 3963, 3968, 3986, 3990, 4000, 4006, 4012, 4019, 4024, 4029, 4043, 4071, 4078, 4092, 4107, 4224, 4235, 4241, 4249, 4260, 4269, 4276, 4316, 4322, 4343, 4371, 4375, 4380, 4389, 4393, 4420, 4427, 4442, 4462, 4482, 4575, 4600, 4607, 4623, 4632, 4637, 4643, 4650, 4664, 4813, 4817, 4910, 4915, 4919, 4925, 4993, 4999, 5028, 5045, 5052, 5064, 5124, 5131, 5137, 5143, 5169, 5175, 5181, 5192, 5204, 5233, 5272, 5276, 5280, 5284, 5289, 5296, 5310, 5323, 5331, 5338, 5344, 5348, 5353, 5360, 5374, 5376, 5383, 5387, 5396, 5404, 5413, 5415, 5419, 5428, 5433, 5439, 5444, 5448, 5453, 5459, 5465, 5471, 5477, 5482, 5497, 5506, 5517, 5523, 5562, 5572, 5579, 5590, 5596, 5606, 5618, 5622, 5660, 5674, 5688, 5712, 5719, 5729, 5741, 5746, 5782, 5789, 5804, 5851, 5888, 5899, 5916, 6386, 6390, 6395, 6454, 6458, 6677, 6692, 6703, 6710, 6903, 6913, 6921, 6950, 6966, 7008, 7022, 7044, 7051, 7059, 7063, 7070, 7079, 7088, 7140, 7145, 7157, 7161, 7166, 7171, 7175, 7179, 7184, 7200, 7208, 7213, 7226, 7231, 7238, 7248, 7252, 7263, 7274, 7282, 7289, 7328, 7336, 7340, 7421, 7449, 7454, 7469, 7481, 7488, 7498, 7503, 7507, 7511, 7515, 7519, 7526, 7536, 7541, 7559, 7570, 7577, 7585, 7590, 7603, 7609, 7638, 7645, 7657, 7660, 7672, 7687, 7693, 7702, 7718, 7721, 7732, 7737, 7741, 7745, 7750, 7753, 7759, 7763, 7765, 7768, 7775, 7778, 7785, 7793, 7796, 7805, 7810, 7822, 7835, 7846, 7849, 7853, 7859, 7862, 7877, 7890, 7900, 7918, 7920, 7928, 7932, 7942, 7952, 7963, 7965, 7974, 7984, 7989, 7994, 7999, 8002, 8016, 8020, 8029, 8044, 8051, 8055, 8058, 8071, 8075, 8080, 8088, 8094, 8105, 8112, 8118, 8122, 8124, 8128, 8134, 8143, 8149, 8151, 8153, 8160, 8164, 8173, 8177, 8187, 8194, 8202, 8226, 8232, 8236, 8241, 8250, 8254, 8257, 8262, 8275, 8281, 8289, 8292, 8299, 8304, 8325, 8334, 8339, 8345, 8350, 8357, 8362, 8368, 8370, 8374, 8381, 8385, 8388, 8395, 8400, 8403, 8410, 8414, 8423, 8427, 8435, 8437, 8444, 8449, 8452, 8467, 8479, 8489, 8498, 8503, 8508, 8515, 8518, 8522, 8529, 8553, 8562, 8568, 8572, 8577, 8587, 8594, 8603, 8606, 8615, 8617, 8623, 8627, 8632, 8646, 8648, 8654, 8660, 8663, 8672, 8690, 8697, 8701, 8705, 8721, 8728, 8736, 8740, 8747, 8760, 8776, 8782, 8788, 8795, 8800, 8806, 8813, 8821, 8829, 8834, 8838, 8844, 8848, 8852, 8855, 8861, 8866, 8882, 8885, 8887, 8899, 8901, 8905, 8911, 8916, 8924, 8928, 8937, 8945, 8951, 8954, 8963, 8968, 8975, 8985, 9011, 9022, 9024, 9026, 9034, 9057, 9065, 9075, 9089, 9099, 9103, 9117, 9124, 9131, 9138, 9163, 9192, 9231, 9233, 9261, 9282, 9289, 9302, 9314, 9320, 9329, 9346, 9358, 9367, 9372, 9379, 9389, 9392, 9403, 9409, 9424, 9432, 9441, 9450, 9453, 9458, 9467, 9472, 9486, 9496, 9504, 9518, 9525, 9533, 9541, 9548, 9554, 9563, 9571, 9581, 9592, 9599, 9628, 9637, 9644, 9655, 9665, 9669, 9673, 9678, 9686, 9690, 9694, 9699, 9704, 9709, 9716, 9725, 9727, 9734, 9739, 9746, 9762, 9777, 9791, 9796, 9815, 9820, 9825, 9832, 9839, 9846, 9855, 9861, 9867, 9873, 9881, 9890, 9948, 9963, 9986, 9994, 9998, 10010, 10012, 10019, 10028, 10046, 10054, 10063, 10070, 10080, 10086, 10093, 10098, 10104, 10108, 10115, 10145, 10165, 10169, 10185, 10192, 10205, 10213, 10233, 10239, 10251, 10256, 10266, 10298, 10303, 10312, 10317, 10321, 10326, 10342, 10360, 10363, 10369, 10397, 10407, 10414, 10416, 10421, 10432, 10443, 10464, 10471, 10478, 10484, 10487, 10498, 10505, 10507, 10516, 10523, 10529, 10535, 10539, 10554, 10571, 10573, 10597, 10601, 10612, 10615, 10619, 10624, 10629, 10641, 10647, 10651, 10655, 10659, 10664, 10668, 10674, 10698] \ No newline at end of file +[4, 1, 679, 10482, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 1, 0, 3, 0, 1498, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1506, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1512, 8, 2, 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, 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, 1, 3, 1, 3, 1, 3, 3, 3, 1639, 8, 3, 1, 4, 1, 4, 3, 4, 1643, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 1656, 8, 7, 1, 8, 5, 8, 1659, 8, 8, 10, 8, 12, 8, 1662, 9, 8, 1, 9, 5, 9, 1665, 8, 9, 10, 9, 12, 9, 1668, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1673, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1688, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1700, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1718, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1723, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1733, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1757, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1764, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1770, 8, 21, 1, 22, 5, 22, 1773, 8, 22, 10, 22, 12, 22, 1776, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1784, 8, 23, 1, 24, 1, 24, 3, 24, 1788, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1800, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1831, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1836, 8, 28, 10, 28, 12, 28, 1839, 9, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1844, 8, 29, 10, 29, 12, 29, 1847, 9, 29, 1, 30, 1, 30, 3, 30, 1851, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1858, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1864, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1881, 8, 33, 1, 34, 1, 34, 1, 34, 3, 34, 1886, 8, 34, 1, 35, 1, 35, 3, 35, 1890, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1903, 8, 37, 1, 38, 1, 38, 3, 38, 1907, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1912, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1917, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1929, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 3, 43, 1938, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1951, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1956, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1967, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1978, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1983, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1994, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2005, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2014, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2024, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2039, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2051, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2056, 8, 47, 1, 48, 1, 48, 1, 48, 5, 48, 2061, 8, 48, 10, 48, 12, 48, 2064, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2074, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2332, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2339, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 2344, 8, 53, 1, 54, 1, 54, 1, 54, 3, 54, 2349, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 2354, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2362, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 2371, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 2376, 8, 59, 10, 59, 12, 59, 2379, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2388, 8, 60, 3, 60, 2390, 8, 60, 1, 61, 4, 61, 2393, 8, 61, 11, 61, 12, 61, 2394, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2401, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2407, 8, 62, 3, 62, 2409, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2437, 8, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 5, 65, 2445, 8, 65, 10, 65, 12, 65, 2448, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2458, 8, 67, 10, 67, 12, 67, 2461, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2472, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2486, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2491, 8, 69, 1, 70, 1, 70, 3, 70, 2495, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2501, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2515, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2521, 8, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2528, 8, 72, 1, 73, 5, 73, 2531, 8, 73, 10, 73, 12, 73, 2534, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2540, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2577, 8, 74, 1, 75, 3, 75, 2580, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2585, 8, 75, 1, 76, 1, 76, 1, 76, 5, 76, 2590, 8, 76, 10, 76, 12, 76, 2593, 9, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2605, 8, 78, 10, 78, 12, 78, 2608, 9, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2613, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2621, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2654, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2664, 8, 80, 1, 81, 1, 81, 3, 81, 2668, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2675, 8, 82, 1, 83, 1, 83, 1, 83, 5, 83, 2680, 8, 83, 10, 83, 12, 83, 2683, 9, 83, 1, 84, 1, 84, 1, 84, 5, 84, 2688, 8, 84, 10, 84, 12, 84, 2691, 9, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2696, 8, 85, 1, 86, 1, 86, 3, 86, 2700, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2710, 8, 88, 1, 88, 1, 88, 1, 89, 5, 89, 2715, 8, 89, 10, 89, 12, 89, 2718, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2728, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2748, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2762, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2770, 8, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2775, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2782, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 5, 95, 2790, 8, 95, 10, 95, 12, 95, 2793, 9, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2802, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2822, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2837, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2862, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2869, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 2874, 8, 100, 10, 100, 12, 100, 2877, 9, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2887, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2892, 8, 103, 1, 104, 1, 104, 1, 104, 5, 104, 2897, 8, 104, 10, 104, 12, 104, 2900, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2910, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2918, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2929, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2945, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2953, 8, 111, 1, 112, 1, 112, 3, 112, 2957, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 5, 114, 2969, 8, 114, 10, 114, 12, 114, 2972, 9, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2988, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 2993, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3000, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3009, 8, 118, 1, 118, 3, 118, 3012, 8, 118, 1, 119, 1, 119, 1, 119, 3, 119, 3017, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3024, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3035, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3048, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3061, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3079, 8, 126, 1, 126, 3, 126, 3082, 8, 126, 1, 127, 1, 127, 3, 127, 3086, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3093, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3119, 8, 130, 1, 130, 1, 130, 3, 130, 3123, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3129, 8, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3139, 8, 132, 1, 133, 4, 133, 3142, 8, 133, 11, 133, 12, 133, 3143, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3153, 8, 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, 3175, 8, 134, 3, 134, 3177, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3185, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3190, 8, 136, 10, 136, 12, 136, 3193, 9, 136, 1, 137, 1, 137, 1, 137, 3, 137, 3198, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3207, 8, 137, 3, 137, 3209, 8, 137, 1, 138, 1, 138, 3, 138, 3213, 8, 138, 1, 139, 1, 139, 1, 139, 3, 139, 3218, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3224, 8, 140, 1, 141, 1, 141, 3, 141, 3228, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3241, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3247, 8, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3256, 8, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3261, 8, 145, 10, 145, 12, 145, 3264, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3273, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 3280, 8, 147, 10, 147, 12, 147, 3283, 9, 147, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3392, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3400, 8, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3412, 8, 151, 1, 152, 4, 152, 3415, 8, 152, 11, 152, 12, 152, 3416, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3425, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3436, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3444, 8, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3449, 8, 155, 10, 155, 12, 155, 3452, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 5, 157, 3462, 8, 157, 10, 157, 12, 157, 3465, 9, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3474, 8, 158, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3488, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3504, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3512, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 3517, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 3522, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3530, 8, 165, 3, 165, 3532, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3590, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 3, 168, 3607, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3615, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3638, 8, 170, 1, 171, 1, 171, 3, 171, 3642, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 3662, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 3699, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3708, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 3713, 8, 178, 1, 179, 1, 179, 1, 179, 3, 179, 3718, 8, 179, 1, 180, 1, 180, 1, 180, 3, 180, 3723, 8, 180, 1, 181, 1, 181, 1, 181, 3, 181, 3728, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3781, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 3787, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 3792, 8, 187, 10, 187, 12, 187, 3795, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3804, 8, 188, 1, 189, 1, 189, 1, 189, 3, 189, 3809, 8, 189, 1, 190, 4, 190, 3812, 8, 190, 11, 190, 12, 190, 3813, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3829, 8, 195, 1, 195, 1, 195, 3, 195, 3833, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 3843, 8, 197, 1, 198, 1, 198, 1, 199, 1, 199, 3, 199, 3849, 8, 199, 1, 199, 1, 199, 5, 199, 3853, 8, 199, 10, 199, 12, 199, 3856, 9, 199, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 3862, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 3867, 8, 201, 1, 202, 5, 202, 3870, 8, 202, 10, 202, 12, 202, 3873, 9, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 3886, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 3914, 8, 204, 1, 205, 1, 205, 1, 205, 5, 205, 3919, 8, 205, 10, 205, 12, 205, 3922, 9, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 5, 207, 3933, 8, 207, 10, 207, 12, 207, 3936, 9, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3950, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4002, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4069, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4075, 8, 212, 10, 212, 12, 212, 4078, 9, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 3, 213, 4085, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4093, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 4099, 8, 215, 10, 215, 12, 215, 4102, 9, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 5, 217, 4113, 8, 217, 10, 217, 12, 217, 4116, 9, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4155, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 4161, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 4168, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 4182, 8, 221, 10, 221, 12, 221, 4185, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4192, 8, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4199, 8, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4214, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 4219, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 4228, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 4255, 8, 226, 1, 227, 1, 227, 1, 227, 5, 227, 4260, 8, 227, 10, 227, 12, 227, 4263, 9, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 4277, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 4297, 8, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4317, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 4410, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 4435, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 4442, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 4458, 8, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 5, 238, 4465, 8, 238, 10, 238, 12, 238, 4468, 9, 238, 1, 239, 1, 239, 3, 239, 4472, 8, 239, 1, 240, 1, 240, 4, 240, 4476, 8, 240, 11, 240, 12, 240, 4477, 1, 241, 1, 241, 1, 241, 5, 241, 4483, 8, 241, 10, 241, 12, 241, 4486, 9, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 4499, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4648, 8, 244, 1, 245, 1, 245, 3, 245, 4652, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4745, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 4750, 8, 247, 1, 248, 1, 248, 3, 248, 4754, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 4760, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4828, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 4834, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 4863, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 4880, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 4885, 8, 256, 10, 256, 12, 256, 4888, 9, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4899, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4959, 8, 258, 1, 259, 1, 259, 1, 259, 5, 259, 4964, 8, 259, 10, 259, 12, 259, 4967, 9, 259, 1, 260, 1, 260, 1, 260, 3, 260, 4972, 8, 260, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4978, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5004, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 5010, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5016, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 5, 266, 5022, 8, 266, 10, 266, 12, 266, 5025, 9, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5038, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 5067, 8, 268, 1, 269, 1, 269, 1, 270, 1, 270, 3, 270, 5073, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5078, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5093, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5112, 8, 270, 1, 271, 1, 271, 3, 271, 5116, 8, 271, 1, 272, 1, 272, 1, 272, 3, 272, 5121, 8, 272, 1, 273, 1, 273, 1, 273, 5, 273, 5126, 8, 273, 10, 273, 12, 273, 5129, 9, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5142, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 5155, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 5162, 8, 276, 10, 276, 12, 276, 5165, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 5170, 8, 276, 1, 277, 1, 277, 1, 277, 3, 277, 5175, 8, 277, 1, 278, 1, 278, 3, 278, 5179, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 5184, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 5191, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 5199, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 5209, 8, 281, 3, 281, 5211, 8, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 3, 282, 5218, 8, 282, 1, 283, 1, 283, 1, 283, 5, 283, 5223, 8, 283, 10, 283, 12, 283, 5226, 9, 283, 1, 284, 1, 284, 1, 284, 5, 284, 5231, 8, 284, 10, 284, 12, 284, 5234, 9, 284, 1, 285, 1, 285, 1, 285, 3, 285, 5239, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5246, 8, 285, 3, 285, 5248, 8, 285, 1, 286, 1, 286, 1, 286, 5, 286, 5253, 8, 286, 10, 286, 12, 286, 5256, 9, 286, 1, 287, 1, 287, 1, 287, 3, 287, 5261, 8, 287, 1, 288, 1, 288, 3, 288, 5265, 8, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5271, 8, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5276, 8, 288, 1, 289, 1, 289, 3, 289, 5280, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5285, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5291, 8, 290, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 5297, 8, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 5303, 8, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 5309, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5322, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 5, 294, 5329, 8, 294, 10, 294, 12, 294, 5332, 9, 294, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 5, 296, 5340, 8, 296, 10, 296, 12, 296, 5343, 9, 296, 1, 297, 4, 297, 5346, 8, 297, 11, 297, 12, 297, 5347, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 5387, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 5397, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5404, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 5413, 8, 301, 10, 301, 12, 301, 5416, 9, 301, 1, 302, 1, 302, 1, 302, 3, 302, 5421, 8, 302, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 5, 304, 5429, 8, 304, 10, 304, 12, 304, 5432, 9, 304, 1, 305, 1, 305, 1, 305, 1, 305, 4, 305, 5438, 8, 305, 11, 305, 12, 305, 5439, 1, 305, 3, 305, 5443, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 5481, 8, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 5495, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 5509, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 5533, 8, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5538, 8, 310, 10, 310, 12, 310, 5541, 9, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 5, 311, 5548, 8, 311, 10, 311, 12, 311, 5551, 9, 311, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 314, 4, 314, 5560, 8, 314, 11, 314, 12, 314, 5561, 1, 315, 1, 315, 1, 315, 3, 315, 5567, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5603, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 5610, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 3, 319, 5625, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5672, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 5709, 8, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 5, 326, 5718, 8, 326, 10, 326, 12, 326, 5721, 9, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 3, 328, 5737, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6207, 8, 329, 1, 330, 1, 330, 3, 330, 6211, 8, 330, 1, 331, 1, 331, 1, 331, 3, 331, 6216, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6222, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6233, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6244, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6257, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6269, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6280, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6287, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6506, 8, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6519, 8, 335, 10, 335, 12, 335, 6522, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6532, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6539, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6732, 8, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 3, 341, 6742, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6750, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6779, 8, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 5, 345, 6793, 8, 345, 10, 345, 12, 345, 6796, 9, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6837, 8, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 6851, 8, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 6873, 8, 350, 1, 351, 1, 351, 1, 351, 5, 351, 6878, 8, 351, 10, 351, 12, 351, 6881, 9, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6888, 8, 352, 1, 353, 1, 353, 3, 353, 6892, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 3, 355, 6899, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 3, 357, 6908, 8, 357, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 6917, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 6926, 8, 360, 1, 360, 1, 360, 1, 360, 3, 360, 6931, 8, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 6972, 8, 360, 1, 361, 1, 361, 1, 361, 3, 361, 6977, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6989, 8, 362, 1, 363, 1, 363, 3, 363, 6993, 8, 363, 1, 363, 5, 363, 6996, 8, 363, 10, 363, 12, 363, 6999, 9, 363, 1, 364, 1, 364, 3, 364, 7003, 8, 364, 1, 364, 1, 364, 3, 364, 7007, 8, 364, 1, 365, 1, 365, 1, 365, 3, 365, 7012, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 7028, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 3, 366, 7036, 8, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7041, 8, 366, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 4, 369, 7053, 8, 369, 11, 369, 12, 369, 7054, 1, 369, 3, 369, 7058, 8, 369, 1, 370, 1, 370, 3, 370, 7062, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7067, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7077, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7088, 8, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7099, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 5, 374, 7107, 8, 374, 10, 374, 12, 374, 7110, 9, 374, 1, 374, 1, 374, 3, 374, 7114, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7150, 8, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7158, 8, 378, 1, 379, 1, 379, 3, 379, 7162, 8, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7243, 8, 381, 1, 382, 1, 382, 3, 382, 7247, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7271, 8, 383, 1, 384, 1, 384, 1, 384, 3, 384, 7276, 8, 384, 1, 385, 1, 385, 3, 385, 7280, 8, 385, 1, 385, 3, 385, 7283, 8, 385, 1, 385, 1, 385, 3, 385, 7287, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7297, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7309, 8, 386, 1, 387, 1, 387, 1, 387, 5, 387, 7314, 8, 387, 10, 387, 12, 387, 7317, 9, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 7326, 8, 390, 1, 391, 1, 391, 1, 391, 3, 391, 7331, 8, 391, 1, 392, 1, 392, 3, 392, 7335, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7342, 8, 393, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 5, 395, 7350, 8, 395, 10, 395, 12, 395, 7353, 9, 395, 1, 395, 3, 395, 7356, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 5, 396, 7373, 8, 396, 10, 396, 12, 396, 7376, 9, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7381, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7392, 8, 397, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 3, 399, 7399, 8, 399, 1, 400, 1, 400, 1, 400, 3, 400, 7404, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7417, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7423, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7452, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7459, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7471, 8, 406, 1, 407, 3, 407, 7474, 8, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7486, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7501, 8, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7507, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 5, 411, 7514, 8, 411, 10, 411, 12, 411, 7517, 9, 411, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7532, 8, 413, 1, 413, 3, 413, 7535, 8, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7546, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7551, 8, 415, 1, 416, 1, 416, 3, 416, 7555, 8, 416, 1, 416, 1, 416, 3, 416, 7559, 8, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7564, 8, 416, 1, 416, 3, 416, 7567, 8, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7573, 8, 416, 1, 416, 1, 416, 3, 416, 7577, 8, 416, 3, 416, 7579, 8, 416, 1, 416, 3, 416, 7582, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7589, 8, 417, 1, 417, 3, 417, 7592, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7599, 8, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7607, 8, 418, 1, 418, 3, 418, 7610, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 3, 419, 7619, 8, 419, 1, 419, 1, 419, 1, 420, 3, 420, 7624, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 3, 421, 7636, 8, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7649, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7660, 8, 424, 1, 424, 3, 424, 7663, 8, 424, 1, 425, 1, 425, 3, 425, 7667, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 7673, 8, 426, 1, 427, 3, 427, 7676, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 5, 428, 7689, 8, 428, 10, 428, 12, 428, 7692, 9, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7702, 8, 429, 10, 429, 12, 429, 7705, 9, 429, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7711, 8, 429, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 7723, 8, 431, 10, 431, 12, 431, 7726, 9, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 7740, 8, 433, 1, 434, 1, 434, 3, 434, 7744, 8, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 7754, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 7763, 8, 436, 3, 436, 7765, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 7775, 8, 436, 3, 436, 7777, 8, 436, 3, 436, 7779, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 7786, 8, 437, 10, 437, 12, 437, 7789, 9, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 5, 438, 7796, 8, 438, 10, 438, 12, 438, 7799, 9, 438, 1, 439, 1, 439, 3, 439, 7803, 8, 439, 1, 439, 1, 439, 1, 439, 3, 439, 7808, 8, 439, 1, 439, 1, 439, 1, 439, 3, 439, 7813, 8, 439, 1, 439, 3, 439, 7816, 8, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 7830, 8, 440, 1, 441, 1, 441, 3, 441, 7834, 8, 441, 1, 441, 1, 441, 1, 441, 5, 441, 7839, 8, 441, 10, 441, 12, 441, 7842, 9, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 7856, 8, 443, 1, 444, 1, 444, 3, 444, 7860, 8, 444, 1, 444, 1, 444, 3, 444, 7864, 8, 444, 1, 445, 3, 445, 7867, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 7880, 8, 445, 1, 446, 1, 446, 3, 446, 7884, 8, 446, 1, 447, 1, 447, 1, 447, 3, 447, 7889, 8, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 7897, 8, 448, 1, 449, 1, 449, 1, 450, 1, 450, 3, 450, 7903, 8, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 5, 452, 7912, 8, 452, 10, 452, 12, 452, 7915, 9, 452, 1, 453, 1, 453, 1, 453, 1, 453, 3, 453, 7921, 8, 453, 1, 453, 1, 453, 1, 454, 1, 454, 3, 454, 7927, 8, 454, 1, 454, 1, 454, 3, 454, 7931, 8, 454, 3, 454, 7933, 8, 454, 1, 455, 1, 455, 3, 455, 7937, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 7943, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 7952, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 7958, 8, 456, 3, 456, 7960, 8, 456, 3, 456, 7962, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 7969, 8, 457, 1, 458, 1, 458, 3, 458, 7973, 8, 458, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 7982, 8, 460, 1, 461, 1, 461, 3, 461, 7986, 8, 461, 1, 462, 1, 462, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 7996, 8, 464, 1, 465, 1, 465, 1, 465, 5, 465, 8001, 8, 465, 10, 465, 12, 465, 8004, 9, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 3, 466, 8025, 8, 466, 1, 467, 1, 467, 1, 467, 3, 467, 8030, 8, 467, 1, 468, 4, 468, 8033, 8, 468, 11, 468, 12, 468, 8034, 1, 468, 1, 468, 1, 468, 3, 468, 8040, 8, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 3, 470, 8049, 8, 470, 1, 470, 1, 470, 3, 470, 8053, 8, 470, 1, 470, 3, 470, 8056, 8, 470, 1, 471, 1, 471, 1, 471, 3, 471, 8061, 8, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 5, 472, 8072, 8, 472, 10, 472, 12, 472, 8075, 9, 472, 1, 473, 1, 473, 1, 473, 3, 473, 8080, 8, 473, 1, 474, 1, 474, 1, 474, 1, 474, 5, 474, 8086, 8, 474, 10, 474, 12, 474, 8089, 9, 474, 3, 474, 8091, 8, 474, 1, 475, 1, 475, 1, 475, 4, 475, 8096, 8, 475, 11, 475, 12, 475, 8097, 1, 476, 1, 476, 1, 476, 3, 476, 8103, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8124, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8133, 8, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8138, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8144, 8, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8149, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8156, 8, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8161, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 5, 476, 8167, 8, 476, 10, 476, 12, 476, 8170, 9, 476, 1, 477, 3, 477, 8173, 8, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 8180, 8, 477, 1, 478, 1, 478, 3, 478, 8184, 8, 478, 1, 479, 3, 479, 8187, 8, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 3, 479, 8194, 8, 479, 1, 480, 1, 480, 1, 480, 3, 480, 8199, 8, 480, 1, 480, 3, 480, 8202, 8, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 3, 480, 8209, 8, 480, 1, 481, 1, 481, 3, 481, 8213, 8, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 8222, 8, 482, 1, 483, 1, 483, 3, 483, 8226, 8, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, 8234, 8, 483, 3, 483, 8236, 8, 483, 1, 484, 1, 484, 1, 484, 5, 484, 8241, 8, 484, 10, 484, 12, 484, 8244, 9, 484, 1, 485, 1, 485, 3, 485, 8248, 8, 485, 1, 485, 3, 485, 8251, 8, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 5, 487, 8272, 8, 487, 10, 487, 12, 487, 8275, 9, 487, 1, 487, 1, 487, 1, 487, 3, 487, 8280, 8, 487, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 3, 489, 8291, 8, 489, 1, 490, 1, 490, 1, 490, 3, 490, 8296, 8, 490, 1, 491, 1, 491, 1, 491, 3, 491, 8301, 8, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8308, 8, 492, 1, 492, 3, 492, 8311, 8, 492, 1, 493, 1, 493, 3, 493, 8315, 8, 493, 1, 494, 1, 494, 1, 494, 5, 494, 8320, 8, 494, 10, 494, 12, 494, 8323, 9, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 5, 496, 8337, 8, 496, 10, 496, 12, 496, 8340, 9, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 5, 496, 8353, 8, 496, 10, 496, 12, 496, 8356, 9, 496, 3, 496, 8358, 8, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 3, 497, 8365, 8, 497, 1, 497, 1, 497, 3, 497, 8369, 8, 497, 1, 498, 4, 498, 8372, 8, 498, 11, 498, 12, 498, 8373, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 3, 499, 8384, 8, 499, 1, 500, 1, 500, 1, 500, 5, 500, 8389, 8, 500, 10, 500, 12, 500, 8392, 9, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 3, 501, 8400, 8, 501, 1, 502, 3, 502, 8403, 8, 502, 1, 502, 1, 502, 1, 502, 3, 502, 8408, 8, 502, 1, 502, 5, 502, 8411, 8, 502, 10, 502, 12, 502, 8414, 9, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 3, 502, 8421, 8, 502, 3, 502, 8423, 8, 502, 1, 502, 1, 502, 1, 502, 1, 502, 3, 502, 8429, 8, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8442, 8, 503, 3, 503, 8444, 8, 503, 1, 504, 1, 504, 1, 504, 1, 504, 3, 504, 8450, 8, 504, 1, 505, 1, 505, 1, 505, 1, 505, 3, 505, 8456, 8, 505, 1, 505, 3, 505, 8459, 8, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 3, 506, 8468, 8, 506, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 3, 507, 8486, 8, 507, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8493, 8, 508, 1, 509, 1, 509, 3, 509, 8497, 8, 509, 1, 510, 1, 510, 3, 510, 8501, 8, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 8517, 8, 513, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 3, 514, 8524, 8, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8532, 8, 515, 1, 516, 1, 516, 3, 516, 8536, 8, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 3, 517, 8543, 8, 517, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 3, 519, 8556, 8, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 3, 520, 8572, 8, 520, 1, 520, 1, 520, 1, 520, 1, 520, 3, 520, 8578, 8, 520, 1, 520, 1, 520, 1, 520, 1, 520, 3, 520, 8584, 8, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 3, 521, 8591, 8, 521, 1, 522, 1, 522, 1, 522, 3, 522, 8596, 8, 522, 1, 523, 1, 523, 1, 524, 1, 524, 3, 524, 8602, 8, 524, 1, 525, 1, 525, 1, 525, 5, 525, 8607, 8, 525, 10, 525, 12, 525, 8610, 9, 525, 1, 526, 1, 526, 1, 526, 5, 526, 8615, 8, 526, 10, 526, 12, 526, 8618, 9, 526, 1, 527, 1, 527, 1, 527, 5, 527, 8623, 8, 527, 10, 527, 12, 527, 8626, 9, 527, 1, 528, 1, 528, 3, 528, 8630, 8, 528, 1, 528, 1, 528, 3, 528, 8634, 8, 528, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 8640, 8, 528, 1, 529, 1, 529, 3, 529, 8644, 8, 529, 1, 529, 1, 529, 3, 529, 8648, 8, 529, 1, 530, 3, 530, 8651, 8, 530, 1, 530, 1, 530, 1, 531, 1, 531, 3, 531, 8657, 8, 531, 1, 532, 1, 532, 1, 532, 3, 532, 8662, 8, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 1, 532, 3, 532, 8678, 8, 532, 1, 532, 3, 532, 8681, 8, 532, 3, 532, 8683, 8, 532, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 8695, 8, 533, 3, 533, 8697, 8, 533, 1, 534, 1, 534, 3, 534, 8701, 8, 534, 1, 534, 1, 534, 1, 534, 1, 534, 3, 534, 8707, 8, 534, 1, 534, 1, 534, 1, 534, 3, 534, 8712, 8, 534, 1, 535, 1, 535, 1, 535, 1, 535, 5, 535, 8718, 8, 535, 10, 535, 12, 535, 8721, 9, 535, 1, 536, 3, 536, 8724, 8, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 5, 537, 8731, 8, 537, 10, 537, 12, 537, 8734, 9, 537, 1, 538, 1, 538, 1, 538, 5, 538, 8739, 8, 538, 10, 538, 12, 538, 8742, 9, 538, 1, 539, 1, 539, 1, 539, 3, 539, 8747, 8, 539, 1, 540, 3, 540, 8750, 8, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 3, 541, 8759, 8, 541, 1, 542, 1, 542, 1, 542, 3, 542, 8764, 8, 542, 1, 543, 1, 543, 1, 543, 5, 543, 8769, 8, 543, 10, 543, 12, 543, 8772, 9, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 8781, 8, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 8807, 8, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 8818, 8, 544, 5, 544, 8820, 8, 544, 10, 544, 12, 544, 8823, 9, 544, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 3, 545, 8830, 8, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 3, 545, 8853, 8, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 3, 545, 8861, 8, 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 3, 547, 8871, 8, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 3, 547, 8885, 8, 547, 1, 547, 1, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 3, 548, 8895, 8, 548, 1, 549, 1, 549, 3, 549, 8899, 8, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8913, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8920, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8927, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8934, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8959, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 8988, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 9027, 8, 550, 3, 550, 9029, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 9057, 8, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 3, 550, 9078, 8, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 3, 551, 9085, 8, 551, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9098, 8, 552, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 554, 1, 554, 1, 554, 5, 554, 9108, 8, 554, 10, 554, 12, 554, 9111, 9, 554, 1, 555, 1, 555, 1, 555, 3, 555, 9116, 8, 555, 1, 556, 1, 556, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 3, 557, 9125, 8, 557, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9142, 8, 558, 1, 559, 1, 559, 1, 559, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9154, 8, 560, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 9163, 8, 561, 1, 562, 1, 562, 1, 562, 3, 562, 9168, 8, 562, 1, 563, 1, 563, 1, 563, 5, 563, 9173, 8, 563, 10, 563, 12, 563, 9176, 9, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 565, 1, 565, 1, 565, 3, 565, 9185, 8, 565, 1, 565, 3, 565, 9188, 8, 565, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 567, 1, 567, 3, 567, 9199, 8, 567, 1, 568, 1, 568, 1, 568, 1, 568, 3, 568, 9205, 8, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 3, 569, 9220, 8, 569, 1, 570, 1, 570, 1, 570, 1, 570, 1, 570, 1, 570, 3, 570, 9228, 8, 570, 1, 571, 1, 571, 1, 571, 1, 571, 1, 571, 1, 571, 1, 571, 3, 571, 9237, 8, 571, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 3, 572, 9246, 8, 572, 1, 572, 3, 572, 9249, 8, 572, 1, 573, 1, 573, 1, 573, 3, 573, 9254, 8, 573, 1, 573, 1, 573, 1, 573, 1, 573, 1, 573, 1, 573, 1, 573, 3, 573, 9263, 8, 573, 1, 574, 1, 574, 1, 574, 3, 574, 9268, 8, 574, 1, 574, 1, 574, 1, 575, 1, 575, 1, 575, 1, 575, 1, 575, 1, 575, 1, 576, 1, 576, 1, 577, 1, 577, 3, 577, 9282, 8, 577, 1, 578, 1, 578, 1, 579, 1, 579, 1, 579, 1, 579, 1, 579, 1, 579, 3, 579, 9292, 8, 579, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 3, 580, 9300, 8, 580, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 3, 581, 9314, 8, 581, 1, 582, 1, 582, 1, 582, 5, 582, 9319, 8, 582, 10, 582, 12, 582, 9322, 9, 582, 1, 583, 1, 583, 1, 583, 5, 583, 9327, 8, 583, 10, 583, 12, 583, 9330, 9, 583, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 9337, 8, 584, 1, 585, 1, 585, 1, 585, 5, 585, 9342, 8, 585, 10, 585, 12, 585, 9345, 9, 585, 1, 586, 1, 586, 1, 586, 3, 586, 9350, 8, 586, 1, 586, 1, 586, 1, 587, 1, 587, 1, 587, 5, 587, 9357, 8, 587, 10, 587, 12, 587, 9360, 9, 587, 1, 588, 1, 588, 1, 588, 1, 588, 1, 588, 3, 588, 9367, 8, 588, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9377, 8, 589, 1, 590, 1, 590, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 3, 591, 9388, 8, 591, 1, 592, 1, 592, 1, 592, 1, 592, 1, 592, 3, 592, 9395, 8, 592, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 3, 593, 9424, 8, 593, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 3, 594, 9433, 8, 594, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 3, 595, 9440, 8, 595, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 1, 597, 4, 597, 9449, 8, 597, 11, 597, 12, 597, 9450, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 1, 599, 1, 599, 1, 599, 3, 599, 9461, 8, 599, 1, 600, 1, 600, 3, 600, 9465, 8, 600, 1, 601, 1, 601, 3, 601, 9469, 8, 601, 1, 602, 1, 602, 1, 602, 3, 602, 9474, 8, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9479, 8, 602, 1, 602, 1, 602, 3, 602, 9483, 8, 602, 3, 602, 9485, 8, 602, 1, 602, 3, 602, 9488, 8, 602, 1, 603, 4, 603, 9491, 8, 603, 11, 603, 12, 603, 9492, 1, 604, 5, 604, 9496, 8, 604, 10, 604, 12, 604, 9499, 9, 604, 1, 605, 1, 605, 3, 605, 9503, 8, 605, 1, 606, 1, 606, 1, 606, 5, 606, 9508, 8, 606, 10, 606, 12, 606, 9511, 9, 606, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9519, 8, 607, 3, 607, 9521, 8, 607, 1, 608, 1, 608, 1, 608, 5, 608, 9526, 8, 608, 10, 608, 12, 608, 9529, 9, 608, 1, 609, 1, 609, 3, 609, 9533, 8, 609, 1, 610, 1, 610, 1, 610, 5, 610, 9538, 8, 610, 10, 610, 12, 610, 9541, 9, 610, 1, 611, 1, 611, 1, 612, 1, 612, 1, 613, 1, 613, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9556, 8, 614, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9571, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9585, 8, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9590, 8, 615, 1, 616, 1, 616, 1, 617, 1, 617, 1, 618, 1, 618, 1, 619, 1, 619, 1, 620, 1, 620, 1, 620, 1, 621, 1, 621, 1, 621, 1, 621, 5, 621, 9607, 8, 621, 10, 621, 12, 621, 9610, 9, 621, 1, 621, 1, 621, 3, 621, 9614, 8, 621, 1, 622, 1, 622, 1, 622, 3, 622, 9619, 8, 622, 1, 623, 1, 623, 1, 623, 1, 623, 1, 623, 3, 623, 9626, 8, 623, 1, 624, 1, 624, 1, 625, 1, 625, 1, 625, 3, 625, 9633, 8, 625, 1, 626, 1, 626, 1, 626, 5, 626, 9638, 8, 626, 10, 626, 12, 626, 9641, 9, 626, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9649, 8, 627, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9655, 8, 628, 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 9661, 8, 629, 1, 630, 1, 630, 1, 630, 1, 630, 3, 630, 9667, 8, 630, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9675, 8, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 9684, 8, 632, 1, 633, 1, 633, 1, 634, 1, 634, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 3, 635, 9742, 8, 635, 1, 636, 1, 636, 1, 637, 1, 637, 1, 638, 1, 638, 1, 639, 1, 639, 1, 639, 1, 639, 1, 640, 5, 640, 9755, 8, 640, 10, 640, 12, 640, 9758, 9, 640, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 3, 641, 9780, 8, 641, 1, 642, 1, 642, 1, 643, 1, 643, 1, 643, 1, 643, 3, 643, 9788, 8, 643, 1, 644, 1, 644, 3, 644, 9792, 8, 644, 1, 645, 1, 645, 1, 645, 1, 645, 1, 645, 1, 645, 1, 645, 1, 646, 1, 646, 1, 646, 3, 646, 9804, 8, 646, 3, 646, 9806, 8, 646, 1, 647, 1, 647, 1, 648, 4, 648, 9811, 8, 648, 11, 648, 12, 648, 9812, 1, 649, 1, 649, 1, 649, 1, 649, 1, 650, 1, 650, 1, 650, 3, 650, 9822, 8, 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 3, 651, 9840, 8, 651, 1, 651, 1, 651, 1, 652, 1, 652, 1, 652, 1, 652, 3, 652, 9848, 8, 652, 1, 653, 1, 653, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 9857, 8, 654, 1, 655, 1, 655, 1, 655, 5, 655, 9862, 8, 655, 10, 655, 12, 655, 9865, 9, 655, 1, 656, 1, 656, 1, 656, 1, 657, 1, 657, 1, 658, 1, 658, 3, 658, 9874, 8, 658, 1, 659, 1, 659, 1, 660, 1, 660, 3, 660, 9880, 8, 660, 1, 661, 1, 661, 1, 662, 1, 662, 1, 662, 3, 662, 9887, 8, 662, 1, 663, 1, 663, 1, 663, 3, 663, 9892, 8, 663, 1, 664, 1, 664, 1, 664, 1, 664, 3, 664, 9898, 8, 664, 1, 665, 1, 665, 3, 665, 9902, 8, 665, 1, 666, 1, 666, 1, 667, 5, 667, 9907, 8, 667, 10, 667, 12, 667, 9910, 9, 667, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 3, 668, 9939, 8, 668, 1, 669, 1, 669, 1, 669, 1, 669, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 1, 670, 3, 670, 9959, 8, 670, 1, 671, 1, 671, 3, 671, 9963, 8, 671, 1, 672, 1, 672, 1, 672, 1, 672, 1, 672, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 673, 1, 674, 1, 674, 1, 674, 3, 674, 9979, 8, 674, 1, 675, 1, 675, 1, 675, 5, 675, 9984, 8, 675, 10, 675, 12, 675, 9987, 9, 675, 1, 676, 1, 676, 1, 676, 1, 676, 1, 677, 1, 677, 1, 678, 1, 678, 1, 679, 1, 679, 3, 679, 9999, 8, 679, 1, 679, 1, 679, 1, 679, 1, 679, 5, 679, 10005, 8, 679, 10, 679, 12, 679, 10008, 9, 679, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 5, 681, 10025, 8, 681, 10, 681, 12, 681, 10028, 9, 681, 1, 682, 1, 682, 1, 682, 3, 682, 10033, 8, 682, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 684, 1, 684, 3, 684, 10045, 8, 684, 1, 685, 4, 685, 10048, 8, 685, 11, 685, 12, 685, 10049, 1, 686, 1, 686, 1, 686, 1, 686, 1, 686, 1, 687, 1, 687, 1, 687, 3, 687, 10060, 8, 687, 1, 688, 1, 688, 1, 688, 1, 689, 1, 689, 1, 689, 1, 689, 1, 689, 1, 690, 1, 690, 1, 690, 1, 690, 1, 690, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 1, 691, 3, 691, 10092, 8, 691, 1, 692, 1, 692, 1, 692, 3, 692, 10097, 8, 692, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 5, 693, 10104, 8, 693, 10, 693, 12, 693, 10107, 9, 693, 1, 693, 1, 693, 3, 693, 10111, 8, 693, 1, 694, 1, 694, 3, 694, 10115, 8, 694, 1, 695, 1, 695, 1, 695, 3, 695, 10120, 8, 695, 1, 696, 1, 696, 1, 697, 1, 697, 1, 697, 1, 697, 1, 697, 1, 697, 1, 697, 1, 697, 1, 697, 1, 698, 1, 698, 1, 698, 3, 698, 10136, 8, 698, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, 700, 1, 700, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 3, 701, 10154, 8, 701, 1, 701, 3, 701, 10157, 8, 701, 1, 701, 1, 701, 1, 702, 1, 702, 3, 702, 10163, 8, 702, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 1, 703, 3, 703, 10191, 8, 703, 1, 704, 1, 704, 1, 704, 1, 704, 1, 704, 1, 704, 1, 704, 1, 704, 3, 704, 10201, 8, 704, 1, 705, 1, 705, 1, 705, 4, 705, 10206, 8, 705, 11, 705, 12, 705, 10207, 3, 705, 10210, 8, 705, 1, 706, 1, 706, 1, 706, 1, 706, 1, 706, 5, 706, 10217, 8, 706, 10, 706, 12, 706, 10220, 9, 706, 3, 706, 10222, 8, 706, 1, 707, 1, 707, 1, 707, 1, 707, 1, 708, 1, 708, 1, 708, 1, 708, 1, 708, 1, 709, 1, 709, 1, 709, 3, 709, 10236, 8, 709, 1, 710, 1, 710, 1, 710, 1, 710, 1, 710, 1, 710, 1, 710, 1, 711, 1, 711, 1, 711, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 1, 712, 3, 712, 10257, 8, 712, 1, 712, 1, 712, 1, 713, 1, 713, 1, 713, 3, 713, 10264, 8, 713, 1, 714, 1, 714, 1, 714, 5, 714, 10269, 8, 714, 10, 714, 12, 714, 10272, 9, 714, 1, 715, 1, 715, 1, 715, 3, 715, 10277, 8, 715, 1, 715, 3, 715, 10280, 8, 715, 1, 716, 1, 716, 1, 716, 3, 716, 10285, 8, 716, 1, 716, 1, 716, 1, 716, 1, 716, 1, 716, 1, 716, 1, 716, 1, 716, 3, 716, 10295, 8, 716, 1, 716, 1, 716, 1, 716, 1, 716, 1, 716, 5, 716, 10302, 8, 716, 10, 716, 12, 716, 10305, 9, 716, 1, 716, 1, 716, 3, 716, 10309, 8, 716, 3, 716, 10311, 8, 716, 1, 716, 1, 716, 1, 717, 1, 717, 1, 717, 1, 717, 1, 717, 3, 717, 10320, 8, 717, 1, 718, 1, 718, 1, 718, 1, 718, 1, 718, 1, 718, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 720, 3, 720, 10335, 8, 720, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 3, 721, 10352, 8, 721, 3, 721, 10354, 8, 721, 1, 722, 1, 722, 1, 722, 1, 722, 1, 722, 1, 723, 1, 723, 1, 723, 1, 723, 1, 724, 1, 724, 1, 724, 1, 725, 1, 725, 1, 725, 1, 725, 1, 726, 1, 726, 1, 726, 1, 726, 1, 727, 1, 727, 3, 727, 10378, 8, 727, 1, 727, 1, 727, 3, 727, 10382, 8, 727, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 1, 728, 3, 728, 10393, 8, 728, 1, 728, 3, 728, 10396, 8, 728, 1, 729, 1, 729, 3, 729, 10400, 8, 729, 1, 730, 1, 730, 1, 730, 3, 730, 10405, 8, 730, 1, 731, 4, 731, 10408, 8, 731, 11, 731, 12, 731, 10409, 1, 732, 1, 732, 1, 732, 1, 732, 1, 732, 1, 733, 1, 733, 1, 733, 5, 733, 10420, 8, 733, 10, 733, 12, 733, 10423, 9, 733, 1, 734, 1, 734, 1, 734, 3, 734, 10428, 8, 734, 1, 735, 1, 735, 3, 735, 10432, 8, 735, 1, 736, 1, 736, 3, 736, 10436, 8, 736, 1, 737, 1, 737, 3, 737, 10440, 8, 737, 1, 738, 1, 738, 1, 738, 3, 738, 10445, 8, 738, 1, 739, 1, 739, 3, 739, 10449, 8, 739, 1, 740, 1, 740, 1, 741, 1, 741, 3, 741, 10455, 8, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 741, 1, 742, 1, 742, 1, 743, 1, 743, 1, 744, 1, 744, 1, 745, 1, 745, 1, 746, 1, 746, 1, 746, 1, 747, 1, 747, 3, 747, 10476, 8, 747, 1, 747, 1, 747, 3, 747, 10480, 8, 747, 1, 747, 0, 1, 1088, 748, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 0, 69, 2, 0, 195, 195, 357, 357, 2, 0, 66, 66, 311, 311, 2, 0, 99, 99, 311, 311, 3, 0, 66, 66, 99, 99, 311, 311, 2, 0, 133, 133, 191, 191, 2, 0, 245, 245, 325, 325, 2, 0, 10, 10, 94, 94, 2, 0, 162, 162, 356, 356, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 281, 281, 322, 322, 345, 345, 347, 347, 2, 0, 64, 64, 94, 94, 2, 0, 345, 345, 347, 347, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 335, 335, 338, 338, 438, 438, 3, 0, 113, 113, 277, 277, 329, 329, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 252, 252, 255, 255, 5, 0, 30, 30, 88, 88, 182, 182, 232, 232, 362, 362, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 407, 407, 2, 0, 334, 334, 407, 407, 2, 0, 211, 211, 289, 289, 3, 0, 314, 314, 350, 350, 445, 445, 2, 0, 64, 64, 68, 68, 5, 0, 212, 212, 322, 322, 343, 343, 354, 354, 455, 456, 2, 0, 10, 10, 53, 53, 3, 0, 211, 211, 289, 289, 442, 442, 5, 0, 92, 92, 175, 175, 226, 226, 316, 316, 342, 342, 3, 0, 175, 175, 316, 316, 342, 342, 3, 0, 109, 109, 128, 128, 344, 344, 4, 0, 88, 88, 182, 182, 232, 232, 362, 362, 2, 0, 151, 151, 245, 245, 2, 0, 306, 306, 326, 326, 1, 0, 31, 32, 2, 0, 99, 99, 342, 342, 2, 0, 201, 201, 327, 327, 2, 0, 59, 59, 97, 97, 2, 0, 213, 213, 245, 245, 2, 0, 313, 313, 407, 407, 2, 0, 207, 207, 261, 261, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 353, 353, 477, 477, 2, 0, 384, 385, 399, 399, 1, 0, 384, 385, 1, 0, 411, 412, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 30, 30, 56, 56, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 297, 297, 450, 450, 2, 0, 208, 208, 282, 282, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 11, 0, 124, 124, 129, 249, 251, 252, 254, 303, 305, 379, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 5, 0, 106, 118, 120, 123, 125, 125, 127, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 5, 0, 304, 304, 418, 424, 504, 504, 513, 513, 521, 635, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 2, 0, 144, 144, 210, 210, 36, 0, 33, 33, 35, 35, 43, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 232, 232, 240, 240, 258, 258, 261, 262, 272, 272, 286, 286, 300, 300, 306, 306, 312, 312, 316, 317, 326, 326, 353, 353, 433, 434, 477, 477, 490, 502, 506, 512, 514, 518, 520, 520, 11427, 0, 1497, 1, 0, 0, 0, 2, 1501, 1, 0, 0, 0, 4, 1511, 1, 0, 0, 0, 6, 1638, 1, 0, 0, 0, 8, 1640, 1, 0, 0, 0, 10, 1644, 1, 0, 0, 0, 12, 1647, 1, 0, 0, 0, 14, 1655, 1, 0, 0, 0, 16, 1660, 1, 0, 0, 0, 18, 1666, 1, 0, 0, 0, 20, 1687, 1, 0, 0, 0, 22, 1699, 1, 0, 0, 0, 24, 1701, 1, 0, 0, 0, 26, 1707, 1, 0, 0, 0, 28, 1717, 1, 0, 0, 0, 30, 1719, 1, 0, 0, 0, 32, 1728, 1, 0, 0, 0, 34, 1736, 1, 0, 0, 0, 36, 1742, 1, 0, 0, 0, 38, 1749, 1, 0, 0, 0, 40, 1751, 1, 0, 0, 0, 42, 1769, 1, 0, 0, 0, 44, 1774, 1, 0, 0, 0, 46, 1783, 1, 0, 0, 0, 48, 1785, 1, 0, 0, 0, 50, 1799, 1, 0, 0, 0, 52, 1801, 1, 0, 0, 0, 54, 1830, 1, 0, 0, 0, 56, 1832, 1, 0, 0, 0, 58, 1840, 1, 0, 0, 0, 60, 1850, 1, 0, 0, 0, 62, 1857, 1, 0, 0, 0, 64, 1863, 1, 0, 0, 0, 66, 1880, 1, 0, 0, 0, 68, 1885, 1, 0, 0, 0, 70, 1889, 1, 0, 0, 0, 72, 1891, 1, 0, 0, 0, 74, 1902, 1, 0, 0, 0, 76, 1906, 1, 0, 0, 0, 78, 1911, 1, 0, 0, 0, 80, 1916, 1, 0, 0, 0, 82, 1918, 1, 0, 0, 0, 84, 1930, 1, 0, 0, 0, 86, 1937, 1, 0, 0, 0, 88, 1939, 1, 0, 0, 0, 90, 1941, 1, 0, 0, 0, 92, 1943, 1, 0, 0, 0, 94, 2055, 1, 0, 0, 0, 96, 2057, 1, 0, 0, 0, 98, 2073, 1, 0, 0, 0, 100, 2075, 1, 0, 0, 0, 102, 2331, 1, 0, 0, 0, 104, 2338, 1, 0, 0, 0, 106, 2343, 1, 0, 0, 0, 108, 2348, 1, 0, 0, 0, 110, 2353, 1, 0, 0, 0, 112, 2361, 1, 0, 0, 0, 114, 2363, 1, 0, 0, 0, 116, 2370, 1, 0, 0, 0, 118, 2372, 1, 0, 0, 0, 120, 2380, 1, 0, 0, 0, 122, 2392, 1, 0, 0, 0, 124, 2408, 1, 0, 0, 0, 126, 2436, 1, 0, 0, 0, 128, 2438, 1, 0, 0, 0, 130, 2441, 1, 0, 0, 0, 132, 2449, 1, 0, 0, 0, 134, 2454, 1, 0, 0, 0, 136, 2485, 1, 0, 0, 0, 138, 2487, 1, 0, 0, 0, 140, 2520, 1, 0, 0, 0, 142, 2522, 1, 0, 0, 0, 144, 2527, 1, 0, 0, 0, 146, 2539, 1, 0, 0, 0, 148, 2576, 1, 0, 0, 0, 150, 2584, 1, 0, 0, 0, 152, 2586, 1, 0, 0, 0, 154, 2594, 1, 0, 0, 0, 156, 2612, 1, 0, 0, 0, 158, 2614, 1, 0, 0, 0, 160, 2663, 1, 0, 0, 0, 162, 2667, 1, 0, 0, 0, 164, 2674, 1, 0, 0, 0, 166, 2676, 1, 0, 0, 0, 168, 2684, 1, 0, 0, 0, 170, 2695, 1, 0, 0, 0, 172, 2699, 1, 0, 0, 0, 174, 2701, 1, 0, 0, 0, 176, 2706, 1, 0, 0, 0, 178, 2716, 1, 0, 0, 0, 180, 2727, 1, 0, 0, 0, 182, 2769, 1, 0, 0, 0, 184, 2774, 1, 0, 0, 0, 186, 2781, 1, 0, 0, 0, 188, 2783, 1, 0, 0, 0, 190, 2791, 1, 0, 0, 0, 192, 2794, 1, 0, 0, 0, 194, 2801, 1, 0, 0, 0, 196, 2861, 1, 0, 0, 0, 198, 2868, 1, 0, 0, 0, 200, 2870, 1, 0, 0, 0, 202, 2878, 1, 0, 0, 0, 204, 2886, 1, 0, 0, 0, 206, 2891, 1, 0, 0, 0, 208, 2893, 1, 0, 0, 0, 210, 2901, 1, 0, 0, 0, 212, 2917, 1, 0, 0, 0, 214, 2928, 1, 0, 0, 0, 216, 2930, 1, 0, 0, 0, 218, 2934, 1, 0, 0, 0, 220, 2944, 1, 0, 0, 0, 222, 2952, 1, 0, 0, 0, 224, 2956, 1, 0, 0, 0, 226, 2958, 1, 0, 0, 0, 228, 2965, 1, 0, 0, 0, 230, 2987, 1, 0, 0, 0, 232, 2992, 1, 0, 0, 0, 234, 2999, 1, 0, 0, 0, 236, 3011, 1, 0, 0, 0, 238, 3016, 1, 0, 0, 0, 240, 3023, 1, 0, 0, 0, 242, 3025, 1, 0, 0, 0, 244, 3029, 1, 0, 0, 0, 246, 3043, 1, 0, 0, 0, 248, 3054, 1, 0, 0, 0, 250, 3067, 1, 0, 0, 0, 252, 3081, 1, 0, 0, 0, 254, 3083, 1, 0, 0, 0, 256, 3099, 1, 0, 0, 0, 258, 3105, 1, 0, 0, 0, 260, 3112, 1, 0, 0, 0, 262, 3124, 1, 0, 0, 0, 264, 3138, 1, 0, 0, 0, 266, 3141, 1, 0, 0, 0, 268, 3176, 1, 0, 0, 0, 270, 3184, 1, 0, 0, 0, 272, 3186, 1, 0, 0, 0, 274, 3194, 1, 0, 0, 0, 276, 3210, 1, 0, 0, 0, 278, 3217, 1, 0, 0, 0, 280, 3223, 1, 0, 0, 0, 282, 3227, 1, 0, 0, 0, 284, 3229, 1, 0, 0, 0, 286, 3240, 1, 0, 0, 0, 288, 3242, 1, 0, 0, 0, 290, 3250, 1, 0, 0, 0, 292, 3272, 1, 0, 0, 0, 294, 3274, 1, 0, 0, 0, 296, 3284, 1, 0, 0, 0, 298, 3391, 1, 0, 0, 0, 300, 3393, 1, 0, 0, 0, 302, 3411, 1, 0, 0, 0, 304, 3414, 1, 0, 0, 0, 306, 3435, 1, 0, 0, 0, 308, 3443, 1, 0, 0, 0, 310, 3445, 1, 0, 0, 0, 312, 3453, 1, 0, 0, 0, 314, 3458, 1, 0, 0, 0, 316, 3473, 1, 0, 0, 0, 318, 3475, 1, 0, 0, 0, 320, 3478, 1, 0, 0, 0, 322, 3480, 1, 0, 0, 0, 324, 3511, 1, 0, 0, 0, 326, 3516, 1, 0, 0, 0, 328, 3518, 1, 0, 0, 0, 330, 3523, 1, 0, 0, 0, 332, 3589, 1, 0, 0, 0, 334, 3591, 1, 0, 0, 0, 336, 3606, 1, 0, 0, 0, 338, 3614, 1, 0, 0, 0, 340, 3637, 1, 0, 0, 0, 342, 3641, 1, 0, 0, 0, 344, 3661, 1, 0, 0, 0, 346, 3663, 1, 0, 0, 0, 348, 3672, 1, 0, 0, 0, 350, 3683, 1, 0, 0, 0, 352, 3698, 1, 0, 0, 0, 354, 3707, 1, 0, 0, 0, 356, 3712, 1, 0, 0, 0, 358, 3717, 1, 0, 0, 0, 360, 3722, 1, 0, 0, 0, 362, 3727, 1, 0, 0, 0, 364, 3729, 1, 0, 0, 0, 366, 3731, 1, 0, 0, 0, 368, 3740, 1, 0, 0, 0, 370, 3780, 1, 0, 0, 0, 372, 3786, 1, 0, 0, 0, 374, 3788, 1, 0, 0, 0, 376, 3803, 1, 0, 0, 0, 378, 3808, 1, 0, 0, 0, 380, 3811, 1, 0, 0, 0, 382, 3815, 1, 0, 0, 0, 384, 3820, 1, 0, 0, 0, 386, 3822, 1, 0, 0, 0, 388, 3824, 1, 0, 0, 0, 390, 3832, 1, 0, 0, 0, 392, 3834, 1, 0, 0, 0, 394, 3842, 1, 0, 0, 0, 396, 3844, 1, 0, 0, 0, 398, 3848, 1, 0, 0, 0, 400, 3861, 1, 0, 0, 0, 402, 3866, 1, 0, 0, 0, 404, 3871, 1, 0, 0, 0, 406, 3885, 1, 0, 0, 0, 408, 3913, 1, 0, 0, 0, 410, 3915, 1, 0, 0, 0, 412, 3923, 1, 0, 0, 0, 414, 3929, 1, 0, 0, 0, 416, 3937, 1, 0, 0, 0, 418, 3949, 1, 0, 0, 0, 420, 3951, 1, 0, 0, 0, 422, 4068, 1, 0, 0, 0, 424, 4070, 1, 0, 0, 0, 426, 4081, 1, 0, 0, 0, 428, 4092, 1, 0, 0, 0, 430, 4094, 1, 0, 0, 0, 432, 4105, 1, 0, 0, 0, 434, 4109, 1, 0, 0, 0, 436, 4154, 1, 0, 0, 0, 438, 4160, 1, 0, 0, 0, 440, 4162, 1, 0, 0, 0, 442, 4178, 1, 0, 0, 0, 444, 4213, 1, 0, 0, 0, 446, 4218, 1, 0, 0, 0, 448, 4227, 1, 0, 0, 0, 450, 4229, 1, 0, 0, 0, 452, 4254, 1, 0, 0, 0, 454, 4256, 1, 0, 0, 0, 456, 4276, 1, 0, 0, 0, 458, 4296, 1, 0, 0, 0, 460, 4316, 1, 0, 0, 0, 462, 4318, 1, 0, 0, 0, 464, 4324, 1, 0, 0, 0, 466, 4409, 1, 0, 0, 0, 468, 4434, 1, 0, 0, 0, 470, 4441, 1, 0, 0, 0, 472, 4457, 1, 0, 0, 0, 474, 4459, 1, 0, 0, 0, 476, 4461, 1, 0, 0, 0, 478, 4469, 1, 0, 0, 0, 480, 4475, 1, 0, 0, 0, 482, 4479, 1, 0, 0, 0, 484, 4487, 1, 0, 0, 0, 486, 4498, 1, 0, 0, 0, 488, 4647, 1, 0, 0, 0, 490, 4651, 1, 0, 0, 0, 492, 4744, 1, 0, 0, 0, 494, 4749, 1, 0, 0, 0, 496, 4753, 1, 0, 0, 0, 498, 4759, 1, 0, 0, 0, 500, 4827, 1, 0, 0, 0, 502, 4829, 1, 0, 0, 0, 504, 4833, 1, 0, 0, 0, 506, 4835, 1, 0, 0, 0, 508, 4862, 1, 0, 0, 0, 510, 4879, 1, 0, 0, 0, 512, 4881, 1, 0, 0, 0, 514, 4898, 1, 0, 0, 0, 516, 4958, 1, 0, 0, 0, 518, 4960, 1, 0, 0, 0, 520, 4971, 1, 0, 0, 0, 522, 4977, 1, 0, 0, 0, 524, 4979, 1, 0, 0, 0, 526, 5003, 1, 0, 0, 0, 528, 5009, 1, 0, 0, 0, 530, 5015, 1, 0, 0, 0, 532, 5017, 1, 0, 0, 0, 534, 5037, 1, 0, 0, 0, 536, 5066, 1, 0, 0, 0, 538, 5068, 1, 0, 0, 0, 540, 5111, 1, 0, 0, 0, 542, 5115, 1, 0, 0, 0, 544, 5120, 1, 0, 0, 0, 546, 5122, 1, 0, 0, 0, 548, 5141, 1, 0, 0, 0, 550, 5154, 1, 0, 0, 0, 552, 5169, 1, 0, 0, 0, 554, 5174, 1, 0, 0, 0, 556, 5178, 1, 0, 0, 0, 558, 5183, 1, 0, 0, 0, 560, 5190, 1, 0, 0, 0, 562, 5192, 1, 0, 0, 0, 564, 5217, 1, 0, 0, 0, 566, 5219, 1, 0, 0, 0, 568, 5227, 1, 0, 0, 0, 570, 5247, 1, 0, 0, 0, 572, 5249, 1, 0, 0, 0, 574, 5257, 1, 0, 0, 0, 576, 5275, 1, 0, 0, 0, 578, 5284, 1, 0, 0, 0, 580, 5290, 1, 0, 0, 0, 582, 5292, 1, 0, 0, 0, 584, 5308, 1, 0, 0, 0, 586, 5310, 1, 0, 0, 0, 588, 5325, 1, 0, 0, 0, 590, 5333, 1, 0, 0, 0, 592, 5336, 1, 0, 0, 0, 594, 5345, 1, 0, 0, 0, 596, 5386, 1, 0, 0, 0, 598, 5396, 1, 0, 0, 0, 600, 5403, 1, 0, 0, 0, 602, 5405, 1, 0, 0, 0, 604, 5420, 1, 0, 0, 0, 606, 5422, 1, 0, 0, 0, 608, 5425, 1, 0, 0, 0, 610, 5433, 1, 0, 0, 0, 612, 5480, 1, 0, 0, 0, 614, 5494, 1, 0, 0, 0, 616, 5508, 1, 0, 0, 0, 618, 5532, 1, 0, 0, 0, 620, 5539, 1, 0, 0, 0, 622, 5544, 1, 0, 0, 0, 624, 5552, 1, 0, 0, 0, 626, 5555, 1, 0, 0, 0, 628, 5559, 1, 0, 0, 0, 630, 5566, 1, 0, 0, 0, 632, 5602, 1, 0, 0, 0, 634, 5609, 1, 0, 0, 0, 636, 5611, 1, 0, 0, 0, 638, 5624, 1, 0, 0, 0, 640, 5626, 1, 0, 0, 0, 642, 5671, 1, 0, 0, 0, 644, 5673, 1, 0, 0, 0, 646, 5708, 1, 0, 0, 0, 648, 5710, 1, 0, 0, 0, 650, 5712, 1, 0, 0, 0, 652, 5714, 1, 0, 0, 0, 654, 5722, 1, 0, 0, 0, 656, 5736, 1, 0, 0, 0, 658, 6206, 1, 0, 0, 0, 660, 6210, 1, 0, 0, 0, 662, 6215, 1, 0, 0, 0, 664, 6286, 1, 0, 0, 0, 666, 6505, 1, 0, 0, 0, 668, 6507, 1, 0, 0, 0, 670, 6515, 1, 0, 0, 0, 672, 6531, 1, 0, 0, 0, 674, 6538, 1, 0, 0, 0, 676, 6540, 1, 0, 0, 0, 678, 6731, 1, 0, 0, 0, 680, 6733, 1, 0, 0, 0, 682, 6741, 1, 0, 0, 0, 684, 6749, 1, 0, 0, 0, 686, 6778, 1, 0, 0, 0, 688, 6780, 1, 0, 0, 0, 690, 6789, 1, 0, 0, 0, 692, 6797, 1, 0, 0, 0, 694, 6836, 1, 0, 0, 0, 696, 6850, 1, 0, 0, 0, 698, 6852, 1, 0, 0, 0, 700, 6872, 1, 0, 0, 0, 702, 6874, 1, 0, 0, 0, 704, 6887, 1, 0, 0, 0, 706, 6891, 1, 0, 0, 0, 708, 6893, 1, 0, 0, 0, 710, 6898, 1, 0, 0, 0, 712, 6900, 1, 0, 0, 0, 714, 6907, 1, 0, 0, 0, 716, 6909, 1, 0, 0, 0, 718, 6916, 1, 0, 0, 0, 720, 6971, 1, 0, 0, 0, 722, 6976, 1, 0, 0, 0, 724, 6988, 1, 0, 0, 0, 726, 6990, 1, 0, 0, 0, 728, 7006, 1, 0, 0, 0, 730, 7008, 1, 0, 0, 0, 732, 7040, 1, 0, 0, 0, 734, 7042, 1, 0, 0, 0, 736, 7045, 1, 0, 0, 0, 738, 7057, 1, 0, 0, 0, 740, 7059, 1, 0, 0, 0, 742, 7076, 1, 0, 0, 0, 744, 7078, 1, 0, 0, 0, 746, 7089, 1, 0, 0, 0, 748, 7094, 1, 0, 0, 0, 750, 7115, 1, 0, 0, 0, 752, 7121, 1, 0, 0, 0, 754, 7126, 1, 0, 0, 0, 756, 7133, 1, 0, 0, 0, 758, 7161, 1, 0, 0, 0, 760, 7163, 1, 0, 0, 0, 762, 7242, 1, 0, 0, 0, 764, 7244, 1, 0, 0, 0, 766, 7270, 1, 0, 0, 0, 768, 7275, 1, 0, 0, 0, 770, 7296, 1, 0, 0, 0, 772, 7308, 1, 0, 0, 0, 774, 7310, 1, 0, 0, 0, 776, 7318, 1, 0, 0, 0, 778, 7320, 1, 0, 0, 0, 780, 7325, 1, 0, 0, 0, 782, 7330, 1, 0, 0, 0, 784, 7334, 1, 0, 0, 0, 786, 7341, 1, 0, 0, 0, 788, 7343, 1, 0, 0, 0, 790, 7355, 1, 0, 0, 0, 792, 7380, 1, 0, 0, 0, 794, 7391, 1, 0, 0, 0, 796, 7393, 1, 0, 0, 0, 798, 7398, 1, 0, 0, 0, 800, 7403, 1, 0, 0, 0, 802, 7405, 1, 0, 0, 0, 804, 7416, 1, 0, 0, 0, 806, 7422, 1, 0, 0, 0, 808, 7451, 1, 0, 0, 0, 810, 7458, 1, 0, 0, 0, 812, 7470, 1, 0, 0, 0, 814, 7473, 1, 0, 0, 0, 816, 7482, 1, 0, 0, 0, 818, 7506, 1, 0, 0, 0, 820, 7508, 1, 0, 0, 0, 822, 7510, 1, 0, 0, 0, 824, 7518, 1, 0, 0, 0, 826, 7534, 1, 0, 0, 0, 828, 7545, 1, 0, 0, 0, 830, 7550, 1, 0, 0, 0, 832, 7552, 1, 0, 0, 0, 834, 7583, 1, 0, 0, 0, 836, 7602, 1, 0, 0, 0, 838, 7615, 1, 0, 0, 0, 840, 7623, 1, 0, 0, 0, 842, 7635, 1, 0, 0, 0, 844, 7637, 1, 0, 0, 0, 846, 7648, 1, 0, 0, 0, 848, 7662, 1, 0, 0, 0, 850, 7666, 1, 0, 0, 0, 852, 7672, 1, 0, 0, 0, 854, 7675, 1, 0, 0, 0, 856, 7685, 1, 0, 0, 0, 858, 7710, 1, 0, 0, 0, 860, 7712, 1, 0, 0, 0, 862, 7715, 1, 0, 0, 0, 864, 7732, 1, 0, 0, 0, 866, 7739, 1, 0, 0, 0, 868, 7743, 1, 0, 0, 0, 870, 7753, 1, 0, 0, 0, 872, 7778, 1, 0, 0, 0, 874, 7780, 1, 0, 0, 0, 876, 7790, 1, 0, 0, 0, 878, 7815, 1, 0, 0, 0, 880, 7829, 1, 0, 0, 0, 882, 7831, 1, 0, 0, 0, 884, 7843, 1, 0, 0, 0, 886, 7855, 1, 0, 0, 0, 888, 7857, 1, 0, 0, 0, 890, 7879, 1, 0, 0, 0, 892, 7883, 1, 0, 0, 0, 894, 7888, 1, 0, 0, 0, 896, 7890, 1, 0, 0, 0, 898, 7898, 1, 0, 0, 0, 900, 7902, 1, 0, 0, 0, 902, 7904, 1, 0, 0, 0, 904, 7908, 1, 0, 0, 0, 906, 7916, 1, 0, 0, 0, 908, 7932, 1, 0, 0, 0, 910, 7936, 1, 0, 0, 0, 912, 7961, 1, 0, 0, 0, 914, 7963, 1, 0, 0, 0, 916, 7972, 1, 0, 0, 0, 918, 7974, 1, 0, 0, 0, 920, 7981, 1, 0, 0, 0, 922, 7985, 1, 0, 0, 0, 924, 7987, 1, 0, 0, 0, 926, 7989, 1, 0, 0, 0, 928, 7995, 1, 0, 0, 0, 930, 7997, 1, 0, 0, 0, 932, 8024, 1, 0, 0, 0, 934, 8029, 1, 0, 0, 0, 936, 8039, 1, 0, 0, 0, 938, 8041, 1, 0, 0, 0, 940, 8045, 1, 0, 0, 0, 942, 8060, 1, 0, 0, 0, 944, 8062, 1, 0, 0, 0, 946, 8079, 1, 0, 0, 0, 948, 8090, 1, 0, 0, 0, 950, 8092, 1, 0, 0, 0, 952, 8148, 1, 0, 0, 0, 954, 8172, 1, 0, 0, 0, 956, 8183, 1, 0, 0, 0, 958, 8186, 1, 0, 0, 0, 960, 8208, 1, 0, 0, 0, 962, 8210, 1, 0, 0, 0, 964, 8221, 1, 0, 0, 0, 966, 8235, 1, 0, 0, 0, 968, 8237, 1, 0, 0, 0, 970, 8245, 1, 0, 0, 0, 972, 8252, 1, 0, 0, 0, 974, 8279, 1, 0, 0, 0, 976, 8281, 1, 0, 0, 0, 978, 8290, 1, 0, 0, 0, 980, 8295, 1, 0, 0, 0, 982, 8300, 1, 0, 0, 0, 984, 8310, 1, 0, 0, 0, 986, 8314, 1, 0, 0, 0, 988, 8316, 1, 0, 0, 0, 990, 8324, 1, 0, 0, 0, 992, 8328, 1, 0, 0, 0, 994, 8361, 1, 0, 0, 0, 996, 8371, 1, 0, 0, 0, 998, 8383, 1, 0, 0, 0, 1000, 8385, 1, 0, 0, 0, 1002, 8399, 1, 0, 0, 0, 1004, 8428, 1, 0, 0, 0, 1006, 8443, 1, 0, 0, 0, 1008, 8449, 1, 0, 0, 0, 1010, 8455, 1, 0, 0, 0, 1012, 8467, 1, 0, 0, 0, 1014, 8485, 1, 0, 0, 0, 1016, 8492, 1, 0, 0, 0, 1018, 8496, 1, 0, 0, 0, 1020, 8500, 1, 0, 0, 0, 1022, 8502, 1, 0, 0, 0, 1024, 8508, 1, 0, 0, 0, 1026, 8511, 1, 0, 0, 0, 1028, 8518, 1, 0, 0, 0, 1030, 8531, 1, 0, 0, 0, 1032, 8535, 1, 0, 0, 0, 1034, 8537, 1, 0, 0, 0, 1036, 8546, 1, 0, 0, 0, 1038, 8555, 1, 0, 0, 0, 1040, 8583, 1, 0, 0, 0, 1042, 8585, 1, 0, 0, 0, 1044, 8595, 1, 0, 0, 0, 1046, 8597, 1, 0, 0, 0, 1048, 8599, 1, 0, 0, 0, 1050, 8603, 1, 0, 0, 0, 1052, 8611, 1, 0, 0, 0, 1054, 8619, 1, 0, 0, 0, 1056, 8627, 1, 0, 0, 0, 1058, 8641, 1, 0, 0, 0, 1060, 8650, 1, 0, 0, 0, 1062, 8654, 1, 0, 0, 0, 1064, 8658, 1, 0, 0, 0, 1066, 8684, 1, 0, 0, 0, 1068, 8698, 1, 0, 0, 0, 1070, 8713, 1, 0, 0, 0, 1072, 8723, 1, 0, 0, 0, 1074, 8727, 1, 0, 0, 0, 1076, 8735, 1, 0, 0, 0, 1078, 8743, 1, 0, 0, 0, 1080, 8749, 1, 0, 0, 0, 1082, 8753, 1, 0, 0, 0, 1084, 8760, 1, 0, 0, 0, 1086, 8765, 1, 0, 0, 0, 1088, 8780, 1, 0, 0, 0, 1090, 8860, 1, 0, 0, 0, 1092, 8862, 1, 0, 0, 0, 1094, 8864, 1, 0, 0, 0, 1096, 8894, 1, 0, 0, 0, 1098, 8898, 1, 0, 0, 0, 1100, 9077, 1, 0, 0, 0, 1102, 9084, 1, 0, 0, 0, 1104, 9097, 1, 0, 0, 0, 1106, 9099, 1, 0, 0, 0, 1108, 9104, 1, 0, 0, 0, 1110, 9112, 1, 0, 0, 0, 1112, 9117, 1, 0, 0, 0, 1114, 9124, 1, 0, 0, 0, 1116, 9141, 1, 0, 0, 0, 1118, 9143, 1, 0, 0, 0, 1120, 9153, 1, 0, 0, 0, 1122, 9162, 1, 0, 0, 0, 1124, 9167, 1, 0, 0, 0, 1126, 9169, 1, 0, 0, 0, 1128, 9177, 1, 0, 0, 0, 1130, 9187, 1, 0, 0, 0, 1132, 9189, 1, 0, 0, 0, 1134, 9198, 1, 0, 0, 0, 1136, 9204, 1, 0, 0, 0, 1138, 9219, 1, 0, 0, 0, 1140, 9227, 1, 0, 0, 0, 1142, 9236, 1, 0, 0, 0, 1144, 9248, 1, 0, 0, 0, 1146, 9262, 1, 0, 0, 0, 1148, 9264, 1, 0, 0, 0, 1150, 9271, 1, 0, 0, 0, 1152, 9277, 1, 0, 0, 0, 1154, 9281, 1, 0, 0, 0, 1156, 9283, 1, 0, 0, 0, 1158, 9291, 1, 0, 0, 0, 1160, 9299, 1, 0, 0, 0, 1162, 9313, 1, 0, 0, 0, 1164, 9315, 1, 0, 0, 0, 1166, 9323, 1, 0, 0, 0, 1168, 9336, 1, 0, 0, 0, 1170, 9338, 1, 0, 0, 0, 1172, 9346, 1, 0, 0, 0, 1174, 9353, 1, 0, 0, 0, 1176, 9366, 1, 0, 0, 0, 1178, 9376, 1, 0, 0, 0, 1180, 9378, 1, 0, 0, 0, 1182, 9380, 1, 0, 0, 0, 1184, 9394, 1, 0, 0, 0, 1186, 9423, 1, 0, 0, 0, 1188, 9432, 1, 0, 0, 0, 1190, 9439, 1, 0, 0, 0, 1192, 9441, 1, 0, 0, 0, 1194, 9448, 1, 0, 0, 0, 1196, 9452, 1, 0, 0, 0, 1198, 9460, 1, 0, 0, 0, 1200, 9464, 1, 0, 0, 0, 1202, 9466, 1, 0, 0, 0, 1204, 9487, 1, 0, 0, 0, 1206, 9490, 1, 0, 0, 0, 1208, 9497, 1, 0, 0, 0, 1210, 9502, 1, 0, 0, 0, 1212, 9504, 1, 0, 0, 0, 1214, 9520, 1, 0, 0, 0, 1216, 9522, 1, 0, 0, 0, 1218, 9530, 1, 0, 0, 0, 1220, 9534, 1, 0, 0, 0, 1222, 9542, 1, 0, 0, 0, 1224, 9544, 1, 0, 0, 0, 1226, 9546, 1, 0, 0, 0, 1228, 9555, 1, 0, 0, 0, 1230, 9589, 1, 0, 0, 0, 1232, 9591, 1, 0, 0, 0, 1234, 9593, 1, 0, 0, 0, 1236, 9595, 1, 0, 0, 0, 1238, 9597, 1, 0, 0, 0, 1240, 9599, 1, 0, 0, 0, 1242, 9613, 1, 0, 0, 0, 1244, 9618, 1, 0, 0, 0, 1246, 9625, 1, 0, 0, 0, 1248, 9627, 1, 0, 0, 0, 1250, 9632, 1, 0, 0, 0, 1252, 9634, 1, 0, 0, 0, 1254, 9648, 1, 0, 0, 0, 1256, 9654, 1, 0, 0, 0, 1258, 9660, 1, 0, 0, 0, 1260, 9666, 1, 0, 0, 0, 1262, 9674, 1, 0, 0, 0, 1264, 9683, 1, 0, 0, 0, 1266, 9685, 1, 0, 0, 0, 1268, 9687, 1, 0, 0, 0, 1270, 9741, 1, 0, 0, 0, 1272, 9743, 1, 0, 0, 0, 1274, 9745, 1, 0, 0, 0, 1276, 9747, 1, 0, 0, 0, 1278, 9749, 1, 0, 0, 0, 1280, 9756, 1, 0, 0, 0, 1282, 9779, 1, 0, 0, 0, 1284, 9781, 1, 0, 0, 0, 1286, 9787, 1, 0, 0, 0, 1288, 9791, 1, 0, 0, 0, 1290, 9793, 1, 0, 0, 0, 1292, 9800, 1, 0, 0, 0, 1294, 9807, 1, 0, 0, 0, 1296, 9810, 1, 0, 0, 0, 1298, 9814, 1, 0, 0, 0, 1300, 9821, 1, 0, 0, 0, 1302, 9823, 1, 0, 0, 0, 1304, 9847, 1, 0, 0, 0, 1306, 9849, 1, 0, 0, 0, 1308, 9856, 1, 0, 0, 0, 1310, 9858, 1, 0, 0, 0, 1312, 9866, 1, 0, 0, 0, 1314, 9869, 1, 0, 0, 0, 1316, 9873, 1, 0, 0, 0, 1318, 9875, 1, 0, 0, 0, 1320, 9879, 1, 0, 0, 0, 1322, 9881, 1, 0, 0, 0, 1324, 9886, 1, 0, 0, 0, 1326, 9891, 1, 0, 0, 0, 1328, 9897, 1, 0, 0, 0, 1330, 9901, 1, 0, 0, 0, 1332, 9903, 1, 0, 0, 0, 1334, 9908, 1, 0, 0, 0, 1336, 9938, 1, 0, 0, 0, 1338, 9940, 1, 0, 0, 0, 1340, 9958, 1, 0, 0, 0, 1342, 9962, 1, 0, 0, 0, 1344, 9964, 1, 0, 0, 0, 1346, 9969, 1, 0, 0, 0, 1348, 9978, 1, 0, 0, 0, 1350, 9980, 1, 0, 0, 0, 1352, 9988, 1, 0, 0, 0, 1354, 9992, 1, 0, 0, 0, 1356, 9994, 1, 0, 0, 0, 1358, 9998, 1, 0, 0, 0, 1360, 10009, 1, 0, 0, 0, 1362, 10026, 1, 0, 0, 0, 1364, 10032, 1, 0, 0, 0, 1366, 10034, 1, 0, 0, 0, 1368, 10044, 1, 0, 0, 0, 1370, 10047, 1, 0, 0, 0, 1372, 10051, 1, 0, 0, 0, 1374, 10059, 1, 0, 0, 0, 1376, 10061, 1, 0, 0, 0, 1378, 10064, 1, 0, 0, 0, 1380, 10069, 1, 0, 0, 0, 1382, 10074, 1, 0, 0, 0, 1384, 10096, 1, 0, 0, 0, 1386, 10110, 1, 0, 0, 0, 1388, 10114, 1, 0, 0, 0, 1390, 10119, 1, 0, 0, 0, 1392, 10121, 1, 0, 0, 0, 1394, 10123, 1, 0, 0, 0, 1396, 10135, 1, 0, 0, 0, 1398, 10137, 1, 0, 0, 0, 1400, 10142, 1, 0, 0, 0, 1402, 10144, 1, 0, 0, 0, 1404, 10162, 1, 0, 0, 0, 1406, 10190, 1, 0, 0, 0, 1408, 10200, 1, 0, 0, 0, 1410, 10209, 1, 0, 0, 0, 1412, 10221, 1, 0, 0, 0, 1414, 10223, 1, 0, 0, 0, 1416, 10227, 1, 0, 0, 0, 1418, 10235, 1, 0, 0, 0, 1420, 10237, 1, 0, 0, 0, 1422, 10244, 1, 0, 0, 0, 1424, 10247, 1, 0, 0, 0, 1426, 10263, 1, 0, 0, 0, 1428, 10265, 1, 0, 0, 0, 1430, 10279, 1, 0, 0, 0, 1432, 10281, 1, 0, 0, 0, 1434, 10319, 1, 0, 0, 0, 1436, 10321, 1, 0, 0, 0, 1438, 10329, 1, 0, 0, 0, 1440, 10334, 1, 0, 0, 0, 1442, 10353, 1, 0, 0, 0, 1444, 10355, 1, 0, 0, 0, 1446, 10360, 1, 0, 0, 0, 1448, 10364, 1, 0, 0, 0, 1450, 10367, 1, 0, 0, 0, 1452, 10371, 1, 0, 0, 0, 1454, 10381, 1, 0, 0, 0, 1456, 10395, 1, 0, 0, 0, 1458, 10399, 1, 0, 0, 0, 1460, 10404, 1, 0, 0, 0, 1462, 10407, 1, 0, 0, 0, 1464, 10411, 1, 0, 0, 0, 1466, 10416, 1, 0, 0, 0, 1468, 10427, 1, 0, 0, 0, 1470, 10431, 1, 0, 0, 0, 1472, 10435, 1, 0, 0, 0, 1474, 10439, 1, 0, 0, 0, 1476, 10444, 1, 0, 0, 0, 1478, 10448, 1, 0, 0, 0, 1480, 10450, 1, 0, 0, 0, 1482, 10452, 1, 0, 0, 0, 1484, 10462, 1, 0, 0, 0, 1486, 10464, 1, 0, 0, 0, 1488, 10466, 1, 0, 0, 0, 1490, 10468, 1, 0, 0, 0, 1492, 10470, 1, 0, 0, 0, 1494, 10479, 1, 0, 0, 0, 1496, 1498, 3, 4, 2, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 5, 0, 0, 1, 1500, 1, 1, 0, 0, 0, 1501, 1502, 3, 1278, 639, 0, 1502, 3, 1, 0, 0, 0, 1503, 1505, 3, 6, 3, 0, 1504, 1506, 5, 7, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1512, 1, 0, 0, 0, 1507, 1508, 3, 6, 3, 0, 1508, 1509, 5, 7, 0, 0, 1509, 1510, 3, 4, 2, 0, 1510, 1512, 1, 0, 0, 0, 1511, 1503, 1, 0, 0, 0, 1511, 1507, 1, 0, 0, 0, 1512, 5, 1, 0, 0, 0, 1513, 1639, 3, 416, 208, 0, 1514, 1639, 3, 750, 375, 0, 1515, 1639, 3, 744, 372, 0, 1516, 1639, 3, 746, 373, 0, 1517, 1639, 3, 532, 266, 0, 1518, 1639, 3, 756, 378, 0, 1519, 1639, 3, 436, 218, 0, 1520, 1639, 3, 294, 147, 0, 1521, 1639, 3, 298, 149, 0, 1522, 1639, 3, 306, 153, 0, 1523, 1639, 3, 330, 165, 0, 1524, 1639, 3, 610, 305, 0, 1525, 1639, 3, 36, 18, 0, 1526, 1639, 3, 664, 332, 0, 1527, 1639, 3, 666, 333, 0, 1528, 1639, 3, 678, 339, 0, 1529, 1639, 3, 668, 334, 0, 1530, 1639, 3, 676, 338, 0, 1531, 1639, 3, 350, 175, 0, 1532, 1639, 3, 262, 131, 0, 1533, 1639, 3, 752, 376, 0, 1534, 1639, 3, 94, 47, 0, 1535, 1639, 3, 656, 328, 0, 1536, 1639, 3, 132, 66, 0, 1537, 1639, 3, 686, 343, 0, 1538, 1639, 3, 30, 15, 0, 1539, 1639, 3, 26, 13, 0, 1540, 1639, 3, 694, 347, 0, 1541, 1639, 3, 246, 123, 0, 1542, 1639, 3, 762, 381, 0, 1543, 1639, 3, 760, 380, 0, 1544, 1639, 3, 346, 173, 0, 1545, 1639, 3, 772, 386, 0, 1546, 1639, 3, 10, 5, 0, 1547, 1639, 3, 90, 45, 0, 1548, 1639, 3, 138, 69, 0, 1549, 1639, 3, 766, 383, 0, 1550, 1639, 3, 488, 244, 0, 1551, 1639, 3, 84, 42, 0, 1552, 1639, 3, 140, 70, 0, 1553, 1639, 3, 366, 183, 0, 1554, 1639, 3, 248, 124, 0, 1555, 1639, 3, 420, 210, 0, 1556, 1639, 3, 632, 316, 0, 1557, 1639, 3, 764, 382, 0, 1558, 1639, 3, 754, 377, 0, 1559, 1639, 3, 290, 145, 0, 1560, 1639, 3, 300, 150, 0, 1561, 1639, 3, 324, 162, 0, 1562, 1639, 3, 332, 166, 0, 1563, 1639, 3, 562, 281, 0, 1564, 1639, 3, 34, 17, 0, 1565, 1639, 3, 254, 127, 0, 1566, 1639, 3, 440, 220, 0, 1567, 1639, 3, 450, 225, 0, 1568, 1639, 3, 680, 340, 0, 1569, 1639, 3, 452, 226, 0, 1570, 1639, 3, 348, 174, 0, 1571, 1639, 3, 274, 137, 0, 1572, 1639, 3, 40, 20, 0, 1573, 1639, 3, 260, 130, 0, 1574, 1639, 3, 158, 79, 0, 1575, 1639, 3, 688, 344, 0, 1576, 1639, 3, 244, 122, 0, 1577, 1639, 3, 284, 142, 0, 1578, 1639, 3, 640, 320, 0, 1579, 1639, 3, 370, 185, 0, 1580, 1639, 3, 408, 204, 0, 1581, 1639, 3, 12, 6, 0, 1582, 1639, 3, 24, 12, 0, 1583, 1639, 3, 340, 170, 0, 1584, 1639, 3, 736, 368, 0, 1585, 1639, 3, 812, 406, 0, 1586, 1639, 3, 862, 431, 0, 1587, 1639, 3, 422, 211, 0, 1588, 1639, 3, 840, 420, 0, 1589, 1639, 3, 92, 46, 0, 1590, 1639, 3, 626, 313, 0, 1591, 1639, 3, 636, 318, 0, 1592, 1639, 3, 458, 229, 0, 1593, 1639, 3, 460, 230, 0, 1594, 1639, 3, 462, 231, 0, 1595, 1639, 3, 466, 233, 0, 1596, 1639, 3, 696, 348, 0, 1597, 1639, 3, 288, 144, 0, 1598, 1639, 3, 644, 322, 0, 1599, 1639, 3, 32, 16, 0, 1600, 1639, 3, 344, 172, 0, 1601, 1639, 3, 748, 374, 0, 1602, 1639, 3, 808, 404, 0, 1603, 1639, 3, 792, 396, 0, 1604, 1639, 3, 498, 249, 0, 1605, 1639, 3, 506, 253, 0, 1606, 1639, 3, 524, 262, 0, 1607, 1639, 3, 334, 167, 0, 1608, 1639, 3, 540, 270, 0, 1609, 1639, 3, 814, 407, 0, 1610, 1639, 3, 832, 416, 0, 1611, 1639, 3, 716, 358, 0, 1612, 1639, 3, 258, 129, 0, 1613, 1639, 3, 734, 367, 0, 1614, 1639, 3, 844, 422, 0, 1615, 1639, 3, 712, 356, 0, 1616, 1639, 3, 802, 401, 0, 1617, 1639, 3, 464, 232, 0, 1618, 1639, 3, 646, 323, 0, 1619, 1639, 3, 614, 307, 0, 1620, 1639, 3, 612, 306, 0, 1621, 1639, 3, 616, 308, 0, 1622, 1639, 3, 658, 329, 0, 1623, 1639, 3, 508, 254, 0, 1624, 1639, 3, 526, 263, 0, 1625, 1639, 3, 698, 349, 0, 1626, 1639, 3, 492, 246, 0, 1627, 1639, 3, 868, 434, 0, 1628, 1639, 3, 720, 360, 0, 1629, 1639, 3, 484, 242, 0, 1630, 1639, 3, 718, 359, 0, 1631, 1639, 3, 854, 427, 0, 1632, 1639, 3, 770, 385, 0, 1633, 1639, 3, 72, 36, 0, 1634, 1639, 3, 48, 24, 0, 1635, 1639, 3, 82, 41, 0, 1636, 1639, 3, 730, 365, 0, 1637, 1639, 3, 8, 4, 0, 1638, 1513, 1, 0, 0, 0, 1638, 1514, 1, 0, 0, 0, 1638, 1515, 1, 0, 0, 0, 1638, 1516, 1, 0, 0, 0, 1638, 1517, 1, 0, 0, 0, 1638, 1518, 1, 0, 0, 0, 1638, 1519, 1, 0, 0, 0, 1638, 1520, 1, 0, 0, 0, 1638, 1521, 1, 0, 0, 0, 1638, 1522, 1, 0, 0, 0, 1638, 1523, 1, 0, 0, 0, 1638, 1524, 1, 0, 0, 0, 1638, 1525, 1, 0, 0, 0, 1638, 1526, 1, 0, 0, 0, 1638, 1527, 1, 0, 0, 0, 1638, 1528, 1, 0, 0, 0, 1638, 1529, 1, 0, 0, 0, 1638, 1530, 1, 0, 0, 0, 1638, 1531, 1, 0, 0, 0, 1638, 1532, 1, 0, 0, 0, 1638, 1533, 1, 0, 0, 0, 1638, 1534, 1, 0, 0, 0, 1638, 1535, 1, 0, 0, 0, 1638, 1536, 1, 0, 0, 0, 1638, 1537, 1, 0, 0, 0, 1638, 1538, 1, 0, 0, 0, 1638, 1539, 1, 0, 0, 0, 1638, 1540, 1, 0, 0, 0, 1638, 1541, 1, 0, 0, 0, 1638, 1542, 1, 0, 0, 0, 1638, 1543, 1, 0, 0, 0, 1638, 1544, 1, 0, 0, 0, 1638, 1545, 1, 0, 0, 0, 1638, 1546, 1, 0, 0, 0, 1638, 1547, 1, 0, 0, 0, 1638, 1548, 1, 0, 0, 0, 1638, 1549, 1, 0, 0, 0, 1638, 1550, 1, 0, 0, 0, 1638, 1551, 1, 0, 0, 0, 1638, 1552, 1, 0, 0, 0, 1638, 1553, 1, 0, 0, 0, 1638, 1554, 1, 0, 0, 0, 1638, 1555, 1, 0, 0, 0, 1638, 1556, 1, 0, 0, 0, 1638, 1557, 1, 0, 0, 0, 1638, 1558, 1, 0, 0, 0, 1638, 1559, 1, 0, 0, 0, 1638, 1560, 1, 0, 0, 0, 1638, 1561, 1, 0, 0, 0, 1638, 1562, 1, 0, 0, 0, 1638, 1563, 1, 0, 0, 0, 1638, 1564, 1, 0, 0, 0, 1638, 1565, 1, 0, 0, 0, 1638, 1566, 1, 0, 0, 0, 1638, 1567, 1, 0, 0, 0, 1638, 1568, 1, 0, 0, 0, 1638, 1569, 1, 0, 0, 0, 1638, 1570, 1, 0, 0, 0, 1638, 1571, 1, 0, 0, 0, 1638, 1572, 1, 0, 0, 0, 1638, 1573, 1, 0, 0, 0, 1638, 1574, 1, 0, 0, 0, 1638, 1575, 1, 0, 0, 0, 1638, 1576, 1, 0, 0, 0, 1638, 1577, 1, 0, 0, 0, 1638, 1578, 1, 0, 0, 0, 1638, 1579, 1, 0, 0, 0, 1638, 1580, 1, 0, 0, 0, 1638, 1581, 1, 0, 0, 0, 1638, 1582, 1, 0, 0, 0, 1638, 1583, 1, 0, 0, 0, 1638, 1584, 1, 0, 0, 0, 1638, 1585, 1, 0, 0, 0, 1638, 1586, 1, 0, 0, 0, 1638, 1587, 1, 0, 0, 0, 1638, 1588, 1, 0, 0, 0, 1638, 1589, 1, 0, 0, 0, 1638, 1590, 1, 0, 0, 0, 1638, 1591, 1, 0, 0, 0, 1638, 1592, 1, 0, 0, 0, 1638, 1593, 1, 0, 0, 0, 1638, 1594, 1, 0, 0, 0, 1638, 1595, 1, 0, 0, 0, 1638, 1596, 1, 0, 0, 0, 1638, 1597, 1, 0, 0, 0, 1638, 1598, 1, 0, 0, 0, 1638, 1599, 1, 0, 0, 0, 1638, 1600, 1, 0, 0, 0, 1638, 1601, 1, 0, 0, 0, 1638, 1602, 1, 0, 0, 0, 1638, 1603, 1, 0, 0, 0, 1638, 1604, 1, 0, 0, 0, 1638, 1605, 1, 0, 0, 0, 1638, 1606, 1, 0, 0, 0, 1638, 1607, 1, 0, 0, 0, 1638, 1608, 1, 0, 0, 0, 1638, 1609, 1, 0, 0, 0, 1638, 1610, 1, 0, 0, 0, 1638, 1611, 1, 0, 0, 0, 1638, 1612, 1, 0, 0, 0, 1638, 1613, 1, 0, 0, 0, 1638, 1614, 1, 0, 0, 0, 1638, 1615, 1, 0, 0, 0, 1638, 1616, 1, 0, 0, 0, 1638, 1617, 1, 0, 0, 0, 1638, 1618, 1, 0, 0, 0, 1638, 1619, 1, 0, 0, 0, 1638, 1620, 1, 0, 0, 0, 1638, 1621, 1, 0, 0, 0, 1638, 1622, 1, 0, 0, 0, 1638, 1623, 1, 0, 0, 0, 1638, 1624, 1, 0, 0, 0, 1638, 1625, 1, 0, 0, 0, 1638, 1626, 1, 0, 0, 0, 1638, 1627, 1, 0, 0, 0, 1638, 1628, 1, 0, 0, 0, 1638, 1629, 1, 0, 0, 0, 1638, 1630, 1, 0, 0, 0, 1638, 1631, 1, 0, 0, 0, 1638, 1632, 1, 0, 0, 0, 1638, 1633, 1, 0, 0, 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, 7, 1, 0, 0, 0, 1640, 1642, 5, 668, 0, 0, 1641, 1643, 5, 669, 0, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 9, 1, 0, 0, 0, 1644, 1645, 5, 433, 0, 0, 1645, 1646, 3, 1094, 547, 0, 1646, 11, 1, 0, 0, 0, 1647, 1648, 5, 46, 0, 0, 1648, 1649, 5, 311, 0, 0, 1649, 1650, 3, 1248, 624, 0, 1650, 1651, 3, 14, 7, 0, 1651, 1652, 3, 16, 8, 0, 1652, 13, 1, 0, 0, 0, 1653, 1656, 5, 105, 0, 0, 1654, 1656, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1654, 1, 0, 0, 0, 1656, 15, 1, 0, 0, 0, 1657, 1659, 3, 22, 11, 0, 1658, 1657, 1, 0, 0, 0, 1659, 1662, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 17, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1665, 3, 20, 10, 0, 1664, 1663, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 19, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 1672, 5, 280, 0, 0, 1670, 1673, 3, 1240, 620, 0, 1671, 1673, 5, 78, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 1688, 1, 0, 0, 0, 1674, 1675, 7, 0, 0, 0, 1675, 1676, 5, 280, 0, 0, 1676, 1688, 3, 1240, 620, 0, 1677, 1688, 5, 228, 0, 0, 1678, 1679, 5, 164, 0, 0, 1679, 1680, 5, 74, 0, 0, 1680, 1688, 3, 1246, 623, 0, 1681, 1682, 5, 364, 0, 0, 1682, 1683, 5, 361, 0, 0, 1683, 1688, 3, 1240, 620, 0, 1684, 1685, 5, 99, 0, 0, 1685, 1688, 3, 1252, 626, 0, 1686, 1688, 3, 1264, 632, 0, 1687, 1669, 1, 0, 0, 0, 1687, 1674, 1, 0, 0, 0, 1687, 1677, 1, 0, 0, 0, 1687, 1678, 1, 0, 0, 0, 1687, 1681, 1, 0, 0, 0, 1687, 1684, 1, 0, 0, 0, 1687, 1686, 1, 0, 0, 0, 1688, 21, 1, 0, 0, 0, 1689, 1700, 3, 20, 10, 0, 1690, 1691, 5, 341, 0, 0, 1691, 1700, 3, 1238, 619, 0, 1692, 1693, 5, 134, 0, 0, 1693, 1700, 3, 1252, 626, 0, 1694, 1695, 5, 311, 0, 0, 1695, 1700, 3, 1252, 626, 0, 1696, 1697, 5, 68, 0, 0, 1697, 1698, 7, 1, 0, 0, 1698, 1700, 3, 1252, 626, 0, 1699, 1689, 1, 0, 0, 0, 1699, 1690, 1, 0, 0, 0, 1699, 1692, 1, 0, 0, 0, 1699, 1694, 1, 0, 0, 0, 1699, 1696, 1, 0, 0, 0, 1700, 23, 1, 0, 0, 0, 1701, 1702, 5, 46, 0, 0, 1702, 1703, 5, 99, 0, 0, 1703, 1704, 3, 1248, 624, 0, 1704, 1705, 3, 14, 7, 0, 1705, 1706, 3, 16, 8, 0, 1706, 25, 1, 0, 0, 0, 1707, 1708, 5, 138, 0, 0, 1708, 1709, 7, 2, 0, 0, 1709, 1710, 3, 1250, 625, 0, 1710, 1711, 3, 14, 7, 0, 1711, 1712, 3, 18, 9, 0, 1712, 27, 1, 0, 0, 0, 1713, 1718, 1, 0, 0, 0, 1714, 1715, 5, 68, 0, 0, 1715, 1716, 5, 175, 0, 0, 1716, 1718, 3, 1222, 611, 0, 1717, 1713, 1, 0, 0, 0, 1717, 1714, 1, 0, 0, 0, 1718, 29, 1, 0, 0, 0, 1719, 1720, 5, 138, 0, 0, 1720, 1722, 7, 2, 0, 0, 1721, 1723, 5, 30, 0, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 3, 1250, 625, 0, 1725, 1726, 3, 28, 14, 0, 1726, 1727, 3, 78, 39, 0, 1727, 31, 1, 0, 0, 0, 1728, 1729, 5, 191, 0, 0, 1729, 1732, 7, 3, 0, 0, 1730, 1731, 5, 220, 0, 0, 1731, 1733, 5, 389, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 3, 1252, 626, 0, 1735, 33, 1, 0, 0, 0, 1736, 1737, 5, 46, 0, 0, 1737, 1738, 5, 66, 0, 0, 1738, 1739, 3, 1248, 624, 0, 1739, 1740, 3, 14, 7, 0, 1740, 1741, 3, 16, 8, 0, 1741, 35, 1, 0, 0, 0, 1742, 1743, 5, 138, 0, 0, 1743, 1744, 5, 66, 0, 0, 1744, 1745, 3, 1250, 625, 0, 1745, 1746, 3, 38, 19, 0, 1746, 1747, 5, 99, 0, 0, 1747, 1748, 3, 1252, 626, 0, 1748, 37, 1, 0, 0, 0, 1749, 1750, 7, 4, 0, 0, 1750, 39, 1, 0, 0, 0, 1751, 1752, 5, 46, 0, 0, 1752, 1756, 5, 316, 0, 0, 1753, 1754, 5, 220, 0, 0, 1754, 1755, 5, 77, 0, 0, 1755, 1757, 5, 389, 0, 0, 1756, 1753, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1763, 1, 0, 0, 0, 1758, 1759, 3, 42, 21, 0, 1759, 1760, 5, 106, 0, 0, 1760, 1761, 3, 1250, 625, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1764, 3, 1254, 627, 0, 1763, 1758, 1, 0, 0, 0, 1763, 1762, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 44, 22, 0, 1766, 41, 1, 0, 0, 0, 1767, 1770, 3, 1254, 627, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1769, 1768, 1, 0, 0, 0, 1770, 43, 1, 0, 0, 0, 1771, 1773, 3, 46, 23, 0, 1772, 1771, 1, 0, 0, 0, 1773, 1776, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 45, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1784, 3, 158, 79, 0, 1778, 1784, 3, 540, 270, 0, 1779, 1784, 3, 260, 130, 0, 1780, 1784, 3, 370, 185, 0, 1781, 1784, 3, 506, 253, 0, 1782, 1784, 3, 730, 365, 0, 1783, 1777, 1, 0, 0, 0, 1783, 1778, 1, 0, 0, 0, 1783, 1779, 1, 0, 0, 0, 1783, 1780, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 47, 1, 0, 0, 0, 1785, 1787, 5, 326, 0, 0, 1786, 1788, 7, 5, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 3, 50, 25, 0, 1790, 49, 1, 0, 0, 0, 1791, 1792, 5, 349, 0, 0, 1792, 1800, 3, 726, 363, 0, 1793, 1794, 5, 325, 0, 0, 1794, 1795, 5, 154, 0, 0, 1795, 1796, 5, 36, 0, 0, 1796, 1797, 5, 349, 0, 0, 1797, 1800, 3, 726, 363, 0, 1798, 1800, 3, 54, 27, 0, 1799, 1791, 1, 0, 0, 0, 1799, 1793, 1, 0, 0, 0, 1799, 1798, 1, 0, 0, 0, 1800, 51, 1, 0, 0, 0, 1801, 1802, 3, 56, 28, 0, 1802, 1803, 7, 6, 0, 0, 1803, 1804, 3, 58, 29, 0, 1804, 53, 1, 0, 0, 0, 1805, 1831, 3, 52, 26, 0, 1806, 1807, 3, 56, 28, 0, 1807, 1808, 5, 64, 0, 0, 1808, 1809, 5, 434, 0, 0, 1809, 1831, 1, 0, 0, 0, 1810, 1811, 5, 411, 0, 0, 1811, 1812, 5, 379, 0, 0, 1812, 1831, 3, 66, 33, 0, 1813, 1814, 5, 152, 0, 0, 1814, 1831, 3, 1240, 620, 0, 1815, 1816, 5, 316, 0, 0, 1816, 1831, 3, 1240, 620, 0, 1817, 1818, 5, 260, 0, 0, 1818, 1831, 3, 68, 34, 0, 1819, 1820, 5, 311, 0, 0, 1820, 1831, 3, 70, 35, 0, 1821, 1822, 5, 325, 0, 0, 1822, 1823, 5, 106, 0, 0, 1823, 1831, 3, 70, 35, 0, 1824, 1825, 5, 376, 0, 0, 1825, 1826, 5, 272, 0, 0, 1826, 1831, 3, 1112, 556, 0, 1827, 1828, 5, 349, 0, 0, 1828, 1829, 5, 330, 0, 0, 1829, 1831, 3, 1240, 620, 0, 1830, 1805, 1, 0, 0, 0, 1830, 1806, 1, 0, 0, 0, 1830, 1810, 1, 0, 0, 0, 1830, 1813, 1, 0, 0, 0, 1830, 1815, 1, 0, 0, 0, 1830, 1817, 1, 0, 0, 0, 1830, 1819, 1, 0, 0, 0, 1830, 1821, 1, 0, 0, 0, 1830, 1824, 1, 0, 0, 0, 1830, 1827, 1, 0, 0, 0, 1831, 55, 1, 0, 0, 0, 1832, 1837, 3, 1254, 627, 0, 1833, 1834, 5, 11, 0, 0, 1834, 1836, 3, 1254, 627, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1839, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 57, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1845, 3, 60, 30, 0, 1841, 1842, 5, 6, 0, 0, 1842, 1844, 3, 60, 30, 0, 1843, 1841, 1, 0, 0, 0, 1844, 1847, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 59, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1848, 1851, 3, 64, 32, 0, 1849, 1851, 3, 270, 135, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1851, 61, 1, 0, 0, 0, 1852, 1853, 5, 293, 0, 0, 1853, 1858, 7, 7, 0, 0, 1854, 1855, 5, 303, 0, 0, 1855, 1858, 5, 293, 0, 0, 1856, 1858, 5, 323, 0, 0, 1857, 1852, 1, 0, 0, 0, 1857, 1854, 1, 0, 0, 0, 1857, 1856, 1, 0, 0, 0, 1858, 63, 1, 0, 0, 0, 1859, 1864, 5, 96, 0, 0, 1860, 1864, 5, 60, 0, 0, 1861, 1864, 5, 80, 0, 0, 1862, 1864, 3, 70, 35, 0, 1863, 1859, 1, 0, 0, 0, 1863, 1860, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1862, 1, 0, 0, 0, 1864, 65, 1, 0, 0, 0, 1865, 1881, 3, 1240, 620, 0, 1866, 1881, 3, 1264, 632, 0, 1867, 1868, 3, 1036, 518, 0, 1868, 1869, 3, 1240, 620, 0, 1869, 1870, 3, 1040, 520, 0, 1870, 1881, 1, 0, 0, 0, 1871, 1872, 3, 1036, 518, 0, 1872, 1873, 5, 2, 0, 0, 1873, 1874, 3, 1238, 619, 0, 1874, 1875, 5, 3, 0, 0, 1875, 1876, 3, 1240, 620, 0, 1876, 1881, 1, 0, 0, 0, 1877, 1881, 3, 270, 135, 0, 1878, 1881, 5, 53, 0, 0, 1879, 1881, 5, 245, 0, 0, 1880, 1865, 1, 0, 0, 0, 1880, 1866, 1, 0, 0, 0, 1880, 1867, 1, 0, 0, 0, 1880, 1871, 1, 0, 0, 0, 1880, 1877, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1879, 1, 0, 0, 0, 1881, 67, 1, 0, 0, 0, 1882, 1886, 3, 1240, 620, 0, 1883, 1886, 5, 53, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1882, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1884, 1, 0, 0, 0, 1886, 69, 1, 0, 0, 0, 1887, 1890, 3, 1260, 630, 0, 1888, 1890, 3, 1240, 620, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 71, 1, 0, 0, 0, 1891, 1892, 5, 306, 0, 0, 1892, 1893, 3, 74, 37, 0, 1893, 73, 1, 0, 0, 0, 1894, 1903, 3, 76, 38, 0, 1895, 1896, 5, 411, 0, 0, 1896, 1903, 5, 379, 0, 0, 1897, 1898, 5, 349, 0, 0, 1898, 1899, 5, 235, 0, 0, 1899, 1903, 5, 242, 0, 0, 1900, 1901, 5, 325, 0, 0, 1901, 1903, 5, 106, 0, 0, 1902, 1894, 1, 0, 0, 0, 1902, 1895, 1, 0, 0, 0, 1902, 1897, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1903, 75, 1, 0, 0, 0, 1904, 1907, 3, 56, 28, 0, 1905, 1907, 5, 30, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1905, 1, 0, 0, 0, 1907, 77, 1, 0, 0, 0, 1908, 1909, 5, 326, 0, 0, 1909, 1912, 3, 50, 25, 0, 1910, 1912, 3, 72, 36, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 79, 1, 0, 0, 0, 1913, 1914, 5, 326, 0, 0, 1914, 1917, 3, 54, 27, 0, 1915, 1917, 3, 72, 36, 0, 1916, 1913, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 81, 1, 0, 0, 0, 1918, 1928, 5, 328, 0, 0, 1919, 1929, 3, 56, 28, 0, 1920, 1921, 5, 411, 0, 0, 1921, 1929, 5, 379, 0, 0, 1922, 1923, 5, 349, 0, 0, 1923, 1924, 5, 235, 0, 0, 1924, 1929, 5, 242, 0, 0, 1925, 1926, 5, 325, 0, 0, 1926, 1929, 5, 106, 0, 0, 1927, 1929, 5, 30, 0, 0, 1928, 1919, 1, 0, 0, 0, 1928, 1920, 1, 0, 0, 0, 1928, 1922, 1, 0, 0, 0, 1928, 1925, 1, 0, 0, 0, 1928, 1927, 1, 0, 0, 0, 1929, 83, 1, 0, 0, 0, 1930, 1931, 5, 326, 0, 0, 1931, 1932, 5, 165, 0, 0, 1932, 1933, 3, 86, 43, 0, 1933, 1934, 3, 88, 44, 0, 1934, 85, 1, 0, 0, 0, 1935, 1938, 5, 30, 0, 0, 1936, 1938, 3, 1216, 608, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 87, 1, 0, 0, 0, 1939, 1940, 7, 8, 0, 0, 1940, 89, 1, 0, 0, 0, 1941, 1942, 5, 155, 0, 0, 1942, 91, 1, 0, 0, 0, 1943, 1944, 5, 187, 0, 0, 1944, 1945, 7, 9, 0, 0, 1945, 93, 1, 0, 0, 0, 1946, 1947, 5, 138, 0, 0, 1947, 1950, 5, 92, 0, 0, 1948, 1949, 5, 220, 0, 0, 1949, 1951, 5, 389, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1955, 3, 966, 483, 0, 1953, 1956, 3, 96, 48, 0, 1954, 1956, 3, 98, 49, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1954, 1, 0, 0, 0, 1956, 2056, 1, 0, 0, 0, 1957, 1958, 5, 138, 0, 0, 1958, 1959, 5, 92, 0, 0, 1959, 1960, 5, 30, 0, 0, 1960, 1961, 5, 68, 0, 0, 1961, 1962, 5, 344, 0, 0, 1962, 1966, 3, 1222, 611, 0, 1963, 1964, 5, 274, 0, 0, 1964, 1965, 5, 147, 0, 0, 1965, 1967, 3, 1252, 626, 0, 1966, 1963, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 5, 326, 0, 0, 1969, 1970, 5, 344, 0, 0, 1970, 1971, 3, 1222, 611, 0, 1971, 1972, 3, 850, 425, 0, 1972, 2056, 1, 0, 0, 0, 1973, 1974, 5, 138, 0, 0, 1974, 1977, 5, 226, 0, 0, 1975, 1976, 5, 220, 0, 0, 1976, 1978, 5, 389, 0, 0, 1977, 1975, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1982, 3, 1218, 609, 0, 1980, 1983, 3, 96, 48, 0, 1981, 1983, 3, 100, 50, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1981, 1, 0, 0, 0, 1983, 2056, 1, 0, 0, 0, 1984, 1985, 5, 138, 0, 0, 1985, 1986, 5, 226, 0, 0, 1986, 1987, 5, 30, 0, 0, 1987, 1988, 5, 68, 0, 0, 1988, 1989, 5, 344, 0, 0, 1989, 1993, 3, 1222, 611, 0, 1990, 1991, 5, 274, 0, 0, 1991, 1992, 5, 147, 0, 0, 1992, 1994, 3, 1252, 626, 0, 1993, 1990, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 5, 326, 0, 0, 1996, 1997, 5, 344, 0, 0, 1997, 1998, 3, 1222, 611, 0, 1998, 1999, 3, 850, 425, 0, 1999, 2056, 1, 0, 0, 0, 2000, 2001, 5, 138, 0, 0, 2001, 2004, 5, 321, 0, 0, 2002, 2003, 5, 220, 0, 0, 2003, 2005, 5, 389, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 3, 1218, 609, 0, 2007, 2008, 3, 96, 48, 0, 2008, 2056, 1, 0, 0, 0, 2009, 2010, 5, 138, 0, 0, 2010, 2013, 5, 369, 0, 0, 2011, 2012, 5, 220, 0, 0, 2012, 2014, 5, 389, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 3, 1218, 609, 0, 2016, 2017, 3, 96, 48, 0, 2017, 2056, 1, 0, 0, 0, 2018, 2019, 5, 138, 0, 0, 2019, 2020, 5, 251, 0, 0, 2020, 2023, 5, 369, 0, 0, 2021, 2022, 5, 220, 0, 0, 2022, 2024, 5, 389, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 3, 1218, 609, 0, 2026, 2027, 3, 96, 48, 0, 2027, 2056, 1, 0, 0, 0, 2028, 2029, 5, 138, 0, 0, 2029, 2030, 5, 251, 0, 0, 2030, 2031, 5, 369, 0, 0, 2031, 2032, 5, 30, 0, 0, 2032, 2033, 5, 68, 0, 0, 2033, 2034, 5, 344, 0, 0, 2034, 2038, 3, 1222, 611, 0, 2035, 2036, 5, 274, 0, 0, 2036, 2037, 5, 147, 0, 0, 2037, 2039, 3, 1252, 626, 0, 2038, 2035, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 5, 326, 0, 0, 2041, 2042, 5, 344, 0, 0, 2042, 2043, 3, 1222, 611, 0, 2043, 2044, 3, 850, 425, 0, 2044, 2056, 1, 0, 0, 0, 2045, 2046, 5, 138, 0, 0, 2046, 2047, 5, 63, 0, 0, 2047, 2050, 5, 92, 0, 0, 2048, 2049, 5, 220, 0, 0, 2049, 2051, 5, 389, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 3, 966, 483, 0, 2053, 2054, 3, 96, 48, 0, 2054, 2056, 1, 0, 0, 0, 2055, 1946, 1, 0, 0, 0, 2055, 1957, 1, 0, 0, 0, 2055, 1973, 1, 0, 0, 0, 2055, 1984, 1, 0, 0, 0, 2055, 2000, 1, 0, 0, 0, 2055, 2009, 1, 0, 0, 0, 2055, 2018, 1, 0, 0, 0, 2055, 2028, 1, 0, 0, 0, 2055, 2045, 1, 0, 0, 0, 2056, 95, 1, 0, 0, 0, 2057, 2062, 3, 102, 51, 0, 2058, 2059, 5, 6, 0, 0, 2059, 2061, 3, 102, 51, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 97, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2066, 5, 435, 0, 0, 2066, 2067, 5, 278, 0, 0, 2067, 2068, 3, 1218, 609, 0, 2068, 2069, 3, 126, 63, 0, 2069, 2074, 1, 0, 0, 0, 2070, 2071, 5, 436, 0, 0, 2071, 2072, 5, 278, 0, 0, 2072, 2074, 3, 1218, 609, 0, 2073, 2065, 1, 0, 0, 0, 2073, 2070, 1, 0, 0, 0, 2074, 99, 1, 0, 0, 0, 2075, 2076, 5, 435, 0, 0, 2076, 2077, 5, 278, 0, 0, 2077, 2078, 3, 1218, 609, 0, 2078, 101, 1, 0, 0, 0, 2079, 2080, 5, 133, 0, 0, 2080, 2332, 3, 174, 87, 0, 2081, 2082, 5, 133, 0, 0, 2082, 2083, 5, 220, 0, 0, 2083, 2084, 5, 77, 0, 0, 2084, 2085, 5, 389, 0, 0, 2085, 2332, 3, 174, 87, 0, 2086, 2087, 5, 133, 0, 0, 2087, 2088, 5, 44, 0, 0, 2088, 2332, 3, 174, 87, 0, 2089, 2090, 5, 133, 0, 0, 2090, 2091, 5, 44, 0, 0, 2091, 2092, 5, 220, 0, 0, 2092, 2093, 5, 77, 0, 0, 2093, 2094, 5, 389, 0, 0, 2094, 2332, 3, 174, 87, 0, 2095, 2096, 5, 138, 0, 0, 2096, 2097, 3, 660, 330, 0, 2097, 2098, 3, 1254, 627, 0, 2098, 2099, 3, 104, 52, 0, 2099, 2332, 1, 0, 0, 0, 2100, 2101, 5, 138, 0, 0, 2101, 2102, 3, 660, 330, 0, 2102, 2103, 3, 1254, 627, 0, 2103, 2104, 5, 191, 0, 0, 2104, 2105, 5, 77, 0, 0, 2105, 2106, 5, 78, 0, 0, 2106, 2332, 1, 0, 0, 0, 2107, 2108, 5, 138, 0, 0, 2108, 2109, 3, 660, 330, 0, 2109, 2110, 3, 1254, 627, 0, 2110, 2111, 5, 326, 0, 0, 2111, 2112, 5, 77, 0, 0, 2112, 2113, 5, 78, 0, 0, 2113, 2332, 1, 0, 0, 0, 2114, 2115, 5, 138, 0, 0, 2115, 2116, 3, 660, 330, 0, 2116, 2117, 3, 1254, 627, 0, 2117, 2118, 5, 191, 0, 0, 2118, 2119, 5, 437, 0, 0, 2119, 2332, 1, 0, 0, 0, 2120, 2121, 5, 138, 0, 0, 2121, 2122, 3, 660, 330, 0, 2122, 2123, 3, 1254, 627, 0, 2123, 2124, 5, 191, 0, 0, 2124, 2125, 5, 437, 0, 0, 2125, 2126, 5, 220, 0, 0, 2126, 2127, 5, 389, 0, 0, 2127, 2332, 1, 0, 0, 0, 2128, 2129, 5, 138, 0, 0, 2129, 2130, 3, 660, 330, 0, 2130, 2131, 3, 1254, 627, 0, 2131, 2132, 5, 326, 0, 0, 2132, 2133, 5, 335, 0, 0, 2133, 2134, 3, 1246, 623, 0, 2134, 2332, 1, 0, 0, 0, 2135, 2136, 5, 138, 0, 0, 2136, 2137, 3, 660, 330, 0, 2137, 2138, 3, 1238, 619, 0, 2138, 2139, 5, 326, 0, 0, 2139, 2140, 5, 335, 0, 0, 2140, 2141, 3, 1246, 623, 0, 2141, 2332, 1, 0, 0, 0, 2142, 2143, 5, 138, 0, 0, 2143, 2144, 3, 660, 330, 0, 2144, 2145, 3, 1254, 627, 0, 2145, 2146, 5, 326, 0, 0, 2146, 2147, 3, 114, 57, 0, 2147, 2332, 1, 0, 0, 0, 2148, 2149, 5, 138, 0, 0, 2149, 2150, 3, 660, 330, 0, 2150, 2151, 3, 1254, 627, 0, 2151, 2152, 5, 306, 0, 0, 2152, 2153, 3, 114, 57, 0, 2153, 2332, 1, 0, 0, 0, 2154, 2155, 5, 138, 0, 0, 2155, 2156, 3, 660, 330, 0, 2156, 2157, 3, 1254, 627, 0, 2157, 2158, 5, 326, 0, 0, 2158, 2159, 5, 338, 0, 0, 2159, 2160, 3, 1254, 627, 0, 2160, 2332, 1, 0, 0, 0, 2161, 2162, 5, 138, 0, 0, 2162, 2163, 3, 660, 330, 0, 2163, 2164, 3, 1254, 627, 0, 2164, 2165, 5, 133, 0, 0, 2165, 2166, 5, 438, 0, 0, 2166, 2167, 3, 184, 92, 0, 2167, 2168, 5, 36, 0, 0, 2168, 2169, 5, 219, 0, 0, 2169, 2170, 3, 264, 132, 0, 2170, 2332, 1, 0, 0, 0, 2171, 2172, 5, 138, 0, 0, 2172, 2173, 3, 660, 330, 0, 2173, 2174, 3, 1254, 627, 0, 2174, 2175, 3, 122, 61, 0, 2175, 2332, 1, 0, 0, 0, 2176, 2177, 5, 138, 0, 0, 2177, 2178, 3, 660, 330, 0, 2178, 2179, 3, 1254, 627, 0, 2179, 2180, 5, 191, 0, 0, 2180, 2181, 5, 219, 0, 0, 2181, 2332, 1, 0, 0, 0, 2182, 2183, 5, 138, 0, 0, 2183, 2184, 3, 660, 330, 0, 2184, 2185, 3, 1254, 627, 0, 2185, 2186, 5, 191, 0, 0, 2186, 2187, 5, 219, 0, 0, 2187, 2188, 5, 220, 0, 0, 2188, 2189, 5, 389, 0, 0, 2189, 2332, 1, 0, 0, 0, 2190, 2191, 5, 191, 0, 0, 2191, 2192, 3, 660, 330, 0, 2192, 2193, 5, 220, 0, 0, 2193, 2194, 5, 389, 0, 0, 2194, 2195, 3, 1254, 627, 0, 2195, 2196, 3, 106, 53, 0, 2196, 2332, 1, 0, 0, 0, 2197, 2198, 5, 191, 0, 0, 2198, 2199, 3, 660, 330, 0, 2199, 2200, 3, 1254, 627, 0, 2200, 2201, 3, 106, 53, 0, 2201, 2332, 1, 0, 0, 0, 2202, 2203, 5, 138, 0, 0, 2203, 2204, 3, 660, 330, 0, 2204, 2205, 3, 1254, 627, 0, 2205, 2206, 3, 662, 331, 0, 2206, 2207, 5, 353, 0, 0, 2207, 2208, 3, 1004, 502, 0, 2208, 2209, 3, 108, 54, 0, 2209, 2210, 3, 110, 55, 0, 2210, 2332, 1, 0, 0, 0, 2211, 2212, 5, 138, 0, 0, 2212, 2213, 3, 660, 330, 0, 2213, 2214, 3, 1254, 627, 0, 2214, 2215, 3, 312, 156, 0, 2215, 2332, 1, 0, 0, 0, 2216, 2217, 5, 133, 0, 0, 2217, 2332, 3, 194, 97, 0, 2218, 2219, 5, 138, 0, 0, 2219, 2220, 5, 45, 0, 0, 2220, 2221, 3, 1222, 611, 0, 2221, 2222, 3, 404, 202, 0, 2222, 2332, 1, 0, 0, 0, 2223, 2224, 5, 365, 0, 0, 2224, 2225, 5, 45, 0, 0, 2225, 2332, 3, 1222, 611, 0, 2226, 2227, 5, 191, 0, 0, 2227, 2228, 5, 45, 0, 0, 2228, 2229, 5, 220, 0, 0, 2229, 2230, 5, 389, 0, 0, 2230, 2231, 3, 1222, 611, 0, 2231, 2232, 3, 106, 53, 0, 2232, 2332, 1, 0, 0, 0, 2233, 2234, 5, 191, 0, 0, 2234, 2235, 5, 45, 0, 0, 2235, 2236, 3, 1222, 611, 0, 2236, 2237, 3, 106, 53, 0, 2237, 2332, 1, 0, 0, 0, 2238, 2239, 5, 326, 0, 0, 2239, 2240, 5, 372, 0, 0, 2240, 2332, 5, 270, 0, 0, 2241, 2242, 5, 158, 0, 0, 2242, 2243, 5, 80, 0, 0, 2243, 2332, 3, 1222, 611, 0, 2244, 2245, 5, 326, 0, 0, 2245, 2246, 5, 372, 0, 0, 2246, 2332, 5, 158, 0, 0, 2247, 2248, 5, 326, 0, 0, 2248, 2332, 5, 439, 0, 0, 2249, 2250, 5, 326, 0, 0, 2250, 2332, 5, 360, 0, 0, 2251, 2252, 5, 193, 0, 0, 2252, 2253, 5, 350, 0, 0, 2253, 2332, 3, 1222, 611, 0, 2254, 2255, 5, 193, 0, 0, 2255, 2256, 5, 139, 0, 0, 2256, 2257, 5, 350, 0, 0, 2257, 2332, 3, 1222, 611, 0, 2258, 2259, 5, 193, 0, 0, 2259, 2260, 5, 305, 0, 0, 2260, 2261, 5, 350, 0, 0, 2261, 2332, 3, 1222, 611, 0, 2262, 2263, 5, 193, 0, 0, 2263, 2264, 5, 350, 0, 0, 2264, 2332, 5, 30, 0, 0, 2265, 2266, 5, 193, 0, 0, 2266, 2267, 5, 350, 0, 0, 2267, 2332, 5, 99, 0, 0, 2268, 2269, 5, 186, 0, 0, 2269, 2270, 5, 350, 0, 0, 2270, 2332, 3, 1222, 611, 0, 2271, 2272, 5, 186, 0, 0, 2272, 2273, 5, 350, 0, 0, 2273, 2332, 5, 30, 0, 0, 2274, 2275, 5, 186, 0, 0, 2275, 2276, 5, 350, 0, 0, 2276, 2332, 5, 99, 0, 0, 2277, 2278, 5, 193, 0, 0, 2278, 2279, 5, 314, 0, 0, 2279, 2332, 3, 1222, 611, 0, 2280, 2281, 5, 193, 0, 0, 2281, 2282, 5, 139, 0, 0, 2282, 2283, 5, 314, 0, 0, 2283, 2332, 3, 1222, 611, 0, 2284, 2285, 5, 193, 0, 0, 2285, 2286, 5, 305, 0, 0, 2286, 2287, 5, 314, 0, 0, 2287, 2332, 3, 1222, 611, 0, 2288, 2289, 5, 186, 0, 0, 2289, 2290, 5, 314, 0, 0, 2290, 2332, 3, 1222, 611, 0, 2291, 2292, 5, 228, 0, 0, 2292, 2332, 3, 1218, 609, 0, 2293, 2294, 5, 262, 0, 0, 2294, 2295, 5, 228, 0, 0, 2295, 2332, 3, 1218, 609, 0, 2296, 2297, 5, 268, 0, 0, 2297, 2332, 3, 478, 239, 0, 2298, 2299, 5, 77, 0, 0, 2299, 2332, 5, 268, 0, 0, 2300, 2301, 5, 275, 0, 0, 2301, 2302, 5, 94, 0, 0, 2302, 2332, 3, 1250, 625, 0, 2303, 2304, 5, 326, 0, 0, 2304, 2305, 5, 344, 0, 0, 2305, 2332, 3, 1222, 611, 0, 2306, 2307, 5, 326, 0, 0, 2307, 2332, 3, 114, 57, 0, 2308, 2309, 5, 306, 0, 0, 2309, 2332, 3, 114, 57, 0, 2310, 2311, 5, 305, 0, 0, 2311, 2312, 5, 219, 0, 0, 2312, 2332, 3, 112, 56, 0, 2313, 2314, 5, 193, 0, 0, 2314, 2315, 5, 407, 0, 0, 2315, 2316, 5, 242, 0, 0, 2316, 2332, 5, 320, 0, 0, 2317, 2318, 5, 186, 0, 0, 2318, 2319, 5, 407, 0, 0, 2319, 2320, 5, 242, 0, 0, 2320, 2332, 5, 320, 0, 0, 2321, 2322, 5, 209, 0, 0, 2322, 2323, 5, 407, 0, 0, 2323, 2324, 5, 242, 0, 0, 2324, 2332, 5, 320, 0, 0, 2325, 2326, 5, 262, 0, 0, 2326, 2327, 5, 209, 0, 0, 2327, 2328, 5, 407, 0, 0, 2328, 2329, 5, 242, 0, 0, 2329, 2332, 5, 320, 0, 0, 2330, 2332, 3, 312, 156, 0, 2331, 2079, 1, 0, 0, 0, 2331, 2081, 1, 0, 0, 0, 2331, 2086, 1, 0, 0, 0, 2331, 2089, 1, 0, 0, 0, 2331, 2095, 1, 0, 0, 0, 2331, 2100, 1, 0, 0, 0, 2331, 2107, 1, 0, 0, 0, 2331, 2114, 1, 0, 0, 0, 2331, 2120, 1, 0, 0, 0, 2331, 2128, 1, 0, 0, 0, 2331, 2135, 1, 0, 0, 0, 2331, 2142, 1, 0, 0, 0, 2331, 2148, 1, 0, 0, 0, 2331, 2154, 1, 0, 0, 0, 2331, 2161, 1, 0, 0, 0, 2331, 2171, 1, 0, 0, 0, 2331, 2176, 1, 0, 0, 0, 2331, 2182, 1, 0, 0, 0, 2331, 2190, 1, 0, 0, 0, 2331, 2197, 1, 0, 0, 0, 2331, 2202, 1, 0, 0, 0, 2331, 2211, 1, 0, 0, 0, 2331, 2216, 1, 0, 0, 0, 2331, 2218, 1, 0, 0, 0, 2331, 2223, 1, 0, 0, 0, 2331, 2226, 1, 0, 0, 0, 2331, 2233, 1, 0, 0, 0, 2331, 2238, 1, 0, 0, 0, 2331, 2241, 1, 0, 0, 0, 2331, 2244, 1, 0, 0, 0, 2331, 2247, 1, 0, 0, 0, 2331, 2249, 1, 0, 0, 0, 2331, 2251, 1, 0, 0, 0, 2331, 2254, 1, 0, 0, 0, 2331, 2258, 1, 0, 0, 0, 2331, 2262, 1, 0, 0, 0, 2331, 2265, 1, 0, 0, 0, 2331, 2268, 1, 0, 0, 0, 2331, 2271, 1, 0, 0, 0, 2331, 2274, 1, 0, 0, 0, 2331, 2277, 1, 0, 0, 0, 2331, 2280, 1, 0, 0, 0, 2331, 2284, 1, 0, 0, 0, 2331, 2288, 1, 0, 0, 0, 2331, 2291, 1, 0, 0, 0, 2331, 2293, 1, 0, 0, 0, 2331, 2296, 1, 0, 0, 0, 2331, 2298, 1, 0, 0, 0, 2331, 2300, 1, 0, 0, 0, 2331, 2303, 1, 0, 0, 0, 2331, 2306, 1, 0, 0, 0, 2331, 2308, 1, 0, 0, 0, 2331, 2310, 1, 0, 0, 0, 2331, 2313, 1, 0, 0, 0, 2331, 2317, 1, 0, 0, 0, 2331, 2321, 1, 0, 0, 0, 2331, 2325, 1, 0, 0, 0, 2331, 2330, 1, 0, 0, 0, 2332, 103, 1, 0, 0, 0, 2333, 2334, 5, 326, 0, 0, 2334, 2335, 5, 53, 0, 0, 2335, 2339, 3, 1046, 523, 0, 2336, 2337, 5, 191, 0, 0, 2337, 2339, 5, 53, 0, 0, 2338, 2333, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 105, 1, 0, 0, 0, 2340, 2344, 5, 150, 0, 0, 2341, 2344, 5, 308, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2340, 1, 0, 0, 0, 2343, 2341, 1, 0, 0, 0, 2343, 2342, 1, 0, 0, 0, 2344, 107, 1, 0, 0, 0, 2345, 2346, 5, 43, 0, 0, 2346, 2349, 3, 478, 239, 0, 2347, 2349, 1, 0, 0, 0, 2348, 2345, 1, 0, 0, 0, 2348, 2347, 1, 0, 0, 0, 2349, 109, 1, 0, 0, 0, 2350, 2351, 5, 100, 0, 0, 2351, 2354, 3, 1046, 523, 0, 2352, 2354, 1, 0, 0, 0, 2353, 2350, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 111, 1, 0, 0, 0, 2355, 2362, 5, 263, 0, 0, 2356, 2362, 5, 113, 0, 0, 2357, 2362, 5, 53, 0, 0, 2358, 2359, 5, 100, 0, 0, 2359, 2360, 5, 226, 0, 0, 2360, 2362, 3, 1222, 611, 0, 2361, 2355, 1, 0, 0, 0, 2361, 2356, 1, 0, 0, 0, 2361, 2357, 1, 0, 0, 0, 2361, 2358, 1, 0, 0, 0, 2362, 113, 1, 0, 0, 0, 2363, 2364, 5, 2, 0, 0, 2364, 2365, 3, 118, 59, 0, 2365, 2366, 5, 3, 0, 0, 2366, 115, 1, 0, 0, 0, 2367, 2368, 5, 105, 0, 0, 2368, 2371, 3, 114, 57, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2369, 1, 0, 0, 0, 2371, 117, 1, 0, 0, 0, 2372, 2377, 3, 120, 60, 0, 2373, 2374, 5, 6, 0, 0, 2374, 2376, 3, 120, 60, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2379, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 119, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2380, 2389, 3, 1262, 631, 0, 2381, 2382, 5, 10, 0, 0, 2382, 2390, 3, 428, 214, 0, 2383, 2384, 5, 11, 0, 0, 2384, 2387, 3, 1262, 631, 0, 2385, 2386, 5, 10, 0, 0, 2386, 2388, 3, 428, 214, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2381, 1, 0, 0, 0, 2389, 2383, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 121, 1, 0, 0, 0, 2391, 2393, 3, 124, 62, 0, 2392, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 123, 1, 0, 0, 0, 2396, 2400, 5, 307, 0, 0, 2397, 2398, 3, 14, 7, 0, 2398, 2399, 3, 270, 135, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2397, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2409, 1, 0, 0, 0, 2402, 2406, 5, 326, 0, 0, 2403, 2407, 3, 268, 134, 0, 2404, 2405, 5, 438, 0, 0, 2405, 2407, 3, 184, 92, 0, 2406, 2403, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2396, 1, 0, 0, 0, 2408, 2402, 1, 0, 0, 0, 2409, 125, 1, 0, 0, 0, 2410, 2411, 5, 62, 0, 0, 2411, 2412, 5, 415, 0, 0, 2412, 2413, 5, 105, 0, 0, 2413, 2414, 5, 2, 0, 0, 2414, 2415, 3, 130, 65, 0, 2415, 2416, 5, 3, 0, 0, 2416, 2437, 1, 0, 0, 0, 2417, 2418, 5, 62, 0, 0, 2418, 2419, 5, 415, 0, 0, 2419, 2420, 5, 68, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2422, 3, 1164, 582, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2437, 1, 0, 0, 0, 2424, 2425, 5, 62, 0, 0, 2425, 2426, 5, 415, 0, 0, 2426, 2427, 5, 64, 0, 0, 2427, 2428, 5, 2, 0, 0, 2428, 2429, 3, 1164, 582, 0, 2429, 2430, 5, 3, 0, 0, 2430, 2431, 5, 94, 0, 0, 2431, 2432, 5, 2, 0, 0, 2432, 2433, 3, 1164, 582, 0, 2433, 2434, 5, 3, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2437, 5, 53, 0, 0, 2436, 2410, 1, 0, 0, 0, 2436, 2417, 1, 0, 0, 0, 2436, 2424, 1, 0, 0, 0, 2436, 2435, 1, 0, 0, 0, 2437, 127, 1, 0, 0, 0, 2438, 2439, 3, 1260, 630, 0, 2439, 2440, 3, 1238, 619, 0, 2440, 129, 1, 0, 0, 0, 2441, 2446, 3, 128, 64, 0, 2442, 2443, 5, 6, 0, 0, 2443, 2445, 3, 128, 64, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2448, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 131, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2450, 5, 138, 0, 0, 2450, 2451, 5, 353, 0, 0, 2451, 2452, 3, 478, 239, 0, 2452, 2453, 3, 134, 67, 0, 2453, 133, 1, 0, 0, 0, 2454, 2459, 3, 136, 68, 0, 2455, 2456, 5, 6, 0, 0, 2456, 2458, 3, 136, 68, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2461, 1, 0, 0, 0, 2459, 2457, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 135, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2462, 2463, 5, 133, 0, 0, 2463, 2464, 5, 143, 0, 0, 2464, 2465, 3, 990, 495, 0, 2465, 2466, 3, 106, 53, 0, 2466, 2486, 1, 0, 0, 0, 2467, 2468, 5, 191, 0, 0, 2468, 2471, 5, 143, 0, 0, 2469, 2470, 5, 220, 0, 0, 2470, 2472, 5, 389, 0, 0, 2471, 2469, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 3, 1254, 627, 0, 2474, 2475, 3, 106, 53, 0, 2475, 2486, 1, 0, 0, 0, 2476, 2477, 5, 138, 0, 0, 2477, 2478, 5, 143, 0, 0, 2478, 2479, 3, 1254, 627, 0, 2479, 2480, 3, 662, 331, 0, 2480, 2481, 5, 353, 0, 0, 2481, 2482, 3, 1004, 502, 0, 2482, 2483, 3, 108, 54, 0, 2483, 2484, 3, 106, 53, 0, 2484, 2486, 1, 0, 0, 0, 2485, 2462, 1, 0, 0, 0, 2485, 2467, 1, 0, 0, 0, 2485, 2476, 1, 0, 0, 0, 2486, 137, 1, 0, 0, 0, 2487, 2490, 5, 157, 0, 0, 2488, 2491, 3, 864, 432, 0, 2489, 2491, 5, 30, 0, 0, 2490, 2488, 1, 0, 0, 0, 2490, 2489, 1, 0, 0, 0, 2491, 139, 1, 0, 0, 0, 2492, 2494, 5, 169, 0, 0, 2493, 2495, 5, 107, 0, 0, 2494, 2493, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 3, 1218, 609, 0, 2497, 2498, 3, 198, 99, 0, 2498, 2500, 3, 142, 71, 0, 2499, 2501, 5, 290, 0, 0, 2500, 2499, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 3, 144, 72, 0, 2503, 2504, 3, 150, 75, 0, 2504, 2505, 3, 14, 7, 0, 2505, 2506, 3, 146, 73, 0, 2506, 2507, 3, 982, 491, 0, 2507, 2521, 1, 0, 0, 0, 2508, 2509, 5, 169, 0, 0, 2509, 2510, 5, 2, 0, 0, 2510, 2511, 3, 806, 403, 0, 2511, 2512, 5, 3, 0, 0, 2512, 2514, 5, 94, 0, 0, 2513, 2515, 5, 290, 0, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2517, 3, 144, 72, 0, 2517, 2518, 3, 14, 7, 0, 2518, 2519, 3, 146, 73, 0, 2519, 2521, 1, 0, 0, 0, 2520, 2492, 1, 0, 0, 0, 2520, 2508, 1, 0, 0, 0, 2521, 141, 1, 0, 0, 0, 2522, 2523, 7, 10, 0, 0, 2523, 143, 1, 0, 0, 0, 2524, 2528, 3, 1240, 620, 0, 2525, 2528, 5, 336, 0, 0, 2526, 2528, 5, 337, 0, 0, 2527, 2524, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2526, 1, 0, 0, 0, 2528, 145, 1, 0, 0, 0, 2529, 2531, 3, 148, 74, 0, 2530, 2529, 1, 0, 0, 0, 2531, 2534, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2540, 1, 0, 0, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2537, 3, 152, 76, 0, 2537, 2538, 5, 3, 0, 0, 2538, 2540, 1, 0, 0, 0, 2539, 2532, 1, 0, 0, 0, 2539, 2535, 1, 0, 0, 0, 2540, 147, 1, 0, 0, 0, 2541, 2577, 5, 107, 0, 0, 2542, 2577, 5, 112, 0, 0, 2543, 2544, 5, 183, 0, 0, 2544, 2545, 3, 758, 379, 0, 2545, 2546, 3, 1240, 620, 0, 2546, 2577, 1, 0, 0, 0, 2547, 2548, 5, 78, 0, 0, 2548, 2549, 3, 758, 379, 0, 2549, 2550, 3, 1240, 620, 0, 2550, 2577, 1, 0, 0, 0, 2551, 2577, 5, 171, 0, 0, 2552, 2577, 5, 216, 0, 0, 2553, 2554, 5, 291, 0, 0, 2554, 2555, 3, 758, 379, 0, 2555, 2556, 3, 1240, 620, 0, 2556, 2577, 1, 0, 0, 0, 2557, 2558, 5, 197, 0, 0, 2558, 2559, 3, 758, 379, 0, 2559, 2560, 3, 1240, 620, 0, 2560, 2577, 1, 0, 0, 0, 2561, 2562, 5, 209, 0, 0, 2562, 2563, 5, 291, 0, 0, 2563, 2577, 3, 200, 100, 0, 2564, 2565, 5, 209, 0, 0, 2565, 2566, 5, 291, 0, 0, 2566, 2577, 5, 9, 0, 0, 2567, 2568, 5, 209, 0, 0, 2568, 2569, 5, 77, 0, 0, 2569, 2570, 5, 78, 0, 0, 2570, 2577, 3, 200, 100, 0, 2571, 2572, 5, 209, 0, 0, 2572, 2573, 5, 78, 0, 0, 2573, 2577, 3, 200, 100, 0, 2574, 2575, 5, 194, 0, 0, 2575, 2577, 3, 1240, 620, 0, 2576, 2541, 1, 0, 0, 0, 2576, 2542, 1, 0, 0, 0, 2576, 2543, 1, 0, 0, 0, 2576, 2547, 1, 0, 0, 0, 2576, 2551, 1, 0, 0, 0, 2576, 2552, 1, 0, 0, 0, 2576, 2553, 1, 0, 0, 0, 2576, 2557, 1, 0, 0, 0, 2576, 2561, 1, 0, 0, 0, 2576, 2564, 1, 0, 0, 0, 2576, 2567, 1, 0, 0, 0, 2576, 2571, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 149, 1, 0, 0, 0, 2578, 2580, 5, 100, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2582, 5, 184, 0, 0, 2582, 2585, 3, 1240, 620, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2579, 1, 0, 0, 0, 2584, 2583, 1, 0, 0, 0, 2585, 151, 1, 0, 0, 0, 2586, 2591, 3, 154, 77, 0, 2587, 2588, 5, 6, 0, 0, 2588, 2590, 3, 154, 77, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2593, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 153, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2595, 3, 1262, 631, 0, 2595, 2596, 3, 156, 78, 0, 2596, 155, 1, 0, 0, 0, 2597, 2613, 3, 64, 32, 0, 2598, 2613, 3, 270, 135, 0, 2599, 2613, 5, 9, 0, 0, 2600, 2601, 5, 2, 0, 0, 2601, 2606, 3, 64, 32, 0, 2602, 2603, 5, 6, 0, 0, 2603, 2605, 3, 64, 32, 0, 2604, 2602, 1, 0, 0, 0, 2605, 2608, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2609, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2610, 5, 3, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2597, 1, 0, 0, 0, 2612, 2598, 1, 0, 0, 0, 2612, 2599, 1, 0, 0, 0, 2612, 2600, 1, 0, 0, 0, 2612, 2611, 1, 0, 0, 0, 2613, 157, 1, 0, 0, 0, 2614, 2615, 5, 46, 0, 0, 2615, 2616, 3, 160, 80, 0, 2616, 2620, 5, 92, 0, 0, 2617, 2618, 5, 220, 0, 0, 2618, 2619, 5, 77, 0, 0, 2619, 2621, 5, 389, 0, 0, 2620, 2617, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2653, 3, 1218, 609, 0, 2623, 2624, 5, 2, 0, 0, 2624, 2625, 3, 162, 81, 0, 2625, 2626, 5, 3, 0, 0, 2626, 2627, 3, 222, 111, 0, 2627, 2628, 3, 224, 112, 0, 2628, 2629, 3, 232, 116, 0, 2629, 2630, 3, 234, 117, 0, 2630, 2631, 3, 236, 118, 0, 2631, 2632, 3, 238, 119, 0, 2632, 2654, 1, 0, 0, 0, 2633, 2634, 5, 268, 0, 0, 2634, 2635, 3, 478, 239, 0, 2635, 2636, 3, 164, 82, 0, 2636, 2637, 3, 224, 112, 0, 2637, 2638, 3, 232, 116, 0, 2638, 2639, 3, 234, 117, 0, 2639, 2640, 3, 236, 118, 0, 2640, 2641, 3, 238, 119, 0, 2641, 2654, 1, 0, 0, 0, 2642, 2643, 5, 278, 0, 0, 2643, 2644, 5, 268, 0, 0, 2644, 2645, 3, 1218, 609, 0, 2645, 2646, 3, 164, 82, 0, 2646, 2647, 3, 126, 63, 0, 2647, 2648, 3, 224, 112, 0, 2648, 2649, 3, 232, 116, 0, 2649, 2650, 3, 234, 117, 0, 2650, 2651, 3, 236, 118, 0, 2651, 2652, 3, 238, 119, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2623, 1, 0, 0, 0, 2653, 2633, 1, 0, 0, 0, 2653, 2642, 1, 0, 0, 0, 2654, 159, 1, 0, 0, 0, 2655, 2664, 5, 347, 0, 0, 2656, 2664, 5, 345, 0, 0, 2657, 2658, 5, 245, 0, 0, 2658, 2664, 7, 11, 0, 0, 2659, 2660, 5, 213, 0, 0, 2660, 2664, 7, 11, 0, 0, 2661, 2664, 5, 360, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2655, 1, 0, 0, 0, 2663, 2656, 1, 0, 0, 0, 2663, 2657, 1, 0, 0, 0, 2663, 2659, 1, 0, 0, 0, 2663, 2661, 1, 0, 0, 0, 2663, 2662, 1, 0, 0, 0, 2664, 161, 1, 0, 0, 0, 2665, 2668, 3, 166, 83, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2666, 1, 0, 0, 0, 2668, 163, 1, 0, 0, 0, 2669, 2670, 5, 2, 0, 0, 2670, 2671, 3, 168, 84, 0, 2671, 2672, 5, 3, 0, 0, 2672, 2675, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2669, 1, 0, 0, 0, 2674, 2673, 1, 0, 0, 0, 2675, 165, 1, 0, 0, 0, 2676, 2681, 3, 170, 85, 0, 2677, 2678, 5, 6, 0, 0, 2678, 2680, 3, 170, 85, 0, 2679, 2677, 1, 0, 0, 0, 2680, 2683, 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 167, 1, 0, 0, 0, 2683, 2681, 1, 0, 0, 0, 2684, 2689, 3, 172, 86, 0, 2685, 2686, 5, 6, 0, 0, 2686, 2688, 3, 172, 86, 0, 2687, 2685, 1, 0, 0, 0, 2688, 2691, 1, 0, 0, 0, 2689, 2687, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 169, 1, 0, 0, 0, 2691, 2689, 1, 0, 0, 0, 2692, 2696, 3, 194, 97, 0, 2693, 2696, 3, 188, 94, 0, 2694, 2696, 3, 174, 87, 0, 2695, 2692, 1, 0, 0, 0, 2695, 2693, 1, 0, 0, 0, 2695, 2694, 1, 0, 0, 0, 2696, 171, 1, 0, 0, 0, 2697, 2700, 3, 176, 88, 0, 2698, 2700, 3, 194, 97, 0, 2699, 2697, 1, 0, 0, 0, 2699, 2698, 1, 0, 0, 0, 2700, 173, 1, 0, 0, 0, 2701, 2702, 3, 1254, 627, 0, 2702, 2703, 3, 1004, 502, 0, 2703, 2704, 3, 308, 154, 0, 2704, 2705, 3, 178, 89, 0, 2705, 175, 1, 0, 0, 0, 2706, 2709, 3, 1254, 627, 0, 2707, 2708, 5, 105, 0, 0, 2708, 2710, 5, 273, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 2712, 3, 178, 89, 0, 2712, 177, 1, 0, 0, 0, 2713, 2715, 3, 180, 90, 0, 2714, 2713, 1, 0, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 179, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2719, 2720, 5, 45, 0, 0, 2720, 2721, 3, 1222, 611, 0, 2721, 2722, 3, 182, 91, 0, 2722, 2728, 1, 0, 0, 0, 2723, 2728, 3, 182, 91, 0, 2724, 2728, 3, 186, 93, 0, 2725, 2726, 5, 43, 0, 0, 2726, 2728, 3, 478, 239, 0, 2727, 2719, 1, 0, 0, 0, 2727, 2723, 1, 0, 0, 0, 2727, 2724, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 181, 1, 0, 0, 0, 2729, 2730, 5, 77, 0, 0, 2730, 2770, 5, 78, 0, 0, 2731, 2770, 5, 78, 0, 0, 2732, 2733, 5, 98, 0, 0, 2733, 2734, 3, 604, 302, 0, 2734, 2735, 3, 240, 120, 0, 2735, 2770, 1, 0, 0, 0, 2736, 2737, 5, 85, 0, 0, 2737, 2738, 5, 236, 0, 0, 2738, 2739, 3, 604, 302, 0, 2739, 2740, 3, 240, 120, 0, 2740, 2770, 1, 0, 0, 0, 2741, 2742, 5, 42, 0, 0, 2742, 2743, 5, 2, 0, 0, 2743, 2744, 3, 1046, 523, 0, 2744, 2747, 5, 3, 0, 0, 2745, 2746, 5, 262, 0, 0, 2746, 2748, 5, 228, 0, 0, 2747, 2745, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2770, 1, 0, 0, 0, 2749, 2750, 5, 53, 0, 0, 2750, 2770, 3, 1088, 544, 0, 2751, 2752, 5, 438, 0, 0, 2752, 2753, 3, 184, 92, 0, 2753, 2761, 5, 36, 0, 0, 2754, 2755, 5, 219, 0, 0, 2755, 2762, 3, 264, 132, 0, 2756, 2757, 5, 2, 0, 0, 2757, 2758, 3, 1046, 523, 0, 2758, 2759, 5, 3, 0, 0, 2759, 2760, 5, 440, 0, 0, 2760, 2762, 1, 0, 0, 0, 2761, 2754, 1, 0, 0, 0, 2761, 2756, 1, 0, 0, 0, 2762, 2770, 1, 0, 0, 0, 2763, 2764, 5, 86, 0, 0, 2764, 2765, 3, 1218, 609, 0, 2765, 2766, 3, 198, 99, 0, 2766, 2767, 3, 206, 103, 0, 2767, 2768, 3, 214, 107, 0, 2768, 2770, 1, 0, 0, 0, 2769, 2729, 1, 0, 0, 0, 2769, 2731, 1, 0, 0, 0, 2769, 2732, 1, 0, 0, 0, 2769, 2736, 1, 0, 0, 0, 2769, 2741, 1, 0, 0, 0, 2769, 2749, 1, 0, 0, 0, 2769, 2751, 1, 0, 0, 0, 2769, 2763, 1, 0, 0, 0, 2770, 183, 1, 0, 0, 0, 2771, 2775, 5, 139, 0, 0, 2772, 2773, 5, 147, 0, 0, 2773, 2775, 5, 53, 0, 0, 2774, 2771, 1, 0, 0, 0, 2774, 2772, 1, 0, 0, 0, 2775, 185, 1, 0, 0, 0, 2776, 2782, 5, 54, 0, 0, 2777, 2778, 5, 77, 0, 0, 2778, 2782, 5, 54, 0, 0, 2779, 2780, 5, 69, 0, 0, 2780, 2782, 7, 8, 0, 0, 2781, 2776, 1, 0, 0, 0, 2781, 2777, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 187, 1, 0, 0, 0, 2783, 2784, 5, 120, 0, 0, 2784, 2785, 3, 1218, 609, 0, 2785, 2786, 3, 190, 95, 0, 2786, 189, 1, 0, 0, 0, 2787, 2788, 7, 12, 0, 0, 2788, 2790, 3, 192, 96, 0, 2789, 2787, 1, 0, 0, 0, 2790, 2793, 1, 0, 0, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 191, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2794, 2795, 7, 13, 0, 0, 2795, 193, 1, 0, 0, 0, 2796, 2797, 5, 45, 0, 0, 2797, 2798, 3, 1222, 611, 0, 2798, 2799, 3, 196, 98, 0, 2799, 2802, 1, 0, 0, 0, 2800, 2802, 3, 196, 98, 0, 2801, 2796, 1, 0, 0, 0, 2801, 2800, 1, 0, 0, 0, 2802, 195, 1, 0, 0, 0, 2803, 2804, 5, 42, 0, 0, 2804, 2805, 5, 2, 0, 0, 2805, 2806, 3, 1046, 523, 0, 2806, 2807, 5, 3, 0, 0, 2807, 2808, 3, 404, 202, 0, 2808, 2862, 1, 0, 0, 0, 2809, 2821, 5, 98, 0, 0, 2810, 2811, 5, 2, 0, 0, 2811, 2812, 3, 200, 100, 0, 2812, 2813, 5, 3, 0, 0, 2813, 2814, 3, 204, 102, 0, 2814, 2815, 3, 604, 302, 0, 2815, 2816, 3, 240, 120, 0, 2816, 2817, 3, 404, 202, 0, 2817, 2822, 1, 0, 0, 0, 2818, 2819, 3, 242, 121, 0, 2819, 2820, 3, 404, 202, 0, 2820, 2822, 1, 0, 0, 0, 2821, 2810, 1, 0, 0, 0, 2821, 2818, 1, 0, 0, 0, 2822, 2862, 1, 0, 0, 0, 2823, 2824, 5, 85, 0, 0, 2824, 2836, 5, 236, 0, 0, 2825, 2826, 5, 2, 0, 0, 2826, 2827, 3, 200, 100, 0, 2827, 2828, 5, 3, 0, 0, 2828, 2829, 3, 204, 102, 0, 2829, 2830, 3, 604, 302, 0, 2830, 2831, 3, 240, 120, 0, 2831, 2832, 3, 404, 202, 0, 2832, 2837, 1, 0, 0, 0, 2833, 2834, 3, 242, 121, 0, 2834, 2835, 3, 404, 202, 0, 2835, 2837, 1, 0, 0, 0, 2836, 2825, 1, 0, 0, 0, 2836, 2833, 1, 0, 0, 0, 2837, 2862, 1, 0, 0, 0, 2838, 2839, 5, 199, 0, 0, 2839, 2840, 3, 544, 272, 0, 2840, 2841, 5, 2, 0, 0, 2841, 2842, 3, 208, 104, 0, 2842, 2843, 5, 3, 0, 0, 2843, 2844, 3, 204, 102, 0, 2844, 2845, 3, 604, 302, 0, 2845, 2846, 3, 240, 120, 0, 2846, 2847, 3, 212, 106, 0, 2847, 2848, 3, 404, 202, 0, 2848, 2862, 1, 0, 0, 0, 2849, 2850, 5, 63, 0, 0, 2850, 2851, 5, 236, 0, 0, 2851, 2852, 5, 2, 0, 0, 2852, 2853, 3, 200, 100, 0, 2853, 2854, 5, 3, 0, 0, 2854, 2855, 5, 86, 0, 0, 2855, 2856, 3, 1218, 609, 0, 2856, 2857, 3, 198, 99, 0, 2857, 2858, 3, 206, 103, 0, 2858, 2859, 3, 214, 107, 0, 2859, 2860, 3, 404, 202, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2803, 1, 0, 0, 0, 2861, 2809, 1, 0, 0, 0, 2861, 2823, 1, 0, 0, 0, 2861, 2838, 1, 0, 0, 0, 2861, 2849, 1, 0, 0, 0, 2862, 197, 1, 0, 0, 0, 2863, 2864, 5, 2, 0, 0, 2864, 2865, 3, 200, 100, 0, 2865, 2866, 5, 3, 0, 0, 2866, 2869, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2863, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 199, 1, 0, 0, 0, 2870, 2875, 3, 202, 101, 0, 2871, 2872, 5, 6, 0, 0, 2872, 2874, 3, 202, 101, 0, 2873, 2871, 1, 0, 0, 0, 2874, 2877, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 201, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2878, 2879, 3, 1254, 627, 0, 2879, 203, 1, 0, 0, 0, 2880, 2881, 5, 441, 0, 0, 2881, 2882, 5, 2, 0, 0, 2882, 2883, 3, 200, 100, 0, 2883, 2884, 5, 3, 0, 0, 2884, 2887, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2880, 1, 0, 0, 0, 2886, 2885, 1, 0, 0, 0, 2887, 205, 1, 0, 0, 0, 2888, 2889, 5, 249, 0, 0, 2889, 2892, 7, 14, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2888, 1, 0, 0, 0, 2891, 2890, 1, 0, 0, 0, 2892, 207, 1, 0, 0, 0, 2893, 2898, 3, 210, 105, 0, 2894, 2895, 5, 6, 0, 0, 2895, 2897, 3, 210, 105, 0, 2896, 2894, 1, 0, 0, 0, 2897, 2900, 1, 0, 0, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 209, 1, 0, 0, 0, 2900, 2898, 1, 0, 0, 0, 2901, 2902, 3, 550, 275, 0, 2902, 2909, 5, 105, 0, 0, 2903, 2910, 3, 620, 310, 0, 2904, 2905, 5, 271, 0, 0, 2905, 2906, 5, 2, 0, 0, 2906, 2907, 3, 620, 310, 0, 2907, 2908, 5, 3, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2903, 1, 0, 0, 0, 2909, 2904, 1, 0, 0, 0, 2910, 211, 1, 0, 0, 0, 2911, 2912, 5, 103, 0, 0, 2912, 2913, 5, 2, 0, 0, 2913, 2914, 3, 1046, 523, 0, 2914, 2915, 5, 3, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2918, 1, 0, 0, 0, 2917, 2911, 1, 0, 0, 0, 2917, 2916, 1, 0, 0, 0, 2918, 213, 1, 0, 0, 0, 2919, 2929, 3, 216, 108, 0, 2920, 2929, 3, 218, 109, 0, 2921, 2922, 3, 216, 108, 0, 2922, 2923, 3, 218, 109, 0, 2923, 2929, 1, 0, 0, 0, 2924, 2925, 3, 218, 109, 0, 2925, 2926, 3, 216, 108, 0, 2926, 2929, 1, 0, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2919, 1, 0, 0, 0, 2928, 2920, 1, 0, 0, 0, 2928, 2921, 1, 0, 0, 0, 2928, 2924, 1, 0, 0, 0, 2928, 2927, 1, 0, 0, 0, 2929, 215, 1, 0, 0, 0, 2930, 2931, 5, 80, 0, 0, 2931, 2932, 5, 362, 0, 0, 2932, 2933, 3, 220, 110, 0, 2933, 217, 1, 0, 0, 0, 2934, 2935, 5, 80, 0, 0, 2935, 2936, 5, 182, 0, 0, 2936, 2937, 3, 220, 110, 0, 2937, 219, 1, 0, 0, 0, 2938, 2939, 5, 262, 0, 0, 2939, 2945, 5, 132, 0, 0, 2940, 2945, 5, 308, 0, 0, 2941, 2945, 5, 150, 0, 0, 2942, 2943, 5, 326, 0, 0, 2943, 2945, 7, 15, 0, 0, 2944, 2938, 1, 0, 0, 0, 2944, 2940, 1, 0, 0, 0, 2944, 2941, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2945, 221, 1, 0, 0, 0, 2946, 2947, 5, 229, 0, 0, 2947, 2948, 5, 2, 0, 0, 2948, 2949, 3, 1216, 608, 0, 2949, 2950, 5, 3, 0, 0, 2950, 2953, 1, 0, 0, 0, 2951, 2953, 1, 0, 0, 0, 2952, 2946, 1, 0, 0, 0, 2952, 2951, 1, 0, 0, 0, 2953, 223, 1, 0, 0, 0, 2954, 2957, 3, 226, 113, 0, 2955, 2957, 1, 0, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2955, 1, 0, 0, 0, 2957, 225, 1, 0, 0, 0, 2958, 2959, 5, 278, 0, 0, 2959, 2960, 5, 147, 0, 0, 2960, 2961, 3, 1254, 627, 0, 2961, 2962, 5, 2, 0, 0, 2962, 2963, 3, 228, 114, 0, 2963, 2964, 5, 3, 0, 0, 2964, 227, 1, 0, 0, 0, 2965, 2970, 3, 230, 115, 0, 2966, 2967, 5, 6, 0, 0, 2967, 2969, 3, 230, 115, 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, 229, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2974, 3, 1254, 627, 0, 2974, 2975, 3, 554, 277, 0, 2975, 2976, 3, 556, 278, 0, 2976, 2988, 1, 0, 0, 0, 2977, 2978, 3, 1098, 549, 0, 2978, 2979, 3, 554, 277, 0, 2979, 2980, 3, 556, 278, 0, 2980, 2988, 1, 0, 0, 0, 2981, 2982, 5, 2, 0, 0, 2982, 2983, 3, 1046, 523, 0, 2983, 2984, 5, 3, 0, 0, 2984, 2985, 3, 554, 277, 0, 2985, 2986, 3, 556, 278, 0, 2986, 2988, 1, 0, 0, 0, 2987, 2973, 1, 0, 0, 0, 2987, 2977, 1, 0, 0, 0, 2987, 2981, 1, 0, 0, 0, 2988, 231, 1, 0, 0, 0, 2989, 2990, 5, 100, 0, 0, 2990, 2993, 3, 1222, 611, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2989, 1, 0, 0, 0, 2992, 2991, 1, 0, 0, 0, 2993, 233, 1, 0, 0, 0, 2994, 2995, 5, 105, 0, 0, 2995, 3000, 3, 114, 57, 0, 2996, 2997, 5, 372, 0, 0, 2997, 3000, 5, 270, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2994, 1, 0, 0, 0, 2999, 2996, 1, 0, 0, 0, 2999, 2998, 1, 0, 0, 0, 3000, 235, 1, 0, 0, 0, 3001, 3002, 5, 80, 0, 0, 3002, 3008, 5, 161, 0, 0, 3003, 3009, 5, 191, 0, 0, 3004, 3005, 5, 182, 0, 0, 3005, 3009, 5, 313, 0, 0, 3006, 3007, 5, 285, 0, 0, 3007, 3009, 5, 313, 0, 0, 3008, 3003, 1, 0, 0, 0, 3008, 3004, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3001, 1, 0, 0, 0, 3011, 3010, 1, 0, 0, 0, 3012, 237, 1, 0, 0, 0, 3013, 3014, 5, 344, 0, 0, 3014, 3017, 3, 1222, 611, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3013, 1, 0, 0, 0, 3016, 3015, 1, 0, 0, 0, 3017, 239, 1, 0, 0, 0, 3018, 3019, 5, 100, 0, 0, 3019, 3020, 5, 226, 0, 0, 3020, 3021, 5, 344, 0, 0, 3021, 3024, 3, 1222, 611, 0, 3022, 3024, 1, 0, 0, 0, 3023, 3018, 1, 0, 0, 0, 3023, 3022, 1, 0, 0, 0, 3024, 241, 1, 0, 0, 0, 3025, 3026, 5, 100, 0, 0, 3026, 3027, 5, 226, 0, 0, 3027, 3028, 3, 1222, 611, 0, 3028, 243, 1, 0, 0, 0, 3029, 3030, 5, 46, 0, 0, 3030, 3034, 5, 335, 0, 0, 3031, 3032, 5, 220, 0, 0, 3032, 3033, 5, 77, 0, 0, 3033, 3035, 5, 389, 0, 0, 3034, 3031, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3037, 3, 478, 239, 0, 3037, 3038, 3, 786, 393, 0, 3038, 3039, 5, 80, 0, 0, 3039, 3040, 3, 1164, 582, 0, 3040, 3041, 5, 64, 0, 0, 3041, 3042, 3, 948, 474, 0, 3042, 245, 1, 0, 0, 0, 3043, 3044, 5, 138, 0, 0, 3044, 3047, 5, 335, 0, 0, 3045, 3046, 5, 220, 0, 0, 3046, 3048, 5, 389, 0, 0, 3047, 3045, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3050, 3, 478, 239, 0, 3050, 3051, 5, 326, 0, 0, 3051, 3052, 5, 335, 0, 0, 3052, 3053, 3, 1246, 623, 0, 3053, 247, 1, 0, 0, 0, 3054, 3055, 5, 46, 0, 0, 3055, 3056, 3, 160, 80, 0, 3056, 3060, 5, 92, 0, 0, 3057, 3058, 5, 220, 0, 0, 3058, 3059, 5, 77, 0, 0, 3059, 3061, 5, 389, 0, 0, 3060, 3057, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 3, 250, 125, 0, 3063, 3064, 5, 36, 0, 0, 3064, 3065, 3, 868, 434, 0, 3065, 3066, 3, 252, 126, 0, 3066, 249, 1, 0, 0, 0, 3067, 3068, 3, 1218, 609, 0, 3068, 3069, 3, 198, 99, 0, 3069, 3070, 3, 232, 116, 0, 3070, 3071, 3, 234, 117, 0, 3071, 3072, 3, 236, 118, 0, 3072, 3073, 3, 238, 119, 0, 3073, 251, 1, 0, 0, 0, 3074, 3078, 5, 105, 0, 0, 3075, 3079, 5, 174, 0, 0, 3076, 3077, 5, 262, 0, 0, 3077, 3079, 5, 174, 0, 0, 3078, 3075, 1, 0, 0, 0, 3078, 3076, 1, 0, 0, 0, 3079, 3082, 1, 0, 0, 0, 3080, 3082, 1, 0, 0, 0, 3081, 3074, 1, 0, 0, 0, 3081, 3080, 1, 0, 0, 0, 3082, 253, 1, 0, 0, 0, 3083, 3085, 5, 46, 0, 0, 3084, 3086, 5, 360, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3088, 5, 251, 0, 0, 3088, 3092, 5, 369, 0, 0, 3089, 3090, 5, 220, 0, 0, 3090, 3091, 5, 77, 0, 0, 3091, 3093, 5, 389, 0, 0, 3092, 3089, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 3, 256, 128, 0, 3095, 3096, 5, 36, 0, 0, 3096, 3097, 3, 868, 434, 0, 3097, 3098, 3, 252, 126, 0, 3098, 255, 1, 0, 0, 0, 3099, 3100, 3, 1218, 609, 0, 3100, 3101, 3, 198, 99, 0, 3101, 3102, 3, 232, 116, 0, 3102, 3103, 3, 116, 58, 0, 3103, 3104, 3, 238, 119, 0, 3104, 257, 1, 0, 0, 0, 3105, 3106, 5, 298, 0, 0, 3106, 3107, 5, 251, 0, 0, 3107, 3108, 5, 369, 0, 0, 3108, 3109, 3, 542, 271, 0, 3109, 3110, 3, 1218, 609, 0, 3110, 3111, 3, 252, 126, 0, 3111, 259, 1, 0, 0, 0, 3112, 3113, 5, 46, 0, 0, 3113, 3114, 3, 160, 80, 0, 3114, 3118, 5, 321, 0, 0, 3115, 3116, 5, 220, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3119, 5, 389, 0, 0, 3118, 3115, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3122, 3, 1218, 609, 0, 3121, 3123, 3, 266, 133, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 261, 1, 0, 0, 0, 3124, 3125, 5, 138, 0, 0, 3125, 3128, 5, 321, 0, 0, 3126, 3127, 5, 220, 0, 0, 3127, 3129, 5, 389, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 3, 1218, 609, 0, 3131, 3132, 3, 266, 133, 0, 3132, 263, 1, 0, 0, 0, 3133, 3134, 5, 2, 0, 0, 3134, 3135, 3, 266, 133, 0, 3135, 3136, 5, 3, 0, 0, 3136, 3139, 1, 0, 0, 0, 3137, 3139, 1, 0, 0, 0, 3138, 3133, 1, 0, 0, 0, 3138, 3137, 1, 0, 0, 0, 3139, 265, 1, 0, 0, 0, 3140, 3142, 3, 268, 134, 0, 3141, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 267, 1, 0, 0, 0, 3145, 3146, 5, 36, 0, 0, 3146, 3177, 3, 1006, 503, 0, 3147, 3148, 5, 148, 0, 0, 3148, 3177, 3, 270, 135, 0, 3149, 3177, 5, 173, 0, 0, 3150, 3152, 5, 225, 0, 0, 3151, 3153, 5, 147, 0, 0, 3152, 3151, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3177, 3, 270, 135, 0, 3155, 3156, 5, 252, 0, 0, 3156, 3177, 3, 270, 135, 0, 3157, 3158, 5, 255, 0, 0, 3158, 3177, 3, 270, 135, 0, 3159, 3160, 5, 262, 0, 0, 3160, 3177, 7, 16, 0, 0, 3161, 3162, 5, 274, 0, 0, 3162, 3163, 5, 147, 0, 0, 3163, 3177, 3, 478, 239, 0, 3164, 3165, 5, 321, 0, 0, 3165, 3166, 5, 259, 0, 0, 3166, 3177, 3, 478, 239, 0, 3167, 3168, 5, 333, 0, 0, 3168, 3169, 3, 14, 7, 0, 3169, 3170, 3, 270, 135, 0, 3170, 3177, 1, 0, 0, 0, 3171, 3172, 5, 307, 0, 0, 3172, 3174, 3, 14, 7, 0, 3173, 3175, 3, 270, 135, 0, 3174, 3173, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3177, 1, 0, 0, 0, 3176, 3145, 1, 0, 0, 0, 3176, 3147, 1, 0, 0, 0, 3176, 3149, 1, 0, 0, 0, 3176, 3150, 1, 0, 0, 0, 3176, 3155, 1, 0, 0, 0, 3176, 3157, 1, 0, 0, 0, 3176, 3159, 1, 0, 0, 0, 3176, 3161, 1, 0, 0, 0, 3176, 3164, 1, 0, 0, 0, 3176, 3167, 1, 0, 0, 0, 3176, 3171, 1, 0, 0, 0, 3177, 269, 1, 0, 0, 0, 3178, 3185, 3, 1236, 618, 0, 3179, 3180, 5, 12, 0, 0, 3180, 3185, 3, 1236, 618, 0, 3181, 3182, 5, 13, 0, 0, 3182, 3185, 3, 1236, 618, 0, 3183, 3185, 3, 1246, 623, 0, 3184, 3178, 1, 0, 0, 0, 3184, 3179, 1, 0, 0, 0, 3184, 3181, 1, 0, 0, 0, 3184, 3183, 1, 0, 0, 0, 3185, 271, 1, 0, 0, 0, 3186, 3191, 3, 270, 135, 0, 3187, 3188, 5, 6, 0, 0, 3188, 3190, 3, 270, 135, 0, 3189, 3187, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3189, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 273, 1, 0, 0, 0, 3193, 3191, 1, 0, 0, 0, 3194, 3195, 5, 46, 0, 0, 3195, 3197, 3, 564, 282, 0, 3196, 3198, 5, 352, 0, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 3, 282, 141, 0, 3200, 3201, 5, 238, 0, 0, 3201, 3208, 3, 1222, 611, 0, 3202, 3203, 5, 215, 0, 0, 3203, 3204, 3, 276, 138, 0, 3204, 3206, 3, 278, 139, 0, 3205, 3207, 3, 280, 140, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3209, 1, 0, 0, 0, 3208, 3202, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 275, 1, 0, 0, 0, 3210, 3212, 3, 1222, 611, 0, 3211, 3213, 3, 480, 240, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 277, 1, 0, 0, 0, 3214, 3215, 5, 230, 0, 0, 3215, 3218, 3, 276, 138, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3214, 1, 0, 0, 0, 3217, 3216, 1, 0, 0, 0, 3218, 279, 1, 0, 0, 0, 3219, 3220, 5, 366, 0, 0, 3220, 3224, 3, 276, 138, 0, 3221, 3222, 5, 262, 0, 0, 3222, 3224, 5, 366, 0, 0, 3223, 3219, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3224, 281, 1, 0, 0, 0, 3225, 3228, 5, 288, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3225, 1, 0, 0, 0, 3227, 3226, 1, 0, 0, 0, 3228, 283, 1, 0, 0, 0, 3229, 3230, 5, 46, 0, 0, 3230, 3231, 5, 344, 0, 0, 3231, 3232, 3, 1222, 611, 0, 3232, 3233, 3, 286, 143, 0, 3233, 3234, 5, 246, 0, 0, 3234, 3235, 3, 1240, 620, 0, 3235, 3236, 3, 116, 58, 0, 3236, 285, 1, 0, 0, 0, 3237, 3238, 5, 275, 0, 0, 3238, 3241, 3, 1250, 625, 0, 3239, 3241, 1, 0, 0, 0, 3240, 3237, 1, 0, 0, 0, 3240, 3239, 1, 0, 0, 0, 3241, 287, 1, 0, 0, 0, 3242, 3243, 5, 191, 0, 0, 3243, 3246, 5, 344, 0, 0, 3244, 3245, 5, 220, 0, 0, 3245, 3247, 5, 389, 0, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 3, 1222, 611, 0, 3249, 289, 1, 0, 0, 0, 3250, 3251, 5, 46, 0, 0, 3251, 3255, 5, 204, 0, 0, 3252, 3253, 5, 220, 0, 0, 3253, 3254, 5, 77, 0, 0, 3254, 3256, 5, 389, 0, 0, 3255, 3252, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 3, 1222, 611, 0, 3258, 3262, 3, 14, 7, 0, 3259, 3261, 3, 292, 146, 0, 3260, 3259, 1, 0, 0, 0, 3261, 3264, 1, 0, 0, 0, 3262, 3260, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 291, 1, 0, 0, 0, 3264, 3262, 1, 0, 0, 0, 3265, 3266, 5, 316, 0, 0, 3266, 3273, 3, 1222, 611, 0, 3267, 3268, 5, 368, 0, 0, 3268, 3273, 3, 70, 35, 0, 3269, 3270, 5, 64, 0, 0, 3270, 3273, 3, 70, 35, 0, 3271, 3273, 5, 150, 0, 0, 3272, 3265, 1, 0, 0, 0, 3272, 3267, 1, 0, 0, 0, 3272, 3269, 1, 0, 0, 0, 3272, 3271, 1, 0, 0, 0, 3273, 293, 1, 0, 0, 0, 3274, 3275, 5, 138, 0, 0, 3275, 3276, 5, 204, 0, 0, 3276, 3277, 3, 1222, 611, 0, 3277, 3281, 5, 362, 0, 0, 3278, 3280, 3, 296, 148, 0, 3279, 3278, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 295, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3284, 3285, 5, 94, 0, 0, 3285, 3286, 3, 70, 35, 0, 3286, 297, 1, 0, 0, 0, 3287, 3288, 5, 138, 0, 0, 3288, 3289, 5, 204, 0, 0, 3289, 3290, 3, 1222, 611, 0, 3290, 3291, 3, 38, 19, 0, 3291, 3292, 3, 470, 235, 0, 3292, 3293, 3, 1222, 611, 0, 3293, 3392, 1, 0, 0, 0, 3294, 3295, 5, 138, 0, 0, 3295, 3296, 5, 204, 0, 0, 3296, 3297, 3, 1222, 611, 0, 3297, 3298, 3, 38, 19, 0, 3298, 3299, 3, 468, 234, 0, 3299, 3300, 3, 478, 239, 0, 3300, 3392, 1, 0, 0, 0, 3301, 3302, 5, 138, 0, 0, 3302, 3303, 5, 204, 0, 0, 3303, 3304, 3, 1222, 611, 0, 3304, 3305, 3, 38, 19, 0, 3305, 3306, 5, 136, 0, 0, 3306, 3307, 3, 590, 295, 0, 3307, 3392, 1, 0, 0, 0, 3308, 3309, 5, 138, 0, 0, 3309, 3310, 5, 204, 0, 0, 3310, 3311, 3, 1222, 611, 0, 3311, 3312, 3, 38, 19, 0, 3312, 3313, 5, 41, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 1004, 502, 0, 3315, 3316, 5, 36, 0, 0, 3316, 3317, 3, 1004, 502, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3392, 1, 0, 0, 0, 3319, 3320, 5, 138, 0, 0, 3320, 3321, 5, 204, 0, 0, 3321, 3322, 3, 1222, 611, 0, 3322, 3323, 3, 38, 19, 0, 3323, 3324, 5, 189, 0, 0, 3324, 3325, 3, 1004, 502, 0, 3325, 3392, 1, 0, 0, 0, 3326, 3327, 5, 138, 0, 0, 3327, 3328, 5, 204, 0, 0, 3328, 3329, 3, 1222, 611, 0, 3329, 3330, 3, 38, 19, 0, 3330, 3331, 5, 211, 0, 0, 3331, 3332, 3, 570, 285, 0, 3332, 3392, 1, 0, 0, 0, 3333, 3334, 5, 138, 0, 0, 3334, 3335, 5, 204, 0, 0, 3335, 3336, 3, 1222, 611, 0, 3336, 3337, 3, 38, 19, 0, 3337, 3338, 5, 271, 0, 0, 3338, 3339, 3, 624, 312, 0, 3339, 3392, 1, 0, 0, 0, 3340, 3341, 5, 138, 0, 0, 3341, 3342, 5, 204, 0, 0, 3342, 3343, 3, 1222, 611, 0, 3343, 3344, 3, 38, 19, 0, 3344, 3345, 5, 271, 0, 0, 3345, 3346, 5, 156, 0, 0, 3346, 3347, 3, 478, 239, 0, 3347, 3348, 5, 100, 0, 0, 3348, 3349, 3, 1222, 611, 0, 3349, 3392, 1, 0, 0, 0, 3350, 3351, 5, 138, 0, 0, 3351, 3352, 5, 204, 0, 0, 3352, 3353, 3, 1222, 611, 0, 3353, 3354, 3, 38, 19, 0, 3354, 3355, 5, 271, 0, 0, 3355, 3356, 5, 206, 0, 0, 3356, 3357, 3, 478, 239, 0, 3357, 3358, 5, 100, 0, 0, 3358, 3359, 3, 1222, 611, 0, 3359, 3392, 1, 0, 0, 0, 3360, 3361, 5, 138, 0, 0, 3361, 3362, 5, 204, 0, 0, 3362, 3363, 3, 1222, 611, 0, 3363, 3364, 3, 38, 19, 0, 3364, 3365, 5, 289, 0, 0, 3365, 3366, 3, 570, 285, 0, 3366, 3392, 1, 0, 0, 0, 3367, 3368, 5, 138, 0, 0, 3368, 3369, 5, 204, 0, 0, 3369, 3370, 3, 1222, 611, 0, 3370, 3371, 3, 38, 19, 0, 3371, 3372, 5, 442, 0, 0, 3372, 3373, 3, 570, 285, 0, 3373, 3392, 1, 0, 0, 0, 3374, 3375, 5, 138, 0, 0, 3375, 3376, 5, 204, 0, 0, 3376, 3377, 3, 1222, 611, 0, 3377, 3378, 3, 38, 19, 0, 3378, 3379, 5, 443, 0, 0, 3379, 3380, 5, 62, 0, 0, 3380, 3381, 3, 1004, 502, 0, 3381, 3382, 5, 238, 0, 0, 3382, 3383, 3, 1222, 611, 0, 3383, 3392, 1, 0, 0, 0, 3384, 3385, 5, 138, 0, 0, 3385, 3386, 5, 204, 0, 0, 3386, 3387, 3, 1222, 611, 0, 3387, 3388, 3, 38, 19, 0, 3388, 3389, 5, 353, 0, 0, 3389, 3390, 3, 1004, 502, 0, 3390, 3392, 1, 0, 0, 0, 3391, 3287, 1, 0, 0, 0, 3391, 3294, 1, 0, 0, 0, 3391, 3301, 1, 0, 0, 0, 3391, 3308, 1, 0, 0, 0, 3391, 3319, 1, 0, 0, 0, 3391, 3326, 1, 0, 0, 0, 3391, 3333, 1, 0, 0, 0, 3391, 3340, 1, 0, 0, 0, 3391, 3350, 1, 0, 0, 0, 3391, 3360, 1, 0, 0, 0, 3391, 3367, 1, 0, 0, 0, 3391, 3374, 1, 0, 0, 0, 3391, 3384, 1, 0, 0, 0, 3392, 299, 1, 0, 0, 0, 3393, 3394, 5, 46, 0, 0, 3394, 3395, 5, 63, 0, 0, 3395, 3396, 5, 174, 0, 0, 3396, 3397, 5, 374, 0, 0, 3397, 3399, 3, 1222, 611, 0, 3398, 3400, 3, 304, 152, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 3, 308, 154, 0, 3402, 301, 1, 0, 0, 0, 3403, 3404, 5, 215, 0, 0, 3404, 3412, 3, 276, 138, 0, 3405, 3406, 5, 262, 0, 0, 3406, 3412, 5, 215, 0, 0, 3407, 3408, 5, 366, 0, 0, 3408, 3412, 3, 276, 138, 0, 3409, 3410, 5, 262, 0, 0, 3410, 3412, 5, 366, 0, 0, 3411, 3403, 1, 0, 0, 0, 3411, 3405, 1, 0, 0, 0, 3411, 3407, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 303, 1, 0, 0, 0, 3413, 3415, 3, 302, 151, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 305, 1, 0, 0, 0, 3418, 3419, 5, 138, 0, 0, 3419, 3420, 5, 63, 0, 0, 3420, 3421, 5, 174, 0, 0, 3421, 3422, 5, 374, 0, 0, 3422, 3424, 3, 1222, 611, 0, 3423, 3425, 3, 304, 152, 0, 3424, 3423, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 3, 312, 156, 0, 3427, 3436, 1, 0, 0, 0, 3428, 3429, 5, 138, 0, 0, 3429, 3430, 5, 63, 0, 0, 3430, 3431, 5, 174, 0, 0, 3431, 3432, 5, 374, 0, 0, 3432, 3433, 3, 1222, 611, 0, 3433, 3434, 3, 304, 152, 0, 3434, 3436, 1, 0, 0, 0, 3435, 3418, 1, 0, 0, 0, 3435, 3428, 1, 0, 0, 0, 3436, 307, 1, 0, 0, 0, 3437, 3438, 5, 273, 0, 0, 3438, 3439, 5, 2, 0, 0, 3439, 3440, 3, 310, 155, 0, 3440, 3441, 5, 3, 0, 0, 3441, 3444, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3437, 1, 0, 0, 0, 3443, 3442, 1, 0, 0, 0, 3444, 309, 1, 0, 0, 0, 3445, 3450, 3, 318, 159, 0, 3446, 3447, 5, 6, 0, 0, 3447, 3449, 3, 318, 159, 0, 3448, 3446, 1, 0, 0, 0, 3449, 3452, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 311, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3453, 3454, 5, 273, 0, 0, 3454, 3455, 5, 2, 0, 0, 3455, 3456, 3, 314, 157, 0, 3456, 3457, 5, 3, 0, 0, 3457, 313, 1, 0, 0, 0, 3458, 3463, 3, 316, 158, 0, 3459, 3460, 5, 6, 0, 0, 3460, 3462, 3, 316, 158, 0, 3461, 3459, 1, 0, 0, 0, 3462, 3465, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 315, 1, 0, 0, 0, 3465, 3463, 1, 0, 0, 0, 3466, 3474, 3, 318, 159, 0, 3467, 3468, 5, 326, 0, 0, 3468, 3474, 3, 318, 159, 0, 3469, 3470, 5, 133, 0, 0, 3470, 3474, 3, 318, 159, 0, 3471, 3472, 5, 191, 0, 0, 3472, 3474, 3, 320, 160, 0, 3473, 3466, 1, 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3469, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3474, 317, 1, 0, 0, 0, 3475, 3476, 3, 320, 160, 0, 3476, 3477, 3, 322, 161, 0, 3477, 319, 1, 0, 0, 0, 3478, 3479, 3, 1262, 631, 0, 3479, 321, 1, 0, 0, 0, 3480, 3481, 3, 1240, 620, 0, 3481, 323, 1, 0, 0, 0, 3482, 3483, 5, 46, 0, 0, 3483, 3484, 5, 324, 0, 0, 3484, 3485, 3, 1222, 611, 0, 3485, 3487, 3, 326, 163, 0, 3486, 3488, 3, 328, 164, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 5, 63, 0, 0, 3490, 3491, 5, 174, 0, 0, 3491, 3492, 5, 374, 0, 0, 3492, 3493, 3, 1222, 611, 0, 3493, 3494, 3, 308, 154, 0, 3494, 3512, 1, 0, 0, 0, 3495, 3496, 5, 46, 0, 0, 3496, 3497, 5, 324, 0, 0, 3497, 3498, 5, 220, 0, 0, 3498, 3499, 5, 77, 0, 0, 3499, 3500, 5, 389, 0, 0, 3500, 3501, 3, 1222, 611, 0, 3501, 3503, 3, 326, 163, 0, 3502, 3504, 3, 328, 164, 0, 3503, 3502, 1, 0, 0, 0, 3503, 3504, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 5, 63, 0, 0, 3506, 3507, 5, 174, 0, 0, 3507, 3508, 5, 374, 0, 0, 3508, 3509, 3, 1222, 611, 0, 3509, 3510, 3, 308, 154, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3482, 1, 0, 0, 0, 3511, 3495, 1, 0, 0, 0, 3512, 325, 1, 0, 0, 0, 3513, 3514, 5, 353, 0, 0, 3514, 3517, 3, 1240, 620, 0, 3515, 3517, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3516, 3515, 1, 0, 0, 0, 3517, 327, 1, 0, 0, 0, 3518, 3521, 5, 368, 0, 0, 3519, 3522, 3, 1240, 620, 0, 3520, 3522, 5, 78, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3520, 1, 0, 0, 0, 3522, 329, 1, 0, 0, 0, 3523, 3524, 5, 138, 0, 0, 3524, 3525, 5, 324, 0, 0, 3525, 3531, 3, 1222, 611, 0, 3526, 3532, 3, 312, 156, 0, 3527, 3529, 3, 328, 164, 0, 3528, 3530, 3, 312, 156, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3526, 1, 0, 0, 0, 3531, 3527, 1, 0, 0, 0, 3532, 331, 1, 0, 0, 0, 3533, 3534, 5, 46, 0, 0, 3534, 3535, 5, 63, 0, 0, 3535, 3536, 5, 92, 0, 0, 3536, 3537, 3, 1218, 609, 0, 3537, 3538, 5, 2, 0, 0, 3538, 3539, 3, 162, 81, 0, 3539, 3540, 5, 3, 0, 0, 3540, 3541, 3, 222, 111, 0, 3541, 3542, 5, 324, 0, 0, 3542, 3543, 3, 1222, 611, 0, 3543, 3544, 3, 308, 154, 0, 3544, 3590, 1, 0, 0, 0, 3545, 3546, 5, 46, 0, 0, 3546, 3547, 5, 63, 0, 0, 3547, 3548, 5, 92, 0, 0, 3548, 3549, 5, 220, 0, 0, 3549, 3550, 5, 77, 0, 0, 3550, 3551, 5, 389, 0, 0, 3551, 3552, 3, 1218, 609, 0, 3552, 3553, 5, 2, 0, 0, 3553, 3554, 3, 162, 81, 0, 3554, 3555, 5, 3, 0, 0, 3555, 3556, 3, 222, 111, 0, 3556, 3557, 5, 324, 0, 0, 3557, 3558, 3, 1222, 611, 0, 3558, 3559, 3, 308, 154, 0, 3559, 3590, 1, 0, 0, 0, 3560, 3561, 5, 46, 0, 0, 3561, 3562, 5, 63, 0, 0, 3562, 3563, 5, 92, 0, 0, 3563, 3564, 3, 1218, 609, 0, 3564, 3565, 5, 278, 0, 0, 3565, 3566, 5, 268, 0, 0, 3566, 3567, 3, 1218, 609, 0, 3567, 3568, 3, 164, 82, 0, 3568, 3569, 3, 126, 63, 0, 3569, 3570, 5, 324, 0, 0, 3570, 3571, 3, 1222, 611, 0, 3571, 3572, 3, 308, 154, 0, 3572, 3590, 1, 0, 0, 0, 3573, 3574, 5, 46, 0, 0, 3574, 3575, 5, 63, 0, 0, 3575, 3576, 5, 92, 0, 0, 3576, 3577, 5, 220, 0, 0, 3577, 3578, 5, 77, 0, 0, 3578, 3579, 5, 389, 0, 0, 3579, 3580, 3, 1218, 609, 0, 3580, 3581, 5, 278, 0, 0, 3581, 3582, 5, 268, 0, 0, 3582, 3583, 3, 1218, 609, 0, 3583, 3584, 3, 164, 82, 0, 3584, 3585, 3, 126, 63, 0, 3585, 3586, 5, 324, 0, 0, 3586, 3587, 3, 1222, 611, 0, 3587, 3588, 3, 308, 154, 0, 3588, 3590, 1, 0, 0, 0, 3589, 3533, 1, 0, 0, 0, 3589, 3545, 1, 0, 0, 0, 3589, 3560, 1, 0, 0, 0, 3589, 3573, 1, 0, 0, 0, 3590, 333, 1, 0, 0, 0, 3591, 3592, 5, 444, 0, 0, 3592, 3593, 5, 63, 0, 0, 3593, 3594, 5, 316, 0, 0, 3594, 3595, 3, 1222, 611, 0, 3595, 3596, 3, 338, 169, 0, 3596, 3597, 5, 64, 0, 0, 3597, 3598, 5, 324, 0, 0, 3598, 3599, 3, 1222, 611, 0, 3599, 3600, 5, 71, 0, 0, 3600, 3601, 3, 1222, 611, 0, 3601, 3602, 3, 308, 154, 0, 3602, 335, 1, 0, 0, 0, 3603, 3604, 5, 74, 0, 0, 3604, 3607, 5, 94, 0, 0, 3605, 3607, 5, 59, 0, 0, 3606, 3603, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 337, 1, 0, 0, 0, 3608, 3609, 3, 336, 168, 0, 3609, 3610, 5, 2, 0, 0, 3610, 3611, 3, 968, 484, 0, 3611, 3612, 5, 3, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3615, 1, 0, 0, 0, 3614, 3608, 1, 0, 0, 0, 3614, 3613, 1, 0, 0, 0, 3615, 339, 1, 0, 0, 0, 3616, 3617, 5, 46, 0, 0, 3617, 3618, 5, 99, 0, 0, 3618, 3619, 5, 248, 0, 0, 3619, 3620, 5, 62, 0, 0, 3620, 3621, 3, 342, 171, 0, 3621, 3622, 5, 324, 0, 0, 3622, 3623, 3, 1222, 611, 0, 3623, 3624, 3, 308, 154, 0, 3624, 3638, 1, 0, 0, 0, 3625, 3626, 5, 46, 0, 0, 3626, 3627, 5, 99, 0, 0, 3627, 3628, 5, 248, 0, 0, 3628, 3629, 5, 220, 0, 0, 3629, 3630, 5, 77, 0, 0, 3630, 3631, 5, 389, 0, 0, 3631, 3632, 5, 62, 0, 0, 3632, 3633, 3, 342, 171, 0, 3633, 3634, 5, 324, 0, 0, 3634, 3635, 3, 1222, 611, 0, 3635, 3636, 3, 308, 154, 0, 3636, 3638, 1, 0, 0, 0, 3637, 3616, 1, 0, 0, 0, 3637, 3625, 1, 0, 0, 0, 3638, 341, 1, 0, 0, 0, 3639, 3642, 3, 1250, 625, 0, 3640, 3642, 5, 99, 0, 0, 3641, 3639, 1, 0, 0, 0, 3641, 3640, 1, 0, 0, 0, 3642, 343, 1, 0, 0, 0, 3643, 3644, 5, 191, 0, 0, 3644, 3645, 5, 99, 0, 0, 3645, 3646, 5, 248, 0, 0, 3646, 3647, 5, 62, 0, 0, 3647, 3648, 3, 342, 171, 0, 3648, 3649, 5, 324, 0, 0, 3649, 3650, 3, 1222, 611, 0, 3650, 3662, 1, 0, 0, 0, 3651, 3652, 5, 191, 0, 0, 3652, 3653, 5, 99, 0, 0, 3653, 3654, 5, 248, 0, 0, 3654, 3655, 5, 220, 0, 0, 3655, 3656, 5, 389, 0, 0, 3656, 3657, 5, 62, 0, 0, 3657, 3658, 3, 342, 171, 0, 3658, 3659, 5, 324, 0, 0, 3659, 3660, 3, 1222, 611, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3643, 1, 0, 0, 0, 3661, 3651, 1, 0, 0, 0, 3662, 345, 1, 0, 0, 0, 3663, 3664, 5, 138, 0, 0, 3664, 3665, 5, 99, 0, 0, 3665, 3666, 5, 248, 0, 0, 3666, 3667, 5, 62, 0, 0, 3667, 3668, 3, 342, 171, 0, 3668, 3669, 5, 324, 0, 0, 3669, 3670, 3, 1222, 611, 0, 3670, 3671, 3, 312, 156, 0, 3671, 347, 1, 0, 0, 0, 3672, 3673, 5, 46, 0, 0, 3673, 3674, 5, 445, 0, 0, 3674, 3675, 3, 1222, 611, 0, 3675, 3676, 5, 80, 0, 0, 3676, 3677, 3, 1218, 609, 0, 3677, 3678, 3, 360, 180, 0, 3678, 3679, 3, 362, 181, 0, 3679, 3680, 3, 356, 178, 0, 3680, 3681, 3, 352, 176, 0, 3681, 3682, 3, 354, 177, 0, 3682, 349, 1, 0, 0, 0, 3683, 3684, 5, 138, 0, 0, 3684, 3685, 5, 445, 0, 0, 3685, 3686, 3, 1222, 611, 0, 3686, 3687, 5, 80, 0, 0, 3687, 3688, 3, 1218, 609, 0, 3688, 3689, 3, 358, 179, 0, 3689, 3690, 3, 352, 176, 0, 3690, 3691, 3, 354, 177, 0, 3691, 351, 1, 0, 0, 0, 3692, 3693, 5, 100, 0, 0, 3693, 3694, 5, 2, 0, 0, 3694, 3695, 3, 1046, 523, 0, 3695, 3696, 5, 3, 0, 0, 3696, 3699, 1, 0, 0, 0, 3697, 3699, 1, 0, 0, 0, 3698, 3692, 1, 0, 0, 0, 3698, 3697, 1, 0, 0, 0, 3699, 353, 1, 0, 0, 0, 3700, 3701, 5, 105, 0, 0, 3701, 3702, 5, 42, 0, 0, 3702, 3703, 5, 2, 0, 0, 3703, 3704, 3, 1046, 523, 0, 3704, 3705, 5, 3, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3708, 1, 0, 0, 0, 3707, 3700, 1, 0, 0, 0, 3707, 3706, 1, 0, 0, 0, 3708, 355, 1, 0, 0, 0, 3709, 3710, 5, 94, 0, 0, 3710, 3713, 3, 1252, 626, 0, 3711, 3713, 1, 0, 0, 0, 3712, 3709, 1, 0, 0, 0, 3712, 3711, 1, 0, 0, 0, 3713, 357, 1, 0, 0, 0, 3714, 3715, 5, 94, 0, 0, 3715, 3718, 3, 1252, 626, 0, 3716, 3718, 1, 0, 0, 0, 3717, 3714, 1, 0, 0, 0, 3717, 3716, 1, 0, 0, 0, 3718, 359, 1, 0, 0, 0, 3719, 3720, 5, 36, 0, 0, 3720, 3723, 3, 1264, 632, 0, 3721, 3723, 1, 0, 0, 0, 3722, 3719, 1, 0, 0, 0, 3722, 3721, 1, 0, 0, 0, 3723, 361, 1, 0, 0, 0, 3724, 3725, 5, 62, 0, 0, 3725, 3728, 3, 364, 182, 0, 3726, 3728, 1, 0, 0, 0, 3727, 3724, 1, 0, 0, 0, 3727, 3726, 1, 0, 0, 0, 3728, 363, 1, 0, 0, 0, 3729, 3730, 7, 17, 0, 0, 3730, 365, 1, 0, 0, 0, 3731, 3732, 5, 46, 0, 0, 3732, 3733, 5, 131, 0, 0, 3733, 3734, 5, 446, 0, 0, 3734, 3735, 3, 1222, 611, 0, 3735, 3736, 5, 353, 0, 0, 3736, 3737, 3, 368, 184, 0, 3737, 3738, 5, 215, 0, 0, 3738, 3739, 3, 276, 138, 0, 3739, 367, 1, 0, 0, 0, 3740, 3741, 7, 18, 0, 0, 3741, 369, 1, 0, 0, 0, 3742, 3743, 5, 46, 0, 0, 3743, 3744, 5, 350, 0, 0, 3744, 3745, 3, 1222, 611, 0, 3745, 3746, 3, 372, 186, 0, 3746, 3747, 3, 374, 187, 0, 3747, 3748, 5, 80, 0, 0, 3748, 3749, 3, 1218, 609, 0, 3749, 3750, 3, 378, 189, 0, 3750, 3751, 3, 390, 195, 0, 3751, 3752, 3, 394, 197, 0, 3752, 3753, 5, 202, 0, 0, 3753, 3754, 3, 396, 198, 0, 3754, 3755, 3, 1228, 614, 0, 3755, 3756, 5, 2, 0, 0, 3756, 3757, 3, 398, 199, 0, 3757, 3758, 5, 3, 0, 0, 3758, 3781, 1, 0, 0, 0, 3759, 3760, 5, 46, 0, 0, 3760, 3761, 5, 45, 0, 0, 3761, 3762, 5, 350, 0, 0, 3762, 3763, 3, 1222, 611, 0, 3763, 3764, 5, 135, 0, 0, 3764, 3765, 3, 374, 187, 0, 3765, 3766, 5, 80, 0, 0, 3766, 3767, 3, 1218, 609, 0, 3767, 3768, 3, 402, 201, 0, 3768, 3769, 3, 404, 202, 0, 3769, 3770, 5, 62, 0, 0, 3770, 3771, 5, 192, 0, 0, 3771, 3772, 5, 407, 0, 0, 3772, 3773, 3, 394, 197, 0, 3773, 3774, 5, 202, 0, 0, 3774, 3775, 3, 396, 198, 0, 3775, 3776, 3, 1228, 614, 0, 3776, 3777, 5, 2, 0, 0, 3777, 3778, 3, 398, 199, 0, 3778, 3779, 5, 3, 0, 0, 3779, 3781, 1, 0, 0, 0, 3780, 3742, 1, 0, 0, 0, 3780, 3759, 1, 0, 0, 0, 3781, 371, 1, 0, 0, 0, 3782, 3787, 5, 145, 0, 0, 3783, 3787, 5, 135, 0, 0, 3784, 3785, 5, 233, 0, 0, 3785, 3787, 5, 268, 0, 0, 3786, 3782, 1, 0, 0, 0, 3786, 3783, 1, 0, 0, 0, 3786, 3784, 1, 0, 0, 0, 3787, 373, 1, 0, 0, 0, 3788, 3793, 3, 376, 188, 0, 3789, 3790, 5, 82, 0, 0, 3790, 3792, 3, 376, 188, 0, 3791, 3789, 1, 0, 0, 0, 3792, 3795, 1, 0, 0, 0, 3793, 3791, 1, 0, 0, 0, 3793, 3794, 1, 0, 0, 0, 3794, 375, 1, 0, 0, 0, 3795, 3793, 1, 0, 0, 0, 3796, 3804, 5, 232, 0, 0, 3797, 3804, 5, 182, 0, 0, 3798, 3804, 5, 362, 0, 0, 3799, 3800, 5, 362, 0, 0, 3800, 3801, 5, 268, 0, 0, 3801, 3804, 3, 200, 100, 0, 3802, 3804, 5, 351, 0, 0, 3803, 3796, 1, 0, 0, 0, 3803, 3797, 1, 0, 0, 0, 3803, 3798, 1, 0, 0, 0, 3803, 3799, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 377, 1, 0, 0, 0, 3805, 3806, 5, 447, 0, 0, 3806, 3809, 3, 380, 190, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3805, 1, 0, 0, 0, 3808, 3807, 1, 0, 0, 0, 3809, 379, 1, 0, 0, 0, 3810, 3812, 3, 382, 191, 0, 3811, 3810, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3811, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 381, 1, 0, 0, 0, 3815, 3816, 3, 384, 192, 0, 3816, 3817, 3, 386, 193, 0, 3817, 3818, 3, 758, 379, 0, 3818, 3819, 3, 388, 194, 0, 3819, 383, 1, 0, 0, 0, 3820, 3821, 7, 19, 0, 0, 3821, 385, 1, 0, 0, 0, 3822, 3823, 7, 20, 0, 0, 3823, 387, 1, 0, 0, 0, 3824, 3825, 3, 1254, 627, 0, 3825, 389, 1, 0, 0, 0, 3826, 3828, 5, 62, 0, 0, 3827, 3829, 5, 192, 0, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3833, 3, 392, 196, 0, 3831, 3833, 1, 0, 0, 0, 3832, 3826, 1, 0, 0, 0, 3832, 3831, 1, 0, 0, 0, 3833, 391, 1, 0, 0, 0, 3834, 3835, 7, 21, 0, 0, 3835, 393, 1, 0, 0, 0, 3836, 3837, 5, 102, 0, 0, 3837, 3838, 5, 2, 0, 0, 3838, 3839, 3, 1046, 523, 0, 3839, 3840, 5, 3, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 395, 1, 0, 0, 0, 3844, 3845, 7, 22, 0, 0, 3845, 397, 1, 0, 0, 0, 3846, 3849, 3, 400, 200, 0, 3847, 3849, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3847, 1, 0, 0, 0, 3849, 3854, 1, 0, 0, 0, 3850, 3851, 5, 6, 0, 0, 3851, 3853, 3, 400, 200, 0, 3852, 3850, 1, 0, 0, 0, 3853, 3856, 1, 0, 0, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 399, 1, 0, 0, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3862, 3, 1238, 619, 0, 3858, 3862, 3, 1236, 618, 0, 3859, 3862, 3, 1240, 620, 0, 3860, 3862, 3, 1262, 631, 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, 401, 1, 0, 0, 0, 3863, 3864, 5, 64, 0, 0, 3864, 3867, 3, 1218, 609, 0, 3865, 3867, 1, 0, 0, 0, 3866, 3863, 1, 0, 0, 0, 3866, 3865, 1, 0, 0, 0, 3867, 403, 1, 0, 0, 0, 3868, 3870, 3, 406, 203, 0, 3869, 3868, 1, 0, 0, 0, 3870, 3873, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 405, 1, 0, 0, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3875, 5, 77, 0, 0, 3875, 3886, 5, 54, 0, 0, 3876, 3886, 5, 54, 0, 0, 3877, 3878, 5, 69, 0, 0, 3878, 3886, 5, 221, 0, 0, 3879, 3880, 5, 69, 0, 0, 3880, 3886, 5, 180, 0, 0, 3881, 3882, 5, 77, 0, 0, 3882, 3886, 5, 364, 0, 0, 3883, 3884, 5, 262, 0, 0, 3884, 3886, 5, 228, 0, 0, 3885, 3874, 1, 0, 0, 0, 3885, 3876, 1, 0, 0, 0, 3885, 3877, 1, 0, 0, 0, 3885, 3879, 1, 0, 0, 0, 3885, 3881, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3886, 407, 1, 0, 0, 0, 3887, 3888, 5, 46, 0, 0, 3888, 3889, 5, 198, 0, 0, 3889, 3890, 5, 350, 0, 0, 3890, 3891, 3, 1222, 611, 0, 3891, 3892, 5, 80, 0, 0, 3892, 3893, 3, 1262, 631, 0, 3893, 3894, 5, 202, 0, 0, 3894, 3895, 3, 396, 198, 0, 3895, 3896, 3, 1228, 614, 0, 3896, 3897, 5, 2, 0, 0, 3897, 3898, 5, 3, 0, 0, 3898, 3914, 1, 0, 0, 0, 3899, 3900, 5, 46, 0, 0, 3900, 3901, 5, 198, 0, 0, 3901, 3902, 5, 350, 0, 0, 3902, 3903, 3, 1222, 611, 0, 3903, 3904, 5, 80, 0, 0, 3904, 3905, 3, 1262, 631, 0, 3905, 3906, 5, 102, 0, 0, 3906, 3907, 3, 410, 205, 0, 3907, 3908, 5, 202, 0, 0, 3908, 3909, 3, 396, 198, 0, 3909, 3910, 3, 1228, 614, 0, 3910, 3911, 5, 2, 0, 0, 3911, 3912, 5, 3, 0, 0, 3912, 3914, 1, 0, 0, 0, 3913, 3887, 1, 0, 0, 0, 3913, 3899, 1, 0, 0, 0, 3914, 409, 1, 0, 0, 0, 3915, 3920, 3, 412, 206, 0, 3916, 3917, 5, 33, 0, 0, 3917, 3919, 3, 412, 206, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3922, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 411, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3923, 3924, 3, 1254, 627, 0, 3924, 3925, 5, 68, 0, 0, 3925, 3926, 5, 2, 0, 0, 3926, 3927, 3, 414, 207, 0, 3927, 3928, 5, 3, 0, 0, 3928, 413, 1, 0, 0, 0, 3929, 3934, 3, 1240, 620, 0, 3930, 3931, 5, 6, 0, 0, 3931, 3933, 3, 1240, 620, 0, 3932, 3930, 1, 0, 0, 0, 3933, 3936, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 415, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3937, 3938, 5, 138, 0, 0, 3938, 3939, 5, 198, 0, 0, 3939, 3940, 5, 350, 0, 0, 3940, 3941, 3, 1222, 611, 0, 3941, 3942, 3, 418, 209, 0, 3942, 417, 1, 0, 0, 0, 3943, 3950, 5, 193, 0, 0, 3944, 3945, 5, 193, 0, 0, 3945, 3950, 5, 305, 0, 0, 3946, 3947, 5, 193, 0, 0, 3947, 3950, 5, 139, 0, 0, 3948, 3950, 5, 186, 0, 0, 3949, 3943, 1, 0, 0, 0, 3949, 3944, 1, 0, 0, 0, 3949, 3946, 1, 0, 0, 0, 3949, 3948, 1, 0, 0, 0, 3950, 419, 1, 0, 0, 0, 3951, 3952, 5, 46, 0, 0, 3952, 3953, 5, 140, 0, 0, 3953, 3954, 3, 478, 239, 0, 3954, 3955, 5, 42, 0, 0, 3955, 3956, 5, 2, 0, 0, 3956, 3957, 3, 1046, 523, 0, 3957, 3958, 5, 3, 0, 0, 3958, 3959, 3, 404, 202, 0, 3959, 421, 1, 0, 0, 0, 3960, 3961, 5, 46, 0, 0, 3961, 3962, 3, 564, 282, 0, 3962, 3963, 5, 136, 0, 0, 3963, 3964, 3, 1228, 614, 0, 3964, 3965, 3, 586, 293, 0, 3965, 3966, 3, 424, 212, 0, 3966, 4069, 1, 0, 0, 0, 3967, 3968, 5, 46, 0, 0, 3968, 3969, 3, 564, 282, 0, 3969, 3970, 5, 136, 0, 0, 3970, 3971, 3, 1228, 614, 0, 3971, 3972, 3, 430, 215, 0, 3972, 4069, 1, 0, 0, 0, 3973, 3974, 5, 46, 0, 0, 3974, 3975, 5, 271, 0, 0, 3975, 3976, 3, 620, 310, 0, 3976, 3977, 3, 424, 212, 0, 3977, 4069, 1, 0, 0, 0, 3978, 3979, 5, 46, 0, 0, 3979, 3980, 5, 353, 0, 0, 3980, 3981, 3, 478, 239, 0, 3981, 3982, 3, 424, 212, 0, 3982, 4069, 1, 0, 0, 0, 3983, 3984, 5, 46, 0, 0, 3984, 3985, 5, 353, 0, 0, 3985, 4069, 3, 478, 239, 0, 3986, 3987, 5, 46, 0, 0, 3987, 3988, 5, 353, 0, 0, 3988, 3989, 3, 478, 239, 0, 3989, 3990, 5, 36, 0, 0, 3990, 3991, 5, 2, 0, 0, 3991, 3992, 3, 986, 493, 0, 3992, 3993, 5, 3, 0, 0, 3993, 4069, 1, 0, 0, 0, 3994, 3995, 5, 46, 0, 0, 3995, 3996, 5, 353, 0, 0, 3996, 3997, 3, 478, 239, 0, 3997, 3998, 5, 36, 0, 0, 3998, 3999, 5, 196, 0, 0, 3999, 4001, 5, 2, 0, 0, 4000, 4002, 3, 434, 217, 0, 4001, 4000, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4004, 5, 3, 0, 0, 4004, 4069, 1, 0, 0, 0, 4005, 4006, 5, 46, 0, 0, 4006, 4007, 5, 353, 0, 0, 4007, 4008, 3, 478, 239, 0, 4008, 4009, 5, 36, 0, 0, 4009, 4010, 5, 292, 0, 0, 4010, 4011, 3, 424, 212, 0, 4011, 4069, 1, 0, 0, 0, 4012, 4013, 5, 46, 0, 0, 4013, 4014, 5, 348, 0, 0, 4014, 4015, 5, 318, 0, 0, 4015, 4016, 5, 276, 0, 0, 4016, 4017, 3, 478, 239, 0, 4017, 4018, 3, 424, 212, 0, 4018, 4069, 1, 0, 0, 0, 4019, 4020, 5, 46, 0, 0, 4020, 4021, 5, 348, 0, 0, 4021, 4022, 5, 318, 0, 0, 4022, 4023, 5, 185, 0, 0, 4023, 4024, 3, 478, 239, 0, 4024, 4025, 3, 424, 212, 0, 4025, 4069, 1, 0, 0, 0, 4026, 4027, 5, 46, 0, 0, 4027, 4028, 5, 348, 0, 0, 4028, 4029, 5, 318, 0, 0, 4029, 4030, 5, 346, 0, 0, 4030, 4031, 3, 478, 239, 0, 4031, 4032, 3, 424, 212, 0, 4032, 4069, 1, 0, 0, 0, 4033, 4034, 5, 46, 0, 0, 4034, 4035, 5, 348, 0, 0, 4035, 4036, 5, 318, 0, 0, 4036, 4037, 5, 163, 0, 0, 4037, 4038, 3, 478, 239, 0, 4038, 4039, 3, 424, 212, 0, 4039, 4069, 1, 0, 0, 0, 4040, 4041, 5, 46, 0, 0, 4041, 4042, 5, 108, 0, 0, 4042, 4043, 3, 478, 239, 0, 4043, 4044, 3, 424, 212, 0, 4044, 4069, 1, 0, 0, 0, 4045, 4046, 5, 46, 0, 0, 4046, 4047, 5, 108, 0, 0, 4047, 4048, 5, 220, 0, 0, 4048, 4049, 5, 77, 0, 0, 4049, 4050, 5, 389, 0, 0, 4050, 4051, 3, 478, 239, 0, 4051, 4052, 3, 424, 212, 0, 4052, 4069, 1, 0, 0, 0, 4053, 4054, 5, 46, 0, 0, 4054, 4055, 5, 108, 0, 0, 4055, 4056, 3, 478, 239, 0, 4056, 4057, 5, 64, 0, 0, 4057, 4058, 3, 478, 239, 0, 4058, 4069, 1, 0, 0, 0, 4059, 4060, 5, 46, 0, 0, 4060, 4061, 5, 108, 0, 0, 4061, 4062, 5, 220, 0, 0, 4062, 4063, 5, 77, 0, 0, 4063, 4064, 5, 389, 0, 0, 4064, 4065, 3, 478, 239, 0, 4065, 4066, 5, 64, 0, 0, 4066, 4067, 3, 478, 239, 0, 4067, 4069, 1, 0, 0, 0, 4068, 3960, 1, 0, 0, 0, 4068, 3967, 1, 0, 0, 0, 4068, 3973, 1, 0, 0, 0, 4068, 3978, 1, 0, 0, 0, 4068, 3983, 1, 0, 0, 0, 4068, 3986, 1, 0, 0, 0, 4068, 3994, 1, 0, 0, 0, 4068, 4005, 1, 0, 0, 0, 4068, 4012, 1, 0, 0, 0, 4068, 4019, 1, 0, 0, 0, 4068, 4026, 1, 0, 0, 0, 4068, 4033, 1, 0, 0, 0, 4068, 4040, 1, 0, 0, 0, 4068, 4045, 1, 0, 0, 0, 4068, 4053, 1, 0, 0, 0, 4068, 4059, 1, 0, 0, 0, 4069, 423, 1, 0, 0, 0, 4070, 4071, 5, 2, 0, 0, 4071, 4076, 3, 426, 213, 0, 4072, 4073, 5, 6, 0, 0, 4073, 4075, 3, 426, 213, 0, 4074, 4072, 1, 0, 0, 0, 4075, 4078, 1, 0, 0, 0, 4076, 4074, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4079, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4080, 5, 3, 0, 0, 4080, 425, 1, 0, 0, 0, 4081, 4084, 3, 1262, 631, 0, 4082, 4083, 5, 10, 0, 0, 4083, 4085, 3, 428, 214, 0, 4084, 4082, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 427, 1, 0, 0, 0, 4086, 4093, 3, 584, 292, 0, 4087, 4093, 3, 1274, 637, 0, 4088, 4093, 3, 1160, 580, 0, 4089, 4093, 3, 270, 135, 0, 4090, 4093, 3, 1240, 620, 0, 4091, 4093, 5, 400, 0, 0, 4092, 4086, 1, 0, 0, 0, 4092, 4087, 1, 0, 0, 0, 4092, 4088, 1, 0, 0, 0, 4092, 4089, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4091, 1, 0, 0, 0, 4093, 429, 1, 0, 0, 0, 4094, 4095, 5, 2, 0, 0, 4095, 4100, 3, 432, 216, 0, 4096, 4097, 5, 6, 0, 0, 4097, 4099, 3, 432, 216, 0, 4098, 4096, 1, 0, 0, 0, 4099, 4102, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4103, 1, 0, 0, 0, 4102, 4100, 1, 0, 0, 0, 4103, 4104, 5, 3, 0, 0, 4104, 431, 1, 0, 0, 0, 4105, 4106, 3, 1264, 632, 0, 4106, 4107, 5, 10, 0, 0, 4107, 4108, 3, 428, 214, 0, 4108, 433, 1, 0, 0, 0, 4109, 4114, 3, 1240, 620, 0, 4110, 4111, 5, 6, 0, 0, 4111, 4113, 3, 1240, 620, 0, 4112, 4110, 1, 0, 0, 0, 4113, 4116, 1, 0, 0, 0, 4114, 4112, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 435, 1, 0, 0, 0, 4116, 4114, 1, 0, 0, 0, 4117, 4118, 5, 138, 0, 0, 4118, 4119, 5, 353, 0, 0, 4119, 4120, 3, 478, 239, 0, 4120, 4121, 5, 133, 0, 0, 4121, 4122, 5, 450, 0, 0, 4122, 4123, 3, 438, 219, 0, 4123, 4124, 3, 1240, 620, 0, 4124, 4155, 1, 0, 0, 0, 4125, 4126, 5, 138, 0, 0, 4126, 4127, 5, 353, 0, 0, 4127, 4128, 3, 478, 239, 0, 4128, 4129, 5, 133, 0, 0, 4129, 4130, 5, 450, 0, 0, 4130, 4131, 3, 438, 219, 0, 4131, 4132, 3, 1240, 620, 0, 4132, 4133, 5, 145, 0, 0, 4133, 4134, 3, 1240, 620, 0, 4134, 4155, 1, 0, 0, 0, 4135, 4136, 5, 138, 0, 0, 4136, 4137, 5, 353, 0, 0, 4137, 4138, 3, 478, 239, 0, 4138, 4139, 5, 133, 0, 0, 4139, 4140, 5, 450, 0, 0, 4140, 4141, 3, 438, 219, 0, 4141, 4142, 3, 1240, 620, 0, 4142, 4143, 5, 135, 0, 0, 4143, 4144, 3, 1240, 620, 0, 4144, 4155, 1, 0, 0, 0, 4145, 4146, 5, 138, 0, 0, 4146, 4147, 5, 353, 0, 0, 4147, 4148, 3, 478, 239, 0, 4148, 4149, 5, 302, 0, 0, 4149, 4150, 5, 450, 0, 0, 4150, 4151, 3, 1240, 620, 0, 4151, 4152, 5, 94, 0, 0, 4152, 4153, 3, 1240, 620, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4117, 1, 0, 0, 0, 4154, 4125, 1, 0, 0, 0, 4154, 4135, 1, 0, 0, 0, 4154, 4145, 1, 0, 0, 0, 4155, 437, 1, 0, 0, 0, 4156, 4157, 5, 220, 0, 0, 4157, 4158, 5, 77, 0, 0, 4158, 4161, 5, 389, 0, 0, 4159, 4161, 1, 0, 0, 0, 4160, 4156, 1, 0, 0, 0, 4160, 4159, 1, 0, 0, 0, 4161, 439, 1, 0, 0, 0, 4162, 4163, 5, 46, 0, 0, 4163, 4164, 5, 271, 0, 0, 4164, 4165, 5, 156, 0, 0, 4165, 4167, 3, 478, 239, 0, 4166, 4168, 5, 53, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 5, 62, 0, 0, 4170, 4171, 5, 353, 0, 0, 4171, 4172, 3, 1004, 502, 0, 4172, 4173, 5, 100, 0, 0, 4173, 4174, 3, 1222, 611, 0, 4174, 4175, 3, 446, 223, 0, 4175, 4176, 5, 36, 0, 0, 4176, 4177, 3, 442, 221, 0, 4177, 441, 1, 0, 0, 0, 4178, 4183, 3, 444, 222, 0, 4179, 4180, 5, 6, 0, 0, 4180, 4182, 3, 444, 222, 0, 4181, 4179, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4181, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 443, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4186, 4187, 5, 271, 0, 0, 4187, 4188, 3, 1238, 619, 0, 4188, 4189, 3, 620, 310, 0, 4189, 4191, 3, 448, 224, 0, 4190, 4192, 5, 295, 0, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4214, 1, 0, 0, 0, 4193, 4194, 5, 271, 0, 0, 4194, 4195, 3, 1238, 619, 0, 4195, 4196, 3, 624, 312, 0, 4196, 4198, 3, 448, 224, 0, 4197, 4199, 5, 295, 0, 0, 4198, 4197, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4214, 1, 0, 0, 0, 4200, 4201, 5, 211, 0, 0, 4201, 4202, 3, 1238, 619, 0, 4202, 4203, 3, 570, 285, 0, 4203, 4214, 1, 0, 0, 0, 4204, 4205, 5, 211, 0, 0, 4205, 4206, 3, 1238, 619, 0, 4206, 4207, 5, 2, 0, 0, 4207, 4208, 3, 1170, 585, 0, 4208, 4209, 5, 3, 0, 0, 4209, 4210, 3, 570, 285, 0, 4210, 4214, 1, 0, 0, 0, 4211, 4212, 5, 338, 0, 0, 4212, 4214, 3, 1004, 502, 0, 4213, 4186, 1, 0, 0, 0, 4213, 4193, 1, 0, 0, 0, 4213, 4200, 1, 0, 0, 0, 4213, 4204, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 445, 1, 0, 0, 0, 4215, 4216, 5, 206, 0, 0, 4216, 4219, 3, 478, 239, 0, 4217, 4219, 1, 0, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4217, 1, 0, 0, 0, 4219, 447, 1, 0, 0, 0, 4220, 4221, 5, 62, 0, 0, 4221, 4228, 5, 318, 0, 0, 4222, 4223, 5, 62, 0, 0, 4223, 4224, 5, 83, 0, 0, 4224, 4225, 5, 147, 0, 0, 4225, 4228, 3, 478, 239, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4220, 1, 0, 0, 0, 4227, 4222, 1, 0, 0, 0, 4227, 4226, 1, 0, 0, 0, 4228, 449, 1, 0, 0, 0, 4229, 4230, 5, 46, 0, 0, 4230, 4231, 5, 271, 0, 0, 4231, 4232, 5, 206, 0, 0, 4232, 4233, 3, 478, 239, 0, 4233, 4234, 5, 100, 0, 0, 4234, 4235, 3, 1222, 611, 0, 4235, 451, 1, 0, 0, 0, 4236, 4237, 5, 138, 0, 0, 4237, 4238, 5, 271, 0, 0, 4238, 4239, 5, 206, 0, 0, 4239, 4240, 3, 478, 239, 0, 4240, 4241, 5, 100, 0, 0, 4241, 4242, 3, 1222, 611, 0, 4242, 4243, 5, 133, 0, 0, 4243, 4244, 3, 442, 221, 0, 4244, 4255, 1, 0, 0, 0, 4245, 4246, 5, 138, 0, 0, 4246, 4247, 5, 271, 0, 0, 4247, 4248, 5, 206, 0, 0, 4248, 4249, 3, 478, 239, 0, 4249, 4250, 5, 100, 0, 0, 4250, 4251, 3, 1222, 611, 0, 4251, 4252, 5, 191, 0, 0, 4252, 4253, 3, 454, 227, 0, 4253, 4255, 1, 0, 0, 0, 4254, 4236, 1, 0, 0, 0, 4254, 4245, 1, 0, 0, 0, 4255, 453, 1, 0, 0, 0, 4256, 4261, 3, 456, 228, 0, 4257, 4258, 5, 6, 0, 0, 4258, 4260, 3, 456, 228, 0, 4259, 4257, 1, 0, 0, 0, 4260, 4263, 1, 0, 0, 0, 4261, 4259, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 455, 1, 0, 0, 0, 4263, 4261, 1, 0, 0, 0, 4264, 4265, 5, 271, 0, 0, 4265, 4266, 3, 1238, 619, 0, 4266, 4267, 5, 2, 0, 0, 4267, 4268, 3, 1170, 585, 0, 4268, 4269, 5, 3, 0, 0, 4269, 4277, 1, 0, 0, 0, 4270, 4271, 5, 211, 0, 0, 4271, 4272, 3, 1238, 619, 0, 4272, 4273, 5, 2, 0, 0, 4273, 4274, 3, 1170, 585, 0, 4274, 4275, 5, 3, 0, 0, 4275, 4277, 1, 0, 0, 0, 4276, 4264, 1, 0, 0, 0, 4276, 4270, 1, 0, 0, 0, 4277, 457, 1, 0, 0, 0, 4278, 4279, 5, 191, 0, 0, 4279, 4280, 5, 271, 0, 0, 4280, 4281, 5, 156, 0, 0, 4281, 4282, 3, 478, 239, 0, 4282, 4283, 5, 100, 0, 0, 4283, 4284, 3, 1222, 611, 0, 4284, 4285, 3, 106, 53, 0, 4285, 4297, 1, 0, 0, 0, 4286, 4287, 5, 191, 0, 0, 4287, 4288, 5, 271, 0, 0, 4288, 4289, 5, 156, 0, 0, 4289, 4290, 5, 220, 0, 0, 4290, 4291, 5, 389, 0, 0, 4291, 4292, 3, 478, 239, 0, 4292, 4293, 5, 100, 0, 0, 4293, 4294, 3, 1222, 611, 0, 4294, 4295, 3, 106, 53, 0, 4295, 4297, 1, 0, 0, 0, 4296, 4278, 1, 0, 0, 0, 4296, 4286, 1, 0, 0, 0, 4297, 459, 1, 0, 0, 0, 4298, 4299, 5, 191, 0, 0, 4299, 4300, 5, 271, 0, 0, 4300, 4301, 5, 206, 0, 0, 4301, 4302, 3, 478, 239, 0, 4302, 4303, 5, 100, 0, 0, 4303, 4304, 3, 1222, 611, 0, 4304, 4305, 3, 106, 53, 0, 4305, 4317, 1, 0, 0, 0, 4306, 4307, 5, 191, 0, 0, 4307, 4308, 5, 271, 0, 0, 4308, 4309, 5, 206, 0, 0, 4309, 4310, 5, 220, 0, 0, 4310, 4311, 5, 389, 0, 0, 4311, 4312, 3, 478, 239, 0, 4312, 4313, 5, 100, 0, 0, 4313, 4314, 3, 1222, 611, 0, 4314, 4315, 3, 106, 53, 0, 4315, 4317, 1, 0, 0, 0, 4316, 4298, 1, 0, 0, 0, 4316, 4306, 1, 0, 0, 0, 4317, 461, 1, 0, 0, 0, 4318, 4319, 5, 191, 0, 0, 4319, 4320, 5, 274, 0, 0, 4320, 4321, 5, 147, 0, 0, 4321, 4322, 3, 1252, 626, 0, 4322, 4323, 3, 106, 53, 0, 4323, 463, 1, 0, 0, 0, 4324, 4325, 5, 294, 0, 0, 4325, 4326, 5, 274, 0, 0, 4326, 4327, 5, 147, 0, 0, 4327, 4328, 3, 1252, 626, 0, 4328, 4329, 5, 94, 0, 0, 4329, 4330, 3, 1250, 625, 0, 4330, 465, 1, 0, 0, 0, 4331, 4332, 5, 191, 0, 0, 4332, 4333, 3, 468, 234, 0, 4333, 4334, 5, 220, 0, 0, 4334, 4335, 5, 389, 0, 0, 4335, 4336, 3, 476, 238, 0, 4336, 4337, 3, 106, 53, 0, 4337, 4410, 1, 0, 0, 0, 4338, 4339, 5, 191, 0, 0, 4339, 4340, 3, 468, 234, 0, 4340, 4341, 3, 476, 238, 0, 4341, 4342, 3, 106, 53, 0, 4342, 4410, 1, 0, 0, 0, 4343, 4344, 5, 191, 0, 0, 4344, 4345, 3, 472, 236, 0, 4345, 4346, 5, 220, 0, 0, 4346, 4347, 5, 389, 0, 0, 4347, 4348, 3, 1220, 610, 0, 4348, 4349, 3, 106, 53, 0, 4349, 4410, 1, 0, 0, 0, 4350, 4351, 5, 191, 0, 0, 4351, 4352, 3, 472, 236, 0, 4352, 4353, 3, 1220, 610, 0, 4353, 4354, 3, 106, 53, 0, 4354, 4410, 1, 0, 0, 0, 4355, 4356, 5, 191, 0, 0, 4356, 4357, 3, 474, 237, 0, 4357, 4358, 3, 1222, 611, 0, 4358, 4359, 5, 80, 0, 0, 4359, 4360, 3, 478, 239, 0, 4360, 4361, 3, 106, 53, 0, 4361, 4410, 1, 0, 0, 0, 4362, 4363, 5, 191, 0, 0, 4363, 4364, 3, 474, 237, 0, 4364, 4365, 5, 220, 0, 0, 4365, 4366, 5, 389, 0, 0, 4366, 4367, 3, 1222, 611, 0, 4367, 4368, 5, 80, 0, 0, 4368, 4369, 3, 478, 239, 0, 4369, 4370, 3, 106, 53, 0, 4370, 4410, 1, 0, 0, 0, 4371, 4372, 5, 191, 0, 0, 4372, 4373, 5, 353, 0, 0, 4373, 4374, 3, 482, 241, 0, 4374, 4375, 3, 106, 53, 0, 4375, 4410, 1, 0, 0, 0, 4376, 4377, 5, 191, 0, 0, 4377, 4378, 5, 353, 0, 0, 4378, 4379, 5, 220, 0, 0, 4379, 4380, 5, 389, 0, 0, 4380, 4381, 3, 482, 241, 0, 4381, 4382, 3, 106, 53, 0, 4382, 4410, 1, 0, 0, 0, 4383, 4384, 5, 191, 0, 0, 4384, 4385, 5, 189, 0, 0, 4385, 4386, 3, 482, 241, 0, 4386, 4387, 3, 106, 53, 0, 4387, 4410, 1, 0, 0, 0, 4388, 4389, 5, 191, 0, 0, 4389, 4390, 5, 189, 0, 0, 4390, 4391, 5, 220, 0, 0, 4391, 4392, 5, 389, 0, 0, 4392, 4393, 3, 482, 241, 0, 4393, 4394, 3, 106, 53, 0, 4394, 4410, 1, 0, 0, 0, 4395, 4396, 5, 191, 0, 0, 4396, 4397, 5, 226, 0, 0, 4397, 4398, 5, 109, 0, 0, 4398, 4399, 3, 476, 238, 0, 4399, 4400, 3, 106, 53, 0, 4400, 4410, 1, 0, 0, 0, 4401, 4402, 5, 191, 0, 0, 4402, 4403, 5, 226, 0, 0, 4403, 4404, 5, 109, 0, 0, 4404, 4405, 5, 220, 0, 0, 4405, 4406, 5, 389, 0, 0, 4406, 4407, 3, 476, 238, 0, 4407, 4408, 3, 106, 53, 0, 4408, 4410, 1, 0, 0, 0, 4409, 4331, 1, 0, 0, 0, 4409, 4338, 1, 0, 0, 0, 4409, 4343, 1, 0, 0, 0, 4409, 4350, 1, 0, 0, 0, 4409, 4355, 1, 0, 0, 0, 4409, 4362, 1, 0, 0, 0, 4409, 4371, 1, 0, 0, 0, 4409, 4376, 1, 0, 0, 0, 4409, 4383, 1, 0, 0, 0, 4409, 4388, 1, 0, 0, 0, 4409, 4395, 1, 0, 0, 0, 4409, 4401, 1, 0, 0, 0, 4410, 467, 1, 0, 0, 0, 4411, 4435, 5, 92, 0, 0, 4412, 4435, 5, 321, 0, 0, 4413, 4435, 5, 369, 0, 0, 4414, 4415, 5, 251, 0, 0, 4415, 4435, 5, 369, 0, 0, 4416, 4435, 5, 226, 0, 0, 4417, 4418, 5, 63, 0, 0, 4418, 4435, 5, 92, 0, 0, 4419, 4435, 5, 108, 0, 0, 4420, 4435, 5, 168, 0, 0, 4421, 4435, 5, 335, 0, 0, 4422, 4423, 5, 348, 0, 0, 4423, 4424, 5, 318, 0, 0, 4424, 4435, 5, 276, 0, 0, 4425, 4426, 5, 348, 0, 0, 4426, 4427, 5, 318, 0, 0, 4427, 4435, 5, 185, 0, 0, 4428, 4429, 5, 348, 0, 0, 4429, 4430, 5, 318, 0, 0, 4430, 4435, 5, 346, 0, 0, 4431, 4432, 5, 348, 0, 0, 4432, 4433, 5, 318, 0, 0, 4433, 4435, 5, 163, 0, 0, 4434, 4411, 1, 0, 0, 0, 4434, 4412, 1, 0, 0, 0, 4434, 4413, 1, 0, 0, 0, 4434, 4414, 1, 0, 0, 0, 4434, 4416, 1, 0, 0, 0, 4434, 4417, 1, 0, 0, 0, 4434, 4419, 1, 0, 0, 0, 4434, 4420, 1, 0, 0, 0, 4434, 4421, 1, 0, 0, 0, 4434, 4422, 1, 0, 0, 0, 4434, 4425, 1, 0, 0, 0, 4434, 4428, 1, 0, 0, 0, 4434, 4431, 1, 0, 0, 0, 4435, 469, 1, 0, 0, 0, 4436, 4442, 3, 472, 236, 0, 4437, 4442, 5, 175, 0, 0, 4438, 4442, 5, 311, 0, 0, 4439, 4442, 5, 451, 0, 0, 4440, 4442, 5, 344, 0, 0, 4441, 4436, 1, 0, 0, 0, 4441, 4437, 1, 0, 0, 0, 4441, 4438, 1, 0, 0, 0, 4441, 4439, 1, 0, 0, 0, 4441, 4440, 1, 0, 0, 0, 4442, 471, 1, 0, 0, 0, 4443, 4444, 5, 131, 0, 0, 4444, 4458, 5, 446, 0, 0, 4445, 4446, 5, 198, 0, 0, 4446, 4458, 5, 350, 0, 0, 4447, 4458, 5, 204, 0, 0, 4448, 4449, 5, 63, 0, 0, 4449, 4450, 5, 174, 0, 0, 4450, 4458, 5, 374, 0, 0, 4451, 4452, 3, 282, 141, 0, 4452, 4453, 5, 238, 0, 0, 4453, 4458, 1, 0, 0, 0, 4454, 4458, 5, 452, 0, 0, 4455, 4458, 5, 316, 0, 0, 4456, 4458, 5, 324, 0, 0, 4457, 4443, 1, 0, 0, 0, 4457, 4445, 1, 0, 0, 0, 4457, 4447, 1, 0, 0, 0, 4457, 4448, 1, 0, 0, 0, 4457, 4451, 1, 0, 0, 0, 4457, 4454, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4456, 1, 0, 0, 0, 4458, 473, 1, 0, 0, 0, 4459, 4460, 7, 23, 0, 0, 4460, 475, 1, 0, 0, 0, 4461, 4466, 3, 478, 239, 0, 4462, 4463, 5, 6, 0, 0, 4463, 4465, 3, 478, 239, 0, 4464, 4462, 1, 0, 0, 0, 4465, 4468, 1, 0, 0, 0, 4466, 4464, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 477, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4471, 3, 1254, 627, 0, 4470, 4472, 3, 480, 240, 0, 4471, 4470, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 479, 1, 0, 0, 0, 4473, 4474, 5, 11, 0, 0, 4474, 4476, 3, 1224, 612, 0, 4475, 4473, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4475, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 481, 1, 0, 0, 0, 4479, 4484, 3, 1004, 502, 0, 4480, 4481, 5, 6, 0, 0, 4481, 4483, 3, 1004, 502, 0, 4482, 4480, 1, 0, 0, 0, 4483, 4486, 1, 0, 0, 0, 4484, 4482, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 483, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4487, 4488, 5, 351, 0, 0, 4488, 4489, 3, 892, 446, 0, 4489, 4490, 3, 968, 484, 0, 4490, 4491, 3, 486, 243, 0, 4491, 4492, 3, 106, 53, 0, 4492, 485, 1, 0, 0, 0, 4493, 4494, 5, 167, 0, 0, 4494, 4499, 5, 219, 0, 0, 4495, 4496, 5, 307, 0, 0, 4496, 4499, 5, 219, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4493, 1, 0, 0, 0, 4498, 4495, 1, 0, 0, 0, 4498, 4497, 1, 0, 0, 0, 4499, 487, 1, 0, 0, 0, 4500, 4501, 5, 159, 0, 0, 4501, 4502, 5, 80, 0, 0, 4502, 4503, 3, 468, 234, 0, 4503, 4504, 3, 478, 239, 0, 4504, 4505, 5, 116, 0, 0, 4505, 4506, 3, 490, 245, 0, 4506, 4648, 1, 0, 0, 0, 4507, 4508, 5, 159, 0, 0, 4508, 4509, 5, 80, 0, 0, 4509, 4510, 5, 44, 0, 0, 4510, 4511, 3, 478, 239, 0, 4511, 4512, 5, 116, 0, 0, 4512, 4513, 3, 490, 245, 0, 4513, 4648, 1, 0, 0, 0, 4514, 4515, 5, 159, 0, 0, 4515, 4516, 5, 80, 0, 0, 4516, 4517, 3, 470, 235, 0, 4517, 4518, 3, 1222, 611, 0, 4518, 4519, 5, 116, 0, 0, 4519, 4520, 3, 490, 245, 0, 4520, 4648, 1, 0, 0, 0, 4521, 4522, 5, 159, 0, 0, 4522, 4523, 5, 80, 0, 0, 4523, 4524, 5, 353, 0, 0, 4524, 4525, 3, 1004, 502, 0, 4525, 4526, 5, 116, 0, 0, 4526, 4527, 3, 490, 245, 0, 4527, 4648, 1, 0, 0, 0, 4528, 4529, 5, 159, 0, 0, 4529, 4530, 5, 80, 0, 0, 4530, 4531, 5, 189, 0, 0, 4531, 4532, 3, 1004, 502, 0, 4532, 4533, 5, 116, 0, 0, 4533, 4534, 3, 490, 245, 0, 4534, 4648, 1, 0, 0, 0, 4535, 4536, 5, 159, 0, 0, 4536, 4537, 5, 80, 0, 0, 4537, 4538, 5, 136, 0, 0, 4538, 4539, 3, 590, 295, 0, 4539, 4540, 5, 116, 0, 0, 4540, 4541, 3, 490, 245, 0, 4541, 4648, 1, 0, 0, 0, 4542, 4543, 5, 159, 0, 0, 4543, 4544, 5, 80, 0, 0, 4544, 4545, 5, 211, 0, 0, 4545, 4546, 3, 570, 285, 0, 4546, 4547, 5, 116, 0, 0, 4547, 4548, 3, 490, 245, 0, 4548, 4648, 1, 0, 0, 0, 4549, 4550, 5, 159, 0, 0, 4550, 4551, 5, 80, 0, 0, 4551, 4552, 5, 271, 0, 0, 4552, 4553, 3, 624, 312, 0, 4553, 4554, 5, 116, 0, 0, 4554, 4555, 3, 490, 245, 0, 4555, 4648, 1, 0, 0, 0, 4556, 4557, 5, 159, 0, 0, 4557, 4558, 5, 80, 0, 0, 4558, 4559, 5, 45, 0, 0, 4559, 4560, 3, 1222, 611, 0, 4560, 4561, 5, 80, 0, 0, 4561, 4562, 3, 478, 239, 0, 4562, 4563, 5, 116, 0, 0, 4563, 4564, 3, 490, 245, 0, 4564, 4648, 1, 0, 0, 0, 4565, 4566, 5, 159, 0, 0, 4566, 4567, 5, 80, 0, 0, 4567, 4568, 5, 45, 0, 0, 4568, 4569, 3, 1222, 611, 0, 4569, 4570, 5, 80, 0, 0, 4570, 4571, 5, 189, 0, 0, 4571, 4572, 3, 478, 239, 0, 4572, 4573, 5, 116, 0, 0, 4573, 4574, 3, 490, 245, 0, 4574, 4648, 1, 0, 0, 0, 4575, 4576, 5, 159, 0, 0, 4576, 4577, 5, 80, 0, 0, 4577, 4578, 3, 474, 237, 0, 4578, 4579, 3, 1222, 611, 0, 4579, 4580, 5, 80, 0, 0, 4580, 4581, 3, 478, 239, 0, 4581, 4582, 5, 116, 0, 0, 4582, 4583, 3, 490, 245, 0, 4583, 4648, 1, 0, 0, 0, 4584, 4585, 5, 159, 0, 0, 4585, 4586, 5, 80, 0, 0, 4586, 4587, 5, 289, 0, 0, 4587, 4588, 3, 570, 285, 0, 4588, 4589, 5, 116, 0, 0, 4589, 4590, 3, 490, 245, 0, 4590, 4648, 1, 0, 0, 0, 4591, 4592, 5, 159, 0, 0, 4592, 4593, 5, 80, 0, 0, 4593, 4594, 5, 442, 0, 0, 4594, 4595, 3, 570, 285, 0, 4595, 4596, 5, 116, 0, 0, 4596, 4597, 3, 490, 245, 0, 4597, 4648, 1, 0, 0, 0, 4598, 4599, 5, 159, 0, 0, 4599, 4600, 5, 80, 0, 0, 4600, 4601, 5, 443, 0, 0, 4601, 4602, 5, 62, 0, 0, 4602, 4603, 3, 1004, 502, 0, 4603, 4604, 5, 238, 0, 0, 4604, 4605, 3, 1222, 611, 0, 4605, 4606, 5, 116, 0, 0, 4606, 4607, 3, 490, 245, 0, 4607, 4648, 1, 0, 0, 0, 4608, 4609, 5, 159, 0, 0, 4609, 4610, 5, 80, 0, 0, 4610, 4611, 5, 271, 0, 0, 4611, 4612, 5, 156, 0, 0, 4612, 4613, 3, 478, 239, 0, 4613, 4614, 5, 100, 0, 0, 4614, 4615, 3, 1222, 611, 0, 4615, 4616, 5, 116, 0, 0, 4616, 4617, 3, 490, 245, 0, 4617, 4648, 1, 0, 0, 0, 4618, 4619, 5, 159, 0, 0, 4619, 4620, 5, 80, 0, 0, 4620, 4621, 5, 271, 0, 0, 4621, 4622, 5, 206, 0, 0, 4622, 4623, 3, 478, 239, 0, 4623, 4624, 5, 100, 0, 0, 4624, 4625, 3, 1222, 611, 0, 4625, 4626, 5, 116, 0, 0, 4626, 4627, 3, 490, 245, 0, 4627, 4648, 1, 0, 0, 0, 4628, 4629, 5, 159, 0, 0, 4629, 4630, 5, 80, 0, 0, 4630, 4631, 5, 239, 0, 0, 4631, 4632, 5, 267, 0, 0, 4632, 4633, 3, 270, 135, 0, 4633, 4634, 5, 116, 0, 0, 4634, 4635, 3, 490, 245, 0, 4635, 4648, 1, 0, 0, 0, 4636, 4637, 5, 159, 0, 0, 4637, 4638, 5, 80, 0, 0, 4638, 4639, 5, 41, 0, 0, 4639, 4640, 5, 2, 0, 0, 4640, 4641, 3, 1004, 502, 0, 4641, 4642, 5, 36, 0, 0, 4642, 4643, 3, 1004, 502, 0, 4643, 4644, 5, 3, 0, 0, 4644, 4645, 5, 116, 0, 0, 4645, 4646, 3, 490, 245, 0, 4646, 4648, 1, 0, 0, 0, 4647, 4500, 1, 0, 0, 0, 4647, 4507, 1, 0, 0, 0, 4647, 4514, 1, 0, 0, 0, 4647, 4521, 1, 0, 0, 0, 4647, 4528, 1, 0, 0, 0, 4647, 4535, 1, 0, 0, 0, 4647, 4542, 1, 0, 0, 0, 4647, 4549, 1, 0, 0, 0, 4647, 4556, 1, 0, 0, 0, 4647, 4565, 1, 0, 0, 0, 4647, 4575, 1, 0, 0, 0, 4647, 4584, 1, 0, 0, 0, 4647, 4591, 1, 0, 0, 0, 4647, 4598, 1, 0, 0, 0, 4647, 4608, 1, 0, 0, 0, 4647, 4618, 1, 0, 0, 0, 4647, 4628, 1, 0, 0, 0, 4647, 4636, 1, 0, 0, 0, 4648, 489, 1, 0, 0, 0, 4649, 4652, 3, 1240, 620, 0, 4650, 4652, 5, 78, 0, 0, 4651, 4649, 1, 0, 0, 0, 4651, 4650, 1, 0, 0, 0, 4652, 491, 1, 0, 0, 0, 4653, 4654, 5, 320, 0, 0, 4654, 4655, 5, 237, 0, 0, 4655, 4656, 3, 494, 247, 0, 4656, 4657, 5, 80, 0, 0, 4657, 4658, 3, 468, 234, 0, 4658, 4659, 3, 478, 239, 0, 4659, 4660, 5, 116, 0, 0, 4660, 4661, 3, 496, 248, 0, 4661, 4745, 1, 0, 0, 0, 4662, 4663, 5, 320, 0, 0, 4663, 4664, 5, 237, 0, 0, 4664, 4665, 3, 494, 247, 0, 4665, 4666, 5, 80, 0, 0, 4666, 4667, 5, 44, 0, 0, 4667, 4668, 3, 478, 239, 0, 4668, 4669, 5, 116, 0, 0, 4669, 4670, 3, 496, 248, 0, 4670, 4745, 1, 0, 0, 0, 4671, 4672, 5, 320, 0, 0, 4672, 4673, 5, 237, 0, 0, 4673, 4674, 3, 494, 247, 0, 4674, 4675, 5, 80, 0, 0, 4675, 4676, 3, 470, 235, 0, 4676, 4677, 3, 1222, 611, 0, 4677, 4678, 5, 116, 0, 0, 4678, 4679, 3, 496, 248, 0, 4679, 4745, 1, 0, 0, 0, 4680, 4681, 5, 320, 0, 0, 4681, 4682, 5, 237, 0, 0, 4682, 4683, 3, 494, 247, 0, 4683, 4684, 5, 80, 0, 0, 4684, 4685, 5, 353, 0, 0, 4685, 4686, 3, 1004, 502, 0, 4686, 4687, 5, 116, 0, 0, 4687, 4688, 3, 496, 248, 0, 4688, 4745, 1, 0, 0, 0, 4689, 4690, 5, 320, 0, 0, 4690, 4691, 5, 237, 0, 0, 4691, 4692, 3, 494, 247, 0, 4692, 4693, 5, 80, 0, 0, 4693, 4694, 5, 189, 0, 0, 4694, 4695, 3, 1004, 502, 0, 4695, 4696, 5, 116, 0, 0, 4696, 4697, 3, 496, 248, 0, 4697, 4745, 1, 0, 0, 0, 4698, 4699, 5, 320, 0, 0, 4699, 4700, 5, 237, 0, 0, 4700, 4701, 3, 494, 247, 0, 4701, 4702, 5, 80, 0, 0, 4702, 4703, 5, 136, 0, 0, 4703, 4704, 3, 590, 295, 0, 4704, 4705, 5, 116, 0, 0, 4705, 4706, 3, 496, 248, 0, 4706, 4745, 1, 0, 0, 0, 4707, 4708, 5, 320, 0, 0, 4708, 4709, 5, 237, 0, 0, 4709, 4710, 3, 494, 247, 0, 4710, 4711, 5, 80, 0, 0, 4711, 4712, 5, 211, 0, 0, 4712, 4713, 3, 570, 285, 0, 4713, 4714, 5, 116, 0, 0, 4714, 4715, 3, 496, 248, 0, 4715, 4745, 1, 0, 0, 0, 4716, 4717, 5, 320, 0, 0, 4717, 4718, 5, 237, 0, 0, 4718, 4719, 3, 494, 247, 0, 4719, 4720, 5, 80, 0, 0, 4720, 4721, 5, 239, 0, 0, 4721, 4722, 5, 267, 0, 0, 4722, 4723, 3, 270, 135, 0, 4723, 4724, 5, 116, 0, 0, 4724, 4725, 3, 496, 248, 0, 4725, 4745, 1, 0, 0, 0, 4726, 4727, 5, 320, 0, 0, 4727, 4728, 5, 237, 0, 0, 4728, 4729, 3, 494, 247, 0, 4729, 4730, 5, 80, 0, 0, 4730, 4731, 5, 289, 0, 0, 4731, 4732, 3, 570, 285, 0, 4732, 4733, 5, 116, 0, 0, 4733, 4734, 3, 496, 248, 0, 4734, 4745, 1, 0, 0, 0, 4735, 4736, 5, 320, 0, 0, 4736, 4737, 5, 237, 0, 0, 4737, 4738, 3, 494, 247, 0, 4738, 4739, 5, 80, 0, 0, 4739, 4740, 5, 442, 0, 0, 4740, 4741, 3, 570, 285, 0, 4741, 4742, 5, 116, 0, 0, 4742, 4743, 3, 496, 248, 0, 4743, 4745, 1, 0, 0, 0, 4744, 4653, 1, 0, 0, 0, 4744, 4662, 1, 0, 0, 0, 4744, 4671, 1, 0, 0, 0, 4744, 4680, 1, 0, 0, 0, 4744, 4689, 1, 0, 0, 0, 4744, 4698, 1, 0, 0, 0, 4744, 4707, 1, 0, 0, 0, 4744, 4716, 1, 0, 0, 0, 4744, 4726, 1, 0, 0, 0, 4744, 4735, 1, 0, 0, 0, 4745, 493, 1, 0, 0, 0, 4746, 4747, 5, 62, 0, 0, 4747, 4750, 3, 70, 35, 0, 4748, 4750, 1, 0, 0, 0, 4749, 4746, 1, 0, 0, 0, 4749, 4748, 1, 0, 0, 0, 4750, 495, 1, 0, 0, 0, 4751, 4754, 3, 1240, 620, 0, 4752, 4754, 5, 78, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4752, 1, 0, 0, 0, 4754, 497, 1, 0, 0, 0, 4755, 4756, 5, 61, 0, 0, 4756, 4760, 3, 500, 250, 0, 4757, 4758, 5, 258, 0, 0, 4758, 4760, 3, 500, 250, 0, 4759, 4755, 1, 0, 0, 0, 4759, 4757, 1, 0, 0, 0, 4760, 499, 1, 0, 0, 0, 4761, 4828, 3, 864, 432, 0, 4762, 4763, 3, 502, 251, 0, 4763, 4764, 3, 864, 432, 0, 4764, 4828, 1, 0, 0, 0, 4765, 4766, 5, 261, 0, 0, 4766, 4767, 3, 504, 252, 0, 4767, 4768, 3, 864, 432, 0, 4768, 4828, 1, 0, 0, 0, 4769, 4770, 5, 286, 0, 0, 4770, 4771, 3, 504, 252, 0, 4771, 4772, 3, 864, 432, 0, 4772, 4828, 1, 0, 0, 0, 4773, 4774, 5, 207, 0, 0, 4774, 4775, 3, 504, 252, 0, 4775, 4776, 3, 864, 432, 0, 4776, 4828, 1, 0, 0, 0, 4777, 4778, 5, 240, 0, 0, 4778, 4779, 3, 504, 252, 0, 4779, 4780, 3, 864, 432, 0, 4780, 4828, 1, 0, 0, 0, 4781, 4782, 5, 130, 0, 0, 4782, 4783, 3, 1246, 623, 0, 4783, 4784, 3, 504, 252, 0, 4784, 4785, 3, 864, 432, 0, 4785, 4828, 1, 0, 0, 0, 4786, 4787, 5, 300, 0, 0, 4787, 4788, 3, 1246, 623, 0, 4788, 4789, 3, 504, 252, 0, 4789, 4790, 3, 864, 432, 0, 4790, 4828, 1, 0, 0, 0, 4791, 4792, 3, 1246, 623, 0, 4792, 4793, 3, 504, 252, 0, 4793, 4794, 3, 864, 432, 0, 4794, 4828, 1, 0, 0, 0, 4795, 4796, 5, 30, 0, 0, 4796, 4797, 3, 504, 252, 0, 4797, 4798, 3, 864, 432, 0, 4798, 4828, 1, 0, 0, 0, 4799, 4800, 5, 210, 0, 0, 4800, 4801, 3, 504, 252, 0, 4801, 4802, 3, 864, 432, 0, 4802, 4828, 1, 0, 0, 0, 4803, 4804, 5, 210, 0, 0, 4804, 4805, 3, 1246, 623, 0, 4805, 4806, 3, 504, 252, 0, 4806, 4807, 3, 864, 432, 0, 4807, 4828, 1, 0, 0, 0, 4808, 4809, 5, 210, 0, 0, 4809, 4810, 5, 30, 0, 0, 4810, 4811, 3, 504, 252, 0, 4811, 4812, 3, 864, 432, 0, 4812, 4828, 1, 0, 0, 0, 4813, 4814, 5, 144, 0, 0, 4814, 4815, 3, 504, 252, 0, 4815, 4816, 3, 864, 432, 0, 4816, 4828, 1, 0, 0, 0, 4817, 4818, 5, 144, 0, 0, 4818, 4819, 3, 1246, 623, 0, 4819, 4820, 3, 504, 252, 0, 4820, 4821, 3, 864, 432, 0, 4821, 4828, 1, 0, 0, 0, 4822, 4823, 5, 144, 0, 0, 4823, 4824, 5, 30, 0, 0, 4824, 4825, 3, 504, 252, 0, 4825, 4826, 3, 864, 432, 0, 4826, 4828, 1, 0, 0, 0, 4827, 4761, 1, 0, 0, 0, 4827, 4762, 1, 0, 0, 0, 4827, 4765, 1, 0, 0, 0, 4827, 4769, 1, 0, 0, 0, 4827, 4773, 1, 0, 0, 0, 4827, 4777, 1, 0, 0, 0, 4827, 4781, 1, 0, 0, 0, 4827, 4786, 1, 0, 0, 0, 4827, 4791, 1, 0, 0, 0, 4827, 4795, 1, 0, 0, 0, 4827, 4799, 1, 0, 0, 0, 4827, 4803, 1, 0, 0, 0, 4827, 4808, 1, 0, 0, 0, 4827, 4813, 1, 0, 0, 0, 4827, 4817, 1, 0, 0, 0, 4827, 4822, 1, 0, 0, 0, 4828, 501, 1, 0, 0, 0, 4829, 4830, 7, 24, 0, 0, 4830, 503, 1, 0, 0, 0, 4831, 4834, 3, 502, 251, 0, 4832, 4834, 1, 0, 0, 0, 4833, 4831, 1, 0, 0, 0, 4833, 4832, 1, 0, 0, 0, 4834, 505, 1, 0, 0, 0, 4835, 4836, 5, 65, 0, 0, 4836, 4837, 3, 510, 255, 0, 4837, 4838, 5, 80, 0, 0, 4838, 4839, 3, 516, 258, 0, 4839, 4840, 5, 94, 0, 0, 4840, 4841, 3, 518, 259, 0, 4841, 4842, 3, 522, 261, 0, 4842, 507, 1, 0, 0, 0, 4843, 4844, 5, 310, 0, 0, 4844, 4845, 3, 510, 255, 0, 4845, 4846, 5, 80, 0, 0, 4846, 4847, 3, 516, 258, 0, 4847, 4848, 5, 64, 0, 0, 4848, 4849, 3, 518, 259, 0, 4849, 4850, 3, 106, 53, 0, 4850, 4863, 1, 0, 0, 0, 4851, 4852, 5, 310, 0, 0, 4852, 4853, 5, 65, 0, 0, 4853, 4854, 5, 272, 0, 0, 4854, 4855, 5, 62, 0, 0, 4855, 4856, 3, 510, 255, 0, 4856, 4857, 5, 80, 0, 0, 4857, 4858, 3, 516, 258, 0, 4858, 4859, 5, 64, 0, 0, 4859, 4860, 3, 518, 259, 0, 4860, 4861, 3, 106, 53, 0, 4861, 4863, 1, 0, 0, 0, 4862, 4843, 1, 0, 0, 0, 4862, 4851, 1, 0, 0, 0, 4863, 509, 1, 0, 0, 0, 4864, 4880, 3, 512, 256, 0, 4865, 4880, 5, 30, 0, 0, 4866, 4867, 5, 30, 0, 0, 4867, 4880, 5, 287, 0, 0, 4868, 4869, 5, 30, 0, 0, 4869, 4870, 5, 2, 0, 0, 4870, 4871, 3, 200, 100, 0, 4871, 4872, 5, 3, 0, 0, 4872, 4880, 1, 0, 0, 0, 4873, 4874, 5, 30, 0, 0, 4874, 4875, 5, 287, 0, 0, 4875, 4876, 5, 2, 0, 0, 4876, 4877, 3, 200, 100, 0, 4877, 4878, 5, 3, 0, 0, 4878, 4880, 1, 0, 0, 0, 4879, 4864, 1, 0, 0, 0, 4879, 4865, 1, 0, 0, 0, 4879, 4866, 1, 0, 0, 0, 4879, 4868, 1, 0, 0, 0, 4879, 4873, 1, 0, 0, 0, 4880, 511, 1, 0, 0, 0, 4881, 4886, 3, 514, 257, 0, 4882, 4883, 5, 6, 0, 0, 4883, 4885, 3, 514, 257, 0, 4884, 4882, 1, 0, 0, 0, 4885, 4888, 1, 0, 0, 0, 4886, 4884, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 513, 1, 0, 0, 0, 4888, 4886, 1, 0, 0, 0, 4889, 4890, 5, 88, 0, 0, 4890, 4899, 3, 198, 99, 0, 4891, 4892, 5, 86, 0, 0, 4892, 4899, 3, 198, 99, 0, 4893, 4894, 5, 46, 0, 0, 4894, 4899, 3, 198, 99, 0, 4895, 4896, 3, 1254, 627, 0, 4896, 4897, 3, 198, 99, 0, 4897, 4899, 1, 0, 0, 0, 4898, 4889, 1, 0, 0, 0, 4898, 4891, 1, 0, 0, 0, 4898, 4893, 1, 0, 0, 0, 4898, 4895, 1, 0, 0, 0, 4899, 515, 1, 0, 0, 0, 4900, 4959, 3, 1216, 608, 0, 4901, 4902, 5, 92, 0, 0, 4902, 4959, 3, 1216, 608, 0, 4903, 4904, 5, 321, 0, 0, 4904, 4959, 3, 1216, 608, 0, 4905, 4906, 5, 63, 0, 0, 4906, 4907, 5, 174, 0, 0, 4907, 4908, 5, 374, 0, 0, 4908, 4959, 3, 1220, 610, 0, 4909, 4910, 5, 63, 0, 0, 4910, 4911, 5, 324, 0, 0, 4911, 4959, 3, 1220, 610, 0, 4912, 4913, 5, 211, 0, 0, 4913, 4959, 3, 568, 284, 0, 4914, 4915, 5, 289, 0, 0, 4915, 4959, 3, 568, 284, 0, 4916, 4917, 5, 442, 0, 0, 4917, 4959, 3, 568, 284, 0, 4918, 4919, 5, 175, 0, 0, 4919, 4959, 3, 1220, 610, 0, 4920, 4921, 5, 189, 0, 0, 4921, 4959, 3, 476, 238, 0, 4922, 4923, 5, 238, 0, 0, 4923, 4959, 3, 1220, 610, 0, 4924, 4925, 5, 239, 0, 0, 4925, 4926, 5, 267, 0, 0, 4926, 4959, 3, 272, 136, 0, 4927, 4928, 5, 316, 0, 0, 4928, 4959, 3, 1220, 610, 0, 4929, 4930, 5, 344, 0, 0, 4930, 4959, 3, 1220, 610, 0, 4931, 4932, 5, 353, 0, 0, 4932, 4959, 3, 476, 238, 0, 4933, 4934, 5, 30, 0, 0, 4934, 4935, 5, 343, 0, 0, 4935, 4936, 5, 68, 0, 0, 4936, 4937, 5, 316, 0, 0, 4937, 4959, 3, 1220, 610, 0, 4938, 4939, 5, 30, 0, 0, 4939, 4940, 5, 322, 0, 0, 4940, 4941, 5, 68, 0, 0, 4941, 4942, 5, 316, 0, 0, 4942, 4959, 3, 1220, 610, 0, 4943, 4944, 5, 30, 0, 0, 4944, 4945, 5, 212, 0, 0, 4945, 4946, 5, 68, 0, 0, 4946, 4947, 5, 316, 0, 0, 4947, 4959, 3, 1220, 610, 0, 4948, 4949, 5, 30, 0, 0, 4949, 4950, 5, 457, 0, 0, 4950, 4951, 5, 68, 0, 0, 4951, 4952, 5, 316, 0, 0, 4952, 4959, 3, 1220, 610, 0, 4953, 4954, 5, 30, 0, 0, 4954, 4955, 5, 455, 0, 0, 4955, 4956, 5, 68, 0, 0, 4956, 4957, 5, 316, 0, 0, 4957, 4959, 3, 1220, 610, 0, 4958, 4900, 1, 0, 0, 0, 4958, 4901, 1, 0, 0, 0, 4958, 4903, 1, 0, 0, 0, 4958, 4905, 1, 0, 0, 0, 4958, 4909, 1, 0, 0, 0, 4958, 4912, 1, 0, 0, 0, 4958, 4914, 1, 0, 0, 0, 4958, 4916, 1, 0, 0, 0, 4958, 4918, 1, 0, 0, 0, 4958, 4920, 1, 0, 0, 0, 4958, 4922, 1, 0, 0, 0, 4958, 4924, 1, 0, 0, 0, 4958, 4927, 1, 0, 0, 0, 4958, 4929, 1, 0, 0, 0, 4958, 4931, 1, 0, 0, 0, 4958, 4933, 1, 0, 0, 0, 4958, 4938, 1, 0, 0, 0, 4958, 4943, 1, 0, 0, 0, 4958, 4948, 1, 0, 0, 0, 4958, 4953, 1, 0, 0, 0, 4959, 517, 1, 0, 0, 0, 4960, 4965, 3, 520, 260, 0, 4961, 4962, 5, 6, 0, 0, 4962, 4964, 3, 520, 260, 0, 4963, 4961, 1, 0, 0, 0, 4964, 4967, 1, 0, 0, 0, 4965, 4963, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 519, 1, 0, 0, 0, 4967, 4965, 1, 0, 0, 0, 4968, 4972, 3, 1250, 625, 0, 4969, 4970, 5, 66, 0, 0, 4970, 4972, 3, 1250, 625, 0, 4971, 4968, 1, 0, 0, 0, 4971, 4969, 1, 0, 0, 0, 4972, 521, 1, 0, 0, 0, 4973, 4974, 5, 105, 0, 0, 4974, 4975, 5, 65, 0, 0, 4975, 4978, 5, 272, 0, 0, 4976, 4978, 1, 0, 0, 0, 4977, 4973, 1, 0, 0, 0, 4977, 4976, 1, 0, 0, 0, 4978, 523, 1, 0, 0, 0, 4979, 4980, 5, 65, 0, 0, 4980, 4981, 3, 512, 256, 0, 4981, 4982, 5, 94, 0, 0, 4982, 4983, 3, 1252, 626, 0, 4983, 4984, 3, 528, 264, 0, 4984, 4985, 3, 530, 265, 0, 4985, 525, 1, 0, 0, 0, 4986, 4987, 5, 310, 0, 0, 4987, 4988, 3, 512, 256, 0, 4988, 4989, 5, 64, 0, 0, 4989, 4990, 3, 1252, 626, 0, 4990, 4991, 3, 530, 265, 0, 4991, 4992, 3, 106, 53, 0, 4992, 5004, 1, 0, 0, 0, 4993, 4994, 5, 310, 0, 0, 4994, 4995, 5, 134, 0, 0, 4995, 4996, 5, 272, 0, 0, 4996, 4997, 5, 62, 0, 0, 4997, 4998, 3, 512, 256, 0, 4998, 4999, 5, 64, 0, 0, 4999, 5000, 3, 1252, 626, 0, 5000, 5001, 3, 530, 265, 0, 5001, 5002, 3, 106, 53, 0, 5002, 5004, 1, 0, 0, 0, 5003, 4986, 1, 0, 0, 0, 5003, 4993, 1, 0, 0, 0, 5004, 527, 1, 0, 0, 0, 5005, 5006, 5, 105, 0, 0, 5006, 5007, 5, 134, 0, 0, 5007, 5010, 5, 272, 0, 0, 5008, 5010, 1, 0, 0, 0, 5009, 5005, 1, 0, 0, 0, 5009, 5008, 1, 0, 0, 0, 5010, 529, 1, 0, 0, 0, 5011, 5012, 5, 214, 0, 0, 5012, 5013, 5, 147, 0, 0, 5013, 5016, 3, 1250, 625, 0, 5014, 5016, 1, 0, 0, 0, 5015, 5011, 1, 0, 0, 0, 5015, 5014, 1, 0, 0, 0, 5016, 531, 1, 0, 0, 0, 5017, 5018, 5, 138, 0, 0, 5018, 5019, 5, 53, 0, 0, 5019, 5023, 5, 287, 0, 0, 5020, 5022, 3, 534, 267, 0, 5021, 5020, 1, 0, 0, 0, 5022, 5025, 1, 0, 0, 0, 5023, 5021, 1, 0, 0, 0, 5023, 5024, 1, 0, 0, 0, 5024, 5026, 1, 0, 0, 0, 5025, 5023, 1, 0, 0, 0, 5026, 5027, 3, 536, 268, 0, 5027, 533, 1, 0, 0, 0, 5028, 5029, 5, 68, 0, 0, 5029, 5030, 5, 316, 0, 0, 5030, 5038, 3, 1220, 610, 0, 5031, 5032, 5, 62, 0, 0, 5032, 5033, 5, 311, 0, 0, 5033, 5038, 3, 1252, 626, 0, 5034, 5035, 5, 62, 0, 0, 5035, 5036, 5, 99, 0, 0, 5036, 5038, 3, 1252, 626, 0, 5037, 5028, 1, 0, 0, 0, 5037, 5031, 1, 0, 0, 0, 5037, 5034, 1, 0, 0, 0, 5038, 535, 1, 0, 0, 0, 5039, 5040, 5, 65, 0, 0, 5040, 5041, 3, 510, 255, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 3, 538, 269, 0, 5043, 5044, 5, 94, 0, 0, 5044, 5045, 3, 518, 259, 0, 5045, 5046, 3, 522, 261, 0, 5046, 5067, 1, 0, 0, 0, 5047, 5048, 5, 310, 0, 0, 5048, 5049, 3, 510, 255, 0, 5049, 5050, 5, 80, 0, 0, 5050, 5051, 3, 538, 269, 0, 5051, 5052, 5, 64, 0, 0, 5052, 5053, 3, 518, 259, 0, 5053, 5054, 3, 106, 53, 0, 5054, 5067, 1, 0, 0, 0, 5055, 5056, 5, 310, 0, 0, 5056, 5057, 5, 65, 0, 0, 5057, 5058, 5, 272, 0, 0, 5058, 5059, 5, 62, 0, 0, 5059, 5060, 3, 510, 255, 0, 5060, 5061, 5, 80, 0, 0, 5061, 5062, 3, 538, 269, 0, 5062, 5063, 5, 64, 0, 0, 5063, 5064, 3, 518, 259, 0, 5064, 5065, 3, 106, 53, 0, 5065, 5067, 1, 0, 0, 0, 5066, 5039, 1, 0, 0, 0, 5066, 5047, 1, 0, 0, 0, 5066, 5055, 1, 0, 0, 0, 5067, 537, 1, 0, 0, 0, 5068, 5069, 7, 25, 0, 0, 5069, 539, 1, 0, 0, 0, 5070, 5072, 5, 46, 0, 0, 5071, 5073, 5, 98, 0, 0, 5072, 5071, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 5, 226, 0, 0, 5075, 5077, 3, 542, 271, 0, 5076, 5078, 3, 1222, 611, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5080, 5, 80, 0, 0, 5080, 5081, 3, 966, 483, 0, 5081, 5082, 3, 544, 272, 0, 5082, 5083, 5, 2, 0, 0, 5083, 5084, 3, 546, 273, 0, 5084, 5085, 5, 3, 0, 0, 5085, 5086, 3, 552, 276, 0, 5086, 5087, 3, 116, 58, 0, 5087, 5088, 3, 238, 119, 0, 5088, 5089, 3, 982, 491, 0, 5089, 5112, 1, 0, 0, 0, 5090, 5092, 5, 46, 0, 0, 5091, 5093, 5, 98, 0, 0, 5092, 5091, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5095, 5, 226, 0, 0, 5095, 5096, 3, 542, 271, 0, 5096, 5097, 5, 220, 0, 0, 5097, 5098, 5, 77, 0, 0, 5098, 5099, 5, 389, 0, 0, 5099, 5100, 3, 1222, 611, 0, 5100, 5101, 5, 80, 0, 0, 5101, 5102, 3, 966, 483, 0, 5102, 5103, 3, 544, 272, 0, 5103, 5104, 5, 2, 0, 0, 5104, 5105, 3, 546, 273, 0, 5105, 5106, 5, 3, 0, 0, 5106, 5107, 3, 552, 276, 0, 5107, 5108, 3, 116, 58, 0, 5108, 5109, 3, 238, 119, 0, 5109, 5110, 3, 982, 491, 0, 5110, 5112, 1, 0, 0, 0, 5111, 5070, 1, 0, 0, 0, 5111, 5090, 1, 0, 0, 0, 5112, 541, 1, 0, 0, 0, 5113, 5116, 5, 109, 0, 0, 5114, 5116, 1, 0, 0, 0, 5115, 5113, 1, 0, 0, 0, 5115, 5114, 1, 0, 0, 0, 5116, 543, 1, 0, 0, 0, 5117, 5118, 5, 100, 0, 0, 5118, 5121, 3, 1222, 611, 0, 5119, 5121, 1, 0, 0, 0, 5120, 5117, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 545, 1, 0, 0, 0, 5122, 5127, 3, 550, 275, 0, 5123, 5124, 5, 6, 0, 0, 5124, 5126, 3, 550, 275, 0, 5125, 5123, 1, 0, 0, 0, 5126, 5129, 1, 0, 0, 0, 5127, 5125, 1, 0, 0, 0, 5127, 5128, 1, 0, 0, 0, 5128, 547, 1, 0, 0, 0, 5129, 5127, 1, 0, 0, 0, 5130, 5131, 3, 554, 277, 0, 5131, 5132, 3, 556, 278, 0, 5132, 5133, 3, 558, 279, 0, 5133, 5134, 3, 560, 280, 0, 5134, 5142, 1, 0, 0, 0, 5135, 5136, 3, 554, 277, 0, 5136, 5137, 3, 478, 239, 0, 5137, 5138, 3, 114, 57, 0, 5138, 5139, 3, 558, 279, 0, 5139, 5140, 3, 560, 280, 0, 5140, 5142, 1, 0, 0, 0, 5141, 5130, 1, 0, 0, 0, 5141, 5135, 1, 0, 0, 0, 5142, 549, 1, 0, 0, 0, 5143, 5144, 3, 1254, 627, 0, 5144, 5145, 3, 548, 274, 0, 5145, 5155, 1, 0, 0, 0, 5146, 5147, 3, 1098, 549, 0, 5147, 5148, 3, 548, 274, 0, 5148, 5155, 1, 0, 0, 0, 5149, 5150, 5, 2, 0, 0, 5150, 5151, 3, 1046, 523, 0, 5151, 5152, 5, 3, 0, 0, 5152, 5153, 3, 548, 274, 0, 5153, 5155, 1, 0, 0, 0, 5154, 5143, 1, 0, 0, 0, 5154, 5146, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5155, 551, 1, 0, 0, 0, 5156, 5157, 5, 441, 0, 0, 5157, 5158, 5, 2, 0, 0, 5158, 5163, 3, 550, 275, 0, 5159, 5160, 5, 6, 0, 0, 5160, 5162, 3, 550, 275, 0, 5161, 5159, 1, 0, 0, 0, 5162, 5165, 1, 0, 0, 0, 5163, 5161, 1, 0, 0, 0, 5163, 5164, 1, 0, 0, 0, 5164, 5166, 1, 0, 0, 0, 5165, 5163, 1, 0, 0, 0, 5166, 5167, 5, 3, 0, 0, 5167, 5170, 1, 0, 0, 0, 5168, 5170, 1, 0, 0, 0, 5169, 5156, 1, 0, 0, 0, 5169, 5168, 1, 0, 0, 0, 5170, 553, 1, 0, 0, 0, 5171, 5172, 5, 43, 0, 0, 5172, 5175, 3, 478, 239, 0, 5173, 5175, 1, 0, 0, 0, 5174, 5171, 1, 0, 0, 0, 5174, 5173, 1, 0, 0, 0, 5175, 555, 1, 0, 0, 0, 5176, 5179, 3, 478, 239, 0, 5177, 5179, 1, 0, 0, 0, 5178, 5176, 1, 0, 0, 0, 5178, 5177, 1, 0, 0, 0, 5179, 557, 1, 0, 0, 0, 5180, 5184, 5, 37, 0, 0, 5181, 5184, 5, 55, 0, 0, 5182, 5184, 1, 0, 0, 0, 5183, 5180, 1, 0, 0, 0, 5183, 5181, 1, 0, 0, 0, 5183, 5182, 1, 0, 0, 0, 5184, 559, 1, 0, 0, 0, 5185, 5186, 5, 266, 0, 0, 5186, 5191, 5, 207, 0, 0, 5187, 5188, 5, 266, 0, 0, 5188, 5191, 5, 240, 0, 0, 5189, 5191, 1, 0, 0, 0, 5190, 5185, 1, 0, 0, 0, 5190, 5187, 1, 0, 0, 0, 5190, 5189, 1, 0, 0, 0, 5191, 561, 1, 0, 0, 0, 5192, 5193, 5, 46, 0, 0, 5193, 5194, 3, 564, 282, 0, 5194, 5195, 7, 22, 0, 0, 5195, 5196, 3, 1228, 614, 0, 5196, 5198, 5, 2, 0, 0, 5197, 5199, 3, 572, 286, 0, 5198, 5197, 1, 0, 0, 0, 5198, 5199, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5210, 5, 3, 0, 0, 5201, 5208, 5, 309, 0, 0, 5202, 5209, 3, 582, 291, 0, 5203, 5204, 5, 92, 0, 0, 5204, 5205, 5, 2, 0, 0, 5205, 5206, 3, 608, 304, 0, 5206, 5207, 5, 3, 0, 0, 5207, 5209, 1, 0, 0, 0, 5208, 5202, 1, 0, 0, 0, 5208, 5203, 1, 0, 0, 0, 5209, 5211, 1, 0, 0, 0, 5210, 5201, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5213, 3, 594, 297, 0, 5213, 563, 1, 0, 0, 0, 5214, 5215, 5, 82, 0, 0, 5215, 5218, 5, 304, 0, 0, 5216, 5218, 1, 0, 0, 0, 5217, 5214, 1, 0, 0, 0, 5217, 5216, 1, 0, 0, 0, 5218, 565, 1, 0, 0, 0, 5219, 5224, 3, 576, 288, 0, 5220, 5221, 5, 6, 0, 0, 5221, 5223, 3, 576, 288, 0, 5222, 5220, 1, 0, 0, 0, 5223, 5226, 1, 0, 0, 0, 5224, 5222, 1, 0, 0, 0, 5224, 5225, 1, 0, 0, 0, 5225, 567, 1, 0, 0, 0, 5226, 5224, 1, 0, 0, 0, 5227, 5232, 3, 570, 285, 0, 5228, 5229, 5, 6, 0, 0, 5229, 5231, 3, 570, 285, 0, 5230, 5228, 1, 0, 0, 0, 5231, 5234, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 569, 1, 0, 0, 0, 5234, 5232, 1, 0, 0, 0, 5235, 5236, 3, 1228, 614, 0, 5236, 5238, 5, 2, 0, 0, 5237, 5239, 3, 566, 283, 0, 5238, 5237, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5241, 5, 3, 0, 0, 5241, 5248, 1, 0, 0, 0, 5242, 5248, 3, 1272, 636, 0, 5243, 5245, 3, 1254, 627, 0, 5244, 5246, 3, 1206, 603, 0, 5245, 5244, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5248, 1, 0, 0, 0, 5247, 5235, 1, 0, 0, 0, 5247, 5242, 1, 0, 0, 0, 5247, 5243, 1, 0, 0, 0, 5248, 571, 1, 0, 0, 0, 5249, 5254, 3, 574, 287, 0, 5250, 5251, 5, 6, 0, 0, 5251, 5253, 3, 574, 287, 0, 5252, 5250, 1, 0, 0, 0, 5253, 5256, 1, 0, 0, 0, 5254, 5252, 1, 0, 0, 0, 5254, 5255, 1, 0, 0, 0, 5255, 573, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5257, 5260, 3, 576, 288, 0, 5258, 5259, 7, 26, 0, 0, 5259, 5261, 3, 1046, 523, 0, 5260, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 575, 1, 0, 0, 0, 5262, 5264, 3, 578, 289, 0, 5263, 5265, 3, 580, 290, 0, 5264, 5263, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5266, 1, 0, 0, 0, 5266, 5267, 3, 584, 292, 0, 5267, 5276, 1, 0, 0, 0, 5268, 5270, 3, 580, 290, 0, 5269, 5271, 3, 578, 289, 0, 5270, 5269, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, 5272, 1, 0, 0, 0, 5272, 5273, 3, 584, 292, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5276, 3, 584, 292, 0, 5275, 5262, 1, 0, 0, 0, 5275, 5268, 1, 0, 0, 0, 5275, 5274, 1, 0, 0, 0, 5276, 577, 1, 0, 0, 0, 5277, 5279, 5, 68, 0, 0, 5278, 5280, 5, 453, 0, 0, 5279, 5278, 1, 0, 0, 0, 5279, 5280, 1, 0, 0, 0, 5280, 5285, 1, 0, 0, 0, 5281, 5285, 5, 453, 0, 0, 5282, 5285, 5, 393, 0, 0, 5283, 5285, 5, 101, 0, 0, 5284, 5277, 1, 0, 0, 0, 5284, 5281, 1, 0, 0, 0, 5284, 5282, 1, 0, 0, 0, 5284, 5283, 1, 0, 0, 0, 5285, 579, 1, 0, 0, 0, 5286, 5291, 3, 1258, 629, 0, 5287, 5291, 3, 1276, 638, 0, 5288, 5291, 5, 119, 0, 0, 5289, 5291, 5, 126, 0, 0, 5290, 5286, 1, 0, 0, 0, 5290, 5287, 1, 0, 0, 0, 5290, 5288, 1, 0, 0, 0, 5290, 5289, 1, 0, 0, 0, 5291, 581, 1, 0, 0, 0, 5292, 5293, 3, 584, 292, 0, 5293, 583, 1, 0, 0, 0, 5294, 5309, 3, 1004, 502, 0, 5295, 5297, 5, 408, 0, 0, 5296, 5295, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5302, 1, 0, 0, 0, 5298, 5303, 3, 1276, 638, 0, 5299, 5303, 3, 1258, 629, 0, 5300, 5303, 5, 119, 0, 0, 5301, 5303, 5, 126, 0, 0, 5302, 5298, 1, 0, 0, 0, 5302, 5299, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5302, 5301, 1, 0, 0, 0, 5303, 5304, 1, 0, 0, 0, 5304, 5305, 3, 480, 240, 0, 5305, 5306, 5, 27, 0, 0, 5306, 5307, 5, 353, 0, 0, 5307, 5309, 1, 0, 0, 0, 5308, 5294, 1, 0, 0, 0, 5308, 5296, 1, 0, 0, 0, 5309, 585, 1, 0, 0, 0, 5310, 5321, 5, 2, 0, 0, 5311, 5322, 5, 9, 0, 0, 5312, 5322, 3, 588, 294, 0, 5313, 5314, 5, 83, 0, 0, 5314, 5315, 5, 147, 0, 0, 5315, 5322, 3, 588, 294, 0, 5316, 5317, 3, 588, 294, 0, 5317, 5318, 5, 83, 0, 0, 5318, 5319, 5, 147, 0, 0, 5319, 5320, 3, 588, 294, 0, 5320, 5322, 1, 0, 0, 0, 5321, 5311, 1, 0, 0, 0, 5321, 5312, 1, 0, 0, 0, 5321, 5313, 1, 0, 0, 0, 5321, 5316, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5324, 5, 3, 0, 0, 5324, 587, 1, 0, 0, 0, 5325, 5330, 3, 576, 288, 0, 5326, 5327, 5, 6, 0, 0, 5327, 5329, 3, 576, 288, 0, 5328, 5326, 1, 0, 0, 0, 5329, 5332, 1, 0, 0, 0, 5330, 5328, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 589, 1, 0, 0, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5334, 3, 1228, 614, 0, 5334, 5335, 3, 586, 293, 0, 5335, 591, 1, 0, 0, 0, 5336, 5341, 3, 590, 295, 0, 5337, 5338, 5, 6, 0, 0, 5338, 5340, 3, 590, 295, 0, 5339, 5337, 1, 0, 0, 0, 5340, 5343, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 593, 1, 0, 0, 0, 5343, 5341, 1, 0, 0, 0, 5344, 5346, 3, 598, 299, 0, 5345, 5344, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5345, 1, 0, 0, 0, 5347, 5348, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5350, 6, 297, -1, 0, 5350, 595, 1, 0, 0, 0, 5351, 5352, 5, 149, 0, 0, 5352, 5353, 5, 80, 0, 0, 5353, 5354, 5, 78, 0, 0, 5354, 5387, 5, 458, 0, 0, 5355, 5356, 5, 309, 0, 0, 5356, 5357, 5, 78, 0, 0, 5357, 5358, 5, 80, 0, 0, 5358, 5359, 5, 78, 0, 0, 5359, 5387, 5, 458, 0, 0, 5360, 5387, 5, 339, 0, 0, 5361, 5387, 5, 222, 0, 0, 5362, 5387, 5, 331, 0, 0, 5363, 5387, 5, 370, 0, 0, 5364, 5365, 5, 205, 0, 0, 5365, 5366, 5, 320, 0, 0, 5366, 5387, 5, 181, 0, 0, 5367, 5368, 5, 205, 0, 0, 5368, 5369, 5, 320, 0, 0, 5369, 5387, 5, 234, 0, 0, 5370, 5371, 5, 320, 0, 0, 5371, 5387, 5, 181, 0, 0, 5372, 5373, 5, 320, 0, 0, 5373, 5387, 5, 234, 0, 0, 5374, 5387, 5, 241, 0, 0, 5375, 5376, 5, 77, 0, 0, 5376, 5387, 5, 241, 0, 0, 5377, 5378, 5, 170, 0, 0, 5378, 5387, 3, 270, 135, 0, 5379, 5380, 5, 313, 0, 0, 5380, 5387, 3, 270, 135, 0, 5381, 5382, 5, 459, 0, 0, 5382, 5387, 3, 478, 239, 0, 5383, 5387, 3, 80, 40, 0, 5384, 5385, 5, 460, 0, 0, 5385, 5387, 3, 1254, 627, 0, 5386, 5351, 1, 0, 0, 0, 5386, 5355, 1, 0, 0, 0, 5386, 5360, 1, 0, 0, 0, 5386, 5361, 1, 0, 0, 0, 5386, 5362, 1, 0, 0, 0, 5386, 5363, 1, 0, 0, 0, 5386, 5364, 1, 0, 0, 0, 5386, 5367, 1, 0, 0, 0, 5386, 5370, 1, 0, 0, 0, 5386, 5372, 1, 0, 0, 0, 5386, 5374, 1, 0, 0, 0, 5386, 5375, 1, 0, 0, 0, 5386, 5377, 1, 0, 0, 0, 5386, 5379, 1, 0, 0, 0, 5386, 5381, 1, 0, 0, 0, 5386, 5383, 1, 0, 0, 0, 5386, 5384, 1, 0, 0, 0, 5387, 597, 1, 0, 0, 0, 5388, 5389, 5, 36, 0, 0, 5389, 5397, 3, 600, 300, 0, 5390, 5391, 5, 238, 0, 0, 5391, 5397, 3, 70, 35, 0, 5392, 5393, 5, 443, 0, 0, 5393, 5397, 3, 602, 301, 0, 5394, 5397, 5, 104, 0, 0, 5395, 5397, 3, 596, 298, 0, 5396, 5388, 1, 0, 0, 0, 5396, 5390, 1, 0, 0, 0, 5396, 5392, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5396, 5395, 1, 0, 0, 0, 5397, 599, 1, 0, 0, 0, 5398, 5404, 3, 1240, 620, 0, 5399, 5400, 3, 1240, 620, 0, 5400, 5401, 5, 6, 0, 0, 5401, 5402, 3, 1240, 620, 0, 5402, 5404, 1, 0, 0, 0, 5403, 5398, 1, 0, 0, 0, 5403, 5399, 1, 0, 0, 0, 5404, 601, 1, 0, 0, 0, 5405, 5406, 5, 62, 0, 0, 5406, 5407, 5, 353, 0, 0, 5407, 5414, 3, 1004, 502, 0, 5408, 5409, 5, 6, 0, 0, 5409, 5410, 5, 62, 0, 0, 5410, 5411, 5, 353, 0, 0, 5411, 5413, 3, 1004, 502, 0, 5412, 5408, 1, 0, 0, 0, 5413, 5416, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 603, 1, 0, 0, 0, 5416, 5414, 1, 0, 0, 0, 5417, 5418, 5, 105, 0, 0, 5418, 5421, 3, 424, 212, 0, 5419, 5421, 1, 0, 0, 0, 5420, 5417, 1, 0, 0, 0, 5420, 5419, 1, 0, 0, 0, 5421, 605, 1, 0, 0, 0, 5422, 5423, 3, 580, 290, 0, 5423, 5424, 3, 584, 292, 0, 5424, 607, 1, 0, 0, 0, 5425, 5430, 3, 606, 303, 0, 5426, 5427, 5, 6, 0, 0, 5427, 5429, 3, 606, 303, 0, 5428, 5426, 1, 0, 0, 0, 5429, 5432, 1, 0, 0, 0, 5430, 5428, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 609, 1, 0, 0, 0, 5432, 5430, 1, 0, 0, 0, 5433, 5434, 5, 138, 0, 0, 5434, 5435, 7, 27, 0, 0, 5435, 5437, 3, 570, 285, 0, 5436, 5438, 3, 596, 298, 0, 5437, 5436, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5437, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5442, 1, 0, 0, 0, 5441, 5443, 5, 308, 0, 0, 5442, 5441, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 611, 1, 0, 0, 0, 5444, 5445, 5, 191, 0, 0, 5445, 5446, 5, 211, 0, 0, 5446, 5447, 3, 568, 284, 0, 5447, 5448, 3, 106, 53, 0, 5448, 5481, 1, 0, 0, 0, 5449, 5450, 5, 191, 0, 0, 5450, 5451, 5, 211, 0, 0, 5451, 5452, 5, 220, 0, 0, 5452, 5453, 5, 389, 0, 0, 5453, 5454, 3, 568, 284, 0, 5454, 5455, 3, 106, 53, 0, 5455, 5481, 1, 0, 0, 0, 5456, 5457, 5, 191, 0, 0, 5457, 5458, 5, 289, 0, 0, 5458, 5459, 3, 568, 284, 0, 5459, 5460, 3, 106, 53, 0, 5460, 5481, 1, 0, 0, 0, 5461, 5462, 5, 191, 0, 0, 5462, 5463, 5, 289, 0, 0, 5463, 5464, 5, 220, 0, 0, 5464, 5465, 5, 389, 0, 0, 5465, 5466, 3, 568, 284, 0, 5466, 5467, 3, 106, 53, 0, 5467, 5481, 1, 0, 0, 0, 5468, 5469, 5, 191, 0, 0, 5469, 5470, 5, 442, 0, 0, 5470, 5471, 3, 568, 284, 0, 5471, 5472, 3, 106, 53, 0, 5472, 5481, 1, 0, 0, 0, 5473, 5474, 5, 191, 0, 0, 5474, 5475, 5, 442, 0, 0, 5475, 5476, 5, 220, 0, 0, 5476, 5477, 5, 389, 0, 0, 5477, 5478, 3, 568, 284, 0, 5478, 5479, 3, 106, 53, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5444, 1, 0, 0, 0, 5480, 5449, 1, 0, 0, 0, 5480, 5456, 1, 0, 0, 0, 5480, 5461, 1, 0, 0, 0, 5480, 5468, 1, 0, 0, 0, 5480, 5473, 1, 0, 0, 0, 5481, 613, 1, 0, 0, 0, 5482, 5483, 5, 191, 0, 0, 5483, 5484, 5, 136, 0, 0, 5484, 5485, 3, 592, 296, 0, 5485, 5486, 3, 106, 53, 0, 5486, 5495, 1, 0, 0, 0, 5487, 5488, 5, 191, 0, 0, 5488, 5489, 5, 136, 0, 0, 5489, 5490, 5, 220, 0, 0, 5490, 5491, 5, 389, 0, 0, 5491, 5492, 3, 592, 296, 0, 5492, 5493, 3, 106, 53, 0, 5493, 5495, 1, 0, 0, 0, 5494, 5482, 1, 0, 0, 0, 5494, 5487, 1, 0, 0, 0, 5495, 615, 1, 0, 0, 0, 5496, 5497, 5, 191, 0, 0, 5497, 5498, 5, 271, 0, 0, 5498, 5499, 3, 622, 311, 0, 5499, 5500, 3, 106, 53, 0, 5500, 5509, 1, 0, 0, 0, 5501, 5502, 5, 191, 0, 0, 5502, 5503, 5, 271, 0, 0, 5503, 5504, 5, 220, 0, 0, 5504, 5505, 5, 389, 0, 0, 5505, 5506, 3, 622, 311, 0, 5506, 5507, 3, 106, 53, 0, 5507, 5509, 1, 0, 0, 0, 5508, 5496, 1, 0, 0, 0, 5508, 5501, 1, 0, 0, 0, 5509, 617, 1, 0, 0, 0, 5510, 5511, 5, 2, 0, 0, 5511, 5512, 3, 1004, 502, 0, 5512, 5513, 5, 3, 0, 0, 5513, 5533, 1, 0, 0, 0, 5514, 5515, 5, 2, 0, 0, 5515, 5516, 3, 1004, 502, 0, 5516, 5517, 5, 6, 0, 0, 5517, 5518, 3, 1004, 502, 0, 5518, 5519, 5, 3, 0, 0, 5519, 5533, 1, 0, 0, 0, 5520, 5521, 5, 2, 0, 0, 5521, 5522, 5, 400, 0, 0, 5522, 5523, 5, 6, 0, 0, 5523, 5524, 3, 1004, 502, 0, 5524, 5525, 5, 3, 0, 0, 5525, 5533, 1, 0, 0, 0, 5526, 5527, 5, 2, 0, 0, 5527, 5528, 3, 1004, 502, 0, 5528, 5529, 5, 6, 0, 0, 5529, 5530, 5, 400, 0, 0, 5530, 5531, 5, 3, 0, 0, 5531, 5533, 1, 0, 0, 0, 5532, 5510, 1, 0, 0, 0, 5532, 5514, 1, 0, 0, 0, 5532, 5520, 1, 0, 0, 0, 5532, 5526, 1, 0, 0, 0, 5533, 619, 1, 0, 0, 0, 5534, 5535, 3, 1254, 627, 0, 5535, 5536, 5, 11, 0, 0, 5536, 5538, 1, 0, 0, 0, 5537, 5534, 1, 0, 0, 0, 5538, 5541, 1, 0, 0, 0, 5539, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5542, 1, 0, 0, 0, 5541, 5539, 1, 0, 0, 0, 5542, 5543, 3, 1154, 577, 0, 5543, 621, 1, 0, 0, 0, 5544, 5549, 3, 624, 312, 0, 5545, 5546, 5, 6, 0, 0, 5546, 5548, 3, 624, 312, 0, 5547, 5545, 1, 0, 0, 0, 5548, 5551, 1, 0, 0, 0, 5549, 5547, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 623, 1, 0, 0, 0, 5551, 5549, 1, 0, 0, 0, 5552, 5553, 3, 620, 310, 0, 5553, 5554, 3, 618, 309, 0, 5554, 625, 1, 0, 0, 0, 5555, 5556, 5, 57, 0, 0, 5556, 5557, 3, 628, 314, 0, 5557, 627, 1, 0, 0, 0, 5558, 5560, 3, 630, 315, 0, 5559, 5558, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 5559, 1, 0, 0, 0, 5561, 5562, 1, 0, 0, 0, 5562, 629, 1, 0, 0, 0, 5563, 5567, 3, 1240, 620, 0, 5564, 5565, 5, 238, 0, 0, 5565, 5567, 3, 70, 35, 0, 5566, 5563, 1, 0, 0, 0, 5566, 5564, 1, 0, 0, 0, 5567, 631, 1, 0, 0, 0, 5568, 5569, 5, 46, 0, 0, 5569, 5570, 5, 41, 0, 0, 5570, 5571, 5, 2, 0, 0, 5571, 5572, 3, 1004, 502, 0, 5572, 5573, 5, 36, 0, 0, 5573, 5574, 3, 1004, 502, 0, 5574, 5575, 5, 3, 0, 0, 5575, 5576, 5, 105, 0, 0, 5576, 5577, 5, 211, 0, 0, 5577, 5578, 3, 570, 285, 0, 5578, 5579, 3, 634, 317, 0, 5579, 5603, 1, 0, 0, 0, 5580, 5581, 5, 46, 0, 0, 5581, 5582, 5, 41, 0, 0, 5582, 5583, 5, 2, 0, 0, 5583, 5584, 3, 1004, 502, 0, 5584, 5585, 5, 36, 0, 0, 5585, 5586, 3, 1004, 502, 0, 5586, 5587, 5, 3, 0, 0, 5587, 5588, 5, 372, 0, 0, 5588, 5589, 5, 211, 0, 0, 5589, 5590, 3, 634, 317, 0, 5590, 5603, 1, 0, 0, 0, 5591, 5592, 5, 46, 0, 0, 5592, 5593, 5, 41, 0, 0, 5593, 5594, 5, 2, 0, 0, 5594, 5595, 3, 1004, 502, 0, 5595, 5596, 5, 36, 0, 0, 5596, 5597, 3, 1004, 502, 0, 5597, 5598, 5, 3, 0, 0, 5598, 5599, 5, 105, 0, 0, 5599, 5600, 5, 393, 0, 0, 5600, 5601, 3, 634, 317, 0, 5601, 5603, 1, 0, 0, 0, 5602, 5568, 1, 0, 0, 0, 5602, 5580, 1, 0, 0, 0, 5602, 5591, 1, 0, 0, 0, 5603, 633, 1, 0, 0, 0, 5604, 5605, 5, 36, 0, 0, 5605, 5610, 5, 223, 0, 0, 5606, 5607, 5, 36, 0, 0, 5607, 5610, 5, 141, 0, 0, 5608, 5610, 1, 0, 0, 0, 5609, 5604, 1, 0, 0, 0, 5609, 5606, 1, 0, 0, 0, 5609, 5608, 1, 0, 0, 0, 5610, 635, 1, 0, 0, 0, 5611, 5612, 5, 191, 0, 0, 5612, 5613, 5, 41, 0, 0, 5613, 5614, 3, 638, 319, 0, 5614, 5615, 5, 2, 0, 0, 5615, 5616, 3, 1004, 502, 0, 5616, 5617, 5, 36, 0, 0, 5617, 5618, 3, 1004, 502, 0, 5618, 5619, 5, 3, 0, 0, 5619, 5620, 3, 106, 53, 0, 5620, 637, 1, 0, 0, 0, 5621, 5622, 5, 220, 0, 0, 5622, 5625, 5, 389, 0, 0, 5623, 5625, 1, 0, 0, 0, 5624, 5621, 1, 0, 0, 0, 5624, 5623, 1, 0, 0, 0, 5625, 639, 1, 0, 0, 0, 5626, 5627, 5, 46, 0, 0, 5627, 5628, 3, 564, 282, 0, 5628, 5629, 5, 443, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5631, 3, 1004, 502, 0, 5631, 5632, 5, 238, 0, 0, 5632, 5633, 3, 1222, 611, 0, 5633, 5634, 5, 2, 0, 0, 5634, 5635, 3, 642, 321, 0, 5635, 5636, 5, 3, 0, 0, 5636, 641, 1, 0, 0, 0, 5637, 5638, 5, 64, 0, 0, 5638, 5639, 5, 461, 0, 0, 5639, 5640, 5, 105, 0, 0, 5640, 5641, 5, 211, 0, 0, 5641, 5642, 3, 570, 285, 0, 5642, 5643, 5, 6, 0, 0, 5643, 5644, 5, 94, 0, 0, 5644, 5645, 5, 461, 0, 0, 5645, 5646, 5, 105, 0, 0, 5646, 5647, 5, 211, 0, 0, 5647, 5648, 3, 570, 285, 0, 5648, 5672, 1, 0, 0, 0, 5649, 5650, 5, 94, 0, 0, 5650, 5651, 5, 461, 0, 0, 5651, 5652, 5, 105, 0, 0, 5652, 5653, 5, 211, 0, 0, 5653, 5654, 3, 570, 285, 0, 5654, 5655, 5, 6, 0, 0, 5655, 5656, 5, 64, 0, 0, 5656, 5657, 5, 461, 0, 0, 5657, 5658, 5, 105, 0, 0, 5658, 5659, 5, 211, 0, 0, 5659, 5660, 3, 570, 285, 0, 5660, 5672, 1, 0, 0, 0, 5661, 5662, 5, 64, 0, 0, 5662, 5663, 5, 461, 0, 0, 5663, 5664, 5, 105, 0, 0, 5664, 5665, 5, 211, 0, 0, 5665, 5672, 3, 570, 285, 0, 5666, 5667, 5, 94, 0, 0, 5667, 5668, 5, 461, 0, 0, 5668, 5669, 5, 105, 0, 0, 5669, 5670, 5, 211, 0, 0, 5670, 5672, 3, 570, 285, 0, 5671, 5637, 1, 0, 0, 0, 5671, 5649, 1, 0, 0, 0, 5671, 5661, 1, 0, 0, 0, 5671, 5666, 1, 0, 0, 0, 5672, 643, 1, 0, 0, 0, 5673, 5674, 5, 191, 0, 0, 5674, 5675, 5, 443, 0, 0, 5675, 5676, 3, 638, 319, 0, 5676, 5677, 5, 62, 0, 0, 5677, 5678, 3, 1004, 502, 0, 5678, 5679, 5, 238, 0, 0, 5679, 5680, 3, 1222, 611, 0, 5680, 5681, 3, 106, 53, 0, 5681, 645, 1, 0, 0, 0, 5682, 5683, 5, 299, 0, 0, 5683, 5684, 3, 648, 324, 0, 5684, 5685, 3, 542, 271, 0, 5685, 5686, 3, 1218, 609, 0, 5686, 5709, 1, 0, 0, 0, 5687, 5688, 5, 299, 0, 0, 5688, 5689, 3, 650, 325, 0, 5689, 5690, 3, 542, 271, 0, 5690, 5691, 3, 1222, 611, 0, 5691, 5709, 1, 0, 0, 0, 5692, 5693, 5, 299, 0, 0, 5693, 5694, 5, 2, 0, 0, 5694, 5695, 3, 652, 326, 0, 5695, 5696, 5, 3, 0, 0, 5696, 5697, 3, 648, 324, 0, 5697, 5698, 3, 542, 271, 0, 5698, 5699, 3, 1218, 609, 0, 5699, 5709, 1, 0, 0, 0, 5700, 5701, 5, 299, 0, 0, 5701, 5702, 5, 2, 0, 0, 5702, 5703, 3, 652, 326, 0, 5703, 5704, 5, 3, 0, 0, 5704, 5705, 3, 650, 325, 0, 5705, 5706, 3, 542, 271, 0, 5706, 5707, 3, 1222, 611, 0, 5707, 5709, 1, 0, 0, 0, 5708, 5682, 1, 0, 0, 0, 5708, 5687, 1, 0, 0, 0, 5708, 5692, 1, 0, 0, 0, 5708, 5700, 1, 0, 0, 0, 5709, 647, 1, 0, 0, 0, 5710, 5711, 7, 28, 0, 0, 5711, 649, 1, 0, 0, 0, 5712, 5713, 7, 29, 0, 0, 5713, 651, 1, 0, 0, 0, 5714, 5719, 3, 654, 327, 0, 5715, 5716, 5, 6, 0, 0, 5716, 5718, 3, 654, 327, 0, 5717, 5715, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5717, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 653, 1, 0, 0, 0, 5721, 5719, 1, 0, 0, 0, 5722, 5723, 7, 30, 0, 0, 5723, 655, 1, 0, 0, 0, 5724, 5725, 5, 138, 0, 0, 5725, 5726, 5, 344, 0, 0, 5726, 5727, 3, 1222, 611, 0, 5727, 5728, 5, 326, 0, 0, 5728, 5729, 3, 114, 57, 0, 5729, 5737, 1, 0, 0, 0, 5730, 5731, 5, 138, 0, 0, 5731, 5732, 5, 344, 0, 0, 5732, 5733, 3, 1222, 611, 0, 5733, 5734, 5, 306, 0, 0, 5734, 5735, 3, 114, 57, 0, 5735, 5737, 1, 0, 0, 0, 5736, 5724, 1, 0, 0, 0, 5736, 5730, 1, 0, 0, 0, 5737, 657, 1, 0, 0, 0, 5738, 5739, 5, 138, 0, 0, 5739, 5740, 5, 136, 0, 0, 5740, 5741, 3, 590, 295, 0, 5741, 5742, 5, 302, 0, 0, 5742, 5743, 5, 94, 0, 0, 5743, 5744, 3, 1222, 611, 0, 5744, 6207, 1, 0, 0, 0, 5745, 5746, 5, 138, 0, 0, 5746, 5747, 5, 108, 0, 0, 5747, 5748, 3, 478, 239, 0, 5748, 5749, 5, 302, 0, 0, 5749, 5750, 5, 94, 0, 0, 5750, 5751, 3, 1222, 611, 0, 5751, 6207, 1, 0, 0, 0, 5752, 5753, 5, 138, 0, 0, 5753, 5754, 5, 168, 0, 0, 5754, 5755, 3, 478, 239, 0, 5755, 5756, 5, 302, 0, 0, 5756, 5757, 5, 94, 0, 0, 5757, 5758, 3, 1222, 611, 0, 5758, 6207, 1, 0, 0, 0, 5759, 5760, 5, 138, 0, 0, 5760, 5761, 5, 175, 0, 0, 5761, 5762, 3, 1222, 611, 0, 5762, 5763, 5, 302, 0, 0, 5763, 5764, 5, 94, 0, 0, 5764, 5765, 3, 1222, 611, 0, 5765, 6207, 1, 0, 0, 0, 5766, 5767, 5, 138, 0, 0, 5767, 5768, 5, 189, 0, 0, 5768, 5769, 3, 478, 239, 0, 5769, 5770, 5, 302, 0, 0, 5770, 5771, 5, 94, 0, 0, 5771, 5772, 3, 1222, 611, 0, 5772, 6207, 1, 0, 0, 0, 5773, 5774, 5, 138, 0, 0, 5774, 5775, 5, 189, 0, 0, 5775, 5776, 3, 478, 239, 0, 5776, 5777, 5, 302, 0, 0, 5777, 5778, 5, 45, 0, 0, 5778, 5779, 3, 1222, 611, 0, 5779, 5780, 5, 94, 0, 0, 5780, 5781, 3, 1222, 611, 0, 5781, 6207, 1, 0, 0, 0, 5782, 5783, 5, 138, 0, 0, 5783, 5784, 5, 63, 0, 0, 5784, 5785, 5, 174, 0, 0, 5785, 5786, 5, 374, 0, 0, 5786, 5787, 3, 1222, 611, 0, 5787, 5788, 5, 302, 0, 0, 5788, 5789, 5, 94, 0, 0, 5789, 5790, 3, 1222, 611, 0, 5790, 6207, 1, 0, 0, 0, 5791, 5792, 5, 138, 0, 0, 5792, 5793, 5, 211, 0, 0, 5793, 5794, 3, 570, 285, 0, 5794, 5795, 5, 302, 0, 0, 5795, 5796, 5, 94, 0, 0, 5796, 5797, 3, 1222, 611, 0, 5797, 6207, 1, 0, 0, 0, 5798, 5799, 5, 138, 0, 0, 5799, 5800, 5, 66, 0, 0, 5800, 5801, 3, 1248, 624, 0, 5801, 5802, 5, 302, 0, 0, 5802, 5803, 5, 94, 0, 0, 5803, 5804, 3, 1248, 624, 0, 5804, 6207, 1, 0, 0, 0, 5805, 5806, 5, 138, 0, 0, 5806, 5807, 3, 282, 141, 0, 5807, 5808, 5, 238, 0, 0, 5808, 5809, 3, 1222, 611, 0, 5809, 5810, 5, 302, 0, 0, 5810, 5811, 5, 94, 0, 0, 5811, 5812, 3, 1222, 611, 0, 5812, 6207, 1, 0, 0, 0, 5813, 5814, 5, 138, 0, 0, 5814, 5815, 5, 271, 0, 0, 5815, 5816, 5, 156, 0, 0, 5816, 5817, 3, 478, 239, 0, 5817, 5818, 5, 100, 0, 0, 5818, 5819, 3, 1222, 611, 0, 5819, 5820, 5, 302, 0, 0, 5820, 5821, 5, 94, 0, 0, 5821, 5822, 3, 1222, 611, 0, 5822, 6207, 1, 0, 0, 0, 5823, 5824, 5, 138, 0, 0, 5824, 5825, 5, 271, 0, 0, 5825, 5826, 5, 206, 0, 0, 5826, 5827, 3, 478, 239, 0, 5827, 5828, 5, 100, 0, 0, 5828, 5829, 3, 1222, 611, 0, 5829, 5830, 5, 302, 0, 0, 5830, 5831, 5, 94, 0, 0, 5831, 5832, 3, 1222, 611, 0, 5832, 6207, 1, 0, 0, 0, 5833, 5834, 5, 138, 0, 0, 5834, 5835, 5, 445, 0, 0, 5835, 5836, 3, 1222, 611, 0, 5836, 5837, 5, 80, 0, 0, 5837, 5838, 3, 1218, 609, 0, 5838, 5839, 5, 302, 0, 0, 5839, 5840, 5, 94, 0, 0, 5840, 5841, 3, 1222, 611, 0, 5841, 6207, 1, 0, 0, 0, 5842, 5843, 5, 138, 0, 0, 5843, 5844, 5, 445, 0, 0, 5844, 5845, 5, 220, 0, 0, 5845, 5846, 5, 389, 0, 0, 5846, 5847, 3, 1222, 611, 0, 5847, 5848, 5, 80, 0, 0, 5848, 5849, 3, 1218, 609, 0, 5849, 5850, 5, 302, 0, 0, 5850, 5851, 5, 94, 0, 0, 5851, 5852, 3, 1222, 611, 0, 5852, 6207, 1, 0, 0, 0, 5853, 5854, 5, 138, 0, 0, 5854, 5855, 5, 289, 0, 0, 5855, 5856, 3, 570, 285, 0, 5856, 5857, 5, 302, 0, 0, 5857, 5858, 5, 94, 0, 0, 5858, 5859, 3, 1222, 611, 0, 5859, 6207, 1, 0, 0, 0, 5860, 5861, 5, 138, 0, 0, 5861, 5862, 5, 452, 0, 0, 5862, 5863, 3, 1222, 611, 0, 5863, 5864, 5, 302, 0, 0, 5864, 5865, 5, 94, 0, 0, 5865, 5866, 3, 1222, 611, 0, 5866, 6207, 1, 0, 0, 0, 5867, 5868, 5, 138, 0, 0, 5868, 5869, 5, 442, 0, 0, 5869, 5870, 3, 570, 285, 0, 5870, 5871, 5, 302, 0, 0, 5871, 5872, 5, 94, 0, 0, 5872, 5873, 3, 1222, 611, 0, 5873, 6207, 1, 0, 0, 0, 5874, 5875, 5, 138, 0, 0, 5875, 5876, 5, 316, 0, 0, 5876, 5877, 3, 1222, 611, 0, 5877, 5878, 5, 302, 0, 0, 5878, 5879, 5, 94, 0, 0, 5879, 5880, 3, 1222, 611, 0, 5880, 6207, 1, 0, 0, 0, 5881, 5882, 5, 138, 0, 0, 5882, 5883, 5, 324, 0, 0, 5883, 5884, 3, 1222, 611, 0, 5884, 5885, 5, 302, 0, 0, 5885, 5886, 5, 94, 0, 0, 5886, 5887, 3, 1222, 611, 0, 5887, 6207, 1, 0, 0, 0, 5888, 5889, 5, 138, 0, 0, 5889, 5890, 5, 451, 0, 0, 5890, 5891, 3, 1222, 611, 0, 5891, 5892, 5, 302, 0, 0, 5892, 5893, 5, 94, 0, 0, 5893, 5894, 3, 1222, 611, 0, 5894, 6207, 1, 0, 0, 0, 5895, 5896, 5, 138, 0, 0, 5896, 5897, 5, 92, 0, 0, 5897, 5898, 3, 966, 483, 0, 5898, 5899, 5, 302, 0, 0, 5899, 5900, 5, 94, 0, 0, 5900, 5901, 3, 1222, 611, 0, 5901, 6207, 1, 0, 0, 0, 5902, 5903, 5, 138, 0, 0, 5903, 5904, 5, 92, 0, 0, 5904, 5905, 5, 220, 0, 0, 5905, 5906, 5, 389, 0, 0, 5906, 5907, 3, 966, 483, 0, 5907, 5908, 5, 302, 0, 0, 5908, 5909, 5, 94, 0, 0, 5909, 5910, 3, 1222, 611, 0, 5910, 6207, 1, 0, 0, 0, 5911, 5912, 5, 138, 0, 0, 5912, 5913, 5, 321, 0, 0, 5913, 5914, 3, 1218, 609, 0, 5914, 5915, 5, 302, 0, 0, 5915, 5916, 5, 94, 0, 0, 5916, 5917, 3, 1222, 611, 0, 5917, 6207, 1, 0, 0, 0, 5918, 5919, 5, 138, 0, 0, 5919, 5920, 5, 321, 0, 0, 5920, 5921, 5, 220, 0, 0, 5921, 5922, 5, 389, 0, 0, 5922, 5923, 3, 1218, 609, 0, 5923, 5924, 5, 302, 0, 0, 5924, 5925, 5, 94, 0, 0, 5925, 5926, 3, 1222, 611, 0, 5926, 6207, 1, 0, 0, 0, 5927, 5928, 5, 138, 0, 0, 5928, 5929, 5, 369, 0, 0, 5929, 5930, 3, 1218, 609, 0, 5930, 5931, 5, 302, 0, 0, 5931, 5932, 5, 94, 0, 0, 5932, 5933, 3, 1222, 611, 0, 5933, 6207, 1, 0, 0, 0, 5934, 5935, 5, 138, 0, 0, 5935, 5936, 5, 369, 0, 0, 5936, 5937, 5, 220, 0, 0, 5937, 5938, 5, 389, 0, 0, 5938, 5939, 3, 1218, 609, 0, 5939, 5940, 5, 302, 0, 0, 5940, 5941, 5, 94, 0, 0, 5941, 5942, 3, 1222, 611, 0, 5942, 6207, 1, 0, 0, 0, 5943, 5944, 5, 138, 0, 0, 5944, 5945, 5, 251, 0, 0, 5945, 5946, 5, 369, 0, 0, 5946, 5947, 3, 1218, 609, 0, 5947, 5948, 5, 302, 0, 0, 5948, 5949, 5, 94, 0, 0, 5949, 5950, 3, 1222, 611, 0, 5950, 6207, 1, 0, 0, 0, 5951, 5952, 5, 138, 0, 0, 5952, 5953, 5, 251, 0, 0, 5953, 5954, 5, 369, 0, 0, 5954, 5955, 5, 220, 0, 0, 5955, 5956, 5, 389, 0, 0, 5956, 5957, 3, 1218, 609, 0, 5957, 5958, 5, 302, 0, 0, 5958, 5959, 5, 94, 0, 0, 5959, 5960, 3, 1222, 611, 0, 5960, 6207, 1, 0, 0, 0, 5961, 5962, 5, 138, 0, 0, 5962, 5963, 5, 226, 0, 0, 5963, 5964, 3, 1218, 609, 0, 5964, 5965, 5, 302, 0, 0, 5965, 5966, 5, 94, 0, 0, 5966, 5967, 3, 1222, 611, 0, 5967, 6207, 1, 0, 0, 0, 5968, 5969, 5, 138, 0, 0, 5969, 5970, 5, 226, 0, 0, 5970, 5971, 5, 220, 0, 0, 5971, 5972, 5, 389, 0, 0, 5972, 5973, 3, 1218, 609, 0, 5973, 5974, 5, 302, 0, 0, 5974, 5975, 5, 94, 0, 0, 5975, 5976, 3, 1222, 611, 0, 5976, 6207, 1, 0, 0, 0, 5977, 5978, 5, 138, 0, 0, 5978, 5979, 5, 63, 0, 0, 5979, 5980, 5, 92, 0, 0, 5980, 5981, 3, 966, 483, 0, 5981, 5982, 5, 302, 0, 0, 5982, 5983, 5, 94, 0, 0, 5983, 5984, 3, 1222, 611, 0, 5984, 6207, 1, 0, 0, 0, 5985, 5986, 5, 138, 0, 0, 5986, 5987, 5, 63, 0, 0, 5987, 5988, 5, 92, 0, 0, 5988, 5989, 5, 220, 0, 0, 5989, 5990, 5, 389, 0, 0, 5990, 5991, 3, 966, 483, 0, 5991, 5992, 5, 302, 0, 0, 5992, 5993, 5, 94, 0, 0, 5993, 5994, 3, 1222, 611, 0, 5994, 6207, 1, 0, 0, 0, 5995, 5996, 5, 138, 0, 0, 5996, 5997, 5, 92, 0, 0, 5997, 5998, 3, 966, 483, 0, 5998, 5999, 5, 302, 0, 0, 5999, 6000, 3, 660, 330, 0, 6000, 6001, 3, 1222, 611, 0, 6001, 6002, 5, 94, 0, 0, 6002, 6003, 3, 1222, 611, 0, 6003, 6207, 1, 0, 0, 0, 6004, 6005, 5, 138, 0, 0, 6005, 6006, 5, 92, 0, 0, 6006, 6007, 5, 220, 0, 0, 6007, 6008, 5, 389, 0, 0, 6008, 6009, 3, 966, 483, 0, 6009, 6010, 5, 302, 0, 0, 6010, 6011, 3, 660, 330, 0, 6011, 6012, 3, 1222, 611, 0, 6012, 6013, 5, 94, 0, 0, 6013, 6014, 3, 1222, 611, 0, 6014, 6207, 1, 0, 0, 0, 6015, 6016, 5, 138, 0, 0, 6016, 6017, 5, 369, 0, 0, 6017, 6018, 3, 1218, 609, 0, 6018, 6019, 5, 302, 0, 0, 6019, 6020, 3, 660, 330, 0, 6020, 6021, 3, 1222, 611, 0, 6021, 6022, 5, 94, 0, 0, 6022, 6023, 3, 1222, 611, 0, 6023, 6207, 1, 0, 0, 0, 6024, 6025, 5, 138, 0, 0, 6025, 6026, 5, 369, 0, 0, 6026, 6027, 5, 220, 0, 0, 6027, 6028, 5, 389, 0, 0, 6028, 6029, 3, 1218, 609, 0, 6029, 6030, 5, 302, 0, 0, 6030, 6031, 3, 660, 330, 0, 6031, 6032, 3, 1222, 611, 0, 6032, 6033, 5, 94, 0, 0, 6033, 6034, 3, 1222, 611, 0, 6034, 6207, 1, 0, 0, 0, 6035, 6036, 5, 138, 0, 0, 6036, 6037, 5, 251, 0, 0, 6037, 6038, 5, 369, 0, 0, 6038, 6039, 3, 1218, 609, 0, 6039, 6040, 5, 302, 0, 0, 6040, 6041, 3, 660, 330, 0, 6041, 6042, 3, 1222, 611, 0, 6042, 6043, 5, 94, 0, 0, 6043, 6044, 3, 1222, 611, 0, 6044, 6207, 1, 0, 0, 0, 6045, 6046, 5, 138, 0, 0, 6046, 6047, 5, 251, 0, 0, 6047, 6048, 5, 369, 0, 0, 6048, 6049, 5, 220, 0, 0, 6049, 6050, 5, 389, 0, 0, 6050, 6051, 3, 1218, 609, 0, 6051, 6052, 5, 302, 0, 0, 6052, 6053, 3, 660, 330, 0, 6053, 6054, 3, 1222, 611, 0, 6054, 6055, 5, 94, 0, 0, 6055, 6056, 3, 1222, 611, 0, 6056, 6207, 1, 0, 0, 0, 6057, 6058, 5, 138, 0, 0, 6058, 6059, 5, 92, 0, 0, 6059, 6060, 3, 966, 483, 0, 6060, 6061, 5, 302, 0, 0, 6061, 6062, 5, 45, 0, 0, 6062, 6063, 3, 1222, 611, 0, 6063, 6064, 5, 94, 0, 0, 6064, 6065, 3, 1222, 611, 0, 6065, 6207, 1, 0, 0, 0, 6066, 6067, 5, 138, 0, 0, 6067, 6068, 5, 92, 0, 0, 6068, 6069, 5, 220, 0, 0, 6069, 6070, 5, 389, 0, 0, 6070, 6071, 3, 966, 483, 0, 6071, 6072, 5, 302, 0, 0, 6072, 6073, 5, 45, 0, 0, 6073, 6074, 3, 1222, 611, 0, 6074, 6075, 5, 94, 0, 0, 6075, 6076, 3, 1222, 611, 0, 6076, 6207, 1, 0, 0, 0, 6077, 6078, 5, 138, 0, 0, 6078, 6079, 5, 63, 0, 0, 6079, 6080, 5, 92, 0, 0, 6080, 6081, 3, 966, 483, 0, 6081, 6082, 5, 302, 0, 0, 6082, 6083, 3, 660, 330, 0, 6083, 6084, 3, 1222, 611, 0, 6084, 6085, 5, 94, 0, 0, 6085, 6086, 3, 1222, 611, 0, 6086, 6207, 1, 0, 0, 0, 6087, 6088, 5, 138, 0, 0, 6088, 6089, 5, 63, 0, 0, 6089, 6090, 5, 92, 0, 0, 6090, 6091, 5, 220, 0, 0, 6091, 6092, 5, 389, 0, 0, 6092, 6093, 3, 966, 483, 0, 6093, 6094, 5, 302, 0, 0, 6094, 6095, 3, 660, 330, 0, 6095, 6096, 3, 1222, 611, 0, 6096, 6097, 5, 94, 0, 0, 6097, 6098, 3, 1222, 611, 0, 6098, 6207, 1, 0, 0, 0, 6099, 6100, 5, 138, 0, 0, 6100, 6101, 5, 314, 0, 0, 6101, 6102, 3, 1222, 611, 0, 6102, 6103, 5, 80, 0, 0, 6103, 6104, 3, 1218, 609, 0, 6104, 6105, 5, 302, 0, 0, 6105, 6106, 5, 94, 0, 0, 6106, 6107, 3, 1222, 611, 0, 6107, 6207, 1, 0, 0, 0, 6108, 6109, 5, 138, 0, 0, 6109, 6110, 5, 350, 0, 0, 6110, 6111, 3, 1222, 611, 0, 6111, 6112, 5, 80, 0, 0, 6112, 6113, 3, 1218, 609, 0, 6113, 6114, 5, 302, 0, 0, 6114, 6115, 5, 94, 0, 0, 6115, 6116, 3, 1222, 611, 0, 6116, 6207, 1, 0, 0, 0, 6117, 6118, 5, 138, 0, 0, 6118, 6119, 5, 198, 0, 0, 6119, 6120, 5, 350, 0, 0, 6120, 6121, 3, 1222, 611, 0, 6121, 6122, 5, 302, 0, 0, 6122, 6123, 5, 94, 0, 0, 6123, 6124, 3, 1222, 611, 0, 6124, 6207, 1, 0, 0, 0, 6125, 6126, 5, 138, 0, 0, 6126, 6127, 5, 311, 0, 0, 6127, 6128, 3, 1248, 624, 0, 6128, 6129, 5, 302, 0, 0, 6129, 6130, 5, 94, 0, 0, 6130, 6131, 3, 1248, 624, 0, 6131, 6207, 1, 0, 0, 0, 6132, 6133, 5, 138, 0, 0, 6133, 6134, 5, 99, 0, 0, 6134, 6135, 3, 1248, 624, 0, 6135, 6136, 5, 302, 0, 0, 6136, 6137, 5, 94, 0, 0, 6137, 6138, 3, 1248, 624, 0, 6138, 6207, 1, 0, 0, 0, 6139, 6140, 5, 138, 0, 0, 6140, 6141, 5, 344, 0, 0, 6141, 6142, 3, 1222, 611, 0, 6142, 6143, 5, 302, 0, 0, 6143, 6144, 5, 94, 0, 0, 6144, 6145, 3, 1222, 611, 0, 6145, 6207, 1, 0, 0, 0, 6146, 6147, 5, 138, 0, 0, 6147, 6148, 5, 335, 0, 0, 6148, 6149, 3, 478, 239, 0, 6149, 6150, 5, 302, 0, 0, 6150, 6151, 5, 94, 0, 0, 6151, 6152, 3, 1222, 611, 0, 6152, 6207, 1, 0, 0, 0, 6153, 6154, 5, 138, 0, 0, 6154, 6155, 5, 348, 0, 0, 6155, 6156, 5, 318, 0, 0, 6156, 6157, 5, 276, 0, 0, 6157, 6158, 3, 478, 239, 0, 6158, 6159, 5, 302, 0, 0, 6159, 6160, 5, 94, 0, 0, 6160, 6161, 3, 1222, 611, 0, 6161, 6207, 1, 0, 0, 0, 6162, 6163, 5, 138, 0, 0, 6163, 6164, 5, 348, 0, 0, 6164, 6165, 5, 318, 0, 0, 6165, 6166, 5, 185, 0, 0, 6166, 6167, 3, 478, 239, 0, 6167, 6168, 5, 302, 0, 0, 6168, 6169, 5, 94, 0, 0, 6169, 6170, 3, 1222, 611, 0, 6170, 6207, 1, 0, 0, 0, 6171, 6172, 5, 138, 0, 0, 6172, 6173, 5, 348, 0, 0, 6173, 6174, 5, 318, 0, 0, 6174, 6175, 5, 346, 0, 0, 6175, 6176, 3, 478, 239, 0, 6176, 6177, 5, 302, 0, 0, 6177, 6178, 5, 94, 0, 0, 6178, 6179, 3, 1222, 611, 0, 6179, 6207, 1, 0, 0, 0, 6180, 6181, 5, 138, 0, 0, 6181, 6182, 5, 348, 0, 0, 6182, 6183, 5, 318, 0, 0, 6183, 6184, 5, 163, 0, 0, 6184, 6185, 3, 478, 239, 0, 6185, 6186, 5, 302, 0, 0, 6186, 6187, 5, 94, 0, 0, 6187, 6188, 3, 1222, 611, 0, 6188, 6207, 1, 0, 0, 0, 6189, 6190, 5, 138, 0, 0, 6190, 6191, 5, 353, 0, 0, 6191, 6192, 3, 478, 239, 0, 6192, 6193, 5, 302, 0, 0, 6193, 6194, 5, 94, 0, 0, 6194, 6195, 3, 1222, 611, 0, 6195, 6207, 1, 0, 0, 0, 6196, 6197, 5, 138, 0, 0, 6197, 6198, 5, 353, 0, 0, 6198, 6199, 3, 478, 239, 0, 6199, 6200, 5, 302, 0, 0, 6200, 6201, 5, 143, 0, 0, 6201, 6202, 3, 1222, 611, 0, 6202, 6203, 5, 94, 0, 0, 6203, 6204, 3, 1222, 611, 0, 6204, 6205, 3, 106, 53, 0, 6205, 6207, 1, 0, 0, 0, 6206, 5738, 1, 0, 0, 0, 6206, 5745, 1, 0, 0, 0, 6206, 5752, 1, 0, 0, 0, 6206, 5759, 1, 0, 0, 0, 6206, 5766, 1, 0, 0, 0, 6206, 5773, 1, 0, 0, 0, 6206, 5782, 1, 0, 0, 0, 6206, 5791, 1, 0, 0, 0, 6206, 5798, 1, 0, 0, 0, 6206, 5805, 1, 0, 0, 0, 6206, 5813, 1, 0, 0, 0, 6206, 5823, 1, 0, 0, 0, 6206, 5833, 1, 0, 0, 0, 6206, 5842, 1, 0, 0, 0, 6206, 5853, 1, 0, 0, 0, 6206, 5860, 1, 0, 0, 0, 6206, 5867, 1, 0, 0, 0, 6206, 5874, 1, 0, 0, 0, 6206, 5881, 1, 0, 0, 0, 6206, 5888, 1, 0, 0, 0, 6206, 5895, 1, 0, 0, 0, 6206, 5902, 1, 0, 0, 0, 6206, 5911, 1, 0, 0, 0, 6206, 5918, 1, 0, 0, 0, 6206, 5927, 1, 0, 0, 0, 6206, 5934, 1, 0, 0, 0, 6206, 5943, 1, 0, 0, 0, 6206, 5951, 1, 0, 0, 0, 6206, 5961, 1, 0, 0, 0, 6206, 5968, 1, 0, 0, 0, 6206, 5977, 1, 0, 0, 0, 6206, 5985, 1, 0, 0, 0, 6206, 5995, 1, 0, 0, 0, 6206, 6004, 1, 0, 0, 0, 6206, 6015, 1, 0, 0, 0, 6206, 6024, 1, 0, 0, 0, 6206, 6035, 1, 0, 0, 0, 6206, 6045, 1, 0, 0, 0, 6206, 6057, 1, 0, 0, 0, 6206, 6066, 1, 0, 0, 0, 6206, 6077, 1, 0, 0, 0, 6206, 6087, 1, 0, 0, 0, 6206, 6099, 1, 0, 0, 0, 6206, 6108, 1, 0, 0, 0, 6206, 6117, 1, 0, 0, 0, 6206, 6125, 1, 0, 0, 0, 6206, 6132, 1, 0, 0, 0, 6206, 6139, 1, 0, 0, 0, 6206, 6146, 1, 0, 0, 0, 6206, 6153, 1, 0, 0, 0, 6206, 6162, 1, 0, 0, 0, 6206, 6171, 1, 0, 0, 0, 6206, 6180, 1, 0, 0, 0, 6206, 6189, 1, 0, 0, 0, 6206, 6196, 1, 0, 0, 0, 6207, 659, 1, 0, 0, 0, 6208, 6211, 5, 44, 0, 0, 6209, 6211, 1, 0, 0, 0, 6210, 6208, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6211, 661, 1, 0, 0, 0, 6212, 6213, 5, 326, 0, 0, 6213, 6216, 5, 174, 0, 0, 6214, 6216, 1, 0, 0, 0, 6215, 6212, 1, 0, 0, 0, 6215, 6214, 1, 0, 0, 0, 6216, 663, 1, 0, 0, 0, 6217, 6218, 5, 138, 0, 0, 6218, 6219, 5, 211, 0, 0, 6219, 6221, 3, 570, 285, 0, 6220, 6222, 5, 262, 0, 0, 6221, 6220, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 6224, 5, 462, 0, 0, 6224, 6225, 5, 80, 0, 0, 6225, 6226, 5, 204, 0, 0, 6226, 6227, 3, 1222, 611, 0, 6227, 6287, 1, 0, 0, 0, 6228, 6229, 5, 138, 0, 0, 6229, 6230, 5, 289, 0, 0, 6230, 6232, 3, 570, 285, 0, 6231, 6233, 5, 262, 0, 0, 6232, 6231, 1, 0, 0, 0, 6232, 6233, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 6235, 5, 462, 0, 0, 6235, 6236, 5, 80, 0, 0, 6236, 6237, 5, 204, 0, 0, 6237, 6238, 3, 1222, 611, 0, 6238, 6287, 1, 0, 0, 0, 6239, 6240, 5, 138, 0, 0, 6240, 6241, 5, 442, 0, 0, 6241, 6243, 3, 570, 285, 0, 6242, 6244, 5, 262, 0, 0, 6243, 6242, 1, 0, 0, 0, 6243, 6244, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 6246, 5, 462, 0, 0, 6246, 6247, 5, 80, 0, 0, 6247, 6248, 5, 204, 0, 0, 6248, 6249, 3, 1222, 611, 0, 6249, 6287, 1, 0, 0, 0, 6250, 6251, 5, 138, 0, 0, 6251, 6252, 5, 350, 0, 0, 6252, 6253, 3, 1222, 611, 0, 6253, 6254, 5, 80, 0, 0, 6254, 6256, 3, 1218, 609, 0, 6255, 6257, 5, 262, 0, 0, 6256, 6255, 1, 0, 0, 0, 6256, 6257, 1, 0, 0, 0, 6257, 6258, 1, 0, 0, 0, 6258, 6259, 5, 462, 0, 0, 6259, 6260, 5, 80, 0, 0, 6260, 6261, 5, 204, 0, 0, 6261, 6262, 3, 1222, 611, 0, 6262, 6287, 1, 0, 0, 0, 6263, 6264, 5, 138, 0, 0, 6264, 6265, 5, 251, 0, 0, 6265, 6266, 5, 369, 0, 0, 6266, 6268, 3, 1218, 609, 0, 6267, 6269, 5, 262, 0, 0, 6268, 6267, 1, 0, 0, 0, 6268, 6269, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6271, 5, 462, 0, 0, 6271, 6272, 5, 80, 0, 0, 6272, 6273, 5, 204, 0, 0, 6273, 6274, 3, 1222, 611, 0, 6274, 6287, 1, 0, 0, 0, 6275, 6276, 5, 138, 0, 0, 6276, 6277, 5, 226, 0, 0, 6277, 6279, 3, 1218, 609, 0, 6278, 6280, 5, 262, 0, 0, 6279, 6278, 1, 0, 0, 0, 6279, 6280, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6282, 5, 462, 0, 0, 6282, 6283, 5, 80, 0, 0, 6283, 6284, 5, 204, 0, 0, 6284, 6285, 3, 1222, 611, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6217, 1, 0, 0, 0, 6286, 6228, 1, 0, 0, 0, 6286, 6239, 1, 0, 0, 0, 6286, 6250, 1, 0, 0, 0, 6286, 6263, 1, 0, 0, 0, 6286, 6275, 1, 0, 0, 0, 6287, 665, 1, 0, 0, 0, 6288, 6289, 5, 138, 0, 0, 6289, 6290, 5, 136, 0, 0, 6290, 6291, 3, 590, 295, 0, 6291, 6292, 5, 326, 0, 0, 6292, 6293, 5, 316, 0, 0, 6293, 6294, 3, 1222, 611, 0, 6294, 6506, 1, 0, 0, 0, 6295, 6296, 5, 138, 0, 0, 6296, 6297, 5, 108, 0, 0, 6297, 6298, 3, 478, 239, 0, 6298, 6299, 5, 326, 0, 0, 6299, 6300, 5, 316, 0, 0, 6300, 6301, 3, 1222, 611, 0, 6301, 6506, 1, 0, 0, 0, 6302, 6303, 5, 138, 0, 0, 6303, 6304, 5, 168, 0, 0, 6304, 6305, 3, 478, 239, 0, 6305, 6306, 5, 326, 0, 0, 6306, 6307, 5, 316, 0, 0, 6307, 6308, 3, 1222, 611, 0, 6308, 6506, 1, 0, 0, 0, 6309, 6310, 5, 138, 0, 0, 6310, 6311, 5, 189, 0, 0, 6311, 6312, 3, 478, 239, 0, 6312, 6313, 5, 326, 0, 0, 6313, 6314, 5, 316, 0, 0, 6314, 6315, 3, 1222, 611, 0, 6315, 6506, 1, 0, 0, 0, 6316, 6317, 5, 138, 0, 0, 6317, 6318, 5, 204, 0, 0, 6318, 6319, 3, 1222, 611, 0, 6319, 6320, 5, 326, 0, 0, 6320, 6321, 5, 316, 0, 0, 6321, 6322, 3, 1222, 611, 0, 6322, 6506, 1, 0, 0, 0, 6323, 6324, 5, 138, 0, 0, 6324, 6325, 5, 211, 0, 0, 6325, 6326, 3, 570, 285, 0, 6326, 6327, 5, 326, 0, 0, 6327, 6328, 5, 316, 0, 0, 6328, 6329, 3, 1222, 611, 0, 6329, 6506, 1, 0, 0, 0, 6330, 6331, 5, 138, 0, 0, 6331, 6332, 5, 271, 0, 0, 6332, 6333, 3, 624, 312, 0, 6333, 6334, 5, 326, 0, 0, 6334, 6335, 5, 316, 0, 0, 6335, 6336, 3, 1222, 611, 0, 6336, 6506, 1, 0, 0, 0, 6337, 6338, 5, 138, 0, 0, 6338, 6339, 5, 271, 0, 0, 6339, 6340, 5, 156, 0, 0, 6340, 6341, 3, 478, 239, 0, 6341, 6342, 5, 100, 0, 0, 6342, 6343, 3, 1222, 611, 0, 6343, 6344, 5, 326, 0, 0, 6344, 6345, 5, 316, 0, 0, 6345, 6346, 3, 1222, 611, 0, 6346, 6506, 1, 0, 0, 0, 6347, 6348, 5, 138, 0, 0, 6348, 6349, 5, 271, 0, 0, 6349, 6350, 5, 206, 0, 0, 6350, 6351, 3, 478, 239, 0, 6351, 6352, 5, 100, 0, 0, 6352, 6353, 3, 1222, 611, 0, 6353, 6354, 5, 326, 0, 0, 6354, 6355, 5, 316, 0, 0, 6355, 6356, 3, 1222, 611, 0, 6356, 6506, 1, 0, 0, 0, 6357, 6358, 5, 138, 0, 0, 6358, 6359, 5, 289, 0, 0, 6359, 6360, 3, 570, 285, 0, 6360, 6361, 5, 326, 0, 0, 6361, 6362, 5, 316, 0, 0, 6362, 6363, 3, 1222, 611, 0, 6363, 6506, 1, 0, 0, 0, 6364, 6365, 5, 138, 0, 0, 6365, 6366, 5, 442, 0, 0, 6366, 6367, 3, 570, 285, 0, 6367, 6368, 5, 326, 0, 0, 6368, 6369, 5, 316, 0, 0, 6369, 6370, 3, 1222, 611, 0, 6370, 6506, 1, 0, 0, 0, 6371, 6372, 5, 138, 0, 0, 6372, 6373, 5, 92, 0, 0, 6373, 6374, 3, 966, 483, 0, 6374, 6375, 5, 326, 0, 0, 6375, 6376, 5, 316, 0, 0, 6376, 6377, 3, 1222, 611, 0, 6377, 6506, 1, 0, 0, 0, 6378, 6379, 5, 138, 0, 0, 6379, 6380, 5, 92, 0, 0, 6380, 6381, 5, 220, 0, 0, 6381, 6382, 5, 389, 0, 0, 6382, 6383, 3, 966, 483, 0, 6383, 6384, 5, 326, 0, 0, 6384, 6385, 5, 316, 0, 0, 6385, 6386, 3, 1222, 611, 0, 6386, 6506, 1, 0, 0, 0, 6387, 6388, 5, 138, 0, 0, 6388, 6389, 5, 335, 0, 0, 6389, 6390, 3, 478, 239, 0, 6390, 6391, 5, 326, 0, 0, 6391, 6392, 5, 316, 0, 0, 6392, 6393, 3, 1222, 611, 0, 6393, 6506, 1, 0, 0, 0, 6394, 6395, 5, 138, 0, 0, 6395, 6396, 5, 348, 0, 0, 6396, 6397, 5, 318, 0, 0, 6397, 6398, 5, 276, 0, 0, 6398, 6399, 3, 478, 239, 0, 6399, 6400, 5, 326, 0, 0, 6400, 6401, 5, 316, 0, 0, 6401, 6402, 3, 1222, 611, 0, 6402, 6506, 1, 0, 0, 0, 6403, 6404, 5, 138, 0, 0, 6404, 6405, 5, 348, 0, 0, 6405, 6406, 5, 318, 0, 0, 6406, 6407, 5, 185, 0, 0, 6407, 6408, 3, 478, 239, 0, 6408, 6409, 5, 326, 0, 0, 6409, 6410, 5, 316, 0, 0, 6410, 6411, 3, 1222, 611, 0, 6411, 6506, 1, 0, 0, 0, 6412, 6413, 5, 138, 0, 0, 6413, 6414, 5, 348, 0, 0, 6414, 6415, 5, 318, 0, 0, 6415, 6416, 5, 346, 0, 0, 6416, 6417, 3, 478, 239, 0, 6417, 6418, 5, 326, 0, 0, 6418, 6419, 5, 316, 0, 0, 6419, 6420, 3, 1222, 611, 0, 6420, 6506, 1, 0, 0, 0, 6421, 6422, 5, 138, 0, 0, 6422, 6423, 5, 348, 0, 0, 6423, 6424, 5, 318, 0, 0, 6424, 6425, 5, 163, 0, 0, 6425, 6426, 3, 478, 239, 0, 6426, 6427, 5, 326, 0, 0, 6427, 6428, 5, 316, 0, 0, 6428, 6429, 3, 1222, 611, 0, 6429, 6506, 1, 0, 0, 0, 6430, 6431, 5, 138, 0, 0, 6431, 6432, 5, 321, 0, 0, 6432, 6433, 3, 1218, 609, 0, 6433, 6434, 5, 326, 0, 0, 6434, 6435, 5, 316, 0, 0, 6435, 6436, 3, 1222, 611, 0, 6436, 6506, 1, 0, 0, 0, 6437, 6438, 5, 138, 0, 0, 6438, 6439, 5, 321, 0, 0, 6439, 6440, 5, 220, 0, 0, 6440, 6441, 5, 389, 0, 0, 6441, 6442, 3, 1218, 609, 0, 6442, 6443, 5, 326, 0, 0, 6443, 6444, 5, 316, 0, 0, 6444, 6445, 3, 1222, 611, 0, 6445, 6506, 1, 0, 0, 0, 6446, 6447, 5, 138, 0, 0, 6447, 6448, 5, 369, 0, 0, 6448, 6449, 3, 1218, 609, 0, 6449, 6450, 5, 326, 0, 0, 6450, 6451, 5, 316, 0, 0, 6451, 6452, 3, 1222, 611, 0, 6452, 6506, 1, 0, 0, 0, 6453, 6454, 5, 138, 0, 0, 6454, 6455, 5, 369, 0, 0, 6455, 6456, 5, 220, 0, 0, 6456, 6457, 5, 389, 0, 0, 6457, 6458, 3, 1218, 609, 0, 6458, 6459, 5, 326, 0, 0, 6459, 6460, 5, 316, 0, 0, 6460, 6461, 3, 1222, 611, 0, 6461, 6506, 1, 0, 0, 0, 6462, 6463, 5, 138, 0, 0, 6463, 6464, 5, 251, 0, 0, 6464, 6465, 5, 369, 0, 0, 6465, 6466, 3, 1218, 609, 0, 6466, 6467, 5, 326, 0, 0, 6467, 6468, 5, 316, 0, 0, 6468, 6469, 3, 1222, 611, 0, 6469, 6506, 1, 0, 0, 0, 6470, 6471, 5, 138, 0, 0, 6471, 6472, 5, 251, 0, 0, 6472, 6473, 5, 369, 0, 0, 6473, 6474, 5, 220, 0, 0, 6474, 6475, 5, 389, 0, 0, 6475, 6476, 3, 1218, 609, 0, 6476, 6477, 5, 326, 0, 0, 6477, 6478, 5, 316, 0, 0, 6478, 6479, 3, 1222, 611, 0, 6479, 6506, 1, 0, 0, 0, 6480, 6481, 5, 138, 0, 0, 6481, 6482, 5, 63, 0, 0, 6482, 6483, 5, 92, 0, 0, 6483, 6484, 3, 966, 483, 0, 6484, 6485, 5, 326, 0, 0, 6485, 6486, 5, 316, 0, 0, 6486, 6487, 3, 1222, 611, 0, 6487, 6506, 1, 0, 0, 0, 6488, 6489, 5, 138, 0, 0, 6489, 6490, 5, 63, 0, 0, 6490, 6491, 5, 92, 0, 0, 6491, 6492, 5, 220, 0, 0, 6492, 6493, 5, 389, 0, 0, 6493, 6494, 3, 966, 483, 0, 6494, 6495, 5, 326, 0, 0, 6495, 6496, 5, 316, 0, 0, 6496, 6497, 3, 1222, 611, 0, 6497, 6506, 1, 0, 0, 0, 6498, 6499, 5, 138, 0, 0, 6499, 6500, 5, 353, 0, 0, 6500, 6501, 3, 478, 239, 0, 6501, 6502, 5, 326, 0, 0, 6502, 6503, 5, 316, 0, 0, 6503, 6504, 3, 1222, 611, 0, 6504, 6506, 1, 0, 0, 0, 6505, 6288, 1, 0, 0, 0, 6505, 6295, 1, 0, 0, 0, 6505, 6302, 1, 0, 0, 0, 6505, 6309, 1, 0, 0, 0, 6505, 6316, 1, 0, 0, 0, 6505, 6323, 1, 0, 0, 0, 6505, 6330, 1, 0, 0, 0, 6505, 6337, 1, 0, 0, 0, 6505, 6347, 1, 0, 0, 0, 6505, 6357, 1, 0, 0, 0, 6505, 6364, 1, 0, 0, 0, 6505, 6371, 1, 0, 0, 0, 6505, 6378, 1, 0, 0, 0, 6505, 6387, 1, 0, 0, 0, 6505, 6394, 1, 0, 0, 0, 6505, 6403, 1, 0, 0, 0, 6505, 6412, 1, 0, 0, 0, 6505, 6421, 1, 0, 0, 0, 6505, 6430, 1, 0, 0, 0, 6505, 6437, 1, 0, 0, 0, 6505, 6446, 1, 0, 0, 0, 6505, 6453, 1, 0, 0, 0, 6505, 6462, 1, 0, 0, 0, 6505, 6470, 1, 0, 0, 0, 6505, 6480, 1, 0, 0, 0, 6505, 6488, 1, 0, 0, 0, 6505, 6498, 1, 0, 0, 0, 6506, 667, 1, 0, 0, 0, 6507, 6508, 5, 138, 0, 0, 6508, 6509, 5, 271, 0, 0, 6509, 6510, 3, 624, 312, 0, 6510, 6511, 5, 326, 0, 0, 6511, 6512, 5, 2, 0, 0, 6512, 6513, 3, 670, 335, 0, 6513, 6514, 5, 3, 0, 0, 6514, 669, 1, 0, 0, 0, 6515, 6520, 3, 672, 336, 0, 6516, 6517, 5, 6, 0, 0, 6517, 6519, 3, 672, 336, 0, 6518, 6516, 1, 0, 0, 0, 6519, 6522, 1, 0, 0, 0, 6520, 6518, 1, 0, 0, 0, 6520, 6521, 1, 0, 0, 0, 6521, 671, 1, 0, 0, 0, 6522, 6520, 1, 0, 0, 0, 6523, 6524, 3, 1262, 631, 0, 6524, 6525, 5, 10, 0, 0, 6525, 6526, 5, 400, 0, 0, 6526, 6532, 1, 0, 0, 0, 6527, 6528, 3, 1262, 631, 0, 6528, 6529, 5, 10, 0, 0, 6529, 6530, 3, 674, 337, 0, 6530, 6532, 1, 0, 0, 0, 6531, 6523, 1, 0, 0, 0, 6531, 6527, 1, 0, 0, 0, 6532, 673, 1, 0, 0, 0, 6533, 6539, 3, 584, 292, 0, 6534, 6539, 3, 1274, 637, 0, 6535, 6539, 3, 1160, 580, 0, 6536, 6539, 3, 270, 135, 0, 6537, 6539, 3, 1240, 620, 0, 6538, 6533, 1, 0, 0, 0, 6538, 6534, 1, 0, 0, 0, 6538, 6535, 1, 0, 0, 0, 6538, 6536, 1, 0, 0, 0, 6538, 6537, 1, 0, 0, 0, 6539, 675, 1, 0, 0, 0, 6540, 6541, 5, 138, 0, 0, 6541, 6542, 5, 353, 0, 0, 6542, 6543, 3, 478, 239, 0, 6543, 6544, 5, 326, 0, 0, 6544, 6545, 5, 2, 0, 0, 6545, 6546, 3, 670, 335, 0, 6546, 6547, 5, 3, 0, 0, 6547, 677, 1, 0, 0, 0, 6548, 6549, 5, 138, 0, 0, 6549, 6550, 5, 136, 0, 0, 6550, 6551, 3, 590, 295, 0, 6551, 6552, 5, 275, 0, 0, 6552, 6553, 5, 94, 0, 0, 6553, 6554, 3, 1250, 625, 0, 6554, 6732, 1, 0, 0, 0, 6555, 6556, 5, 138, 0, 0, 6556, 6557, 5, 108, 0, 0, 6557, 6558, 3, 478, 239, 0, 6558, 6559, 5, 275, 0, 0, 6559, 6560, 5, 94, 0, 0, 6560, 6561, 3, 1250, 625, 0, 6561, 6732, 1, 0, 0, 0, 6562, 6563, 5, 138, 0, 0, 6563, 6564, 5, 168, 0, 0, 6564, 6565, 3, 478, 239, 0, 6565, 6566, 5, 275, 0, 0, 6566, 6567, 5, 94, 0, 0, 6567, 6568, 3, 1250, 625, 0, 6568, 6732, 1, 0, 0, 0, 6569, 6570, 5, 138, 0, 0, 6570, 6571, 5, 175, 0, 0, 6571, 6572, 3, 1222, 611, 0, 6572, 6573, 5, 275, 0, 0, 6573, 6574, 5, 94, 0, 0, 6574, 6575, 3, 1250, 625, 0, 6575, 6732, 1, 0, 0, 0, 6576, 6577, 5, 138, 0, 0, 6577, 6578, 5, 189, 0, 0, 6578, 6579, 3, 478, 239, 0, 6579, 6580, 5, 275, 0, 0, 6580, 6581, 5, 94, 0, 0, 6581, 6582, 3, 1250, 625, 0, 6582, 6732, 1, 0, 0, 0, 6583, 6584, 5, 138, 0, 0, 6584, 6585, 5, 211, 0, 0, 6585, 6586, 3, 570, 285, 0, 6586, 6587, 5, 275, 0, 0, 6587, 6588, 5, 94, 0, 0, 6588, 6589, 3, 1250, 625, 0, 6589, 6732, 1, 0, 0, 0, 6590, 6591, 5, 138, 0, 0, 6591, 6592, 3, 282, 141, 0, 6592, 6593, 5, 238, 0, 0, 6593, 6594, 3, 1222, 611, 0, 6594, 6595, 5, 275, 0, 0, 6595, 6596, 5, 94, 0, 0, 6596, 6597, 3, 1250, 625, 0, 6597, 6732, 1, 0, 0, 0, 6598, 6599, 5, 138, 0, 0, 6599, 6600, 5, 239, 0, 0, 6600, 6601, 5, 267, 0, 0, 6601, 6602, 3, 270, 135, 0, 6602, 6603, 5, 275, 0, 0, 6603, 6604, 5, 94, 0, 0, 6604, 6605, 3, 1250, 625, 0, 6605, 6732, 1, 0, 0, 0, 6606, 6607, 5, 138, 0, 0, 6607, 6608, 5, 271, 0, 0, 6608, 6609, 3, 624, 312, 0, 6609, 6610, 5, 275, 0, 0, 6610, 6611, 5, 94, 0, 0, 6611, 6612, 3, 1250, 625, 0, 6612, 6732, 1, 0, 0, 0, 6613, 6614, 5, 138, 0, 0, 6614, 6615, 5, 271, 0, 0, 6615, 6616, 5, 156, 0, 0, 6616, 6617, 3, 478, 239, 0, 6617, 6618, 5, 100, 0, 0, 6618, 6619, 3, 1222, 611, 0, 6619, 6620, 5, 275, 0, 0, 6620, 6621, 5, 94, 0, 0, 6621, 6622, 3, 1250, 625, 0, 6622, 6732, 1, 0, 0, 0, 6623, 6624, 5, 138, 0, 0, 6624, 6625, 5, 271, 0, 0, 6625, 6626, 5, 206, 0, 0, 6626, 6627, 3, 478, 239, 0, 6627, 6628, 5, 100, 0, 0, 6628, 6629, 3, 1222, 611, 0, 6629, 6630, 5, 275, 0, 0, 6630, 6631, 5, 94, 0, 0, 6631, 6632, 3, 1250, 625, 0, 6632, 6732, 1, 0, 0, 0, 6633, 6634, 5, 138, 0, 0, 6634, 6635, 5, 289, 0, 0, 6635, 6636, 3, 570, 285, 0, 6636, 6637, 5, 275, 0, 0, 6637, 6638, 5, 94, 0, 0, 6638, 6639, 3, 1250, 625, 0, 6639, 6732, 1, 0, 0, 0, 6640, 6641, 5, 138, 0, 0, 6641, 6642, 5, 442, 0, 0, 6642, 6643, 3, 570, 285, 0, 6643, 6644, 5, 275, 0, 0, 6644, 6645, 5, 94, 0, 0, 6645, 6646, 3, 1250, 625, 0, 6646, 6732, 1, 0, 0, 0, 6647, 6648, 5, 138, 0, 0, 6648, 6649, 5, 316, 0, 0, 6649, 6650, 3, 1222, 611, 0, 6650, 6651, 5, 275, 0, 0, 6651, 6652, 5, 94, 0, 0, 6652, 6653, 3, 1250, 625, 0, 6653, 6732, 1, 0, 0, 0, 6654, 6655, 5, 138, 0, 0, 6655, 6656, 5, 353, 0, 0, 6656, 6657, 3, 478, 239, 0, 6657, 6658, 5, 275, 0, 0, 6658, 6659, 5, 94, 0, 0, 6659, 6660, 3, 1250, 625, 0, 6660, 6732, 1, 0, 0, 0, 6661, 6662, 5, 138, 0, 0, 6662, 6663, 5, 344, 0, 0, 6663, 6664, 3, 1222, 611, 0, 6664, 6665, 5, 275, 0, 0, 6665, 6666, 5, 94, 0, 0, 6666, 6667, 3, 1250, 625, 0, 6667, 6732, 1, 0, 0, 0, 6668, 6669, 5, 138, 0, 0, 6669, 6670, 5, 335, 0, 0, 6670, 6671, 3, 478, 239, 0, 6671, 6672, 5, 275, 0, 0, 6672, 6673, 5, 94, 0, 0, 6673, 6674, 3, 1250, 625, 0, 6674, 6732, 1, 0, 0, 0, 6675, 6676, 5, 138, 0, 0, 6676, 6677, 5, 348, 0, 0, 6677, 6678, 5, 318, 0, 0, 6678, 6679, 5, 185, 0, 0, 6679, 6680, 3, 478, 239, 0, 6680, 6681, 5, 275, 0, 0, 6681, 6682, 5, 94, 0, 0, 6682, 6683, 3, 1250, 625, 0, 6683, 6732, 1, 0, 0, 0, 6684, 6685, 5, 138, 0, 0, 6685, 6686, 5, 348, 0, 0, 6686, 6687, 5, 318, 0, 0, 6687, 6688, 5, 163, 0, 0, 6688, 6689, 3, 478, 239, 0, 6689, 6690, 5, 275, 0, 0, 6690, 6691, 5, 94, 0, 0, 6691, 6692, 3, 1250, 625, 0, 6692, 6732, 1, 0, 0, 0, 6693, 6694, 5, 138, 0, 0, 6694, 6695, 5, 63, 0, 0, 6695, 6696, 5, 174, 0, 0, 6696, 6697, 5, 374, 0, 0, 6697, 6698, 3, 1222, 611, 0, 6698, 6699, 5, 275, 0, 0, 6699, 6700, 5, 94, 0, 0, 6700, 6701, 3, 1250, 625, 0, 6701, 6732, 1, 0, 0, 0, 6702, 6703, 5, 138, 0, 0, 6703, 6704, 5, 324, 0, 0, 6704, 6705, 3, 1222, 611, 0, 6705, 6706, 5, 275, 0, 0, 6706, 6707, 5, 94, 0, 0, 6707, 6708, 3, 1250, 625, 0, 6708, 6732, 1, 0, 0, 0, 6709, 6710, 5, 138, 0, 0, 6710, 6711, 5, 198, 0, 0, 6711, 6712, 5, 350, 0, 0, 6712, 6713, 3, 1222, 611, 0, 6713, 6714, 5, 275, 0, 0, 6714, 6715, 5, 94, 0, 0, 6715, 6716, 3, 1250, 625, 0, 6716, 6732, 1, 0, 0, 0, 6717, 6718, 5, 138, 0, 0, 6718, 6719, 5, 452, 0, 0, 6719, 6720, 3, 1222, 611, 0, 6720, 6721, 5, 275, 0, 0, 6721, 6722, 5, 94, 0, 0, 6722, 6723, 3, 1250, 625, 0, 6723, 6732, 1, 0, 0, 0, 6724, 6725, 5, 138, 0, 0, 6725, 6726, 5, 451, 0, 0, 6726, 6727, 3, 1222, 611, 0, 6727, 6728, 5, 275, 0, 0, 6728, 6729, 5, 94, 0, 0, 6729, 6730, 3, 1250, 625, 0, 6730, 6732, 1, 0, 0, 0, 6731, 6548, 1, 0, 0, 0, 6731, 6555, 1, 0, 0, 0, 6731, 6562, 1, 0, 0, 0, 6731, 6569, 1, 0, 0, 0, 6731, 6576, 1, 0, 0, 0, 6731, 6583, 1, 0, 0, 0, 6731, 6590, 1, 0, 0, 0, 6731, 6598, 1, 0, 0, 0, 6731, 6606, 1, 0, 0, 0, 6731, 6613, 1, 0, 0, 0, 6731, 6623, 1, 0, 0, 0, 6731, 6633, 1, 0, 0, 0, 6731, 6640, 1, 0, 0, 0, 6731, 6647, 1, 0, 0, 0, 6731, 6654, 1, 0, 0, 0, 6731, 6661, 1, 0, 0, 0, 6731, 6668, 1, 0, 0, 0, 6731, 6675, 1, 0, 0, 0, 6731, 6684, 1, 0, 0, 0, 6731, 6693, 1, 0, 0, 0, 6731, 6702, 1, 0, 0, 0, 6731, 6709, 1, 0, 0, 0, 6731, 6717, 1, 0, 0, 0, 6731, 6724, 1, 0, 0, 0, 6732, 679, 1, 0, 0, 0, 6733, 6734, 5, 46, 0, 0, 6734, 6735, 5, 452, 0, 0, 6735, 6736, 3, 1222, 611, 0, 6736, 6737, 3, 682, 341, 0, 6737, 6738, 3, 604, 302, 0, 6738, 681, 1, 0, 0, 0, 6739, 6742, 3, 684, 342, 0, 6740, 6742, 1, 0, 0, 0, 6741, 6739, 1, 0, 0, 0, 6741, 6740, 1, 0, 0, 0, 6742, 683, 1, 0, 0, 0, 6743, 6744, 5, 62, 0, 0, 6744, 6745, 5, 92, 0, 0, 6745, 6750, 3, 968, 484, 0, 6746, 6747, 5, 62, 0, 0, 6747, 6748, 5, 30, 0, 0, 6748, 6750, 5, 343, 0, 0, 6749, 6743, 1, 0, 0, 0, 6749, 6746, 1, 0, 0, 0, 6750, 685, 1, 0, 0, 0, 6751, 6752, 5, 138, 0, 0, 6752, 6753, 5, 452, 0, 0, 6753, 6754, 3, 1222, 611, 0, 6754, 6755, 5, 326, 0, 0, 6755, 6756, 3, 424, 212, 0, 6756, 6779, 1, 0, 0, 0, 6757, 6758, 5, 138, 0, 0, 6758, 6759, 5, 452, 0, 0, 6759, 6760, 3, 1222, 611, 0, 6760, 6761, 5, 133, 0, 0, 6761, 6762, 5, 92, 0, 0, 6762, 6763, 3, 968, 484, 0, 6763, 6779, 1, 0, 0, 0, 6764, 6765, 5, 138, 0, 0, 6765, 6766, 5, 452, 0, 0, 6766, 6767, 3, 1222, 611, 0, 6767, 6768, 5, 326, 0, 0, 6768, 6769, 5, 92, 0, 0, 6769, 6770, 3, 968, 484, 0, 6770, 6779, 1, 0, 0, 0, 6771, 6772, 5, 138, 0, 0, 6772, 6773, 5, 452, 0, 0, 6773, 6774, 3, 1222, 611, 0, 6774, 6775, 5, 191, 0, 0, 6775, 6776, 5, 92, 0, 0, 6776, 6777, 3, 968, 484, 0, 6777, 6779, 1, 0, 0, 0, 6778, 6751, 1, 0, 0, 0, 6778, 6757, 1, 0, 0, 0, 6778, 6764, 1, 0, 0, 0, 6778, 6771, 1, 0, 0, 0, 6779, 687, 1, 0, 0, 0, 6780, 6781, 5, 46, 0, 0, 6781, 6782, 5, 451, 0, 0, 6782, 6783, 3, 1222, 611, 0, 6783, 6784, 5, 164, 0, 0, 6784, 6785, 3, 1240, 620, 0, 6785, 6786, 5, 452, 0, 0, 6786, 6787, 3, 690, 345, 0, 6787, 6788, 3, 604, 302, 0, 6788, 689, 1, 0, 0, 0, 6789, 6794, 3, 692, 346, 0, 6790, 6791, 5, 6, 0, 0, 6791, 6793, 3, 692, 346, 0, 6792, 6790, 1, 0, 0, 0, 6793, 6796, 1, 0, 0, 0, 6794, 6792, 1, 0, 0, 0, 6794, 6795, 1, 0, 0, 0, 6795, 691, 1, 0, 0, 0, 6796, 6794, 1, 0, 0, 0, 6797, 6798, 3, 1262, 631, 0, 6798, 693, 1, 0, 0, 0, 6799, 6800, 5, 138, 0, 0, 6800, 6801, 5, 451, 0, 0, 6801, 6802, 3, 1222, 611, 0, 6802, 6803, 5, 326, 0, 0, 6803, 6804, 3, 424, 212, 0, 6804, 6837, 1, 0, 0, 0, 6805, 6806, 5, 138, 0, 0, 6806, 6807, 5, 451, 0, 0, 6807, 6808, 3, 1222, 611, 0, 6808, 6809, 5, 164, 0, 0, 6809, 6810, 3, 1240, 620, 0, 6810, 6837, 1, 0, 0, 0, 6811, 6812, 5, 138, 0, 0, 6812, 6813, 5, 451, 0, 0, 6813, 6814, 3, 1222, 611, 0, 6814, 6815, 5, 298, 0, 0, 6815, 6816, 5, 452, 0, 0, 6816, 6817, 3, 604, 302, 0, 6817, 6837, 1, 0, 0, 0, 6818, 6819, 5, 138, 0, 0, 6819, 6820, 5, 451, 0, 0, 6820, 6821, 3, 1222, 611, 0, 6821, 6822, 5, 326, 0, 0, 6822, 6823, 5, 452, 0, 0, 6823, 6824, 3, 690, 345, 0, 6824, 6825, 3, 604, 302, 0, 6825, 6837, 1, 0, 0, 0, 6826, 6827, 5, 138, 0, 0, 6827, 6828, 5, 451, 0, 0, 6828, 6829, 3, 1222, 611, 0, 6829, 6830, 5, 193, 0, 0, 6830, 6837, 1, 0, 0, 0, 6831, 6832, 5, 138, 0, 0, 6832, 6833, 5, 451, 0, 0, 6833, 6834, 3, 1222, 611, 0, 6834, 6835, 5, 186, 0, 0, 6835, 6837, 1, 0, 0, 0, 6836, 6799, 1, 0, 0, 0, 6836, 6805, 1, 0, 0, 0, 6836, 6811, 1, 0, 0, 0, 6836, 6818, 1, 0, 0, 0, 6836, 6826, 1, 0, 0, 0, 6836, 6831, 1, 0, 0, 0, 6837, 695, 1, 0, 0, 0, 6838, 6839, 5, 191, 0, 0, 6839, 6840, 5, 451, 0, 0, 6840, 6841, 3, 1222, 611, 0, 6841, 6842, 3, 106, 53, 0, 6842, 6851, 1, 0, 0, 0, 6843, 6844, 5, 191, 0, 0, 6844, 6845, 5, 451, 0, 0, 6845, 6846, 5, 220, 0, 0, 6846, 6847, 5, 389, 0, 0, 6847, 6848, 3, 1222, 611, 0, 6848, 6849, 3, 106, 53, 0, 6849, 6851, 1, 0, 0, 0, 6850, 6838, 1, 0, 0, 0, 6850, 6843, 1, 0, 0, 0, 6851, 697, 1, 0, 0, 0, 6852, 6853, 5, 46, 0, 0, 6853, 6854, 3, 564, 282, 0, 6854, 6855, 5, 314, 0, 0, 6855, 6856, 3, 1222, 611, 0, 6856, 6857, 5, 36, 0, 0, 6857, 6858, 5, 80, 0, 0, 6858, 6859, 3, 708, 354, 0, 6859, 6860, 5, 94, 0, 0, 6860, 6861, 3, 1218, 609, 0, 6861, 6862, 3, 982, 491, 0, 6862, 6863, 5, 57, 0, 0, 6863, 6864, 3, 710, 355, 0, 6864, 6865, 3, 700, 350, 0, 6865, 699, 1, 0, 0, 0, 6866, 6873, 5, 263, 0, 0, 6867, 6873, 3, 704, 352, 0, 6868, 6869, 5, 2, 0, 0, 6869, 6870, 3, 702, 351, 0, 6870, 6871, 5, 3, 0, 0, 6871, 6873, 1, 0, 0, 0, 6872, 6866, 1, 0, 0, 0, 6872, 6867, 1, 0, 0, 0, 6872, 6868, 1, 0, 0, 0, 6873, 701, 1, 0, 0, 0, 6874, 6879, 3, 706, 353, 0, 6875, 6876, 5, 7, 0, 0, 6876, 6878, 3, 706, 353, 0, 6877, 6875, 1, 0, 0, 0, 6878, 6881, 1, 0, 0, 0, 6879, 6877, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 703, 1, 0, 0, 0, 6881, 6879, 1, 0, 0, 0, 6882, 6888, 3, 868, 434, 0, 6883, 6888, 3, 814, 407, 0, 6884, 6888, 3, 854, 427, 0, 6885, 6888, 3, 840, 420, 0, 6886, 6888, 3, 712, 356, 0, 6887, 6882, 1, 0, 0, 0, 6887, 6883, 1, 0, 0, 0, 6887, 6884, 1, 0, 0, 0, 6887, 6885, 1, 0, 0, 0, 6887, 6886, 1, 0, 0, 0, 6888, 705, 1, 0, 0, 0, 6889, 6892, 3, 704, 352, 0, 6890, 6892, 1, 0, 0, 0, 6891, 6889, 1, 0, 0, 0, 6891, 6890, 1, 0, 0, 0, 6892, 707, 1, 0, 0, 0, 6893, 6894, 7, 31, 0, 0, 6894, 709, 1, 0, 0, 0, 6895, 6899, 5, 233, 0, 0, 6896, 6899, 5, 137, 0, 0, 6897, 6899, 1, 0, 0, 0, 6898, 6895, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6898, 6897, 1, 0, 0, 0, 6899, 711, 1, 0, 0, 0, 6900, 6901, 5, 264, 0, 0, 6901, 6902, 3, 1254, 627, 0, 6902, 6903, 3, 714, 357, 0, 6903, 713, 1, 0, 0, 0, 6904, 6905, 5, 6, 0, 0, 6905, 6908, 3, 1240, 620, 0, 6906, 6908, 1, 0, 0, 0, 6907, 6904, 1, 0, 0, 0, 6907, 6906, 1, 0, 0, 0, 6908, 715, 1, 0, 0, 0, 6909, 6910, 5, 243, 0, 0, 6910, 6911, 3, 1254, 627, 0, 6911, 717, 1, 0, 0, 0, 6912, 6913, 5, 359, 0, 0, 6913, 6917, 3, 1254, 627, 0, 6914, 6915, 5, 359, 0, 0, 6915, 6917, 5, 9, 0, 0, 6916, 6912, 1, 0, 0, 0, 6916, 6914, 1, 0, 0, 0, 6917, 719, 1, 0, 0, 0, 6918, 6919, 5, 129, 0, 0, 6919, 6920, 3, 722, 361, 0, 6920, 6921, 3, 728, 364, 0, 6921, 6972, 1, 0, 0, 0, 6922, 6923, 5, 146, 0, 0, 6923, 6925, 3, 722, 361, 0, 6924, 6926, 3, 726, 363, 0, 6925, 6924, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 6972, 1, 0, 0, 0, 6927, 6928, 5, 333, 0, 0, 6928, 6930, 5, 349, 0, 0, 6929, 6931, 3, 726, 363, 0, 6930, 6929, 1, 0, 0, 0, 6930, 6931, 1, 0, 0, 0, 6931, 6972, 1, 0, 0, 0, 6932, 6933, 5, 161, 0, 0, 6933, 6934, 3, 722, 361, 0, 6934, 6935, 3, 728, 364, 0, 6935, 6972, 1, 0, 0, 0, 6936, 6937, 5, 454, 0, 0, 6937, 6938, 3, 722, 361, 0, 6938, 6939, 3, 728, 364, 0, 6939, 6972, 1, 0, 0, 0, 6940, 6941, 5, 312, 0, 0, 6941, 6942, 3, 722, 361, 0, 6942, 6943, 3, 728, 364, 0, 6943, 6972, 1, 0, 0, 0, 6944, 6945, 5, 315, 0, 0, 6945, 6972, 3, 1254, 627, 0, 6946, 6947, 5, 301, 0, 0, 6947, 6948, 5, 315, 0, 0, 6948, 6972, 3, 1254, 627, 0, 6949, 6950, 5, 301, 0, 0, 6950, 6972, 3, 1254, 627, 0, 6951, 6952, 5, 312, 0, 0, 6952, 6953, 3, 722, 361, 0, 6953, 6954, 5, 94, 0, 0, 6954, 6955, 5, 315, 0, 0, 6955, 6956, 3, 1254, 627, 0, 6956, 6972, 1, 0, 0, 0, 6957, 6958, 5, 312, 0, 0, 6958, 6959, 3, 722, 361, 0, 6959, 6960, 5, 94, 0, 0, 6960, 6961, 3, 1254, 627, 0, 6961, 6972, 1, 0, 0, 0, 6962, 6963, 5, 283, 0, 0, 6963, 6964, 5, 349, 0, 0, 6964, 6972, 3, 1240, 620, 0, 6965, 6966, 5, 161, 0, 0, 6966, 6967, 5, 284, 0, 0, 6967, 6972, 3, 1240, 620, 0, 6968, 6969, 5, 312, 0, 0, 6969, 6970, 5, 284, 0, 0, 6970, 6972, 3, 1240, 620, 0, 6971, 6918, 1, 0, 0, 0, 6971, 6922, 1, 0, 0, 0, 6971, 6927, 1, 0, 0, 0, 6971, 6932, 1, 0, 0, 0, 6971, 6936, 1, 0, 0, 0, 6971, 6940, 1, 0, 0, 0, 6971, 6944, 1, 0, 0, 0, 6971, 6946, 1, 0, 0, 0, 6971, 6949, 1, 0, 0, 0, 6971, 6951, 1, 0, 0, 0, 6971, 6957, 1, 0, 0, 0, 6971, 6962, 1, 0, 0, 0, 6971, 6965, 1, 0, 0, 0, 6971, 6968, 1, 0, 0, 0, 6972, 721, 1, 0, 0, 0, 6973, 6977, 5, 373, 0, 0, 6974, 6977, 5, 349, 0, 0, 6975, 6977, 1, 0, 0, 0, 6976, 6973, 1, 0, 0, 0, 6976, 6974, 1, 0, 0, 0, 6976, 6975, 1, 0, 0, 0, 6977, 723, 1, 0, 0, 0, 6978, 6979, 5, 235, 0, 0, 6979, 6980, 5, 242, 0, 0, 6980, 6989, 3, 62, 31, 0, 6981, 6982, 5, 293, 0, 0, 6982, 6989, 5, 81, 0, 0, 6983, 6984, 5, 293, 0, 0, 6984, 6989, 5, 375, 0, 0, 6985, 6989, 5, 54, 0, 0, 6986, 6987, 5, 77, 0, 0, 6987, 6989, 5, 54, 0, 0, 6988, 6978, 1, 0, 0, 0, 6988, 6981, 1, 0, 0, 0, 6988, 6983, 1, 0, 0, 0, 6988, 6985, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6989, 725, 1, 0, 0, 0, 6990, 6997, 3, 724, 362, 0, 6991, 6993, 5, 6, 0, 0, 6992, 6991, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 6994, 1, 0, 0, 0, 6994, 6996, 3, 724, 362, 0, 6995, 6992, 1, 0, 0, 0, 6996, 6999, 1, 0, 0, 0, 6997, 6995, 1, 0, 0, 0, 6997, 6998, 1, 0, 0, 0, 6998, 727, 1, 0, 0, 0, 6999, 6997, 1, 0, 0, 0, 7000, 7002, 5, 33, 0, 0, 7001, 7003, 5, 262, 0, 0, 7002, 7001, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 7004, 1, 0, 0, 0, 7004, 7007, 5, 153, 0, 0, 7005, 7007, 1, 0, 0, 0, 7006, 7000, 1, 0, 0, 0, 7006, 7005, 1, 0, 0, 0, 7007, 729, 1, 0, 0, 0, 7008, 7011, 5, 46, 0, 0, 7009, 7010, 5, 82, 0, 0, 7010, 7012, 5, 304, 0, 0, 7011, 7009, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 7027, 3, 160, 80, 0, 7014, 7015, 5, 369, 0, 0, 7015, 7016, 3, 1218, 609, 0, 7016, 7017, 3, 198, 99, 0, 7017, 7018, 3, 116, 58, 0, 7018, 7028, 1, 0, 0, 0, 7019, 7020, 5, 296, 0, 0, 7020, 7021, 5, 369, 0, 0, 7021, 7022, 3, 1218, 609, 0, 7022, 7023, 5, 2, 0, 0, 7023, 7024, 3, 200, 100, 0, 7024, 7025, 5, 3, 0, 0, 7025, 7026, 3, 116, 58, 0, 7026, 7028, 1, 0, 0, 0, 7027, 7014, 1, 0, 0, 0, 7027, 7019, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 7030, 5, 36, 0, 0, 7030, 7031, 3, 868, 434, 0, 7031, 7032, 3, 732, 366, 0, 7032, 731, 1, 0, 0, 0, 7033, 7035, 5, 105, 0, 0, 7034, 7036, 7, 32, 0, 0, 7035, 7034, 1, 0, 0, 0, 7035, 7036, 1, 0, 0, 0, 7036, 7037, 1, 0, 0, 0, 7037, 7038, 5, 42, 0, 0, 7038, 7041, 5, 272, 0, 0, 7039, 7041, 1, 0, 0, 0, 7040, 7033, 1, 0, 0, 0, 7040, 7039, 1, 0, 0, 0, 7041, 733, 1, 0, 0, 0, 7042, 7043, 5, 244, 0, 0, 7043, 7044, 3, 1226, 613, 0, 7044, 735, 1, 0, 0, 0, 7045, 7046, 5, 46, 0, 0, 7046, 7047, 5, 175, 0, 0, 7047, 7048, 3, 1222, 611, 0, 7048, 7049, 3, 14, 7, 0, 7049, 7050, 3, 738, 369, 0, 7050, 737, 1, 0, 0, 0, 7051, 7053, 3, 740, 370, 0, 7052, 7051, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7052, 1, 0, 0, 0, 7054, 7055, 1, 0, 0, 0, 7055, 7058, 1, 0, 0, 0, 7056, 7058, 1, 0, 0, 0, 7057, 7052, 1, 0, 0, 0, 7057, 7056, 1, 0, 0, 0, 7058, 739, 1, 0, 0, 0, 7059, 7061, 3, 742, 371, 0, 7060, 7062, 5, 10, 0, 0, 7061, 7060, 1, 0, 0, 0, 7061, 7062, 1, 0, 0, 0, 7062, 7066, 1, 0, 0, 0, 7063, 7067, 3, 1246, 623, 0, 7064, 7067, 3, 64, 32, 0, 7065, 7067, 5, 53, 0, 0, 7066, 7063, 1, 0, 0, 0, 7066, 7064, 1, 0, 0, 0, 7066, 7065, 1, 0, 0, 0, 7067, 741, 1, 0, 0, 0, 7068, 7077, 3, 1264, 632, 0, 7069, 7070, 5, 164, 0, 0, 7070, 7077, 5, 74, 0, 0, 7071, 7077, 5, 194, 0, 0, 7072, 7077, 5, 246, 0, 0, 7073, 7077, 5, 275, 0, 0, 7074, 7077, 5, 344, 0, 0, 7075, 7077, 5, 346, 0, 0, 7076, 7068, 1, 0, 0, 0, 7076, 7069, 1, 0, 0, 0, 7076, 7071, 1, 0, 0, 0, 7076, 7072, 1, 0, 0, 0, 7076, 7073, 1, 0, 0, 0, 7076, 7074, 1, 0, 0, 0, 7076, 7075, 1, 0, 0, 0, 7077, 743, 1, 0, 0, 0, 7078, 7079, 5, 138, 0, 0, 7079, 7080, 5, 175, 0, 0, 7080, 7087, 3, 1222, 611, 0, 7081, 7082, 5, 105, 0, 0, 7082, 7088, 3, 738, 369, 0, 7083, 7088, 3, 738, 369, 0, 7084, 7085, 5, 326, 0, 0, 7085, 7086, 5, 344, 0, 0, 7086, 7088, 3, 1222, 611, 0, 7087, 7081, 1, 0, 0, 0, 7087, 7083, 1, 0, 0, 0, 7087, 7084, 1, 0, 0, 0, 7088, 745, 1, 0, 0, 0, 7089, 7090, 5, 138, 0, 0, 7090, 7091, 5, 175, 0, 0, 7091, 7092, 3, 1222, 611, 0, 7092, 7093, 3, 78, 39, 0, 7093, 747, 1, 0, 0, 0, 7094, 7095, 5, 191, 0, 0, 7095, 7098, 5, 175, 0, 0, 7096, 7097, 5, 220, 0, 0, 7097, 7099, 5, 389, 0, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7099, 1, 0, 0, 0, 7099, 7100, 1, 0, 0, 0, 7100, 7113, 3, 1222, 611, 0, 7101, 7102, 3, 14, 7, 0, 7102, 7103, 5, 2, 0, 0, 7103, 7108, 5, 209, 0, 0, 7104, 7105, 5, 6, 0, 0, 7105, 7107, 5, 209, 0, 0, 7106, 7104, 1, 0, 0, 0, 7107, 7110, 1, 0, 0, 0, 7108, 7106, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7111, 1, 0, 0, 0, 7110, 7108, 1, 0, 0, 0, 7111, 7112, 5, 3, 0, 0, 7112, 7114, 1, 0, 0, 0, 7113, 7101, 1, 0, 0, 0, 7113, 7114, 1, 0, 0, 0, 7114, 749, 1, 0, 0, 0, 7115, 7116, 5, 138, 0, 0, 7116, 7117, 5, 108, 0, 0, 7117, 7118, 3, 478, 239, 0, 7118, 7119, 5, 298, 0, 0, 7119, 7120, 5, 368, 0, 0, 7120, 751, 1, 0, 0, 0, 7121, 7122, 5, 138, 0, 0, 7122, 7123, 5, 342, 0, 0, 7123, 7124, 7, 33, 0, 0, 7124, 7125, 3, 52, 26, 0, 7125, 753, 1, 0, 0, 0, 7126, 7127, 5, 46, 0, 0, 7127, 7128, 5, 189, 0, 0, 7128, 7129, 3, 478, 239, 0, 7129, 7130, 3, 758, 379, 0, 7130, 7131, 3, 1004, 502, 0, 7131, 7132, 3, 178, 89, 0, 7132, 755, 1, 0, 0, 0, 7133, 7134, 5, 138, 0, 0, 7134, 7135, 5, 189, 0, 0, 7135, 7157, 3, 478, 239, 0, 7136, 7158, 3, 104, 52, 0, 7137, 7138, 5, 191, 0, 0, 7138, 7139, 5, 77, 0, 0, 7139, 7158, 5, 78, 0, 0, 7140, 7141, 5, 326, 0, 0, 7141, 7142, 5, 77, 0, 0, 7142, 7158, 5, 78, 0, 0, 7143, 7144, 5, 133, 0, 0, 7144, 7158, 3, 194, 97, 0, 7145, 7146, 5, 191, 0, 0, 7146, 7149, 5, 45, 0, 0, 7147, 7148, 5, 220, 0, 0, 7148, 7150, 5, 389, 0, 0, 7149, 7147, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 3, 1222, 611, 0, 7152, 7153, 3, 106, 53, 0, 7153, 7158, 1, 0, 0, 0, 7154, 7155, 5, 365, 0, 0, 7155, 7156, 5, 45, 0, 0, 7156, 7158, 3, 1222, 611, 0, 7157, 7136, 1, 0, 0, 0, 7157, 7137, 1, 0, 0, 0, 7157, 7140, 1, 0, 0, 0, 7157, 7143, 1, 0, 0, 0, 7157, 7145, 1, 0, 0, 0, 7157, 7154, 1, 0, 0, 0, 7158, 757, 1, 0, 0, 0, 7159, 7162, 5, 36, 0, 0, 7160, 7162, 1, 0, 0, 0, 7161, 7159, 1, 0, 0, 0, 7161, 7160, 1, 0, 0, 0, 7162, 759, 1, 0, 0, 0, 7163, 7164, 5, 138, 0, 0, 7164, 7165, 5, 348, 0, 0, 7165, 7166, 5, 318, 0, 0, 7166, 7167, 5, 185, 0, 0, 7167, 7168, 3, 478, 239, 0, 7168, 7169, 3, 424, 212, 0, 7169, 761, 1, 0, 0, 0, 7170, 7171, 5, 138, 0, 0, 7171, 7172, 5, 348, 0, 0, 7172, 7173, 5, 318, 0, 0, 7173, 7174, 5, 163, 0, 0, 7174, 7175, 3, 478, 239, 0, 7175, 7176, 5, 133, 0, 0, 7176, 7177, 5, 248, 0, 0, 7177, 7178, 5, 62, 0, 0, 7178, 7179, 3, 1220, 610, 0, 7179, 7180, 5, 105, 0, 0, 7180, 7181, 3, 476, 238, 0, 7181, 7243, 1, 0, 0, 0, 7182, 7183, 5, 138, 0, 0, 7183, 7184, 5, 348, 0, 0, 7184, 7185, 5, 318, 0, 0, 7185, 7186, 5, 163, 0, 0, 7186, 7187, 3, 478, 239, 0, 7187, 7188, 5, 138, 0, 0, 7188, 7189, 5, 248, 0, 0, 7189, 7190, 5, 62, 0, 0, 7190, 7191, 3, 1220, 610, 0, 7191, 7192, 5, 105, 0, 0, 7192, 7193, 3, 476, 238, 0, 7193, 7243, 1, 0, 0, 0, 7194, 7195, 5, 138, 0, 0, 7195, 7196, 5, 348, 0, 0, 7196, 7197, 5, 318, 0, 0, 7197, 7198, 5, 163, 0, 0, 7198, 7199, 3, 478, 239, 0, 7199, 7200, 5, 138, 0, 0, 7200, 7201, 5, 248, 0, 0, 7201, 7202, 5, 304, 0, 0, 7202, 7203, 3, 478, 239, 0, 7203, 7204, 5, 105, 0, 0, 7204, 7205, 3, 478, 239, 0, 7205, 7243, 1, 0, 0, 0, 7206, 7207, 5, 138, 0, 0, 7207, 7208, 5, 348, 0, 0, 7208, 7209, 5, 318, 0, 0, 7209, 7210, 5, 163, 0, 0, 7210, 7211, 3, 478, 239, 0, 7211, 7212, 5, 138, 0, 0, 7212, 7213, 5, 248, 0, 0, 7213, 7214, 5, 62, 0, 0, 7214, 7215, 3, 1220, 610, 0, 7215, 7216, 5, 304, 0, 0, 7216, 7217, 3, 478, 239, 0, 7217, 7218, 5, 105, 0, 0, 7218, 7219, 3, 478, 239, 0, 7219, 7243, 1, 0, 0, 0, 7220, 7221, 5, 138, 0, 0, 7221, 7222, 5, 348, 0, 0, 7222, 7223, 5, 318, 0, 0, 7223, 7224, 5, 163, 0, 0, 7224, 7225, 3, 478, 239, 0, 7225, 7226, 5, 191, 0, 0, 7226, 7227, 5, 248, 0, 0, 7227, 7228, 5, 62, 0, 0, 7228, 7229, 3, 1220, 610, 0, 7229, 7243, 1, 0, 0, 0, 7230, 7231, 5, 138, 0, 0, 7231, 7232, 5, 348, 0, 0, 7232, 7233, 5, 318, 0, 0, 7233, 7234, 5, 163, 0, 0, 7234, 7235, 3, 478, 239, 0, 7235, 7236, 5, 191, 0, 0, 7236, 7237, 5, 248, 0, 0, 7237, 7238, 5, 220, 0, 0, 7238, 7239, 5, 389, 0, 0, 7239, 7240, 5, 62, 0, 0, 7240, 7241, 3, 1220, 610, 0, 7241, 7243, 1, 0, 0, 0, 7242, 7170, 1, 0, 0, 0, 7242, 7182, 1, 0, 0, 0, 7242, 7194, 1, 0, 0, 0, 7242, 7206, 1, 0, 0, 0, 7242, 7220, 1, 0, 0, 0, 7242, 7230, 1, 0, 0, 0, 7243, 763, 1, 0, 0, 0, 7244, 7246, 5, 46, 0, 0, 7245, 7247, 5, 53, 0, 0, 7246, 7245, 1, 0, 0, 0, 7246, 7247, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7249, 5, 168, 0, 0, 7249, 7250, 3, 478, 239, 0, 7250, 7251, 5, 62, 0, 0, 7251, 7252, 3, 1240, 620, 0, 7252, 7253, 5, 94, 0, 0, 7253, 7254, 3, 1240, 620, 0, 7254, 7255, 5, 64, 0, 0, 7255, 7256, 3, 478, 239, 0, 7256, 765, 1, 0, 0, 0, 7257, 7258, 5, 158, 0, 0, 7258, 7259, 3, 784, 392, 0, 7259, 7260, 3, 1218, 609, 0, 7260, 7261, 3, 768, 384, 0, 7261, 7271, 1, 0, 0, 0, 7262, 7263, 5, 158, 0, 0, 7263, 7271, 3, 784, 392, 0, 7264, 7265, 5, 158, 0, 0, 7265, 7266, 3, 784, 392, 0, 7266, 7267, 3, 1222, 611, 0, 7267, 7268, 5, 80, 0, 0, 7268, 7269, 3, 1218, 609, 0, 7269, 7271, 1, 0, 0, 0, 7270, 7257, 1, 0, 0, 0, 7270, 7262, 1, 0, 0, 0, 7270, 7264, 1, 0, 0, 0, 7271, 767, 1, 0, 0, 0, 7272, 7273, 5, 100, 0, 0, 7273, 7276, 3, 1222, 611, 0, 7274, 7276, 1, 0, 0, 0, 7275, 7272, 1, 0, 0, 0, 7275, 7274, 1, 0, 0, 0, 7276, 769, 1, 0, 0, 0, 7277, 7279, 5, 363, 0, 0, 7278, 7280, 5, 113, 0, 0, 7279, 7278, 1, 0, 0, 0, 7279, 7280, 1, 0, 0, 0, 7280, 7282, 1, 0, 0, 0, 7281, 7283, 5, 112, 0, 0, 7282, 7281, 1, 0, 0, 0, 7282, 7283, 1, 0, 0, 0, 7283, 7284, 1, 0, 0, 0, 7284, 7286, 3, 784, 392, 0, 7285, 7287, 3, 776, 388, 0, 7286, 7285, 1, 0, 0, 0, 7286, 7287, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 7289, 3, 790, 395, 0, 7289, 7297, 1, 0, 0, 0, 7290, 7291, 5, 363, 0, 0, 7291, 7292, 5, 2, 0, 0, 7292, 7293, 3, 774, 387, 0, 7293, 7294, 5, 3, 0, 0, 7294, 7295, 3, 790, 395, 0, 7295, 7297, 1, 0, 0, 0, 7296, 7277, 1, 0, 0, 0, 7296, 7290, 1, 0, 0, 0, 7297, 771, 1, 0, 0, 0, 7298, 7299, 3, 776, 388, 0, 7299, 7300, 3, 784, 392, 0, 7300, 7301, 3, 790, 395, 0, 7301, 7309, 1, 0, 0, 0, 7302, 7303, 3, 776, 388, 0, 7303, 7304, 5, 2, 0, 0, 7304, 7305, 3, 774, 387, 0, 7305, 7306, 5, 3, 0, 0, 7306, 7307, 3, 790, 395, 0, 7307, 7309, 1, 0, 0, 0, 7308, 7298, 1, 0, 0, 0, 7308, 7302, 1, 0, 0, 0, 7309, 773, 1, 0, 0, 0, 7310, 7315, 3, 778, 389, 0, 7311, 7312, 5, 6, 0, 0, 7312, 7314, 3, 778, 389, 0, 7313, 7311, 1, 0, 0, 0, 7314, 7317, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7315, 7316, 1, 0, 0, 0, 7316, 775, 1, 0, 0, 0, 7317, 7315, 1, 0, 0, 0, 7318, 7319, 7, 34, 0, 0, 7319, 777, 1, 0, 0, 0, 7320, 7321, 3, 780, 390, 0, 7321, 7322, 3, 782, 391, 0, 7322, 779, 1, 0, 0, 0, 7323, 7326, 3, 1260, 630, 0, 7324, 7326, 3, 776, 388, 0, 7325, 7323, 1, 0, 0, 0, 7325, 7324, 1, 0, 0, 0, 7326, 781, 1, 0, 0, 0, 7327, 7331, 3, 64, 32, 0, 7328, 7331, 3, 270, 135, 0, 7329, 7331, 1, 0, 0, 0, 7330, 7327, 1, 0, 0, 0, 7330, 7328, 1, 0, 0, 0, 7330, 7329, 1, 0, 0, 0, 7331, 783, 1, 0, 0, 0, 7332, 7335, 5, 128, 0, 0, 7333, 7335, 1, 0, 0, 0, 7334, 7332, 1, 0, 0, 0, 7334, 7333, 1, 0, 0, 0, 7335, 785, 1, 0, 0, 0, 7336, 7337, 5, 2, 0, 0, 7337, 7338, 3, 1220, 610, 0, 7338, 7339, 5, 3, 0, 0, 7339, 7342, 1, 0, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7336, 1, 0, 0, 0, 7341, 7340, 1, 0, 0, 0, 7342, 787, 1, 0, 0, 0, 7343, 7344, 3, 1218, 609, 0, 7344, 7345, 3, 786, 393, 0, 7345, 789, 1, 0, 0, 0, 7346, 7351, 3, 788, 394, 0, 7347, 7348, 5, 6, 0, 0, 7348, 7350, 3, 788, 394, 0, 7349, 7347, 1, 0, 0, 0, 7350, 7353, 1, 0, 0, 0, 7351, 7349, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7356, 1, 0, 0, 0, 7353, 7351, 1, 0, 0, 0, 7354, 7356, 1, 0, 0, 0, 7355, 7346, 1, 0, 0, 0, 7355, 7354, 1, 0, 0, 0, 7356, 791, 1, 0, 0, 0, 7357, 7358, 5, 203, 0, 0, 7358, 7381, 3, 794, 397, 0, 7359, 7360, 5, 203, 0, 0, 7360, 7361, 3, 776, 388, 0, 7361, 7362, 3, 784, 392, 0, 7362, 7363, 3, 794, 397, 0, 7363, 7381, 1, 0, 0, 0, 7364, 7365, 5, 203, 0, 0, 7365, 7366, 5, 128, 0, 0, 7366, 7381, 3, 794, 397, 0, 7367, 7368, 5, 203, 0, 0, 7368, 7369, 5, 2, 0, 0, 7369, 7374, 3, 796, 398, 0, 7370, 7371, 5, 6, 0, 0, 7371, 7373, 3, 796, 398, 0, 7372, 7370, 1, 0, 0, 0, 7373, 7376, 1, 0, 0, 0, 7374, 7372, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7377, 1, 0, 0, 0, 7376, 7374, 1, 0, 0, 0, 7377, 7378, 5, 3, 0, 0, 7378, 7379, 3, 794, 397, 0, 7379, 7381, 1, 0, 0, 0, 7380, 7357, 1, 0, 0, 0, 7380, 7359, 1, 0, 0, 0, 7380, 7364, 1, 0, 0, 0, 7380, 7367, 1, 0, 0, 0, 7381, 793, 1, 0, 0, 0, 7382, 7392, 3, 868, 434, 0, 7383, 7392, 3, 814, 407, 0, 7384, 7392, 3, 854, 427, 0, 7385, 7392, 3, 840, 420, 0, 7386, 7392, 3, 862, 431, 0, 7387, 7392, 3, 248, 124, 0, 7388, 7392, 3, 254, 127, 0, 7389, 7392, 3, 258, 129, 0, 7390, 7392, 3, 808, 404, 0, 7391, 7382, 1, 0, 0, 0, 7391, 7383, 1, 0, 0, 0, 7391, 7384, 1, 0, 0, 0, 7391, 7385, 1, 0, 0, 0, 7391, 7386, 1, 0, 0, 0, 7391, 7387, 1, 0, 0, 0, 7391, 7388, 1, 0, 0, 0, 7391, 7389, 1, 0, 0, 0, 7391, 7390, 1, 0, 0, 0, 7392, 795, 1, 0, 0, 0, 7393, 7394, 3, 798, 399, 0, 7394, 7395, 3, 800, 400, 0, 7395, 797, 1, 0, 0, 0, 7396, 7399, 3, 1260, 630, 0, 7397, 7399, 3, 776, 388, 0, 7398, 7396, 1, 0, 0, 0, 7398, 7397, 1, 0, 0, 0, 7399, 799, 1, 0, 0, 0, 7400, 7404, 3, 64, 32, 0, 7401, 7404, 3, 270, 135, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7400, 1, 0, 0, 0, 7403, 7401, 1, 0, 0, 0, 7403, 7402, 1, 0, 0, 0, 7404, 801, 1, 0, 0, 0, 7405, 7406, 5, 283, 0, 0, 7406, 7407, 3, 1222, 611, 0, 7407, 7408, 3, 804, 402, 0, 7408, 7409, 5, 36, 0, 0, 7409, 7410, 3, 806, 403, 0, 7410, 803, 1, 0, 0, 0, 7411, 7412, 5, 2, 0, 0, 7412, 7413, 3, 1170, 585, 0, 7413, 7414, 5, 3, 0, 0, 7414, 7417, 1, 0, 0, 0, 7415, 7417, 1, 0, 0, 0, 7416, 7411, 1, 0, 0, 0, 7416, 7415, 1, 0, 0, 0, 7417, 805, 1, 0, 0, 0, 7418, 7423, 3, 868, 434, 0, 7419, 7423, 3, 814, 407, 0, 7420, 7423, 3, 854, 427, 0, 7421, 7423, 3, 840, 420, 0, 7422, 7418, 1, 0, 0, 0, 7422, 7419, 1, 0, 0, 0, 7422, 7420, 1, 0, 0, 0, 7422, 7421, 1, 0, 0, 0, 7423, 807, 1, 0, 0, 0, 7424, 7425, 5, 202, 0, 0, 7425, 7426, 3, 1222, 611, 0, 7426, 7427, 3, 810, 405, 0, 7427, 7452, 1, 0, 0, 0, 7428, 7429, 5, 46, 0, 0, 7429, 7430, 3, 160, 80, 0, 7430, 7431, 5, 92, 0, 0, 7431, 7432, 3, 250, 125, 0, 7432, 7433, 5, 36, 0, 0, 7433, 7434, 5, 202, 0, 0, 7434, 7435, 3, 1222, 611, 0, 7435, 7436, 3, 810, 405, 0, 7436, 7437, 3, 252, 126, 0, 7437, 7452, 1, 0, 0, 0, 7438, 7439, 5, 46, 0, 0, 7439, 7440, 3, 160, 80, 0, 7440, 7441, 5, 92, 0, 0, 7441, 7442, 5, 220, 0, 0, 7442, 7443, 5, 77, 0, 0, 7443, 7444, 5, 389, 0, 0, 7444, 7445, 3, 250, 125, 0, 7445, 7446, 5, 36, 0, 0, 7446, 7447, 5, 202, 0, 0, 7447, 7448, 3, 1222, 611, 0, 7448, 7449, 3, 810, 405, 0, 7449, 7450, 3, 252, 126, 0, 7450, 7452, 1, 0, 0, 0, 7451, 7424, 1, 0, 0, 0, 7451, 7428, 1, 0, 0, 0, 7451, 7438, 1, 0, 0, 0, 7452, 809, 1, 0, 0, 0, 7453, 7454, 5, 2, 0, 0, 7454, 7455, 3, 1164, 582, 0, 7455, 7456, 5, 3, 0, 0, 7456, 7459, 1, 0, 0, 0, 7457, 7459, 1, 0, 0, 0, 7458, 7453, 1, 0, 0, 0, 7458, 7457, 1, 0, 0, 0, 7459, 811, 1, 0, 0, 0, 7460, 7461, 5, 177, 0, 0, 7461, 7471, 3, 1222, 611, 0, 7462, 7463, 5, 177, 0, 0, 7463, 7464, 5, 283, 0, 0, 7464, 7471, 3, 1222, 611, 0, 7465, 7466, 5, 177, 0, 0, 7466, 7471, 5, 30, 0, 0, 7467, 7468, 5, 177, 0, 0, 7468, 7469, 5, 283, 0, 0, 7469, 7471, 5, 30, 0, 0, 7470, 7460, 1, 0, 0, 0, 7470, 7462, 1, 0, 0, 0, 7470, 7465, 1, 0, 0, 0, 7470, 7467, 1, 0, 0, 0, 7471, 813, 1, 0, 0, 0, 7472, 7474, 3, 882, 441, 0, 7473, 7472, 1, 0, 0, 0, 7473, 7474, 1, 0, 0, 0, 7474, 7475, 1, 0, 0, 0, 7475, 7476, 5, 232, 0, 0, 7476, 7477, 5, 71, 0, 0, 7477, 7478, 3, 816, 408, 0, 7478, 7479, 3, 818, 409, 0, 7479, 7480, 3, 826, 413, 0, 7480, 7481, 3, 830, 415, 0, 7481, 815, 1, 0, 0, 0, 7482, 7485, 3, 1218, 609, 0, 7483, 7484, 5, 36, 0, 0, 7484, 7486, 3, 1254, 627, 0, 7485, 7483, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 817, 1, 0, 0, 0, 7487, 7507, 3, 868, 434, 0, 7488, 7489, 5, 463, 0, 0, 7489, 7490, 3, 820, 410, 0, 7490, 7491, 5, 450, 0, 0, 7491, 7492, 3, 868, 434, 0, 7492, 7507, 1, 0, 0, 0, 7493, 7494, 5, 2, 0, 0, 7494, 7495, 3, 822, 411, 0, 7495, 7500, 5, 3, 0, 0, 7496, 7497, 5, 463, 0, 0, 7497, 7498, 3, 820, 410, 0, 7498, 7499, 5, 450, 0, 0, 7499, 7501, 1, 0, 0, 0, 7500, 7496, 1, 0, 0, 0, 7500, 7501, 1, 0, 0, 0, 7501, 7502, 1, 0, 0, 0, 7502, 7503, 3, 868, 434, 0, 7503, 7507, 1, 0, 0, 0, 7504, 7505, 5, 53, 0, 0, 7505, 7507, 5, 415, 0, 0, 7506, 7487, 1, 0, 0, 0, 7506, 7488, 1, 0, 0, 0, 7506, 7493, 1, 0, 0, 0, 7506, 7504, 1, 0, 0, 0, 7507, 819, 1, 0, 0, 0, 7508, 7509, 7, 35, 0, 0, 7509, 821, 1, 0, 0, 0, 7510, 7515, 3, 824, 412, 0, 7511, 7512, 5, 6, 0, 0, 7512, 7514, 3, 824, 412, 0, 7513, 7511, 1, 0, 0, 0, 7514, 7517, 1, 0, 0, 0, 7515, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 823, 1, 0, 0, 0, 7517, 7515, 1, 0, 0, 0, 7518, 7519, 3, 1254, 627, 0, 7519, 7520, 3, 1208, 604, 0, 7520, 825, 1, 0, 0, 0, 7521, 7522, 5, 80, 0, 0, 7522, 7523, 5, 464, 0, 0, 7523, 7524, 3, 828, 414, 0, 7524, 7531, 5, 57, 0, 0, 7525, 7526, 5, 362, 0, 0, 7526, 7527, 5, 326, 0, 0, 7527, 7528, 3, 856, 428, 0, 7528, 7529, 3, 982, 491, 0, 7529, 7532, 1, 0, 0, 0, 7530, 7532, 5, 263, 0, 0, 7531, 7525, 1, 0, 0, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7535, 1, 0, 0, 0, 7533, 7535, 1, 0, 0, 0, 7534, 7521, 1, 0, 0, 0, 7534, 7533, 1, 0, 0, 0, 7535, 827, 1, 0, 0, 0, 7536, 7537, 5, 2, 0, 0, 7537, 7538, 3, 546, 273, 0, 7538, 7539, 5, 3, 0, 0, 7539, 7540, 3, 982, 491, 0, 7540, 7546, 1, 0, 0, 0, 7541, 7542, 5, 80, 0, 0, 7542, 7543, 5, 45, 0, 0, 7543, 7546, 3, 1222, 611, 0, 7544, 7546, 1, 0, 0, 0, 7545, 7536, 1, 0, 0, 0, 7545, 7541, 1, 0, 0, 0, 7545, 7544, 1, 0, 0, 0, 7546, 829, 1, 0, 0, 0, 7547, 7548, 5, 87, 0, 0, 7548, 7551, 3, 1212, 606, 0, 7549, 7551, 1, 0, 0, 0, 7550, 7547, 1, 0, 0, 0, 7550, 7549, 1, 0, 0, 0, 7551, 831, 1, 0, 0, 0, 7552, 7554, 5, 253, 0, 0, 7553, 7555, 5, 71, 0, 0, 7554, 7553, 1, 0, 0, 0, 7554, 7555, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 7558, 3, 1218, 609, 0, 7557, 7559, 3, 954, 477, 0, 7558, 7557, 1, 0, 0, 0, 7558, 7559, 1, 0, 0, 0, 7559, 7560, 1, 0, 0, 0, 7560, 7563, 5, 100, 0, 0, 7561, 7564, 3, 870, 435, 0, 7562, 7564, 3, 1218, 609, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7562, 1, 0, 0, 0, 7564, 7566, 1, 0, 0, 0, 7565, 7567, 3, 954, 477, 0, 7566, 7565, 1, 0, 0, 0, 7566, 7567, 1, 0, 0, 0, 7567, 7568, 1, 0, 0, 0, 7568, 7569, 5, 80, 0, 0, 7569, 7578, 3, 1046, 523, 0, 7570, 7572, 3, 834, 417, 0, 7571, 7573, 3, 836, 418, 0, 7572, 7571, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 7579, 1, 0, 0, 0, 7574, 7576, 3, 836, 418, 0, 7575, 7577, 3, 834, 417, 0, 7576, 7575, 1, 0, 0, 0, 7576, 7577, 1, 0, 0, 0, 7577, 7579, 1, 0, 0, 0, 7578, 7570, 1, 0, 0, 0, 7578, 7574, 1, 0, 0, 0, 7579, 7581, 1, 0, 0, 0, 7580, 7582, 3, 838, 419, 0, 7581, 7580, 1, 0, 0, 0, 7581, 7582, 1, 0, 0, 0, 7582, 833, 1, 0, 0, 0, 7583, 7584, 5, 102, 0, 0, 7584, 7585, 5, 77, 0, 0, 7585, 7588, 5, 250, 0, 0, 7586, 7587, 5, 33, 0, 0, 7587, 7589, 3, 1046, 523, 0, 7588, 7586, 1, 0, 0, 0, 7588, 7589, 1, 0, 0, 0, 7589, 7591, 1, 0, 0, 0, 7590, 7592, 5, 93, 0, 0, 7591, 7590, 1, 0, 0, 0, 7591, 7592, 1, 0, 0, 0, 7592, 7593, 1, 0, 0, 0, 7593, 7598, 5, 232, 0, 0, 7594, 7595, 5, 2, 0, 0, 7595, 7596, 3, 822, 411, 0, 7596, 7597, 5, 3, 0, 0, 7597, 7599, 1, 0, 0, 0, 7598, 7594, 1, 0, 0, 0, 7598, 7599, 1, 0, 0, 0, 7599, 7600, 1, 0, 0, 0, 7600, 7601, 3, 944, 472, 0, 7601, 835, 1, 0, 0, 0, 7602, 7603, 5, 102, 0, 0, 7603, 7606, 5, 250, 0, 0, 7604, 7605, 5, 33, 0, 0, 7605, 7607, 3, 1046, 523, 0, 7606, 7604, 1, 0, 0, 0, 7606, 7607, 1, 0, 0, 0, 7607, 7609, 1, 0, 0, 0, 7608, 7610, 5, 93, 0, 0, 7609, 7608, 1, 0, 0, 0, 7609, 7610, 1, 0, 0, 0, 7610, 7611, 1, 0, 0, 0, 7611, 7612, 5, 362, 0, 0, 7612, 7613, 5, 326, 0, 0, 7613, 7614, 3, 856, 428, 0, 7614, 837, 1, 0, 0, 0, 7615, 7616, 5, 102, 0, 0, 7616, 7618, 5, 250, 0, 0, 7617, 7619, 5, 93, 0, 0, 7618, 7617, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 7621, 5, 182, 0, 0, 7621, 839, 1, 0, 0, 0, 7622, 7624, 3, 882, 441, 0, 7623, 7622, 1, 0, 0, 0, 7623, 7624, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7626, 5, 182, 0, 0, 7626, 7627, 5, 64, 0, 0, 7627, 7628, 3, 970, 485, 0, 7628, 7629, 3, 842, 421, 0, 7629, 7630, 3, 984, 492, 0, 7630, 7631, 3, 830, 415, 0, 7631, 841, 1, 0, 0, 0, 7632, 7633, 5, 100, 0, 0, 7633, 7636, 3, 948, 474, 0, 7634, 7636, 1, 0, 0, 0, 7635, 7632, 1, 0, 0, 0, 7635, 7634, 1, 0, 0, 0, 7636, 843, 1, 0, 0, 0, 7637, 7638, 5, 247, 0, 0, 7638, 7639, 3, 892, 446, 0, 7639, 7640, 3, 968, 484, 0, 7640, 7641, 3, 846, 423, 0, 7641, 7642, 3, 850, 425, 0, 7642, 845, 1, 0, 0, 0, 7643, 7644, 5, 68, 0, 0, 7644, 7645, 3, 848, 424, 0, 7645, 7646, 5, 256, 0, 0, 7646, 7649, 1, 0, 0, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7643, 1, 0, 0, 0, 7648, 7647, 1, 0, 0, 0, 7649, 847, 1, 0, 0, 0, 7650, 7651, 5, 131, 0, 0, 7651, 7663, 7, 36, 0, 0, 7652, 7653, 5, 407, 0, 0, 7653, 7663, 7, 36, 0, 0, 7654, 7659, 5, 327, 0, 0, 7655, 7656, 5, 362, 0, 0, 7656, 7660, 5, 201, 0, 0, 7657, 7658, 5, 407, 0, 0, 7658, 7660, 5, 201, 0, 0, 7659, 7655, 1, 0, 0, 0, 7659, 7657, 1, 0, 0, 0, 7659, 7660, 1, 0, 0, 0, 7660, 7663, 1, 0, 0, 0, 7661, 7663, 5, 201, 0, 0, 7662, 7650, 1, 0, 0, 0, 7662, 7652, 1, 0, 0, 0, 7662, 7654, 1, 0, 0, 0, 7662, 7661, 1, 0, 0, 0, 7663, 849, 1, 0, 0, 0, 7664, 7667, 5, 265, 0, 0, 7665, 7667, 1, 0, 0, 0, 7666, 7664, 1, 0, 0, 0, 7666, 7665, 1, 0, 0, 0, 7667, 851, 1, 0, 0, 0, 7668, 7673, 5, 265, 0, 0, 7669, 7670, 5, 465, 0, 0, 7670, 7673, 5, 466, 0, 0, 7671, 7673, 1, 0, 0, 0, 7672, 7668, 1, 0, 0, 0, 7672, 7669, 1, 0, 0, 0, 7672, 7671, 1, 0, 0, 0, 7673, 853, 1, 0, 0, 0, 7674, 7676, 3, 882, 441, 0, 7675, 7674, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7678, 5, 362, 0, 0, 7678, 7679, 3, 970, 485, 0, 7679, 7680, 5, 326, 0, 0, 7680, 7681, 3, 856, 428, 0, 7681, 7682, 3, 946, 473, 0, 7682, 7683, 3, 984, 492, 0, 7683, 7684, 3, 830, 415, 0, 7684, 855, 1, 0, 0, 0, 7685, 7690, 3, 858, 429, 0, 7686, 7687, 5, 6, 0, 0, 7687, 7689, 3, 858, 429, 0, 7688, 7686, 1, 0, 0, 0, 7689, 7692, 1, 0, 0, 0, 7690, 7688, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 857, 1, 0, 0, 0, 7692, 7690, 1, 0, 0, 0, 7693, 7694, 3, 860, 430, 0, 7694, 7695, 5, 10, 0, 0, 7695, 7696, 3, 1046, 523, 0, 7696, 7711, 1, 0, 0, 0, 7697, 7698, 5, 2, 0, 0, 7698, 7703, 3, 860, 430, 0, 7699, 7700, 5, 6, 0, 0, 7700, 7702, 3, 860, 430, 0, 7701, 7699, 1, 0, 0, 0, 7702, 7705, 1, 0, 0, 0, 7703, 7701, 1, 0, 0, 0, 7703, 7704, 1, 0, 0, 0, 7704, 7706, 1, 0, 0, 0, 7705, 7703, 1, 0, 0, 0, 7706, 7707, 5, 3, 0, 0, 7707, 7708, 5, 10, 0, 0, 7708, 7709, 3, 1046, 523, 0, 7709, 7711, 1, 0, 0, 0, 7710, 7693, 1, 0, 0, 0, 7710, 7697, 1, 0, 0, 0, 7711, 859, 1, 0, 0, 0, 7712, 7713, 3, 1254, 627, 0, 7713, 7714, 3, 1208, 604, 0, 7714, 861, 1, 0, 0, 0, 7715, 7716, 5, 178, 0, 0, 7716, 7724, 3, 864, 432, 0, 7717, 7718, 5, 262, 0, 0, 7718, 7723, 5, 317, 0, 0, 7719, 7723, 5, 317, 0, 0, 7720, 7723, 5, 107, 0, 0, 7721, 7723, 5, 231, 0, 0, 7722, 7717, 1, 0, 0, 0, 7722, 7719, 1, 0, 0, 0, 7722, 7720, 1, 0, 0, 0, 7722, 7721, 1, 0, 0, 0, 7723, 7726, 1, 0, 0, 0, 7724, 7722, 1, 0, 0, 0, 7724, 7725, 1, 0, 0, 0, 7725, 7727, 1, 0, 0, 0, 7726, 7724, 1, 0, 0, 0, 7727, 7728, 5, 172, 0, 0, 7728, 7729, 3, 866, 433, 0, 7729, 7730, 5, 62, 0, 0, 7730, 7731, 3, 868, 434, 0, 7731, 863, 1, 0, 0, 0, 7732, 7733, 3, 1222, 611, 0, 7733, 865, 1, 0, 0, 0, 7734, 7740, 1, 0, 0, 0, 7735, 7736, 5, 105, 0, 0, 7736, 7740, 5, 217, 0, 0, 7737, 7738, 5, 372, 0, 0, 7738, 7740, 5, 217, 0, 0, 7739, 7734, 1, 0, 0, 0, 7739, 7735, 1, 0, 0, 0, 7739, 7737, 1, 0, 0, 0, 7740, 867, 1, 0, 0, 0, 7741, 7744, 3, 872, 436, 0, 7742, 7744, 3, 870, 435, 0, 7743, 7741, 1, 0, 0, 0, 7743, 7742, 1, 0, 0, 0, 7744, 869, 1, 0, 0, 0, 7745, 7746, 5, 2, 0, 0, 7746, 7747, 3, 872, 436, 0, 7747, 7748, 5, 3, 0, 0, 7748, 7754, 1, 0, 0, 0, 7749, 7750, 5, 2, 0, 0, 7750, 7751, 3, 870, 435, 0, 7751, 7752, 5, 3, 0, 0, 7752, 7754, 1, 0, 0, 0, 7753, 7745, 1, 0, 0, 0, 7753, 7749, 1, 0, 0, 0, 7754, 871, 1, 0, 0, 0, 7755, 7756, 3, 874, 437, 0, 7756, 7764, 3, 900, 450, 0, 7757, 7758, 3, 936, 468, 0, 7758, 7759, 3, 910, 455, 0, 7759, 7765, 1, 0, 0, 0, 7760, 7762, 3, 908, 454, 0, 7761, 7763, 3, 936, 468, 0, 7762, 7761, 1, 0, 0, 0, 7762, 7763, 1, 0, 0, 0, 7763, 7765, 1, 0, 0, 0, 7764, 7757, 1, 0, 0, 0, 7764, 7760, 1, 0, 0, 0, 7764, 7765, 1, 0, 0, 0, 7765, 7779, 1, 0, 0, 0, 7766, 7767, 3, 882, 441, 0, 7767, 7768, 3, 874, 437, 0, 7768, 7776, 3, 900, 450, 0, 7769, 7770, 3, 936, 468, 0, 7770, 7771, 3, 910, 455, 0, 7771, 7777, 1, 0, 0, 0, 7772, 7774, 3, 908, 454, 0, 7773, 7775, 3, 936, 468, 0, 7774, 7773, 1, 0, 0, 0, 7774, 7775, 1, 0, 0, 0, 7775, 7777, 1, 0, 0, 0, 7776, 7769, 1, 0, 0, 0, 7776, 7772, 1, 0, 0, 0, 7776, 7777, 1, 0, 0, 0, 7777, 7779, 1, 0, 0, 0, 7778, 7755, 1, 0, 0, 0, 7778, 7766, 1, 0, 0, 0, 7779, 873, 1, 0, 0, 0, 7780, 7787, 3, 876, 438, 0, 7781, 7782, 7, 37, 0, 0, 7782, 7783, 3, 894, 447, 0, 7783, 7784, 3, 876, 438, 0, 7784, 7786, 1, 0, 0, 0, 7785, 7781, 1, 0, 0, 0, 7786, 7789, 1, 0, 0, 0, 7787, 7785, 1, 0, 0, 0, 7787, 7788, 1, 0, 0, 0, 7788, 875, 1, 0, 0, 0, 7789, 7787, 1, 0, 0, 0, 7790, 7797, 3, 880, 440, 0, 7791, 7792, 5, 70, 0, 0, 7792, 7793, 3, 894, 447, 0, 7793, 7794, 3, 880, 440, 0, 7794, 7796, 1, 0, 0, 0, 7795, 7791, 1, 0, 0, 0, 7796, 7799, 1, 0, 0, 0, 7797, 7795, 1, 0, 0, 0, 7797, 7798, 1, 0, 0, 0, 7798, 877, 1, 0, 0, 0, 7799, 7797, 1, 0, 0, 0, 7800, 7802, 3, 1212, 606, 0, 7801, 7803, 3, 888, 444, 0, 7802, 7801, 1, 0, 0, 0, 7802, 7803, 1, 0, 0, 0, 7803, 7816, 1, 0, 0, 0, 7804, 7805, 3, 898, 449, 0, 7805, 7807, 3, 1210, 605, 0, 7806, 7808, 3, 888, 444, 0, 7807, 7806, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 7816, 1, 0, 0, 0, 7809, 7810, 3, 896, 448, 0, 7810, 7812, 3, 1212, 606, 0, 7811, 7813, 3, 888, 444, 0, 7812, 7811, 1, 0, 0, 0, 7812, 7813, 1, 0, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7816, 3, 888, 444, 0, 7815, 7800, 1, 0, 0, 0, 7815, 7804, 1, 0, 0, 0, 7815, 7809, 1, 0, 0, 0, 7815, 7814, 1, 0, 0, 0, 7816, 879, 1, 0, 0, 0, 7817, 7818, 5, 88, 0, 0, 7818, 7819, 3, 878, 439, 0, 7819, 7820, 3, 946, 473, 0, 7820, 7821, 3, 982, 491, 0, 7821, 7822, 3, 928, 464, 0, 7822, 7823, 3, 934, 467, 0, 7823, 7824, 3, 1124, 562, 0, 7824, 7830, 1, 0, 0, 0, 7825, 7830, 3, 944, 472, 0, 7826, 7827, 5, 92, 0, 0, 7827, 7830, 3, 966, 483, 0, 7828, 7830, 3, 870, 435, 0, 7829, 7817, 1, 0, 0, 0, 7829, 7825, 1, 0, 0, 0, 7829, 7826, 1, 0, 0, 0, 7829, 7828, 1, 0, 0, 0, 7830, 881, 1, 0, 0, 0, 7831, 7833, 5, 105, 0, 0, 7832, 7834, 5, 296, 0, 0, 7833, 7832, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7840, 3, 884, 442, 0, 7836, 7837, 5, 6, 0, 0, 7837, 7839, 3, 884, 442, 0, 7838, 7836, 1, 0, 0, 0, 7839, 7842, 1, 0, 0, 0, 7840, 7838, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 883, 1, 0, 0, 0, 7842, 7840, 1, 0, 0, 0, 7843, 7844, 3, 1222, 611, 0, 7844, 7845, 3, 786, 393, 0, 7845, 7846, 5, 36, 0, 0, 7846, 7847, 3, 886, 443, 0, 7847, 7848, 5, 2, 0, 0, 7848, 7849, 3, 806, 403, 0, 7849, 7850, 5, 3, 0, 0, 7850, 885, 1, 0, 0, 0, 7851, 7856, 5, 251, 0, 0, 7852, 7853, 5, 77, 0, 0, 7853, 7856, 5, 251, 0, 0, 7854, 7856, 1, 0, 0, 0, 7855, 7851, 1, 0, 0, 0, 7855, 7852, 1, 0, 0, 0, 7855, 7854, 1, 0, 0, 0, 7856, 887, 1, 0, 0, 0, 7857, 7863, 5, 71, 0, 0, 7858, 7860, 5, 339, 0, 0, 7859, 7858, 1, 0, 0, 0, 7859, 7860, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7864, 3, 890, 445, 0, 7862, 7864, 3, 1438, 719, 0, 7863, 7859, 1, 0, 0, 0, 7863, 7862, 1, 0, 0, 0, 7864, 889, 1, 0, 0, 0, 7865, 7867, 7, 38, 0, 0, 7866, 7865, 1, 0, 0, 0, 7866, 7867, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 7869, 7, 11, 0, 0, 7869, 7870, 3, 892, 446, 0, 7870, 7871, 3, 1218, 609, 0, 7871, 7880, 1, 0, 0, 0, 7872, 7873, 5, 360, 0, 0, 7873, 7874, 3, 892, 446, 0, 7874, 7875, 3, 1218, 609, 0, 7875, 7880, 1, 0, 0, 0, 7876, 7877, 5, 92, 0, 0, 7877, 7880, 3, 1218, 609, 0, 7878, 7880, 3, 1218, 609, 0, 7879, 7866, 1, 0, 0, 0, 7879, 7872, 1, 0, 0, 0, 7879, 7876, 1, 0, 0, 0, 7879, 7878, 1, 0, 0, 0, 7880, 891, 1, 0, 0, 0, 7881, 7884, 5, 92, 0, 0, 7882, 7884, 1, 0, 0, 0, 7883, 7881, 1, 0, 0, 0, 7883, 7882, 1, 0, 0, 0, 7884, 893, 1, 0, 0, 0, 7885, 7889, 5, 30, 0, 0, 7886, 7889, 5, 56, 0, 0, 7887, 7889, 1, 0, 0, 0, 7888, 7885, 1, 0, 0, 0, 7888, 7886, 1, 0, 0, 0, 7888, 7887, 1, 0, 0, 0, 7889, 895, 1, 0, 0, 0, 7890, 7896, 5, 56, 0, 0, 7891, 7892, 5, 80, 0, 0, 7892, 7893, 5, 2, 0, 0, 7893, 7894, 3, 1164, 582, 0, 7894, 7895, 5, 3, 0, 0, 7895, 7897, 1, 0, 0, 0, 7896, 7891, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 897, 1, 0, 0, 0, 7898, 7899, 5, 30, 0, 0, 7899, 899, 1, 0, 0, 0, 7900, 7903, 3, 902, 451, 0, 7901, 7903, 1, 0, 0, 0, 7902, 7900, 1, 0, 0, 0, 7902, 7901, 1, 0, 0, 0, 7903, 901, 1, 0, 0, 0, 7904, 7905, 5, 83, 0, 0, 7905, 7906, 5, 147, 0, 0, 7906, 7907, 3, 904, 452, 0, 7907, 903, 1, 0, 0, 0, 7908, 7913, 3, 906, 453, 0, 7909, 7910, 5, 6, 0, 0, 7910, 7912, 3, 906, 453, 0, 7911, 7909, 1, 0, 0, 0, 7912, 7915, 1, 0, 0, 0, 7913, 7911, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 905, 1, 0, 0, 0, 7915, 7913, 1, 0, 0, 0, 7916, 7920, 3, 1046, 523, 0, 7917, 7918, 5, 100, 0, 0, 7918, 7921, 3, 1160, 580, 0, 7919, 7921, 3, 558, 279, 0, 7920, 7917, 1, 0, 0, 0, 7920, 7919, 1, 0, 0, 0, 7921, 7922, 1, 0, 0, 0, 7922, 7923, 3, 560, 280, 0, 7923, 907, 1, 0, 0, 0, 7924, 7926, 3, 912, 456, 0, 7925, 7927, 3, 914, 457, 0, 7926, 7925, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7933, 1, 0, 0, 0, 7928, 7930, 3, 914, 457, 0, 7929, 7931, 3, 912, 456, 0, 7930, 7929, 1, 0, 0, 0, 7930, 7931, 1, 0, 0, 0, 7931, 7933, 1, 0, 0, 0, 7932, 7924, 1, 0, 0, 0, 7932, 7928, 1, 0, 0, 0, 7933, 909, 1, 0, 0, 0, 7934, 7937, 3, 908, 454, 0, 7935, 7937, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7936, 7935, 1, 0, 0, 0, 7937, 911, 1, 0, 0, 0, 7938, 7939, 5, 74, 0, 0, 7939, 7942, 3, 916, 458, 0, 7940, 7941, 5, 6, 0, 0, 7941, 7943, 3, 918, 459, 0, 7942, 7940, 1, 0, 0, 0, 7942, 7943, 1, 0, 0, 0, 7943, 7962, 1, 0, 0, 0, 7944, 7945, 5, 61, 0, 0, 7945, 7959, 3, 926, 463, 0, 7946, 7947, 3, 920, 460, 0, 7947, 7951, 3, 924, 462, 0, 7948, 7952, 5, 81, 0, 0, 7949, 7950, 5, 105, 0, 0, 7950, 7952, 5, 467, 0, 0, 7951, 7948, 1, 0, 0, 0, 7951, 7949, 1, 0, 0, 0, 7952, 7960, 1, 0, 0, 0, 7953, 7957, 3, 924, 462, 0, 7954, 7958, 5, 81, 0, 0, 7955, 7956, 5, 105, 0, 0, 7956, 7958, 5, 467, 0, 0, 7957, 7954, 1, 0, 0, 0, 7957, 7955, 1, 0, 0, 0, 7958, 7960, 1, 0, 0, 0, 7959, 7946, 1, 0, 0, 0, 7959, 7953, 1, 0, 0, 0, 7960, 7962, 1, 0, 0, 0, 7961, 7938, 1, 0, 0, 0, 7961, 7944, 1, 0, 0, 0, 7962, 913, 1, 0, 0, 0, 7963, 7968, 5, 79, 0, 0, 7964, 7969, 3, 918, 459, 0, 7965, 7966, 3, 920, 460, 0, 7966, 7967, 3, 924, 462, 0, 7967, 7969, 1, 0, 0, 0, 7968, 7964, 1, 0, 0, 0, 7968, 7965, 1, 0, 0, 0, 7969, 915, 1, 0, 0, 0, 7970, 7973, 3, 1046, 523, 0, 7971, 7973, 5, 30, 0, 0, 7972, 7970, 1, 0, 0, 0, 7972, 7971, 1, 0, 0, 0, 7973, 917, 1, 0, 0, 0, 7974, 7975, 3, 1046, 523, 0, 7975, 919, 1, 0, 0, 0, 7976, 7982, 3, 1090, 545, 0, 7977, 7978, 5, 12, 0, 0, 7978, 7982, 3, 922, 461, 0, 7979, 7980, 5, 13, 0, 0, 7980, 7982, 3, 922, 461, 0, 7981, 7976, 1, 0, 0, 0, 7981, 7977, 1, 0, 0, 0, 7981, 7979, 1, 0, 0, 0, 7982, 921, 1, 0, 0, 0, 7983, 7986, 3, 1238, 619, 0, 7984, 7986, 3, 1236, 618, 0, 7985, 7983, 1, 0, 0, 0, 7985, 7984, 1, 0, 0, 0, 7986, 923, 1, 0, 0, 0, 7987, 7988, 7, 39, 0, 0, 7988, 925, 1, 0, 0, 0, 7989, 7990, 7, 40, 0, 0, 7990, 927, 1, 0, 0, 0, 7991, 7992, 5, 66, 0, 0, 7992, 7993, 5, 147, 0, 0, 7993, 7996, 3, 930, 465, 0, 7994, 7996, 1, 0, 0, 0, 7995, 7991, 1, 0, 0, 0, 7995, 7994, 1, 0, 0, 0, 7996, 929, 1, 0, 0, 0, 7997, 8002, 3, 932, 466, 0, 7998, 7999, 5, 6, 0, 0, 7999, 8001, 3, 932, 466, 0, 8000, 7998, 1, 0, 0, 0, 8001, 8004, 1, 0, 0, 0, 8002, 8000, 1, 0, 0, 0, 8002, 8003, 1, 0, 0, 0, 8003, 931, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8005, 8025, 3, 1046, 523, 0, 8006, 8007, 5, 2, 0, 0, 8007, 8025, 5, 3, 0, 0, 8008, 8009, 5, 469, 0, 0, 8009, 8010, 5, 2, 0, 0, 8010, 8011, 3, 1164, 582, 0, 8011, 8012, 5, 3, 0, 0, 8012, 8025, 1, 0, 0, 0, 8013, 8014, 5, 468, 0, 0, 8014, 8015, 5, 2, 0, 0, 8015, 8016, 3, 1164, 582, 0, 8016, 8017, 5, 3, 0, 0, 8017, 8025, 1, 0, 0, 0, 8018, 8019, 5, 470, 0, 0, 8019, 8020, 5, 471, 0, 0, 8020, 8021, 5, 2, 0, 0, 8021, 8022, 3, 930, 465, 0, 8022, 8023, 5, 3, 0, 0, 8023, 8025, 1, 0, 0, 0, 8024, 8005, 1, 0, 0, 0, 8024, 8006, 1, 0, 0, 0, 8024, 8008, 1, 0, 0, 0, 8024, 8013, 1, 0, 0, 0, 8024, 8018, 1, 0, 0, 0, 8025, 933, 1, 0, 0, 0, 8026, 8027, 5, 67, 0, 0, 8027, 8030, 3, 1046, 523, 0, 8028, 8030, 1, 0, 0, 0, 8029, 8026, 1, 0, 0, 0, 8029, 8028, 1, 0, 0, 0, 8030, 935, 1, 0, 0, 0, 8031, 8033, 3, 938, 469, 0, 8032, 8031, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8032, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8040, 1, 0, 0, 0, 8036, 8037, 5, 62, 0, 0, 8037, 8038, 5, 293, 0, 0, 8038, 8040, 5, 81, 0, 0, 8039, 8032, 1, 0, 0, 0, 8039, 8036, 1, 0, 0, 0, 8040, 937, 1, 0, 0, 0, 8041, 8042, 3, 940, 470, 0, 8042, 8043, 3, 942, 471, 0, 8043, 8044, 3, 852, 426, 0, 8044, 939, 1, 0, 0, 0, 8045, 8055, 5, 62, 0, 0, 8046, 8047, 5, 262, 0, 0, 8047, 8049, 5, 236, 0, 0, 8048, 8046, 1, 0, 0, 0, 8048, 8049, 1, 0, 0, 0, 8049, 8050, 1, 0, 0, 0, 8050, 8056, 5, 362, 0, 0, 8051, 8053, 5, 236, 0, 0, 8052, 8051, 1, 0, 0, 0, 8052, 8053, 1, 0, 0, 0, 8053, 8054, 1, 0, 0, 0, 8054, 8056, 5, 327, 0, 0, 8055, 8048, 1, 0, 0, 0, 8055, 8052, 1, 0, 0, 0, 8056, 941, 1, 0, 0, 0, 8057, 8058, 5, 268, 0, 0, 8058, 8061, 3, 1216, 608, 0, 8059, 8061, 1, 0, 0, 0, 8060, 8057, 1, 0, 0, 0, 8060, 8059, 1, 0, 0, 0, 8061, 943, 1, 0, 0, 0, 8062, 8063, 5, 415, 0, 0, 8063, 8064, 5, 2, 0, 0, 8064, 8065, 3, 1164, 582, 0, 8065, 8073, 5, 3, 0, 0, 8066, 8067, 5, 6, 0, 0, 8067, 8068, 5, 2, 0, 0, 8068, 8069, 3, 1164, 582, 0, 8069, 8070, 5, 3, 0, 0, 8070, 8072, 1, 0, 0, 0, 8071, 8066, 1, 0, 0, 0, 8072, 8075, 1, 0, 0, 0, 8073, 8071, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 945, 1, 0, 0, 0, 8075, 8073, 1, 0, 0, 0, 8076, 8077, 5, 64, 0, 0, 8077, 8080, 3, 948, 474, 0, 8078, 8080, 1, 0, 0, 0, 8079, 8076, 1, 0, 0, 0, 8079, 8078, 1, 0, 0, 0, 8080, 947, 1, 0, 0, 0, 8081, 8091, 3, 950, 475, 0, 8082, 8087, 3, 952, 476, 0, 8083, 8084, 5, 6, 0, 0, 8084, 8086, 3, 952, 476, 0, 8085, 8083, 1, 0, 0, 0, 8086, 8089, 1, 0, 0, 0, 8087, 8085, 1, 0, 0, 0, 8087, 8088, 1, 0, 0, 0, 8088, 8091, 1, 0, 0, 0, 8089, 8087, 1, 0, 0, 0, 8090, 8081, 1, 0, 0, 0, 8090, 8082, 1, 0, 0, 0, 8091, 949, 1, 0, 0, 0, 8092, 8095, 3, 952, 476, 0, 8093, 8094, 5, 6, 0, 0, 8094, 8096, 3, 952, 476, 0, 8095, 8093, 1, 0, 0, 0, 8096, 8097, 1, 0, 0, 0, 8097, 8095, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 951, 1, 0, 0, 0, 8099, 8100, 3, 966, 483, 0, 8100, 8102, 3, 956, 478, 0, 8101, 8103, 3, 972, 486, 0, 8102, 8101, 1, 0, 0, 0, 8102, 8103, 1, 0, 0, 0, 8103, 8149, 1, 0, 0, 0, 8104, 8105, 3, 974, 487, 0, 8105, 8106, 3, 960, 480, 0, 8106, 8149, 1, 0, 0, 0, 8107, 8108, 3, 992, 496, 0, 8108, 8109, 3, 956, 478, 0, 8109, 8149, 1, 0, 0, 0, 8110, 8111, 3, 870, 435, 0, 8111, 8112, 3, 956, 478, 0, 8112, 8149, 1, 0, 0, 0, 8113, 8123, 5, 72, 0, 0, 8114, 8115, 3, 992, 496, 0, 8115, 8116, 3, 956, 478, 0, 8116, 8124, 1, 0, 0, 0, 8117, 8118, 3, 974, 487, 0, 8118, 8119, 3, 960, 480, 0, 8119, 8124, 1, 0, 0, 0, 8120, 8121, 3, 870, 435, 0, 8121, 8122, 3, 956, 478, 0, 8122, 8124, 1, 0, 0, 0, 8123, 8114, 1, 0, 0, 0, 8123, 8117, 1, 0, 0, 0, 8123, 8120, 1, 0, 0, 0, 8124, 8149, 1, 0, 0, 0, 8125, 8126, 5, 2, 0, 0, 8126, 8143, 3, 952, 476, 0, 8127, 8128, 5, 110, 0, 0, 8128, 8129, 5, 118, 0, 0, 8129, 8144, 3, 952, 476, 0, 8130, 8132, 5, 121, 0, 0, 8131, 8133, 3, 962, 481, 0, 8132, 8131, 1, 0, 0, 0, 8132, 8133, 1, 0, 0, 0, 8133, 8134, 1, 0, 0, 0, 8134, 8135, 5, 118, 0, 0, 8135, 8144, 3, 952, 476, 0, 8136, 8138, 3, 962, 481, 0, 8137, 8136, 1, 0, 0, 0, 8137, 8138, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 5, 118, 0, 0, 8140, 8141, 3, 952, 476, 0, 8141, 8142, 3, 964, 482, 0, 8142, 8144, 1, 0, 0, 0, 8143, 8127, 1, 0, 0, 0, 8143, 8130, 1, 0, 0, 0, 8143, 8137, 1, 0, 0, 0, 8143, 8144, 1, 0, 0, 0, 8144, 8145, 1, 0, 0, 0, 8145, 8146, 5, 3, 0, 0, 8146, 8147, 3, 956, 478, 0, 8147, 8149, 1, 0, 0, 0, 8148, 8099, 1, 0, 0, 0, 8148, 8104, 1, 0, 0, 0, 8148, 8107, 1, 0, 0, 0, 8148, 8110, 1, 0, 0, 0, 8148, 8113, 1, 0, 0, 0, 8148, 8125, 1, 0, 0, 0, 8149, 8168, 1, 0, 0, 0, 8150, 8151, 5, 110, 0, 0, 8151, 8152, 5, 118, 0, 0, 8152, 8167, 3, 952, 476, 0, 8153, 8155, 5, 121, 0, 0, 8154, 8156, 3, 962, 481, 0, 8155, 8154, 1, 0, 0, 0, 8155, 8156, 1, 0, 0, 0, 8156, 8157, 1, 0, 0, 0, 8157, 8158, 5, 118, 0, 0, 8158, 8167, 3, 952, 476, 0, 8159, 8161, 3, 962, 481, 0, 8160, 8159, 1, 0, 0, 0, 8160, 8161, 1, 0, 0, 0, 8161, 8162, 1, 0, 0, 0, 8162, 8163, 5, 118, 0, 0, 8163, 8164, 3, 952, 476, 0, 8164, 8165, 3, 964, 482, 0, 8165, 8167, 1, 0, 0, 0, 8166, 8150, 1, 0, 0, 0, 8166, 8153, 1, 0, 0, 0, 8166, 8160, 1, 0, 0, 0, 8167, 8170, 1, 0, 0, 0, 8168, 8166, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 953, 1, 0, 0, 0, 8170, 8168, 1, 0, 0, 0, 8171, 8173, 5, 36, 0, 0, 8172, 8171, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8179, 3, 1254, 627, 0, 8175, 8176, 5, 2, 0, 0, 8176, 8177, 3, 1220, 610, 0, 8177, 8178, 5, 3, 0, 0, 8178, 8180, 1, 0, 0, 0, 8179, 8175, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 955, 1, 0, 0, 0, 8181, 8184, 3, 958, 479, 0, 8182, 8184, 1, 0, 0, 0, 8183, 8181, 1, 0, 0, 0, 8183, 8182, 1, 0, 0, 0, 8184, 957, 1, 0, 0, 0, 8185, 8187, 5, 36, 0, 0, 8186, 8185, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, 8193, 3, 1256, 628, 0, 8189, 8190, 5, 2, 0, 0, 8190, 8191, 3, 1220, 610, 0, 8191, 8192, 5, 3, 0, 0, 8192, 8194, 1, 0, 0, 0, 8193, 8189, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 959, 1, 0, 0, 0, 8195, 8209, 3, 954, 477, 0, 8196, 8198, 5, 36, 0, 0, 8197, 8199, 3, 1254, 627, 0, 8198, 8197, 1, 0, 0, 0, 8198, 8199, 1, 0, 0, 0, 8199, 8202, 1, 0, 0, 0, 8200, 8202, 3, 1254, 627, 0, 8201, 8196, 1, 0, 0, 0, 8201, 8200, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8204, 5, 2, 0, 0, 8204, 8205, 3, 988, 494, 0, 8205, 8206, 5, 3, 0, 0, 8206, 8209, 1, 0, 0, 0, 8207, 8209, 1, 0, 0, 0, 8208, 8195, 1, 0, 0, 0, 8208, 8201, 1, 0, 0, 0, 8208, 8207, 1, 0, 0, 0, 8209, 961, 1, 0, 0, 0, 8210, 8212, 7, 41, 0, 0, 8211, 8213, 5, 123, 0, 0, 8212, 8211, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, 963, 1, 0, 0, 0, 8214, 8215, 5, 100, 0, 0, 8215, 8216, 5, 2, 0, 0, 8216, 8217, 3, 1220, 610, 0, 8217, 8218, 5, 3, 0, 0, 8218, 8222, 1, 0, 0, 0, 8219, 8220, 5, 80, 0, 0, 8220, 8222, 3, 1046, 523, 0, 8221, 8214, 1, 0, 0, 0, 8221, 8219, 1, 0, 0, 0, 8222, 965, 1, 0, 0, 0, 8223, 8225, 3, 1218, 609, 0, 8224, 8226, 5, 9, 0, 0, 8225, 8224, 1, 0, 0, 0, 8225, 8226, 1, 0, 0, 0, 8226, 8236, 1, 0, 0, 0, 8227, 8233, 5, 81, 0, 0, 8228, 8234, 3, 1218, 609, 0, 8229, 8230, 5, 2, 0, 0, 8230, 8231, 3, 1218, 609, 0, 8231, 8232, 5, 3, 0, 0, 8232, 8234, 1, 0, 0, 0, 8233, 8228, 1, 0, 0, 0, 8233, 8229, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8223, 1, 0, 0, 0, 8235, 8227, 1, 0, 0, 0, 8236, 967, 1, 0, 0, 0, 8237, 8242, 3, 966, 483, 0, 8238, 8239, 5, 6, 0, 0, 8239, 8241, 3, 966, 483, 0, 8240, 8238, 1, 0, 0, 0, 8241, 8244, 1, 0, 0, 0, 8242, 8240, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 969, 1, 0, 0, 0, 8244, 8242, 1, 0, 0, 0, 8245, 8250, 3, 966, 483, 0, 8246, 8248, 5, 36, 0, 0, 8247, 8246, 1, 0, 0, 0, 8247, 8248, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8251, 3, 1254, 627, 0, 8250, 8247, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 971, 1, 0, 0, 0, 8252, 8253, 5, 472, 0, 0, 8253, 8254, 3, 1228, 614, 0, 8254, 8255, 5, 2, 0, 0, 8255, 8256, 3, 1164, 582, 0, 8256, 8257, 5, 3, 0, 0, 8257, 8258, 5, 303, 0, 0, 8258, 8259, 5, 2, 0, 0, 8259, 8260, 3, 1046, 523, 0, 8260, 8261, 5, 3, 0, 0, 8261, 973, 1, 0, 0, 0, 8262, 8263, 3, 1098, 549, 0, 8263, 8264, 3, 980, 490, 0, 8264, 8280, 1, 0, 0, 0, 8265, 8266, 5, 313, 0, 0, 8266, 8267, 5, 64, 0, 0, 8267, 8268, 5, 2, 0, 0, 8268, 8273, 3, 976, 488, 0, 8269, 8270, 5, 6, 0, 0, 8270, 8272, 3, 976, 488, 0, 8271, 8269, 1, 0, 0, 0, 8272, 8275, 1, 0, 0, 0, 8273, 8271, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8276, 1, 0, 0, 0, 8275, 8273, 1, 0, 0, 0, 8276, 8277, 5, 3, 0, 0, 8277, 8278, 3, 980, 490, 0, 8278, 8280, 1, 0, 0, 0, 8279, 8262, 1, 0, 0, 0, 8279, 8265, 1, 0, 0, 0, 8280, 975, 1, 0, 0, 0, 8281, 8282, 3, 1098, 549, 0, 8282, 8283, 3, 978, 489, 0, 8283, 977, 1, 0, 0, 0, 8284, 8285, 5, 36, 0, 0, 8285, 8286, 5, 2, 0, 0, 8286, 8287, 3, 988, 494, 0, 8287, 8288, 5, 3, 0, 0, 8288, 8291, 1, 0, 0, 0, 8289, 8291, 1, 0, 0, 0, 8290, 8284, 1, 0, 0, 0, 8290, 8289, 1, 0, 0, 0, 8291, 979, 1, 0, 0, 0, 8292, 8293, 5, 105, 0, 0, 8293, 8296, 5, 473, 0, 0, 8294, 8296, 1, 0, 0, 0, 8295, 8292, 1, 0, 0, 0, 8295, 8294, 1, 0, 0, 0, 8296, 981, 1, 0, 0, 0, 8297, 8298, 5, 103, 0, 0, 8298, 8301, 3, 1046, 523, 0, 8299, 8301, 1, 0, 0, 0, 8300, 8297, 1, 0, 0, 0, 8300, 8299, 1, 0, 0, 0, 8301, 983, 1, 0, 0, 0, 8302, 8307, 5, 103, 0, 0, 8303, 8304, 5, 434, 0, 0, 8304, 8305, 5, 268, 0, 0, 8305, 8308, 3, 864, 432, 0, 8306, 8308, 3, 1046, 523, 0, 8307, 8303, 1, 0, 0, 0, 8307, 8306, 1, 0, 0, 0, 8308, 8311, 1, 0, 0, 0, 8309, 8311, 1, 0, 0, 0, 8310, 8302, 1, 0, 0, 0, 8310, 8309, 1, 0, 0, 0, 8311, 985, 1, 0, 0, 0, 8312, 8315, 3, 988, 494, 0, 8313, 8315, 1, 0, 0, 0, 8314, 8312, 1, 0, 0, 0, 8314, 8313, 1, 0, 0, 0, 8315, 987, 1, 0, 0, 0, 8316, 8321, 3, 990, 495, 0, 8317, 8318, 5, 6, 0, 0, 8318, 8320, 3, 990, 495, 0, 8319, 8317, 1, 0, 0, 0, 8320, 8323, 1, 0, 0, 0, 8321, 8319, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 989, 1, 0, 0, 0, 8323, 8321, 1, 0, 0, 0, 8324, 8325, 3, 1254, 627, 0, 8325, 8326, 3, 1004, 502, 0, 8326, 8327, 3, 108, 54, 0, 8327, 991, 1, 0, 0, 0, 8328, 8329, 5, 474, 0, 0, 8329, 8357, 5, 2, 0, 0, 8330, 8331, 3, 1090, 545, 0, 8331, 8332, 3, 1116, 558, 0, 8332, 8333, 5, 475, 0, 0, 8333, 8338, 3, 994, 497, 0, 8334, 8335, 5, 6, 0, 0, 8335, 8337, 3, 994, 497, 0, 8336, 8334, 1, 0, 0, 0, 8337, 8340, 1, 0, 0, 0, 8338, 8336, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8358, 1, 0, 0, 0, 8340, 8338, 1, 0, 0, 0, 8341, 8342, 5, 476, 0, 0, 8342, 8343, 5, 2, 0, 0, 8343, 8344, 3, 1000, 500, 0, 8344, 8345, 5, 3, 0, 0, 8345, 8346, 5, 6, 0, 0, 8346, 8347, 3, 1090, 545, 0, 8347, 8348, 3, 1116, 558, 0, 8348, 8349, 5, 475, 0, 0, 8349, 8354, 3, 994, 497, 0, 8350, 8351, 5, 6, 0, 0, 8351, 8353, 3, 994, 497, 0, 8352, 8350, 1, 0, 0, 0, 8353, 8356, 1, 0, 0, 0, 8354, 8352, 1, 0, 0, 0, 8354, 8355, 1, 0, 0, 0, 8355, 8358, 1, 0, 0, 0, 8356, 8354, 1, 0, 0, 0, 8357, 8330, 1, 0, 0, 0, 8357, 8341, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8360, 5, 3, 0, 0, 8360, 993, 1, 0, 0, 0, 8361, 8368, 3, 1254, 627, 0, 8362, 8364, 3, 1004, 502, 0, 8363, 8365, 3, 996, 498, 0, 8364, 8363, 1, 0, 0, 0, 8364, 8365, 1, 0, 0, 0, 8365, 8369, 1, 0, 0, 0, 8366, 8367, 5, 62, 0, 0, 8367, 8369, 5, 473, 0, 0, 8368, 8362, 1, 0, 0, 0, 8368, 8366, 1, 0, 0, 0, 8369, 995, 1, 0, 0, 0, 8370, 8372, 3, 998, 499, 0, 8371, 8370, 1, 0, 0, 0, 8372, 8373, 1, 0, 0, 0, 8373, 8371, 1, 0, 0, 0, 8373, 8374, 1, 0, 0, 0, 8374, 997, 1, 0, 0, 0, 8375, 8376, 5, 53, 0, 0, 8376, 8384, 3, 1046, 523, 0, 8377, 8378, 3, 1264, 632, 0, 8378, 8379, 3, 1046, 523, 0, 8379, 8384, 1, 0, 0, 0, 8380, 8381, 5, 77, 0, 0, 8381, 8384, 5, 78, 0, 0, 8382, 8384, 5, 78, 0, 0, 8383, 8375, 1, 0, 0, 0, 8383, 8377, 1, 0, 0, 0, 8383, 8380, 1, 0, 0, 0, 8383, 8382, 1, 0, 0, 0, 8384, 999, 1, 0, 0, 0, 8385, 8390, 3, 1002, 501, 0, 8386, 8387, 5, 6, 0, 0, 8387, 8389, 3, 1002, 501, 0, 8388, 8386, 1, 0, 0, 0, 8389, 8392, 1, 0, 0, 0, 8390, 8388, 1, 0, 0, 0, 8390, 8391, 1, 0, 0, 0, 8391, 1001, 1, 0, 0, 0, 8392, 8390, 1, 0, 0, 0, 8393, 8394, 3, 1088, 544, 0, 8394, 8395, 5, 36, 0, 0, 8395, 8396, 3, 1262, 631, 0, 8396, 8400, 1, 0, 0, 0, 8397, 8398, 5, 53, 0, 0, 8398, 8400, 3, 1088, 544, 0, 8399, 8393, 1, 0, 0, 0, 8399, 8397, 1, 0, 0, 0, 8400, 1003, 1, 0, 0, 0, 8401, 8403, 5, 408, 0, 0, 8402, 8401, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 8404, 1, 0, 0, 0, 8404, 8422, 3, 1006, 503, 0, 8405, 8407, 5, 4, 0, 0, 8406, 8408, 3, 1238, 619, 0, 8407, 8406, 1, 0, 0, 0, 8407, 8408, 1, 0, 0, 0, 8408, 8409, 1, 0, 0, 0, 8409, 8411, 5, 5, 0, 0, 8410, 8405, 1, 0, 0, 0, 8411, 8414, 1, 0, 0, 0, 8412, 8410, 1, 0, 0, 0, 8412, 8413, 1, 0, 0, 0, 8413, 8423, 1, 0, 0, 0, 8414, 8412, 1, 0, 0, 0, 8415, 8420, 5, 35, 0, 0, 8416, 8417, 5, 4, 0, 0, 8417, 8418, 3, 1238, 619, 0, 8418, 8419, 5, 5, 0, 0, 8419, 8421, 1, 0, 0, 0, 8420, 8416, 1, 0, 0, 0, 8420, 8421, 1, 0, 0, 0, 8421, 8423, 1, 0, 0, 0, 8422, 8412, 1, 0, 0, 0, 8422, 8415, 1, 0, 0, 0, 8423, 8429, 1, 0, 0, 0, 8424, 8425, 3, 1218, 609, 0, 8425, 8426, 5, 27, 0, 0, 8426, 8427, 7, 42, 0, 0, 8427, 8429, 1, 0, 0, 0, 8428, 8402, 1, 0, 0, 0, 8428, 8424, 1, 0, 0, 0, 8429, 1005, 1, 0, 0, 0, 8430, 8444, 3, 1010, 505, 0, 8431, 8444, 3, 1014, 507, 0, 8432, 8444, 3, 1018, 509, 0, 8433, 8444, 3, 1026, 513, 0, 8434, 8444, 3, 1034, 517, 0, 8435, 8441, 3, 1036, 518, 0, 8436, 8442, 3, 1040, 520, 0, 8437, 8438, 5, 2, 0, 0, 8438, 8439, 3, 1238, 619, 0, 8439, 8440, 5, 3, 0, 0, 8440, 8442, 1, 0, 0, 0, 8441, 8436, 1, 0, 0, 0, 8441, 8437, 1, 0, 0, 0, 8442, 8444, 1, 0, 0, 0, 8443, 8430, 1, 0, 0, 0, 8443, 8431, 1, 0, 0, 0, 8443, 8432, 1, 0, 0, 0, 8443, 8433, 1, 0, 0, 0, 8443, 8434, 1, 0, 0, 0, 8443, 8435, 1, 0, 0, 0, 8444, 1007, 1, 0, 0, 0, 8445, 8450, 3, 1014, 507, 0, 8446, 8450, 3, 1020, 510, 0, 8447, 8450, 3, 1028, 514, 0, 8448, 8450, 3, 1034, 517, 0, 8449, 8445, 1, 0, 0, 0, 8449, 8446, 1, 0, 0, 0, 8449, 8447, 1, 0, 0, 0, 8449, 8448, 1, 0, 0, 0, 8450, 1009, 1, 0, 0, 0, 8451, 8456, 3, 1276, 638, 0, 8452, 8456, 3, 1258, 629, 0, 8453, 8456, 5, 119, 0, 0, 8454, 8456, 5, 126, 0, 0, 8455, 8451, 1, 0, 0, 0, 8455, 8452, 1, 0, 0, 0, 8455, 8453, 1, 0, 0, 0, 8455, 8454, 1, 0, 0, 0, 8456, 8458, 1, 0, 0, 0, 8457, 8459, 3, 480, 240, 0, 8458, 8457, 1, 0, 0, 0, 8458, 8459, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8461, 3, 1012, 506, 0, 8461, 1011, 1, 0, 0, 0, 8462, 8463, 5, 2, 0, 0, 8463, 8464, 3, 1164, 582, 0, 8464, 8465, 5, 3, 0, 0, 8465, 8468, 1, 0, 0, 0, 8466, 8468, 1, 0, 0, 0, 8467, 8462, 1, 0, 0, 0, 8467, 8466, 1, 0, 0, 0, 8468, 1013, 1, 0, 0, 0, 8469, 8486, 5, 394, 0, 0, 8470, 8486, 5, 395, 0, 0, 8471, 8486, 5, 409, 0, 0, 8472, 8486, 5, 381, 0, 0, 8473, 8486, 5, 406, 0, 0, 8474, 8475, 5, 391, 0, 0, 8475, 8486, 3, 1016, 508, 0, 8476, 8477, 5, 190, 0, 0, 8477, 8486, 5, 405, 0, 0, 8478, 8479, 5, 388, 0, 0, 8479, 8486, 3, 1012, 506, 0, 8480, 8481, 5, 387, 0, 0, 8481, 8486, 3, 1012, 506, 0, 8482, 8483, 5, 402, 0, 0, 8483, 8486, 3, 1012, 506, 0, 8484, 8486, 5, 383, 0, 0, 8485, 8469, 1, 0, 0, 0, 8485, 8470, 1, 0, 0, 0, 8485, 8471, 1, 0, 0, 0, 8485, 8472, 1, 0, 0, 0, 8485, 8473, 1, 0, 0, 0, 8485, 8474, 1, 0, 0, 0, 8485, 8476, 1, 0, 0, 0, 8485, 8478, 1, 0, 0, 0, 8485, 8480, 1, 0, 0, 0, 8485, 8482, 1, 0, 0, 0, 8485, 8484, 1, 0, 0, 0, 8486, 1015, 1, 0, 0, 0, 8487, 8488, 5, 2, 0, 0, 8488, 8489, 3, 1238, 619, 0, 8489, 8490, 5, 3, 0, 0, 8490, 8493, 1, 0, 0, 0, 8491, 8493, 1, 0, 0, 0, 8492, 8487, 1, 0, 0, 0, 8492, 8491, 1, 0, 0, 0, 8493, 1017, 1, 0, 0, 0, 8494, 8497, 3, 1022, 511, 0, 8495, 8497, 3, 1024, 512, 0, 8496, 8494, 1, 0, 0, 0, 8496, 8495, 1, 0, 0, 0, 8497, 1019, 1, 0, 0, 0, 8498, 8501, 3, 1022, 511, 0, 8499, 8501, 3, 1024, 512, 0, 8500, 8498, 1, 0, 0, 0, 8500, 8499, 1, 0, 0, 0, 8501, 1021, 1, 0, 0, 0, 8502, 8503, 5, 382, 0, 0, 8503, 8504, 3, 1032, 516, 0, 8504, 8505, 5, 2, 0, 0, 8505, 8506, 3, 1164, 582, 0, 8506, 8507, 5, 3, 0, 0, 8507, 1023, 1, 0, 0, 0, 8508, 8509, 5, 382, 0, 0, 8509, 8510, 3, 1032, 516, 0, 8510, 1025, 1, 0, 0, 0, 8511, 8516, 3, 1030, 515, 0, 8512, 8513, 5, 2, 0, 0, 8513, 8514, 3, 1238, 619, 0, 8514, 8515, 5, 3, 0, 0, 8515, 8517, 1, 0, 0, 0, 8516, 8512, 1, 0, 0, 0, 8516, 8517, 1, 0, 0, 0, 8517, 1027, 1, 0, 0, 0, 8518, 8523, 3, 1030, 515, 0, 8519, 8520, 5, 2, 0, 0, 8520, 8521, 3, 1238, 619, 0, 8521, 8522, 5, 3, 0, 0, 8522, 8524, 1, 0, 0, 0, 8523, 8519, 1, 0, 0, 0, 8523, 8524, 1, 0, 0, 0, 8524, 1029, 1, 0, 0, 0, 8525, 8526, 7, 43, 0, 0, 8526, 8532, 3, 1032, 516, 0, 8527, 8532, 5, 416, 0, 0, 8528, 8529, 5, 398, 0, 0, 8529, 8530, 7, 44, 0, 0, 8530, 8532, 3, 1032, 516, 0, 8531, 8525, 1, 0, 0, 0, 8531, 8527, 1, 0, 0, 0, 8531, 8528, 1, 0, 0, 0, 8532, 1031, 1, 0, 0, 0, 8533, 8536, 5, 367, 0, 0, 8534, 8536, 1, 0, 0, 0, 8535, 8533, 1, 0, 0, 0, 8535, 8534, 1, 0, 0, 0, 8536, 1033, 1, 0, 0, 0, 8537, 8542, 7, 45, 0, 0, 8538, 8539, 5, 2, 0, 0, 8539, 8540, 3, 1238, 619, 0, 8540, 8541, 5, 3, 0, 0, 8541, 8543, 1, 0, 0, 0, 8542, 8538, 1, 0, 0, 0, 8542, 8543, 1, 0, 0, 0, 8543, 8544, 1, 0, 0, 0, 8544, 8545, 3, 1038, 519, 0, 8545, 1035, 1, 0, 0, 0, 8546, 8547, 5, 396, 0, 0, 8547, 1037, 1, 0, 0, 0, 8548, 8549, 5, 105, 0, 0, 8549, 8550, 5, 411, 0, 0, 8550, 8556, 5, 379, 0, 0, 8551, 8552, 5, 372, 0, 0, 8552, 8553, 5, 411, 0, 0, 8553, 8556, 5, 379, 0, 0, 8554, 8556, 1, 0, 0, 0, 8555, 8548, 1, 0, 0, 0, 8555, 8551, 1, 0, 0, 0, 8555, 8554, 1, 0, 0, 0, 8556, 1039, 1, 0, 0, 0, 8557, 8584, 5, 377, 0, 0, 8558, 8584, 5, 257, 0, 0, 8559, 8584, 5, 176, 0, 0, 8560, 8584, 5, 218, 0, 0, 8561, 8584, 5, 254, 0, 0, 8562, 8584, 3, 1042, 521, 0, 8563, 8564, 5, 377, 0, 0, 8564, 8565, 5, 94, 0, 0, 8565, 8584, 5, 257, 0, 0, 8566, 8567, 5, 176, 0, 0, 8567, 8571, 5, 94, 0, 0, 8568, 8572, 5, 218, 0, 0, 8569, 8572, 5, 254, 0, 0, 8570, 8572, 3, 1042, 521, 0, 8571, 8568, 1, 0, 0, 0, 8571, 8569, 1, 0, 0, 0, 8571, 8570, 1, 0, 0, 0, 8572, 8584, 1, 0, 0, 0, 8573, 8574, 5, 218, 0, 0, 8574, 8577, 5, 94, 0, 0, 8575, 8578, 5, 254, 0, 0, 8576, 8578, 3, 1042, 521, 0, 8577, 8575, 1, 0, 0, 0, 8577, 8576, 1, 0, 0, 0, 8578, 8584, 1, 0, 0, 0, 8579, 8580, 5, 254, 0, 0, 8580, 8581, 5, 94, 0, 0, 8581, 8584, 3, 1042, 521, 0, 8582, 8584, 1, 0, 0, 0, 8583, 8557, 1, 0, 0, 0, 8583, 8558, 1, 0, 0, 0, 8583, 8559, 1, 0, 0, 0, 8583, 8560, 1, 0, 0, 0, 8583, 8561, 1, 0, 0, 0, 8583, 8562, 1, 0, 0, 0, 8583, 8563, 1, 0, 0, 0, 8583, 8566, 1, 0, 0, 0, 8583, 8573, 1, 0, 0, 0, 8583, 8579, 1, 0, 0, 0, 8583, 8582, 1, 0, 0, 0, 8584, 1041, 1, 0, 0, 0, 8585, 8590, 5, 319, 0, 0, 8586, 8587, 5, 2, 0, 0, 8587, 8588, 3, 1238, 619, 0, 8588, 8589, 5, 3, 0, 0, 8589, 8591, 1, 0, 0, 0, 8590, 8586, 1, 0, 0, 0, 8590, 8591, 1, 0, 0, 0, 8591, 1043, 1, 0, 0, 0, 8592, 8593, 5, 197, 0, 0, 8593, 8596, 3, 1046, 523, 0, 8594, 8596, 1, 0, 0, 0, 8595, 8592, 1, 0, 0, 0, 8595, 8594, 1, 0, 0, 0, 8596, 1045, 1, 0, 0, 0, 8597, 8598, 3, 1048, 524, 0, 8598, 1047, 1, 0, 0, 0, 8599, 8601, 3, 1050, 525, 0, 8600, 8602, 3, 1158, 579, 0, 8601, 8600, 1, 0, 0, 0, 8601, 8602, 1, 0, 0, 0, 8602, 1049, 1, 0, 0, 0, 8603, 8608, 3, 1052, 526, 0, 8604, 8605, 7, 46, 0, 0, 8605, 8607, 3, 1052, 526, 0, 8606, 8604, 1, 0, 0, 0, 8607, 8610, 1, 0, 0, 0, 8608, 8606, 1, 0, 0, 0, 8608, 8609, 1, 0, 0, 0, 8609, 1051, 1, 0, 0, 0, 8610, 8608, 1, 0, 0, 0, 8611, 8616, 3, 1054, 527, 0, 8612, 8613, 5, 82, 0, 0, 8613, 8615, 3, 1054, 527, 0, 8614, 8612, 1, 0, 0, 0, 8615, 8618, 1, 0, 0, 0, 8616, 8614, 1, 0, 0, 0, 8616, 8617, 1, 0, 0, 0, 8617, 1053, 1, 0, 0, 0, 8618, 8616, 1, 0, 0, 0, 8619, 8624, 3, 1056, 528, 0, 8620, 8621, 5, 33, 0, 0, 8621, 8623, 3, 1056, 528, 0, 8622, 8620, 1, 0, 0, 0, 8623, 8626, 1, 0, 0, 0, 8624, 8622, 1, 0, 0, 0, 8624, 8625, 1, 0, 0, 0, 8625, 1055, 1, 0, 0, 0, 8626, 8624, 1, 0, 0, 0, 8627, 8639, 3, 1058, 529, 0, 8628, 8630, 5, 77, 0, 0, 8629, 8628, 1, 0, 0, 0, 8629, 8630, 1, 0, 0, 0, 8630, 8631, 1, 0, 0, 0, 8631, 8633, 5, 380, 0, 0, 8632, 8634, 5, 91, 0, 0, 8633, 8632, 1, 0, 0, 0, 8633, 8634, 1, 0, 0, 0, 8634, 8635, 1, 0, 0, 0, 8635, 8636, 3, 1058, 529, 0, 8636, 8637, 5, 33, 0, 0, 8637, 8638, 3, 1058, 529, 0, 8638, 8640, 1, 0, 0, 0, 8639, 8629, 1, 0, 0, 0, 8639, 8640, 1, 0, 0, 0, 8640, 1057, 1, 0, 0, 0, 8641, 8647, 3, 1060, 530, 0, 8642, 8644, 5, 77, 0, 0, 8643, 8642, 1, 0, 0, 0, 8643, 8644, 1, 0, 0, 0, 8644, 8645, 1, 0, 0, 0, 8645, 8646, 5, 68, 0, 0, 8646, 8648, 3, 1190, 595, 0, 8647, 8643, 1, 0, 0, 0, 8647, 8648, 1, 0, 0, 0, 8648, 1059, 1, 0, 0, 0, 8649, 8651, 5, 77, 0, 0, 8650, 8649, 1, 0, 0, 0, 8650, 8651, 1, 0, 0, 0, 8651, 8652, 1, 0, 0, 0, 8652, 8653, 3, 1062, 531, 0, 8653, 1061, 1, 0, 0, 0, 8654, 8656, 3, 1064, 532, 0, 8655, 8657, 7, 47, 0, 0, 8656, 8655, 1, 0, 0, 0, 8656, 8657, 1, 0, 0, 0, 8657, 1063, 1, 0, 0, 0, 8658, 8682, 3, 1066, 533, 0, 8659, 8661, 5, 116, 0, 0, 8660, 8662, 5, 77, 0, 0, 8661, 8660, 1, 0, 0, 0, 8661, 8662, 1, 0, 0, 0, 8662, 8680, 1, 0, 0, 0, 8663, 8681, 5, 78, 0, 0, 8664, 8681, 5, 96, 0, 0, 8665, 8681, 5, 60, 0, 0, 8666, 8681, 5, 358, 0, 0, 8667, 8668, 5, 56, 0, 0, 8668, 8669, 5, 64, 0, 0, 8669, 8681, 3, 1046, 523, 0, 8670, 8671, 5, 268, 0, 0, 8671, 8672, 5, 2, 0, 0, 8672, 8673, 3, 1170, 585, 0, 8673, 8674, 5, 3, 0, 0, 8674, 8681, 1, 0, 0, 0, 8675, 8681, 5, 188, 0, 0, 8676, 8678, 3, 1180, 590, 0, 8677, 8676, 1, 0, 0, 0, 8677, 8678, 1, 0, 0, 0, 8678, 8679, 1, 0, 0, 0, 8679, 8681, 5, 478, 0, 0, 8680, 8663, 1, 0, 0, 0, 8680, 8664, 1, 0, 0, 0, 8680, 8665, 1, 0, 0, 0, 8680, 8666, 1, 0, 0, 0, 8680, 8667, 1, 0, 0, 0, 8680, 8670, 1, 0, 0, 0, 8680, 8675, 1, 0, 0, 0, 8680, 8677, 1, 0, 0, 0, 8681, 8683, 1, 0, 0, 0, 8682, 8659, 1, 0, 0, 0, 8682, 8683, 1, 0, 0, 0, 8683, 1065, 1, 0, 0, 0, 8684, 8696, 3, 1068, 534, 0, 8685, 8686, 7, 48, 0, 0, 8686, 8697, 3, 1068, 534, 0, 8687, 8688, 3, 1162, 581, 0, 8688, 8694, 3, 1152, 576, 0, 8689, 8695, 3, 870, 435, 0, 8690, 8691, 5, 2, 0, 0, 8691, 8692, 3, 1046, 523, 0, 8692, 8693, 5, 3, 0, 0, 8693, 8695, 1, 0, 0, 0, 8694, 8689, 1, 0, 0, 0, 8694, 8690, 1, 0, 0, 0, 8695, 8697, 1, 0, 0, 0, 8696, 8685, 1, 0, 0, 0, 8696, 8687, 1, 0, 0, 0, 8696, 8697, 1, 0, 0, 0, 8697, 1067, 1, 0, 0, 0, 8698, 8711, 3, 1070, 535, 0, 8699, 8701, 5, 77, 0, 0, 8700, 8699, 1, 0, 0, 0, 8700, 8701, 1, 0, 0, 0, 8701, 8706, 1, 0, 0, 0, 8702, 8707, 5, 120, 0, 0, 8703, 8707, 5, 114, 0, 0, 8704, 8705, 5, 127, 0, 0, 8705, 8707, 5, 94, 0, 0, 8706, 8702, 1, 0, 0, 0, 8706, 8703, 1, 0, 0, 0, 8706, 8704, 1, 0, 0, 0, 8707, 8708, 1, 0, 0, 0, 8708, 8709, 3, 1070, 535, 0, 8709, 8710, 3, 1044, 522, 0, 8710, 8712, 1, 0, 0, 0, 8711, 8700, 1, 0, 0, 0, 8711, 8712, 1, 0, 0, 0, 8712, 1069, 1, 0, 0, 0, 8713, 8719, 3, 1072, 536, 0, 8714, 8715, 3, 1158, 579, 0, 8715, 8716, 3, 1072, 536, 0, 8716, 8718, 1, 0, 0, 0, 8717, 8714, 1, 0, 0, 0, 8718, 8721, 1, 0, 0, 0, 8719, 8717, 1, 0, 0, 0, 8719, 8720, 1, 0, 0, 0, 8720, 1071, 1, 0, 0, 0, 8721, 8719, 1, 0, 0, 0, 8722, 8724, 3, 1158, 579, 0, 8723, 8722, 1, 0, 0, 0, 8723, 8724, 1, 0, 0, 0, 8724, 8725, 1, 0, 0, 0, 8725, 8726, 3, 1074, 537, 0, 8726, 1073, 1, 0, 0, 0, 8727, 8732, 3, 1076, 538, 0, 8728, 8729, 7, 49, 0, 0, 8729, 8731, 3, 1076, 538, 0, 8730, 8728, 1, 0, 0, 0, 8731, 8734, 1, 0, 0, 0, 8732, 8730, 1, 0, 0, 0, 8732, 8733, 1, 0, 0, 0, 8733, 1075, 1, 0, 0, 0, 8734, 8732, 1, 0, 0, 0, 8735, 8740, 3, 1078, 539, 0, 8736, 8737, 7, 50, 0, 0, 8737, 8739, 3, 1078, 539, 0, 8738, 8736, 1, 0, 0, 0, 8739, 8742, 1, 0, 0, 0, 8740, 8738, 1, 0, 0, 0, 8740, 8741, 1, 0, 0, 0, 8741, 1077, 1, 0, 0, 0, 8742, 8740, 1, 0, 0, 0, 8743, 8746, 3, 1080, 540, 0, 8744, 8745, 5, 15, 0, 0, 8745, 8747, 3, 1046, 523, 0, 8746, 8744, 1, 0, 0, 0, 8746, 8747, 1, 0, 0, 0, 8747, 1079, 1, 0, 0, 0, 8748, 8750, 7, 49, 0, 0, 8749, 8748, 1, 0, 0, 0, 8749, 8750, 1, 0, 0, 0, 8750, 8751, 1, 0, 0, 0, 8751, 8752, 3, 1082, 541, 0, 8752, 1081, 1, 0, 0, 0, 8753, 8758, 3, 1084, 542, 0, 8754, 8755, 5, 142, 0, 0, 8755, 8756, 5, 411, 0, 0, 8756, 8757, 5, 379, 0, 0, 8757, 8759, 3, 1046, 523, 0, 8758, 8754, 1, 0, 0, 0, 8758, 8759, 1, 0, 0, 0, 8759, 1083, 1, 0, 0, 0, 8760, 8763, 3, 1086, 543, 0, 8761, 8762, 5, 43, 0, 0, 8762, 8764, 3, 478, 239, 0, 8763, 8761, 1, 0, 0, 0, 8763, 8764, 1, 0, 0, 0, 8764, 1085, 1, 0, 0, 0, 8765, 8770, 3, 1090, 545, 0, 8766, 8767, 5, 26, 0, 0, 8767, 8769, 3, 1004, 502, 0, 8768, 8766, 1, 0, 0, 0, 8769, 8772, 1, 0, 0, 0, 8770, 8768, 1, 0, 0, 0, 8770, 8771, 1, 0, 0, 0, 8771, 1087, 1, 0, 0, 0, 8772, 8770, 1, 0, 0, 0, 8773, 8774, 6, 544, -1, 0, 8774, 8781, 3, 1090, 545, 0, 8775, 8776, 7, 49, 0, 0, 8776, 8781, 3, 1088, 544, 9, 8777, 8778, 3, 1158, 579, 0, 8778, 8779, 3, 1088, 544, 3, 8779, 8781, 1, 0, 0, 0, 8780, 8773, 1, 0, 0, 0, 8780, 8775, 1, 0, 0, 0, 8780, 8777, 1, 0, 0, 0, 8781, 8821, 1, 0, 0, 0, 8782, 8783, 10, 8, 0, 0, 8783, 8784, 5, 15, 0, 0, 8784, 8820, 3, 1088, 544, 9, 8785, 8786, 10, 7, 0, 0, 8786, 8787, 7, 50, 0, 0, 8787, 8820, 3, 1088, 544, 8, 8788, 8789, 10, 6, 0, 0, 8789, 8790, 7, 49, 0, 0, 8790, 8820, 3, 1088, 544, 7, 8791, 8792, 10, 5, 0, 0, 8792, 8793, 3, 1158, 579, 0, 8793, 8794, 3, 1088, 544, 6, 8794, 8820, 1, 0, 0, 0, 8795, 8796, 10, 4, 0, 0, 8796, 8797, 7, 48, 0, 0, 8797, 8820, 3, 1088, 544, 5, 8798, 8799, 10, 10, 0, 0, 8799, 8800, 5, 26, 0, 0, 8800, 8820, 3, 1004, 502, 0, 8801, 8802, 10, 2, 0, 0, 8802, 8820, 3, 1158, 579, 0, 8803, 8804, 10, 1, 0, 0, 8804, 8806, 5, 116, 0, 0, 8805, 8807, 5, 77, 0, 0, 8806, 8805, 1, 0, 0, 0, 8806, 8807, 1, 0, 0, 0, 8807, 8817, 1, 0, 0, 0, 8808, 8809, 5, 56, 0, 0, 8809, 8810, 5, 64, 0, 0, 8810, 8818, 3, 1088, 544, 0, 8811, 8812, 5, 268, 0, 0, 8812, 8813, 5, 2, 0, 0, 8813, 8814, 3, 1170, 585, 0, 8814, 8815, 5, 3, 0, 0, 8815, 8818, 1, 0, 0, 0, 8816, 8818, 5, 188, 0, 0, 8817, 8808, 1, 0, 0, 0, 8817, 8811, 1, 0, 0, 0, 8817, 8816, 1, 0, 0, 0, 8818, 8820, 1, 0, 0, 0, 8819, 8782, 1, 0, 0, 0, 8819, 8785, 1, 0, 0, 0, 8819, 8788, 1, 0, 0, 0, 8819, 8791, 1, 0, 0, 0, 8819, 8795, 1, 0, 0, 0, 8819, 8798, 1, 0, 0, 0, 8819, 8801, 1, 0, 0, 0, 8819, 8803, 1, 0, 0, 0, 8820, 8823, 1, 0, 0, 0, 8821, 8819, 1, 0, 0, 0, 8821, 8822, 1, 0, 0, 0, 8822, 1089, 1, 0, 0, 0, 8823, 8821, 1, 0, 0, 0, 8824, 8825, 5, 389, 0, 0, 8825, 8861, 3, 870, 435, 0, 8826, 8829, 5, 35, 0, 0, 8827, 8830, 3, 870, 435, 0, 8828, 8830, 3, 1172, 586, 0, 8829, 8827, 1, 0, 0, 0, 8829, 8828, 1, 0, 0, 0, 8830, 8861, 1, 0, 0, 0, 8831, 8832, 5, 28, 0, 0, 8832, 8861, 3, 1208, 604, 0, 8833, 8834, 5, 470, 0, 0, 8834, 8835, 5, 2, 0, 0, 8835, 8836, 3, 1164, 582, 0, 8836, 8837, 5, 3, 0, 0, 8837, 8861, 1, 0, 0, 0, 8838, 8839, 5, 98, 0, 0, 8839, 8861, 3, 870, 435, 0, 8840, 8861, 3, 1202, 601, 0, 8841, 8861, 3, 1230, 615, 0, 8842, 8861, 3, 1092, 546, 0, 8843, 8844, 5, 2, 0, 0, 8844, 8845, 3, 1046, 523, 0, 8845, 8846, 5, 3, 0, 0, 8846, 8847, 3, 1208, 604, 0, 8847, 8861, 1, 0, 0, 0, 8848, 8861, 3, 1192, 596, 0, 8849, 8861, 3, 1096, 548, 0, 8850, 8852, 3, 870, 435, 0, 8851, 8853, 3, 1206, 603, 0, 8852, 8851, 1, 0, 0, 0, 8852, 8853, 1, 0, 0, 0, 8853, 8861, 1, 0, 0, 0, 8854, 8861, 3, 1148, 574, 0, 8855, 8861, 3, 1150, 575, 0, 8856, 8857, 3, 1146, 573, 0, 8857, 8858, 5, 125, 0, 0, 8858, 8859, 3, 1146, 573, 0, 8859, 8861, 1, 0, 0, 0, 8860, 8824, 1, 0, 0, 0, 8860, 8826, 1, 0, 0, 0, 8860, 8831, 1, 0, 0, 0, 8860, 8833, 1, 0, 0, 0, 8860, 8838, 1, 0, 0, 0, 8860, 8840, 1, 0, 0, 0, 8860, 8841, 1, 0, 0, 0, 8860, 8842, 1, 0, 0, 0, 8860, 8843, 1, 0, 0, 0, 8860, 8848, 1, 0, 0, 0, 8860, 8849, 1, 0, 0, 0, 8860, 8850, 1, 0, 0, 0, 8860, 8854, 1, 0, 0, 0, 8860, 8855, 1, 0, 0, 0, 8860, 8856, 1, 0, 0, 0, 8861, 1091, 1, 0, 0, 0, 8862, 8863, 5, 661, 0, 0, 8863, 1093, 1, 0, 0, 0, 8864, 8865, 3, 1228, 614, 0, 8865, 8884, 5, 2, 0, 0, 8866, 8870, 3, 1166, 583, 0, 8867, 8868, 5, 6, 0, 0, 8868, 8869, 5, 101, 0, 0, 8869, 8871, 3, 1168, 584, 0, 8870, 8867, 1, 0, 0, 0, 8870, 8871, 1, 0, 0, 0, 8871, 8872, 1, 0, 0, 0, 8872, 8873, 3, 900, 450, 0, 8873, 8885, 1, 0, 0, 0, 8874, 8875, 5, 101, 0, 0, 8875, 8876, 3, 1168, 584, 0, 8876, 8877, 3, 900, 450, 0, 8877, 8885, 1, 0, 0, 0, 8878, 8879, 7, 51, 0, 0, 8879, 8880, 3, 1166, 583, 0, 8880, 8881, 3, 900, 450, 0, 8881, 8885, 1, 0, 0, 0, 8882, 8885, 5, 9, 0, 0, 8883, 8885, 1, 0, 0, 0, 8884, 8866, 1, 0, 0, 0, 8884, 8874, 1, 0, 0, 0, 8884, 8878, 1, 0, 0, 0, 8884, 8882, 1, 0, 0, 0, 8884, 8883, 1, 0, 0, 0, 8885, 8886, 1, 0, 0, 0, 8886, 8887, 5, 3, 0, 0, 8887, 1095, 1, 0, 0, 0, 8888, 8889, 3, 1094, 547, 0, 8889, 8890, 3, 1120, 560, 0, 8890, 8891, 3, 1122, 561, 0, 8891, 8892, 3, 1130, 565, 0, 8892, 8895, 1, 0, 0, 0, 8893, 8895, 3, 1100, 550, 0, 8894, 8888, 1, 0, 0, 0, 8894, 8893, 1, 0, 0, 0, 8895, 1097, 1, 0, 0, 0, 8896, 8899, 3, 1094, 547, 0, 8897, 8899, 3, 1100, 550, 0, 8898, 8896, 1, 0, 0, 0, 8898, 8897, 1, 0, 0, 0, 8899, 1099, 1, 0, 0, 0, 8900, 8901, 5, 108, 0, 0, 8901, 8902, 5, 62, 0, 0, 8902, 8903, 5, 2, 0, 0, 8903, 8904, 3, 1046, 523, 0, 8904, 8905, 5, 3, 0, 0, 8905, 9078, 1, 0, 0, 0, 8906, 9078, 5, 48, 0, 0, 8907, 8912, 5, 50, 0, 0, 8908, 8909, 5, 2, 0, 0, 8909, 8910, 3, 1238, 619, 0, 8910, 8911, 5, 3, 0, 0, 8911, 8913, 1, 0, 0, 0, 8912, 8908, 1, 0, 0, 0, 8912, 8913, 1, 0, 0, 0, 8913, 9078, 1, 0, 0, 0, 8914, 8919, 5, 51, 0, 0, 8915, 8916, 5, 2, 0, 0, 8916, 8917, 3, 1238, 619, 0, 8917, 8918, 5, 3, 0, 0, 8918, 8920, 1, 0, 0, 0, 8919, 8915, 1, 0, 0, 0, 8919, 8920, 1, 0, 0, 0, 8920, 9078, 1, 0, 0, 0, 8921, 8926, 5, 75, 0, 0, 8922, 8923, 5, 2, 0, 0, 8923, 8924, 3, 1238, 619, 0, 8924, 8925, 5, 3, 0, 0, 8925, 8927, 1, 0, 0, 0, 8926, 8922, 1, 0, 0, 0, 8926, 8927, 1, 0, 0, 0, 8927, 9078, 1, 0, 0, 0, 8928, 8933, 5, 76, 0, 0, 8929, 8930, 5, 2, 0, 0, 8930, 8931, 3, 1238, 619, 0, 8931, 8932, 5, 3, 0, 0, 8932, 8934, 1, 0, 0, 0, 8933, 8929, 1, 0, 0, 0, 8933, 8934, 1, 0, 0, 0, 8934, 9078, 1, 0, 0, 0, 8935, 9078, 5, 49, 0, 0, 8936, 9078, 5, 52, 0, 0, 8937, 9078, 5, 89, 0, 0, 8938, 9078, 5, 99, 0, 0, 8939, 9078, 5, 47, 0, 0, 8940, 9078, 5, 111, 0, 0, 8941, 8942, 5, 41, 0, 0, 8942, 8943, 5, 2, 0, 0, 8943, 8944, 3, 1046, 523, 0, 8944, 8945, 5, 36, 0, 0, 8945, 8946, 3, 1004, 502, 0, 8946, 8947, 5, 3, 0, 0, 8947, 9078, 1, 0, 0, 0, 8948, 8949, 5, 390, 0, 0, 8949, 8950, 5, 2, 0, 0, 8950, 8951, 3, 1176, 588, 0, 8951, 8952, 5, 3, 0, 0, 8952, 9078, 1, 0, 0, 0, 8953, 8954, 5, 489, 0, 0, 8954, 8955, 5, 2, 0, 0, 8955, 8958, 3, 1046, 523, 0, 8956, 8957, 5, 6, 0, 0, 8957, 8959, 3, 1180, 590, 0, 8958, 8956, 1, 0, 0, 0, 8958, 8959, 1, 0, 0, 0, 8959, 8960, 1, 0, 0, 0, 8960, 8961, 5, 3, 0, 0, 8961, 9078, 1, 0, 0, 0, 8962, 8963, 5, 403, 0, 0, 8963, 8964, 5, 2, 0, 0, 8964, 8965, 3, 1182, 591, 0, 8965, 8966, 5, 3, 0, 0, 8966, 9078, 1, 0, 0, 0, 8967, 8968, 5, 404, 0, 0, 8968, 8969, 5, 2, 0, 0, 8969, 8970, 3, 1184, 592, 0, 8970, 8971, 5, 3, 0, 0, 8971, 9078, 1, 0, 0, 0, 8972, 8973, 5, 410, 0, 0, 8973, 8974, 5, 2, 0, 0, 8974, 8975, 3, 1186, 593, 0, 8975, 8976, 5, 3, 0, 0, 8976, 9078, 1, 0, 0, 0, 8977, 8978, 5, 413, 0, 0, 8978, 8979, 5, 2, 0, 0, 8979, 8980, 3, 1046, 523, 0, 8980, 8981, 5, 36, 0, 0, 8981, 8982, 3, 1004, 502, 0, 8982, 8983, 5, 3, 0, 0, 8983, 9078, 1, 0, 0, 0, 8984, 8985, 5, 414, 0, 0, 8985, 8987, 5, 2, 0, 0, 8986, 8988, 7, 52, 0, 0, 8987, 8986, 1, 0, 0, 0, 8987, 8988, 1, 0, 0, 0, 8988, 8989, 1, 0, 0, 0, 8989, 8990, 3, 1188, 594, 0, 8990, 8991, 5, 3, 0, 0, 8991, 9078, 1, 0, 0, 0, 8992, 8993, 5, 401, 0, 0, 8993, 8994, 5, 2, 0, 0, 8994, 8995, 3, 1046, 523, 0, 8995, 8996, 5, 6, 0, 0, 8996, 8997, 3, 1046, 523, 0, 8997, 8998, 5, 3, 0, 0, 8998, 9078, 1, 0, 0, 0, 8999, 9000, 5, 386, 0, 0, 9000, 9001, 5, 2, 0, 0, 9001, 9002, 3, 1164, 582, 0, 9002, 9003, 5, 3, 0, 0, 9003, 9078, 1, 0, 0, 0, 9004, 9005, 5, 392, 0, 0, 9005, 9006, 5, 2, 0, 0, 9006, 9007, 3, 1164, 582, 0, 9007, 9008, 5, 3, 0, 0, 9008, 9078, 1, 0, 0, 0, 9009, 9010, 5, 397, 0, 0, 9010, 9011, 5, 2, 0, 0, 9011, 9012, 3, 1164, 582, 0, 9012, 9013, 5, 3, 0, 0, 9013, 9078, 1, 0, 0, 0, 9014, 9015, 5, 425, 0, 0, 9015, 9016, 5, 2, 0, 0, 9016, 9017, 3, 1164, 582, 0, 9017, 9018, 5, 3, 0, 0, 9018, 9078, 1, 0, 0, 0, 9019, 9020, 5, 426, 0, 0, 9020, 9021, 5, 2, 0, 0, 9021, 9022, 5, 259, 0, 0, 9022, 9028, 3, 1262, 631, 0, 9023, 9026, 5, 6, 0, 0, 9024, 9027, 3, 1106, 553, 0, 9025, 9027, 3, 1164, 582, 0, 9026, 9024, 1, 0, 0, 0, 9026, 9025, 1, 0, 0, 0, 9027, 9029, 1, 0, 0, 0, 9028, 9023, 1, 0, 0, 0, 9028, 9029, 1, 0, 0, 0, 9029, 9030, 1, 0, 0, 0, 9030, 9031, 5, 3, 0, 0, 9031, 9078, 1, 0, 0, 0, 9032, 9033, 5, 427, 0, 0, 9033, 9034, 5, 2, 0, 0, 9034, 9035, 3, 1090, 545, 0, 9035, 9036, 3, 1116, 558, 0, 9036, 9037, 5, 3, 0, 0, 9037, 9078, 1, 0, 0, 0, 9038, 9039, 5, 428, 0, 0, 9039, 9040, 5, 2, 0, 0, 9040, 9041, 3, 1108, 554, 0, 9041, 9042, 5, 3, 0, 0, 9042, 9078, 1, 0, 0, 0, 9043, 9044, 5, 429, 0, 0, 9044, 9045, 5, 2, 0, 0, 9045, 9046, 3, 1112, 556, 0, 9046, 9047, 3, 1046, 523, 0, 9047, 9048, 3, 1114, 557, 0, 9048, 9049, 5, 3, 0, 0, 9049, 9078, 1, 0, 0, 0, 9050, 9051, 5, 430, 0, 0, 9051, 9052, 5, 2, 0, 0, 9052, 9053, 5, 259, 0, 0, 9053, 9056, 3, 1262, 631, 0, 9054, 9055, 5, 6, 0, 0, 9055, 9057, 3, 1046, 523, 0, 9056, 9054, 1, 0, 0, 0, 9056, 9057, 1, 0, 0, 0, 9057, 9058, 1, 0, 0, 0, 9058, 9059, 5, 3, 0, 0, 9059, 9078, 1, 0, 0, 0, 9060, 9061, 5, 431, 0, 0, 9061, 9062, 5, 2, 0, 0, 9062, 9063, 5, 376, 0, 0, 9063, 9064, 3, 1046, 523, 0, 9064, 9065, 5, 6, 0, 0, 9065, 9066, 3, 1102, 551, 0, 9066, 9067, 3, 1104, 552, 0, 9067, 9068, 5, 3, 0, 0, 9068, 9078, 1, 0, 0, 0, 9069, 9070, 5, 432, 0, 0, 9070, 9071, 5, 2, 0, 0, 9071, 9072, 3, 1112, 556, 0, 9072, 9073, 3, 1046, 523, 0, 9073, 9074, 5, 36, 0, 0, 9074, 9075, 3, 1006, 503, 0, 9075, 9076, 5, 3, 0, 0, 9076, 9078, 1, 0, 0, 0, 9077, 8900, 1, 0, 0, 0, 9077, 8906, 1, 0, 0, 0, 9077, 8907, 1, 0, 0, 0, 9077, 8914, 1, 0, 0, 0, 9077, 8921, 1, 0, 0, 0, 9077, 8928, 1, 0, 0, 0, 9077, 8935, 1, 0, 0, 0, 9077, 8936, 1, 0, 0, 0, 9077, 8937, 1, 0, 0, 0, 9077, 8938, 1, 0, 0, 0, 9077, 8939, 1, 0, 0, 0, 9077, 8940, 1, 0, 0, 0, 9077, 8941, 1, 0, 0, 0, 9077, 8948, 1, 0, 0, 0, 9077, 8953, 1, 0, 0, 0, 9077, 8962, 1, 0, 0, 0, 9077, 8967, 1, 0, 0, 0, 9077, 8972, 1, 0, 0, 0, 9077, 8977, 1, 0, 0, 0, 9077, 8984, 1, 0, 0, 0, 9077, 8992, 1, 0, 0, 0, 9077, 8999, 1, 0, 0, 0, 9077, 9004, 1, 0, 0, 0, 9077, 9009, 1, 0, 0, 0, 9077, 9014, 1, 0, 0, 0, 9077, 9019, 1, 0, 0, 0, 9077, 9032, 1, 0, 0, 0, 9077, 9038, 1, 0, 0, 0, 9077, 9043, 1, 0, 0, 0, 9077, 9050, 1, 0, 0, 0, 9077, 9060, 1, 0, 0, 0, 9077, 9069, 1, 0, 0, 0, 9078, 1101, 1, 0, 0, 0, 9079, 9080, 5, 368, 0, 0, 9080, 9085, 3, 1046, 523, 0, 9081, 9082, 5, 368, 0, 0, 9082, 9083, 5, 262, 0, 0, 9083, 9085, 5, 450, 0, 0, 9084, 9079, 1, 0, 0, 0, 9084, 9081, 1, 0, 0, 0, 9085, 1103, 1, 0, 0, 0, 9086, 9087, 5, 6, 0, 0, 9087, 9088, 5, 332, 0, 0, 9088, 9098, 5, 378, 0, 0, 9089, 9090, 5, 6, 0, 0, 9090, 9091, 5, 332, 0, 0, 9091, 9098, 5, 262, 0, 0, 9092, 9093, 5, 6, 0, 0, 9093, 9094, 5, 332, 0, 0, 9094, 9095, 5, 262, 0, 0, 9095, 9098, 5, 450, 0, 0, 9096, 9098, 1, 0, 0, 0, 9097, 9086, 1, 0, 0, 0, 9097, 9089, 1, 0, 0, 0, 9097, 9092, 1, 0, 0, 0, 9097, 9096, 1, 0, 0, 0, 9098, 1105, 1, 0, 0, 0, 9099, 9100, 5, 417, 0, 0, 9100, 9101, 5, 2, 0, 0, 9101, 9102, 3, 1108, 554, 0, 9102, 9103, 5, 3, 0, 0, 9103, 1107, 1, 0, 0, 0, 9104, 9109, 3, 1110, 555, 0, 9105, 9106, 5, 6, 0, 0, 9106, 9108, 3, 1110, 555, 0, 9107, 9105, 1, 0, 0, 0, 9108, 9111, 1, 0, 0, 0, 9109, 9107, 1, 0, 0, 0, 9109, 9110, 1, 0, 0, 0, 9110, 1109, 1, 0, 0, 0, 9111, 9109, 1, 0, 0, 0, 9112, 9115, 3, 1046, 523, 0, 9113, 9114, 5, 36, 0, 0, 9114, 9116, 3, 1262, 631, 0, 9115, 9113, 1, 0, 0, 0, 9115, 9116, 1, 0, 0, 0, 9116, 1111, 1, 0, 0, 0, 9117, 9118, 7, 53, 0, 0, 9118, 1113, 1, 0, 0, 0, 9119, 9120, 5, 285, 0, 0, 9120, 9125, 5, 371, 0, 0, 9121, 9122, 5, 340, 0, 0, 9122, 9125, 5, 371, 0, 0, 9123, 9125, 1, 0, 0, 0, 9124, 9119, 1, 0, 0, 0, 9124, 9121, 1, 0, 0, 0, 9124, 9123, 1, 0, 0, 0, 9125, 1115, 1, 0, 0, 0, 9126, 9127, 5, 279, 0, 0, 9127, 9142, 3, 1090, 545, 0, 9128, 9129, 5, 279, 0, 0, 9129, 9130, 3, 1090, 545, 0, 9130, 9131, 3, 1118, 559, 0, 9131, 9142, 1, 0, 0, 0, 9132, 9133, 5, 279, 0, 0, 9133, 9134, 3, 1118, 559, 0, 9134, 9135, 3, 1090, 545, 0, 9135, 9142, 1, 0, 0, 0, 9136, 9137, 5, 279, 0, 0, 9137, 9138, 3, 1118, 559, 0, 9138, 9139, 3, 1090, 545, 0, 9139, 9140, 3, 1118, 559, 0, 9140, 9142, 1, 0, 0, 0, 9141, 9126, 1, 0, 0, 0, 9141, 9128, 1, 0, 0, 0, 9141, 9132, 1, 0, 0, 0, 9141, 9136, 1, 0, 0, 0, 9142, 1117, 1, 0, 0, 0, 9143, 9144, 5, 147, 0, 0, 9144, 9145, 7, 54, 0, 0, 9145, 1119, 1, 0, 0, 0, 9146, 9147, 5, 479, 0, 0, 9147, 9148, 5, 66, 0, 0, 9148, 9149, 5, 2, 0, 0, 9149, 9150, 3, 902, 451, 0, 9150, 9151, 5, 3, 0, 0, 9151, 9154, 1, 0, 0, 0, 9152, 9154, 1, 0, 0, 0, 9153, 9146, 1, 0, 0, 0, 9153, 9152, 1, 0, 0, 0, 9154, 1121, 1, 0, 0, 0, 9155, 9156, 5, 480, 0, 0, 9156, 9157, 5, 2, 0, 0, 9157, 9158, 5, 103, 0, 0, 9158, 9159, 3, 1046, 523, 0, 9159, 9160, 5, 3, 0, 0, 9160, 9163, 1, 0, 0, 0, 9161, 9163, 1, 0, 0, 0, 9162, 9155, 1, 0, 0, 0, 9162, 9161, 1, 0, 0, 0, 9163, 1123, 1, 0, 0, 0, 9164, 9165, 5, 104, 0, 0, 9165, 9168, 3, 1126, 563, 0, 9166, 9168, 1, 0, 0, 0, 9167, 9164, 1, 0, 0, 0, 9167, 9166, 1, 0, 0, 0, 9168, 1125, 1, 0, 0, 0, 9169, 9174, 3, 1128, 564, 0, 9170, 9171, 5, 6, 0, 0, 9171, 9173, 3, 1128, 564, 0, 9172, 9170, 1, 0, 0, 0, 9173, 9176, 1, 0, 0, 0, 9174, 9172, 1, 0, 0, 0, 9174, 9175, 1, 0, 0, 0, 9175, 1127, 1, 0, 0, 0, 9176, 9174, 1, 0, 0, 0, 9177, 9178, 3, 1254, 627, 0, 9178, 9179, 5, 36, 0, 0, 9179, 9180, 3, 1132, 566, 0, 9180, 1129, 1, 0, 0, 0, 9181, 9184, 5, 124, 0, 0, 9182, 9185, 3, 1132, 566, 0, 9183, 9185, 3, 1254, 627, 0, 9184, 9182, 1, 0, 0, 0, 9184, 9183, 1, 0, 0, 0, 9185, 9188, 1, 0, 0, 0, 9186, 9188, 1, 0, 0, 0, 9187, 9181, 1, 0, 0, 0, 9187, 9186, 1, 0, 0, 0, 9188, 1131, 1, 0, 0, 0, 9189, 9190, 5, 2, 0, 0, 9190, 9191, 3, 1134, 567, 0, 9191, 9192, 3, 1136, 568, 0, 9192, 9193, 3, 900, 450, 0, 9193, 9194, 3, 1138, 569, 0, 9194, 9195, 5, 3, 0, 0, 9195, 1133, 1, 0, 0, 0, 9196, 9199, 3, 1254, 627, 0, 9197, 9199, 1, 0, 0, 0, 9198, 9196, 1, 0, 0, 0, 9198, 9197, 1, 0, 0, 0, 9199, 1135, 1, 0, 0, 0, 9200, 9201, 5, 278, 0, 0, 9201, 9202, 5, 147, 0, 0, 9202, 9205, 3, 1164, 582, 0, 9203, 9205, 1, 0, 0, 0, 9204, 9200, 1, 0, 0, 0, 9204, 9203, 1, 0, 0, 0, 9205, 1137, 1, 0, 0, 0, 9206, 9207, 5, 292, 0, 0, 9207, 9208, 3, 1140, 570, 0, 9208, 9209, 3, 1144, 572, 0, 9209, 9220, 1, 0, 0, 0, 9210, 9211, 5, 313, 0, 0, 9211, 9212, 3, 1140, 570, 0, 9212, 9213, 3, 1144, 572, 0, 9213, 9220, 1, 0, 0, 0, 9214, 9215, 5, 481, 0, 0, 9215, 9216, 3, 1140, 570, 0, 9216, 9217, 3, 1144, 572, 0, 9217, 9220, 1, 0, 0, 0, 9218, 9220, 1, 0, 0, 0, 9219, 9206, 1, 0, 0, 0, 9219, 9210, 1, 0, 0, 0, 9219, 9214, 1, 0, 0, 0, 9219, 9218, 1, 0, 0, 0, 9220, 1139, 1, 0, 0, 0, 9221, 9228, 3, 1142, 571, 0, 9222, 9223, 5, 380, 0, 0, 9223, 9224, 3, 1142, 571, 0, 9224, 9225, 5, 33, 0, 0, 9225, 9226, 3, 1142, 571, 0, 9226, 9228, 1, 0, 0, 0, 9227, 9221, 1, 0, 0, 0, 9227, 9222, 1, 0, 0, 0, 9228, 1141, 1, 0, 0, 0, 9229, 9230, 5, 355, 0, 0, 9230, 9237, 7, 55, 0, 0, 9231, 9232, 5, 434, 0, 0, 9232, 9237, 5, 407, 0, 0, 9233, 9234, 3, 1046, 523, 0, 9234, 9235, 7, 55, 0, 0, 9235, 9237, 1, 0, 0, 0, 9236, 9229, 1, 0, 0, 0, 9236, 9231, 1, 0, 0, 0, 9236, 9233, 1, 0, 0, 0, 9237, 1143, 1, 0, 0, 0, 9238, 9245, 5, 199, 0, 0, 9239, 9240, 5, 434, 0, 0, 9240, 9246, 5, 407, 0, 0, 9241, 9246, 5, 66, 0, 0, 9242, 9246, 5, 467, 0, 0, 9243, 9244, 5, 262, 0, 0, 9244, 9246, 5, 482, 0, 0, 9245, 9239, 1, 0, 0, 0, 9245, 9241, 1, 0, 0, 0, 9245, 9242, 1, 0, 0, 0, 9245, 9243, 1, 0, 0, 0, 9246, 9249, 1, 0, 0, 0, 9247, 9249, 1, 0, 0, 0, 9248, 9238, 1, 0, 0, 0, 9248, 9247, 1, 0, 0, 0, 9249, 1145, 1, 0, 0, 0, 9250, 9251, 5, 407, 0, 0, 9251, 9253, 5, 2, 0, 0, 9252, 9254, 3, 1164, 582, 0, 9253, 9252, 1, 0, 0, 0, 9253, 9254, 1, 0, 0, 0, 9254, 9255, 1, 0, 0, 0, 9255, 9263, 5, 3, 0, 0, 9256, 9257, 5, 2, 0, 0, 9257, 9258, 3, 1164, 582, 0, 9258, 9259, 5, 6, 0, 0, 9259, 9260, 3, 1046, 523, 0, 9260, 9261, 5, 3, 0, 0, 9261, 9263, 1, 0, 0, 0, 9262, 9250, 1, 0, 0, 0, 9262, 9256, 1, 0, 0, 0, 9263, 1147, 1, 0, 0, 0, 9264, 9265, 5, 407, 0, 0, 9265, 9267, 5, 2, 0, 0, 9266, 9268, 3, 1164, 582, 0, 9267, 9266, 1, 0, 0, 0, 9267, 9268, 1, 0, 0, 0, 9268, 9269, 1, 0, 0, 0, 9269, 9270, 5, 3, 0, 0, 9270, 1149, 1, 0, 0, 0, 9271, 9272, 5, 2, 0, 0, 9272, 9273, 3, 1164, 582, 0, 9273, 9274, 5, 6, 0, 0, 9274, 9275, 3, 1046, 523, 0, 9275, 9276, 5, 3, 0, 0, 9276, 1151, 1, 0, 0, 0, 9277, 9278, 7, 56, 0, 0, 9278, 1153, 1, 0, 0, 0, 9279, 9282, 5, 29, 0, 0, 9280, 9282, 3, 1156, 578, 0, 9281, 9279, 1, 0, 0, 0, 9281, 9280, 1, 0, 0, 0, 9282, 1155, 1, 0, 0, 0, 9283, 9284, 7, 57, 0, 0, 9284, 1157, 1, 0, 0, 0, 9285, 9292, 5, 29, 0, 0, 9286, 9287, 5, 271, 0, 0, 9287, 9288, 5, 2, 0, 0, 9288, 9289, 3, 620, 310, 0, 9289, 9290, 5, 3, 0, 0, 9290, 9292, 1, 0, 0, 0, 9291, 9285, 1, 0, 0, 0, 9291, 9286, 1, 0, 0, 0, 9292, 1159, 1, 0, 0, 0, 9293, 9300, 3, 1154, 577, 0, 9294, 9295, 5, 271, 0, 0, 9295, 9296, 5, 2, 0, 0, 9296, 9297, 3, 620, 310, 0, 9297, 9298, 5, 3, 0, 0, 9298, 9300, 1, 0, 0, 0, 9299, 9293, 1, 0, 0, 0, 9299, 9294, 1, 0, 0, 0, 9300, 1161, 1, 0, 0, 0, 9301, 9314, 3, 1154, 577, 0, 9302, 9303, 5, 271, 0, 0, 9303, 9304, 5, 2, 0, 0, 9304, 9305, 3, 620, 310, 0, 9305, 9306, 5, 3, 0, 0, 9306, 9314, 1, 0, 0, 0, 9307, 9314, 5, 120, 0, 0, 9308, 9309, 5, 77, 0, 0, 9309, 9314, 5, 120, 0, 0, 9310, 9314, 5, 114, 0, 0, 9311, 9312, 5, 77, 0, 0, 9312, 9314, 5, 114, 0, 0, 9313, 9301, 1, 0, 0, 0, 9313, 9302, 1, 0, 0, 0, 9313, 9307, 1, 0, 0, 0, 9313, 9308, 1, 0, 0, 0, 9313, 9310, 1, 0, 0, 0, 9313, 9311, 1, 0, 0, 0, 9314, 1163, 1, 0, 0, 0, 9315, 9320, 3, 1046, 523, 0, 9316, 9317, 5, 6, 0, 0, 9317, 9319, 3, 1046, 523, 0, 9318, 9316, 1, 0, 0, 0, 9319, 9322, 1, 0, 0, 0, 9320, 9318, 1, 0, 0, 0, 9320, 9321, 1, 0, 0, 0, 9321, 1165, 1, 0, 0, 0, 9322, 9320, 1, 0, 0, 0, 9323, 9328, 3, 1168, 584, 0, 9324, 9325, 5, 6, 0, 0, 9325, 9327, 3, 1168, 584, 0, 9326, 9324, 1, 0, 0, 0, 9327, 9330, 1, 0, 0, 0, 9328, 9326, 1, 0, 0, 0, 9328, 9329, 1, 0, 0, 0, 9329, 1167, 1, 0, 0, 0, 9330, 9328, 1, 0, 0, 0, 9331, 9337, 3, 1046, 523, 0, 9332, 9333, 3, 580, 290, 0, 9333, 9334, 7, 58, 0, 0, 9334, 9335, 3, 1046, 523, 0, 9335, 9337, 1, 0, 0, 0, 9336, 9331, 1, 0, 0, 0, 9336, 9332, 1, 0, 0, 0, 9337, 1169, 1, 0, 0, 0, 9338, 9343, 3, 1004, 502, 0, 9339, 9340, 5, 6, 0, 0, 9340, 9342, 3, 1004, 502, 0, 9341, 9339, 1, 0, 0, 0, 9342, 9345, 1, 0, 0, 0, 9343, 9341, 1, 0, 0, 0, 9343, 9344, 1, 0, 0, 0, 9344, 1171, 1, 0, 0, 0, 9345, 9343, 1, 0, 0, 0, 9346, 9349, 5, 4, 0, 0, 9347, 9350, 3, 1164, 582, 0, 9348, 9350, 3, 1174, 587, 0, 9349, 9347, 1, 0, 0, 0, 9349, 9348, 1, 0, 0, 0, 9349, 9350, 1, 0, 0, 0, 9350, 9351, 1, 0, 0, 0, 9351, 9352, 5, 5, 0, 0, 9352, 1173, 1, 0, 0, 0, 9353, 9358, 3, 1172, 586, 0, 9354, 9355, 5, 6, 0, 0, 9355, 9357, 3, 1172, 586, 0, 9356, 9354, 1, 0, 0, 0, 9357, 9360, 1, 0, 0, 0, 9358, 9356, 1, 0, 0, 0, 9358, 9359, 1, 0, 0, 0, 9359, 1175, 1, 0, 0, 0, 9360, 9358, 1, 0, 0, 0, 9361, 9362, 3, 1178, 589, 0, 9362, 9363, 5, 64, 0, 0, 9363, 9364, 3, 1046, 523, 0, 9364, 9367, 1, 0, 0, 0, 9365, 9367, 1, 0, 0, 0, 9366, 9361, 1, 0, 0, 0, 9366, 9365, 1, 0, 0, 0, 9367, 1177, 1, 0, 0, 0, 9368, 9377, 3, 1264, 632, 0, 9369, 9377, 5, 377, 0, 0, 9370, 9377, 5, 257, 0, 0, 9371, 9377, 5, 176, 0, 0, 9372, 9377, 5, 218, 0, 0, 9373, 9377, 5, 254, 0, 0, 9374, 9377, 5, 319, 0, 0, 9375, 9377, 3, 1240, 620, 0, 9376, 9368, 1, 0, 0, 0, 9376, 9369, 1, 0, 0, 0, 9376, 9370, 1, 0, 0, 0, 9376, 9371, 1, 0, 0, 0, 9376, 9372, 1, 0, 0, 0, 9376, 9373, 1, 0, 0, 0, 9376, 9374, 1, 0, 0, 0, 9376, 9375, 1, 0, 0, 0, 9377, 1179, 1, 0, 0, 0, 9378, 9379, 7, 59, 0, 0, 9379, 1181, 1, 0, 0, 0, 9380, 9381, 3, 1046, 523, 0, 9381, 9382, 5, 84, 0, 0, 9382, 9383, 3, 1046, 523, 0, 9383, 9384, 5, 64, 0, 0, 9384, 9387, 3, 1046, 523, 0, 9385, 9386, 5, 62, 0, 0, 9386, 9388, 3, 1046, 523, 0, 9387, 9385, 1, 0, 0, 0, 9387, 9388, 1, 0, 0, 0, 9388, 1183, 1, 0, 0, 0, 9389, 9390, 3, 1088, 544, 0, 9390, 9391, 5, 68, 0, 0, 9391, 9392, 3, 1088, 544, 0, 9392, 9395, 1, 0, 0, 0, 9393, 9395, 1, 0, 0, 0, 9394, 9389, 1, 0, 0, 0, 9394, 9393, 1, 0, 0, 0, 9395, 1185, 1, 0, 0, 0, 9396, 9397, 3, 1046, 523, 0, 9397, 9398, 5, 64, 0, 0, 9398, 9399, 3, 1046, 523, 0, 9399, 9400, 5, 62, 0, 0, 9400, 9401, 3, 1046, 523, 0, 9401, 9424, 1, 0, 0, 0, 9402, 9403, 3, 1046, 523, 0, 9403, 9404, 5, 62, 0, 0, 9404, 9405, 3, 1046, 523, 0, 9405, 9406, 5, 64, 0, 0, 9406, 9407, 3, 1046, 523, 0, 9407, 9424, 1, 0, 0, 0, 9408, 9409, 3, 1046, 523, 0, 9409, 9410, 5, 64, 0, 0, 9410, 9411, 3, 1046, 523, 0, 9411, 9424, 1, 0, 0, 0, 9412, 9413, 3, 1046, 523, 0, 9413, 9414, 5, 62, 0, 0, 9414, 9415, 3, 1046, 523, 0, 9415, 9424, 1, 0, 0, 0, 9416, 9417, 3, 1046, 523, 0, 9417, 9418, 5, 127, 0, 0, 9418, 9419, 3, 1046, 523, 0, 9419, 9420, 5, 197, 0, 0, 9420, 9421, 3, 1046, 523, 0, 9421, 9424, 1, 0, 0, 0, 9422, 9424, 3, 1164, 582, 0, 9423, 9396, 1, 0, 0, 0, 9423, 9402, 1, 0, 0, 0, 9423, 9408, 1, 0, 0, 0, 9423, 9412, 1, 0, 0, 0, 9423, 9416, 1, 0, 0, 0, 9423, 9422, 1, 0, 0, 0, 9424, 1187, 1, 0, 0, 0, 9425, 9426, 3, 1046, 523, 0, 9426, 9427, 5, 64, 0, 0, 9427, 9428, 3, 1164, 582, 0, 9428, 9433, 1, 0, 0, 0, 9429, 9430, 5, 64, 0, 0, 9430, 9433, 3, 1164, 582, 0, 9431, 9433, 3, 1164, 582, 0, 9432, 9425, 1, 0, 0, 0, 9432, 9429, 1, 0, 0, 0, 9432, 9431, 1, 0, 0, 0, 9433, 1189, 1, 0, 0, 0, 9434, 9440, 3, 870, 435, 0, 9435, 9436, 5, 2, 0, 0, 9436, 9437, 3, 1164, 582, 0, 9437, 9438, 5, 3, 0, 0, 9438, 9440, 1, 0, 0, 0, 9439, 9434, 1, 0, 0, 0, 9439, 9435, 1, 0, 0, 0, 9440, 1191, 1, 0, 0, 0, 9441, 9442, 5, 40, 0, 0, 9442, 9443, 3, 1200, 600, 0, 9443, 9444, 3, 1194, 597, 0, 9444, 9445, 3, 1198, 599, 0, 9445, 9446, 5, 454, 0, 0, 9446, 1193, 1, 0, 0, 0, 9447, 9449, 3, 1196, 598, 0, 9448, 9447, 1, 0, 0, 0, 9449, 9450, 1, 0, 0, 0, 9450, 9448, 1, 0, 0, 0, 9450, 9451, 1, 0, 0, 0, 9451, 1195, 1, 0, 0, 0, 9452, 9453, 5, 102, 0, 0, 9453, 9454, 3, 1046, 523, 0, 9454, 9455, 5, 93, 0, 0, 9455, 9456, 3, 1046, 523, 0, 9456, 1197, 1, 0, 0, 0, 9457, 9458, 5, 58, 0, 0, 9458, 9461, 3, 1046, 523, 0, 9459, 9461, 1, 0, 0, 0, 9460, 9457, 1, 0, 0, 0, 9460, 9459, 1, 0, 0, 0, 9461, 1199, 1, 0, 0, 0, 9462, 9465, 3, 1046, 523, 0, 9463, 9465, 1, 0, 0, 0, 9464, 9462, 1, 0, 0, 0, 9464, 9463, 1, 0, 0, 0, 9465, 1201, 1, 0, 0, 0, 9466, 9468, 3, 1254, 627, 0, 9467, 9469, 3, 1206, 603, 0, 9468, 9467, 1, 0, 0, 0, 9468, 9469, 1, 0, 0, 0, 9469, 1203, 1, 0, 0, 0, 9470, 9473, 5, 11, 0, 0, 9471, 9474, 3, 1224, 612, 0, 9472, 9474, 5, 9, 0, 0, 9473, 9471, 1, 0, 0, 0, 9473, 9472, 1, 0, 0, 0, 9474, 9488, 1, 0, 0, 0, 9475, 9484, 5, 4, 0, 0, 9476, 9485, 3, 1046, 523, 0, 9477, 9479, 3, 1046, 523, 0, 9478, 9477, 1, 0, 0, 0, 9478, 9479, 1, 0, 0, 0, 9479, 9480, 1, 0, 0, 0, 9480, 9482, 5, 8, 0, 0, 9481, 9483, 3, 1046, 523, 0, 9482, 9481, 1, 0, 0, 0, 9482, 9483, 1, 0, 0, 0, 9483, 9485, 1, 0, 0, 0, 9484, 9476, 1, 0, 0, 0, 9484, 9478, 1, 0, 0, 0, 9485, 9486, 1, 0, 0, 0, 9486, 9488, 5, 5, 0, 0, 9487, 9470, 1, 0, 0, 0, 9487, 9475, 1, 0, 0, 0, 9488, 1205, 1, 0, 0, 0, 9489, 9491, 3, 1204, 602, 0, 9490, 9489, 1, 0, 0, 0, 9491, 9492, 1, 0, 0, 0, 9492, 9490, 1, 0, 0, 0, 9492, 9493, 1, 0, 0, 0, 9493, 1207, 1, 0, 0, 0, 9494, 9496, 3, 1204, 602, 0, 9495, 9494, 1, 0, 0, 0, 9496, 9499, 1, 0, 0, 0, 9497, 9495, 1, 0, 0, 0, 9497, 9498, 1, 0, 0, 0, 9498, 1209, 1, 0, 0, 0, 9499, 9497, 1, 0, 0, 0, 9500, 9503, 3, 1212, 606, 0, 9501, 9503, 1, 0, 0, 0, 9502, 9500, 1, 0, 0, 0, 9502, 9501, 1, 0, 0, 0, 9503, 1211, 1, 0, 0, 0, 9504, 9509, 3, 1214, 607, 0, 9505, 9506, 5, 6, 0, 0, 9506, 9508, 3, 1214, 607, 0, 9507, 9505, 1, 0, 0, 0, 9508, 9511, 1, 0, 0, 0, 9509, 9507, 1, 0, 0, 0, 9509, 9510, 1, 0, 0, 0, 9510, 1213, 1, 0, 0, 0, 9511, 9509, 1, 0, 0, 0, 9512, 9521, 5, 9, 0, 0, 9513, 9518, 3, 1046, 523, 0, 9514, 9515, 5, 36, 0, 0, 9515, 9519, 3, 1262, 631, 0, 9516, 9519, 3, 1264, 632, 0, 9517, 9519, 1, 0, 0, 0, 9518, 9514, 1, 0, 0, 0, 9518, 9516, 1, 0, 0, 0, 9518, 9517, 1, 0, 0, 0, 9519, 9521, 1, 0, 0, 0, 9520, 9512, 1, 0, 0, 0, 9520, 9513, 1, 0, 0, 0, 9521, 1215, 1, 0, 0, 0, 9522, 9527, 3, 1218, 609, 0, 9523, 9524, 5, 6, 0, 0, 9524, 9526, 3, 1218, 609, 0, 9525, 9523, 1, 0, 0, 0, 9526, 9529, 1, 0, 0, 0, 9527, 9525, 1, 0, 0, 0, 9527, 9528, 1, 0, 0, 0, 9528, 1217, 1, 0, 0, 0, 9529, 9527, 1, 0, 0, 0, 9530, 9532, 3, 1254, 627, 0, 9531, 9533, 3, 1206, 603, 0, 9532, 9531, 1, 0, 0, 0, 9532, 9533, 1, 0, 0, 0, 9533, 1219, 1, 0, 0, 0, 9534, 9539, 3, 1222, 611, 0, 9535, 9536, 5, 6, 0, 0, 9536, 9538, 3, 1222, 611, 0, 9537, 9535, 1, 0, 0, 0, 9538, 9541, 1, 0, 0, 0, 9539, 9537, 1, 0, 0, 0, 9539, 9540, 1, 0, 0, 0, 9540, 1221, 1, 0, 0, 0, 9541, 9539, 1, 0, 0, 0, 9542, 9543, 3, 1254, 627, 0, 9543, 1223, 1, 0, 0, 0, 9544, 9545, 3, 1262, 631, 0, 9545, 1225, 1, 0, 0, 0, 9546, 9547, 3, 1240, 620, 0, 9547, 1227, 1, 0, 0, 0, 9548, 9556, 3, 1276, 638, 0, 9549, 9556, 3, 1258, 629, 0, 9550, 9551, 3, 1254, 627, 0, 9551, 9552, 3, 1206, 603, 0, 9552, 9556, 1, 0, 0, 0, 9553, 9556, 5, 119, 0, 0, 9554, 9556, 5, 126, 0, 0, 9555, 9548, 1, 0, 0, 0, 9555, 9549, 1, 0, 0, 0, 9555, 9550, 1, 0, 0, 0, 9555, 9553, 1, 0, 0, 0, 9555, 9554, 1, 0, 0, 0, 9556, 1229, 1, 0, 0, 0, 9557, 9590, 3, 1238, 619, 0, 9558, 9590, 3, 1236, 618, 0, 9559, 9590, 3, 1240, 620, 0, 9560, 9590, 3, 1234, 617, 0, 9561, 9590, 3, 1232, 616, 0, 9562, 9570, 3, 1228, 614, 0, 9563, 9571, 3, 1240, 620, 0, 9564, 9565, 5, 2, 0, 0, 9565, 9566, 3, 1166, 583, 0, 9566, 9567, 3, 900, 450, 0, 9567, 9568, 5, 3, 0, 0, 9568, 9569, 3, 1240, 620, 0, 9569, 9571, 1, 0, 0, 0, 9570, 9563, 1, 0, 0, 0, 9570, 9564, 1, 0, 0, 0, 9571, 9590, 1, 0, 0, 0, 9572, 9573, 3, 1008, 504, 0, 9573, 9574, 3, 1240, 620, 0, 9574, 9590, 1, 0, 0, 0, 9575, 9584, 3, 1036, 518, 0, 9576, 9577, 3, 1240, 620, 0, 9577, 9578, 3, 1040, 520, 0, 9578, 9585, 1, 0, 0, 0, 9579, 9580, 5, 2, 0, 0, 9580, 9581, 3, 1238, 619, 0, 9581, 9582, 5, 3, 0, 0, 9582, 9583, 3, 1240, 620, 0, 9583, 9585, 1, 0, 0, 0, 9584, 9576, 1, 0, 0, 0, 9584, 9579, 1, 0, 0, 0, 9585, 9590, 1, 0, 0, 0, 9586, 9590, 5, 96, 0, 0, 9587, 9590, 5, 60, 0, 0, 9588, 9590, 5, 78, 0, 0, 9589, 9557, 1, 0, 0, 0, 9589, 9558, 1, 0, 0, 0, 9589, 9559, 1, 0, 0, 0, 9589, 9560, 1, 0, 0, 0, 9589, 9561, 1, 0, 0, 0, 9589, 9562, 1, 0, 0, 0, 9589, 9572, 1, 0, 0, 0, 9589, 9575, 1, 0, 0, 0, 9589, 9586, 1, 0, 0, 0, 9589, 9587, 1, 0, 0, 0, 9589, 9588, 1, 0, 0, 0, 9590, 1231, 1, 0, 0, 0, 9591, 9592, 5, 654, 0, 0, 9592, 1233, 1, 0, 0, 0, 9593, 9594, 5, 650, 0, 0, 9594, 1235, 1, 0, 0, 0, 9595, 9596, 5, 660, 0, 0, 9596, 1237, 1, 0, 0, 0, 9597, 9598, 5, 658, 0, 0, 9598, 1239, 1, 0, 0, 0, 9599, 9600, 3, 1242, 621, 0, 9600, 9601, 3, 1244, 622, 0, 9601, 1241, 1, 0, 0, 0, 9602, 9614, 5, 645, 0, 0, 9603, 9614, 5, 647, 0, 0, 9604, 9608, 5, 649, 0, 0, 9605, 9607, 5, 677, 0, 0, 9606, 9605, 1, 0, 0, 0, 9607, 9610, 1, 0, 0, 0, 9608, 9606, 1, 0, 0, 0, 9608, 9609, 1, 0, 0, 0, 9609, 9611, 1, 0, 0, 0, 9610, 9608, 1, 0, 0, 0, 9611, 9614, 5, 678, 0, 0, 9612, 9614, 5, 671, 0, 0, 9613, 9602, 1, 0, 0, 0, 9613, 9603, 1, 0, 0, 0, 9613, 9604, 1, 0, 0, 0, 9613, 9612, 1, 0, 0, 0, 9614, 1243, 1, 0, 0, 0, 9615, 9616, 5, 487, 0, 0, 9616, 9619, 3, 1242, 621, 0, 9617, 9619, 1, 0, 0, 0, 9618, 9615, 1, 0, 0, 0, 9618, 9617, 1, 0, 0, 0, 9619, 1245, 1, 0, 0, 0, 9620, 9626, 3, 1238, 619, 0, 9621, 9622, 5, 12, 0, 0, 9622, 9626, 3, 1238, 619, 0, 9623, 9624, 5, 13, 0, 0, 9624, 9626, 3, 1238, 619, 0, 9625, 9620, 1, 0, 0, 0, 9625, 9621, 1, 0, 0, 0, 9625, 9623, 1, 0, 0, 0, 9626, 1247, 1, 0, 0, 0, 9627, 9628, 3, 1250, 625, 0, 9628, 1249, 1, 0, 0, 0, 9629, 9633, 3, 1260, 630, 0, 9630, 9633, 5, 52, 0, 0, 9631, 9633, 5, 89, 0, 0, 9632, 9629, 1, 0, 0, 0, 9632, 9630, 1, 0, 0, 0, 9632, 9631, 1, 0, 0, 0, 9633, 1251, 1, 0, 0, 0, 9634, 9639, 3, 1250, 625, 0, 9635, 9636, 5, 6, 0, 0, 9636, 9638, 3, 1250, 625, 0, 9637, 9635, 1, 0, 0, 0, 9638, 9641, 1, 0, 0, 0, 9639, 9637, 1, 0, 0, 0, 9639, 9640, 1, 0, 0, 0, 9640, 1253, 1, 0, 0, 0, 9641, 9639, 1, 0, 0, 0, 9642, 9649, 3, 1264, 632, 0, 9643, 9649, 3, 1268, 634, 0, 9644, 9649, 3, 1270, 635, 0, 9645, 9649, 3, 1480, 740, 0, 9646, 9649, 5, 119, 0, 0, 9647, 9649, 5, 126, 0, 0, 9648, 9642, 1, 0, 0, 0, 9648, 9643, 1, 0, 0, 0, 9648, 9644, 1, 0, 0, 0, 9648, 9645, 1, 0, 0, 0, 9648, 9646, 1, 0, 0, 0, 9648, 9647, 1, 0, 0, 0, 9649, 1255, 1, 0, 0, 0, 9650, 9655, 3, 1264, 632, 0, 9651, 9655, 3, 1268, 634, 0, 9652, 9655, 3, 1270, 635, 0, 9653, 9655, 3, 1480, 740, 0, 9654, 9650, 1, 0, 0, 0, 9654, 9651, 1, 0, 0, 0, 9654, 9652, 1, 0, 0, 0, 9654, 9653, 1, 0, 0, 0, 9655, 1257, 1, 0, 0, 0, 9656, 9661, 3, 1264, 632, 0, 9657, 9661, 3, 1268, 634, 0, 9658, 9661, 3, 1480, 740, 0, 9659, 9661, 3, 1272, 636, 0, 9660, 9656, 1, 0, 0, 0, 9660, 9657, 1, 0, 0, 0, 9660, 9658, 1, 0, 0, 0, 9660, 9659, 1, 0, 0, 0, 9661, 1259, 1, 0, 0, 0, 9662, 9667, 3, 1264, 632, 0, 9663, 9667, 3, 1268, 634, 0, 9664, 9667, 3, 1270, 635, 0, 9665, 9667, 3, 1272, 636, 0, 9666, 9662, 1, 0, 0, 0, 9666, 9663, 1, 0, 0, 0, 9666, 9664, 1, 0, 0, 0, 9666, 9665, 1, 0, 0, 0, 9667, 1261, 1, 0, 0, 0, 9668, 9675, 3, 1264, 632, 0, 9669, 9675, 3, 1480, 740, 0, 9670, 9675, 3, 1268, 634, 0, 9671, 9675, 3, 1270, 635, 0, 9672, 9675, 3, 1272, 636, 0, 9673, 9675, 3, 1274, 637, 0, 9674, 9668, 1, 0, 0, 0, 9674, 9669, 1, 0, 0, 0, 9674, 9670, 1, 0, 0, 0, 9674, 9671, 1, 0, 0, 0, 9674, 9672, 1, 0, 0, 0, 9674, 9673, 1, 0, 0, 0, 9675, 1263, 1, 0, 0, 0, 9676, 9677, 5, 636, 0, 0, 9677, 9684, 3, 1244, 622, 0, 9678, 9684, 5, 637, 0, 0, 9679, 9684, 5, 641, 0, 0, 9680, 9684, 3, 1092, 546, 0, 9681, 9684, 3, 1266, 633, 0, 9682, 9684, 3, 1480, 740, 0, 9683, 9676, 1, 0, 0, 0, 9683, 9678, 1, 0, 0, 0, 9683, 9679, 1, 0, 0, 0, 9683, 9680, 1, 0, 0, 0, 9683, 9681, 1, 0, 0, 0, 9683, 9682, 1, 0, 0, 0, 9684, 1265, 1, 0, 0, 0, 9685, 9686, 5, 662, 0, 0, 9686, 1267, 1, 0, 0, 0, 9687, 9688, 7, 60, 0, 0, 9688, 1269, 1, 0, 0, 0, 9689, 9742, 5, 380, 0, 0, 9690, 9742, 5, 381, 0, 0, 9691, 9742, 3, 1018, 509, 0, 9692, 9742, 5, 383, 0, 0, 9693, 9742, 5, 384, 0, 0, 9694, 9742, 3, 1026, 513, 0, 9695, 9742, 5, 386, 0, 0, 9696, 9742, 5, 387, 0, 0, 9697, 9742, 5, 388, 0, 0, 9698, 9742, 5, 389, 0, 0, 9699, 9742, 5, 390, 0, 0, 9700, 9742, 5, 391, 0, 0, 9701, 9742, 5, 392, 0, 0, 9702, 9742, 5, 470, 0, 0, 9703, 9742, 5, 393, 0, 0, 9704, 9742, 5, 394, 0, 0, 9705, 9742, 5, 395, 0, 0, 9706, 9742, 5, 396, 0, 0, 9707, 9742, 5, 397, 0, 0, 9708, 9742, 5, 398, 0, 0, 9709, 9742, 5, 399, 0, 0, 9710, 9742, 5, 400, 0, 0, 9711, 9742, 5, 489, 0, 0, 9712, 9742, 5, 401, 0, 0, 9713, 9742, 3, 1014, 507, 0, 9714, 9742, 5, 453, 0, 0, 9715, 9742, 5, 403, 0, 0, 9716, 9742, 5, 404, 0, 0, 9717, 9742, 5, 405, 0, 0, 9718, 9742, 5, 406, 0, 0, 9719, 9742, 5, 407, 0, 0, 9720, 9742, 5, 408, 0, 0, 9721, 9742, 5, 409, 0, 0, 9722, 9742, 5, 410, 0, 0, 9723, 9742, 5, 411, 0, 0, 9724, 9742, 5, 412, 0, 0, 9725, 9742, 5, 413, 0, 0, 9726, 9742, 5, 414, 0, 0, 9727, 9742, 5, 415, 0, 0, 9728, 9742, 5, 416, 0, 0, 9729, 9742, 5, 417, 0, 0, 9730, 9742, 5, 425, 0, 0, 9731, 9742, 5, 426, 0, 0, 9732, 9742, 5, 427, 0, 0, 9733, 9742, 5, 428, 0, 0, 9734, 9742, 5, 476, 0, 0, 9735, 9742, 5, 429, 0, 0, 9736, 9742, 5, 430, 0, 0, 9737, 9742, 5, 431, 0, 0, 9738, 9742, 5, 432, 0, 0, 9739, 9742, 5, 474, 0, 0, 9740, 9742, 3, 1276, 638, 0, 9741, 9689, 1, 0, 0, 0, 9741, 9690, 1, 0, 0, 0, 9741, 9691, 1, 0, 0, 0, 9741, 9692, 1, 0, 0, 0, 9741, 9693, 1, 0, 0, 0, 9741, 9694, 1, 0, 0, 0, 9741, 9695, 1, 0, 0, 0, 9741, 9696, 1, 0, 0, 0, 9741, 9697, 1, 0, 0, 0, 9741, 9698, 1, 0, 0, 0, 9741, 9699, 1, 0, 0, 0, 9741, 9700, 1, 0, 0, 0, 9741, 9701, 1, 0, 0, 0, 9741, 9702, 1, 0, 0, 0, 9741, 9703, 1, 0, 0, 0, 9741, 9704, 1, 0, 0, 0, 9741, 9705, 1, 0, 0, 0, 9741, 9706, 1, 0, 0, 0, 9741, 9707, 1, 0, 0, 0, 9741, 9708, 1, 0, 0, 0, 9741, 9709, 1, 0, 0, 0, 9741, 9710, 1, 0, 0, 0, 9741, 9711, 1, 0, 0, 0, 9741, 9712, 1, 0, 0, 0, 9741, 9713, 1, 0, 0, 0, 9741, 9714, 1, 0, 0, 0, 9741, 9715, 1, 0, 0, 0, 9741, 9716, 1, 0, 0, 0, 9741, 9717, 1, 0, 0, 0, 9741, 9718, 1, 0, 0, 0, 9741, 9719, 1, 0, 0, 0, 9741, 9720, 1, 0, 0, 0, 9741, 9721, 1, 0, 0, 0, 9741, 9722, 1, 0, 0, 0, 9741, 9723, 1, 0, 0, 0, 9741, 9724, 1, 0, 0, 0, 9741, 9725, 1, 0, 0, 0, 9741, 9726, 1, 0, 0, 0, 9741, 9727, 1, 0, 0, 0, 9741, 9728, 1, 0, 0, 0, 9741, 9729, 1, 0, 0, 0, 9741, 9730, 1, 0, 0, 0, 9741, 9731, 1, 0, 0, 0, 9741, 9732, 1, 0, 0, 0, 9741, 9733, 1, 0, 0, 0, 9741, 9734, 1, 0, 0, 0, 9741, 9735, 1, 0, 0, 0, 9741, 9736, 1, 0, 0, 0, 9741, 9737, 1, 0, 0, 0, 9741, 9738, 1, 0, 0, 0, 9741, 9739, 1, 0, 0, 0, 9741, 9740, 1, 0, 0, 0, 9742, 1271, 1, 0, 0, 0, 9743, 9744, 7, 61, 0, 0, 9744, 1273, 1, 0, 0, 0, 9745, 9746, 7, 62, 0, 0, 9746, 1275, 1, 0, 0, 0, 9747, 9748, 7, 63, 0, 0, 9748, 1277, 1, 0, 0, 0, 9749, 9750, 3, 1280, 640, 0, 9750, 9751, 3, 1290, 645, 0, 9751, 9752, 3, 1288, 644, 0, 9752, 1279, 1, 0, 0, 0, 9753, 9755, 3, 1282, 641, 0, 9754, 9753, 1, 0, 0, 0, 9755, 9758, 1, 0, 0, 0, 9756, 9754, 1, 0, 0, 0, 9756, 9757, 1, 0, 0, 0, 9757, 1281, 1, 0, 0, 0, 9758, 9756, 1, 0, 0, 0, 9759, 9760, 3, 1284, 642, 0, 9760, 9761, 5, 272, 0, 0, 9761, 9762, 5, 490, 0, 0, 9762, 9780, 1, 0, 0, 0, 9763, 9764, 3, 1284, 642, 0, 9764, 9765, 5, 491, 0, 0, 9765, 9766, 3, 1286, 643, 0, 9766, 9780, 1, 0, 0, 0, 9767, 9768, 3, 1284, 642, 0, 9768, 9769, 5, 492, 0, 0, 9769, 9770, 5, 493, 0, 0, 9770, 9780, 1, 0, 0, 0, 9771, 9772, 3, 1284, 642, 0, 9772, 9773, 5, 492, 0, 0, 9773, 9774, 5, 494, 0, 0, 9774, 9780, 1, 0, 0, 0, 9775, 9776, 3, 1284, 642, 0, 9776, 9777, 5, 492, 0, 0, 9777, 9778, 5, 495, 0, 0, 9778, 9780, 1, 0, 0, 0, 9779, 9759, 1, 0, 0, 0, 9779, 9763, 1, 0, 0, 0, 9779, 9767, 1, 0, 0, 0, 9779, 9771, 1, 0, 0, 0, 9779, 9775, 1, 0, 0, 0, 9780, 1283, 1, 0, 0, 0, 9781, 9782, 5, 29, 0, 0, 9782, 1285, 1, 0, 0, 0, 9783, 9788, 3, 1240, 620, 0, 9784, 9788, 3, 1274, 637, 0, 9785, 9788, 3, 1480, 740, 0, 9786, 9788, 3, 1268, 634, 0, 9787, 9783, 1, 0, 0, 0, 9787, 9784, 1, 0, 0, 0, 9787, 9785, 1, 0, 0, 0, 9787, 9786, 1, 0, 0, 0, 9788, 1287, 1, 0, 0, 0, 9789, 9792, 1, 0, 0, 0, 9790, 9792, 5, 7, 0, 0, 9791, 9789, 1, 0, 0, 0, 9791, 9790, 1, 0, 0, 0, 9792, 1289, 1, 0, 0, 0, 9793, 9794, 3, 1292, 646, 0, 9794, 9795, 5, 146, 0, 0, 9795, 9796, 3, 1334, 667, 0, 9796, 9797, 3, 1460, 730, 0, 9797, 9798, 5, 454, 0, 0, 9798, 9799, 3, 1474, 737, 0, 9799, 1291, 1, 0, 0, 0, 9800, 9805, 3, 1470, 735, 0, 9801, 9803, 3, 1294, 647, 0, 9802, 9804, 3, 1296, 648, 0, 9803, 9802, 1, 0, 0, 0, 9803, 9804, 1, 0, 0, 0, 9804, 9806, 1, 0, 0, 0, 9805, 9801, 1, 0, 0, 0, 9805, 9806, 1, 0, 0, 0, 9806, 1293, 1, 0, 0, 0, 9807, 9808, 5, 178, 0, 0, 9808, 1295, 1, 0, 0, 0, 9809, 9811, 3, 1300, 650, 0, 9810, 9809, 1, 0, 0, 0, 9811, 9812, 1, 0, 0, 0, 9812, 9810, 1, 0, 0, 0, 9812, 9813, 1, 0, 0, 0, 9813, 1297, 1, 0, 0, 0, 9814, 9815, 5, 18, 0, 0, 9815, 9816, 3, 1478, 739, 0, 9816, 9817, 5, 19, 0, 0, 9817, 1299, 1, 0, 0, 0, 9818, 9822, 3, 1302, 651, 0, 9819, 9822, 5, 178, 0, 0, 9820, 9822, 3, 1298, 649, 0, 9821, 9818, 1, 0, 0, 0, 9821, 9819, 1, 0, 0, 0, 9821, 9820, 1, 0, 0, 0, 9822, 1301, 1, 0, 0, 0, 9823, 9839, 3, 1318, 659, 0, 9824, 9825, 5, 496, 0, 0, 9825, 9826, 5, 62, 0, 0, 9826, 9840, 3, 1316, 658, 0, 9827, 9828, 3, 1320, 660, 0, 9828, 9829, 3, 1322, 661, 0, 9829, 9830, 3, 1324, 662, 0, 9830, 9831, 3, 1326, 663, 0, 9831, 9832, 3, 1328, 664, 0, 9832, 9840, 1, 0, 0, 0, 9833, 9834, 3, 1304, 652, 0, 9834, 9835, 5, 172, 0, 0, 9835, 9836, 3, 1308, 654, 0, 9836, 9837, 3, 1314, 657, 0, 9837, 9838, 3, 1306, 653, 0, 9838, 9840, 1, 0, 0, 0, 9839, 9824, 1, 0, 0, 0, 9839, 9827, 1, 0, 0, 0, 9839, 9833, 1, 0, 0, 0, 9840, 9841, 1, 0, 0, 0, 9841, 9842, 5, 7, 0, 0, 9842, 1303, 1, 0, 0, 0, 9843, 9848, 1, 0, 0, 0, 9844, 9845, 5, 262, 0, 0, 9845, 9848, 5, 317, 0, 0, 9846, 9848, 5, 317, 0, 0, 9847, 9843, 1, 0, 0, 0, 9847, 9844, 1, 0, 0, 0, 9847, 9846, 1, 0, 0, 0, 9848, 1305, 1, 0, 0, 0, 9849, 9850, 3, 868, 434, 0, 9850, 1307, 1, 0, 0, 0, 9851, 9857, 1, 0, 0, 0, 9852, 9853, 5, 2, 0, 0, 9853, 9854, 3, 1310, 655, 0, 9854, 9855, 5, 3, 0, 0, 9855, 9857, 1, 0, 0, 0, 9856, 9851, 1, 0, 0, 0, 9856, 9852, 1, 0, 0, 0, 9857, 1309, 1, 0, 0, 0, 9858, 9863, 3, 1312, 656, 0, 9859, 9860, 5, 6, 0, 0, 9860, 9862, 3, 1312, 656, 0, 9861, 9859, 1, 0, 0, 0, 9862, 9865, 1, 0, 0, 0, 9863, 9861, 1, 0, 0, 0, 9863, 9864, 1, 0, 0, 0, 9864, 1311, 1, 0, 0, 0, 9865, 9863, 1, 0, 0, 0, 9866, 9867, 3, 1318, 659, 0, 9867, 9868, 3, 1322, 661, 0, 9868, 1313, 1, 0, 0, 0, 9869, 9870, 7, 64, 0, 0, 9870, 1315, 1, 0, 0, 0, 9871, 9874, 5, 28, 0, 0, 9872, 9874, 3, 1254, 627, 0, 9873, 9871, 1, 0, 0, 0, 9873, 9872, 1, 0, 0, 0, 9874, 1317, 1, 0, 0, 0, 9875, 9876, 3, 1478, 739, 0, 9876, 1319, 1, 0, 0, 0, 9877, 9880, 1, 0, 0, 0, 9878, 9880, 5, 497, 0, 0, 9879, 9877, 1, 0, 0, 0, 9879, 9878, 1, 0, 0, 0, 9880, 1321, 1, 0, 0, 0, 9881, 9882, 3, 1004, 502, 0, 9882, 1323, 1, 0, 0, 0, 9883, 9887, 1, 0, 0, 0, 9884, 9885, 5, 43, 0, 0, 9885, 9887, 3, 478, 239, 0, 9886, 9883, 1, 0, 0, 0, 9886, 9884, 1, 0, 0, 0, 9887, 1325, 1, 0, 0, 0, 9888, 9892, 1, 0, 0, 0, 9889, 9890, 5, 77, 0, 0, 9890, 9892, 5, 78, 0, 0, 9891, 9888, 1, 0, 0, 0, 9891, 9889, 1, 0, 0, 0, 9892, 1327, 1, 0, 0, 0, 9893, 9898, 1, 0, 0, 0, 9894, 9895, 3, 1330, 665, 0, 9895, 9896, 3, 1482, 741, 0, 9896, 9898, 1, 0, 0, 0, 9897, 9893, 1, 0, 0, 0, 9897, 9894, 1, 0, 0, 0, 9898, 1329, 1, 0, 0, 0, 9899, 9902, 3, 1332, 666, 0, 9900, 9902, 5, 53, 0, 0, 9901, 9899, 1, 0, 0, 0, 9901, 9900, 1, 0, 0, 0, 9902, 1331, 1, 0, 0, 0, 9903, 9904, 7, 65, 0, 0, 9904, 1333, 1, 0, 0, 0, 9905, 9907, 3, 1336, 668, 0, 9906, 9905, 1, 0, 0, 0, 9907, 9910, 1, 0, 0, 0, 9908, 9906, 1, 0, 0, 0, 9908, 9909, 1, 0, 0, 0, 9909, 1335, 1, 0, 0, 0, 9910, 9908, 1, 0, 0, 0, 9911, 9912, 3, 1290, 645, 0, 9912, 9913, 5, 7, 0, 0, 9913, 9939, 1, 0, 0, 0, 9914, 9939, 3, 1402, 701, 0, 9915, 9939, 3, 1406, 703, 0, 9916, 9939, 3, 1344, 672, 0, 9917, 9939, 3, 1360, 680, 0, 9918, 9939, 3, 1366, 683, 0, 9919, 9939, 3, 1376, 688, 0, 9920, 9939, 3, 1378, 689, 0, 9921, 9939, 3, 1380, 690, 0, 9922, 9939, 3, 1394, 697, 0, 9923, 9939, 3, 1398, 699, 0, 9924, 9939, 3, 1416, 708, 0, 9925, 9939, 3, 1422, 711, 0, 9926, 9939, 3, 1424, 712, 0, 9927, 9939, 3, 1338, 669, 0, 9928, 9939, 3, 1340, 670, 0, 9929, 9939, 3, 1346, 673, 0, 9930, 9939, 3, 1432, 716, 0, 9931, 9939, 3, 1436, 718, 0, 9932, 9939, 3, 1444, 722, 0, 9933, 9939, 3, 1446, 723, 0, 9934, 9939, 3, 1448, 724, 0, 9935, 9939, 3, 1450, 725, 0, 9936, 9939, 3, 1452, 726, 0, 9937, 9939, 3, 1456, 728, 0, 9938, 9911, 1, 0, 0, 0, 9938, 9914, 1, 0, 0, 0, 9938, 9915, 1, 0, 0, 0, 9938, 9916, 1, 0, 0, 0, 9938, 9917, 1, 0, 0, 0, 9938, 9918, 1, 0, 0, 0, 9938, 9919, 1, 0, 0, 0, 9938, 9920, 1, 0, 0, 0, 9938, 9921, 1, 0, 0, 0, 9938, 9922, 1, 0, 0, 0, 9938, 9923, 1, 0, 0, 0, 9938, 9924, 1, 0, 0, 0, 9938, 9925, 1, 0, 0, 0, 9938, 9926, 1, 0, 0, 0, 9938, 9927, 1, 0, 0, 0, 9938, 9928, 1, 0, 0, 0, 9938, 9929, 1, 0, 0, 0, 9938, 9930, 1, 0, 0, 0, 9938, 9931, 1, 0, 0, 0, 9938, 9932, 1, 0, 0, 0, 9938, 9933, 1, 0, 0, 0, 9938, 9934, 1, 0, 0, 0, 9938, 9935, 1, 0, 0, 0, 9938, 9936, 1, 0, 0, 0, 9938, 9937, 1, 0, 0, 0, 9939, 1337, 1, 0, 0, 0, 9940, 9941, 5, 498, 0, 0, 9941, 9942, 3, 1486, 743, 0, 9942, 9943, 5, 7, 0, 0, 9943, 1339, 1, 0, 0, 0, 9944, 9945, 5, 433, 0, 0, 9945, 9946, 3, 1478, 739, 0, 9946, 9947, 5, 2, 0, 0, 9947, 9948, 3, 1342, 671, 0, 9948, 9949, 5, 3, 0, 0, 9949, 9950, 5, 7, 0, 0, 9950, 9959, 1, 0, 0, 0, 9951, 9952, 5, 57, 0, 0, 9952, 9953, 3, 1478, 739, 0, 9953, 9954, 5, 2, 0, 0, 9954, 9955, 3, 1342, 671, 0, 9955, 9956, 5, 3, 0, 0, 9956, 9957, 5, 7, 0, 0, 9957, 9959, 1, 0, 0, 0, 9958, 9944, 1, 0, 0, 0, 9958, 9951, 1, 0, 0, 0, 9959, 1341, 1, 0, 0, 0, 9960, 9963, 1, 0, 0, 0, 9961, 9963, 3, 1164, 582, 0, 9962, 9960, 1, 0, 0, 0, 9962, 9961, 1, 0, 0, 0, 9963, 1343, 1, 0, 0, 0, 9964, 9965, 3, 1358, 679, 0, 9965, 9966, 3, 1332, 666, 0, 9966, 9967, 3, 1482, 741, 0, 9967, 9968, 5, 7, 0, 0, 9968, 1345, 1, 0, 0, 0, 9969, 9970, 5, 499, 0, 0, 9970, 9971, 3, 1348, 674, 0, 9971, 9972, 5, 500, 0, 0, 9972, 9973, 3, 1350, 675, 0, 9973, 9974, 5, 7, 0, 0, 9974, 1347, 1, 0, 0, 0, 9975, 9979, 1, 0, 0, 0, 9976, 9979, 5, 434, 0, 0, 9977, 9979, 5, 501, 0, 0, 9978, 9975, 1, 0, 0, 0, 9978, 9976, 1, 0, 0, 0, 9978, 9977, 1, 0, 0, 0, 9979, 1349, 1, 0, 0, 0, 9980, 9985, 3, 1352, 676, 0, 9981, 9982, 5, 6, 0, 0, 9982, 9984, 3, 1352, 676, 0, 9983, 9981, 1, 0, 0, 0, 9984, 9987, 1, 0, 0, 0, 9985, 9983, 1, 0, 0, 0, 9985, 9986, 1, 0, 0, 0, 9986, 1351, 1, 0, 0, 0, 9987, 9985, 1, 0, 0, 0, 9988, 9989, 3, 1356, 678, 0, 9989, 9990, 3, 1332, 666, 0, 9990, 9991, 3, 1354, 677, 0, 9991, 1353, 1, 0, 0, 0, 9992, 9993, 3, 1254, 627, 0, 9993, 1355, 1, 0, 0, 0, 9994, 9995, 3, 1358, 679, 0, 9995, 1357, 1, 0, 0, 0, 9996, 9999, 3, 478, 239, 0, 9997, 9999, 5, 28, 0, 0, 9998, 9996, 1, 0, 0, 0, 9998, 9997, 1, 0, 0, 0, 9999, 10006, 1, 0, 0, 0, 10000, 10001, 5, 4, 0, 0, 10001, 10002, 3, 1488, 744, 0, 10002, 10003, 5, 5, 0, 0, 10003, 10005, 1, 0, 0, 0, 10004, 10000, 1, 0, 0, 0, 10005, 10008, 1, 0, 0, 0, 10006, 10004, 1, 0, 0, 0, 10006, 10007, 1, 0, 0, 0, 10007, 1359, 1, 0, 0, 0, 10008, 10006, 1, 0, 0, 0, 10009, 10010, 5, 220, 0, 0, 10010, 10011, 3, 1484, 742, 0, 10011, 10012, 5, 93, 0, 0, 10012, 10013, 3, 1334, 667, 0, 10013, 10014, 3, 1362, 681, 0, 10014, 10015, 3, 1364, 682, 0, 10015, 10016, 5, 454, 0, 0, 10016, 10017, 5, 220, 0, 0, 10017, 10018, 5, 7, 0, 0, 10018, 1361, 1, 0, 0, 0, 10019, 10020, 5, 502, 0, 0, 10020, 10021, 3, 1046, 523, 0, 10021, 10022, 5, 93, 0, 0, 10022, 10023, 3, 1334, 667, 0, 10023, 10025, 1, 0, 0, 0, 10024, 10019, 1, 0, 0, 0, 10025, 10028, 1, 0, 0, 0, 10026, 10024, 1, 0, 0, 0, 10026, 10027, 1, 0, 0, 0, 10027, 1363, 1, 0, 0, 0, 10028, 10026, 1, 0, 0, 0, 10029, 10033, 1, 0, 0, 0, 10030, 10031, 5, 58, 0, 0, 10031, 10033, 3, 1334, 667, 0, 10032, 10029, 1, 0, 0, 0, 10032, 10030, 1, 0, 0, 0, 10033, 1365, 1, 0, 0, 0, 10034, 10035, 5, 40, 0, 0, 10035, 10036, 3, 1368, 684, 0, 10036, 10037, 3, 1370, 685, 0, 10037, 10038, 3, 1374, 687, 0, 10038, 10039, 5, 454, 0, 0, 10039, 10040, 5, 40, 0, 0, 10040, 10041, 5, 7, 0, 0, 10041, 1367, 1, 0, 0, 0, 10042, 10045, 1, 0, 0, 0, 10043, 10045, 3, 1482, 741, 0, 10044, 10042, 1, 0, 0, 0, 10044, 10043, 1, 0, 0, 0, 10045, 1369, 1, 0, 0, 0, 10046, 10048, 3, 1372, 686, 0, 10047, 10046, 1, 0, 0, 0, 10048, 10049, 1, 0, 0, 0, 10049, 10047, 1, 0, 0, 0, 10049, 10050, 1, 0, 0, 0, 10050, 1371, 1, 0, 0, 0, 10051, 10052, 5, 102, 0, 0, 10052, 10053, 3, 1164, 582, 0, 10053, 10054, 5, 93, 0, 0, 10054, 10055, 3, 1334, 667, 0, 10055, 1373, 1, 0, 0, 0, 10056, 10060, 1, 0, 0, 0, 10057, 10058, 5, 58, 0, 0, 10058, 10060, 3, 1334, 667, 0, 10059, 10056, 1, 0, 0, 0, 10059, 10057, 1, 0, 0, 0, 10060, 1375, 1, 0, 0, 0, 10061, 10062, 3, 1472, 736, 0, 10062, 10063, 3, 1420, 710, 0, 10063, 1377, 1, 0, 0, 0, 10064, 10065, 3, 1472, 736, 0, 10065, 10066, 5, 503, 0, 0, 10066, 10067, 3, 1490, 745, 0, 10067, 10068, 3, 1420, 710, 0, 10068, 1379, 1, 0, 0, 0, 10069, 10070, 3, 1472, 736, 0, 10070, 10071, 5, 62, 0, 0, 10071, 10072, 3, 1382, 691, 0, 10072, 10073, 3, 1420, 710, 0, 10073, 1381, 1, 0, 0, 0, 10074, 10075, 3, 1392, 696, 0, 10075, 10091, 5, 68, 0, 0, 10076, 10077, 3, 864, 432, 0, 10077, 10078, 3, 1386, 693, 0, 10078, 10092, 1, 0, 0, 0, 10079, 10092, 3, 868, 434, 0, 10080, 10092, 3, 792, 396, 0, 10081, 10082, 5, 202, 0, 0, 10082, 10083, 3, 1046, 523, 0, 10083, 10084, 3, 1384, 692, 0, 10084, 10092, 1, 0, 0, 0, 10085, 10086, 3, 1388, 694, 0, 10086, 10087, 3, 1046, 523, 0, 10087, 10088, 5, 24, 0, 0, 10088, 10089, 3, 1046, 523, 0, 10089, 10090, 3, 1390, 695, 0, 10090, 10092, 1, 0, 0, 0, 10091, 10076, 1, 0, 0, 0, 10091, 10079, 1, 0, 0, 0, 10091, 10080, 1, 0, 0, 0, 10091, 10081, 1, 0, 0, 0, 10091, 10085, 1, 0, 0, 0, 10092, 1383, 1, 0, 0, 0, 10093, 10097, 1, 0, 0, 0, 10094, 10095, 5, 100, 0, 0, 10095, 10097, 3, 1164, 582, 0, 10096, 10093, 1, 0, 0, 0, 10096, 10094, 1, 0, 0, 0, 10097, 1385, 1, 0, 0, 0, 10098, 10111, 1, 0, 0, 0, 10099, 10100, 5, 2, 0, 0, 10100, 10105, 3, 1046, 523, 0, 10101, 10102, 5, 6, 0, 0, 10102, 10104, 3, 1046, 523, 0, 10103, 10101, 1, 0, 0, 0, 10104, 10107, 1, 0, 0, 0, 10105, 10103, 1, 0, 0, 0, 10105, 10106, 1, 0, 0, 0, 10106, 10108, 1, 0, 0, 0, 10107, 10105, 1, 0, 0, 0, 10108, 10109, 5, 3, 0, 0, 10109, 10111, 1, 0, 0, 0, 10110, 10098, 1, 0, 0, 0, 10110, 10099, 1, 0, 0, 0, 10111, 1387, 1, 0, 0, 0, 10112, 10115, 1, 0, 0, 0, 10113, 10115, 5, 504, 0, 0, 10114, 10112, 1, 0, 0, 0, 10114, 10113, 1, 0, 0, 0, 10115, 1389, 1, 0, 0, 0, 10116, 10120, 1, 0, 0, 0, 10117, 10118, 5, 147, 0, 0, 10118, 10120, 3, 1046, 523, 0, 10119, 10116, 1, 0, 0, 0, 10119, 10117, 1, 0, 0, 0, 10120, 1391, 1, 0, 0, 0, 10121, 10122, 3, 476, 238, 0, 10122, 1393, 1, 0, 0, 0, 10123, 10124, 3, 1472, 736, 0, 10124, 10125, 5, 505, 0, 0, 10125, 10126, 3, 1392, 696, 0, 10126, 10127, 3, 1396, 698, 0, 10127, 10128, 5, 68, 0, 0, 10128, 10129, 5, 35, 0, 0, 10129, 10130, 3, 1046, 523, 0, 10130, 10131, 3, 1420, 710, 0, 10131, 1395, 1, 0, 0, 0, 10132, 10136, 1, 0, 0, 0, 10133, 10134, 5, 506, 0, 0, 10134, 10136, 3, 1238, 619, 0, 10135, 10132, 1, 0, 0, 0, 10135, 10133, 1, 0, 0, 0, 10136, 1397, 1, 0, 0, 0, 10137, 10138, 3, 1400, 700, 0, 10138, 10139, 3, 1474, 737, 0, 10139, 10140, 3, 1476, 738, 0, 10140, 10141, 5, 7, 0, 0, 10141, 1399, 1, 0, 0, 0, 10142, 10143, 7, 66, 0, 0, 10143, 1401, 1, 0, 0, 0, 10144, 10156, 5, 508, 0, 0, 10145, 10146, 5, 261, 0, 0, 10146, 10157, 3, 1482, 741, 0, 10147, 10153, 5, 509, 0, 0, 10148, 10149, 5, 202, 0, 0, 10149, 10150, 3, 1046, 523, 0, 10150, 10151, 3, 1384, 692, 0, 10151, 10154, 1, 0, 0, 0, 10152, 10154, 3, 868, 434, 0, 10153, 10148, 1, 0, 0, 0, 10153, 10152, 1, 0, 0, 0, 10154, 10157, 1, 0, 0, 0, 10155, 10157, 3, 1404, 702, 0, 10156, 10145, 1, 0, 0, 0, 10156, 10147, 1, 0, 0, 0, 10156, 10155, 1, 0, 0, 0, 10157, 10158, 1, 0, 0, 0, 10158, 10159, 5, 7, 0, 0, 10159, 1403, 1, 0, 0, 0, 10160, 10163, 1, 0, 0, 0, 10161, 10163, 3, 1482, 741, 0, 10162, 10160, 1, 0, 0, 0, 10162, 10161, 1, 0, 0, 0, 10163, 1405, 1, 0, 0, 0, 10164, 10165, 5, 510, 0, 0, 10165, 10166, 3, 1408, 704, 0, 10166, 10167, 3, 1240, 620, 0, 10167, 10168, 3, 1410, 705, 0, 10168, 10169, 3, 1412, 706, 0, 10169, 10170, 5, 7, 0, 0, 10170, 10191, 1, 0, 0, 0, 10171, 10172, 5, 510, 0, 0, 10172, 10173, 3, 1408, 704, 0, 10173, 10174, 3, 1264, 632, 0, 10174, 10175, 3, 1412, 706, 0, 10175, 10176, 5, 7, 0, 0, 10176, 10191, 1, 0, 0, 0, 10177, 10178, 5, 510, 0, 0, 10178, 10179, 3, 1408, 704, 0, 10179, 10180, 5, 511, 0, 0, 10180, 10181, 3, 1240, 620, 0, 10181, 10182, 3, 1412, 706, 0, 10182, 10183, 5, 7, 0, 0, 10183, 10191, 1, 0, 0, 0, 10184, 10185, 5, 510, 0, 0, 10185, 10186, 3, 1408, 704, 0, 10186, 10187, 3, 1412, 706, 0, 10187, 10188, 5, 7, 0, 0, 10188, 10191, 1, 0, 0, 0, 10189, 10191, 5, 510, 0, 0, 10190, 10164, 1, 0, 0, 0, 10190, 10171, 1, 0, 0, 0, 10190, 10177, 1, 0, 0, 0, 10190, 10184, 1, 0, 0, 0, 10190, 10189, 1, 0, 0, 0, 10191, 1407, 1, 0, 0, 0, 10192, 10201, 1, 0, 0, 0, 10193, 10201, 1, 0, 0, 0, 10194, 10201, 5, 512, 0, 0, 10195, 10201, 5, 513, 0, 0, 10196, 10201, 5, 514, 0, 0, 10197, 10201, 5, 515, 0, 0, 10198, 10201, 5, 516, 0, 0, 10199, 10201, 5, 517, 0, 0, 10200, 10192, 1, 0, 0, 0, 10200, 10193, 1, 0, 0, 0, 10200, 10194, 1, 0, 0, 0, 10200, 10195, 1, 0, 0, 0, 10200, 10196, 1, 0, 0, 0, 10200, 10197, 1, 0, 0, 0, 10200, 10198, 1, 0, 0, 0, 10200, 10199, 1, 0, 0, 0, 10201, 1409, 1, 0, 0, 0, 10202, 10210, 1, 0, 0, 0, 10203, 10204, 5, 6, 0, 0, 10204, 10206, 3, 1046, 523, 0, 10205, 10203, 1, 0, 0, 0, 10206, 10207, 1, 0, 0, 0, 10207, 10205, 1, 0, 0, 0, 10207, 10208, 1, 0, 0, 0, 10208, 10210, 1, 0, 0, 0, 10209, 10202, 1, 0, 0, 0, 10209, 10205, 1, 0, 0, 0, 10210, 1411, 1, 0, 0, 0, 10211, 10222, 1, 0, 0, 0, 10212, 10213, 5, 100, 0, 0, 10213, 10218, 3, 1414, 707, 0, 10214, 10215, 5, 6, 0, 0, 10215, 10217, 3, 1414, 707, 0, 10216, 10214, 1, 0, 0, 0, 10217, 10220, 1, 0, 0, 0, 10218, 10216, 1, 0, 0, 0, 10218, 10219, 1, 0, 0, 0, 10219, 10222, 1, 0, 0, 0, 10220, 10218, 1, 0, 0, 0, 10221, 10211, 1, 0, 0, 0, 10221, 10212, 1, 0, 0, 0, 10222, 1413, 1, 0, 0, 0, 10223, 10224, 3, 1264, 632, 0, 10224, 10225, 5, 10, 0, 0, 10225, 10226, 3, 1046, 523, 0, 10226, 1415, 1, 0, 0, 0, 10227, 10228, 5, 518, 0, 0, 10228, 10229, 3, 1482, 741, 0, 10229, 10230, 3, 1418, 709, 0, 10230, 10231, 5, 7, 0, 0, 10231, 1417, 1, 0, 0, 0, 10232, 10236, 1, 0, 0, 0, 10233, 10234, 5, 6, 0, 0, 10234, 10236, 3, 1482, 741, 0, 10235, 10232, 1, 0, 0, 0, 10235, 10233, 1, 0, 0, 0, 10236, 1419, 1, 0, 0, 0, 10237, 10238, 5, 519, 0, 0, 10238, 10239, 3, 1334, 667, 0, 10239, 10240, 5, 454, 0, 0, 10240, 10241, 5, 519, 0, 0, 10241, 10242, 3, 1474, 737, 0, 10242, 10243, 5, 7, 0, 0, 10243, 1421, 1, 0, 0, 0, 10244, 10245, 3, 1492, 746, 0, 10245, 10246, 5, 7, 0, 0, 10246, 1423, 1, 0, 0, 0, 10247, 10248, 5, 202, 0, 0, 10248, 10256, 3, 1046, 523, 0, 10249, 10250, 3, 1430, 715, 0, 10250, 10251, 3, 1426, 713, 0, 10251, 10257, 1, 0, 0, 0, 10252, 10253, 3, 1426, 713, 0, 10253, 10254, 3, 1430, 715, 0, 10254, 10257, 1, 0, 0, 0, 10255, 10257, 1, 0, 0, 0, 10256, 10249, 1, 0, 0, 0, 10256, 10252, 1, 0, 0, 0, 10256, 10255, 1, 0, 0, 0, 10257, 10258, 1, 0, 0, 0, 10258, 10259, 5, 7, 0, 0, 10259, 1425, 1, 0, 0, 0, 10260, 10264, 1, 0, 0, 0, 10261, 10262, 5, 100, 0, 0, 10262, 10264, 3, 1428, 714, 0, 10263, 10260, 1, 0, 0, 0, 10263, 10261, 1, 0, 0, 0, 10264, 1427, 1, 0, 0, 0, 10265, 10270, 3, 1046, 523, 0, 10266, 10267, 5, 6, 0, 0, 10267, 10269, 3, 1046, 523, 0, 10268, 10266, 1, 0, 0, 0, 10269, 10272, 1, 0, 0, 0, 10270, 10268, 1, 0, 0, 0, 10270, 10271, 1, 0, 0, 0, 10271, 1429, 1, 0, 0, 0, 10272, 10270, 1, 0, 0, 0, 10273, 10280, 1, 0, 0, 0, 10274, 10276, 5, 71, 0, 0, 10275, 10277, 5, 339, 0, 0, 10276, 10275, 1, 0, 0, 0, 10276, 10277, 1, 0, 0, 0, 10277, 10278, 1, 0, 0, 0, 10278, 10280, 3, 1438, 719, 0, 10279, 10273, 1, 0, 0, 0, 10279, 10274, 1, 0, 0, 0, 10280, 1431, 1, 0, 0, 0, 10281, 10310, 5, 520, 0, 0, 10282, 10284, 3, 1458, 729, 0, 10283, 10285, 5, 262, 0, 0, 10284, 10283, 1, 0, 0, 0, 10284, 10285, 1, 0, 0, 0, 10285, 10286, 1, 0, 0, 0, 10286, 10287, 5, 317, 0, 0, 10287, 10294, 5, 62, 0, 0, 10288, 10295, 3, 868, 434, 0, 10289, 10290, 5, 202, 0, 0, 10290, 10291, 3, 1482, 741, 0, 10291, 10292, 5, 100, 0, 0, 10292, 10293, 3, 1164, 582, 0, 10293, 10295, 1, 0, 0, 0, 10294, 10288, 1, 0, 0, 0, 10294, 10289, 1, 0, 0, 0, 10295, 10311, 1, 0, 0, 0, 10296, 10308, 3, 1254, 627, 0, 10297, 10298, 5, 2, 0, 0, 10298, 10303, 3, 1434, 717, 0, 10299, 10300, 5, 6, 0, 0, 10300, 10302, 3, 1434, 717, 0, 10301, 10299, 1, 0, 0, 0, 10302, 10305, 1, 0, 0, 0, 10303, 10301, 1, 0, 0, 0, 10303, 10304, 1, 0, 0, 0, 10304, 10306, 1, 0, 0, 0, 10305, 10303, 1, 0, 0, 0, 10306, 10307, 5, 3, 0, 0, 10307, 10309, 1, 0, 0, 0, 10308, 10297, 1, 0, 0, 0, 10308, 10309, 1, 0, 0, 0, 10309, 10311, 1, 0, 0, 0, 10310, 10282, 1, 0, 0, 0, 10310, 10296, 1, 0, 0, 0, 10311, 10312, 1, 0, 0, 0, 10312, 10313, 5, 7, 0, 0, 10313, 1433, 1, 0, 0, 0, 10314, 10315, 3, 1254, 627, 0, 10315, 10316, 5, 20, 0, 0, 10316, 10317, 3, 1046, 523, 0, 10317, 10320, 1, 0, 0, 0, 10318, 10320, 3, 1046, 523, 0, 10319, 10314, 1, 0, 0, 0, 10319, 10318, 1, 0, 0, 0, 10320, 1435, 1, 0, 0, 0, 10321, 10322, 5, 61, 0, 0, 10322, 10323, 3, 1442, 721, 0, 10323, 10324, 3, 1440, 720, 0, 10324, 10325, 3, 1458, 729, 0, 10325, 10326, 5, 71, 0, 0, 10326, 10327, 3, 1438, 719, 0, 10327, 10328, 5, 7, 0, 0, 10328, 1437, 1, 0, 0, 0, 10329, 10330, 3, 1164, 582, 0, 10330, 1439, 1, 0, 0, 0, 10331, 10335, 1, 0, 0, 0, 10332, 10335, 5, 64, 0, 0, 10333, 10335, 5, 68, 0, 0, 10334, 10331, 1, 0, 0, 0, 10334, 10332, 1, 0, 0, 0, 10334, 10333, 1, 0, 0, 0, 10335, 1441, 1, 0, 0, 0, 10336, 10354, 1, 0, 0, 0, 10337, 10354, 1, 0, 0, 0, 10338, 10354, 5, 261, 0, 0, 10339, 10354, 5, 286, 0, 0, 10340, 10354, 5, 207, 0, 0, 10341, 10354, 5, 240, 0, 0, 10342, 10343, 5, 130, 0, 0, 10343, 10354, 3, 1046, 523, 0, 10344, 10345, 5, 300, 0, 0, 10345, 10354, 3, 1046, 523, 0, 10346, 10354, 3, 1046, 523, 0, 10347, 10354, 5, 30, 0, 0, 10348, 10351, 7, 67, 0, 0, 10349, 10352, 3, 1046, 523, 0, 10350, 10352, 5, 30, 0, 0, 10351, 10349, 1, 0, 0, 0, 10351, 10350, 1, 0, 0, 0, 10351, 10352, 1, 0, 0, 0, 10352, 10354, 1, 0, 0, 0, 10353, 10336, 1, 0, 0, 0, 10353, 10337, 1, 0, 0, 0, 10353, 10338, 1, 0, 0, 0, 10353, 10339, 1, 0, 0, 0, 10353, 10340, 1, 0, 0, 0, 10353, 10341, 1, 0, 0, 0, 10353, 10342, 1, 0, 0, 0, 10353, 10344, 1, 0, 0, 0, 10353, 10346, 1, 0, 0, 0, 10353, 10347, 1, 0, 0, 0, 10353, 10348, 1, 0, 0, 0, 10354, 1443, 1, 0, 0, 0, 10355, 10356, 5, 258, 0, 0, 10356, 10357, 3, 1442, 721, 0, 10357, 10358, 3, 1458, 729, 0, 10358, 10359, 5, 7, 0, 0, 10359, 1445, 1, 0, 0, 0, 10360, 10361, 5, 157, 0, 0, 10361, 10362, 3, 1458, 729, 0, 10362, 10363, 5, 7, 0, 0, 10363, 1447, 1, 0, 0, 0, 10364, 10365, 5, 78, 0, 0, 10365, 10366, 5, 7, 0, 0, 10366, 1449, 1, 0, 0, 0, 10367, 10368, 5, 161, 0, 0, 10368, 10369, 3, 1454, 727, 0, 10369, 10370, 5, 7, 0, 0, 10370, 1451, 1, 0, 0, 0, 10371, 10372, 5, 312, 0, 0, 10372, 10373, 3, 1454, 727, 0, 10373, 10374, 5, 7, 0, 0, 10374, 1453, 1, 0, 0, 0, 10375, 10377, 5, 33, 0, 0, 10376, 10378, 5, 262, 0, 0, 10377, 10376, 1, 0, 0, 0, 10377, 10378, 1, 0, 0, 0, 10378, 10379, 1, 0, 0, 0, 10379, 10382, 5, 153, 0, 0, 10380, 10382, 1, 0, 0, 0, 10381, 10375, 1, 0, 0, 0, 10381, 10380, 1, 0, 0, 0, 10382, 1455, 1, 0, 0, 0, 10383, 10384, 5, 326, 0, 0, 10384, 10385, 3, 478, 239, 0, 10385, 10386, 5, 94, 0, 0, 10386, 10387, 5, 53, 0, 0, 10387, 10388, 5, 7, 0, 0, 10388, 10396, 1, 0, 0, 0, 10389, 10392, 5, 306, 0, 0, 10390, 10393, 3, 478, 239, 0, 10391, 10393, 5, 30, 0, 0, 10392, 10390, 1, 0, 0, 0, 10392, 10391, 1, 0, 0, 0, 10393, 10394, 1, 0, 0, 0, 10394, 10396, 5, 7, 0, 0, 10395, 10383, 1, 0, 0, 0, 10395, 10389, 1, 0, 0, 0, 10396, 1457, 1, 0, 0, 0, 10397, 10400, 3, 1254, 627, 0, 10398, 10400, 5, 28, 0, 0, 10399, 10397, 1, 0, 0, 0, 10399, 10398, 1, 0, 0, 0, 10400, 1459, 1, 0, 0, 0, 10401, 10405, 1, 0, 0, 0, 10402, 10403, 5, 517, 0, 0, 10403, 10405, 3, 1462, 731, 0, 10404, 10401, 1, 0, 0, 0, 10404, 10402, 1, 0, 0, 0, 10405, 1461, 1, 0, 0, 0, 10406, 10408, 3, 1464, 732, 0, 10407, 10406, 1, 0, 0, 0, 10408, 10409, 1, 0, 0, 0, 10409, 10407, 1, 0, 0, 0, 10409, 10410, 1, 0, 0, 0, 10410, 1463, 1, 0, 0, 0, 10411, 10412, 5, 102, 0, 0, 10412, 10413, 3, 1466, 733, 0, 10413, 10414, 5, 93, 0, 0, 10414, 10415, 3, 1334, 667, 0, 10415, 1465, 1, 0, 0, 0, 10416, 10421, 3, 1468, 734, 0, 10417, 10418, 5, 82, 0, 0, 10418, 10420, 3, 1468, 734, 0, 10419, 10417, 1, 0, 0, 0, 10420, 10423, 1, 0, 0, 0, 10421, 10419, 1, 0, 0, 0, 10421, 10422, 1, 0, 0, 0, 10422, 1467, 1, 0, 0, 0, 10423, 10421, 1, 0, 0, 0, 10424, 10428, 3, 1478, 739, 0, 10425, 10426, 5, 511, 0, 0, 10426, 10428, 3, 1240, 620, 0, 10427, 10424, 1, 0, 0, 0, 10427, 10425, 1, 0, 0, 0, 10428, 1469, 1, 0, 0, 0, 10429, 10432, 1, 0, 0, 0, 10430, 10432, 3, 1298, 649, 0, 10431, 10429, 1, 0, 0, 0, 10431, 10430, 1, 0, 0, 0, 10432, 1471, 1, 0, 0, 0, 10433, 10436, 1, 0, 0, 0, 10434, 10436, 3, 1298, 649, 0, 10435, 10433, 1, 0, 0, 0, 10435, 10434, 1, 0, 0, 0, 10436, 1473, 1, 0, 0, 0, 10437, 10440, 1, 0, 0, 0, 10438, 10440, 3, 1478, 739, 0, 10439, 10437, 1, 0, 0, 0, 10439, 10438, 1, 0, 0, 0, 10440, 1475, 1, 0, 0, 0, 10441, 10442, 5, 102, 0, 0, 10442, 10445, 3, 1486, 743, 0, 10443, 10445, 1, 0, 0, 0, 10444, 10441, 1, 0, 0, 0, 10444, 10443, 1, 0, 0, 0, 10445, 1477, 1, 0, 0, 0, 10446, 10449, 3, 1254, 627, 0, 10447, 10449, 3, 1480, 740, 0, 10448, 10446, 1, 0, 0, 0, 10448, 10447, 1, 0, 0, 0, 10449, 1479, 1, 0, 0, 0, 10450, 10451, 7, 68, 0, 0, 10451, 1481, 1, 0, 0, 0, 10452, 10454, 3, 1210, 605, 0, 10453, 10455, 3, 888, 444, 0, 10454, 10453, 1, 0, 0, 0, 10454, 10455, 1, 0, 0, 0, 10455, 10456, 1, 0, 0, 0, 10456, 10457, 3, 946, 473, 0, 10457, 10458, 3, 982, 491, 0, 10458, 10459, 3, 928, 464, 0, 10459, 10460, 3, 934, 467, 0, 10460, 10461, 3, 1124, 562, 0, 10461, 1483, 1, 0, 0, 0, 10462, 10463, 3, 1482, 741, 0, 10463, 1485, 1, 0, 0, 0, 10464, 10465, 3, 1482, 741, 0, 10465, 1487, 1, 0, 0, 0, 10466, 10467, 3, 1046, 523, 0, 10467, 1489, 1, 0, 0, 0, 10468, 10469, 3, 1046, 523, 0, 10469, 1491, 1, 0, 0, 0, 10470, 10471, 3, 6, 3, 0, 10471, 10472, 3, 1494, 747, 0, 10472, 1493, 1, 0, 0, 0, 10473, 10475, 5, 71, 0, 0, 10474, 10476, 5, 339, 0, 0, 10475, 10474, 1, 0, 0, 0, 10475, 10476, 1, 0, 0, 0, 10476, 10477, 1, 0, 0, 0, 10477, 10480, 3, 1438, 719, 0, 10478, 10480, 1, 0, 0, 0, 10479, 10473, 1, 0, 0, 0, 10479, 10478, 1, 0, 0, 0, 10480, 1495, 1, 0, 0, 0, 762, 1497, 1505, 1511, 1638, 1642, 1655, 1660, 1666, 1672, 1687, 1699, 1717, 1722, 1732, 1756, 1763, 1769, 1774, 1783, 1787, 1799, 1830, 1837, 1845, 1850, 1857, 1863, 1880, 1885, 1889, 1902, 1906, 1911, 1916, 1928, 1937, 1950, 1955, 1966, 1977, 1982, 1993, 2004, 2013, 2023, 2038, 2050, 2055, 2062, 2073, 2331, 2338, 2343, 2348, 2353, 2361, 2370, 2377, 2387, 2389, 2394, 2400, 2406, 2408, 2436, 2446, 2459, 2471, 2485, 2490, 2494, 2500, 2514, 2520, 2527, 2532, 2539, 2576, 2579, 2584, 2591, 2606, 2612, 2620, 2653, 2663, 2667, 2674, 2681, 2689, 2695, 2699, 2709, 2716, 2727, 2747, 2761, 2769, 2774, 2781, 2791, 2801, 2821, 2836, 2861, 2868, 2875, 2886, 2891, 2898, 2909, 2917, 2928, 2944, 2952, 2956, 2970, 2987, 2992, 2999, 3008, 3011, 3016, 3023, 3034, 3047, 3060, 3078, 3081, 3085, 3092, 3118, 3122, 3128, 3138, 3143, 3152, 3174, 3176, 3184, 3191, 3197, 3206, 3208, 3212, 3217, 3223, 3227, 3240, 3246, 3255, 3262, 3272, 3281, 3391, 3399, 3411, 3416, 3424, 3435, 3443, 3450, 3463, 3473, 3487, 3503, 3511, 3516, 3521, 3529, 3531, 3589, 3606, 3614, 3637, 3641, 3661, 3698, 3707, 3712, 3717, 3722, 3727, 3780, 3786, 3793, 3803, 3808, 3813, 3828, 3832, 3842, 3848, 3854, 3861, 3866, 3871, 3885, 3913, 3920, 3934, 3949, 4001, 4068, 4076, 4084, 4092, 4100, 4114, 4154, 4160, 4167, 4183, 4191, 4198, 4213, 4218, 4227, 4254, 4261, 4276, 4296, 4316, 4409, 4434, 4441, 4457, 4466, 4471, 4477, 4484, 4498, 4647, 4651, 4744, 4749, 4753, 4759, 4827, 4833, 4862, 4879, 4886, 4898, 4958, 4965, 4971, 4977, 5003, 5009, 5015, 5023, 5037, 5066, 5072, 5077, 5092, 5111, 5115, 5120, 5127, 5141, 5154, 5163, 5169, 5174, 5178, 5183, 5190, 5198, 5208, 5210, 5217, 5224, 5232, 5238, 5245, 5247, 5254, 5260, 5264, 5270, 5275, 5279, 5284, 5290, 5296, 5302, 5308, 5321, 5330, 5341, 5347, 5386, 5396, 5403, 5414, 5420, 5430, 5439, 5442, 5480, 5494, 5508, 5532, 5539, 5549, 5561, 5566, 5602, 5609, 5624, 5671, 5708, 5719, 5736, 6206, 6210, 6215, 6221, 6232, 6243, 6256, 6268, 6279, 6286, 6505, 6520, 6531, 6538, 6731, 6741, 6749, 6778, 6794, 6836, 6850, 6872, 6879, 6887, 6891, 6898, 6907, 6916, 6925, 6930, 6971, 6976, 6988, 6992, 6997, 7002, 7006, 7011, 7027, 7035, 7040, 7054, 7057, 7061, 7066, 7076, 7087, 7098, 7108, 7113, 7149, 7157, 7161, 7242, 7246, 7270, 7275, 7279, 7282, 7286, 7296, 7308, 7315, 7325, 7330, 7334, 7341, 7351, 7355, 7374, 7380, 7391, 7398, 7403, 7416, 7422, 7451, 7458, 7470, 7473, 7485, 7500, 7506, 7515, 7531, 7534, 7545, 7550, 7554, 7558, 7563, 7566, 7572, 7576, 7578, 7581, 7588, 7591, 7598, 7606, 7609, 7618, 7623, 7635, 7648, 7659, 7662, 7666, 7672, 7675, 7690, 7703, 7710, 7722, 7724, 7739, 7743, 7753, 7762, 7764, 7774, 7776, 7778, 7787, 7797, 7802, 7807, 7812, 7815, 7829, 7833, 7840, 7855, 7859, 7863, 7866, 7879, 7883, 7888, 7896, 7902, 7913, 7920, 7926, 7930, 7932, 7936, 7942, 7951, 7957, 7959, 7961, 7968, 7972, 7981, 7985, 7995, 8002, 8024, 8029, 8034, 8039, 8048, 8052, 8055, 8060, 8073, 8079, 8087, 8090, 8097, 8102, 8123, 8132, 8137, 8143, 8148, 8155, 8160, 8166, 8168, 8172, 8179, 8183, 8186, 8193, 8198, 8201, 8208, 8212, 8221, 8225, 8233, 8235, 8242, 8247, 8250, 8273, 8279, 8290, 8295, 8300, 8307, 8310, 8314, 8321, 8338, 8354, 8357, 8364, 8368, 8373, 8383, 8390, 8399, 8402, 8407, 8412, 8420, 8422, 8428, 8441, 8443, 8449, 8455, 8458, 8467, 8485, 8492, 8496, 8500, 8516, 8523, 8531, 8535, 8542, 8555, 8571, 8577, 8583, 8590, 8595, 8601, 8608, 8616, 8624, 8629, 8633, 8639, 8643, 8647, 8650, 8656, 8661, 8677, 8680, 8682, 8694, 8696, 8700, 8706, 8711, 8719, 8723, 8732, 8740, 8746, 8749, 8758, 8763, 8770, 8780, 8806, 8817, 8819, 8821, 8829, 8852, 8860, 8870, 8884, 8894, 8898, 8912, 8919, 8926, 8933, 8958, 8987, 9026, 9028, 9056, 9077, 9084, 9097, 9109, 9115, 9124, 9141, 9153, 9162, 9167, 9174, 9184, 9187, 9198, 9204, 9219, 9227, 9236, 9245, 9248, 9253, 9262, 9267, 9281, 9291, 9299, 9313, 9320, 9328, 9336, 9343, 9349, 9358, 9366, 9376, 9387, 9394, 9423, 9432, 9439, 9450, 9460, 9464, 9468, 9473, 9478, 9482, 9484, 9487, 9492, 9497, 9502, 9509, 9518, 9520, 9527, 9532, 9539, 9555, 9570, 9584, 9589, 9608, 9613, 9618, 9625, 9632, 9639, 9648, 9654, 9660, 9666, 9674, 9683, 9741, 9756, 9779, 9787, 9791, 9803, 9805, 9812, 9821, 9839, 9847, 9856, 9863, 9873, 9879, 9886, 9891, 9897, 9901, 9908, 9938, 9958, 9962, 9978, 9985, 9998, 10006, 10026, 10032, 10044, 10049, 10059, 10091, 10096, 10105, 10110, 10114, 10119, 10135, 10153, 10156, 10162, 10190, 10200, 10207, 10209, 10218, 10221, 10235, 10256, 10263, 10270, 10276, 10279, 10284, 10294, 10303, 10308, 10310, 10319, 10334, 10351, 10353, 10377, 10381, 10392, 10395, 10399, 10404, 10409, 10421, 10427, 10431, 10435, 10439, 10444, 10448, 10454, 10475, 10479] \ No newline at end of file diff --git a/src/autocomplete/postgresql/generated/PostgreSqlParser.ts b/src/autocomplete/postgresql/generated/PostgreSqlParser.ts index 486cb401..d284e4ce 100644 --- a/src/autocomplete/postgresql/generated/PostgreSqlParser.ts +++ b/src/autocomplete/postgresql/generated/PostgreSqlParser.ts @@ -702,816 +702,753 @@ export class PostgreSqlParser extends PostgreSqlParserBase { public static readonly EndDollarStringConstant = 678; public static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 679; public static readonly RULE_root = 0; - public static readonly RULE_plsqlroot = 1; - public static readonly RULE_stmtmulti = 2; - public static readonly RULE_stmt = 3; - public static readonly RULE_plsqlconsolecommand = 4; - public static readonly RULE_callstmt = 5; - public static readonly RULE_createrolestmt = 6; - public static readonly RULE_opt_with = 7; - public static readonly RULE_optrolelist = 8; - public static readonly RULE_alteroptrolelist = 9; - public static readonly RULE_alteroptroleelem = 10; - public static readonly RULE_createoptroleelem = 11; - public static readonly RULE_createuserstmt = 12; - public static readonly RULE_alterrolestmt = 13; - public static readonly RULE_opt_in_database = 14; - public static readonly RULE_alterrolesetstmt = 15; - public static readonly RULE_droprolestmt = 16; - public static readonly RULE_creategroupstmt = 17; - public static readonly RULE_altergroupstmt = 18; - public static readonly RULE_add_drop = 19; - public static readonly RULE_createschemastmt = 20; - public static readonly RULE_optschemaname = 21; - public static readonly RULE_optschemaeltlist = 22; - public static readonly RULE_schema_stmt = 23; - public static readonly RULE_variablesetstmt = 24; - public static readonly RULE_set_rest = 25; - public static readonly RULE_generic_set = 26; - public static readonly RULE_set_rest_more = 27; - public static readonly RULE_var_name = 28; - public static readonly RULE_var_list = 29; - public static readonly RULE_var_value = 30; - public static readonly RULE_iso_level = 31; - public static readonly RULE_opt_boolean_or_string = 32; - public static readonly RULE_zone_value = 33; - public static readonly RULE_opt_encoding = 34; - public static readonly RULE_nonreservedword_or_sconst = 35; - public static readonly RULE_variableresetstmt = 36; - public static readonly RULE_reset_rest = 37; - public static readonly RULE_generic_reset = 38; - public static readonly RULE_setresetclause = 39; - public static readonly RULE_functionsetresetclause = 40; - public static readonly RULE_variableshowstmt = 41; - public static readonly RULE_constraintssetstmt = 42; - public static readonly RULE_constraints_set_list = 43; - public static readonly RULE_constraints_set_mode = 44; - public static readonly RULE_checkpointstmt = 45; - public static readonly RULE_discardstmt = 46; - public static readonly RULE_altertablestmt = 47; - public static readonly RULE_alter_table_cmds = 48; - public static readonly RULE_partition_cmd = 49; - public static readonly RULE_index_partition_cmd = 50; - public static readonly RULE_alter_table_cmd = 51; - public static readonly RULE_alter_column_default = 52; - public static readonly RULE_opt_drop_behavior = 53; - public static readonly RULE_opt_collate_clause = 54; - public static readonly RULE_alter_using = 55; - public static readonly RULE_replica_identity = 56; - public static readonly RULE_reloptions = 57; - public static readonly RULE_opt_reloptions = 58; - public static readonly RULE_reloption_list = 59; - public static readonly RULE_reloption_elem = 60; - public static readonly RULE_alter_identity_column_option_list = 61; - public static readonly RULE_alter_identity_column_option = 62; - public static readonly RULE_partitionboundspec = 63; - public static readonly RULE_hash_partbound_elem = 64; - public static readonly RULE_hash_partbound = 65; - public static readonly RULE_altercompositetypestmt = 66; - public static readonly RULE_alter_type_cmds = 67; - public static readonly RULE_alter_type_cmd = 68; - public static readonly RULE_closeportalstmt = 69; - public static readonly RULE_copystmt = 70; - public static readonly RULE_copy_from = 71; - public static readonly RULE_opt_program = 72; - public static readonly RULE_copy_file_name = 73; - public static readonly RULE_copy_options = 74; - public static readonly RULE_copy_opt_list = 75; - public static readonly RULE_copy_opt_item = 76; - public static readonly RULE_opt_binary = 77; - public static readonly RULE_copy_delimiter = 78; - public static readonly RULE_opt_using = 79; - public static readonly RULE_copy_generic_opt_list = 80; - public static readonly RULE_copy_generic_opt_elem = 81; - public static readonly RULE_copy_generic_opt_arg = 82; - public static readonly RULE_copy_generic_opt_arg_list = 83; - public static readonly RULE_copy_generic_opt_arg_list_item = 84; - public static readonly RULE_createstmt = 85; - public static readonly RULE_opttemp = 86; - public static readonly RULE_opttableelementlist = 87; - public static readonly RULE_opttypedtableelementlist = 88; - public static readonly RULE_tableelementlist = 89; - public static readonly RULE_typedtableelementlist = 90; - public static readonly RULE_tableelement = 91; - public static readonly RULE_typedtableelement = 92; - public static readonly RULE_columnDef = 93; - public static readonly RULE_columnOptions = 94; - public static readonly RULE_colquallist = 95; - public static readonly RULE_colconstraint = 96; - public static readonly RULE_colconstraintelem = 97; - public static readonly RULE_generated_when = 98; - public static readonly RULE_constraintattr = 99; - public static readonly RULE_tablelikeclause = 100; - public static readonly RULE_tablelikeoptionlist = 101; - public static readonly RULE_tablelikeoption = 102; - public static readonly RULE_tableconstraint = 103; - public static readonly RULE_constraintelem = 104; - public static readonly RULE_opt_no_inherit = 105; - public static readonly RULE_opt_column_list = 106; - public static readonly RULE_columnlist = 107; - public static readonly RULE_columnElem = 108; - public static readonly RULE_opt_c_include = 109; - public static readonly RULE_key_match = 110; - public static readonly RULE_exclusionconstraintlist = 111; - public static readonly RULE_exclusionconstraintelem = 112; - public static readonly RULE_exclusionwhereclause = 113; - public static readonly RULE_key_actions = 114; - public static readonly RULE_key_update = 115; - public static readonly RULE_key_delete = 116; - public static readonly RULE_key_action = 117; - public static readonly RULE_optinherit = 118; - public static readonly RULE_optpartitionspec = 119; - public static readonly RULE_partitionspec = 120; - public static readonly RULE_part_params = 121; - public static readonly RULE_part_elem = 122; - public static readonly RULE_table_access_method_clause = 123; - public static readonly RULE_optwith = 124; - public static readonly RULE_oncommitoption = 125; - public static readonly RULE_opttablespace = 126; - public static readonly RULE_optconstablespace = 127; - public static readonly RULE_existingindex = 128; - public static readonly RULE_createstatsstmt = 129; - public static readonly RULE_alterstatsstmt = 130; - public static readonly RULE_createasstmt = 131; - public static readonly RULE_create_as_target = 132; - public static readonly RULE_opt_with_data = 133; - public static readonly RULE_creatematviewstmt = 134; - public static readonly RULE_create_mv_target = 135; - public static readonly RULE_optnolog = 136; - public static readonly RULE_refreshmatviewstmt = 137; - public static readonly RULE_createseqstmt = 138; - public static readonly RULE_alterseqstmt = 139; - public static readonly RULE_optseqoptlist = 140; - public static readonly RULE_optparenthesizedseqoptlist = 141; - public static readonly RULE_seqoptlist = 142; - public static readonly RULE_seqoptelem = 143; - public static readonly RULE_opt_by = 144; - public static readonly RULE_numericonly = 145; - public static readonly RULE_numericonly_list = 146; - public static readonly RULE_createplangstmt = 147; - public static readonly RULE_opt_trusted = 148; - public static readonly RULE_handler_name = 149; - public static readonly RULE_opt_inline_handler = 150; - public static readonly RULE_validator_clause = 151; - public static readonly RULE_opt_validator = 152; - public static readonly RULE_opt_procedural = 153; - public static readonly RULE_createtablespacestmt = 154; - public static readonly RULE_opttablespaceowner = 155; - public static readonly RULE_droptablespacestmt = 156; - public static readonly RULE_createextensionstmt = 157; - public static readonly RULE_create_extension_opt_list = 158; - public static readonly RULE_create_extension_opt_item = 159; - public static readonly RULE_alterextensionstmt = 160; - public static readonly RULE_alter_extension_opt_list = 161; - public static readonly RULE_alter_extension_opt_item = 162; - public static readonly RULE_alterextensioncontentsstmt = 163; - public static readonly RULE_createfdwstmt = 164; - public static readonly RULE_fdw_option = 165; - public static readonly RULE_fdw_options = 166; - public static readonly RULE_opt_fdw_options = 167; - public static readonly RULE_alterfdwstmt = 168; - public static readonly RULE_create_generic_options = 169; - public static readonly RULE_generic_option_list = 170; - public static readonly RULE_alter_generic_options = 171; - public static readonly RULE_alter_generic_option_list = 172; - public static readonly RULE_alter_generic_option_elem = 173; - public static readonly RULE_generic_option_elem = 174; - public static readonly RULE_generic_option_name = 175; - public static readonly RULE_generic_option_arg = 176; - public static readonly RULE_createforeignserverstmt = 177; - public static readonly RULE_opt_type = 178; - public static readonly RULE_foreign_server_version = 179; - public static readonly RULE_opt_foreign_server_version = 180; - public static readonly RULE_alterforeignserverstmt = 181; - public static readonly RULE_createforeigntablestmt = 182; - public static readonly RULE_importforeignschemastmt = 183; - public static readonly RULE_import_qualification_type = 184; - public static readonly RULE_import_qualification = 185; - public static readonly RULE_createusermappingstmt = 186; - public static readonly RULE_auth_ident = 187; - public static readonly RULE_dropusermappingstmt = 188; - public static readonly RULE_alterusermappingstmt = 189; - public static readonly RULE_createpolicystmt = 190; - public static readonly RULE_alterpolicystmt = 191; - public static readonly RULE_rowsecurityoptionalexpr = 192; - public static readonly RULE_rowsecurityoptionalwithcheck = 193; - public static readonly RULE_rowsecuritydefaulttorole = 194; - public static readonly RULE_rowsecurityoptionaltorole = 195; - public static readonly RULE_rowsecuritydefaultpermissive = 196; - public static readonly RULE_rowsecuritydefaultforcmd = 197; - public static readonly RULE_row_security_cmd = 198; - public static readonly RULE_createamstmt = 199; - public static readonly RULE_am_type = 200; - public static readonly RULE_createtrigstmt = 201; - public static readonly RULE_triggeractiontime = 202; - public static readonly RULE_triggerevents = 203; - public static readonly RULE_triggeroneevent = 204; - public static readonly RULE_triggerreferencing = 205; - public static readonly RULE_triggertransitions = 206; - public static readonly RULE_triggertransition = 207; - public static readonly RULE_transitionoldornew = 208; - public static readonly RULE_transitionrowortable = 209; - public static readonly RULE_transitionrelname = 210; - public static readonly RULE_triggerforspec = 211; - public static readonly RULE_triggerforopteach = 212; - public static readonly RULE_triggerfortype = 213; - public static readonly RULE_triggerwhen = 214; - public static readonly RULE_function_or_procedure = 215; - public static readonly RULE_triggerfuncargs = 216; - public static readonly RULE_triggerfuncarg = 217; - public static readonly RULE_optconstrfromtable = 218; - public static readonly RULE_constraintattributespec = 219; - public static readonly RULE_constraintattributeElem = 220; - public static readonly RULE_createeventtrigstmt = 221; - public static readonly RULE_event_trigger_when_list = 222; - public static readonly RULE_event_trigger_when_item = 223; - public static readonly RULE_event_trigger_value_list = 224; - public static readonly RULE_altereventtrigstmt = 225; - public static readonly RULE_enable_trigger = 226; - public static readonly RULE_createassertionstmt = 227; - public static readonly RULE_definestmt = 228; - public static readonly RULE_definition = 229; - public static readonly RULE_def_list = 230; - public static readonly RULE_def_elem = 231; - public static readonly RULE_def_arg = 232; - public static readonly RULE_old_aggr_definition = 233; - public static readonly RULE_old_aggr_list = 234; - public static readonly RULE_old_aggr_elem = 235; - public static readonly RULE_opt_enum_val_list = 236; - public static readonly RULE_enum_val_list = 237; - public static readonly RULE_alterenumstmt = 238; - public static readonly RULE_opt_if_not_exists = 239; - public static readonly RULE_createopclassstmt = 240; - public static readonly RULE_opclass_item_list = 241; - public static readonly RULE_opclass_item = 242; - public static readonly RULE_opt_default = 243; - public static readonly RULE_opt_opfamily = 244; - public static readonly RULE_opclass_purpose = 245; - public static readonly RULE_opt_recheck = 246; - public static readonly RULE_createopfamilystmt = 247; - public static readonly RULE_alteropfamilystmt = 248; - public static readonly RULE_opclass_drop_list = 249; - public static readonly RULE_opclass_drop = 250; - public static readonly RULE_dropopclassstmt = 251; - public static readonly RULE_dropopfamilystmt = 252; - public static readonly RULE_dropownedstmt = 253; - public static readonly RULE_reassignownedstmt = 254; - public static readonly RULE_dropstmt = 255; - public static readonly RULE_object_type_any_name = 256; - public static readonly RULE_object_type_name = 257; - public static readonly RULE_drop_type_name = 258; - public static readonly RULE_object_type_name_on_any_name = 259; - public static readonly RULE_any_name_list = 260; - public static readonly RULE_any_name = 261; - public static readonly RULE_attrs = 262; - public static readonly RULE_type_name_list = 263; - public static readonly RULE_truncatestmt = 264; - public static readonly RULE_opt_restart_seqs = 265; - public static readonly RULE_commentstmt = 266; - public static readonly RULE_comment_text = 267; - public static readonly RULE_seclabelstmt = 268; - public static readonly RULE_opt_provider = 269; - public static readonly RULE_security_label = 270; - public static readonly RULE_fetchstmt = 271; - public static readonly RULE_fetch_args = 272; - public static readonly RULE_from_in = 273; - public static readonly RULE_opt_from_in = 274; - public static readonly RULE_grantstmt = 275; - public static readonly RULE_revokestmt = 276; - public static readonly RULE_privileges = 277; - public static readonly RULE_privilege_list = 278; - public static readonly RULE_privilege = 279; - public static readonly RULE_privilege_target = 280; - public static readonly RULE_grantee_list = 281; - public static readonly RULE_grantee = 282; - public static readonly RULE_opt_grant_grant_option = 283; - public static readonly RULE_grantrolestmt = 284; - public static readonly RULE_revokerolestmt = 285; - public static readonly RULE_opt_grant_admin_option = 286; - public static readonly RULE_opt_granted_by = 287; - public static readonly RULE_alterdefaultprivilegesstmt = 288; - public static readonly RULE_defacloptionlist = 289; - public static readonly RULE_defacloption = 290; - public static readonly RULE_defaclaction = 291; - public static readonly RULE_defacl_privilege_target = 292; - public static readonly RULE_indexstmt = 293; - public static readonly RULE_opt_unique = 294; - public static readonly RULE_opt_concurrently = 295; - public static readonly RULE_opt_index_name = 296; - public static readonly RULE_access_method_clause = 297; - public static readonly RULE_index_params = 298; - public static readonly RULE_index_elem_options = 299; - public static readonly RULE_index_elem = 300; - public static readonly RULE_opt_include = 301; - public static readonly RULE_index_including_params = 302; - public static readonly RULE_opt_collate = 303; - public static readonly RULE_opt_class = 304; - public static readonly RULE_opt_asc_desc = 305; - public static readonly RULE_opt_nulls_order = 306; - public static readonly RULE_createfunctionstmt = 307; - public static readonly RULE_opt_or_replace = 308; - public static readonly RULE_func_args = 309; - public static readonly RULE_func_args_list = 310; - public static readonly RULE_function_with_argtypes_list = 311; - public static readonly RULE_function_with_argtypes = 312; - public static readonly RULE_func_args_with_defaults = 313; - public static readonly RULE_func_args_with_defaults_list = 314; - public static readonly RULE_func_arg = 315; - public static readonly RULE_arg_class = 316; - public static readonly RULE_param_name = 317; - public static readonly RULE_func_return = 318; - public static readonly RULE_func_type = 319; - public static readonly RULE_func_arg_with_default = 320; - public static readonly RULE_aggr_arg = 321; - public static readonly RULE_aggr_args = 322; - public static readonly RULE_aggr_args_list = 323; - public static readonly RULE_aggregate_with_argtypes = 324; - public static readonly RULE_aggregate_with_argtypes_list = 325; - public static readonly RULE_createfunc_opt_list = 326; - public static readonly RULE_common_func_opt_item = 327; - public static readonly RULE_createfunc_opt_item = 328; - public static readonly RULE_func_as = 329; - public static readonly RULE_transform_type_list = 330; - public static readonly RULE_opt_definition = 331; - public static readonly RULE_table_func_column = 332; - public static readonly RULE_table_func_column_list = 333; - public static readonly RULE_alterfunctionstmt = 334; - public static readonly RULE_alterfunc_opt_list = 335; - public static readonly RULE_opt_restrict = 336; - public static readonly RULE_removefuncstmt = 337; - public static readonly RULE_removeaggrstmt = 338; - public static readonly RULE_removeoperstmt = 339; - public static readonly RULE_oper_argtypes = 340; - public static readonly RULE_any_operator = 341; - public static readonly RULE_operator_with_argtypes_list = 342; - public static readonly RULE_operator_with_argtypes = 343; - public static readonly RULE_dostmt = 344; - public static readonly RULE_dostmt_opt_list = 345; - public static readonly RULE_dostmt_opt_item = 346; - public static readonly RULE_createcaststmt = 347; - public static readonly RULE_cast_context = 348; - public static readonly RULE_dropcaststmt = 349; - public static readonly RULE_opt_if_exists = 350; - public static readonly RULE_createtransformstmt = 351; - public static readonly RULE_transform_element_list = 352; - public static readonly RULE_droptransformstmt = 353; - public static readonly RULE_reindexstmt = 354; - public static readonly RULE_reindex_target_type = 355; - public static readonly RULE_reindex_target_multitable = 356; - public static readonly RULE_reindex_option_list = 357; - public static readonly RULE_reindex_option_elem = 358; - public static readonly RULE_altertblspcstmt = 359; - public static readonly RULE_renamestmt = 360; - public static readonly RULE_opt_column = 361; - public static readonly RULE_opt_set_data = 362; - public static readonly RULE_alterobjectdependsstmt = 363; - public static readonly RULE_opt_no = 364; - public static readonly RULE_alterobjectschemastmt = 365; - public static readonly RULE_alteroperatorstmt = 366; - public static readonly RULE_operator_def_list = 367; - public static readonly RULE_operator_def_elem = 368; - public static readonly RULE_operator_def_arg = 369; - public static readonly RULE_altertypestmt = 370; - public static readonly RULE_alterownerstmt = 371; - public static readonly RULE_createpublicationstmt = 372; - public static readonly RULE_opt_publication_for_tables = 373; - public static readonly RULE_publication_for_tables = 374; - public static readonly RULE_alterpublicationstmt = 375; - public static readonly RULE_createsubscriptionstmt = 376; - public static readonly RULE_publication_name_list = 377; - public static readonly RULE_publication_name_item = 378; - public static readonly RULE_altersubscriptionstmt = 379; - public static readonly RULE_dropsubscriptionstmt = 380; - public static readonly RULE_rulestmt = 381; - public static readonly RULE_ruleactionlist = 382; - public static readonly RULE_ruleactionmulti = 383; - public static readonly RULE_ruleactionstmt = 384; - public static readonly RULE_ruleactionstmtOrEmpty = 385; - public static readonly RULE_event = 386; - public static readonly RULE_opt_instead = 387; - public static readonly RULE_notifystmt = 388; - public static readonly RULE_notify_payload = 389; - public static readonly RULE_listenstmt = 390; - public static readonly RULE_unlistenstmt = 391; - public static readonly RULE_transactionstmt = 392; - public static readonly RULE_opt_transaction = 393; - public static readonly RULE_transaction_mode_item = 394; - public static readonly RULE_transaction_mode_list = 395; - public static readonly RULE_transaction_mode_list_or_empty = 396; - public static readonly RULE_opt_transaction_chain = 397; - public static readonly RULE_viewstmt = 398; - public static readonly RULE_opt_check_option = 399; - public static readonly RULE_loadstmt = 400; - public static readonly RULE_createdbstmt = 401; - public static readonly RULE_createdb_opt_list = 402; - public static readonly RULE_createdb_opt_items = 403; - public static readonly RULE_createdb_opt_item = 404; - public static readonly RULE_createdb_opt_name = 405; - public static readonly RULE_opt_equal = 406; - public static readonly RULE_alterdatabasestmt = 407; - public static readonly RULE_alterdatabasesetstmt = 408; - public static readonly RULE_dropdbstmt = 409; - public static readonly RULE_drop_option_list = 410; - public static readonly RULE_drop_option = 411; - public static readonly RULE_altercollationstmt = 412; - public static readonly RULE_altersystemstmt = 413; - public static readonly RULE_createdomainstmt = 414; - public static readonly RULE_alterdomainstmt = 415; - public static readonly RULE_opt_as = 416; - public static readonly RULE_altertsdictionarystmt = 417; - public static readonly RULE_altertsconfigurationstmt = 418; - public static readonly RULE_any_with = 419; - public static readonly RULE_createconversionstmt = 420; - public static readonly RULE_clusterstmt = 421; - public static readonly RULE_cluster_index_specification = 422; - public static readonly RULE_vacuumstmt = 423; - public static readonly RULE_analyzestmt = 424; - public static readonly RULE_vac_analyze_option_list = 425; - public static readonly RULE_analyze_keyword = 426; - public static readonly RULE_vac_analyze_option_elem = 427; - public static readonly RULE_vac_analyze_option_name = 428; - public static readonly RULE_vac_analyze_option_arg = 429; - public static readonly RULE_opt_analyze = 430; - public static readonly RULE_opt_verbose = 431; - public static readonly RULE_opt_full = 432; - public static readonly RULE_opt_freeze = 433; - public static readonly RULE_opt_name_list = 434; - public static readonly RULE_vacuum_relation = 435; - public static readonly RULE_vacuum_relation_list = 436; - public static readonly RULE_opt_vacuum_relation_list = 437; - public static readonly RULE_explainstmt = 438; - public static readonly RULE_explainablestmt = 439; - public static readonly RULE_explain_option_list = 440; - public static readonly RULE_explain_option_elem = 441; - public static readonly RULE_explain_option_name = 442; - public static readonly RULE_explain_option_arg = 443; - public static readonly RULE_preparestmt = 444; - public static readonly RULE_prep_type_clause = 445; - public static readonly RULE_preparablestmt = 446; - public static readonly RULE_executestmt = 447; - public static readonly RULE_execute_param_clause = 448; - public static readonly RULE_deallocatestmt = 449; - public static readonly RULE_insertstmt = 450; - public static readonly RULE_insert_target = 451; - public static readonly RULE_insert_rest = 452; - public static readonly RULE_override_kind = 453; - public static readonly RULE_insert_column_list = 454; - public static readonly RULE_insert_column_item = 455; - public static readonly RULE_opt_on_conflict = 456; - public static readonly RULE_opt_conf_expr = 457; - public static readonly RULE_returning_clause = 458; - public static readonly RULE_mergestmt = 459; - public static readonly RULE_merge_insert_clause = 460; - public static readonly RULE_merge_update_clause = 461; - public static readonly RULE_merge_delete_clause = 462; - public static readonly RULE_deletestmt = 463; - public static readonly RULE_using_clause = 464; - public static readonly RULE_lockstmt = 465; - public static readonly RULE_opt_lock = 466; - public static readonly RULE_lock_type = 467; - public static readonly RULE_opt_nowait = 468; - public static readonly RULE_opt_nowait_or_skip = 469; - public static readonly RULE_updatestmt = 470; - public static readonly RULE_set_clause_list = 471; - public static readonly RULE_set_clause = 472; - public static readonly RULE_set_target = 473; - public static readonly RULE_set_target_list = 474; - public static readonly RULE_declarecursorstmt = 475; - public static readonly RULE_cursor_name = 476; - public static readonly RULE_cursor_options = 477; - public static readonly RULE_opt_hold = 478; - public static readonly RULE_selectstmt = 479; - public static readonly RULE_select_with_parens = 480; - public static readonly RULE_select_no_parens = 481; - public static readonly RULE_select_clause = 482; - public static readonly RULE_simple_select_intersect = 483; - public static readonly RULE_simple_select_start = 484; - public static readonly RULE_simple_select_pramary = 485; - public static readonly RULE_with_clause = 486; - public static readonly RULE_cte_list = 487; - public static readonly RULE_common_table_expr = 488; - public static readonly RULE_opt_materialized = 489; - public static readonly RULE_into_clause = 490; - public static readonly RULE_opt_strict = 491; - public static readonly RULE_opttempTableName = 492; - public static readonly RULE_opt_table = 493; - public static readonly RULE_all_or_distinct = 494; - public static readonly RULE_distinct_clause = 495; - public static readonly RULE_all_clause = 496; - public static readonly RULE_opt_sort_clause = 497; - public static readonly RULE_sort_clause = 498; - public static readonly RULE_sortby_list = 499; - public static readonly RULE_sortby = 500; - public static readonly RULE_select_limit = 501; - public static readonly RULE_opt_select_limit = 502; - public static readonly RULE_limit_clause = 503; - public static readonly RULE_offset_clause = 504; - public static readonly RULE_select_limit_value = 505; - public static readonly RULE_select_offset_value = 506; - public static readonly RULE_select_fetch_first_value = 507; - public static readonly RULE_i_or_f_const = 508; - public static readonly RULE_row_or_rows = 509; - public static readonly RULE_first_or_next = 510; - public static readonly RULE_group_clause = 511; - public static readonly RULE_group_by_list = 512; - public static readonly RULE_group_by_item = 513; - public static readonly RULE_empty_grouping_set = 514; - public static readonly RULE_rollup_clause = 515; - public static readonly RULE_cube_clause = 516; - public static readonly RULE_grouping_sets_clause = 517; - public static readonly RULE_having_clause = 518; - public static readonly RULE_for_locking_clause = 519; - public static readonly RULE_opt_for_locking_clause = 520; - public static readonly RULE_for_locking_items = 521; - public static readonly RULE_for_locking_item = 522; - public static readonly RULE_for_locking_strength = 523; - public static readonly RULE_locked_rels_list = 524; - public static readonly RULE_values_clause = 525; - public static readonly RULE_from_clause = 526; - public static readonly RULE_from_list = 527; - public static readonly RULE_non_ansi_join = 528; - public static readonly RULE_table_ref = 529; - public static readonly RULE_alias_clause = 530; - public static readonly RULE_opt_alias_clause = 531; - public static readonly RULE_table_alias_clause = 532; - public static readonly RULE_func_alias_clause = 533; - public static readonly RULE_join_type = 534; - public static readonly RULE_join_qual = 535; - public static readonly RULE_relation_expr = 536; - public static readonly RULE_relation_expr_list = 537; - public static readonly RULE_relation_expr_opt_alias = 538; - public static readonly RULE_tablesample_clause = 539; - public static readonly RULE_opt_repeatable_clause = 540; - public static readonly RULE_func_table = 541; - public static readonly RULE_rowsfrom_item = 542; - public static readonly RULE_rowsfrom_list = 543; - public static readonly RULE_opt_col_def_list = 544; - public static readonly RULE_opt_ordinality = 545; - public static readonly RULE_where_clause = 546; - public static readonly RULE_where_or_current_clause = 547; - public static readonly RULE_opttablefuncelementlist = 548; - public static readonly RULE_tablefuncelementlist = 549; - public static readonly RULE_tablefuncelement = 550; - public static readonly RULE_xmltable = 551; - public static readonly RULE_xmltable_column_list = 552; - public static readonly RULE_xmltable_column_el = 553; - public static readonly RULE_xmltable_column_option_list = 554; - public static readonly RULE_xmltable_column_option_el = 555; - public static readonly RULE_xml_namespace_list = 556; - public static readonly RULE_xml_namespace_el = 557; - public static readonly RULE_typename = 558; - public static readonly RULE_opt_array_bounds = 559; - public static readonly RULE_simpletypename = 560; - public static readonly RULE_consttypename = 561; - public static readonly RULE_generictype = 562; - public static readonly RULE_opt_type_modifiers = 563; - public static readonly RULE_numeric = 564; - public static readonly RULE_opt_float = 565; - public static readonly RULE_bit = 566; - public static readonly RULE_constbit = 567; - public static readonly RULE_bitwithlength = 568; - public static readonly RULE_bitwithoutlength = 569; - public static readonly RULE_character = 570; - public static readonly RULE_constcharacter = 571; - public static readonly RULE_character_c = 572; - public static readonly RULE_opt_varying = 573; - public static readonly RULE_constdatetime = 574; - public static readonly RULE_constinterval = 575; - public static readonly RULE_opt_timezone = 576; - public static readonly RULE_opt_interval = 577; - public static readonly RULE_interval_second = 578; - public static readonly RULE_opt_escape = 579; - public static readonly RULE_a_expr = 580; - public static readonly RULE_a_expr_qual = 581; - public static readonly RULE_a_expr_lessless = 582; - public static readonly RULE_a_expr_or = 583; - public static readonly RULE_a_expr_and = 584; - public static readonly RULE_a_expr_between = 585; - public static readonly RULE_a_expr_in = 586; - public static readonly RULE_a_expr_unary_not = 587; - public static readonly RULE_a_expr_isnull = 588; - public static readonly RULE_a_expr_is_not = 589; - public static readonly RULE_a_expr_compare = 590; - public static readonly RULE_a_expr_like = 591; - public static readonly RULE_a_expr_qual_op = 592; - public static readonly RULE_a_expr_unary_qualop = 593; - public static readonly RULE_a_expr_add = 594; - public static readonly RULE_a_expr_mul = 595; - public static readonly RULE_a_expr_caret = 596; - public static readonly RULE_a_expr_unary_sign = 597; - public static readonly RULE_a_expr_at_time_zone = 598; - public static readonly RULE_a_expr_collate = 599; - public static readonly RULE_a_expr_typecast = 600; - public static readonly RULE_b_expr = 601; - public static readonly RULE_c_expr = 602; - public static readonly RULE_plsqlvariablename = 603; - public static readonly RULE_func_application = 604; - public static readonly RULE_func_expr = 605; - public static readonly RULE_func_expr_windowless = 606; - public static readonly RULE_func_expr_common_subexpr = 607; - public static readonly RULE_xml_root_version = 608; - public static readonly RULE_opt_xml_root_standalone = 609; - public static readonly RULE_xml_attributes = 610; - public static readonly RULE_xml_attribute_list = 611; - public static readonly RULE_xml_attribute_el = 612; - public static readonly RULE_document_or_content = 613; - public static readonly RULE_xml_whitespace_option = 614; - public static readonly RULE_xmlexists_argument = 615; - public static readonly RULE_xml_passing_mech = 616; - public static readonly RULE_within_group_clause = 617; - public static readonly RULE_filter_clause = 618; - public static readonly RULE_window_clause = 619; - public static readonly RULE_window_definition_list = 620; - public static readonly RULE_window_definition = 621; - public static readonly RULE_over_clause = 622; - public static readonly RULE_window_specification = 623; - public static readonly RULE_opt_existing_window_name = 624; - public static readonly RULE_opt_partition_clause = 625; - public static readonly RULE_opt_frame_clause = 626; - public static readonly RULE_frame_extent = 627; - public static readonly RULE_frame_bound = 628; - public static readonly RULE_opt_window_exclusion_clause = 629; - public static readonly RULE_row = 630; - public static readonly RULE_explicit_row = 631; - public static readonly RULE_implicit_row = 632; - public static readonly RULE_sub_type = 633; - public static readonly RULE_all_op = 634; - public static readonly RULE_mathop = 635; - public static readonly RULE_qual_op = 636; - public static readonly RULE_qual_all_op = 637; - public static readonly RULE_subquery_Op = 638; - public static readonly RULE_expr_list = 639; - public static readonly RULE_func_arg_list = 640; - public static readonly RULE_func_arg_expr = 641; - public static readonly RULE_type_list = 642; - public static readonly RULE_array_expr = 643; - public static readonly RULE_array_expr_list = 644; - public static readonly RULE_extract_list = 645; - public static readonly RULE_extract_arg = 646; - public static readonly RULE_unicode_normal_form = 647; - public static readonly RULE_overlay_list = 648; - public static readonly RULE_position_list = 649; - public static readonly RULE_substr_list = 650; - public static readonly RULE_trim_list = 651; - public static readonly RULE_in_expr = 652; - public static readonly RULE_case_expr = 653; - public static readonly RULE_when_clause_list = 654; - public static readonly RULE_when_clause = 655; - public static readonly RULE_case_default = 656; - public static readonly RULE_case_arg = 657; - public static readonly RULE_columnref = 658; - public static readonly RULE_indirection_el = 659; - public static readonly RULE_opt_slice_bound = 660; - public static readonly RULE_indirection = 661; - public static readonly RULE_opt_indirection = 662; - public static readonly RULE_opt_target_list = 663; - public static readonly RULE_target_list = 664; - public static readonly RULE_target_el = 665; - public static readonly RULE_qualified_name_list = 666; - public static readonly RULE_qualified_name = 667; - public static readonly RULE_name_list = 668; - public static readonly RULE_name = 669; - public static readonly RULE_attr_name = 670; - public static readonly RULE_file_name = 671; - public static readonly RULE_func_name = 672; - public static readonly RULE_aexprconst = 673; - public static readonly RULE_xconst = 674; - public static readonly RULE_bconst = 675; - public static readonly RULE_fconst = 676; - public static readonly RULE_iconst = 677; - public static readonly RULE_sconst = 678; - public static readonly RULE_anysconst = 679; - public static readonly RULE_opt_uescape = 680; - public static readonly RULE_signediconst = 681; - public static readonly RULE_roleid = 682; - public static readonly RULE_rolespec = 683; - public static readonly RULE_role_list = 684; - public static readonly RULE_colid = 685; - public static readonly RULE_table_alias = 686; - public static readonly RULE_type_function_name = 687; - public static readonly RULE_nonreservedword = 688; - public static readonly RULE_collabel = 689; - public static readonly RULE_identifier = 690; - public static readonly RULE_plsqlidentifier = 691; - public static readonly RULE_unreserved_keyword = 692; - public static readonly RULE_col_name_keyword = 693; - public static readonly RULE_type_func_name_keyword = 694; - public static readonly RULE_reserved_keyword = 695; - public static readonly RULE_builtin_function_name = 696; - public static readonly RULE_pl_function = 697; - public static readonly RULE_comp_options = 698; - public static readonly RULE_comp_option = 699; - public static readonly RULE_sharp = 700; - public static readonly RULE_option_value = 701; - public static readonly RULE_opt_semi = 702; - public static readonly RULE_pl_block = 703; - public static readonly RULE_decl_sect = 704; - public static readonly RULE_decl_start = 705; - public static readonly RULE_decl_stmts = 706; - public static readonly RULE_label_decl = 707; - public static readonly RULE_decl_stmt = 708; - public static readonly RULE_decl_statement = 709; - public static readonly RULE_opt_scrollable = 710; - public static readonly RULE_decl_cursor_query = 711; - public static readonly RULE_decl_cursor_args = 712; - public static readonly RULE_decl_cursor_arglist = 713; - public static readonly RULE_decl_cursor_arg = 714; - public static readonly RULE_decl_is_for = 715; - public static readonly RULE_decl_aliasitem = 716; - public static readonly RULE_decl_varname = 717; - public static readonly RULE_decl_const = 718; - public static readonly RULE_decl_datatype = 719; - public static readonly RULE_decl_collate = 720; - public static readonly RULE_decl_notnull = 721; - public static readonly RULE_decl_defval = 722; - public static readonly RULE_decl_defkey = 723; - public static readonly RULE_assign_operator = 724; - public static readonly RULE_proc_sect = 725; - public static readonly RULE_proc_stmt = 726; - public static readonly RULE_stmt_perform = 727; - public static readonly RULE_stmt_call = 728; - public static readonly RULE_opt_expr_list = 729; - public static readonly RULE_stmt_assign = 730; - public static readonly RULE_stmt_getdiag = 731; - public static readonly RULE_getdiag_area_opt = 732; - public static readonly RULE_getdiag_list = 733; - public static readonly RULE_getdiag_list_item = 734; - public static readonly RULE_getdiag_item = 735; - public static readonly RULE_getdiag_target = 736; - public static readonly RULE_assign_var = 737; - public static readonly RULE_stmt_if = 738; - public static readonly RULE_stmt_elsifs = 739; - public static readonly RULE_stmt_else = 740; - public static readonly RULE_stmt_case = 741; - public static readonly RULE_opt_expr_until_when = 742; - public static readonly RULE_case_when_list = 743; - public static readonly RULE_case_when = 744; - public static readonly RULE_opt_case_else = 745; - public static readonly RULE_stmt_loop = 746; - public static readonly RULE_stmt_while = 747; - public static readonly RULE_stmt_for = 748; - public static readonly RULE_for_control = 749; - public static readonly RULE_opt_for_using_expression = 750; - public static readonly RULE_opt_cursor_parameters = 751; - public static readonly RULE_opt_reverse = 752; - public static readonly RULE_opt_by_expression = 753; - public static readonly RULE_for_variable = 754; - public static readonly RULE_stmt_foreach_a = 755; - public static readonly RULE_foreach_slice = 756; - public static readonly RULE_stmt_exit = 757; - public static readonly RULE_exit_type = 758; - public static readonly RULE_stmt_return = 759; - public static readonly RULE_opt_return_result = 760; - public static readonly RULE_stmt_raise = 761; - public static readonly RULE_opt_stmt_raise_level = 762; - public static readonly RULE_opt_raise_list = 763; - public static readonly RULE_opt_raise_using = 764; - public static readonly RULE_opt_raise_using_elem = 765; - public static readonly RULE_opt_raise_using_elem_list = 766; - public static readonly RULE_stmt_assert = 767; - public static readonly RULE_opt_stmt_assert_message = 768; - public static readonly RULE_loop_body = 769; - public static readonly RULE_stmt_execsql = 770; - public static readonly RULE_stmt_dynexecute = 771; - public static readonly RULE_opt_execute_using = 772; - public static readonly RULE_opt_execute_using_list = 773; - public static readonly RULE_opt_execute_into = 774; - public static readonly RULE_stmt_open = 775; - public static readonly RULE_opt_open_bound_list_item = 776; - public static readonly RULE_opt_open_bound_list = 777; - public static readonly RULE_opt_open_using = 778; - public static readonly RULE_opt_scroll_option = 779; - public static readonly RULE_opt_scroll_option_no = 780; - public static readonly RULE_stmt_fetch = 781; - public static readonly RULE_into_target = 782; - public static readonly RULE_opt_cursor_from = 783; - public static readonly RULE_opt_fetch_direction = 784; - public static readonly RULE_stmt_move = 785; - public static readonly RULE_stmt_close = 786; - public static readonly RULE_stmt_null = 787; - public static readonly RULE_stmt_commit = 788; - public static readonly RULE_stmt_rollback = 789; - public static readonly RULE_plsql_opt_transaction_chain = 790; - public static readonly RULE_stmt_set = 791; - public static readonly RULE_cursor_variable = 792; - public static readonly RULE_exception_sect = 793; - public static readonly RULE_proc_exceptions = 794; - public static readonly RULE_proc_exception = 795; - public static readonly RULE_proc_conditions = 796; - public static readonly RULE_proc_condition = 797; - public static readonly RULE_opt_block_label = 798; - public static readonly RULE_opt_loop_label = 799; - public static readonly RULE_opt_label = 800; - public static readonly RULE_opt_exitcond = 801; - public static readonly RULE_any_identifier = 802; - public static readonly RULE_plsql_unreserved_keyword = 803; - public static readonly RULE_sql_expression = 804; - public static readonly RULE_expr_until_then = 805; - public static readonly RULE_expr_until_semi = 806; - public static readonly RULE_expr_until_rightbracket = 807; - public static readonly RULE_expr_until_loop = 808; - public static readonly RULE_make_execsql_stmt = 809; - public static readonly RULE_opt_returning_clause_into = 810; + public static readonly RULE_plsqlRoot = 1; + public static readonly RULE_statements = 2; + public static readonly RULE_statement = 3; + public static readonly RULE_plsqlConsoleCommand = 4; + public static readonly RULE_callStatement = 5; + public static readonly RULE_createRoleStatement = 6; + public static readonly RULE_optionalWith = 7; + public static readonly RULE_optionalRoleList = 8; + public static readonly RULE_alterOptionalRoleList = 9; + public static readonly RULE_alterRoleElemement = 10; + public static readonly RULE_createRoleElement = 11; + public static readonly RULE_createUserStatement = 12; + public static readonly RULE_alterRoleStatement = 13; + public static readonly RULE_optionalInDatabase = 14; + public static readonly RULE_alterRoleSetStatement = 15; + public static readonly RULE_dropRoleStatement = 16; + public static readonly RULE_createGroupStatement = 17; + public static readonly RULE_alterGroupStatement = 18; + public static readonly RULE_addOrDrop = 19; + public static readonly RULE_createSchemaStatement = 20; + public static readonly RULE_optionalSchemaName = 21; + public static readonly RULE_optionalSchemaList = 22; + public static readonly RULE_schemaStatement = 23; + public static readonly RULE_variableSetStatement = 24; + public static readonly RULE_setStatementEnding = 25; + public static readonly RULE_genericSetClause = 26; + public static readonly RULE_setStatementMore = 27; + public static readonly RULE_variableName = 28; + public static readonly RULE_variableList = 29; + public static readonly RULE_variableValue = 30; + public static readonly RULE_isoLevel = 31; + public static readonly RULE_booleanOrString = 32; + public static readonly RULE_zoneValue = 33; + public static readonly RULE_optionalEncoding = 34; + public static readonly RULE_nonReservedWordOrSconst = 35; + public static readonly RULE_variableResetStatement = 36; + public static readonly RULE_resetClauseRest = 37; + public static readonly RULE_genericResetClause = 38; + public static readonly RULE_setResetClause = 39; + public static readonly RULE_functionSetResetClause = 40; + public static readonly RULE_variableShowStatement = 41; + public static readonly RULE_setConstraintsStatement = 42; + public static readonly RULE_constraintsSetList = 43; + public static readonly RULE_constraintsSetMode = 44; + public static readonly RULE_checkpointStatement = 45; + public static readonly RULE_discardStatement = 46; + public static readonly RULE_alterTableStatement = 47; + public static readonly RULE_alterTableCommands = 48; + public static readonly RULE_partitionCommand = 49; + public static readonly RULE_indexPartitionCommand = 50; + public static readonly RULE_alterTableCommand = 51; + public static readonly RULE_alterColumnDefault = 52; + public static readonly RULE_optionalDropBehavior = 53; + public static readonly RULE_optionalCollateClause = 54; + public static readonly RULE_alterUsing = 55; + public static readonly RULE_replicaIdentity = 56; + public static readonly RULE_relOptions = 57; + public static readonly RULE_optionalRelOptions = 58; + public static readonly RULE_relOptionList = 59; + public static readonly RULE_relOptionElem = 60; + public static readonly RULE_alterIdentityColumnOptionList = 61; + public static readonly RULE_alterIdentityColumnOption = 62; + public static readonly RULE_partitionBoundSpecification = 63; + public static readonly RULE_hashPartitionBoundElement = 64; + public static readonly RULE_hashPartitionBound = 65; + public static readonly RULE_alterCompositeTypeStatement = 66; + public static readonly RULE_alterTypeCommands = 67; + public static readonly RULE_alterTypeCommand = 68; + public static readonly RULE_closePortalStatement = 69; + public static readonly RULE_copyStatement = 70; + public static readonly RULE_fromOrTo = 71; + public static readonly RULE_copyFileName = 72; + public static readonly RULE_copyOptions = 73; + public static readonly RULE_copyOptionsItem = 74; + public static readonly RULE_copyDelimiter = 75; + public static readonly RULE_copyGenericOptionList = 76; + public static readonly RULE_copyGenericOptionElem = 77; + public static readonly RULE_copyGenericOptionArgument = 78; + public static readonly RULE_createStatement = 79; + public static readonly RULE_temporaryOption = 80; + public static readonly RULE_optionalTableElementList = 81; + public static readonly RULE_optionalTypedTableElementList = 82; + public static readonly RULE_tableElementList = 83; + public static readonly RULE_typedTableElementList = 84; + public static readonly RULE_tableElement = 85; + public static readonly RULE_typedTableElement = 86; + public static readonly RULE_columnDefinition = 87; + public static readonly RULE_columnOptions = 88; + public static readonly RULE_columnQualifierList = 89; + public static readonly RULE_columnConstraint = 90; + public static readonly RULE_columnConstraintElement = 91; + public static readonly RULE_generatedWhen = 92; + public static readonly RULE_constraintAttribute = 93; + public static readonly RULE_tableLikeClause = 94; + public static readonly RULE_tableLikeOptionList = 95; + public static readonly RULE_tableLikeOption = 96; + public static readonly RULE_tableConstraint = 97; + public static readonly RULE_constraintElement = 98; + public static readonly RULE_columnListWithParentheses = 99; + public static readonly RULE_columnList = 100; + public static readonly RULE_columnElement = 101; + public static readonly RULE_optionalColumnListInclude = 102; + public static readonly RULE_matchClause = 103; + public static readonly RULE_exclusionConstraintList = 104; + public static readonly RULE_exclusionConstraintElement = 105; + public static readonly RULE_exclusionWhereClause = 106; + public static readonly RULE_keyActions = 107; + public static readonly RULE_onKeyUpdateClause = 108; + public static readonly RULE_onKeyDeleteClause = 109; + public static readonly RULE_keyAction = 110; + public static readonly RULE_inheritClause = 111; + public static readonly RULE_optionalPartitionSpecification = 112; + public static readonly RULE_partitionSpecification = 113; + public static readonly RULE_partitionElements = 114; + public static readonly RULE_partitionElement = 115; + public static readonly RULE_optionalTableAccessMethodClause = 116; + public static readonly RULE_with = 117; + public static readonly RULE_onCommitOption = 118; + public static readonly RULE_optionalTablespace = 119; + public static readonly RULE_usingIndexTablespace = 120; + public static readonly RULE_existingIndex = 121; + public static readonly RULE_createStatsStatement = 122; + public static readonly RULE_alterStatsStatement = 123; + public static readonly RULE_createAsStatement = 124; + public static readonly RULE_createAsTarget = 125; + public static readonly RULE_withData = 126; + public static readonly RULE_createMaterializedViewStatement = 127; + public static readonly RULE_createMaterializedViewTarget = 128; + public static readonly RULE_refreshMaterializedViewStatement = 129; + public static readonly RULE_createSequenceStatement = 130; + public static readonly RULE_alterSequenceStatement = 131; + public static readonly RULE_optionalParenthesizedSeqOptionsList = 132; + public static readonly RULE_sequenceOptionList = 133; + public static readonly RULE_sequenceOptionItem = 134; + public static readonly RULE_numericOnly = 135; + public static readonly RULE_numericOnlyList = 136; + public static readonly RULE_createProcedureLangStatement = 137; + public static readonly RULE_handlerName = 138; + public static readonly RULE_optionalInlineHandler = 139; + public static readonly RULE_validatorClause = 140; + public static readonly RULE_optionalProcedural = 141; + public static readonly RULE_createTablespaceStatement = 142; + public static readonly RULE_optionalTablespaceOwner = 143; + public static readonly RULE_dropTablespaceStatement = 144; + public static readonly RULE_createExtensionStatement = 145; + public static readonly RULE_createExtensionOptionItem = 146; + public static readonly RULE_alterExtensionStatement = 147; + public static readonly RULE_alterExtensionOptionItem = 148; + public static readonly RULE_alterExtensionContentsStatement = 149; + public static readonly RULE_createForeignDataWrapperStatement = 150; + public static readonly RULE_forwardOption = 151; + public static readonly RULE_forwardOptions = 152; + public static readonly RULE_alterForeignDataWrapperStatement = 153; + public static readonly RULE_createGenericOptions = 154; + public static readonly RULE_genericOptionList = 155; + public static readonly RULE_alterGenericOptions = 156; + public static readonly RULE_alterGenericOptionList = 157; + public static readonly RULE_alterGenericOptionElem = 158; + public static readonly RULE_genericOptionElement = 159; + public static readonly RULE_genericOptionName = 160; + public static readonly RULE_genericOptionArgument = 161; + public static readonly RULE_createForeignServerStatement = 162; + public static readonly RULE_optionalType = 163; + public static readonly RULE_foreignServerVersion = 164; + public static readonly RULE_alterForeignServerStatement = 165; + public static readonly RULE_createForeignTableStatement = 166; + public static readonly RULE_importForeignSchemaStatement = 167; + public static readonly RULE_importQualificationType = 168; + public static readonly RULE_importQualification = 169; + public static readonly RULE_createUserMappingStatement = 170; + public static readonly RULE_authIdentifier = 171; + public static readonly RULE_dropUserMappingStatement = 172; + public static readonly RULE_alterUserMappingStatement = 173; + public static readonly RULE_createPolicyStatement = 174; + public static readonly RULE_alterPolicyStatement = 175; + public static readonly RULE_rowSecurityOptionalExpression = 176; + public static readonly RULE_rowSecurityOptionalWithCheck = 177; + public static readonly RULE_rowSecurityDefaultToRole = 178; + public static readonly RULE_rowSecurityOptionalToRole = 179; + public static readonly RULE_rowSecurityDefaultPermissive = 180; + public static readonly RULE_rowSecurityDefaultForCmd = 181; + public static readonly RULE_rowSecurityCommand = 182; + public static readonly RULE_createAccessMethodStatement = 183; + public static readonly RULE_accessMethodType = 184; + public static readonly RULE_createTriggerStatement = 185; + public static readonly RULE_triggerActionTime = 186; + public static readonly RULE_triggerEvents = 187; + public static readonly RULE_triggerOneEvent = 188; + public static readonly RULE_triggerReferencing = 189; + public static readonly RULE_triggerTransitions = 190; + public static readonly RULE_triggerTransition = 191; + public static readonly RULE_transitionOldOrNew = 192; + public static readonly RULE_transitionRowOrTable = 193; + public static readonly RULE_transitionRelName = 194; + public static readonly RULE_triggerForSpec = 195; + public static readonly RULE_triggerForType = 196; + public static readonly RULE_triggerWhen = 197; + public static readonly RULE_functionOrProcedure = 198; + public static readonly RULE_triggerFunctionArguments = 199; + public static readonly RULE_triggerFunctionArgument = 200; + public static readonly RULE_optionalConstraintFromTable = 201; + public static readonly RULE_constraintAttributeSpecification = 202; + public static readonly RULE_constraintAttributeElement = 203; + public static readonly RULE_createEventTriggerStatement = 204; + public static readonly RULE_eventTriggerWhenList = 205; + public static readonly RULE_eventTriggerWhenItem = 206; + public static readonly RULE_eventTriggerValueList = 207; + public static readonly RULE_alterEventTriggerStatement = 208; + public static readonly RULE_enableTrigger = 209; + public static readonly RULE_createAssertionStatement = 210; + public static readonly RULE_defineStatement = 211; + public static readonly RULE_definition = 212; + public static readonly RULE_definitionElement = 213; + public static readonly RULE_definitionArgument = 214; + public static readonly RULE_oldAggregateDefinition = 215; + public static readonly RULE_oldAggregateElement = 216; + public static readonly RULE_enumValueList = 217; + public static readonly RULE_alterEnumStatement = 218; + public static readonly RULE_optionalIfNotExists = 219; + public static readonly RULE_createOperatorClassStatement = 220; + public static readonly RULE_operatorClassItemList = 221; + public static readonly RULE_operatorClassItem = 222; + public static readonly RULE_optionalOperatorFamily = 223; + public static readonly RULE_operatorClassPurpose = 224; + public static readonly RULE_createOperatorFamilyStatement = 225; + public static readonly RULE_alterOperatorFamilyStatement = 226; + public static readonly RULE_operatorClassDropList = 227; + public static readonly RULE_operatorClassDrop = 228; + public static readonly RULE_dropOperatorClassStatement = 229; + public static readonly RULE_dropOperatorFamilyStatement = 230; + public static readonly RULE_dropOwnedStatement = 231; + public static readonly RULE_reassignOwnedStatement = 232; + public static readonly RULE_dropStatement = 233; + public static readonly RULE_objectTypeAnyName = 234; + public static readonly RULE_objectTypeName = 235; + public static readonly RULE_dropTypeName = 236; + public static readonly RULE_objectTypeNameOnAnyName = 237; + public static readonly RULE_anyNameList = 238; + public static readonly RULE_anyName = 239; + public static readonly RULE_attributes = 240; + public static readonly RULE_typeNameList = 241; + public static readonly RULE_truncateStatement = 242; + public static readonly RULE_optionalRestartSequences = 243; + public static readonly RULE_commentStatement = 244; + public static readonly RULE_commentText = 245; + public static readonly RULE_securityLabelStatement = 246; + public static readonly RULE_optionalProvider = 247; + public static readonly RULE_securityLabel = 248; + public static readonly RULE_fetchStatement = 249; + public static readonly RULE_fetchArguments = 250; + public static readonly RULE_fromOrIn = 251; + public static readonly RULE_optionalFromOrIn = 252; + public static readonly RULE_grantStatement = 253; + public static readonly RULE_revokeStatement = 254; + public static readonly RULE_privileges = 255; + public static readonly RULE_privilegeList = 256; + public static readonly RULE_privilege = 257; + public static readonly RULE_privilegeTarget = 258; + public static readonly RULE_granteeList = 259; + public static readonly RULE_grantee = 260; + public static readonly RULE_optionalWithGrantOption = 261; + public static readonly RULE_grantRoleStatement = 262; + public static readonly RULE_revokeRoleStatement = 263; + public static readonly RULE_optionalGrantAdminOption = 264; + public static readonly RULE_optionalGrantedBy = 265; + public static readonly RULE_alterDefaultPrivilegesStatement = 266; + public static readonly RULE_defultPrivilegeOption = 267; + public static readonly RULE_defaultPrivelegeAction = 268; + public static readonly RULE_defultPrivilegeTarget = 269; + public static readonly RULE_indexStatement = 270; + public static readonly RULE_optionalConcurrently = 271; + public static readonly RULE_optionalAccessMethodClause = 272; + public static readonly RULE_indexParameters = 273; + public static readonly RULE_indexElemOptions = 274; + public static readonly RULE_indexElement = 275; + public static readonly RULE_optionalInclude = 276; + public static readonly RULE_optionalCollate = 277; + public static readonly RULE_optionalClass = 278; + public static readonly RULE_optionalAscOrDesc = 279; + public static readonly RULE_optionalNullsOrder = 280; + public static readonly RULE_createFunctionStatement = 281; + public static readonly RULE_optionalOrReplace = 282; + public static readonly RULE_functionArgumentsList = 283; + public static readonly RULE_functionWithArgumentTypesList = 284; + public static readonly RULE_functionWithArgumentTypes = 285; + public static readonly RULE_functionArgumentsWithDefaultsList = 286; + public static readonly RULE_functionArgumentWithDefault = 287; + public static readonly RULE_functionArgument = 288; + public static readonly RULE_argumentClass = 289; + public static readonly RULE_parameterName = 290; + public static readonly RULE_functionReturn = 291; + public static readonly RULE_functionType = 292; + public static readonly RULE_aggregateArguments = 293; + public static readonly RULE_aggregateArgumentsList = 294; + public static readonly RULE_aggregateWithArgumentTypes = 295; + public static readonly RULE_aggregateWithArgumentTypesList = 296; + public static readonly RULE_createFunctionOptionList = 297; + public static readonly RULE_commonFunctionOptionItem = 298; + public static readonly RULE_createFunctionOptionItem = 299; + public static readonly RULE_functionAs = 300; + public static readonly RULE_transformTypeList = 301; + public static readonly RULE_optionalDefinition = 302; + public static readonly RULE_tableFunctionColumn = 303; + public static readonly RULE_tableFunctionColumnList = 304; + public static readonly RULE_alterFunctionStatement = 305; + public static readonly RULE_removeFunctionStatement = 306; + public static readonly RULE_removeAggregateStatement = 307; + public static readonly RULE_removeOperatorStatement = 308; + public static readonly RULE_operatorArgumentTypes = 309; + public static readonly RULE_anyOperator = 310; + public static readonly RULE_operatorWithArgumentTypesList = 311; + public static readonly RULE_operatorWithArgumentTypes = 312; + public static readonly RULE_doStatement = 313; + public static readonly RULE_doStatementOptionsList = 314; + public static readonly RULE_doStatementOptionItem = 315; + public static readonly RULE_createCastStatement = 316; + public static readonly RULE_castContext = 317; + public static readonly RULE_dropCastStatement = 318; + public static readonly RULE_optionalIfExists = 319; + public static readonly RULE_createTransformStatement = 320; + public static readonly RULE_transformElementList = 321; + public static readonly RULE_dropTransformStatement = 322; + public static readonly RULE_reindexStatement = 323; + public static readonly RULE_reindexTargetType = 324; + public static readonly RULE_reindexTargetMultiTable = 325; + public static readonly RULE_reindexOptionList = 326; + public static readonly RULE_reindexOptionElement = 327; + public static readonly RULE_alterTablespaceStatement = 328; + public static readonly RULE_renameStatement = 329; + public static readonly RULE_optionalColumn = 330; + public static readonly RULE_optionalSetData = 331; + public static readonly RULE_alterObjectDependsStatement = 332; + public static readonly RULE_alterObjectSchemaStatement = 333; + public static readonly RULE_alterOperatorStatement = 334; + public static readonly RULE_operatorDefinitionList = 335; + public static readonly RULE_operatorDefinitionElement = 336; + public static readonly RULE_operatorDefinitionArgument = 337; + public static readonly RULE_alterTypeStatement = 338; + public static readonly RULE_alterOwnerStatement = 339; + public static readonly RULE_createPublicationStatement = 340; + public static readonly RULE_optionalPublicationForTables = 341; + public static readonly RULE_publicationForTables = 342; + public static readonly RULE_alterPublicationStatement = 343; + public static readonly RULE_createSubscriptionStatement = 344; + public static readonly RULE_publicationNameList = 345; + public static readonly RULE_publicationNameItem = 346; + public static readonly RULE_alterSubscriptionStatement = 347; + public static readonly RULE_dropSubscriptionStatement = 348; + public static readonly RULE_ruleStatement = 349; + public static readonly RULE_ruleActionList = 350; + public static readonly RULE_ruleActionMulti = 351; + public static readonly RULE_ruleActionStatement = 352; + public static readonly RULE_ruleActionStatementOrEmpty = 353; + public static readonly RULE_event = 354; + public static readonly RULE_optionalInstead = 355; + public static readonly RULE_notifyStatement = 356; + public static readonly RULE_notifyPayload = 357; + public static readonly RULE_listenStatement = 358; + public static readonly RULE_unlistenStatement = 359; + public static readonly RULE_transactionStatement = 360; + public static readonly RULE_optionalTransaction = 361; + public static readonly RULE_transactionModeItem = 362; + public static readonly RULE_transactionModeList = 363; + public static readonly RULE_optionalTransactionChain = 364; + public static readonly RULE_viewStatement = 365; + public static readonly RULE_optionalCheckOption = 366; + public static readonly RULE_loadStatement = 367; + public static readonly RULE_createDatabaseStatement = 368; + public static readonly RULE_createDatabaseOptionList = 369; + public static readonly RULE_createDatabaseOptionItem = 370; + public static readonly RULE_createDatabaseOptionName = 371; + public static readonly RULE_alterDatabaseStatement = 372; + public static readonly RULE_alterDatabaseSetStatement = 373; + public static readonly RULE_dropDatabaseStatement = 374; + public static readonly RULE_alterCollationStatement = 375; + public static readonly RULE_alterSystemStatement = 376; + public static readonly RULE_createDomainStatement = 377; + public static readonly RULE_alterDomainStatement = 378; + public static readonly RULE_optionalAs = 379; + public static readonly RULE_altertsDictionaryStatement = 380; + public static readonly RULE_altertsConfigurationStatement = 381; + public static readonly RULE_createConversionStatement = 382; + public static readonly RULE_clusterStatement = 383; + public static readonly RULE_clusterIndexSpecification = 384; + public static readonly RULE_vacuumStatement = 385; + public static readonly RULE_analyzeStatement = 386; + public static readonly RULE_vacuumAnalyzeOptionList = 387; + public static readonly RULE_analyzeKeyword = 388; + public static readonly RULE_vacuumAnalyzeOptionElement = 389; + public static readonly RULE_vacuumAnalyzeOptionName = 390; + public static readonly RULE_vacuumAnalyzeOptionArgument = 391; + public static readonly RULE_optionalVerbose = 392; + public static readonly RULE_optionalNameList = 393; + public static readonly RULE_vacuumRelation = 394; + public static readonly RULE_optionalVacuumRelationList = 395; + public static readonly RULE_explainStatement = 396; + public static readonly RULE_explainableStatement = 397; + public static readonly RULE_explainOptionElement = 398; + public static readonly RULE_explainOptionName = 399; + public static readonly RULE_explainOptionArgument = 400; + public static readonly RULE_prepareStatement = 401; + public static readonly RULE_prepareTypeClause = 402; + public static readonly RULE_preparableStatement = 403; + public static readonly RULE_executeStatement = 404; + public static readonly RULE_executeParameterClause = 405; + public static readonly RULE_deallocateStatement = 406; + public static readonly RULE_insertStatement = 407; + public static readonly RULE_insertTarget = 408; + public static readonly RULE_insertRest = 409; + public static readonly RULE_overrideKind = 410; + public static readonly RULE_insertColumnList = 411; + public static readonly RULE_insertColumnItem = 412; + public static readonly RULE_optionalOnConflict = 413; + public static readonly RULE_optionalConflictExpr = 414; + public static readonly RULE_returningClause = 415; + public static readonly RULE_mergeStatement = 416; + public static readonly RULE_mergeInsertClause = 417; + public static readonly RULE_mergeUpdateClause = 418; + public static readonly RULE_mergeDeleteClause = 419; + public static readonly RULE_deleteStatement = 420; + public static readonly RULE_usingClause = 421; + public static readonly RULE_lockStatement = 422; + public static readonly RULE_optionalLock = 423; + public static readonly RULE_lockType = 424; + public static readonly RULE_optionalNowait = 425; + public static readonly RULE_optionalNowaitOrSkip = 426; + public static readonly RULE_updateStatement = 427; + public static readonly RULE_setClauseList = 428; + public static readonly RULE_setClause = 429; + public static readonly RULE_setTarget = 430; + public static readonly RULE_declareCursorStatement = 431; + public static readonly RULE_cursorName = 432; + public static readonly RULE_optionalHold = 433; + public static readonly RULE_selectStatement = 434; + public static readonly RULE_selectWithParenthesis = 435; + public static readonly RULE_selectWithoutParenthesis = 436; + public static readonly RULE_selectClause = 437; + public static readonly RULE_simpleSelectIntersect = 438; + public static readonly RULE_simpleSelectStart = 439; + public static readonly RULE_simpleSelectPramary = 440; + public static readonly RULE_withClause = 441; + public static readonly RULE_commonTableExpression = 442; + public static readonly RULE_optionalMaterialized = 443; + public static readonly RULE_intoClause = 444; + public static readonly RULE_optionalTemporaryTableName = 445; + public static readonly RULE_optionalTable = 446; + public static readonly RULE_allOrDistinct = 447; + public static readonly RULE_distinctClause = 448; + public static readonly RULE_allClause = 449; + public static readonly RULE_optionalSortClause = 450; + public static readonly RULE_sortClause = 451; + public static readonly RULE_sortByList = 452; + public static readonly RULE_sortBy = 453; + public static readonly RULE_selectLimit = 454; + public static readonly RULE_optionalSelectLimit = 455; + public static readonly RULE_limitClause = 456; + public static readonly RULE_offsetClause = 457; + public static readonly RULE_selectLimitValue = 458; + public static readonly RULE_selectOffsetValue = 459; + public static readonly RULE_selectFetchFirstValue = 460; + public static readonly RULE_anyConst = 461; + public static readonly RULE_rowOrRows = 462; + public static readonly RULE_firstOrNext = 463; + public static readonly RULE_groupClause = 464; + public static readonly RULE_groupByList = 465; + public static readonly RULE_groupByItem = 466; + public static readonly RULE_havingClause = 467; + public static readonly RULE_forLockingClause = 468; + public static readonly RULE_forLockingItem = 469; + public static readonly RULE_forLockingStrength = 470; + public static readonly RULE_lockedRelationsList = 471; + public static readonly RULE_valuesClause = 472; + public static readonly RULE_fromClause = 473; + public static readonly RULE_fromList = 474; + public static readonly RULE_nonAnsiJoin = 475; + public static readonly RULE_tableReference = 476; + public static readonly RULE_aliasClause = 477; + public static readonly RULE_optionalAliasClause = 478; + public static readonly RULE_tableAliasClause = 479; + public static readonly RULE_functionAliasClause = 480; + public static readonly RULE_joinType = 481; + public static readonly RULE_joinQualifier = 482; + public static readonly RULE_relationExpression = 483; + public static readonly RULE_relationExpressionList = 484; + public static readonly RULE_relationExpressionOptionalAlias = 485; + public static readonly RULE_tableSampleClause = 486; + public static readonly RULE_functionTable = 487; + public static readonly RULE_rowsFromItem = 488; + public static readonly RULE_optionalColumnDefinitionList = 489; + public static readonly RULE_optionalOrdinality = 490; + public static readonly RULE_whereClause = 491; + public static readonly RULE_whereOrCurrentClause = 492; + public static readonly RULE_optionalTableFunctionElementList = 493; + public static readonly RULE_tableFunctionElementList = 494; + public static readonly RULE_tableFunctionElement = 495; + public static readonly RULE_xmlTable = 496; + public static readonly RULE_xmlTableColumnElement = 497; + public static readonly RULE_xmlTableColumnOptionList = 498; + public static readonly RULE_xmlTableColumnOptionElement = 499; + public static readonly RULE_xmlNamespaceList = 500; + public static readonly RULE_xmlNamespaceElement = 501; + public static readonly RULE_typeName = 502; + public static readonly RULE_simpleTypeName = 503; + public static readonly RULE_constTypeName = 504; + public static readonly RULE_genericType = 505; + public static readonly RULE_optionalTypeModifiers = 506; + public static readonly RULE_numeric = 507; + public static readonly RULE_optionalFloat = 508; + public static readonly RULE_bit = 509; + public static readonly RULE_constBit = 510; + public static readonly RULE_bitWithLength = 511; + public static readonly RULE_bitWithoutLength = 512; + public static readonly RULE_character = 513; + public static readonly RULE_constCharacter = 514; + public static readonly RULE_characterChar = 515; + public static readonly RULE_optionalVarying = 516; + public static readonly RULE_constDateTime = 517; + public static readonly RULE_constInterval = 518; + public static readonly RULE_optionalTimezone = 519; + public static readonly RULE_optionalInterval = 520; + public static readonly RULE_intervalSecond = 521; + public static readonly RULE_optionalEscape = 522; + public static readonly RULE_expression1 = 523; + public static readonly RULE_expression1Qualifier = 524; + public static readonly RULE_expression1LessLess = 525; + public static readonly RULE_expression1Or = 526; + public static readonly RULE_expression1And = 527; + public static readonly RULE_expression1Between = 528; + public static readonly RULE_expression1In = 529; + public static readonly RULE_expression1UnaryNot = 530; + public static readonly RULE_expression1IsNull = 531; + public static readonly RULE_expression1IsNot = 532; + public static readonly RULE_expression1Compare = 533; + public static readonly RULE_expression1Like = 534; + public static readonly RULE_expression1qualifierOperator = 535; + public static readonly RULE_expression1UnaryQualifierOperator = 536; + public static readonly RULE_expression1Add = 537; + public static readonly RULE_expressionMultiply = 538; + public static readonly RULE_expression1Caret = 539; + public static readonly RULE_expression1UnarySign = 540; + public static readonly RULE_expression1AtTimeZone = 541; + public static readonly RULE_expression1Collate = 542; + public static readonly RULE_expression1Typecast = 543; + public static readonly RULE_expression2 = 544; + public static readonly RULE_expression3 = 545; + public static readonly RULE_plsqlVariableName = 546; + public static readonly RULE_functionApplication = 547; + public static readonly RULE_functionExpression = 548; + public static readonly RULE_functionExpressionWindowless = 549; + public static readonly RULE_functionExpressionCommonSubexpr = 550; + public static readonly RULE_xmlRootVersion = 551; + public static readonly RULE_optionalXmlRootStandalone = 552; + public static readonly RULE_xmlAttributes = 553; + public static readonly RULE_xmlAttributeList = 554; + public static readonly RULE_xmlAttributeElement = 555; + public static readonly RULE_documentOrContent = 556; + public static readonly RULE_xmlWhitespaceOption = 557; + public static readonly RULE_xmlExistsArgument = 558; + public static readonly RULE_xmlPassingMech = 559; + public static readonly RULE_withinGroupClause = 560; + public static readonly RULE_filterClause = 561; + public static readonly RULE_windowClause = 562; + public static readonly RULE_windowDefinitionList = 563; + public static readonly RULE_windowDefinition = 564; + public static readonly RULE_overClause = 565; + public static readonly RULE_windowSpecification = 566; + public static readonly RULE_optionalExistingWindowName = 567; + public static readonly RULE_optionalPartitionClause = 568; + public static readonly RULE_optionalFrameClause = 569; + public static readonly RULE_frameExtent = 570; + public static readonly RULE_frameBound = 571; + public static readonly RULE_optionalWindowExclusionClause = 572; + public static readonly RULE_row = 573; + public static readonly RULE_explicitRow = 574; + public static readonly RULE_implicitRow = 575; + public static readonly RULE_subType = 576; + public static readonly RULE_allOperator = 577; + public static readonly RULE_mathOperator = 578; + public static readonly RULE_operatorQualifier = 579; + public static readonly RULE_allOperatorQualifier = 580; + public static readonly RULE_subqueryOperator = 581; + public static readonly RULE_expressionList = 582; + public static readonly RULE_functionArgumentList = 583; + public static readonly RULE_functionArgumentExpression = 584; + public static readonly RULE_typeList = 585; + public static readonly RULE_arrayExpression = 586; + public static readonly RULE_arrayExpressionList = 587; + public static readonly RULE_extractList = 588; + public static readonly RULE_extractArgument = 589; + public static readonly RULE_unicodeNormalForm = 590; + public static readonly RULE_overlayList = 591; + public static readonly RULE_positionList = 592; + public static readonly RULE_substrList = 593; + public static readonly RULE_trimList = 594; + public static readonly RULE_inExpression = 595; + public static readonly RULE_caseExpression = 596; + public static readonly RULE_whenClauseList = 597; + public static readonly RULE_whenClause = 598; + public static readonly RULE_caseDefault = 599; + public static readonly RULE_caseArg = 600; + public static readonly RULE_columnReference = 601; + public static readonly RULE_indirectionElement = 602; + public static readonly RULE_indirection = 603; + public static readonly RULE_optionalIndirection = 604; + public static readonly RULE_optionalTargetList = 605; + public static readonly RULE_targetList = 606; + public static readonly RULE_targetElement = 607; + public static readonly RULE_qualifiedNameList = 608; + public static readonly RULE_qualifiedName = 609; + public static readonly RULE_nameList = 610; + public static readonly RULE_name = 611; + public static readonly RULE_attributeName = 612; + public static readonly RULE_fileName = 613; + public static readonly RULE_functionName = 614; + public static readonly RULE_aExpressionConst = 615; + public static readonly RULE_xconst = 616; + public static readonly RULE_bconst = 617; + public static readonly RULE_fconst = 618; + public static readonly RULE_iconst = 619; + public static readonly RULE_sconst = 620; + public static readonly RULE_anySconst = 621; + public static readonly RULE_optionalUescape = 622; + public static readonly RULE_signedIconst = 623; + public static readonly RULE_roleId = 624; + public static readonly RULE_roleSpecification = 625; + public static readonly RULE_roleList = 626; + public static readonly RULE_columnId = 627; + public static readonly RULE_tableAlias = 628; + public static readonly RULE_typeFunctionName = 629; + public static readonly RULE_nonReservedWord = 630; + public static readonly RULE_columnLabel = 631; + public static readonly RULE_identifier = 632; + public static readonly RULE_plsqlIdentifier = 633; + public static readonly RULE_unreservedKeyword = 634; + public static readonly RULE_columnNameKeyword = 635; + public static readonly RULE_typeFunctionNameKeyword = 636; + public static readonly RULE_reservedKeyword = 637; + public static readonly RULE_builtinFunctionName = 638; + public static readonly RULE_plsqlFunction = 639; + public static readonly RULE_computeOptions = 640; + public static readonly RULE_computeOption = 641; + public static readonly RULE_sharp = 642; + public static readonly RULE_optionValue = 643; + public static readonly RULE_optionalSemi = 644; + public static readonly RULE_plsqlBlock = 645; + public static readonly RULE_declareSection = 646; + public static readonly RULE_declareStart = 647; + public static readonly RULE_declareStatements = 648; + public static readonly RULE_labelDeclaration = 649; + public static readonly RULE_declareStatement = 650; + public static readonly RULE_declareStatement2 = 651; + public static readonly RULE_optionalScrollable = 652; + public static readonly RULE_declareCursorQuery = 653; + public static readonly RULE_declareCursorArgs = 654; + public static readonly RULE_declareCursorArglist = 655; + public static readonly RULE_declareCursorArg = 656; + public static readonly RULE_declareIsOrFor = 657; + public static readonly RULE_declareAliasItem = 658; + public static readonly RULE_declareVarname = 659; + public static readonly RULE_declareConst = 660; + public static readonly RULE_declareDatatype = 661; + public static readonly RULE_declareCollate = 662; + public static readonly RULE_declareNotNull = 663; + public static readonly RULE_declareDefaultValue = 664; + public static readonly RULE_declareDefaultKey = 665; + public static readonly RULE_assignOperator = 666; + public static readonly RULE_procedureSection = 667; + public static readonly RULE_proceduralStatement = 668; + public static readonly RULE_statementPerform = 669; + public static readonly RULE_statementCall = 670; + public static readonly RULE_optionalExpressionList = 671; + public static readonly RULE_statementAssign = 672; + public static readonly RULE_statementGetDiagram = 673; + public static readonly RULE_optionalGetDiagramArea = 674; + public static readonly RULE_getDiagramList = 675; + public static readonly RULE_getDiagramListItem = 676; + public static readonly RULE_getDiagramItem = 677; + public static readonly RULE_getDiagramTarget = 678; + public static readonly RULE_assignVariable = 679; + public static readonly RULE_statementIf = 680; + public static readonly RULE_statementElsifs = 681; + public static readonly RULE_statementElse = 682; + public static readonly RULE_statementCase = 683; + public static readonly RULE_optionalExpressionUntilWhen = 684; + public static readonly RULE_caseWhenList = 685; + public static readonly RULE_caseWhen = 686; + public static readonly RULE_optionalCaseElse = 687; + public static readonly RULE_statementLoop = 688; + public static readonly RULE_statementWhile = 689; + public static readonly RULE_statementFor = 690; + public static readonly RULE_forControl = 691; + public static readonly RULE_optionalForUsingExpression = 692; + public static readonly RULE_optionalCursorParameters = 693; + public static readonly RULE_optionalReverse = 694; + public static readonly RULE_optionalByExpression = 695; + public static readonly RULE_forVariable = 696; + public static readonly RULE_statementForeachA = 697; + public static readonly RULE_foreachSlice = 698; + public static readonly RULE_statementExit = 699; + public static readonly RULE_exitType = 700; + public static readonly RULE_statementReturn = 701; + public static readonly RULE_optionalReturnResult = 702; + public static readonly RULE_statementRaise = 703; + public static readonly RULE_optionalStatementRaiseLevel = 704; + public static readonly RULE_optionalRaiseList = 705; + public static readonly RULE_optionalRaiseUsing = 706; + public static readonly RULE_optionalRaiseUsingElement = 707; + public static readonly RULE_statementAssert = 708; + public static readonly RULE_optionalStatementAssertMessage = 709; + public static readonly RULE_loopBody = 710; + public static readonly RULE_statementExecSql = 711; + public static readonly RULE_statementDynExecute = 712; + public static readonly RULE_optionalExecuteUsing = 713; + public static readonly RULE_optionalExecuteUsingList = 714; + public static readonly RULE_optionalExecuteInto = 715; + public static readonly RULE_statementOpen = 716; + public static readonly RULE_optionalOpenBoundListItem = 717; + public static readonly RULE_statementFetch = 718; + public static readonly RULE_intoTarget = 719; + public static readonly RULE_optionalCursorFrom = 720; + public static readonly RULE_optionalFetchDirection = 721; + public static readonly RULE_statementMove = 722; + public static readonly RULE_statementClose = 723; + public static readonly RULE_statementNull = 724; + public static readonly RULE_statementCommit = 725; + public static readonly RULE_statementRollback = 726; + public static readonly RULE_plsqlOptionalTransactionChain = 727; + public static readonly RULE_statementSet = 728; + public static readonly RULE_cursorVariable = 729; + public static readonly RULE_exceptionSection = 730; + public static readonly RULE_procedureExceptions = 731; + public static readonly RULE_procedureException = 732; + public static readonly RULE_procedureConditions = 733; + public static readonly RULE_procedureCondition = 734; + public static readonly RULE_optionalBlockLabel = 735; + public static readonly RULE_optionalLoopLabel = 736; + public static readonly RULE_optionalLabel = 737; + public static readonly RULE_optionalExitCondition = 738; + public static readonly RULE_anyIdentifier = 739; + public static readonly RULE_plsqlUnreservedKeyword = 740; + public static readonly RULE_sqlExpression = 741; + public static readonly RULE_expressionUntilThen = 742; + public static readonly RULE_expressionUntilSemi = 743; + public static readonly RULE_expressionUntilRightbracket = 744; + public static readonly RULE_expressionUntilLoop = 745; + public static readonly RULE_makeExecuteSqlStatement = 746; + public static readonly RULE_optionalReturningClauseInto = 747; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1756,211 +1693,219 @@ export class PostgreSqlParser extends PostgreSqlParserBase { "EndDollarStringConstant", "AfterEscapeStringConstantWithNewlineMode_Continued" ]; public static readonly ruleNames = [ - "root", "plsqlroot", "stmtmulti", "stmt", "plsqlconsolecommand", - "callstmt", "createrolestmt", "opt_with", "optrolelist", "alteroptrolelist", - "alteroptroleelem", "createoptroleelem", "createuserstmt", "alterrolestmt", - "opt_in_database", "alterrolesetstmt", "droprolestmt", "creategroupstmt", - "altergroupstmt", "add_drop", "createschemastmt", "optschemaname", - "optschemaeltlist", "schema_stmt", "variablesetstmt", "set_rest", - "generic_set", "set_rest_more", "var_name", "var_list", "var_value", - "iso_level", "opt_boolean_or_string", "zone_value", "opt_encoding", - "nonreservedword_or_sconst", "variableresetstmt", "reset_rest", - "generic_reset", "setresetclause", "functionsetresetclause", "variableshowstmt", - "constraintssetstmt", "constraints_set_list", "constraints_set_mode", - "checkpointstmt", "discardstmt", "altertablestmt", "alter_table_cmds", - "partition_cmd", "index_partition_cmd", "alter_table_cmd", "alter_column_default", - "opt_drop_behavior", "opt_collate_clause", "alter_using", "replica_identity", - "reloptions", "opt_reloptions", "reloption_list", "reloption_elem", - "alter_identity_column_option_list", "alter_identity_column_option", - "partitionboundspec", "hash_partbound_elem", "hash_partbound", "altercompositetypestmt", - "alter_type_cmds", "alter_type_cmd", "closeportalstmt", "copystmt", - "copy_from", "opt_program", "copy_file_name", "copy_options", "copy_opt_list", - "copy_opt_item", "opt_binary", "copy_delimiter", "opt_using", "copy_generic_opt_list", - "copy_generic_opt_elem", "copy_generic_opt_arg", "copy_generic_opt_arg_list", - "copy_generic_opt_arg_list_item", "createstmt", "opttemp", "opttableelementlist", - "opttypedtableelementlist", "tableelementlist", "typedtableelementlist", - "tableelement", "typedtableelement", "columnDef", "columnOptions", - "colquallist", "colconstraint", "colconstraintelem", "generated_when", - "constraintattr", "tablelikeclause", "tablelikeoptionlist", "tablelikeoption", - "tableconstraint", "constraintelem", "opt_no_inherit", "opt_column_list", - "columnlist", "columnElem", "opt_c_include", "key_match", "exclusionconstraintlist", - "exclusionconstraintelem", "exclusionwhereclause", "key_actions", - "key_update", "key_delete", "key_action", "optinherit", "optpartitionspec", - "partitionspec", "part_params", "part_elem", "table_access_method_clause", - "optwith", "oncommitoption", "opttablespace", "optconstablespace", - "existingindex", "createstatsstmt", "alterstatsstmt", "createasstmt", - "create_as_target", "opt_with_data", "creatematviewstmt", "create_mv_target", - "optnolog", "refreshmatviewstmt", "createseqstmt", "alterseqstmt", - "optseqoptlist", "optparenthesizedseqoptlist", "seqoptlist", "seqoptelem", - "opt_by", "numericonly", "numericonly_list", "createplangstmt", - "opt_trusted", "handler_name", "opt_inline_handler", "validator_clause", - "opt_validator", "opt_procedural", "createtablespacestmt", "opttablespaceowner", - "droptablespacestmt", "createextensionstmt", "create_extension_opt_list", - "create_extension_opt_item", "alterextensionstmt", "alter_extension_opt_list", - "alter_extension_opt_item", "alterextensioncontentsstmt", "createfdwstmt", - "fdw_option", "fdw_options", "opt_fdw_options", "alterfdwstmt", - "create_generic_options", "generic_option_list", "alter_generic_options", - "alter_generic_option_list", "alter_generic_option_elem", "generic_option_elem", - "generic_option_name", "generic_option_arg", "createforeignserverstmt", - "opt_type", "foreign_server_version", "opt_foreign_server_version", - "alterforeignserverstmt", "createforeigntablestmt", "importforeignschemastmt", - "import_qualification_type", "import_qualification", "createusermappingstmt", - "auth_ident", "dropusermappingstmt", "alterusermappingstmt", "createpolicystmt", - "alterpolicystmt", "rowsecurityoptionalexpr", "rowsecurityoptionalwithcheck", - "rowsecuritydefaulttorole", "rowsecurityoptionaltorole", "rowsecuritydefaultpermissive", - "rowsecuritydefaultforcmd", "row_security_cmd", "createamstmt", - "am_type", "createtrigstmt", "triggeractiontime", "triggerevents", - "triggeroneevent", "triggerreferencing", "triggertransitions", "triggertransition", - "transitionoldornew", "transitionrowortable", "transitionrelname", - "triggerforspec", "triggerforopteach", "triggerfortype", "triggerwhen", - "function_or_procedure", "triggerfuncargs", "triggerfuncarg", "optconstrfromtable", - "constraintattributespec", "constraintattributeElem", "createeventtrigstmt", - "event_trigger_when_list", "event_trigger_when_item", "event_trigger_value_list", - "altereventtrigstmt", "enable_trigger", "createassertionstmt", "definestmt", - "definition", "def_list", "def_elem", "def_arg", "old_aggr_definition", - "old_aggr_list", "old_aggr_elem", "opt_enum_val_list", "enum_val_list", - "alterenumstmt", "opt_if_not_exists", "createopclassstmt", "opclass_item_list", - "opclass_item", "opt_default", "opt_opfamily", "opclass_purpose", - "opt_recheck", "createopfamilystmt", "alteropfamilystmt", "opclass_drop_list", - "opclass_drop", "dropopclassstmt", "dropopfamilystmt", "dropownedstmt", - "reassignownedstmt", "dropstmt", "object_type_any_name", "object_type_name", - "drop_type_name", "object_type_name_on_any_name", "any_name_list", - "any_name", "attrs", "type_name_list", "truncatestmt", "opt_restart_seqs", - "commentstmt", "comment_text", "seclabelstmt", "opt_provider", "security_label", - "fetchstmt", "fetch_args", "from_in", "opt_from_in", "grantstmt", - "revokestmt", "privileges", "privilege_list", "privilege", "privilege_target", - "grantee_list", "grantee", "opt_grant_grant_option", "grantrolestmt", - "revokerolestmt", "opt_grant_admin_option", "opt_granted_by", "alterdefaultprivilegesstmt", - "defacloptionlist", "defacloption", "defaclaction", "defacl_privilege_target", - "indexstmt", "opt_unique", "opt_concurrently", "opt_index_name", - "access_method_clause", "index_params", "index_elem_options", "index_elem", - "opt_include", "index_including_params", "opt_collate", "opt_class", - "opt_asc_desc", "opt_nulls_order", "createfunctionstmt", "opt_or_replace", - "func_args", "func_args_list", "function_with_argtypes_list", "function_with_argtypes", - "func_args_with_defaults", "func_args_with_defaults_list", "func_arg", - "arg_class", "param_name", "func_return", "func_type", "func_arg_with_default", - "aggr_arg", "aggr_args", "aggr_args_list", "aggregate_with_argtypes", - "aggregate_with_argtypes_list", "createfunc_opt_list", "common_func_opt_item", - "createfunc_opt_item", "func_as", "transform_type_list", "opt_definition", - "table_func_column", "table_func_column_list", "alterfunctionstmt", - "alterfunc_opt_list", "opt_restrict", "removefuncstmt", "removeaggrstmt", - "removeoperstmt", "oper_argtypes", "any_operator", "operator_with_argtypes_list", - "operator_with_argtypes", "dostmt", "dostmt_opt_list", "dostmt_opt_item", - "createcaststmt", "cast_context", "dropcaststmt", "opt_if_exists", - "createtransformstmt", "transform_element_list", "droptransformstmt", - "reindexstmt", "reindex_target_type", "reindex_target_multitable", - "reindex_option_list", "reindex_option_elem", "altertblspcstmt", - "renamestmt", "opt_column", "opt_set_data", "alterobjectdependsstmt", - "opt_no", "alterobjectschemastmt", "alteroperatorstmt", "operator_def_list", - "operator_def_elem", "operator_def_arg", "altertypestmt", "alterownerstmt", - "createpublicationstmt", "opt_publication_for_tables", "publication_for_tables", - "alterpublicationstmt", "createsubscriptionstmt", "publication_name_list", - "publication_name_item", "altersubscriptionstmt", "dropsubscriptionstmt", - "rulestmt", "ruleactionlist", "ruleactionmulti", "ruleactionstmt", - "ruleactionstmtOrEmpty", "event", "opt_instead", "notifystmt", "notify_payload", - "listenstmt", "unlistenstmt", "transactionstmt", "opt_transaction", - "transaction_mode_item", "transaction_mode_list", "transaction_mode_list_or_empty", - "opt_transaction_chain", "viewstmt", "opt_check_option", "loadstmt", - "createdbstmt", "createdb_opt_list", "createdb_opt_items", "createdb_opt_item", - "createdb_opt_name", "opt_equal", "alterdatabasestmt", "alterdatabasesetstmt", - "dropdbstmt", "drop_option_list", "drop_option", "altercollationstmt", - "altersystemstmt", "createdomainstmt", "alterdomainstmt", "opt_as", - "altertsdictionarystmt", "altertsconfigurationstmt", "any_with", - "createconversionstmt", "clusterstmt", "cluster_index_specification", - "vacuumstmt", "analyzestmt", "vac_analyze_option_list", "analyze_keyword", - "vac_analyze_option_elem", "vac_analyze_option_name", "vac_analyze_option_arg", - "opt_analyze", "opt_verbose", "opt_full", "opt_freeze", "opt_name_list", - "vacuum_relation", "vacuum_relation_list", "opt_vacuum_relation_list", - "explainstmt", "explainablestmt", "explain_option_list", "explain_option_elem", - "explain_option_name", "explain_option_arg", "preparestmt", "prep_type_clause", - "preparablestmt", "executestmt", "execute_param_clause", "deallocatestmt", - "insertstmt", "insert_target", "insert_rest", "override_kind", "insert_column_list", - "insert_column_item", "opt_on_conflict", "opt_conf_expr", "returning_clause", - "mergestmt", "merge_insert_clause", "merge_update_clause", "merge_delete_clause", - "deletestmt", "using_clause", "lockstmt", "opt_lock", "lock_type", - "opt_nowait", "opt_nowait_or_skip", "updatestmt", "set_clause_list", - "set_clause", "set_target", "set_target_list", "declarecursorstmt", - "cursor_name", "cursor_options", "opt_hold", "selectstmt", "select_with_parens", - "select_no_parens", "select_clause", "simple_select_intersect", - "simple_select_start", "simple_select_pramary", "with_clause", "cte_list", - "common_table_expr", "opt_materialized", "into_clause", "opt_strict", - "opttempTableName", "opt_table", "all_or_distinct", "distinct_clause", - "all_clause", "opt_sort_clause", "sort_clause", "sortby_list", "sortby", - "select_limit", "opt_select_limit", "limit_clause", "offset_clause", - "select_limit_value", "select_offset_value", "select_fetch_first_value", - "i_or_f_const", "row_or_rows", "first_or_next", "group_clause", - "group_by_list", "group_by_item", "empty_grouping_set", "rollup_clause", - "cube_clause", "grouping_sets_clause", "having_clause", "for_locking_clause", - "opt_for_locking_clause", "for_locking_items", "for_locking_item", - "for_locking_strength", "locked_rels_list", "values_clause", "from_clause", - "from_list", "non_ansi_join", "table_ref", "alias_clause", "opt_alias_clause", - "table_alias_clause", "func_alias_clause", "join_type", "join_qual", - "relation_expr", "relation_expr_list", "relation_expr_opt_alias", - "tablesample_clause", "opt_repeatable_clause", "func_table", "rowsfrom_item", - "rowsfrom_list", "opt_col_def_list", "opt_ordinality", "where_clause", - "where_or_current_clause", "opttablefuncelementlist", "tablefuncelementlist", - "tablefuncelement", "xmltable", "xmltable_column_list", "xmltable_column_el", - "xmltable_column_option_list", "xmltable_column_option_el", "xml_namespace_list", - "xml_namespace_el", "typename", "opt_array_bounds", "simpletypename", - "consttypename", "generictype", "opt_type_modifiers", "numeric", - "opt_float", "bit", "constbit", "bitwithlength", "bitwithoutlength", - "character", "constcharacter", "character_c", "opt_varying", "constdatetime", - "constinterval", "opt_timezone", "opt_interval", "interval_second", - "opt_escape", "a_expr", "a_expr_qual", "a_expr_lessless", "a_expr_or", - "a_expr_and", "a_expr_between", "a_expr_in", "a_expr_unary_not", - "a_expr_isnull", "a_expr_is_not", "a_expr_compare", "a_expr_like", - "a_expr_qual_op", "a_expr_unary_qualop", "a_expr_add", "a_expr_mul", - "a_expr_caret", "a_expr_unary_sign", "a_expr_at_time_zone", "a_expr_collate", - "a_expr_typecast", "b_expr", "c_expr", "plsqlvariablename", "func_application", - "func_expr", "func_expr_windowless", "func_expr_common_subexpr", - "xml_root_version", "opt_xml_root_standalone", "xml_attributes", - "xml_attribute_list", "xml_attribute_el", "document_or_content", - "xml_whitespace_option", "xmlexists_argument", "xml_passing_mech", - "within_group_clause", "filter_clause", "window_clause", "window_definition_list", - "window_definition", "over_clause", "window_specification", "opt_existing_window_name", - "opt_partition_clause", "opt_frame_clause", "frame_extent", "frame_bound", - "opt_window_exclusion_clause", "row", "explicit_row", "implicit_row", - "sub_type", "all_op", "mathop", "qual_op", "qual_all_op", "subquery_Op", - "expr_list", "func_arg_list", "func_arg_expr", "type_list", "array_expr", - "array_expr_list", "extract_list", "extract_arg", "unicode_normal_form", - "overlay_list", "position_list", "substr_list", "trim_list", "in_expr", - "case_expr", "when_clause_list", "when_clause", "case_default", - "case_arg", "columnref", "indirection_el", "opt_slice_bound", "indirection", - "opt_indirection", "opt_target_list", "target_list", "target_el", - "qualified_name_list", "qualified_name", "name_list", "name", "attr_name", - "file_name", "func_name", "aexprconst", "xconst", "bconst", "fconst", - "iconst", "sconst", "anysconst", "opt_uescape", "signediconst", - "roleid", "rolespec", "role_list", "colid", "table_alias", "type_function_name", - "nonreservedword", "collabel", "identifier", "plsqlidentifier", - "unreserved_keyword", "col_name_keyword", "type_func_name_keyword", - "reserved_keyword", "builtin_function_name", "pl_function", "comp_options", - "comp_option", "sharp", "option_value", "opt_semi", "pl_block", - "decl_sect", "decl_start", "decl_stmts", "label_decl", "decl_stmt", - "decl_statement", "opt_scrollable", "decl_cursor_query", "decl_cursor_args", - "decl_cursor_arglist", "decl_cursor_arg", "decl_is_for", "decl_aliasitem", - "decl_varname", "decl_const", "decl_datatype", "decl_collate", "decl_notnull", - "decl_defval", "decl_defkey", "assign_operator", "proc_sect", "proc_stmt", - "stmt_perform", "stmt_call", "opt_expr_list", "stmt_assign", "stmt_getdiag", - "getdiag_area_opt", "getdiag_list", "getdiag_list_item", "getdiag_item", - "getdiag_target", "assign_var", "stmt_if", "stmt_elsifs", "stmt_else", - "stmt_case", "opt_expr_until_when", "case_when_list", "case_when", - "opt_case_else", "stmt_loop", "stmt_while", "stmt_for", "for_control", - "opt_for_using_expression", "opt_cursor_parameters", "opt_reverse", - "opt_by_expression", "for_variable", "stmt_foreach_a", "foreach_slice", - "stmt_exit", "exit_type", "stmt_return", "opt_return_result", "stmt_raise", - "opt_stmt_raise_level", "opt_raise_list", "opt_raise_using", "opt_raise_using_elem", - "opt_raise_using_elem_list", "stmt_assert", "opt_stmt_assert_message", - "loop_body", "stmt_execsql", "stmt_dynexecute", "opt_execute_using", - "opt_execute_using_list", "opt_execute_into", "stmt_open", "opt_open_bound_list_item", - "opt_open_bound_list", "opt_open_using", "opt_scroll_option", "opt_scroll_option_no", - "stmt_fetch", "into_target", "opt_cursor_from", "opt_fetch_direction", - "stmt_move", "stmt_close", "stmt_null", "stmt_commit", "stmt_rollback", - "plsql_opt_transaction_chain", "stmt_set", "cursor_variable", "exception_sect", - "proc_exceptions", "proc_exception", "proc_conditions", "proc_condition", - "opt_block_label", "opt_loop_label", "opt_label", "opt_exitcond", - "any_identifier", "plsql_unreserved_keyword", "sql_expression", - "expr_until_then", "expr_until_semi", "expr_until_rightbracket", - "expr_until_loop", "make_execsql_stmt", "opt_returning_clause_into", + "root", "plsqlRoot", "statements", "statement", "plsqlConsoleCommand", + "callStatement", "createRoleStatement", "optionalWith", "optionalRoleList", + "alterOptionalRoleList", "alterRoleElemement", "createRoleElement", + "createUserStatement", "alterRoleStatement", "optionalInDatabase", + "alterRoleSetStatement", "dropRoleStatement", "createGroupStatement", + "alterGroupStatement", "addOrDrop", "createSchemaStatement", "optionalSchemaName", + "optionalSchemaList", "schemaStatement", "variableSetStatement", + "setStatementEnding", "genericSetClause", "setStatementMore", "variableName", + "variableList", "variableValue", "isoLevel", "booleanOrString", + "zoneValue", "optionalEncoding", "nonReservedWordOrSconst", "variableResetStatement", + "resetClauseRest", "genericResetClause", "setResetClause", "functionSetResetClause", + "variableShowStatement", "setConstraintsStatement", "constraintsSetList", + "constraintsSetMode", "checkpointStatement", "discardStatement", + "alterTableStatement", "alterTableCommands", "partitionCommand", + "indexPartitionCommand", "alterTableCommand", "alterColumnDefault", + "optionalDropBehavior", "optionalCollateClause", "alterUsing", "replicaIdentity", + "relOptions", "optionalRelOptions", "relOptionList", "relOptionElem", + "alterIdentityColumnOptionList", "alterIdentityColumnOption", "partitionBoundSpecification", + "hashPartitionBoundElement", "hashPartitionBound", "alterCompositeTypeStatement", + "alterTypeCommands", "alterTypeCommand", "closePortalStatement", + "copyStatement", "fromOrTo", "copyFileName", "copyOptions", "copyOptionsItem", + "copyDelimiter", "copyGenericOptionList", "copyGenericOptionElem", + "copyGenericOptionArgument", "createStatement", "temporaryOption", + "optionalTableElementList", "optionalTypedTableElementList", "tableElementList", + "typedTableElementList", "tableElement", "typedTableElement", "columnDefinition", + "columnOptions", "columnQualifierList", "columnConstraint", "columnConstraintElement", + "generatedWhen", "constraintAttribute", "tableLikeClause", "tableLikeOptionList", + "tableLikeOption", "tableConstraint", "constraintElement", "columnListWithParentheses", + "columnList", "columnElement", "optionalColumnListInclude", "matchClause", + "exclusionConstraintList", "exclusionConstraintElement", "exclusionWhereClause", + "keyActions", "onKeyUpdateClause", "onKeyDeleteClause", "keyAction", + "inheritClause", "optionalPartitionSpecification", "partitionSpecification", + "partitionElements", "partitionElement", "optionalTableAccessMethodClause", + "with", "onCommitOption", "optionalTablespace", "usingIndexTablespace", + "existingIndex", "createStatsStatement", "alterStatsStatement", + "createAsStatement", "createAsTarget", "withData", "createMaterializedViewStatement", + "createMaterializedViewTarget", "refreshMaterializedViewStatement", + "createSequenceStatement", "alterSequenceStatement", "optionalParenthesizedSeqOptionsList", + "sequenceOptionList", "sequenceOptionItem", "numericOnly", "numericOnlyList", + "createProcedureLangStatement", "handlerName", "optionalInlineHandler", + "validatorClause", "optionalProcedural", "createTablespaceStatement", + "optionalTablespaceOwner", "dropTablespaceStatement", "createExtensionStatement", + "createExtensionOptionItem", "alterExtensionStatement", "alterExtensionOptionItem", + "alterExtensionContentsStatement", "createForeignDataWrapperStatement", + "forwardOption", "forwardOptions", "alterForeignDataWrapperStatement", + "createGenericOptions", "genericOptionList", "alterGenericOptions", + "alterGenericOptionList", "alterGenericOptionElem", "genericOptionElement", + "genericOptionName", "genericOptionArgument", "createForeignServerStatement", + "optionalType", "foreignServerVersion", "alterForeignServerStatement", + "createForeignTableStatement", "importForeignSchemaStatement", "importQualificationType", + "importQualification", "createUserMappingStatement", "authIdentifier", + "dropUserMappingStatement", "alterUserMappingStatement", "createPolicyStatement", + "alterPolicyStatement", "rowSecurityOptionalExpression", "rowSecurityOptionalWithCheck", + "rowSecurityDefaultToRole", "rowSecurityOptionalToRole", "rowSecurityDefaultPermissive", + "rowSecurityDefaultForCmd", "rowSecurityCommand", "createAccessMethodStatement", + "accessMethodType", "createTriggerStatement", "triggerActionTime", + "triggerEvents", "triggerOneEvent", "triggerReferencing", "triggerTransitions", + "triggerTransition", "transitionOldOrNew", "transitionRowOrTable", + "transitionRelName", "triggerForSpec", "triggerForType", "triggerWhen", + "functionOrProcedure", "triggerFunctionArguments", "triggerFunctionArgument", + "optionalConstraintFromTable", "constraintAttributeSpecification", + "constraintAttributeElement", "createEventTriggerStatement", "eventTriggerWhenList", + "eventTriggerWhenItem", "eventTriggerValueList", "alterEventTriggerStatement", + "enableTrigger", "createAssertionStatement", "defineStatement", + "definition", "definitionElement", "definitionArgument", "oldAggregateDefinition", + "oldAggregateElement", "enumValueList", "alterEnumStatement", "optionalIfNotExists", + "createOperatorClassStatement", "operatorClassItemList", "operatorClassItem", + "optionalOperatorFamily", "operatorClassPurpose", "createOperatorFamilyStatement", + "alterOperatorFamilyStatement", "operatorClassDropList", "operatorClassDrop", + "dropOperatorClassStatement", "dropOperatorFamilyStatement", "dropOwnedStatement", + "reassignOwnedStatement", "dropStatement", "objectTypeAnyName", + "objectTypeName", "dropTypeName", "objectTypeNameOnAnyName", "anyNameList", + "anyName", "attributes", "typeNameList", "truncateStatement", "optionalRestartSequences", + "commentStatement", "commentText", "securityLabelStatement", "optionalProvider", + "securityLabel", "fetchStatement", "fetchArguments", "fromOrIn", + "optionalFromOrIn", "grantStatement", "revokeStatement", "privileges", + "privilegeList", "privilege", "privilegeTarget", "granteeList", + "grantee", "optionalWithGrantOption", "grantRoleStatement", "revokeRoleStatement", + "optionalGrantAdminOption", "optionalGrantedBy", "alterDefaultPrivilegesStatement", + "defultPrivilegeOption", "defaultPrivelegeAction", "defultPrivilegeTarget", + "indexStatement", "optionalConcurrently", "optionalAccessMethodClause", + "indexParameters", "indexElemOptions", "indexElement", "optionalInclude", + "optionalCollate", "optionalClass", "optionalAscOrDesc", "optionalNullsOrder", + "createFunctionStatement", "optionalOrReplace", "functionArgumentsList", + "functionWithArgumentTypesList", "functionWithArgumentTypes", "functionArgumentsWithDefaultsList", + "functionArgumentWithDefault", "functionArgument", "argumentClass", + "parameterName", "functionReturn", "functionType", "aggregateArguments", + "aggregateArgumentsList", "aggregateWithArgumentTypes", "aggregateWithArgumentTypesList", + "createFunctionOptionList", "commonFunctionOptionItem", "createFunctionOptionItem", + "functionAs", "transformTypeList", "optionalDefinition", "tableFunctionColumn", + "tableFunctionColumnList", "alterFunctionStatement", "removeFunctionStatement", + "removeAggregateStatement", "removeOperatorStatement", "operatorArgumentTypes", + "anyOperator", "operatorWithArgumentTypesList", "operatorWithArgumentTypes", + "doStatement", "doStatementOptionsList", "doStatementOptionItem", + "createCastStatement", "castContext", "dropCastStatement", "optionalIfExists", + "createTransformStatement", "transformElementList", "dropTransformStatement", + "reindexStatement", "reindexTargetType", "reindexTargetMultiTable", + "reindexOptionList", "reindexOptionElement", "alterTablespaceStatement", + "renameStatement", "optionalColumn", "optionalSetData", "alterObjectDependsStatement", + "alterObjectSchemaStatement", "alterOperatorStatement", "operatorDefinitionList", + "operatorDefinitionElement", "operatorDefinitionArgument", "alterTypeStatement", + "alterOwnerStatement", "createPublicationStatement", "optionalPublicationForTables", + "publicationForTables", "alterPublicationStatement", "createSubscriptionStatement", + "publicationNameList", "publicationNameItem", "alterSubscriptionStatement", + "dropSubscriptionStatement", "ruleStatement", "ruleActionList", + "ruleActionMulti", "ruleActionStatement", "ruleActionStatementOrEmpty", + "event", "optionalInstead", "notifyStatement", "notifyPayload", + "listenStatement", "unlistenStatement", "transactionStatement", + "optionalTransaction", "transactionModeItem", "transactionModeList", + "optionalTransactionChain", "viewStatement", "optionalCheckOption", + "loadStatement", "createDatabaseStatement", "createDatabaseOptionList", + "createDatabaseOptionItem", "createDatabaseOptionName", "alterDatabaseStatement", + "alterDatabaseSetStatement", "dropDatabaseStatement", "alterCollationStatement", + "alterSystemStatement", "createDomainStatement", "alterDomainStatement", + "optionalAs", "altertsDictionaryStatement", "altertsConfigurationStatement", + "createConversionStatement", "clusterStatement", "clusterIndexSpecification", + "vacuumStatement", "analyzeStatement", "vacuumAnalyzeOptionList", + "analyzeKeyword", "vacuumAnalyzeOptionElement", "vacuumAnalyzeOptionName", + "vacuumAnalyzeOptionArgument", "optionalVerbose", "optionalNameList", + "vacuumRelation", "optionalVacuumRelationList", "explainStatement", + "explainableStatement", "explainOptionElement", "explainOptionName", + "explainOptionArgument", "prepareStatement", "prepareTypeClause", + "preparableStatement", "executeStatement", "executeParameterClause", + "deallocateStatement", "insertStatement", "insertTarget", "insertRest", + "overrideKind", "insertColumnList", "insertColumnItem", "optionalOnConflict", + "optionalConflictExpr", "returningClause", "mergeStatement", "mergeInsertClause", + "mergeUpdateClause", "mergeDeleteClause", "deleteStatement", "usingClause", + "lockStatement", "optionalLock", "lockType", "optionalNowait", "optionalNowaitOrSkip", + "updateStatement", "setClauseList", "setClause", "setTarget", "declareCursorStatement", + "cursorName", "optionalHold", "selectStatement", "selectWithParenthesis", + "selectWithoutParenthesis", "selectClause", "simpleSelectIntersect", + "simpleSelectStart", "simpleSelectPramary", "withClause", "commonTableExpression", + "optionalMaterialized", "intoClause", "optionalTemporaryTableName", + "optionalTable", "allOrDistinct", "distinctClause", "allClause", + "optionalSortClause", "sortClause", "sortByList", "sortBy", "selectLimit", + "optionalSelectLimit", "limitClause", "offsetClause", "selectLimitValue", + "selectOffsetValue", "selectFetchFirstValue", "anyConst", "rowOrRows", + "firstOrNext", "groupClause", "groupByList", "groupByItem", "havingClause", + "forLockingClause", "forLockingItem", "forLockingStrength", "lockedRelationsList", + "valuesClause", "fromClause", "fromList", "nonAnsiJoin", "tableReference", + "aliasClause", "optionalAliasClause", "tableAliasClause", "functionAliasClause", + "joinType", "joinQualifier", "relationExpression", "relationExpressionList", + "relationExpressionOptionalAlias", "tableSampleClause", "functionTable", + "rowsFromItem", "optionalColumnDefinitionList", "optionalOrdinality", + "whereClause", "whereOrCurrentClause", "optionalTableFunctionElementList", + "tableFunctionElementList", "tableFunctionElement", "xmlTable", + "xmlTableColumnElement", "xmlTableColumnOptionList", "xmlTableColumnOptionElement", + "xmlNamespaceList", "xmlNamespaceElement", "typeName", "simpleTypeName", + "constTypeName", "genericType", "optionalTypeModifiers", "numeric", + "optionalFloat", "bit", "constBit", "bitWithLength", "bitWithoutLength", + "character", "constCharacter", "characterChar", "optionalVarying", + "constDateTime", "constInterval", "optionalTimezone", "optionalInterval", + "intervalSecond", "optionalEscape", "expression1", "expression1Qualifier", + "expression1LessLess", "expression1Or", "expression1And", "expression1Between", + "expression1In", "expression1UnaryNot", "expression1IsNull", "expression1IsNot", + "expression1Compare", "expression1Like", "expression1qualifierOperator", + "expression1UnaryQualifierOperator", "expression1Add", "expressionMultiply", + "expression1Caret", "expression1UnarySign", "expression1AtTimeZone", + "expression1Collate", "expression1Typecast", "expression2", "expression3", + "plsqlVariableName", "functionApplication", "functionExpression", + "functionExpressionWindowless", "functionExpressionCommonSubexpr", + "xmlRootVersion", "optionalXmlRootStandalone", "xmlAttributes", + "xmlAttributeList", "xmlAttributeElement", "documentOrContent", + "xmlWhitespaceOption", "xmlExistsArgument", "xmlPassingMech", "withinGroupClause", + "filterClause", "windowClause", "windowDefinitionList", "windowDefinition", + "overClause", "windowSpecification", "optionalExistingWindowName", + "optionalPartitionClause", "optionalFrameClause", "frameExtent", + "frameBound", "optionalWindowExclusionClause", "row", "explicitRow", + "implicitRow", "subType", "allOperator", "mathOperator", "operatorQualifier", + "allOperatorQualifier", "subqueryOperator", "expressionList", "functionArgumentList", + "functionArgumentExpression", "typeList", "arrayExpression", "arrayExpressionList", + "extractList", "extractArgument", "unicodeNormalForm", "overlayList", + "positionList", "substrList", "trimList", "inExpression", "caseExpression", + "whenClauseList", "whenClause", "caseDefault", "caseArg", "columnReference", + "indirectionElement", "indirection", "optionalIndirection", "optionalTargetList", + "targetList", "targetElement", "qualifiedNameList", "qualifiedName", + "nameList", "name", "attributeName", "fileName", "functionName", + "aExpressionConst", "xconst", "bconst", "fconst", "iconst", "sconst", + "anySconst", "optionalUescape", "signedIconst", "roleId", "roleSpecification", + "roleList", "columnId", "tableAlias", "typeFunctionName", "nonReservedWord", + "columnLabel", "identifier", "plsqlIdentifier", "unreservedKeyword", + "columnNameKeyword", "typeFunctionNameKeyword", "reservedKeyword", + "builtinFunctionName", "plsqlFunction", "computeOptions", "computeOption", + "sharp", "optionValue", "optionalSemi", "plsqlBlock", "declareSection", + "declareStart", "declareStatements", "labelDeclaration", "declareStatement", + "declareStatement2", "optionalScrollable", "declareCursorQuery", + "declareCursorArgs", "declareCursorArglist", "declareCursorArg", + "declareIsOrFor", "declareAliasItem", "declareVarname", "declareConst", + "declareDatatype", "declareCollate", "declareNotNull", "declareDefaultValue", + "declareDefaultKey", "assignOperator", "procedureSection", "proceduralStatement", + "statementPerform", "statementCall", "optionalExpressionList", "statementAssign", + "statementGetDiagram", "optionalGetDiagramArea", "getDiagramList", + "getDiagramListItem", "getDiagramItem", "getDiagramTarget", "assignVariable", + "statementIf", "statementElsifs", "statementElse", "statementCase", + "optionalExpressionUntilWhen", "caseWhenList", "caseWhen", "optionalCaseElse", + "statementLoop", "statementWhile", "statementFor", "forControl", + "optionalForUsingExpression", "optionalCursorParameters", "optionalReverse", + "optionalByExpression", "forVariable", "statementForeachA", "foreachSlice", + "statementExit", "exitType", "statementReturn", "optionalReturnResult", + "statementRaise", "optionalStatementRaiseLevel", "optionalRaiseList", + "optionalRaiseUsing", "optionalRaiseUsingElement", "statementAssert", + "optionalStatementAssertMessage", "loopBody", "statementExecSql", + "statementDynExecute", "optionalExecuteUsing", "optionalExecuteUsingList", + "optionalExecuteInto", "statementOpen", "optionalOpenBoundListItem", + "statementFetch", "intoTarget", "optionalCursorFrom", "optionalFetchDirection", + "statementMove", "statementClose", "statementNull", "statementCommit", + "statementRollback", "plsqlOptionalTransactionChain", "statementSet", + "cursorVariable", "exceptionSection", "procedureExceptions", "procedureException", + "procedureConditions", "procedureCondition", "optionalBlockLabel", + "optionalLoopLabel", "optionalLabel", "optionalExitCondition", "anyIdentifier", + "plsqlUnreservedKeyword", "sqlExpression", "expressionUntilThen", + "expressionUntilSemi", "expressionUntilRightbracket", "expressionUntilLoop", + "makeExecuteSqlStatement", "optionalReturningClauseInto", ]; public get grammarFileName(): string { return "PostgreSqlParser.g4"; } @@ -1986,17 +1931,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 69244929) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 1074266113) !== 0) || ((((_la - 298)) & ~0x1F) === 0 && ((1 << (_la - 298)) & 1346523403) !== 0) || ((((_la - 333)) & ~0x1F) === 0 && ((1 << (_la - 333)) & 1677983745) !== 0) || ((((_la - 415)) & ~0x1F) === 0 && ((1 << (_la - 415)) & 537133057) !== 0) || _la === 454 || _la === 668) { { - this.state = 1622; - this.stmtmulti(); + this.state = 1496; + this.statements(); } } - this.state = 1625; + this.state = 1499; this.match(PostgreSqlParser.EOF); } } @@ -2014,14 +1959,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public plsqlroot(): PlsqlrootContext { - let localContext = new PlsqlrootContext(this.context, this.state); - this.enterRule(localContext, 2, PostgreSqlParser.RULE_plsqlroot); + public plsqlRoot(): PlsqlRootContext { + let localContext = new PlsqlRootContext(this.context, this.state); + this.enterRule(localContext, 2, PostgreSqlParser.RULE_plsqlRoot); try { this.enterOuterAlt(localContext, 1); { - this.state = 1627; - this.pl_function(); + this.state = 1501; + this.plsqlFunction(); } } catch (re) { @@ -2038,25 +1983,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmtmulti(): StmtmultiContext { - let localContext = new StmtmultiContext(this.context, this.state); - this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmtmulti); + public statements(): StatementsContext { + let localContext = new StatementsContext(this.context, this.state); + this.enterRule(localContext, 4, PostgreSqlParser.RULE_statements); let _la: number; try { - this.state = 1637; + this.state = 1511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1629; - this.stmt(); - this.state = 1631; + this.state = 1503; + this.statement(); + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 1630; + this.state = 1504; this.match(PostgreSqlParser.SEMI); } } @@ -2066,12 +2011,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1633; - this.stmt(); - this.state = 1634; + this.state = 1507; + this.statement(); + this.state = 1508; this.match(PostgreSqlParser.SEMI); - this.state = 1635; - this.stmtmulti(); + this.state = 1509; + this.statements(); } break; } @@ -2090,886 +2035,886 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt(): StmtContext { - let localContext = new StmtContext(this.context, this.state); - this.enterRule(localContext, 6, PostgreSqlParser.RULE_stmt); + public statement(): StatementContext { + let localContext = new StatementContext(this.context, this.state); + this.enterRule(localContext, 6, PostgreSqlParser.RULE_statement); try { - this.state = 1764; + this.state = 1638; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1639; - this.altereventtrigstmt(); + this.state = 1513; + this.alterEventTriggerStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1640; - this.altercollationstmt(); + this.state = 1514; + this.alterCollationStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1641; - this.alterdatabasestmt(); + this.state = 1515; + this.alterDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1642; - this.alterdatabasesetstmt(); + this.state = 1516; + this.alterDatabaseSetStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1643; - this.alterdefaultprivilegesstmt(); + this.state = 1517; + this.alterDefaultPrivilegesStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1644; - this.alterdomainstmt(); + this.state = 1518; + this.alterDomainStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1645; - this.alterenumstmt(); + this.state = 1519; + this.alterEnumStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1646; - this.alterextensionstmt(); + this.state = 1520; + this.alterExtensionStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1647; - this.alterextensioncontentsstmt(); + this.state = 1521; + this.alterExtensionContentsStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1648; - this.alterfdwstmt(); + this.state = 1522; + this.alterForeignDataWrapperStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1649; - this.alterforeignserverstmt(); + this.state = 1523; + this.alterForeignServerStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1650; - this.alterfunctionstmt(); + this.state = 1524; + this.alterFunctionStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1651; - this.altergroupstmt(); + this.state = 1525; + this.alterGroupStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1652; - this.alterobjectdependsstmt(); + this.state = 1526; + this.alterObjectDependsStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1653; - this.alterobjectschemastmt(); + this.state = 1527; + this.alterObjectSchemaStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1654; - this.alterownerstmt(); + this.state = 1528; + this.alterOwnerStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1655; - this.alteroperatorstmt(); + this.state = 1529; + this.alterOperatorStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1656; - this.altertypestmt(); + this.state = 1530; + this.alterTypeStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1657; - this.alterpolicystmt(); + this.state = 1531; + this.alterPolicyStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1658; - this.alterseqstmt(); + this.state = 1532; + this.alterSequenceStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1659; - this.altersystemstmt(); + this.state = 1533; + this.alterSystemStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1660; - this.altertablestmt(); + this.state = 1534; + this.alterTableStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1661; - this.altertblspcstmt(); + this.state = 1535; + this.alterTablespaceStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1662; - this.altercompositetypestmt(); + this.state = 1536; + this.alterCompositeTypeStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1663; - this.alterpublicationstmt(); + this.state = 1537; + this.alterPublicationStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1664; - this.alterrolesetstmt(); + this.state = 1538; + this.alterRoleSetStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1665; - this.alterrolestmt(); + this.state = 1539; + this.alterRoleStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1666; - this.altersubscriptionstmt(); + this.state = 1540; + this.alterSubscriptionStatement(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1667; - this.alterstatsstmt(); + this.state = 1541; + this.alterStatsStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1668; - this.altertsconfigurationstmt(); + this.state = 1542; + this.altertsConfigurationStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1669; - this.altertsdictionarystmt(); + this.state = 1543; + this.altertsDictionaryStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1670; - this.alterusermappingstmt(); + this.state = 1544; + this.alterUserMappingStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1671; - this.analyzestmt(); + this.state = 1545; + this.analyzeStatement(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1672; - this.callstmt(); + this.state = 1546; + this.callStatement(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1673; - this.checkpointstmt(); + this.state = 1547; + this.checkpointStatement(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1674; - this.closeportalstmt(); + this.state = 1548; + this.closePortalStatement(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1675; - this.clusterstmt(); + this.state = 1549; + this.clusterStatement(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1676; - this.commentstmt(); + this.state = 1550; + this.commentStatement(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1677; - this.constraintssetstmt(); + this.state = 1551; + this.setConstraintsStatement(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1678; - this.copystmt(); + this.state = 1552; + this.copyStatement(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1679; - this.createamstmt(); + this.state = 1553; + this.createAccessMethodStatement(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1680; - this.createasstmt(); + this.state = 1554; + this.createAsStatement(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1681; - this.createassertionstmt(); + this.state = 1555; + this.createAssertionStatement(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1682; - this.createcaststmt(); + this.state = 1556; + this.createCastStatement(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1683; - this.createconversionstmt(); + this.state = 1557; + this.createConversionStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1684; - this.createdomainstmt(); + this.state = 1558; + this.createDomainStatement(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1685; - this.createextensionstmt(); + this.state = 1559; + this.createExtensionStatement(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1686; - this.createfdwstmt(); + this.state = 1560; + this.createForeignDataWrapperStatement(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1687; - this.createforeignserverstmt(); + this.state = 1561; + this.createForeignServerStatement(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1688; - this.createforeigntablestmt(); + this.state = 1562; + this.createForeignTableStatement(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1689; - this.createfunctionstmt(); + this.state = 1563; + this.createFunctionStatement(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1690; - this.creategroupstmt(); + this.state = 1564; + this.createGroupStatement(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1691; - this.creatematviewstmt(); + this.state = 1565; + this.createMaterializedViewStatement(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1692; - this.createopclassstmt(); + this.state = 1566; + this.createOperatorClassStatement(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1693; - this.createopfamilystmt(); + this.state = 1567; + this.createOperatorFamilyStatement(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1694; - this.createpublicationstmt(); + this.state = 1568; + this.createPublicationStatement(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1695; - this.alteropfamilystmt(); + this.state = 1569; + this.alterOperatorFamilyStatement(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1696; - this.createpolicystmt(); + this.state = 1570; + this.createPolicyStatement(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1697; - this.createplangstmt(); + this.state = 1571; + this.createProcedureLangStatement(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1698; - this.createschemastmt(); + this.state = 1572; + this.createSchemaStatement(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1699; - this.createseqstmt(); + this.state = 1573; + this.createSequenceStatement(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1700; - this.createstmt(); + this.state = 1574; + this.createStatement(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1701; - this.createsubscriptionstmt(); + this.state = 1575; + this.createSubscriptionStatement(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1702; - this.createstatsstmt(); + this.state = 1576; + this.createStatsStatement(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1703; - this.createtablespacestmt(); + this.state = 1577; + this.createTablespaceStatement(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1704; - this.createtransformstmt(); + this.state = 1578; + this.createTransformStatement(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1705; - this.createtrigstmt(); + this.state = 1579; + this.createTriggerStatement(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1706; - this.createeventtrigstmt(); + this.state = 1580; + this.createEventTriggerStatement(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1707; - this.createrolestmt(); + this.state = 1581; + this.createRoleStatement(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1708; - this.createuserstmt(); + this.state = 1582; + this.createUserStatement(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1709; - this.createusermappingstmt(); + this.state = 1583; + this.createUserMappingStatement(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1710; - this.createdbstmt(); + this.state = 1584; + this.createDatabaseStatement(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1711; - this.deallocatestmt(); + this.state = 1585; + this.deallocateStatement(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1712; - this.declarecursorstmt(); + this.state = 1586; + this.declareCursorStatement(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1713; - this.definestmt(); + this.state = 1587; + this.defineStatement(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1714; - this.deletestmt(); + this.state = 1588; + this.deleteStatement(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1715; - this.discardstmt(); + this.state = 1589; + this.discardStatement(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1716; - this.dostmt(); + this.state = 1590; + this.doStatement(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1717; - this.dropcaststmt(); + this.state = 1591; + this.dropCastStatement(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1718; - this.dropopclassstmt(); + this.state = 1592; + this.dropOperatorClassStatement(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1719; - this.dropopfamilystmt(); + this.state = 1593; + this.dropOperatorFamilyStatement(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1720; - this.dropownedstmt(); + this.state = 1594; + this.dropOwnedStatement(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1721; - this.dropstmt(); + this.state = 1595; + this.dropStatement(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1722; - this.dropsubscriptionstmt(); + this.state = 1596; + this.dropSubscriptionStatement(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1723; - this.droptablespacestmt(); + this.state = 1597; + this.dropTablespaceStatement(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1724; - this.droptransformstmt(); + this.state = 1598; + this.dropTransformStatement(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1725; - this.droprolestmt(); + this.state = 1599; + this.dropRoleStatement(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1726; - this.dropusermappingstmt(); + this.state = 1600; + this.dropUserMappingStatement(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1727; - this.dropdbstmt(); + this.state = 1601; + this.dropDatabaseStatement(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1728; - this.executestmt(); + this.state = 1602; + this.executeStatement(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1729; - this.explainstmt(); + this.state = 1603; + this.explainStatement(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1730; - this.fetchstmt(); + this.state = 1604; + this.fetchStatement(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1731; - this.grantstmt(); + this.state = 1605; + this.grantStatement(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1732; - this.grantrolestmt(); + this.state = 1606; + this.grantRoleStatement(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1733; - this.importforeignschemastmt(); + this.state = 1607; + this.importForeignSchemaStatement(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1734; - this.indexstmt(); + this.state = 1608; + this.indexStatement(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1735; - this.insertstmt(); + this.state = 1609; + this.insertStatement(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1736; - this.mergestmt(); + this.state = 1610; + this.mergeStatement(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1737; - this.listenstmt(); + this.state = 1611; + this.listenStatement(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1738; - this.refreshmatviewstmt(); + this.state = 1612; + this.refreshMaterializedViewStatement(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1739; - this.loadstmt(); + this.state = 1613; + this.loadStatement(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1740; - this.lockstmt(); + this.state = 1614; + this.lockStatement(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1741; - this.notifystmt(); + this.state = 1615; + this.notifyStatement(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1742; - this.preparestmt(); + this.state = 1616; + this.prepareStatement(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1743; - this.reassignownedstmt(); + this.state = 1617; + this.reassignOwnedStatement(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1744; - this.reindexstmt(); + this.state = 1618; + this.reindexStatement(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1745; - this.removeaggrstmt(); + this.state = 1619; + this.removeAggregateStatement(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1746; - this.removefuncstmt(); + this.state = 1620; + this.removeFunctionStatement(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1747; - this.removeoperstmt(); + this.state = 1621; + this.removeOperatorStatement(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1748; - this.renamestmt(); + this.state = 1622; + this.renameStatement(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1749; - this.revokestmt(); + this.state = 1623; + this.revokeStatement(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1750; - this.revokerolestmt(); + this.state = 1624; + this.revokeRoleStatement(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1751; - this.rulestmt(); + this.state = 1625; + this.ruleStatement(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1752; - this.seclabelstmt(); + this.state = 1626; + this.securityLabelStatement(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1753; - this.selectstmt(); + this.state = 1627; + this.selectStatement(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1754; - this.transactionstmt(); + this.state = 1628; + this.transactionStatement(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1755; - this.truncatestmt(); + this.state = 1629; + this.truncateStatement(); } break; case 118: this.enterOuterAlt(localContext, 118); { - this.state = 1756; - this.unlistenstmt(); + this.state = 1630; + this.unlistenStatement(); } break; case 119: this.enterOuterAlt(localContext, 119); { - this.state = 1757; - this.updatestmt(); + this.state = 1631; + this.updateStatement(); } break; case 120: this.enterOuterAlt(localContext, 120); { - this.state = 1758; - this.vacuumstmt(); + this.state = 1632; + this.vacuumStatement(); } break; case 121: this.enterOuterAlt(localContext, 121); { - this.state = 1759; - this.variableresetstmt(); + this.state = 1633; + this.variableResetStatement(); } break; case 122: this.enterOuterAlt(localContext, 122); { - this.state = 1760; - this.variablesetstmt(); + this.state = 1634; + this.variableSetStatement(); } break; case 123: this.enterOuterAlt(localContext, 123); { - this.state = 1761; - this.variableshowstmt(); + this.state = 1635; + this.variableShowStatement(); } break; case 124: this.enterOuterAlt(localContext, 124); { - this.state = 1762; - this.viewstmt(); + this.state = 1636; + this.viewStatement(); } break; case 125: this.enterOuterAlt(localContext, 125); { - this.state = 1763; - this.plsqlconsolecommand(); + this.state = 1637; + this.plsqlConsoleCommand(); } break; } @@ -2988,21 +2933,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public plsqlconsolecommand(): PlsqlconsolecommandContext { - let localContext = new PlsqlconsolecommandContext(this.context, this.state); - this.enterRule(localContext, 8, PostgreSqlParser.RULE_plsqlconsolecommand); + public plsqlConsoleCommand(): PlsqlConsoleCommandContext { + let localContext = new PlsqlConsoleCommandContext(this.context, this.state); + this.enterRule(localContext, 8, PostgreSqlParser.RULE_plsqlConsoleCommand); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1640; this.match(PostgreSqlParser.MetaCommand); - this.state = 1768; + this.state = 1642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 669) { { - this.state = 1767; + this.state = 1641; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -3023,16 +2968,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public callstmt(): CallstmtContext { - let localContext = new CallstmtContext(this.context, this.state); - this.enterRule(localContext, 10, PostgreSqlParser.RULE_callstmt); + public callStatement(): CallStatementContext { + let localContext = new CallStatementContext(this.context, this.state); + this.enterRule(localContext, 10, PostgreSqlParser.RULE_callStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1770; + this.state = 1644; this.match(PostgreSqlParser.CALL); - this.state = 1771; - this.func_application(); + this.state = 1645; + this.functionApplication(); } } catch (re) { @@ -3049,22 +2994,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createrolestmt(): CreaterolestmtContext { - let localContext = new CreaterolestmtContext(this.context, this.state); - this.enterRule(localContext, 12, PostgreSqlParser.RULE_createrolestmt); + public createRoleStatement(): CreateRoleStatementContext { + let localContext = new CreateRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 12, PostgreSqlParser.RULE_createRoleStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1647; this.match(PostgreSqlParser.CREATE); - this.state = 1774; + this.state = 1648; this.match(PostgreSqlParser.ROLE); - this.state = 1775; - this.roleid(); - this.state = 1776; - this.opt_with(); - this.state = 1777; - this.optrolelist(); + this.state = 1649; + this.roleId(); + this.state = 1650; + this.optionalWith(); + this.state = 1651; + this.optionalRoleList(); } } catch (re) { @@ -3081,17 +3026,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_with(): Opt_withContext { - let localContext = new Opt_withContext(this.context, this.state); - this.enterRule(localContext, 14, PostgreSqlParser.RULE_opt_with); + public optionalWith(): OptionalWithContext { + let localContext = new OptionalWithContext(this.context, this.state); + this.enterRule(localContext, 14, PostgreSqlParser.RULE_optionalWith); try { - this.state = 1781; + this.state = 1655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1653; this.match(PostgreSqlParser.WITH); } break; @@ -3237,24 +3182,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optrolelist(): OptrolelistContext { - let localContext = new OptrolelistContext(this.context, this.state); - this.enterRule(localContext, 16, PostgreSqlParser.RULE_optrolelist); + public optionalRoleList(): OptionalRoleListContext { + let localContext = new OptionalRoleListContext(this.context, this.state); + this.enterRule(localContext, 16, PostgreSqlParser.RULE_optionalRoleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1786; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 2164260865) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268714113) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 542993) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 36865) !== 0) || ((((_la - 228)) & ~0x1F) === 0 && ((1 << (_la - 228)) & 1073745937) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 34080771) !== 0) || ((((_la - 300)) & ~0x1F) === 0 && ((1 << (_la - 300)) & 67311681) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 8458241) !== 0) || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { { { - this.state = 1783; - this.createoptroleelem(); + this.state = 1657; + this.createRoleElement(); } } - this.state = 1788; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3274,24 +3219,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alteroptrolelist(): AlteroptrolelistContext { - let localContext = new AlteroptrolelistContext(this.context, this.state); - this.enterRule(localContext, 18, PostgreSqlParser.RULE_alteroptrolelist); + public alterOptionalRoleList(): AlterOptionalRoleListContext { + let localContext = new AlterOptionalRoleListContext(this.context, this.state); + this.enterRule(localContext, 18, PostgreSqlParser.RULE_alterOptionalRoleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1792; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260993) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 164)) & ~0x1F) === 0 && ((1 << (_la - 164)) & 2147483913) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 35651593) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268452097) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || ((((_la - 353)) & ~0x1F) === 0 && ((1 << (_la - 353)) & 2065) !== 0) || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { { { - this.state = 1789; - this.alteroptroleelem(); + this.state = 1663; + this.alterRoleElemement(); } } - this.state = 1794; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3311,20 +3256,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alteroptroleelem(): AlteroptroleelemContext { - let localContext = new AlteroptroleelemContext(this.context, this.state); - this.enterRule(localContext, 20, PostgreSqlParser.RULE_alteroptroleelem); + public alterRoleElemement(): AlterRoleElemementContext { + let localContext = new AlterRoleElemementContext(this.context, this.state); + this.enterRule(localContext, 20, PostgreSqlParser.RULE_alterRoleElemement); let _la: number; try { - this.state = 1813; + this.state = 1687; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PASSWORD: this.enterOuterAlt(localContext, 1); { - this.state = 1795; + this.state = 1669; this.match(PostgreSqlParser.PASSWORD); - this.state = 1798; + this.state = 1672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -3332,13 +3277,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1796; + this.state = 1670; this.sconst(); } break; case PostgreSqlParser.NULL_P: { - this.state = 1797; + this.state = 1671; this.match(PostgreSqlParser.NULL_P); } break; @@ -3351,7 +3296,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.UNENCRYPTED: this.enterOuterAlt(localContext, 2); { - this.state = 1800; + this.state = 1674; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 357)) { this.errorHandler.recoverInline(this); @@ -3360,48 +3305,48 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1801; + this.state = 1675; this.match(PostgreSqlParser.PASSWORD); - this.state = 1802; + this.state = 1676; this.sconst(); } break; case PostgreSqlParser.INHERIT: this.enterOuterAlt(localContext, 3); { - this.state = 1803; + this.state = 1677; this.match(PostgreSqlParser.INHERIT); } break; case PostgreSqlParser.CONNECTION: this.enterOuterAlt(localContext, 4); { - this.state = 1804; + this.state = 1678; this.match(PostgreSqlParser.CONNECTION); - this.state = 1805; + this.state = 1679; this.match(PostgreSqlParser.LIMIT); - this.state = 1806; - this.signediconst(); + this.state = 1680; + this.signedIconst(); } break; case PostgreSqlParser.VALID: this.enterOuterAlt(localContext, 5); { - this.state = 1807; + this.state = 1681; this.match(PostgreSqlParser.VALID); - this.state = 1808; + this.state = 1682; this.match(PostgreSqlParser.UNTIL); - this.state = 1809; + this.state = 1683; this.sconst(); } break; case PostgreSqlParser.USER: this.enterOuterAlt(localContext, 6); { - this.state = 1810; + this.state = 1684; this.match(PostgreSqlParser.USER); - this.state = 1811; - this.role_list(); + this.state = 1685; + this.roleList(); } break; case PostgreSqlParser.AND: @@ -3474,7 +3419,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 7); { - this.state = 1812; + this.state = 1686; this.identifier(); } break; @@ -3496,12 +3441,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createoptroleelem(): CreateoptroleelemContext { - let localContext = new CreateoptroleelemContext(this.context, this.state); - this.enterRule(localContext, 22, PostgreSqlParser.RULE_createoptroleelem); + public createRoleElement(): CreateRoleElementContext { + let localContext = new CreateRoleElementContext(this.context, this.state); + this.enterRule(localContext, 22, PostgreSqlParser.RULE_createRoleElement); let _la: number; try { - this.state = 1825; + this.state = 1699; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -3581,43 +3526,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1815; - this.alteroptroleelem(); + this.state = 1689; + this.alterRoleElemement(); } break; case PostgreSqlParser.SYSID: this.enterOuterAlt(localContext, 2); { - this.state = 1816; + this.state = 1690; this.match(PostgreSqlParser.SYSID); - this.state = 1817; + this.state = 1691; this.iconst(); } break; case PostgreSqlParser.ADMIN: this.enterOuterAlt(localContext, 3); { - this.state = 1818; + this.state = 1692; this.match(PostgreSqlParser.ADMIN); - this.state = 1819; - this.role_list(); + this.state = 1693; + this.roleList(); } break; case PostgreSqlParser.ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 1820; + this.state = 1694; this.match(PostgreSqlParser.ROLE); - this.state = 1821; - this.role_list(); + this.state = 1695; + this.roleList(); } break; case PostgreSqlParser.IN_P: this.enterOuterAlt(localContext, 5); { - this.state = 1822; + this.state = 1696; this.match(PostgreSqlParser.IN_P); - this.state = 1823; + this.state = 1697; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 311)) { this.errorHandler.recoverInline(this); @@ -3626,8 +3571,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1824; - this.role_list(); + this.state = 1698; + this.roleList(); } break; default: @@ -3648,22 +3593,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createuserstmt(): CreateuserstmtContext { - let localContext = new CreateuserstmtContext(this.context, this.state); - this.enterRule(localContext, 24, PostgreSqlParser.RULE_createuserstmt); + public createUserStatement(): CreateUserStatementContext { + let localContext = new CreateUserStatementContext(this.context, this.state); + this.enterRule(localContext, 24, PostgreSqlParser.RULE_createUserStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1701; this.match(PostgreSqlParser.CREATE); - this.state = 1828; + this.state = 1702; this.match(PostgreSqlParser.USER); - this.state = 1829; - this.roleid(); - this.state = 1830; - this.opt_with(); - this.state = 1831; - this.optrolelist(); + this.state = 1703; + this.roleId(); + this.state = 1704; + this.optionalWith(); + this.state = 1705; + this.optionalRoleList(); } } catch (re) { @@ -3680,16 +3625,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterrolestmt(): AlterrolestmtContext { - let localContext = new AlterrolestmtContext(this.context, this.state); - this.enterRule(localContext, 26, PostgreSqlParser.RULE_alterrolestmt); + public alterRoleStatement(): AlterRoleStatementContext { + let localContext = new AlterRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 26, PostgreSqlParser.RULE_alterRoleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1707; this.match(PostgreSqlParser.ALTER); - this.state = 1834; + this.state = 1708; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 311)) { this.errorHandler.recoverInline(this); @@ -3698,12 +3643,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1835; - this.rolespec(); - this.state = 1836; - this.opt_with(); - this.state = 1837; - this.alteroptrolelist(); + this.state = 1709; + this.roleSpecification(); + this.state = 1710; + this.optionalWith(); + this.state = 1711; + this.alterOptionalRoleList(); } } catch (re) { @@ -3720,11 +3665,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_in_database(): Opt_in_databaseContext { - let localContext = new Opt_in_databaseContext(this.context, this.state); - this.enterRule(localContext, 28, PostgreSqlParser.RULE_opt_in_database); + public optionalInDatabase(): OptionalInDatabaseContext { + let localContext = new OptionalInDatabaseContext(this.context, this.state); + this.enterRule(localContext, 28, PostgreSqlParser.RULE_optionalInDatabase); try { - this.state = 1843; + this.state = 1717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.RESET: @@ -3737,11 +3682,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.IN_P: this.enterOuterAlt(localContext, 2); { - this.state = 1840; + this.state = 1714; this.match(PostgreSqlParser.IN_P); - this.state = 1841; + this.state = 1715; this.match(PostgreSqlParser.DATABASE); - this.state = 1842; + this.state = 1716; this.name(); } break; @@ -3763,16 +3708,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterrolesetstmt(): AlterrolesetstmtContext { - let localContext = new AlterrolesetstmtContext(this.context, this.state); - this.enterRule(localContext, 30, PostgreSqlParser.RULE_alterrolesetstmt); + public alterRoleSetStatement(): AlterRoleSetStatementContext { + let localContext = new AlterRoleSetStatementContext(this.context, this.state); + this.enterRule(localContext, 30, PostgreSqlParser.RULE_alterRoleSetStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1719; this.match(PostgreSqlParser.ALTER); - this.state = 1846; + this.state = 1720; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 311)) { this.errorHandler.recoverInline(this); @@ -3781,22 +3726,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1848; + this.state = 1722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 1847; + this.state = 1721; this.match(PostgreSqlParser.ALL); } } - this.state = 1850; - this.rolespec(); - this.state = 1851; - this.opt_in_database(); - this.state = 1852; - this.setresetclause(); + this.state = 1724; + this.roleSpecification(); + this.state = 1725; + this.optionalInDatabase(); + this.state = 1726; + this.setResetClause(); } } catch (re) { @@ -3813,16 +3758,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public droprolestmt(): DroprolestmtContext { - let localContext = new DroprolestmtContext(this.context, this.state); - this.enterRule(localContext, 32, PostgreSqlParser.RULE_droprolestmt); + public dropRoleStatement(): DropRoleStatementContext { + let localContext = new DropRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 32, PostgreSqlParser.RULE_dropRoleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1854; + this.state = 1728; this.match(PostgreSqlParser.DROP); - this.state = 1855; + this.state = 1729; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 311)) { this.errorHandler.recoverInline(this); @@ -3831,20 +3776,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1858; + this.state = 1732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 1856; + this.state = 1730; this.match(PostgreSqlParser.IF_P); - this.state = 1857; + this.state = 1731; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 1860; - this.role_list(); + this.state = 1734; + this.roleList(); } } catch (re) { @@ -3861,22 +3806,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public creategroupstmt(): CreategroupstmtContext { - let localContext = new CreategroupstmtContext(this.context, this.state); - this.enterRule(localContext, 34, PostgreSqlParser.RULE_creategroupstmt); + public createGroupStatement(): CreateGroupStatementContext { + let localContext = new CreateGroupStatementContext(this.context, this.state); + this.enterRule(localContext, 34, PostgreSqlParser.RULE_createGroupStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1862; + this.state = 1736; this.match(PostgreSqlParser.CREATE); - this.state = 1863; + this.state = 1737; this.match(PostgreSqlParser.GROUP_P); - this.state = 1864; - this.roleid(); - this.state = 1865; - this.opt_with(); - this.state = 1866; - this.optrolelist(); + this.state = 1738; + this.roleId(); + this.state = 1739; + this.optionalWith(); + this.state = 1740; + this.optionalRoleList(); } } catch (re) { @@ -3893,24 +3838,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altergroupstmt(): AltergroupstmtContext { - let localContext = new AltergroupstmtContext(this.context, this.state); - this.enterRule(localContext, 36, PostgreSqlParser.RULE_altergroupstmt); + public alterGroupStatement(): AlterGroupStatementContext { + let localContext = new AlterGroupStatementContext(this.context, this.state); + this.enterRule(localContext, 36, PostgreSqlParser.RULE_alterGroupStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1868; + this.state = 1742; this.match(PostgreSqlParser.ALTER); - this.state = 1869; + this.state = 1743; this.match(PostgreSqlParser.GROUP_P); - this.state = 1870; - this.rolespec(); - this.state = 1871; - this.add_drop(); - this.state = 1872; + this.state = 1744; + this.roleSpecification(); + this.state = 1745; + this.addOrDrop(); + this.state = 1746; this.match(PostgreSqlParser.USER); - this.state = 1873; - this.role_list(); + this.state = 1747; + this.roleList(); } } catch (re) { @@ -3927,14 +3872,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public add_drop(): Add_dropContext { - let localContext = new Add_dropContext(this.context, this.state); - this.enterRule(localContext, 38, PostgreSqlParser.RULE_add_drop); + public addOrDrop(): AddOrDropContext { + let localContext = new AddOrDropContext(this.context, this.state); + this.enterRule(localContext, 38, PostgreSqlParser.RULE_addOrDrop); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1875; + this.state = 1749; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -3959,52 +3904,52 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createschemastmt(): CreateschemastmtContext { - let localContext = new CreateschemastmtContext(this.context, this.state); - this.enterRule(localContext, 40, PostgreSqlParser.RULE_createschemastmt); + public createSchemaStatement(): CreateSchemaStatementContext { + let localContext = new CreateSchemaStatementContext(this.context, this.state); + this.enterRule(localContext, 40, PostgreSqlParser.RULE_createSchemaStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1877; + this.state = 1751; this.match(PostgreSqlParser.CREATE); - this.state = 1878; + this.state = 1752; this.match(PostgreSqlParser.SCHEMA); - this.state = 1882; + this.state = 1756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 1879; + this.state = 1753; this.match(PostgreSqlParser.IF_P); - this.state = 1880; + this.state = 1754; this.match(PostgreSqlParser.NOT); - this.state = 1881; + this.state = 1755; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 1889; + this.state = 1763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1884; - this.optschemaname(); - this.state = 1885; + this.state = 1758; + this.optionalSchemaName(); + this.state = 1759; this.match(PostgreSqlParser.AUTHORIZATION); - this.state = 1886; - this.rolespec(); + this.state = 1760; + this.roleSpecification(); } break; case 2: { - this.state = 1888; - this.colid(); + this.state = 1762; + this.columnId(); } break; } - this.state = 1891; - this.optschemaeltlist(); + this.state = 1765; + this.optionalSchemaList(); } } catch (re) { @@ -4021,11 +3966,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optschemaname(): OptschemanameContext { - let localContext = new OptschemanameContext(this.context, this.state); - this.enterRule(localContext, 42, PostgreSqlParser.RULE_optschemaname); + public optionalSchemaName(): OptionalSchemaNameContext { + let localContext = new OptionalSchemaNameContext(this.context, this.state); + this.enterRule(localContext, 42, PostgreSqlParser.RULE_optionalSchemaName); try { - this.state = 1895; + this.state = 1769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -4549,8 +4494,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1893; - this.colid(); + this.state = 1767; + this.columnId(); } break; case PostgreSqlParser.AUTHORIZATION: @@ -4577,24 +4522,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optschemaeltlist(): OptschemaeltlistContext { - let localContext = new OptschemaeltlistContext(this.context, this.state); - this.enterRule(localContext, 44, PostgreSqlParser.RULE_optschemaeltlist); + public optionalSchemaList(): OptionalSchemaListContext { + let localContext = new OptionalSchemaListContext(this.context, this.state); + this.enterRule(localContext, 44, PostgreSqlParser.RULE_optionalSchemaList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1900; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 46 || _la === 65) { { { - this.state = 1897; - this.schema_stmt(); + this.state = 1771; + this.schemaStatement(); } } - this.state = 1902; + this.state = 1776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4614,53 +4559,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public schema_stmt(): Schema_stmtContext { - let localContext = new Schema_stmtContext(this.context, this.state); - this.enterRule(localContext, 46, PostgreSqlParser.RULE_schema_stmt); + public schemaStatement(): SchemaStatementContext { + let localContext = new SchemaStatementContext(this.context, this.state); + this.enterRule(localContext, 46, PostgreSqlParser.RULE_schemaStatement); try { - this.state = 1909; + this.state = 1783; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1903; - this.createstmt(); + this.state = 1777; + this.createStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1904; - this.indexstmt(); + this.state = 1778; + this.indexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1905; - this.createseqstmt(); + this.state = 1779; + this.createSequenceStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1906; - this.createtrigstmt(); + this.state = 1780; + this.createTriggerStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1907; - this.grantstmt(); + this.state = 1781; + this.grantStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1908; - this.viewstmt(); + this.state = 1782; + this.viewStatement(); } break; } @@ -4679,21 +4624,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public variablesetstmt(): VariablesetstmtContext { - let localContext = new VariablesetstmtContext(this.context, this.state); - this.enterRule(localContext, 48, PostgreSqlParser.RULE_variablesetstmt); + public variableSetStatement(): VariableSetStatementContext { + let localContext = new VariableSetStatementContext(this.context, this.state); + this.enterRule(localContext, 48, PostgreSqlParser.RULE_variableSetStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1911; + this.state = 1785; this.match(PostgreSqlParser.SET); - this.state = 1913; + this.state = 1787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 1912; + this.state = 1786; _la = this.tokenStream.LA(1); if(!(_la === 245 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -4705,8 +4650,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } break; } - this.state = 1915; - this.set_rest(); + this.state = 1789; + this.setStatementEnding(); } } catch (re) { @@ -4723,42 +4668,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public set_rest(): Set_restContext { - let localContext = new Set_restContext(this.context, this.state); - this.enterRule(localContext, 50, PostgreSqlParser.RULE_set_rest); + public setStatementEnding(): SetStatementEndingContext { + let localContext = new SetStatementEndingContext(this.context, this.state); + this.enterRule(localContext, 50, PostgreSqlParser.RULE_setStatementEnding); try { - this.state = 1925; + this.state = 1799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1917; + this.state = 1791; this.match(PostgreSqlParser.TRANSACTION); - this.state = 1918; - this.transaction_mode_list(); + this.state = 1792; + this.transactionModeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1919; + this.state = 1793; this.match(PostgreSqlParser.SESSION); - this.state = 1920; + this.state = 1794; this.match(PostgreSqlParser.CHARACTERISTICS); - this.state = 1921; + this.state = 1795; this.match(PostgreSqlParser.AS); - this.state = 1922; + this.state = 1796; this.match(PostgreSqlParser.TRANSACTION); - this.state = 1923; - this.transaction_mode_list(); + this.state = 1797; + this.transactionModeList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1924; - this.set_rest_more(); + this.state = 1798; + this.setStatementMore(); } break; } @@ -4777,16 +4722,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public generic_set(): Generic_setContext { - let localContext = new Generic_setContext(this.context, this.state); - this.enterRule(localContext, 52, PostgreSqlParser.RULE_generic_set); + public genericSetClause(): GenericSetClauseContext { + let localContext = new GenericSetClauseContext(this.context, this.state); + this.enterRule(localContext, 52, PostgreSqlParser.RULE_genericSetClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1927; - this.var_name(); - this.state = 1928; + this.state = 1801; + this.variableName(); + this.state = 1802; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4795,8 +4740,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1929; - this.var_list(); + this.state = 1803; + this.variableList(); } } catch (re) { @@ -4813,108 +4758,108 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public set_rest_more(): Set_rest_moreContext { - let localContext = new Set_rest_moreContext(this.context, this.state); - this.enterRule(localContext, 54, PostgreSqlParser.RULE_set_rest_more); + public setStatementMore(): SetStatementMoreContext { + let localContext = new SetStatementMoreContext(this.context, this.state); + this.enterRule(localContext, 54, PostgreSqlParser.RULE_setStatementMore); try { - this.state = 1956; + this.state = 1830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1931; - this.generic_set(); + this.state = 1805; + this.genericSetClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1932; - this.var_name(); - this.state = 1933; + this.state = 1806; + this.variableName(); + this.state = 1807; this.match(PostgreSqlParser.FROM); - this.state = 1934; + this.state = 1808; this.match(PostgreSqlParser.CURRENT_P); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1936; + this.state = 1810; this.match(PostgreSqlParser.TIME); - this.state = 1937; + this.state = 1811; this.match(PostgreSqlParser.ZONE); - this.state = 1938; - this.zone_value(); + this.state = 1812; + this.zoneValue(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1939; + this.state = 1813; this.match(PostgreSqlParser.CATALOG); - this.state = 1940; + this.state = 1814; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1941; + this.state = 1815; this.match(PostgreSqlParser.SCHEMA); - this.state = 1942; + this.state = 1816; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1943; + this.state = 1817; this.match(PostgreSqlParser.NAMES); - this.state = 1944; - this.opt_encoding(); + this.state = 1818; + this.optionalEncoding(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1945; + this.state = 1819; this.match(PostgreSqlParser.ROLE); - this.state = 1946; - this.nonreservedword_or_sconst(); + this.state = 1820; + this.nonReservedWordOrSconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1947; + this.state = 1821; this.match(PostgreSqlParser.SESSION); - this.state = 1948; + this.state = 1822; this.match(PostgreSqlParser.AUTHORIZATION); - this.state = 1949; - this.nonreservedword_or_sconst(); + this.state = 1823; + this.nonReservedWordOrSconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1950; + this.state = 1824; this.match(PostgreSqlParser.XML_P); - this.state = 1951; + this.state = 1825; this.match(PostgreSqlParser.OPTION); - this.state = 1952; - this.document_or_content(); + this.state = 1826; + this.documentOrContent(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1953; + this.state = 1827; this.match(PostgreSqlParser.TRANSACTION); - this.state = 1954; + this.state = 1828; this.match(PostgreSqlParser.SNAPSHOT); - this.state = 1955; + this.state = 1829; this.sconst(); } break; @@ -4934,28 +4879,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public var_name(): Var_nameContext { - let localContext = new Var_nameContext(this.context, this.state); - this.enterRule(localContext, 56, PostgreSqlParser.RULE_var_name); + public variableName(): VariableNameContext { + let localContext = new VariableNameContext(this.context, this.state); + this.enterRule(localContext, 56, PostgreSqlParser.RULE_variableName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1958; - this.colid(); - this.state = 1963; + this.state = 1832; + this.columnId(); + this.state = 1837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1959; + this.state = 1833; this.match(PostgreSqlParser.DOT); - this.state = 1960; - this.colid(); + this.state = 1834; + this.columnId(); } } - this.state = 1965; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4975,28 +4920,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public var_list(): Var_listContext { - let localContext = new Var_listContext(this.context, this.state); - this.enterRule(localContext, 58, PostgreSqlParser.RULE_var_list); + public variableList(): VariableListContext { + let localContext = new VariableListContext(this.context, this.state); + this.enterRule(localContext, 58, PostgreSqlParser.RULE_variableList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1966; - this.var_value(); - this.state = 1971; + this.state = 1840; + this.variableValue(); + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1967; + this.state = 1841; this.match(PostgreSqlParser.COMMA); - this.state = 1968; - this.var_value(); + this.state = 1842; + this.variableValue(); } } - this.state = 1973; + this.state = 1847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5016,11 +4961,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public var_value(): Var_valueContext { - let localContext = new Var_valueContext(this.context, this.state); - this.enterRule(localContext, 60, PostgreSqlParser.RULE_var_value); + public variableValue(): VariableValueContext { + let localContext = new VariableValueContext(this.context, this.state); + this.enterRule(localContext, 60, PostgreSqlParser.RULE_variableValue); try { - this.state = 1976; + this.state = 1850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -5568,8 +5513,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1974; - this.opt_boolean_or_string(); + this.state = 1848; + this.booleanOrString(); } break; case PostgreSqlParser.PLUS: @@ -5578,8 +5523,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1975; - this.numericonly(); + this.state = 1849; + this.numericOnly(); } break; default: @@ -5600,20 +5545,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public iso_level(): Iso_levelContext { - let localContext = new Iso_levelContext(this.context, this.state); - this.enterRule(localContext, 62, PostgreSqlParser.RULE_iso_level); + public isoLevel(): IsoLevelContext { + let localContext = new IsoLevelContext(this.context, this.state); + this.enterRule(localContext, 62, PostgreSqlParser.RULE_isoLevel); let _la: number; try { - this.state = 1983; + this.state = 1857; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.READ: this.enterOuterAlt(localContext, 1); { - this.state = 1978; + this.state = 1852; this.match(PostgreSqlParser.READ); - this.state = 1979; + this.state = 1853; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -5627,16 +5572,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1980; + this.state = 1854; this.match(PostgreSqlParser.REPEATABLE); - this.state = 1981; + this.state = 1855; this.match(PostgreSqlParser.READ); } break; case PostgreSqlParser.SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1982; + this.state = 1856; this.match(PostgreSqlParser.SERIALIZABLE); } break; @@ -5658,31 +5603,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_boolean_or_string(): Opt_boolean_or_stringContext { - let localContext = new Opt_boolean_or_stringContext(this.context, this.state); - this.enterRule(localContext, 64, PostgreSqlParser.RULE_opt_boolean_or_string); + public booleanOrString(): BooleanOrStringContext { + let localContext = new BooleanOrStringContext(this.context, this.state); + this.enterRule(localContext, 64, PostgreSqlParser.RULE_booleanOrString); try { - this.state = 1989; + this.state = 1863; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.TRUE_P: this.enterOuterAlt(localContext, 1); { - this.state = 1985; + this.state = 1859; this.match(PostgreSqlParser.TRUE_P); } break; case PostgreSqlParser.FALSE_P: this.enterOuterAlt(localContext, 2); { - this.state = 1986; + this.state = 1860; this.match(PostgreSqlParser.FALSE_P); } break; case PostgreSqlParser.ON: this.enterOuterAlt(localContext, 3); { - this.state = 1987; + this.state = 1861; this.match(PostgreSqlParser.ON); } break; @@ -6228,8 +6173,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1988; - this.nonreservedword_or_sconst(); + this.state = 1862; + this.nonReservedWordOrSconst(); } break; default: @@ -6250,71 +6195,71 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public zone_value(): Zone_valueContext { - let localContext = new Zone_valueContext(this.context, this.state); - this.enterRule(localContext, 66, PostgreSqlParser.RULE_zone_value); + public zoneValue(): ZoneValueContext { + let localContext = new ZoneValueContext(this.context, this.state); + this.enterRule(localContext, 66, PostgreSqlParser.RULE_zoneValue); try { - this.state = 2006; + this.state = 1880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1991; + this.state = 1865; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1992; + this.state = 1866; this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1993; - this.constinterval(); - this.state = 1994; + this.state = 1867; + this.constInterval(); + this.state = 1868; this.sconst(); - this.state = 1995; - this.opt_interval(); + this.state = 1869; + this.optionalInterval(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1997; - this.constinterval(); - this.state = 1998; + this.state = 1871; + this.constInterval(); + this.state = 1872; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1999; + this.state = 1873; this.iconst(); - this.state = 2000; + this.state = 1874; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2001; + this.state = 1875; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2003; - this.numericonly(); + this.state = 1877; + this.numericOnly(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2004; + this.state = 1878; this.match(PostgreSqlParser.DEFAULT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2005; + this.state = 1879; this.match(PostgreSqlParser.LOCAL); } break; @@ -6334,11 +6279,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_encoding(): Opt_encodingContext { - let localContext = new Opt_encodingContext(this.context, this.state); - this.enterRule(localContext, 68, PostgreSqlParser.RULE_opt_encoding); + public optionalEncoding(): OptionalEncodingContext { + let localContext = new OptionalEncodingContext(this.context, this.state); + this.enterRule(localContext, 68, PostgreSqlParser.RULE_optionalEncoding); try { - this.state = 2011; + this.state = 1885; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -6347,14 +6292,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 1882; this.sconst(); } break; case PostgreSqlParser.DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2009; + this.state = 1883; this.match(PostgreSqlParser.DEFAULT); } break; @@ -6405,11 +6350,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext { - let localContext = new Nonreservedword_or_sconstContext(this.context, this.state); - this.enterRule(localContext, 70, PostgreSqlParser.RULE_nonreservedword_or_sconst); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext { + let localContext = new NonReservedWordOrSconstContext(this.context, this.state); + this.enterRule(localContext, 70, PostgreSqlParser.RULE_nonReservedWordOrSconst); try { - this.state = 2015; + this.state = 1889; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -6950,8 +6895,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2013; - this.nonreservedword(); + this.state = 1887; + this.nonReservedWord(); } break; case PostgreSqlParser.StringConstant: @@ -6960,7 +6905,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 2014; + this.state = 1888; this.sconst(); } break; @@ -6982,16 +6927,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public variableresetstmt(): VariableresetstmtContext { - let localContext = new VariableresetstmtContext(this.context, this.state); - this.enterRule(localContext, 72, PostgreSqlParser.RULE_variableresetstmt); + public variableResetStatement(): VariableResetStatementContext { + let localContext = new VariableResetStatementContext(this.context, this.state); + this.enterRule(localContext, 72, PostgreSqlParser.RULE_variableResetStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2017; + this.state = 1891; this.match(PostgreSqlParser.RESET); - this.state = 2018; - this.reset_rest(); + this.state = 1892; + this.resetClauseRest(); } } catch (re) { @@ -7008,46 +6953,46 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reset_rest(): Reset_restContext { - let localContext = new Reset_restContext(this.context, this.state); - this.enterRule(localContext, 74, PostgreSqlParser.RULE_reset_rest); + public resetClauseRest(): ResetClauseRestContext { + let localContext = new ResetClauseRestContext(this.context, this.state); + this.enterRule(localContext, 74, PostgreSqlParser.RULE_resetClauseRest); try { - this.state = 2028; + this.state = 1902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2020; - this.generic_reset(); + this.state = 1894; + this.genericResetClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2021; + this.state = 1895; this.match(PostgreSqlParser.TIME); - this.state = 2022; + this.state = 1896; this.match(PostgreSqlParser.ZONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2023; + this.state = 1897; this.match(PostgreSqlParser.TRANSACTION); - this.state = 2024; + this.state = 1898; this.match(PostgreSqlParser.ISOLATION); - this.state = 2025; + this.state = 1899; this.match(PostgreSqlParser.LEVEL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2026; + this.state = 1900; this.match(PostgreSqlParser.SESSION); - this.state = 2027; + this.state = 1901; this.match(PostgreSqlParser.AUTHORIZATION); } break; @@ -7067,11 +7012,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public generic_reset(): Generic_resetContext { - let localContext = new Generic_resetContext(this.context, this.state); - this.enterRule(localContext, 76, PostgreSqlParser.RULE_generic_reset); + public genericResetClause(): GenericResetClauseContext { + let localContext = new GenericResetClauseContext(this.context, this.state); + this.enterRule(localContext, 76, PostgreSqlParser.RULE_genericResetClause); try { - this.state = 2032; + this.state = 1906; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -7595,14 +7540,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2030; - this.var_name(); + this.state = 1904; + this.variableName(); } break; case PostgreSqlParser.ALL: this.enterOuterAlt(localContext, 2); { - this.state = 2031; + this.state = 1905; this.match(PostgreSqlParser.ALL); } break; @@ -7624,27 +7569,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public setresetclause(): SetresetclauseContext { - let localContext = new SetresetclauseContext(this.context, this.state); - this.enterRule(localContext, 78, PostgreSqlParser.RULE_setresetclause); + public setResetClause(): SetResetClauseContext { + let localContext = new SetResetClauseContext(this.context, this.state); + this.enterRule(localContext, 78, PostgreSqlParser.RULE_setResetClause); try { - this.state = 2037; + this.state = 1911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 1); { - this.state = 2034; + this.state = 1908; this.match(PostgreSqlParser.SET); - this.state = 2035; - this.set_rest(); + this.state = 1909; + this.setStatementEnding(); } break; case PostgreSqlParser.RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2036; - this.variableresetstmt(); + this.state = 1910; + this.variableResetStatement(); } break; default: @@ -7665,27 +7610,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public functionsetresetclause(): FunctionsetresetclauseContext { - let localContext = new FunctionsetresetclauseContext(this.context, this.state); - this.enterRule(localContext, 80, PostgreSqlParser.RULE_functionsetresetclause); + public functionSetResetClause(): FunctionSetResetClauseContext { + let localContext = new FunctionSetResetClauseContext(this.context, this.state); + this.enterRule(localContext, 80, PostgreSqlParser.RULE_functionSetResetClause); try { - this.state = 2042; + this.state = 1916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 1913; this.match(PostgreSqlParser.SET); - this.state = 2040; - this.set_rest_more(); + this.state = 1914; + this.setStatementMore(); } break; case PostgreSqlParser.RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2041; - this.variableresetstmt(); + this.state = 1915; + this.variableResetStatement(); } break; default: @@ -7706,52 +7651,52 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public variableshowstmt(): VariableshowstmtContext { - let localContext = new VariableshowstmtContext(this.context, this.state); - this.enterRule(localContext, 82, PostgreSqlParser.RULE_variableshowstmt); + public variableShowStatement(): VariableShowStatementContext { + let localContext = new VariableShowStatementContext(this.context, this.state); + this.enterRule(localContext, 82, PostgreSqlParser.RULE_variableShowStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2044; + this.state = 1918; this.match(PostgreSqlParser.SHOW); - this.state = 2054; + this.state = 1928; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: { - this.state = 2045; - this.var_name(); + this.state = 1919; + this.variableName(); } break; case 2: { - this.state = 2046; + this.state = 1920; this.match(PostgreSqlParser.TIME); - this.state = 2047; + this.state = 1921; this.match(PostgreSqlParser.ZONE); } break; case 3: { - this.state = 2048; + this.state = 1922; this.match(PostgreSqlParser.TRANSACTION); - this.state = 2049; + this.state = 1923; this.match(PostgreSqlParser.ISOLATION); - this.state = 2050; + this.state = 1924; this.match(PostgreSqlParser.LEVEL); } break; case 4: { - this.state = 2051; + this.state = 1925; this.match(PostgreSqlParser.SESSION); - this.state = 2052; + this.state = 1926; this.match(PostgreSqlParser.AUTHORIZATION); } break; case 5: { - this.state = 2053; + this.state = 1927; this.match(PostgreSqlParser.ALL); } break; @@ -7772,20 +7717,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraintssetstmt(): ConstraintssetstmtContext { - let localContext = new ConstraintssetstmtContext(this.context, this.state); - this.enterRule(localContext, 84, PostgreSqlParser.RULE_constraintssetstmt); + public setConstraintsStatement(): SetConstraintsStatementContext { + let localContext = new SetConstraintsStatementContext(this.context, this.state); + this.enterRule(localContext, 84, PostgreSqlParser.RULE_setConstraintsStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2056; + this.state = 1930; this.match(PostgreSqlParser.SET); - this.state = 2057; + this.state = 1931; this.match(PostgreSqlParser.CONSTRAINTS); - this.state = 2058; - this.constraints_set_list(); - this.state = 2059; - this.constraints_set_mode(); + this.state = 1932; + this.constraintsSetList(); + this.state = 1933; + this.constraintsSetMode(); } } catch (re) { @@ -7802,17 +7747,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraints_set_list(): Constraints_set_listContext { - let localContext = new Constraints_set_listContext(this.context, this.state); - this.enterRule(localContext, 86, PostgreSqlParser.RULE_constraints_set_list); + public constraintsSetList(): ConstraintsSetListContext { + let localContext = new ConstraintsSetListContext(this.context, this.state); + this.enterRule(localContext, 86, PostgreSqlParser.RULE_constraintsSetList); try { - this.state = 2063; + this.state = 1937; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 1935; this.match(PostgreSqlParser.ALL); } break; @@ -8337,8 +8282,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2062; - this.qualified_name_list(); + this.state = 1936; + this.qualifiedNameList(); } break; default: @@ -8359,14 +8304,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraints_set_mode(): Constraints_set_modeContext { - let localContext = new Constraints_set_modeContext(this.context, this.state); - this.enterRule(localContext, 88, PostgreSqlParser.RULE_constraints_set_mode); + public constraintsSetMode(): ConstraintsSetModeContext { + let localContext = new ConstraintsSetModeContext(this.context, this.state); + this.enterRule(localContext, 88, PostgreSqlParser.RULE_constraintsSetMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2065; + this.state = 1939; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -8391,13 +8336,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public checkpointstmt(): CheckpointstmtContext { - let localContext = new CheckpointstmtContext(this.context, this.state); - this.enterRule(localContext, 90, PostgreSqlParser.RULE_checkpointstmt); + public checkpointStatement(): CheckpointStatementContext { + let localContext = new CheckpointStatementContext(this.context, this.state); + this.enterRule(localContext, 90, PostgreSqlParser.RULE_checkpointStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2067; + this.state = 1941; this.match(PostgreSqlParser.CHECKPOINT); } } @@ -8415,16 +8360,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public discardstmt(): DiscardstmtContext { - let localContext = new DiscardstmtContext(this.context, this.state); - this.enterRule(localContext, 92, PostgreSqlParser.RULE_discardstmt); + public discardStatement(): DiscardStatementContext { + let localContext = new DiscardStatementContext(this.context, this.state); + this.enterRule(localContext, 92, PostgreSqlParser.RULE_discardStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2069; + this.state = 1943; this.match(PostgreSqlParser.DISCARD); - this.state = 2070; + this.state = 1944; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 281 || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -8449,36 +8394,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altertablestmt(): AltertablestmtContext { - let localContext = new AltertablestmtContext(this.context, this.state); - this.enterRule(localContext, 94, PostgreSqlParser.RULE_altertablestmt); + public alterTableStatement(): AlterTableStatementContext { + let localContext = new AlterTableStatementContext(this.context, this.state); + this.enterRule(localContext, 94, PostgreSqlParser.RULE_alterTableStatement); let _la: number; try { - this.state = 2181; + this.state = 2055; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2072; + this.state = 1946; this.match(PostgreSqlParser.ALTER); - this.state = 2073; + this.state = 1947; this.match(PostgreSqlParser.TABLE); - this.state = 2076; + this.state = 1950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 2074; + this.state = 1948; this.match(PostgreSqlParser.IF_P); - this.state = 2075; + this.state = 1949; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2078; - this.relation_expr(); - this.state = 2081; + this.state = 1952; + this.relationExpression(); + this.state = 1955; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.NOT: @@ -8499,15 +8444,15 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SET: case PostgreSqlParser.VALIDATE: { - this.state = 2079; - this.alter_table_cmds(); + this.state = 1953; + this.alterTableCommands(); } break; case PostgreSqlParser.ATTACH: case PostgreSqlParser.DETACH: { - this.state = 2080; - this.partition_cmd(); + this.state = 1954; + this.partitionCommand(); } break; default: @@ -8518,64 +8463,64 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2083; + this.state = 1957; this.match(PostgreSqlParser.ALTER); - this.state = 2084; + this.state = 1958; this.match(PostgreSqlParser.TABLE); - this.state = 2085; + this.state = 1959; this.match(PostgreSqlParser.ALL); - this.state = 2086; + this.state = 1960; this.match(PostgreSqlParser.IN_P); - this.state = 2087; + this.state = 1961; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2088; + this.state = 1962; this.name(); - this.state = 2092; + this.state = 1966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274) { { - this.state = 2089; + this.state = 1963; this.match(PostgreSqlParser.OWNED); - this.state = 2090; + this.state = 1964; this.match(PostgreSqlParser.BY); - this.state = 2091; - this.role_list(); + this.state = 1965; + this.roleList(); } } - this.state = 2094; + this.state = 1968; this.match(PostgreSqlParser.SET); - this.state = 2095; + this.state = 1969; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2096; + this.state = 1970; this.name(); - this.state = 2097; - this.opt_nowait(); + this.state = 1971; + this.optionalNowait(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2099; + this.state = 1973; this.match(PostgreSqlParser.ALTER); - this.state = 2100; + this.state = 1974; this.match(PostgreSqlParser.INDEX); - this.state = 2103; + this.state = 1977; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 2101; + this.state = 1975; this.match(PostgreSqlParser.IF_P); - this.state = 2102; + this.state = 1976; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2105; - this.qualified_name(); - this.state = 2108; + this.state = 1979; + this.qualifiedName(); + this.state = 1982; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.NOT: @@ -8596,14 +8541,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SET: case PostgreSqlParser.VALIDATE: { - this.state = 2106; - this.alter_table_cmds(); + this.state = 1980; + this.alterTableCommands(); } break; case PostgreSqlParser.ATTACH: { - this.state = 2107; - this.index_partition_cmd(); + this.state = 1981; + this.indexPartitionCommand(); } break; default: @@ -8614,185 +8559,185 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2110; + this.state = 1984; this.match(PostgreSqlParser.ALTER); - this.state = 2111; + this.state = 1985; this.match(PostgreSqlParser.INDEX); - this.state = 2112; + this.state = 1986; this.match(PostgreSqlParser.ALL); - this.state = 2113; + this.state = 1987; this.match(PostgreSqlParser.IN_P); - this.state = 2114; + this.state = 1988; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2115; + this.state = 1989; this.name(); - this.state = 2119; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274) { { - this.state = 2116; + this.state = 1990; this.match(PostgreSqlParser.OWNED); - this.state = 2117; + this.state = 1991; this.match(PostgreSqlParser.BY); - this.state = 2118; - this.role_list(); + this.state = 1992; + this.roleList(); } } - this.state = 2121; + this.state = 1995; this.match(PostgreSqlParser.SET); - this.state = 2122; + this.state = 1996; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2123; + this.state = 1997; this.name(); - this.state = 2124; - this.opt_nowait(); + this.state = 1998; + this.optionalNowait(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2126; + this.state = 2000; this.match(PostgreSqlParser.ALTER); - this.state = 2127; + this.state = 2001; this.match(PostgreSqlParser.SEQUENCE); - this.state = 2130; + this.state = 2004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 2128; + this.state = 2002; this.match(PostgreSqlParser.IF_P); - this.state = 2129; + this.state = 2003; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2132; - this.qualified_name(); - this.state = 2133; - this.alter_table_cmds(); + this.state = 2006; + this.qualifiedName(); + this.state = 2007; + this.alterTableCommands(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2135; + this.state = 2009; this.match(PostgreSqlParser.ALTER); - this.state = 2136; + this.state = 2010; this.match(PostgreSqlParser.VIEW); - this.state = 2139; + this.state = 2013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 2137; + this.state = 2011; this.match(PostgreSqlParser.IF_P); - this.state = 2138; + this.state = 2012; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2141; - this.qualified_name(); - this.state = 2142; - this.alter_table_cmds(); + this.state = 2015; + this.qualifiedName(); + this.state = 2016; + this.alterTableCommands(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2144; + this.state = 2018; this.match(PostgreSqlParser.ALTER); - this.state = 2145; + this.state = 2019; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 2146; + this.state = 2020; this.match(PostgreSqlParser.VIEW); - this.state = 2149; + this.state = 2023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 2147; + this.state = 2021; this.match(PostgreSqlParser.IF_P); - this.state = 2148; + this.state = 2022; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2151; - this.qualified_name(); - this.state = 2152; - this.alter_table_cmds(); + this.state = 2025; + this.qualifiedName(); + this.state = 2026; + this.alterTableCommands(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2154; + this.state = 2028; this.match(PostgreSqlParser.ALTER); - this.state = 2155; + this.state = 2029; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 2156; + this.state = 2030; this.match(PostgreSqlParser.VIEW); - this.state = 2157; + this.state = 2031; this.match(PostgreSqlParser.ALL); - this.state = 2158; + this.state = 2032; this.match(PostgreSqlParser.IN_P); - this.state = 2159; + this.state = 2033; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2160; + this.state = 2034; this.name(); - this.state = 2164; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274) { { - this.state = 2161; + this.state = 2035; this.match(PostgreSqlParser.OWNED); - this.state = 2162; + this.state = 2036; this.match(PostgreSqlParser.BY); - this.state = 2163; - this.role_list(); + this.state = 2037; + this.roleList(); } } - this.state = 2166; + this.state = 2040; this.match(PostgreSqlParser.SET); - this.state = 2167; + this.state = 2041; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2168; + this.state = 2042; this.name(); - this.state = 2169; - this.opt_nowait(); + this.state = 2043; + this.optionalNowait(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2171; + this.state = 2045; this.match(PostgreSqlParser.ALTER); - this.state = 2172; + this.state = 2046; this.match(PostgreSqlParser.FOREIGN); - this.state = 2173; + this.state = 2047; this.match(PostgreSqlParser.TABLE); - this.state = 2176; + this.state = 2050; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 2174; + this.state = 2048; this.match(PostgreSqlParser.IF_P); - this.state = 2175; + this.state = 2049; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2178; - this.relation_expr(); - this.state = 2179; - this.alter_table_cmds(); + this.state = 2052; + this.relationExpression(); + this.state = 2053; + this.alterTableCommands(); } break; } @@ -8811,28 +8756,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_table_cmds(): Alter_table_cmdsContext { - let localContext = new Alter_table_cmdsContext(this.context, this.state); - this.enterRule(localContext, 96, PostgreSqlParser.RULE_alter_table_cmds); + public alterTableCommands(): AlterTableCommandsContext { + let localContext = new AlterTableCommandsContext(this.context, this.state); + this.enterRule(localContext, 96, PostgreSqlParser.RULE_alterTableCommands); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2183; - this.alter_table_cmd(); - this.state = 2188; + this.state = 2057; + this.alterTableCommand(); + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2184; + this.state = 2058; this.match(PostgreSqlParser.COMMA); - this.state = 2185; - this.alter_table_cmd(); + this.state = 2059; + this.alterTableCommand(); } } - this.state = 2190; + this.state = 2064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8852,35 +8797,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public partition_cmd(): Partition_cmdContext { - let localContext = new Partition_cmdContext(this.context, this.state); - this.enterRule(localContext, 98, PostgreSqlParser.RULE_partition_cmd); + public partitionCommand(): PartitionCommandContext { + let localContext = new PartitionCommandContext(this.context, this.state); + this.enterRule(localContext, 98, PostgreSqlParser.RULE_partitionCommand); try { - this.state = 2199; + this.state = 2073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2065; this.match(PostgreSqlParser.ATTACH); - this.state = 2192; + this.state = 2066; this.match(PostgreSqlParser.PARTITION); - this.state = 2193; - this.qualified_name(); - this.state = 2194; - this.partitionboundspec(); + this.state = 2067; + this.qualifiedName(); + this.state = 2068; + this.partitionBoundSpecification(); } break; case PostgreSqlParser.DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 2196; + this.state = 2070; this.match(PostgreSqlParser.DETACH); - this.state = 2197; + this.state = 2071; this.match(PostgreSqlParser.PARTITION); - this.state = 2198; - this.qualified_name(); + this.state = 2072; + this.qualifiedName(); } break; default: @@ -8901,18 +8846,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public index_partition_cmd(): Index_partition_cmdContext { - let localContext = new Index_partition_cmdContext(this.context, this.state); - this.enterRule(localContext, 100, PostgreSqlParser.RULE_index_partition_cmd); + public indexPartitionCommand(): IndexPartitionCommandContext { + let localContext = new IndexPartitionCommandContext(this.context, this.state); + this.enterRule(localContext, 100, PostgreSqlParser.RULE_indexPartitionCommand); try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2075; this.match(PostgreSqlParser.ATTACH); - this.state = 2202; + this.state = 2076; this.match(PostgreSqlParser.PARTITION); - this.state = 2203; - this.qualified_name(); + this.state = 2077; + this.qualifiedName(); } } catch (re) { @@ -8929,763 +8874,763 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_table_cmd(): Alter_table_cmdContext { - let localContext = new Alter_table_cmdContext(this.context, this.state); - this.enterRule(localContext, 102, PostgreSqlParser.RULE_alter_table_cmd); + public alterTableCommand(): AlterTableCommandContext { + let localContext = new AlterTableCommandContext(this.context, this.state); + this.enterRule(localContext, 102, PostgreSqlParser.RULE_alterTableCommand); try { - this.state = 2457; + this.state = 2331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2079; this.match(PostgreSqlParser.ADD_P); - this.state = 2206; - this.columnDef(); + this.state = 2080; + this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2207; + this.state = 2081; this.match(PostgreSqlParser.ADD_P); - this.state = 2208; + this.state = 2082; this.match(PostgreSqlParser.IF_P); - this.state = 2209; + this.state = 2083; this.match(PostgreSqlParser.NOT); - this.state = 2210; + this.state = 2084; this.match(PostgreSqlParser.EXISTS); - this.state = 2211; - this.columnDef(); + this.state = 2085; + this.columnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2212; + this.state = 2086; this.match(PostgreSqlParser.ADD_P); - this.state = 2213; + this.state = 2087; this.match(PostgreSqlParser.COLUMN); - this.state = 2214; - this.columnDef(); + this.state = 2088; + this.columnDefinition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2215; + this.state = 2089; this.match(PostgreSqlParser.ADD_P); - this.state = 2216; + this.state = 2090; this.match(PostgreSqlParser.COLUMN); - this.state = 2217; + this.state = 2091; this.match(PostgreSqlParser.IF_P); - this.state = 2218; + this.state = 2092; this.match(PostgreSqlParser.NOT); - this.state = 2219; + this.state = 2093; this.match(PostgreSqlParser.EXISTS); - this.state = 2220; - this.columnDef(); + this.state = 2094; + this.columnDefinition(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2221; + this.state = 2095; this.match(PostgreSqlParser.ALTER); - this.state = 2222; - this.opt_column(); - this.state = 2223; - this.colid(); - this.state = 2224; - this.alter_column_default(); + this.state = 2096; + this.optionalColumn(); + this.state = 2097; + this.columnId(); + this.state = 2098; + this.alterColumnDefault(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2226; + this.state = 2100; this.match(PostgreSqlParser.ALTER); - this.state = 2227; - this.opt_column(); - this.state = 2228; - this.colid(); - this.state = 2229; + this.state = 2101; + this.optionalColumn(); + this.state = 2102; + this.columnId(); + this.state = 2103; this.match(PostgreSqlParser.DROP); - this.state = 2230; + this.state = 2104; this.match(PostgreSqlParser.NOT); - this.state = 2231; + this.state = 2105; this.match(PostgreSqlParser.NULL_P); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2233; + this.state = 2107; this.match(PostgreSqlParser.ALTER); - this.state = 2234; - this.opt_column(); - this.state = 2235; - this.colid(); - this.state = 2236; + this.state = 2108; + this.optionalColumn(); + this.state = 2109; + this.columnId(); + this.state = 2110; this.match(PostgreSqlParser.SET); - this.state = 2237; + this.state = 2111; this.match(PostgreSqlParser.NOT); - this.state = 2238; + this.state = 2112; this.match(PostgreSqlParser.NULL_P); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2240; + this.state = 2114; this.match(PostgreSqlParser.ALTER); - this.state = 2241; - this.opt_column(); - this.state = 2242; - this.colid(); - this.state = 2243; + this.state = 2115; + this.optionalColumn(); + this.state = 2116; + this.columnId(); + this.state = 2117; this.match(PostgreSqlParser.DROP); - this.state = 2244; + this.state = 2118; this.match(PostgreSqlParser.EXPRESSION); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2246; + this.state = 2120; this.match(PostgreSqlParser.ALTER); - this.state = 2247; - this.opt_column(); - this.state = 2248; - this.colid(); - this.state = 2249; + this.state = 2121; + this.optionalColumn(); + this.state = 2122; + this.columnId(); + this.state = 2123; this.match(PostgreSqlParser.DROP); - this.state = 2250; + this.state = 2124; this.match(PostgreSqlParser.EXPRESSION); - this.state = 2251; + this.state = 2125; this.match(PostgreSqlParser.IF_P); - this.state = 2252; + this.state = 2126; this.match(PostgreSqlParser.EXISTS); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2254; + this.state = 2128; this.match(PostgreSqlParser.ALTER); - this.state = 2255; - this.opt_column(); - this.state = 2256; - this.colid(); - this.state = 2257; + this.state = 2129; + this.optionalColumn(); + this.state = 2130; + this.columnId(); + this.state = 2131; this.match(PostgreSqlParser.SET); - this.state = 2258; + this.state = 2132; this.match(PostgreSqlParser.STATISTICS); - this.state = 2259; - this.signediconst(); + this.state = 2133; + this.signedIconst(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2261; + this.state = 2135; this.match(PostgreSqlParser.ALTER); - this.state = 2262; - this.opt_column(); - this.state = 2263; + this.state = 2136; + this.optionalColumn(); + this.state = 2137; this.iconst(); - this.state = 2264; + this.state = 2138; this.match(PostgreSqlParser.SET); - this.state = 2265; + this.state = 2139; this.match(PostgreSqlParser.STATISTICS); - this.state = 2266; - this.signediconst(); + this.state = 2140; + this.signedIconst(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2268; + this.state = 2142; this.match(PostgreSqlParser.ALTER); - this.state = 2269; - this.opt_column(); - this.state = 2270; - this.colid(); - this.state = 2271; + this.state = 2143; + this.optionalColumn(); + this.state = 2144; + this.columnId(); + this.state = 2145; this.match(PostgreSqlParser.SET); - this.state = 2272; - this.reloptions(); + this.state = 2146; + this.relOptions(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2274; + this.state = 2148; this.match(PostgreSqlParser.ALTER); - this.state = 2275; - this.opt_column(); - this.state = 2276; - this.colid(); - this.state = 2277; + this.state = 2149; + this.optionalColumn(); + this.state = 2150; + this.columnId(); + this.state = 2151; this.match(PostgreSqlParser.RESET); - this.state = 2278; - this.reloptions(); + this.state = 2152; + this.relOptions(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2280; + this.state = 2154; this.match(PostgreSqlParser.ALTER); - this.state = 2281; - this.opt_column(); - this.state = 2282; - this.colid(); - this.state = 2283; + this.state = 2155; + this.optionalColumn(); + this.state = 2156; + this.columnId(); + this.state = 2157; this.match(PostgreSqlParser.SET); - this.state = 2284; + this.state = 2158; this.match(PostgreSqlParser.STORAGE); - this.state = 2285; - this.colid(); + this.state = 2159; + this.columnId(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2287; + this.state = 2161; this.match(PostgreSqlParser.ALTER); - this.state = 2288; - this.opt_column(); - this.state = 2289; - this.colid(); - this.state = 2290; + this.state = 2162; + this.optionalColumn(); + this.state = 2163; + this.columnId(); + this.state = 2164; this.match(PostgreSqlParser.ADD_P); - this.state = 2291; + this.state = 2165; this.match(PostgreSqlParser.GENERATED); - this.state = 2292; - this.generated_when(); - this.state = 2293; + this.state = 2166; + this.generatedWhen(); + this.state = 2167; this.match(PostgreSqlParser.AS); - this.state = 2294; + this.state = 2168; this.match(PostgreSqlParser.IDENTITY_P); - this.state = 2295; - this.optparenthesizedseqoptlist(); + this.state = 2169; + this.optionalParenthesizedSeqOptionsList(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2297; + this.state = 2171; this.match(PostgreSqlParser.ALTER); - this.state = 2298; - this.opt_column(); - this.state = 2299; - this.colid(); - this.state = 2300; - this.alter_identity_column_option_list(); + this.state = 2172; + this.optionalColumn(); + this.state = 2173; + this.columnId(); + this.state = 2174; + this.alterIdentityColumnOptionList(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2302; + this.state = 2176; this.match(PostgreSqlParser.ALTER); - this.state = 2303; - this.opt_column(); - this.state = 2304; - this.colid(); - this.state = 2305; + this.state = 2177; + this.optionalColumn(); + this.state = 2178; + this.columnId(); + this.state = 2179; this.match(PostgreSqlParser.DROP); - this.state = 2306; + this.state = 2180; this.match(PostgreSqlParser.IDENTITY_P); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2308; + this.state = 2182; this.match(PostgreSqlParser.ALTER); - this.state = 2309; - this.opt_column(); - this.state = 2310; - this.colid(); - this.state = 2311; + this.state = 2183; + this.optionalColumn(); + this.state = 2184; + this.columnId(); + this.state = 2185; this.match(PostgreSqlParser.DROP); - this.state = 2312; + this.state = 2186; this.match(PostgreSqlParser.IDENTITY_P); - this.state = 2313; + this.state = 2187; this.match(PostgreSqlParser.IF_P); - this.state = 2314; + this.state = 2188; this.match(PostgreSqlParser.EXISTS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2316; + this.state = 2190; this.match(PostgreSqlParser.DROP); - this.state = 2317; - this.opt_column(); - this.state = 2318; + this.state = 2191; + this.optionalColumn(); + this.state = 2192; this.match(PostgreSqlParser.IF_P); - this.state = 2319; + this.state = 2193; this.match(PostgreSqlParser.EXISTS); - this.state = 2320; - this.colid(); - this.state = 2321; - this.opt_drop_behavior(); + this.state = 2194; + this.columnId(); + this.state = 2195; + this.optionalDropBehavior(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 2323; + this.state = 2197; this.match(PostgreSqlParser.DROP); - this.state = 2324; - this.opt_column(); - this.state = 2325; - this.colid(); - this.state = 2326; - this.opt_drop_behavior(); + this.state = 2198; + this.optionalColumn(); + this.state = 2199; + this.columnId(); + this.state = 2200; + this.optionalDropBehavior(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 2328; + this.state = 2202; this.match(PostgreSqlParser.ALTER); - this.state = 2329; - this.opt_column(); - this.state = 2330; - this.colid(); - this.state = 2331; - this.opt_set_data(); - this.state = 2332; + this.state = 2203; + this.optionalColumn(); + this.state = 2204; + this.columnId(); + this.state = 2205; + this.optionalSetData(); + this.state = 2206; this.match(PostgreSqlParser.TYPE_P); - this.state = 2333; - this.typename(); - this.state = 2334; - this.opt_collate_clause(); - this.state = 2335; - this.alter_using(); + this.state = 2207; + this.typeName(); + this.state = 2208; + this.optionalCollateClause(); + this.state = 2209; + this.alterUsing(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 2337; + this.state = 2211; this.match(PostgreSqlParser.ALTER); - this.state = 2338; - this.opt_column(); - this.state = 2339; - this.colid(); - this.state = 2340; - this.alter_generic_options(); + this.state = 2212; + this.optionalColumn(); + this.state = 2213; + this.columnId(); + this.state = 2214; + this.alterGenericOptions(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 2342; + this.state = 2216; this.match(PostgreSqlParser.ADD_P); - this.state = 2343; - this.tableconstraint(); + this.state = 2217; + this.tableConstraint(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 2344; + this.state = 2218; this.match(PostgreSqlParser.ALTER); - this.state = 2345; + this.state = 2219; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2346; + this.state = 2220; this.name(); - this.state = 2347; - this.constraintattributespec(); + this.state = 2221; + this.constraintAttributeSpecification(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 2349; + this.state = 2223; this.match(PostgreSqlParser.VALIDATE); - this.state = 2350; + this.state = 2224; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2351; + this.state = 2225; this.name(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 2352; + this.state = 2226; this.match(PostgreSqlParser.DROP); - this.state = 2353; + this.state = 2227; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2354; + this.state = 2228; this.match(PostgreSqlParser.IF_P); - this.state = 2355; + this.state = 2229; this.match(PostgreSqlParser.EXISTS); - this.state = 2356; + this.state = 2230; this.name(); - this.state = 2357; - this.opt_drop_behavior(); + this.state = 2231; + this.optionalDropBehavior(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 2359; + this.state = 2233; this.match(PostgreSqlParser.DROP); - this.state = 2360; + this.state = 2234; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2361; + this.state = 2235; this.name(); - this.state = 2362; - this.opt_drop_behavior(); + this.state = 2236; + this.optionalDropBehavior(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 2364; + this.state = 2238; this.match(PostgreSqlParser.SET); - this.state = 2365; + this.state = 2239; this.match(PostgreSqlParser.WITHOUT); - this.state = 2366; + this.state = 2240; this.match(PostgreSqlParser.OIDS); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 2367; + this.state = 2241; this.match(PostgreSqlParser.CLUSTER); - this.state = 2368; + this.state = 2242; this.match(PostgreSqlParser.ON); - this.state = 2369; + this.state = 2243; this.name(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 2370; + this.state = 2244; this.match(PostgreSqlParser.SET); - this.state = 2371; + this.state = 2245; this.match(PostgreSqlParser.WITHOUT); - this.state = 2372; + this.state = 2246; this.match(PostgreSqlParser.CLUSTER); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 2373; + this.state = 2247; this.match(PostgreSqlParser.SET); - this.state = 2374; + this.state = 2248; this.match(PostgreSqlParser.LOGGED); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 2375; + this.state = 2249; this.match(PostgreSqlParser.SET); - this.state = 2376; + this.state = 2250; this.match(PostgreSqlParser.UNLOGGED); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 2377; + this.state = 2251; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2378; + this.state = 2252; this.match(PostgreSqlParser.TRIGGER); - this.state = 2379; + this.state = 2253; this.name(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 2380; + this.state = 2254; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2381; + this.state = 2255; this.match(PostgreSqlParser.ALWAYS); - this.state = 2382; + this.state = 2256; this.match(PostgreSqlParser.TRIGGER); - this.state = 2383; + this.state = 2257; this.name(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 2384; + this.state = 2258; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2385; + this.state = 2259; this.match(PostgreSqlParser.REPLICA); - this.state = 2386; + this.state = 2260; this.match(PostgreSqlParser.TRIGGER); - this.state = 2387; + this.state = 2261; this.name(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 2388; + this.state = 2262; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2389; + this.state = 2263; this.match(PostgreSqlParser.TRIGGER); - this.state = 2390; + this.state = 2264; this.match(PostgreSqlParser.ALL); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 2391; + this.state = 2265; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2392; + this.state = 2266; this.match(PostgreSqlParser.TRIGGER); - this.state = 2393; + this.state = 2267; this.match(PostgreSqlParser.USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 2394; + this.state = 2268; this.match(PostgreSqlParser.DISABLE_P); - this.state = 2395; + this.state = 2269; this.match(PostgreSqlParser.TRIGGER); - this.state = 2396; + this.state = 2270; this.name(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 2397; + this.state = 2271; this.match(PostgreSqlParser.DISABLE_P); - this.state = 2398; + this.state = 2272; this.match(PostgreSqlParser.TRIGGER); - this.state = 2399; + this.state = 2273; this.match(PostgreSqlParser.ALL); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 2400; + this.state = 2274; this.match(PostgreSqlParser.DISABLE_P); - this.state = 2401; + this.state = 2275; this.match(PostgreSqlParser.TRIGGER); - this.state = 2402; + this.state = 2276; this.match(PostgreSqlParser.USER); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 2403; + this.state = 2277; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2404; + this.state = 2278; this.match(PostgreSqlParser.RULE); - this.state = 2405; + this.state = 2279; this.name(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 2406; + this.state = 2280; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2407; + this.state = 2281; this.match(PostgreSqlParser.ALWAYS); - this.state = 2408; + this.state = 2282; this.match(PostgreSqlParser.RULE); - this.state = 2409; + this.state = 2283; this.name(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 2410; + this.state = 2284; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2411; + this.state = 2285; this.match(PostgreSqlParser.REPLICA); - this.state = 2412; + this.state = 2286; this.match(PostgreSqlParser.RULE); - this.state = 2413; + this.state = 2287; this.name(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 2414; + this.state = 2288; this.match(PostgreSqlParser.DISABLE_P); - this.state = 2415; + this.state = 2289; this.match(PostgreSqlParser.RULE); - this.state = 2416; + this.state = 2290; this.name(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 2417; + this.state = 2291; this.match(PostgreSqlParser.INHERIT); - this.state = 2418; - this.qualified_name(); + this.state = 2292; + this.qualifiedName(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 2419; + this.state = 2293; this.match(PostgreSqlParser.NO); - this.state = 2420; + this.state = 2294; this.match(PostgreSqlParser.INHERIT); - this.state = 2421; - this.qualified_name(); + this.state = 2295; + this.qualifiedName(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 2422; + this.state = 2296; this.match(PostgreSqlParser.OF); - this.state = 2423; - this.any_name(); + this.state = 2297; + this.anyName(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 2424; + this.state = 2298; this.match(PostgreSqlParser.NOT); - this.state = 2425; + this.state = 2299; this.match(PostgreSqlParser.OF); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 2426; + this.state = 2300; this.match(PostgreSqlParser.OWNER); - this.state = 2427; + this.state = 2301; this.match(PostgreSqlParser.TO); - this.state = 2428; - this.rolespec(); + this.state = 2302; + this.roleSpecification(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 2429; + this.state = 2303; this.match(PostgreSqlParser.SET); - this.state = 2430; + this.state = 2304; this.match(PostgreSqlParser.TABLESPACE); - this.state = 2431; + this.state = 2305; this.name(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 2432; + this.state = 2306; this.match(PostgreSqlParser.SET); - this.state = 2433; - this.reloptions(); + this.state = 2307; + this.relOptions(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 2434; + this.state = 2308; this.match(PostgreSqlParser.RESET); - this.state = 2435; - this.reloptions(); + this.state = 2309; + this.relOptions(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 2436; + this.state = 2310; this.match(PostgreSqlParser.REPLICA); - this.state = 2437; + this.state = 2311; this.match(PostgreSqlParser.IDENTITY_P); - this.state = 2438; - this.replica_identity(); + this.state = 2312; + this.replicaIdentity(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 2439; + this.state = 2313; this.match(PostgreSqlParser.ENABLE_P); - this.state = 2440; + this.state = 2314; this.match(PostgreSqlParser.ROW); - this.state = 2441; + this.state = 2315; this.match(PostgreSqlParser.LEVEL); - this.state = 2442; + this.state = 2316; this.match(PostgreSqlParser.SECURITY); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 2443; + this.state = 2317; this.match(PostgreSqlParser.DISABLE_P); - this.state = 2444; + this.state = 2318; this.match(PostgreSqlParser.ROW); - this.state = 2445; + this.state = 2319; this.match(PostgreSqlParser.LEVEL); - this.state = 2446; + this.state = 2320; this.match(PostgreSqlParser.SECURITY); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 2447; + this.state = 2321; this.match(PostgreSqlParser.FORCE); - this.state = 2448; + this.state = 2322; this.match(PostgreSqlParser.ROW); - this.state = 2449; + this.state = 2323; this.match(PostgreSqlParser.LEVEL); - this.state = 2450; + this.state = 2324; this.match(PostgreSqlParser.SECURITY); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 2451; + this.state = 2325; this.match(PostgreSqlParser.NO); - this.state = 2452; + this.state = 2326; this.match(PostgreSqlParser.FORCE); - this.state = 2453; + this.state = 2327; this.match(PostgreSqlParser.ROW); - this.state = 2454; + this.state = 2328; this.match(PostgreSqlParser.LEVEL); - this.state = 2455; + this.state = 2329; this.match(PostgreSqlParser.SECURITY); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 2456; - this.alter_generic_options(); + this.state = 2330; + this.alterGenericOptions(); } break; } @@ -9704,30 +9649,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_column_default(): Alter_column_defaultContext { - let localContext = new Alter_column_defaultContext(this.context, this.state); - this.enterRule(localContext, 104, PostgreSqlParser.RULE_alter_column_default); + public alterColumnDefault(): AlterColumnDefaultContext { + let localContext = new AlterColumnDefaultContext(this.context, this.state); + this.enterRule(localContext, 104, PostgreSqlParser.RULE_alterColumnDefault); try { - this.state = 2464; + this.state = 2338; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 1); { - this.state = 2459; + this.state = 2333; this.match(PostgreSqlParser.SET); - this.state = 2460; + this.state = 2334; this.match(PostgreSqlParser.DEFAULT); - this.state = 2461; - this.a_expr(); + this.state = 2335; + this.expression1(); } break; case PostgreSqlParser.DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2462; + this.state = 2336; this.match(PostgreSqlParser.DROP); - this.state = 2463; + this.state = 2337; this.match(PostgreSqlParser.DEFAULT); } break; @@ -9749,24 +9694,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - let localContext = new Opt_drop_behaviorContext(this.context, this.state); - this.enterRule(localContext, 106, PostgreSqlParser.RULE_opt_drop_behavior); + public optionalDropBehavior(): OptionalDropBehaviorContext { + let localContext = new OptionalDropBehaviorContext(this.context, this.state); + this.enterRule(localContext, 106, PostgreSqlParser.RULE_optionalDropBehavior); try { - this.state = 2469; + this.state = 2343; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CASCADE: this.enterOuterAlt(localContext, 1); { - this.state = 2466; + this.state = 2340; this.match(PostgreSqlParser.CASCADE); } break; case PostgreSqlParser.RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2467; + this.state = 2341; this.match(PostgreSqlParser.RESTRICT); } break; @@ -9797,20 +9742,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_collate_clause(): Opt_collate_clauseContext { - let localContext = new Opt_collate_clauseContext(this.context, this.state); - this.enterRule(localContext, 108, PostgreSqlParser.RULE_opt_collate_clause); + public optionalCollateClause(): OptionalCollateClauseContext { + let localContext = new OptionalCollateClauseContext(this.context, this.state); + this.enterRule(localContext, 108, PostgreSqlParser.RULE_optionalCollateClause); try { - this.state = 2474; + this.state = 2348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.COLLATE: this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2345; this.match(PostgreSqlParser.COLLATE); - this.state = 2472; - this.any_name(); + this.state = 2346; + this.anyName(); } break; case PostgreSqlParser.EOF: @@ -9844,20 +9789,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_using(): Alter_usingContext { - let localContext = new Alter_usingContext(this.context, this.state); - this.enterRule(localContext, 110, PostgreSqlParser.RULE_alter_using); + public alterUsing(): AlterUsingContext { + let localContext = new AlterUsingContext(this.context, this.state); + this.enterRule(localContext, 110, PostgreSqlParser.RULE_alterUsing); try { - this.state = 2479; + this.state = 2353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 1); { - this.state = 2476; + this.state = 2350; this.match(PostgreSqlParser.USING); - this.state = 2477; - this.a_expr(); + this.state = 2351; + this.expression1(); } break; case PostgreSqlParser.EOF: @@ -9887,42 +9832,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public replica_identity(): Replica_identityContext { - let localContext = new Replica_identityContext(this.context, this.state); - this.enterRule(localContext, 112, PostgreSqlParser.RULE_replica_identity); + public replicaIdentity(): ReplicaIdentityContext { + let localContext = new ReplicaIdentityContext(this.context, this.state); + this.enterRule(localContext, 112, PostgreSqlParser.RULE_replicaIdentity); try { - this.state = 2487; + this.state = 2361; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.NOTHING: this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2355; this.match(PostgreSqlParser.NOTHING); } break; case PostgreSqlParser.FULL: this.enterOuterAlt(localContext, 2); { - this.state = 2482; + this.state = 2356; this.match(PostgreSqlParser.FULL); } break; case PostgreSqlParser.DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2483; + this.state = 2357; this.match(PostgreSqlParser.DEFAULT); } break; case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 4); { - this.state = 2484; + this.state = 2358; this.match(PostgreSqlParser.USING); - this.state = 2485; + this.state = 2359; this.match(PostgreSqlParser.INDEX); - this.state = 2486; + this.state = 2360; this.name(); } break; @@ -9944,17 +9889,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reloptions(): ReloptionsContext { - let localContext = new ReloptionsContext(this.context, this.state); - this.enterRule(localContext, 114, PostgreSqlParser.RULE_reloptions); + public relOptions(): RelOptionsContext { + let localContext = new RelOptionsContext(this.context, this.state); + this.enterRule(localContext, 114, PostgreSqlParser.RULE_relOptions); try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2363; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2490; - this.reloption_list(); - this.state = 2491; + this.state = 2364; + this.relOptionList(); + this.state = 2365; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9972,20 +9917,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_reloptions(): Opt_reloptionsContext { - let localContext = new Opt_reloptionsContext(this.context, this.state); - this.enterRule(localContext, 116, PostgreSqlParser.RULE_opt_reloptions); + public optionalRelOptions(): OptionalRelOptionsContext { + let localContext = new OptionalRelOptionsContext(this.context, this.state); + this.enterRule(localContext, 116, PostgreSqlParser.RULE_optionalRelOptions); try { - this.state = 2496; + this.state = 2370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 2493; + this.state = 2367; this.match(PostgreSqlParser.WITH); - this.state = 2494; - this.reloptions(); + this.state = 2368; + this.relOptions(); } break; case PostgreSqlParser.EOF: @@ -10019,28 +9964,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reloption_list(): Reloption_listContext { - let localContext = new Reloption_listContext(this.context, this.state); - this.enterRule(localContext, 118, PostgreSqlParser.RULE_reloption_list); + public relOptionList(): RelOptionListContext { + let localContext = new RelOptionListContext(this.context, this.state); + this.enterRule(localContext, 118, PostgreSqlParser.RULE_relOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2498; - this.reloption_elem(); - this.state = 2503; + this.state = 2372; + this.relOptionElem(); + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2499; + this.state = 2373; this.match(PostgreSqlParser.COMMA); - this.state = 2500; - this.reloption_elem(); + this.state = 2374; + this.relOptionElem(); } } - this.state = 2505; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10060,41 +10005,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reloption_elem(): Reloption_elemContext { - let localContext = new Reloption_elemContext(this.context, this.state); - this.enterRule(localContext, 120, PostgreSqlParser.RULE_reloption_elem); + public relOptionElem(): RelOptionElemContext { + let localContext = new RelOptionElemContext(this.context, this.state); + this.enterRule(localContext, 120, PostgreSqlParser.RULE_relOptionElem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2506; - this.collabel(); - this.state = 2515; + this.state = 2380; + this.columnLabel(); + this.state = 2389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 2507; + this.state = 2381; this.match(PostgreSqlParser.EQUAL); - this.state = 2508; - this.def_arg(); + this.state = 2382; + this.definitionArgument(); } break; case PostgreSqlParser.DOT: { - this.state = 2509; + this.state = 2383; this.match(PostgreSqlParser.DOT); - this.state = 2510; - this.collabel(); - this.state = 2513; + this.state = 2384; + this.columnLabel(); + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 2511; + this.state = 2385; this.match(PostgreSqlParser.EQUAL); - this.state = 2512; - this.def_arg(); + this.state = 2386; + this.definitionArgument(); } } @@ -10122,24 +10067,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_identity_column_option_list(): Alter_identity_column_option_listContext { - let localContext = new Alter_identity_column_option_listContext(this.context, this.state); - this.enterRule(localContext, 122, PostgreSqlParser.RULE_alter_identity_column_option_list); + public alterIdentityColumnOptionList(): AlterIdentityColumnOptionListContext { + let localContext = new AlterIdentityColumnOptionListContext(this.context, this.state); + this.enterRule(localContext, 122, PostgreSqlParser.RULE_alterIdentityColumnOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2518; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2517; - this.alter_identity_column_option(); + this.state = 2391; + this.alterIdentityColumnOption(); } } - this.state = 2520; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 307 || _la === 326); @@ -10159,28 +10104,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_identity_column_option(): Alter_identity_column_optionContext { - let localContext = new Alter_identity_column_optionContext(this.context, this.state); - this.enterRule(localContext, 124, PostgreSqlParser.RULE_alter_identity_column_option); + public alterIdentityColumnOption(): AlterIdentityColumnOptionContext { + let localContext = new AlterIdentityColumnOptionContext(this.context, this.state); + this.enterRule(localContext, 124, PostgreSqlParser.RULE_alterIdentityColumnOption); let _la: number; try { - this.state = 2534; + this.state = 2408; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.RESTART: this.enterOuterAlt(localContext, 1); { - this.state = 2522; + this.state = 2396; this.match(PostgreSqlParser.RESTART); - this.state = 2526; + this.state = 2400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 105 || _la === 658 || _la === 660) { { - this.state = 2523; - this.opt_with(); - this.state = 2524; - this.numericonly(); + this.state = 2397; + this.optionalWith(); + this.state = 2398; + this.numericOnly(); } } @@ -10189,9 +10134,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 2); { - this.state = 2528; + this.state = 2402; this.match(PostgreSqlParser.SET); - this.state = 2532; + this.state = 2406; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AS: @@ -10206,16 +10151,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SEQUENCE: case PostgreSqlParser.START: { - this.state = 2529; - this.seqoptelem(); + this.state = 2403; + this.sequenceOptionItem(); } break; case PostgreSqlParser.GENERATED: { - this.state = 2530; + this.state = 2404; this.match(PostgreSqlParser.GENERATED); - this.state = 2531; - this.generated_when(); + this.state = 2405; + this.generatedWhen(); } break; default: @@ -10241,76 +10186,76 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public partitionboundspec(): PartitionboundspecContext { - let localContext = new PartitionboundspecContext(this.context, this.state); - this.enterRule(localContext, 126, PostgreSqlParser.RULE_partitionboundspec); + public partitionBoundSpecification(): PartitionBoundSpecificationContext { + let localContext = new PartitionBoundSpecificationContext(this.context, this.state); + this.enterRule(localContext, 126, PostgreSqlParser.RULE_partitionBoundSpecification); try { - this.state = 2562; + this.state = 2436; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2536; + this.state = 2410; this.match(PostgreSqlParser.FOR); - this.state = 2537; + this.state = 2411; this.match(PostgreSqlParser.VALUES); - this.state = 2538; + this.state = 2412; this.match(PostgreSqlParser.WITH); - this.state = 2539; + this.state = 2413; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2540; - this.hash_partbound(); - this.state = 2541; + this.state = 2414; + this.hashPartitionBound(); + this.state = 2415; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2543; + this.state = 2417; this.match(PostgreSqlParser.FOR); - this.state = 2544; + this.state = 2418; this.match(PostgreSqlParser.VALUES); - this.state = 2545; + this.state = 2419; this.match(PostgreSqlParser.IN_P); - this.state = 2546; + this.state = 2420; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2547; - this.expr_list(); - this.state = 2548; + this.state = 2421; + this.expressionList(); + this.state = 2422; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2550; + this.state = 2424; this.match(PostgreSqlParser.FOR); - this.state = 2551; + this.state = 2425; this.match(PostgreSqlParser.VALUES); - this.state = 2552; + this.state = 2426; this.match(PostgreSqlParser.FROM); - this.state = 2553; + this.state = 2427; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2554; - this.expr_list(); - this.state = 2555; + this.state = 2428; + this.expressionList(); + this.state = 2429; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2556; + this.state = 2430; this.match(PostgreSqlParser.TO); - this.state = 2557; + this.state = 2431; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2558; - this.expr_list(); - this.state = 2559; + this.state = 2432; + this.expressionList(); + this.state = 2433; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2561; + this.state = 2435; this.match(PostgreSqlParser.DEFAULT); } break; @@ -10330,15 +10275,15 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public hash_partbound_elem(): Hash_partbound_elemContext { - let localContext = new Hash_partbound_elemContext(this.context, this.state); - this.enterRule(localContext, 128, PostgreSqlParser.RULE_hash_partbound_elem); + public hashPartitionBoundElement(): HashPartitionBoundElementContext { + let localContext = new HashPartitionBoundElementContext(this.context, this.state); + this.enterRule(localContext, 128, PostgreSqlParser.RULE_hashPartitionBoundElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2564; - this.nonreservedword(); - this.state = 2565; + this.state = 2438; + this.nonReservedWord(); + this.state = 2439; this.iconst(); } } @@ -10356,28 +10301,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public hash_partbound(): Hash_partboundContext { - let localContext = new Hash_partboundContext(this.context, this.state); - this.enterRule(localContext, 130, PostgreSqlParser.RULE_hash_partbound); + public hashPartitionBound(): HashPartitionBoundContext { + let localContext = new HashPartitionBoundContext(this.context, this.state); + this.enterRule(localContext, 130, PostgreSqlParser.RULE_hashPartitionBound); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2567; - this.hash_partbound_elem(); - this.state = 2572; + this.state = 2441; + this.hashPartitionBoundElement(); + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2568; + this.state = 2442; this.match(PostgreSqlParser.COMMA); - this.state = 2569; - this.hash_partbound_elem(); + this.state = 2443; + this.hashPartitionBoundElement(); } } - this.state = 2574; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10397,20 +10342,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altercompositetypestmt(): AltercompositetypestmtContext { - let localContext = new AltercompositetypestmtContext(this.context, this.state); - this.enterRule(localContext, 132, PostgreSqlParser.RULE_altercompositetypestmt); + public alterCompositeTypeStatement(): AlterCompositeTypeStatementContext { + let localContext = new AlterCompositeTypeStatementContext(this.context, this.state); + this.enterRule(localContext, 132, PostgreSqlParser.RULE_alterCompositeTypeStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2575; + this.state = 2449; this.match(PostgreSqlParser.ALTER); - this.state = 2576; + this.state = 2450; this.match(PostgreSqlParser.TYPE_P); - this.state = 2577; - this.any_name(); - this.state = 2578; - this.alter_type_cmds(); + this.state = 2451; + this.anyName(); + this.state = 2452; + this.alterTypeCommands(); } } catch (re) { @@ -10427,28 +10372,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_type_cmds(): Alter_type_cmdsContext { - let localContext = new Alter_type_cmdsContext(this.context, this.state); - this.enterRule(localContext, 134, PostgreSqlParser.RULE_alter_type_cmds); + public alterTypeCommands(): AlterTypeCommandsContext { + let localContext = new AlterTypeCommandsContext(this.context, this.state); + this.enterRule(localContext, 134, PostgreSqlParser.RULE_alterTypeCommands); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; - this.alter_type_cmd(); - this.state = 2585; + this.state = 2454; + this.alterTypeCommand(); + this.state = 2459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2581; + this.state = 2455; this.match(PostgreSqlParser.COMMA); - this.state = 2582; - this.alter_type_cmd(); + this.state = 2456; + this.alterTypeCommand(); } } - this.state = 2587; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10468,70 +10413,70 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_type_cmd(): Alter_type_cmdContext { - let localContext = new Alter_type_cmdContext(this.context, this.state); - this.enterRule(localContext, 136, PostgreSqlParser.RULE_alter_type_cmd); + public alterTypeCommand(): AlterTypeCommandContext { + let localContext = new AlterTypeCommandContext(this.context, this.state); + this.enterRule(localContext, 136, PostgreSqlParser.RULE_alterTypeCommand); try { - this.state = 2611; + this.state = 2485; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ADD_P: this.enterOuterAlt(localContext, 1); { - this.state = 2588; + this.state = 2462; this.match(PostgreSqlParser.ADD_P); - this.state = 2589; + this.state = 2463; this.match(PostgreSqlParser.ATTRIBUTE); - this.state = 2590; - this.tablefuncelement(); - this.state = 2591; - this.opt_drop_behavior(); + this.state = 2464; + this.tableFunctionElement(); + this.state = 2465; + this.optionalDropBehavior(); } break; case PostgreSqlParser.DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2593; + this.state = 2467; this.match(PostgreSqlParser.DROP); - this.state = 2594; + this.state = 2468; this.match(PostgreSqlParser.ATTRIBUTE); - this.state = 2597; + this.state = 2471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 2595; + this.state = 2469; this.match(PostgreSqlParser.IF_P); - this.state = 2596; + this.state = 2470; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 2599; - this.colid(); - this.state = 2600; - this.opt_drop_behavior(); + this.state = 2473; + this.columnId(); + this.state = 2474; + this.optionalDropBehavior(); } break; case PostgreSqlParser.ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 2602; + this.state = 2476; this.match(PostgreSqlParser.ALTER); - this.state = 2603; + this.state = 2477; this.match(PostgreSqlParser.ATTRIBUTE); - this.state = 2604; - this.colid(); - this.state = 2605; - this.opt_set_data(); - this.state = 2606; + this.state = 2478; + this.columnId(); + this.state = 2479; + this.optionalSetData(); + this.state = 2480; this.match(PostgreSqlParser.TYPE_P); - this.state = 2607; - this.typename(); - this.state = 2608; - this.opt_collate_clause(); - this.state = 2609; - this.opt_drop_behavior(); + this.state = 2481; + this.typeName(); + this.state = 2482; + this.optionalCollateClause(); + this.state = 2483; + this.optionalDropBehavior(); } break; default: @@ -10552,15 +10497,15 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public closeportalstmt(): CloseportalstmtContext { - let localContext = new CloseportalstmtContext(this.context, this.state); - this.enterRule(localContext, 138, PostgreSqlParser.RULE_closeportalstmt); + public closePortalStatement(): ClosePortalStatementContext { + let localContext = new ClosePortalStatementContext(this.context, this.state); + this.enterRule(localContext, 138, PostgreSqlParser.RULE_closePortalStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 2613; + this.state = 2487; this.match(PostgreSqlParser.CLOSE); - this.state = 2616; + this.state = 2490; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -11083,13 +11028,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 2614; - this.cursor_name(); + this.state = 2488; + this.cursorName(); } break; case PostgreSqlParser.ALL: { - this.state = 2615; + this.state = 2489; this.match(PostgreSqlParser.ALL); } break; @@ -11112,61 +11057,86 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copystmt(): CopystmtContext { - let localContext = new CopystmtContext(this.context, this.state); - this.enterRule(localContext, 140, PostgreSqlParser.RULE_copystmt); + public copyStatement(): CopyStatementContext { + let localContext = new CopyStatementContext(this.context, this.state); + this.enterRule(localContext, 140, PostgreSqlParser.RULE_copyStatement); + let _la: number; try { - this.state = 2640; + this.state = 2520; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2618; + this.state = 2492; this.match(PostgreSqlParser.COPY); - this.state = 2619; - this.opt_binary(); - this.state = 2620; - this.qualified_name(); - this.state = 2621; - this.opt_column_list(); - this.state = 2622; - this.copy_from(); - this.state = 2623; - this.opt_program(); - this.state = 2624; - this.copy_file_name(); - this.state = 2625; - this.copy_delimiter(); - this.state = 2626; - this.opt_with(); - this.state = 2627; - this.copy_options(); - this.state = 2628; - this.where_clause(); + this.state = 2494; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 107) { + { + this.state = 2493; + this.match(PostgreSqlParser.BINARY); + } + } + + this.state = 2496; + this.qualifiedName(); + this.state = 2497; + this.columnListWithParentheses(); + this.state = 2498; + this.fromOrTo(); + this.state = 2500; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 290) { + { + this.state = 2499; + this.match(PostgreSqlParser.PROGRAM); + } + } + + this.state = 2502; + this.copyFileName(); + this.state = 2503; + this.copyDelimiter(); + this.state = 2504; + this.optionalWith(); + this.state = 2505; + this.copyOptions(); + this.state = 2506; + this.whereClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2630; + this.state = 2508; this.match(PostgreSqlParser.COPY); - this.state = 2631; + this.state = 2509; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2632; - this.preparablestmt(); - this.state = 2633; + this.state = 2510; + this.preparableStatement(); + this.state = 2511; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2634; + this.state = 2512; this.match(PostgreSqlParser.TO); - this.state = 2635; - this.opt_program(); - this.state = 2636; - this.copy_file_name(); - this.state = 2637; - this.opt_with(); - this.state = 2638; - this.copy_options(); + this.state = 2514; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 290) { + { + this.state = 2513; + this.match(PostgreSqlParser.PROGRAM); + } + } + + this.state = 2516; + this.copyFileName(); + this.state = 2517; + this.optionalWith(); + this.state = 2518; + this.copyOptions(); } break; } @@ -11185,14 +11155,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_from(): Copy_fromContext { - let localContext = new Copy_fromContext(this.context, this.state); - this.enterRule(localContext, 142, PostgreSqlParser.RULE_copy_from); + public fromOrTo(): FromOrToContext { + let localContext = new FromOrToContext(this.context, this.state); + this.enterRule(localContext, 142, PostgreSqlParser.RULE_fromOrTo); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2642; + this.state = 2522; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -11217,29 +11187,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_program(): Opt_programContext { - let localContext = new Opt_programContext(this.context, this.state); - this.enterRule(localContext, 144, PostgreSqlParser.RULE_opt_program); + public copyFileName(): CopyFileNameContext { + let localContext = new CopyFileNameContext(this.context, this.state); + this.enterRule(localContext, 144, PostgreSqlParser.RULE_copyFileName); try { - this.state = 2646; + this.state = 2527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2644; - this.match(PostgreSqlParser.PROGRAM); + this.state = 2524; + this.sconst(); } break; case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 2525; + this.match(PostgreSqlParser.STDIN); + } + break; + case PostgreSqlParser.STDOUT: + this.enterOuterAlt(localContext, 3); + { + this.state = 2526; + this.match(PostgreSqlParser.STDOUT); } break; default: @@ -11260,39 +11236,209 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_file_name(): Copy_file_nameContext { - let localContext = new Copy_file_nameContext(this.context, this.state); - this.enterRule(localContext, 146, PostgreSqlParser.RULE_copy_file_name); + public copyOptions(): CopyOptionsContext { + let localContext = new CopyOptionsContext(this.context, this.state); + this.enterRule(localContext, 146, PostgreSqlParser.RULE_copyOptions); + let _la: number; try { - this.state = 2651; + this.state = 2539; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.CSV: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.QUOTE: this.enterOuterAlt(localContext, 1); { - this.state = 2648; - this.sconst(); + this.state = 2532; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 78 || _la === 107 || _la === 112 || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 75501569) !== 0) || _la === 209 || _la === 216 || _la === 291) { + { + { + this.state = 2529; + this.copyOptionsItem(); + } + } + this.state = 2534; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } break; - case PostgreSqlParser.STDIN: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2649; - this.match(PostgreSqlParser.STDIN); + this.state = 2535; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2536; + this.copyGenericOptionList(); + this.state = 2537; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.STDOUT: + 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 copyOptionsItem(): CopyOptionsItemContext { + let localContext = new CopyOptionsItemContext(this.context, this.state); + this.enterRule(localContext, 148, PostgreSqlParser.RULE_copyOptionsItem); + try { + this.state = 2576; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2541; + this.match(PostgreSqlParser.BINARY); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2542; + this.match(PostgreSqlParser.FREEZE); + } + break; + case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2650; - this.match(PostgreSqlParser.STDOUT); + this.state = 2543; + this.match(PostgreSqlParser.DELIMITER); + this.state = 2544; + this.optionalAs(); + this.state = 2545; + this.sconst(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2547; + this.match(PostgreSqlParser.NULL_P); + this.state = 2548; + this.optionalAs(); + this.state = 2549; + this.sconst(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 2551; + this.match(PostgreSqlParser.CSV); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 2552; + this.match(PostgreSqlParser.HEADER_P); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 2553; + this.match(PostgreSqlParser.QUOTE); + this.state = 2554; + this.optionalAs(); + this.state = 2555; + this.sconst(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 2557; + this.match(PostgreSqlParser.ESCAPE); + this.state = 2558; + this.optionalAs(); + this.state = 2559; + this.sconst(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 2561; + this.match(PostgreSqlParser.FORCE); + this.state = 2562; + this.match(PostgreSqlParser.QUOTE); + this.state = 2563; + this.columnList(); + } + break; + case 10: + this.enterOuterAlt(localContext, 10); + { + this.state = 2564; + this.match(PostgreSqlParser.FORCE); + this.state = 2565; + this.match(PostgreSqlParser.QUOTE); + this.state = 2566; + this.match(PostgreSqlParser.STAR); + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + { + this.state = 2567; + this.match(PostgreSqlParser.FORCE); + this.state = 2568; + this.match(PostgreSqlParser.NOT); + this.state = 2569; + this.match(PostgreSqlParser.NULL_P); + this.state = 2570; + this.columnList(); + } + break; + case 12: + this.enterOuterAlt(localContext, 12); + { + this.state = 2571; + this.match(PostgreSqlParser.FORCE); + this.state = 2572; + this.match(PostgreSqlParser.NULL_P); + this.state = 2573; + this.columnList(); + } + break; + case 13: + this.enterOuterAlt(localContext, 13); + { + this.state = 2574; + this.match(PostgreSqlParser.ENCODING); + this.state = 2575; + this.sconst(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -11309,18 +11455,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_options(): Copy_optionsContext { - let localContext = new Copy_optionsContext(this.context, this.state); - this.enterRule(localContext, 148, PostgreSqlParser.RULE_copy_options); + public copyDelimiter(): CopyDelimiterContext { + let localContext = new CopyDelimiterContext(this.context, this.state); + this.enterRule(localContext, 150, PostgreSqlParser.RULE_copyDelimiter); + let _la: number; try { - this.state = 2658; + this.state = 2584; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.USING: + case PostgreSqlParser.DELIMITERS: + this.enterOuterAlt(localContext, 1); + { + this.state = 2579; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 100) { + { + this.state = 2578; + this.match(PostgreSqlParser.USING); + } + } + + this.state = 2581; + this.match(PostgreSqlParser.DELIMITERS); + this.state = 2582; + this.sconst(); + } + break; case PostgreSqlParser.EOF: + case PostgreSqlParser.OPEN_PAREN: case PostgreSqlParser.SEMI: case PostgreSqlParser.INTO: case PostgreSqlParser.NULL_P: case PostgreSqlParser.WHERE: + case PostgreSqlParser.WITH: case PostgreSqlParser.BINARY: case PostgreSqlParser.FREEZE: case PostgreSqlParser.CSV: @@ -11330,21 +11499,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.FORCE: case PostgreSqlParser.HEADER_P: case PostgreSqlParser.QUOTE: - this.enterOuterAlt(localContext, 1); - { - this.state = 2653; - this.copy_opt_list(); - } - break; - case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 2654; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2655; - this.copy_generic_opt_list(); - this.state = 2656; - this.match(PostgreSqlParser.CLOSE_PAREN); } break; default: @@ -11365,24 +11522,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_opt_list(): Copy_opt_listContext { - let localContext = new Copy_opt_listContext(this.context, this.state); - this.enterRule(localContext, 150, PostgreSqlParser.RULE_copy_opt_list); + public copyGenericOptionList(): CopyGenericOptionListContext { + let localContext = new CopyGenericOptionListContext(this.context, this.state); + this.enterRule(localContext, 152, PostgreSqlParser.RULE_copyGenericOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2663; + this.state = 2586; + this.copyGenericOptionElem(); + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 78 || _la === 107 || _la === 112 || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 75501569) !== 0) || _la === 209 || _la === 216 || _la === 291) { + while (_la === 6) { { { - this.state = 2660; - this.copy_opt_item(); + this.state = 2587; + this.match(PostgreSqlParser.COMMA); + this.state = 2588; + this.copyGenericOptionElem(); } } - this.state = 2665; + this.state = 2593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11402,140 +11563,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_opt_item(): Copy_opt_itemContext { - let localContext = new Copy_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 152, PostgreSqlParser.RULE_copy_opt_item); + public copyGenericOptionElem(): CopyGenericOptionElemContext { + let localContext = new CopyGenericOptionElemContext(this.context, this.state); + this.enterRule(localContext, 154, PostgreSqlParser.RULE_copyGenericOptionElem); try { - this.state = 2701; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2666; - this.match(PostgreSqlParser.BINARY); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2667; - this.match(PostgreSqlParser.FREEZE); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 2668; - this.match(PostgreSqlParser.DELIMITER); - this.state = 2669; - this.opt_as(); - this.state = 2670; - this.sconst(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 2672; - this.match(PostgreSqlParser.NULL_P); - this.state = 2673; - this.opt_as(); - this.state = 2674; - this.sconst(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 2676; - this.match(PostgreSqlParser.CSV); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 2677; - this.match(PostgreSqlParser.HEADER_P); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 2678; - this.match(PostgreSqlParser.QUOTE); - this.state = 2679; - this.opt_as(); - this.state = 2680; - this.sconst(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 2682; - this.match(PostgreSqlParser.ESCAPE); - this.state = 2683; - this.opt_as(); - this.state = 2684; - this.sconst(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 2686; - this.match(PostgreSqlParser.FORCE); - this.state = 2687; - this.match(PostgreSqlParser.QUOTE); - this.state = 2688; - this.columnlist(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 2689; - this.match(PostgreSqlParser.FORCE); - this.state = 2690; - this.match(PostgreSqlParser.QUOTE); - this.state = 2691; - this.match(PostgreSqlParser.STAR); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - { - this.state = 2692; - this.match(PostgreSqlParser.FORCE); - this.state = 2693; - this.match(PostgreSqlParser.NOT); - this.state = 2694; - this.match(PostgreSqlParser.NULL_P); - this.state = 2695; - this.columnlist(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 2696; - this.match(PostgreSqlParser.FORCE); - this.state = 2697; - this.match(PostgreSqlParser.NULL_P); - this.state = 2698; - this.columnlist(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 2699; - this.match(PostgreSqlParser.ENCODING); - this.state = 2700; - this.sconst(); - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 2594; + this.columnLabel(); + this.state = 2595; + this.copyGenericOptionArgument(); } } catch (re) { @@ -11552,20 +11589,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_binary(): Opt_binaryContext { - let localContext = new Opt_binaryContext(this.context, this.state); - this.enterRule(localContext, 154, PostgreSqlParser.RULE_opt_binary); + public copyGenericOptionArgument(): CopyGenericOptionArgumentContext { + let localContext = new CopyGenericOptionArgumentContext(this.context, this.state); + this.enterRule(localContext, 156, PostgreSqlParser.RULE_copyGenericOptionArgument); + let _la: number; try { - this.state = 2705; + this.state = 2612; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.BINARY: - this.enterOuterAlt(localContext, 1); - { - this.state = 2703; - this.match(PostgreSqlParser.BINARY); - } - break; case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -11573,13 +11604,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: + case PostgreSqlParser.ON: case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -11920,6 +11970,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -12083,9 +12134,65 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 1); + { + this.state = 2597; + this.booleanOrString(); + } + break; + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); + { + this.state = 2598; + this.numericOnly(); + } + break; + case PostgreSqlParser.STAR: + this.enterOuterAlt(localContext, 3); + { + this.state = 2599; + this.match(PostgreSqlParser.STAR); + } + break; + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 4); + { + this.state = 2600; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2601; + this.booleanOrString(); + this.state = 2606; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 2602; + this.match(PostgreSqlParser.COMMA); + this.state = 2603; + this.booleanOrString(); + } + } + this.state = 2608; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2609; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + this.enterOuterAlt(localContext, 5); // tslint:disable-next-line:no-empty { } @@ -12108,49 +12215,107 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_delimiter(): Copy_delimiterContext { - let localContext = new Copy_delimiterContext(this.context, this.state); - this.enterRule(localContext, 156, PostgreSqlParser.RULE_copy_delimiter); + public createStatement(): CreateStatementContext { + let localContext = new CreateStatementContext(this.context, this.state); + this.enterRule(localContext, 158, PostgreSqlParser.RULE_createStatement); try { - this.state = 2712; + this.enterOuterAlt(localContext, 1); + { + this.state = 2614; + this.match(PostgreSqlParser.CREATE); + this.state = 2615; + this.temporaryOption(); + this.state = 2616; + this.match(PostgreSqlParser.TABLE); + this.state = 2620; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - case PostgreSqlParser.DELIMITERS: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { + case 1: { - this.state = 2707; - this.opt_using(); - this.state = 2708; - this.match(PostgreSqlParser.DELIMITERS); - this.state = 2709; - this.sconst(); + this.state = 2617; + this.match(PostgreSqlParser.IF_P); + this.state = 2618; + this.match(PostgreSqlParser.NOT); + this.state = 2619; + this.match(PostgreSqlParser.EXISTS); } break; - case PostgreSqlParser.EOF: + } + this.state = 2622; + this.qualifiedName(); + this.state = 2653; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.WITH: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.CSV: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.QUOTE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 2623; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2624; + this.optionalTableElementList(); + this.state = 2625; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2626; + this.inheritClause(); + this.state = 2627; + this.optionalPartitionSpecification(); + this.state = 2628; + this.optionalTableAccessMethodClause(); + this.state = 2629; + this.with_(); + this.state = 2630; + this.onCommitOption(); + this.state = 2631; + this.optionalTablespace(); + } + break; + case PostgreSqlParser.OF: + { + this.state = 2633; + this.match(PostgreSqlParser.OF); + this.state = 2634; + this.anyName(); + this.state = 2635; + this.optionalTypedTableElementList(); + this.state = 2636; + this.optionalPartitionSpecification(); + this.state = 2637; + this.optionalTableAccessMethodClause(); + this.state = 2638; + this.with_(); + this.state = 2639; + this.onCommitOption(); + this.state = 2640; + this.optionalTablespace(); + } + break; + case PostgreSqlParser.PARTITION: + { + this.state = 2642; + this.match(PostgreSqlParser.PARTITION); + this.state = 2643; + this.match(PostgreSqlParser.OF); + this.state = 2644; + this.qualifiedName(); + this.state = 2645; + this.optionalTypedTableElementList(); + this.state = 2646; + this.partitionBoundSpecification(); + this.state = 2647; + this.optionalPartitionSpecification(); + this.state = 2648; + this.optionalTableAccessMethodClause(); + this.state = 2649; + this.with_(); + this.state = 2650; + this.onCommitOption(); + this.state = 2651; + this.optionalTablespace(); } break; default: throw new antlr.NoViableAltException(this); } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -12166,22 +12331,72 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_using(): Opt_usingContext { - let localContext = new Opt_usingContext(this.context, this.state); - this.enterRule(localContext, 158, PostgreSqlParser.RULE_opt_using); + public temporaryOption(): TemporaryOptionContext { + let localContext = new TemporaryOptionContext(this.context, this.state); + this.enterRule(localContext, 160, PostgreSqlParser.RULE_temporaryOption); + let _la: number; try { - this.state = 2716; + this.state = 2663; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: + case PostgreSqlParser.TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2714; - this.match(PostgreSqlParser.USING); + this.state = 2655; + this.match(PostgreSqlParser.TEMPORARY); } break; - case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.TEMP: this.enterOuterAlt(localContext, 2); + { + this.state = 2656; + this.match(PostgreSqlParser.TEMP); + } + break; + case PostgreSqlParser.LOCAL: + this.enterOuterAlt(localContext, 3); + { + this.state = 2657; + this.match(PostgreSqlParser.LOCAL); + this.state = 2658; + _la = this.tokenStream.LA(1); + if(!(_la === 345 || _la === 347)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case PostgreSqlParser.GLOBAL: + this.enterOuterAlt(localContext, 4); + { + this.state = 2659; + this.match(PostgreSqlParser.GLOBAL); + this.state = 2660; + _la = this.tokenStream.LA(1); + if(!(_la === 345 || _la === 347)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case PostgreSqlParser.UNLOGGED: + this.enterOuterAlt(localContext, 5); + { + this.state = 2661; + this.match(PostgreSqlParser.UNLOGGED); + } + break; + case PostgreSqlParser.TABLE: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.VIEW: + this.enterOuterAlt(localContext, 6); // tslint:disable-next-line:no-empty { } @@ -12204,113 +12419,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_generic_opt_list(): Copy_generic_opt_listContext { - let localContext = new Copy_generic_opt_listContext(this.context, this.state); - this.enterRule(localContext, 160, PostgreSqlParser.RULE_copy_generic_opt_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2718; - this.copy_generic_opt_elem(); - this.state = 2723; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 2719; - this.match(PostgreSqlParser.COMMA); - this.state = 2720; - this.copy_generic_opt_elem(); - } - } - this.state = 2725; - 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 copy_generic_opt_elem(): Copy_generic_opt_elemContext { - let localContext = new Copy_generic_opt_elemContext(this.context, this.state); - this.enterRule(localContext, 162, PostgreSqlParser.RULE_copy_generic_opt_elem); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2726; - this.collabel(); - this.state = 2727; - this.copy_generic_opt_arg(); - } - } - 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 copy_generic_opt_arg(): Copy_generic_opt_argContext { - let localContext = new Copy_generic_opt_argContext(this.context, this.state); - this.enterRule(localContext, 164, PostgreSqlParser.RULE_copy_generic_opt_arg); + public optionalTableElementList(): OptionalTableElementListContext { + let localContext = new OptionalTableElementListContext(this.context, this.state); + this.enterRule(localContext, 162, PostgreSqlParser.RULE_optionalTableElementList); try { - this.state = 2737; + this.state = 2667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CHECK: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.ON: + case PostgreSqlParser.FOREIGN: + case PostgreSqlParser.PRIMARY: case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: + case PostgreSqlParser.UNIQUE: case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.RIGHT: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -12651,7 +12785,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -12815,49 +12948,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2729; - this.opt_boolean_or_string(); - } - break; - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - this.enterOuterAlt(localContext, 2); - { - this.state = 2730; - this.numericonly(); - } - break; - case PostgreSqlParser.STAR: - this.enterOuterAlt(localContext, 3); - { - this.state = 2731; - this.match(PostgreSqlParser.STAR); - } - break; - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 4); - { - this.state = 2732; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2733; - this.copy_generic_opt_arg_list(); - this.state = 2734; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2665; + this.tableElementList(); } break; case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - this.enterOuterAlt(localContext, 5); + this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { } @@ -12880,253 +12980,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public copy_generic_opt_arg_list(): Copy_generic_opt_arg_listContext { - let localContext = new Copy_generic_opt_arg_listContext(this.context, this.state); - this.enterRule(localContext, 166, PostgreSqlParser.RULE_copy_generic_opt_arg_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2739; - this.copy_generic_opt_arg_list_item(); - this.state = 2744; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 2740; - this.match(PostgreSqlParser.COMMA); - this.state = 2741; - this.copy_generic_opt_arg_list_item(); - } - } - this.state = 2746; - 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 copy_generic_opt_arg_list_item(): Copy_generic_opt_arg_list_itemContext { - let localContext = new Copy_generic_opt_arg_list_itemContext(this.context, this.state); - this.enterRule(localContext, 168, PostgreSqlParser.RULE_copy_generic_opt_arg_list_item); + public optionalTypedTableElementList(): OptionalTypedTableElementListContext { + let localContext = new OptionalTypedTableElementListContext(this.context, this.state); + this.enterRule(localContext, 164, PostgreSqlParser.RULE_optionalTypedTableElementList); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2747; - this.opt_boolean_or_string(); - } - } - 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 createstmt(): CreatestmtContext { - let localContext = new CreatestmtContext(this.context, this.state); - this.enterRule(localContext, 170, PostgreSqlParser.RULE_createstmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2749; - this.match(PostgreSqlParser.CREATE); - this.state = 2750; - this.opttemp(); - this.state = 2751; - this.match(PostgreSqlParser.TABLE); - this.state = 2755; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { - case 1: - { - this.state = 2752; - this.match(PostgreSqlParser.IF_P); - this.state = 2753; - this.match(PostgreSqlParser.NOT); - this.state = 2754; - this.match(PostgreSqlParser.EXISTS); - } - break; - } - this.state = 2757; - this.qualified_name(); - this.state = 2788; + this.state = 2674; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 1); { - this.state = 2758; + this.state = 2669; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2759; - this.opttableelementlist(); - this.state = 2760; + this.state = 2670; + this.typedTableElementList(); + this.state = 2671; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2761; - this.optinherit(); - this.state = 2762; - this.optpartitionspec(); - this.state = 2763; - this.table_access_method_clause(); - this.state = 2764; - this.optwith(); - this.state = 2765; - this.oncommitoption(); - this.state = 2766; - this.opttablespace(); - } - break; - case PostgreSqlParser.OF: - { - this.state = 2768; - this.match(PostgreSqlParser.OF); - this.state = 2769; - this.any_name(); - this.state = 2770; - this.opttypedtableelementlist(); - this.state = 2771; - this.optpartitionspec(); - this.state = 2772; - this.table_access_method_clause(); - this.state = 2773; - this.optwith(); - this.state = 2774; - this.oncommitoption(); - this.state = 2775; - this.opttablespace(); } break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: case PostgreSqlParser.PARTITION: - { - this.state = 2777; - this.match(PostgreSqlParser.PARTITION); - this.state = 2778; - this.match(PostgreSqlParser.OF); - this.state = 2779; - this.qualified_name(); - this.state = 2780; - this.opttypedtableelementlist(); - this.state = 2781; - this.partitionboundspec(); - this.state = 2782; - this.optpartitionspec(); - this.state = 2783; - this.table_access_method_clause(); - this.state = 2784; - this.optwith(); - this.state = 2785; - this.oncommitoption(); - this.state = 2786; - this.opttablespace(); - } - 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 opttemp(): OpttempContext { - let localContext = new OpttempContext(this.context, this.state); - this.enterRule(localContext, 172, PostgreSqlParser.RULE_opttemp); - let _la: number; - try { - this.state = 2798; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.TEMPORARY: - this.enterOuterAlt(localContext, 1); - { - this.state = 2790; - this.match(PostgreSqlParser.TEMPORARY); - } - break; - case PostgreSqlParser.TEMP: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.WITHOUT: this.enterOuterAlt(localContext, 2); - { - this.state = 2791; - this.match(PostgreSqlParser.TEMP); - } - break; - case PostgreSqlParser.LOCAL: - this.enterOuterAlt(localContext, 3); - { - this.state = 2792; - this.match(PostgreSqlParser.LOCAL); - this.state = 2793; - _la = this.tokenStream.LA(1); - if(!(_la === 345 || _la === 347)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case PostgreSqlParser.GLOBAL: - this.enterOuterAlt(localContext, 4); - { - this.state = 2794; - this.match(PostgreSqlParser.GLOBAL); - this.state = 2795; - _la = this.tokenStream.LA(1); - if(!(_la === 345 || _la === 347)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case PostgreSqlParser.UNLOGGED: - this.enterOuterAlt(localContext, 5); - { - this.state = 2796; - this.match(PostgreSqlParser.UNLOGGED); - } - break; - case PostgreSqlParser.TABLE: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.VIEW: - this.enterOuterAlt(localContext, 6); // tslint:disable-next-line:no-empty { } @@ -13149,547 +13034,505 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opttableelementlist(): OpttableelementlistContext { - let localContext = new OpttableelementlistContext(this.context, this.state); - this.enterRule(localContext, 174, PostgreSqlParser.RULE_opttableelementlist); + public tableElementList(): TableElementListContext { + let localContext = new TableElementListContext(this.context, this.state); + this.enterRule(localContext, 166, PostgreSqlParser.RULE_tableElementList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2676; + this.tableElement(); + this.state = 2681; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 2677; + this.match(PostgreSqlParser.COMMA); + this.state = 2678; + this.tableElement(); + } + } + this.state = 2683; + 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 typedTableElementList(): TypedTableElementListContext { + let localContext = new TypedTableElementListContext(this.context, this.state); + this.enterRule(localContext, 168, PostgreSqlParser.RULE_typedTableElementList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2684; + this.typedTableElement(); + this.state = 2689; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 2685; + this.match(PostgreSqlParser.COMMA); + this.state = 2686; + this.typedTableElement(); + } + } + this.state = 2691; + 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 tableElement(): TableElementContext { + let localContext = new TableElementContext(this.context, this.state); + this.enterRule(localContext, 170, PostgreSqlParser.RULE_tableElement); + try { + this.state = 2695; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2692; + this.tableConstraint(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2693; + this.tableLikeClause(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2694; + this.columnDefinition(); + } + 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 typedTableElement(): TypedTableElementContext { + let localContext = new TypedTableElementContext(this.context, this.state); + this.enterRule(localContext, 172, PostgreSqlParser.RULE_typedTableElement); + try { + this.state = 2699; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2697; + this.columnOptions(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2698; + this.tableConstraint(); + } + 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 columnDefinition(): ColumnDefinitionContext { + let localContext = new ColumnDefinitionContext(this.context, this.state); + this.enterRule(localContext, 174, PostgreSqlParser.RULE_columnDefinition); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2701; + this.columnId(); + this.state = 2702; + this.typeName(); + this.state = 2703; + this.createGenericOptions(); + this.state = 2704; + this.columnQualifierList(); + } + } + 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 columnOptions(): ColumnOptionsContext { + let localContext = new ColumnOptionsContext(this.context, this.state); + this.enterRule(localContext, 176, PostgreSqlParser.RULE_columnOptions); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2706; + this.columnId(); + this.state = 2709; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 105) { + { + this.state = 2707; + this.match(PostgreSqlParser.WITH); + this.state = 2708; + this.match(PostgreSqlParser.OPTIONS); + } + } + + this.state = 2711; + this.columnQualifierList(); + } + } + 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 columnQualifierList(): ColumnQualifierListContext { + let localContext = new ColumnQualifierListContext(this.context, this.state); + this.enterRule(localContext, 178, PostgreSqlParser.RULE_columnQualifierList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2716; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 134223883) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { + { + { + this.state = 2713; + this.columnConstraint(); + } + } + this.state = 2718; + 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 columnConstraint(): ColumnConstraintContext { + let localContext = new ColumnConstraintContext(this.context, this.state); + this.enterRule(localContext, 180, PostgreSqlParser.RULE_columnConstraint); + try { + this.state = 2727; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2719; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 2720; + this.name(); + this.state = 2721; + this.columnConstraintElement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2723; + this.columnConstraintElement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2724; + this.constraintAttribute(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2725; + this.match(PostgreSqlParser.COLLATE); + this.state = 2726; + this.anyName(); + } + 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 columnConstraintElement(): ColumnConstraintElementContext { + let localContext = new ColumnConstraintElementContext(this.context, this.state); + this.enterRule(localContext, 182, PostgreSqlParser.RULE_columnConstraintElement); + let _la: number; try { - this.state = 2802; + this.state = 2769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: + case PostgreSqlParser.NOT: + this.enterOuterAlt(localContext, 1); + { + this.state = 2729; + this.match(PostgreSqlParser.NOT); + this.state = 2730; + this.match(PostgreSqlParser.NULL_P); + } + break; + case PostgreSqlParser.NULL_P: + this.enterOuterAlt(localContext, 2); + { + this.state = 2731; + this.match(PostgreSqlParser.NULL_P); + } + break; + case PostgreSqlParser.UNIQUE: + this.enterOuterAlt(localContext, 3); + { + this.state = 2732; + this.match(PostgreSqlParser.UNIQUE); + this.state = 2733; + this.optionalDefinition(); + this.state = 2734; + this.usingIndexTablespace(); + } + break; + case PostgreSqlParser.PRIMARY: + this.enterOuterAlt(localContext, 4); + { + this.state = 2736; + this.match(PostgreSqlParser.PRIMARY); + this.state = 2737; + this.match(PostgreSqlParser.KEY); + this.state = 2738; + this.optionalDefinition(); + this.state = 2739; + this.usingIndexTablespace(); + } + break; case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: + this.enterOuterAlt(localContext, 5); + { + this.state = 2741; + this.match(PostgreSqlParser.CHECK); + this.state = 2742; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2743; + this.expression1(); + this.state = 2744; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2747; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 2745; + this.match(PostgreSqlParser.NO); + this.state = 2746; + this.match(PostgreSqlParser.INHERIT); + } + } + + } + break; case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOREIGN: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: + this.enterOuterAlt(localContext, 6); + { + this.state = 2749; + this.match(PostgreSqlParser.DEFAULT); + this.state = 2750; + this.expression2(0); + } + break; + case PostgreSqlParser.GENERATED: + this.enterOuterAlt(localContext, 7); + { + this.state = 2751; + this.match(PostgreSqlParser.GENERATED); + this.state = 2752; + this.generatedWhen(); + this.state = 2753; + this.match(PostgreSqlParser.AS); + this.state = 2761; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.IDENTITY_P: + { + this.state = 2754; + this.match(PostgreSqlParser.IDENTITY_P); + this.state = 2755; + this.optionalParenthesizedSeqOptionsList(); + } + break; + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 2756; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2757; + this.expression1(); + this.state = 2758; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2759; + this.match(PostgreSqlParser.STORED); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case PostgreSqlParser.REFERENCES: + this.enterOuterAlt(localContext, 8); + { + this.state = 2763; + this.match(PostgreSqlParser.REFERENCES); + this.state = 2764; + this.qualifiedName(); + this.state = 2765; + this.columnListWithParentheses(); + this.state = 2766; + this.matchClause(); + this.state = 2767; + this.keyActions(); + } + 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 generatedWhen(): GeneratedWhenContext { + let localContext = new GeneratedWhenContext(this.context, this.state); + this.enterRule(localContext, 184, PostgreSqlParser.RULE_generatedWhen); + try { + this.state = 2774; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: + this.enterOuterAlt(localContext, 1); + { + this.state = 2771; + this.match(PostgreSqlParser.ALWAYS); + } + break; case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); - { - this.state = 2800; - this.tableelementlist(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 2772; + this.match(PostgreSqlParser.BY); + this.state = 2773; + this.match(PostgreSqlParser.DEFAULT); } break; default: @@ -13710,40 +13553,44 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opttypedtableelementlist(): OpttypedtableelementlistContext { - let localContext = new OpttypedtableelementlistContext(this.context, this.state); - this.enterRule(localContext, 176, PostgreSqlParser.RULE_opttypedtableelementlist); + public constraintAttribute(): ConstraintAttributeContext { + let localContext = new ConstraintAttributeContext(this.context, this.state); + this.enterRule(localContext, 186, PostgreSqlParser.RULE_constraintAttribute); + let _la: number; try { - this.state = 2809; + this.state = 2781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.DEFERRABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2804; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2805; - this.typedtableelementlist(); - this.state = 2806; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2776; + this.match(PostgreSqlParser.DEFERRABLE); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.NOT: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 2777; + this.match(PostgreSqlParser.NOT); + this.state = 2778; + this.match(PostgreSqlParser.DEFERRABLE); + } + break; + case PostgreSqlParser.INITIALLY: + this.enterOuterAlt(localContext, 3); + { + this.state = 2779; + this.match(PostgreSqlParser.INITIALLY); + this.state = 2780; + _la = this.tokenStream.LA(1); + if(!(_la === 180 || _la === 221)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; default: @@ -13764,31 +13611,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tableelementlist(): TableelementlistContext { - let localContext = new TableelementlistContext(this.context, this.state); - this.enterRule(localContext, 178, PostgreSqlParser.RULE_tableelementlist); - let _la: number; + public tableLikeClause(): TableLikeClauseContext { + let localContext = new TableLikeClauseContext(this.context, this.state); + this.enterRule(localContext, 188, PostgreSqlParser.RULE_tableLikeClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; - this.tableelement(); - this.state = 2816; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 2812; - this.match(PostgreSqlParser.COMMA); - this.state = 2813; - this.tableelement(); - } - } - this.state = 2818; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 2783; + this.match(PostgreSqlParser.LIKE); + this.state = 2784; + this.qualifiedName(); + this.state = 2785; + this.tableLikeOptionList(); } } catch (re) { @@ -13805,28 +13639,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public typedtableelementlist(): TypedtableelementlistContext { - let localContext = new TypedtableelementlistContext(this.context, this.state); - this.enterRule(localContext, 180, PostgreSqlParser.RULE_typedtableelementlist); + public tableLikeOptionList(): TableLikeOptionListContext { + let localContext = new TableLikeOptionListContext(this.context, this.state); + this.enterRule(localContext, 190, PostgreSqlParser.RULE_tableLikeOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2819; - this.typedtableelement(); - this.state = 2824; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { + while (_la === 200 || _la === 224) { { { - this.state = 2820; - this.match(PostgreSqlParser.COMMA); - this.state = 2821; - this.typedtableelement(); + this.state = 2787; + _la = this.tokenStream.LA(1); + if(!(_la === 200 || _la === 224)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2788; + this.tableLikeOption(); } } - this.state = 2826; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13846,34 +13685,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tableelement(): TableelementContext { - let localContext = new TableelementContext(this.context, this.state); - this.enterRule(localContext, 182, PostgreSqlParser.RULE_tableelement); + public tableLikeOption(): TableLikeOptionContext { + let localContext = new TableLikeOptionContext(this.context, this.state); + this.enterRule(localContext, 192, PostgreSqlParser.RULE_tableLikeOption); + let _la: number; try { - this.state = 2830; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2827; - this.tableconstraint(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2828; - this.tablelikeclause(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 2829; - this.columnDef(); - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 2794; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 335 || _la === 338 || _la === 438)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -13890,27 +13717,37 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public typedtableelement(): TypedtableelementContext { - let localContext = new TypedtableelementContext(this.context, this.state); - this.enterRule(localContext, 184, PostgreSqlParser.RULE_typedtableelement); + public tableConstraint(): TableConstraintContext { + let localContext = new TableConstraintContext(this.context, this.state); + this.enterRule(localContext, 194, PostgreSqlParser.RULE_tableConstraint); try { - this.state = 2834; + this.state = 2801; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CONSTRAINT: this.enterOuterAlt(localContext, 1); { - this.state = 2832; - this.columnOptions(); + this.state = 2796; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 2797; + this.name(); + this.state = 2798; + this.constraintElement(); } break; - case 2: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.FOREIGN: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.EXCLUDE: this.enterOuterAlt(localContext, 2); { - this.state = 2833; - this.tableconstraint(); + this.state = 2800; + this.constraintElement(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -13927,20 +13764,162 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public columnDef(): ColumnDefContext { - let localContext = new ColumnDefContext(this.context, this.state); - this.enterRule(localContext, 186, PostgreSqlParser.RULE_columnDef); + public constraintElement(): ConstraintElementContext { + let localContext = new ConstraintElementContext(this.context, this.state); + this.enterRule(localContext, 196, PostgreSqlParser.RULE_constraintElement); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2836; - this.colid(); - this.state = 2837; - this.typename(); - this.state = 2838; - this.create_generic_options(); - this.state = 2839; - this.colquallist(); + this.state = 2861; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CHECK: + this.enterOuterAlt(localContext, 1); + { + this.state = 2803; + this.match(PostgreSqlParser.CHECK); + this.state = 2804; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2805; + this.expression1(); + this.state = 2806; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2807; + this.constraintAttributeSpecification(); + } + break; + case PostgreSqlParser.UNIQUE: + this.enterOuterAlt(localContext, 2); + { + this.state = 2809; + this.match(PostgreSqlParser.UNIQUE); + this.state = 2821; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 2810; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2811; + this.columnList(); + this.state = 2812; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2813; + this.optionalColumnListInclude(); + this.state = 2814; + this.optionalDefinition(); + this.state = 2815; + this.usingIndexTablespace(); + this.state = 2816; + this.constraintAttributeSpecification(); + } + break; + case PostgreSqlParser.USING: + { + this.state = 2818; + this.existingIndex(); + this.state = 2819; + this.constraintAttributeSpecification(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case PostgreSqlParser.PRIMARY: + this.enterOuterAlt(localContext, 3); + { + this.state = 2823; + this.match(PostgreSqlParser.PRIMARY); + this.state = 2824; + this.match(PostgreSqlParser.KEY); + this.state = 2836; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 2825; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2826; + this.columnList(); + this.state = 2827; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2828; + this.optionalColumnListInclude(); + this.state = 2829; + this.optionalDefinition(); + this.state = 2830; + this.usingIndexTablespace(); + this.state = 2831; + this.constraintAttributeSpecification(); + } + break; + case PostgreSqlParser.USING: + { + this.state = 2833; + this.existingIndex(); + this.state = 2834; + this.constraintAttributeSpecification(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case PostgreSqlParser.EXCLUDE: + this.enterOuterAlt(localContext, 4); + { + this.state = 2838; + this.match(PostgreSqlParser.EXCLUDE); + this.state = 2839; + this.optionalAccessMethodClause(); + this.state = 2840; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2841; + this.exclusionConstraintList(); + this.state = 2842; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2843; + this.optionalColumnListInclude(); + this.state = 2844; + this.optionalDefinition(); + this.state = 2845; + this.usingIndexTablespace(); + this.state = 2846; + this.exclusionWhereClause(); + this.state = 2847; + this.constraintAttributeSpecification(); + } + break; + case PostgreSqlParser.FOREIGN: + this.enterOuterAlt(localContext, 5); + { + this.state = 2849; + this.match(PostgreSqlParser.FOREIGN); + this.state = 2850; + this.match(PostgreSqlParser.KEY); + this.state = 2851; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2852; + this.columnList(); + this.state = 2853; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2854; + this.match(PostgreSqlParser.REFERENCES); + this.state = 2855; + this.qualifiedName(); + this.state = 2856; + this.columnListWithParentheses(); + this.state = 2857; + this.matchClause(); + this.state = 2858; + this.keyActions(); + this.state = 2859; + this.constraintAttributeSpecification(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -13957,29 +13936,58 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public columnOptions(): ColumnOptionsContext { - let localContext = new ColumnOptionsContext(this.context, this.state); - this.enterRule(localContext, 188, PostgreSqlParser.RULE_columnOptions); - let _la: number; + public columnListWithParentheses(): ColumnListWithParenthesesContext { + let localContext = new ColumnListWithParenthesesContext(this.context, this.state); + this.enterRule(localContext, 198, PostgreSqlParser.RULE_columnListWithParentheses); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2841; - this.colid(); - this.state = 2844; + this.state = 2868; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 1); { - this.state = 2842; - this.match(PostgreSqlParser.WITH); - this.state = 2843; - this.match(PostgreSqlParser.OPTIONS); + this.state = 2863; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2864; + this.columnList(); + this.state = 2865; + this.match(PostgreSqlParser.CLOSE_PAREN); } - } - - this.state = 2846; - this.colquallist(); + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.AS: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.FROM: + case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.ON: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.TO: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.NO: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.GENERATED: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -13996,24 +14004,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public colquallist(): ColquallistContext { - let localContext = new ColquallistContext(this.context, this.state); - this.enterRule(localContext, 190, PostgreSqlParser.RULE_colquallist); + public columnList(): ColumnListContext { + let localContext = new ColumnListContext(this.context, this.state); + this.enterRule(localContext, 200, PostgreSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2851; + this.state = 2870; + this.columnElement(); + this.state = 2875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 134223883) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { + while (_la === 6) { { { - this.state = 2848; - this.colconstraint(); + this.state = 2871; + this.match(PostgreSqlParser.COMMA); + this.state = 2872; + this.columnElement(); } } - this.state = 2853; + this.state = 2877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14033,47 +14045,69 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public colconstraint(): ColconstraintContext { - let localContext = new ColconstraintContext(this.context, this.state); - this.enterRule(localContext, 192, PostgreSqlParser.RULE_colconstraint); + public columnElement(): ColumnElementContext { + let localContext = new ColumnElementContext(this.context, this.state); + this.enterRule(localContext, 202, PostgreSqlParser.RULE_columnElement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2878; + this.columnId(); + } + } + 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 optionalColumnListInclude(): OptionalColumnListIncludeContext { + let localContext = new OptionalColumnListIncludeContext(this.context, this.state); + this.enterRule(localContext, 204, PostgreSqlParser.RULE_optionalColumnListInclude); try { - this.state = 2862; + this.state = 2886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.INCLUDE: this.enterOuterAlt(localContext, 1); { - this.state = 2854; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2855; - this.name(); - this.state = 2856; - this.colconstraintelem(); + this.state = 2880; + this.match(PostgreSqlParser.INCLUDE); + this.state = 2881; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2882; + this.columnList(); + this.state = 2883; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOT: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.WITH: + case PostgreSqlParser.NO: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 2858; - this.colconstraintelem(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 2859; - this.constraintattr(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 2860; - this.match(PostgreSqlParser.COLLATE); - this.state = 2861; - this.any_name(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -14090,131 +14124,97 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public colconstraintelem(): ColconstraintelemContext { - let localContext = new ColconstraintelemContext(this.context, this.state); - this.enterRule(localContext, 194, PostgreSqlParser.RULE_colconstraintelem); + public matchClause(): MatchClauseContext { + let localContext = new MatchClauseContext(this.context, this.state); + this.enterRule(localContext, 206, PostgreSqlParser.RULE_matchClause); + let _la: number; try { - this.state = 2902; + this.state = 2891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NOT: + case PostgreSqlParser.MATCH: this.enterOuterAlt(localContext, 1); { - this.state = 2864; - this.match(PostgreSqlParser.NOT); - this.state = 2865; - this.match(PostgreSqlParser.NULL_P); - } - break; - case PostgreSqlParser.NULL_P: - this.enterOuterAlt(localContext, 2); - { - this.state = 2866; - this.match(PostgreSqlParser.NULL_P); + this.state = 2888; + this.match(PostgreSqlParser.MATCH); + this.state = 2889; + _la = this.tokenStream.LA(1); + if(!(_la === 113 || _la === 277 || _la === 329)) { + this.errorHandler.recoverInline(this); } - break; - case PostgreSqlParser.UNIQUE: - this.enterOuterAlt(localContext, 3); - { - this.state = 2867; - this.match(PostgreSqlParser.UNIQUE); - this.state = 2868; - this.opt_definition(); - this.state = 2869; - this.optconstablespace(); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case PostgreSqlParser.PRIMARY: - this.enterOuterAlt(localContext, 4); - { - this.state = 2871; - this.match(PostgreSqlParser.PRIMARY); - this.state = 2872; - this.match(PostgreSqlParser.KEY); - this.state = 2873; - this.opt_definition(); - this.state = 2874; - this.optconstablespace(); } break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: case PostgreSqlParser.CHECK: - this.enterOuterAlt(localContext, 5); - { - this.state = 2876; - this.match(PostgreSqlParser.CHECK); - this.state = 2877; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2878; - this.a_expr(); - this.state = 2879; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2880; - this.opt_no_inherit(); - } - break; + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: - this.enterOuterAlt(localContext, 6); + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.ON: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.NO: + case PostgreSqlParser.GENERATED: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 2882; - this.match(PostgreSqlParser.DEFAULT); - this.state = 2883; - this.b_expr(0); } break; - case PostgreSqlParser.GENERATED: - this.enterOuterAlt(localContext, 7); + 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 exclusionConstraintList(): ExclusionConstraintListContext { + let localContext = new ExclusionConstraintListContext(this.context, this.state); + this.enterRule(localContext, 208, PostgreSqlParser.RULE_exclusionConstraintList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2893; + this.exclusionConstraintElement(); + this.state = 2898; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { { - this.state = 2884; - this.match(PostgreSqlParser.GENERATED); - this.state = 2885; - this.generated_when(); - this.state = 2886; - this.match(PostgreSqlParser.AS); this.state = 2894; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.IDENTITY_P: - { - this.state = 2887; - this.match(PostgreSqlParser.IDENTITY_P); - this.state = 2888; - this.optparenthesizedseqoptlist(); - } - break; - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 2889; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2890; - this.a_expr(); - this.state = 2891; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2892; - this.match(PostgreSqlParser.STORED); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.match(PostgreSqlParser.COMMA); + this.state = 2895; + this.exclusionConstraintElement(); } } - break; - case PostgreSqlParser.REFERENCES: - this.enterOuterAlt(localContext, 8); - { - this.state = 2896; - this.match(PostgreSqlParser.REFERENCES); - this.state = 2897; - this.qualified_name(); - this.state = 2898; - this.opt_column_list(); - this.state = 2899; - this.key_match(); this.state = 2900; - this.key_actions(); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -14231,31 +14231,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public generated_when(): Generated_whenContext { - let localContext = new Generated_whenContext(this.context, this.state); - this.enterRule(localContext, 196, PostgreSqlParser.RULE_generated_when); + public exclusionConstraintElement(): ExclusionConstraintElementContext { + let localContext = new ExclusionConstraintElementContext(this.context, this.state); + this.enterRule(localContext, 210, PostgreSqlParser.RULE_exclusionConstraintElement); try { - this.state = 2907; + this.enterOuterAlt(localContext, 1); + { + this.state = 2901; + this.indexElement(); + this.state = 2902; + this.match(PostgreSqlParser.WITH); + this.state = 2909; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ALWAYS: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { + case 1: { - this.state = 2904; - this.match(PostgreSqlParser.ALWAYS); + this.state = 2903; + this.anyOperator(); } break; - case PostgreSqlParser.BY: - this.enterOuterAlt(localContext, 2); + case 2: { + this.state = 2904; + this.match(PostgreSqlParser.OPERATOR); this.state = 2905; - this.match(PostgreSqlParser.BY); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2906; - this.match(PostgreSqlParser.DEFAULT); + this.anyOperator(); + this.state = 2907; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - default: - throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -14272,44 +14279,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraintattr(): ConstraintattrContext { - let localContext = new ConstraintattrContext(this.context, this.state); - this.enterRule(localContext, 198, PostgreSqlParser.RULE_constraintattr); - let _la: number; + public exclusionWhereClause(): ExclusionWhereClauseContext { + let localContext = new ExclusionWhereClauseContext(this.context, this.state); + this.enterRule(localContext, 212, PostgreSqlParser.RULE_exclusionWhereClause); try { - this.state = 2914; + this.state = 2917; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 2909; - this.match(PostgreSqlParser.DEFERRABLE); - } - break; - case PostgreSqlParser.NOT: - this.enterOuterAlt(localContext, 2); - { - this.state = 2910; - this.match(PostgreSqlParser.NOT); this.state = 2911; - this.match(PostgreSqlParser.DEFERRABLE); + this.match(PostgreSqlParser.WHERE); + this.state = 2912; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2913; + this.expression1(); + this.state = 2914; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.DEFERRABLE: case PostgreSqlParser.INITIALLY: - this.enterOuterAlt(localContext, 3); + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NO: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 2912; - this.match(PostgreSqlParser.INITIALLY); - this.state = 2913; - _la = this.tokenStream.LA(1); - if(!(_la === 180 || _la === 221)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } } break; default: @@ -14330,18 +14331,51 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tablelikeclause(): TablelikeclauseContext { - let localContext = new TablelikeclauseContext(this.context, this.state); - this.enterRule(localContext, 200, PostgreSqlParser.RULE_tablelikeclause); + public keyActions(): KeyActionsContext { + let localContext = new KeyActionsContext(this.context, this.state); + this.enterRule(localContext, 214, PostgreSqlParser.RULE_keyActions); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2916; - this.match(PostgreSqlParser.LIKE); - this.state = 2917; - this.qualified_name(); - this.state = 2918; - this.tablelikeoptionlist(); + this.state = 2928; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2919; + this.onKeyUpdateClause(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2920; + this.onKeyDeleteClause(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2921; + this.onKeyUpdateClause(); + this.state = 2922; + this.onKeyDeleteClause(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2924; + this.onKeyDeleteClause(); + this.state = 2925; + this.onKeyUpdateClause(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + // tslint:disable-next-line:no-empty + { + } + break; } } catch (re) { @@ -14358,36 +14392,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tablelikeoptionlist(): TablelikeoptionlistContext { - let localContext = new TablelikeoptionlistContext(this.context, this.state); - this.enterRule(localContext, 202, PostgreSqlParser.RULE_tablelikeoptionlist); - let _la: number; + public onKeyUpdateClause(): OnKeyUpdateClauseContext { + let localContext = new OnKeyUpdateClauseContext(this.context, this.state); + this.enterRule(localContext, 216, PostgreSqlParser.RULE_onKeyUpdateClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2924; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 200 || _la === 224) { - { - { - this.state = 2920; - _la = this.tokenStream.LA(1); - if(!(_la === 200 || _la === 224)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 2921; - this.tablelikeoption(); - } - } - this.state = 2926; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 2930; + this.match(PostgreSqlParser.ON); + this.state = 2931; + this.match(PostgreSqlParser.UPDATE); + this.state = 2932; + this.keyAction(); } } catch (re) { @@ -14404,22 +14420,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tablelikeoption(): TablelikeoptionContext { - let localContext = new TablelikeoptionContext(this.context, this.state); - this.enterRule(localContext, 204, PostgreSqlParser.RULE_tablelikeoption); - let _la: number; + public onKeyDeleteClause(): OnKeyDeleteClauseContext { + let localContext = new OnKeyDeleteClauseContext(this.context, this.state); + this.enterRule(localContext, 218, PostgreSqlParser.RULE_onKeyDeleteClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2927; - _la = this.tokenStream.LA(1); - if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 335 || _la === 338 || _la === 438)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 2934; + this.match(PostgreSqlParser.ON); + this.state = 2935; + this.match(PostgreSqlParser.DELETE_P); + this.state = 2936; + this.keyAction(); } } catch (re) { @@ -14436,33 +14448,51 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public tableconstraint(): TableconstraintContext { - let localContext = new TableconstraintContext(this.context, this.state); - this.enterRule(localContext, 206, PostgreSqlParser.RULE_tableconstraint); + public keyAction(): KeyActionContext { + let localContext = new KeyActionContext(this.context, this.state); + this.enterRule(localContext, 220, PostgreSqlParser.RULE_keyAction); + let _la: number; try { - this.state = 2934; + this.state = 2944; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.NO: this.enterOuterAlt(localContext, 1); { - this.state = 2929; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 2930; - this.name(); - this.state = 2931; - this.constraintelem(); + this.state = 2938; + this.match(PostgreSqlParser.NO); + this.state = 2939; + this.match(PostgreSqlParser.ACTION); } break; - case PostgreSqlParser.CHECK: - case PostgreSqlParser.FOREIGN: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2933; - this.constraintelem(); + this.state = 2940; + this.match(PostgreSqlParser.RESTRICT); + } + break; + case PostgreSqlParser.CASCADE: + this.enterOuterAlt(localContext, 3); + { + this.state = 2941; + this.match(PostgreSqlParser.CASCADE); + } + break; + case PostgreSqlParser.SET: + this.enterOuterAlt(localContext, 4); + { + this.state = 2942; + this.match(PostgreSqlParser.SET); + this.state = 2943; + _la = this.tokenStream.LA(1); + if(!(_la === 53 || _la === 78)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; default: @@ -14483,158 +14513,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraintelem(): ConstraintelemContext { - let localContext = new ConstraintelemContext(this.context, this.state); - this.enterRule(localContext, 208, PostgreSqlParser.RULE_constraintelem); + public inheritClause(): InheritClauseContext { + let localContext = new InheritClauseContext(this.context, this.state); + this.enterRule(localContext, 222, PostgreSqlParser.RULE_inheritClause); try { - this.state = 2994; + this.state = 2952; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CHECK: + case PostgreSqlParser.INHERITS: this.enterOuterAlt(localContext, 1); { - this.state = 2936; - this.match(PostgreSqlParser.CHECK); - this.state = 2937; + this.state = 2946; + this.match(PostgreSqlParser.INHERITS); + this.state = 2947; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2938; - this.a_expr(); - this.state = 2939; + this.state = 2948; + this.qualifiedNameList(); + this.state = 2949; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2940; - this.constraintattributespec(); } break; - case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.WITHOUT: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 2942; - this.match(PostgreSqlParser.UNIQUE); - this.state = 2954; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 2943; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2944; - this.columnlist(); - this.state = 2945; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2946; - this.opt_c_include(); - this.state = 2947; - this.opt_definition(); - this.state = 2948; - this.optconstablespace(); - this.state = 2949; - this.constraintattributespec(); - } - break; - case PostgreSqlParser.USING: - { - this.state = 2951; - this.existingindex(); - this.state = 2952; - this.constraintattributespec(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case PostgreSqlParser.PRIMARY: - this.enterOuterAlt(localContext, 3); - { - this.state = 2956; - this.match(PostgreSqlParser.PRIMARY); - this.state = 2957; - this.match(PostgreSqlParser.KEY); - this.state = 2969; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 2958; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2959; - this.columnlist(); - this.state = 2960; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2961; - this.opt_c_include(); - this.state = 2962; - this.opt_definition(); - this.state = 2963; - this.optconstablespace(); - this.state = 2964; - this.constraintattributespec(); - } - break; - case PostgreSqlParser.USING: - { - this.state = 2966; - this.existingindex(); - this.state = 2967; - this.constraintattributespec(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case PostgreSqlParser.EXCLUDE: - this.enterOuterAlt(localContext, 4); - { - this.state = 2971; - this.match(PostgreSqlParser.EXCLUDE); - this.state = 2972; - this.access_method_clause(); - this.state = 2973; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2974; - this.exclusionconstraintlist(); - this.state = 2975; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2976; - this.opt_c_include(); - this.state = 2977; - this.opt_definition(); - this.state = 2978; - this.optconstablespace(); - this.state = 2979; - this.exclusionwhereclause(); - this.state = 2980; - this.constraintattributespec(); - } - break; - case PostgreSqlParser.FOREIGN: - this.enterOuterAlt(localContext, 5); - { - this.state = 2982; - this.match(PostgreSqlParser.FOREIGN); - this.state = 2983; - this.match(PostgreSqlParser.KEY); - this.state = 2984; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2985; - this.columnlist(); - this.state = 2986; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2987; - this.match(PostgreSqlParser.REFERENCES); - this.state = 2988; - this.qualified_name(); - this.state = 2989; - this.opt_column_list(); - this.state = 2990; - this.key_match(); - this.state = 2991; - this.key_actions(); - this.state = 2992; - this.constraintattributespec(); } break; default: @@ -14655,39 +14568,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_no_inherit(): Opt_no_inheritContext { - let localContext = new Opt_no_inheritContext(this.context, this.state); - this.enterRule(localContext, 210, PostgreSqlParser.RULE_opt_no_inherit); + public optionalPartitionSpecification(): OptionalPartitionSpecificationContext { + let localContext = new OptionalPartitionSpecificationContext(this.context, this.state); + this.enterRule(localContext, 224, PostgreSqlParser.RULE_optionalPartitionSpecification); try { - this.state = 2999; + this.state = 2956; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: + case PostgreSqlParser.PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 2996; - this.match(PostgreSqlParser.NO); - this.state = 2997; - this.match(PostgreSqlParser.INHERIT); + this.state = 2954; + this.partitionSpecification(); } break; case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: - case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.GENERATED: + case PostgreSqlParser.ON: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.WITHOUT: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -14711,58 +14615,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_column_list(): Opt_column_listContext { - let localContext = new Opt_column_listContext(this.context, this.state); - this.enterRule(localContext, 212, PostgreSqlParser.RULE_opt_column_list); + public partitionSpecification(): PartitionSpecificationContext { + let localContext = new PartitionSpecificationContext(this.context, this.state); + this.enterRule(localContext, 226, PostgreSqlParser.RULE_partitionSpecification); try { - this.state = 3006; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 1); - { - this.state = 3001; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3002; - this.columnlist(); - this.state = 3003; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.FROM: - case PostgreSqlParser.INITIALLY: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.ON: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.TO: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.NO: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.GENERATED: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.enterOuterAlt(localContext, 1); + { + this.state = 2958; + this.match(PostgreSqlParser.PARTITION); + this.state = 2959; + this.match(PostgreSqlParser.BY); + this.state = 2960; + this.columnId(); + this.state = 2961; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2962; + this.partitionElements(); + this.state = 2963; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -14779,28 +14649,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public columnlist(): ColumnlistContext { - let localContext = new ColumnlistContext(this.context, this.state); - this.enterRule(localContext, 214, PostgreSqlParser.RULE_columnlist); + public partitionElements(): PartitionElementsContext { + let localContext = new PartitionElementsContext(this.context, this.state); + this.enterRule(localContext, 228, PostgreSqlParser.RULE_partitionElements); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3008; - this.columnElem(); - this.state = 3013; + this.state = 2965; + this.partitionElement(); + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3009; + this.state = 2966; this.match(PostgreSqlParser.COMMA); - this.state = 3010; - this.columnElem(); + this.state = 2967; + this.partitionElement(); } } - this.state = 3015; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14820,14 +14690,50 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public columnElem(): ColumnElemContext { - let localContext = new ColumnElemContext(this.context, this.state); - this.enterRule(localContext, 216, PostgreSqlParser.RULE_columnElem); + public partitionElement(): PartitionElementContext { + let localContext = new PartitionElementContext(this.context, this.state); + this.enterRule(localContext, 230, PostgreSqlParser.RULE_partitionElement); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3016; - this.colid(); + this.state = 2987; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2973; + this.columnId(); + this.state = 2974; + this.optionalCollate(); + this.state = 2975; + this.optionalClass(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2977; + this.functionExpressionWindowless(); + this.state = 2978; + this.optionalCollate(); + this.state = 2979; + this.optionalClass(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2981; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2982; + this.expression1(); + this.state = 2983; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2984; + this.optionalCollate(); + this.state = 2985; + this.optionalClass(); + } + break; } } catch (re) { @@ -14844,38 +14750,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_c_include(): Opt_c_includeContext { - let localContext = new Opt_c_includeContext(this.context, this.state); - this.enterRule(localContext, 218, PostgreSqlParser.RULE_opt_c_include); + public optionalTableAccessMethodClause(): OptionalTableAccessMethodClauseContext { + let localContext = new OptionalTableAccessMethodClauseContext(this.context, this.state); + this.enterRule(localContext, 232, PostgreSqlParser.RULE_optionalTableAccessMethodClause); try { - this.state = 3024; + this.state = 2992; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 1); { - this.state = 3018; - this.match(PostgreSqlParser.INCLUDE); - this.state = 3019; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3020; - this.columnlist(); - this.state = 3021; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2989; + this.match(PostgreSqlParser.USING); + this.state = 2990; + this.name(); } break; case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.AS: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHERE: + case PostgreSqlParser.ON: case PostgreSqlParser.WITH: - case PostgreSqlParser.NO: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.WITHOUT: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -14899,50 +14799,40 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public key_match(): Key_matchContext { - let localContext = new Key_matchContext(this.context, this.state); - this.enterRule(localContext, 220, PostgreSqlParser.RULE_key_match); - let _la: number; + public with_(): WithContext { + let localContext = new WithContext(this.context, this.state); + this.enterRule(localContext, 234, PostgreSqlParser.RULE_with); try { - this.state = 3029; + this.state = 2999; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.MATCH: + case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 3026; - this.match(PostgreSqlParser.MATCH); - this.state = 3027; - _la = this.tokenStream.LA(1); - if(!(_la === 113 || _la === 277 || _la === 329)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 2994; + this.match(PostgreSqlParser.WITH); + this.state = 2995; + this.relOptions(); } + break; + case PostgreSqlParser.WITHOUT: + this.enterOuterAlt(localContext, 2); + { + this.state = 2996; + this.match(PostgreSqlParser.WITHOUT); + this.state = 2997; + this.match(PostgreSqlParser.OIDS); } break; case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: - case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.AS: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: case PostgreSqlParser.ON: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.NO: - case PostgreSqlParser.GENERATED: - this.enterOuterAlt(localContext, 2); + case PostgreSqlParser.TABLESPACE: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -14965,31 +14855,64 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public exclusionconstraintlist(): ExclusionconstraintlistContext { - let localContext = new ExclusionconstraintlistContext(this.context, this.state); - this.enterRule(localContext, 222, PostgreSqlParser.RULE_exclusionconstraintlist); - let _la: number; + public onCommitOption(): OnCommitOptionContext { + let localContext = new OnCommitOptionContext(this.context, this.state); + this.enterRule(localContext, 236, PostgreSqlParser.RULE_onCommitOption); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3031; - this.exclusionconstraintelem(); - this.state = 3036; + this.state = 3011; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ON: + this.enterOuterAlt(localContext, 1); { - this.state = 3032; - this.match(PostgreSqlParser.COMMA); - this.state = 3033; - this.exclusionconstraintelem(); + this.state = 3001; + this.match(PostgreSqlParser.ON); + this.state = 3002; + this.match(PostgreSqlParser.COMMIT); + this.state = 3008; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DROP: + { + this.state = 3003; + this.match(PostgreSqlParser.DROP); + } + break; + case PostgreSqlParser.DELETE_P: + { + this.state = 3004; + this.match(PostgreSqlParser.DELETE_P); + this.state = 3005; + this.match(PostgreSqlParser.ROWS); + } + break; + case PostgreSqlParser.PRESERVE: + { + this.state = 3006; + this.match(PostgreSqlParser.PRESERVE); + this.state = 3007; + this.match(PostgreSqlParser.ROWS); + } + break; + default: + throw new antlr.NoViableAltException(this); } } - this.state = 3038; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.AS: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.TABLESPACE: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -15006,38 +14929,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public exclusionconstraintelem(): ExclusionconstraintelemContext { - let localContext = new ExclusionconstraintelemContext(this.context, this.state); - this.enterRule(localContext, 224, PostgreSqlParser.RULE_exclusionconstraintelem); + public optionalTablespace(): OptionalTablespaceContext { + let localContext = new OptionalTablespaceContext(this.context, this.state); + this.enterRule(localContext, 238, PostgreSqlParser.RULE_optionalTablespace); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3039; - this.index_elem(); - this.state = 3040; - this.match(PostgreSqlParser.WITH); - this.state = 3047; + this.state = 3016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.TABLESPACE: + this.enterOuterAlt(localContext, 1); { - this.state = 3041; - this.any_operator(); + this.state = 3013; + this.match(PostgreSqlParser.TABLESPACE); + this.state = 3014; + this.name(); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.AS: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.WHERE: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 3042; - this.match(PostgreSqlParser.OPERATOR); - this.state = 3043; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3044; - this.any_operator(); - this.state = 3045; - this.match(PostgreSqlParser.CLOSE_PAREN); } break; - } + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -15054,35 +14975,45 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public exclusionwhereclause(): ExclusionwhereclauseContext { - let localContext = new ExclusionwhereclauseContext(this.context, this.state); - this.enterRule(localContext, 226, PostgreSqlParser.RULE_exclusionwhereclause); + public usingIndexTablespace(): UsingIndexTablespaceContext { + let localContext = new UsingIndexTablespaceContext(this.context, this.state); + this.enterRule(localContext, 240, PostgreSqlParser.RULE_usingIndexTablespace); try { - this.state = 3055; + this.state = 3023; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WHERE: + case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 1); { - this.state = 3049; - this.match(PostgreSqlParser.WHERE); - this.state = 3050; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3051; - this.a_expr(); - this.state = 3052; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3018; + this.match(PostgreSqlParser.USING); + this.state = 3019; + this.match(PostgreSqlParser.INDEX); + this.state = 3020; + this.match(PostgreSqlParser.TABLESPACE); + this.state = 3021; + this.name(); } break; case PostgreSqlParser.EOF: case PostgreSqlParser.CLOSE_PAREN: case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DEFERRABLE: case PostgreSqlParser.INITIALLY: case PostgreSqlParser.INTO: case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.WHERE: case PostgreSqlParser.NO: + case PostgreSqlParser.GENERATED: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -15106,51 +15037,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public key_actions(): Key_actionsContext { - let localContext = new Key_actionsContext(this.context, this.state); - this.enterRule(localContext, 228, PostgreSqlParser.RULE_key_actions); + public existingIndex(): ExistingIndexContext { + let localContext = new ExistingIndexContext(this.context, this.state); + this.enterRule(localContext, 242, PostgreSqlParser.RULE_existingIndex); try { - this.state = 3066; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3057; - this.key_update(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3058; - this.key_delete(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3059; - this.key_update(); - this.state = 3060; - this.key_delete(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3062; - this.key_delete(); - this.state = 3063; - this.key_update(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - // tslint:disable-next-line:no-empty - { - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 3025; + this.match(PostgreSqlParser.USING); + this.state = 3026; + this.match(PostgreSqlParser.INDEX); + this.state = 3027; + this.name(); } } catch (re) { @@ -15167,18 +15065,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public key_update(): Key_updateContext { - let localContext = new Key_updateContext(this.context, this.state); - this.enterRule(localContext, 230, PostgreSqlParser.RULE_key_update); + public createStatsStatement(): CreateStatsStatementContext { + let localContext = new CreateStatsStatementContext(this.context, this.state); + this.enterRule(localContext, 244, PostgreSqlParser.RULE_createStatsStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3068; + this.state = 3029; + this.match(PostgreSqlParser.CREATE); + this.state = 3030; + this.match(PostgreSqlParser.STATISTICS); + this.state = 3034; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { + case 1: + { + this.state = 3031; + this.match(PostgreSqlParser.IF_P); + this.state = 3032; + this.match(PostgreSqlParser.NOT); + this.state = 3033; + this.match(PostgreSqlParser.EXISTS); + } + break; + } + this.state = 3036; + this.anyName(); + this.state = 3037; + this.optionalNameList(); + this.state = 3038; this.match(PostgreSqlParser.ON); - this.state = 3069; - this.match(PostgreSqlParser.UPDATE); - this.state = 3070; - this.key_action(); + this.state = 3039; + this.expressionList(); + this.state = 3040; + this.match(PostgreSqlParser.FROM); + this.state = 3041; + this.fromList(); } } catch (re) { @@ -15195,18 +15117,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public key_delete(): Key_deleteContext { - let localContext = new Key_deleteContext(this.context, this.state); - this.enterRule(localContext, 232, PostgreSqlParser.RULE_key_delete); + public alterStatsStatement(): AlterStatsStatementContext { + let localContext = new AlterStatsStatementContext(this.context, this.state); + this.enterRule(localContext, 246, PostgreSqlParser.RULE_alterStatsStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3072; - this.match(PostgreSqlParser.ON); - this.state = 3073; - this.match(PostgreSqlParser.DELETE_P); - this.state = 3074; - this.key_action(); + this.state = 3043; + this.match(PostgreSqlParser.ALTER); + this.state = 3044; + this.match(PostgreSqlParser.STATISTICS); + this.state = 3047; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { + case 1: + { + this.state = 3045; + this.match(PostgreSqlParser.IF_P); + this.state = 3046; + this.match(PostgreSqlParser.EXISTS); + } + break; + } + this.state = 3049; + this.anyName(); + this.state = 3050; + this.match(PostgreSqlParser.SET); + this.state = 3051; + this.match(PostgreSqlParser.STATISTICS); + this.state = 3052; + this.signedIconst(); } } catch (re) { @@ -15223,55 +15163,40 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public key_action(): Key_actionContext { - let localContext = new Key_actionContext(this.context, this.state); - this.enterRule(localContext, 234, PostgreSqlParser.RULE_key_action); - let _la: number; + public createAsStatement(): CreateAsStatementContext { + let localContext = new CreateAsStatementContext(this.context, this.state); + this.enterRule(localContext, 248, PostgreSqlParser.RULE_createAsStatement); try { - this.state = 3082; + this.enterOuterAlt(localContext, 1); + { + this.state = 3054; + this.match(PostgreSqlParser.CREATE); + this.state = 3055; + this.temporaryOption(); + this.state = 3056; + this.match(PostgreSqlParser.TABLE); + this.state = 3060; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: - this.enterOuterAlt(localContext, 1); - { - this.state = 3076; - this.match(PostgreSqlParser.NO); - this.state = 3077; - this.match(PostgreSqlParser.ACTION); - } - break; - case PostgreSqlParser.RESTRICT: - this.enterOuterAlt(localContext, 2); - { - this.state = 3078; - this.match(PostgreSqlParser.RESTRICT); - } - break; - case PostgreSqlParser.CASCADE: - this.enterOuterAlt(localContext, 3); - { - this.state = 3079; - this.match(PostgreSqlParser.CASCADE); - } - break; - case PostgreSqlParser.SET: - this.enterOuterAlt(localContext, 4); + switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { + case 1: { - this.state = 3080; - this.match(PostgreSqlParser.SET); - this.state = 3081; - _la = this.tokenStream.LA(1); - if(!(_la === 53 || _la === 78)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 3057; + this.match(PostgreSqlParser.IF_P); + this.state = 3058; + this.match(PostgreSqlParser.NOT); + this.state = 3059; + this.match(PostgreSqlParser.EXISTS); } break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 3062; + this.createAsTarget(); + this.state = 3063; + this.match(PostgreSqlParser.AS); + this.state = 3064; + this.selectStatement(); + this.state = 3065; + this.withData(); } } catch (re) { @@ -15288,45 +15213,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optinherit(): OptinheritContext { - let localContext = new OptinheritContext(this.context, this.state); - this.enterRule(localContext, 236, PostgreSqlParser.RULE_optinherit); + public createAsTarget(): CreateAsTargetContext { + let localContext = new CreateAsTargetContext(this.context, this.state); + this.enterRule(localContext, 250, PostgreSqlParser.RULE_createAsTarget); try { - this.state = 3090; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.INHERITS: - this.enterOuterAlt(localContext, 1); - { - this.state = 3084; - this.match(PostgreSqlParser.INHERITS); - this.state = 3085; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3086; - this.qualified_name_list(); - this.state = 3087; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.WITHOUT: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.enterOuterAlt(localContext, 1); + { + this.state = 3067; + this.qualifiedName(); + this.state = 3068; + this.columnListWithParentheses(); + this.state = 3069; + this.optionalTableAccessMethodClause(); + this.state = 3070; + this.with_(); + this.state = 3071; + this.onCommitOption(); + this.state = 3072; + this.optionalTablespace(); } } catch (re) { @@ -15343,30 +15247,44 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optpartitionspec(): OptpartitionspecContext { - let localContext = new OptpartitionspecContext(this.context, this.state); - this.enterRule(localContext, 238, PostgreSqlParser.RULE_optpartitionspec); + public withData(): WithDataContext { + let localContext = new WithDataContext(this.context, this.state); + this.enterRule(localContext, 252, PostgreSqlParser.RULE_withData); try { - this.state = 3094; + this.state = 3081; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.PARTITION: + case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 3092; - this.partitionspec(); + this.state = 3074; + this.match(PostgreSqlParser.WITH); + this.state = 3078; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DATA_P: + { + this.state = 3075; + this.match(PostgreSqlParser.DATA_P); + } + break; + case PostgreSqlParser.NO: + { + this.state = 3076; + this.match(PostgreSqlParser.NO); + this.state = 3077; + this.match(PostgreSqlParser.DATA_P); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; case PostgreSqlParser.EOF: case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -15390,24 +15308,83 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public partitionspec(): PartitionspecContext { - let localContext = new PartitionspecContext(this.context, this.state); - this.enterRule(localContext, 240, PostgreSqlParser.RULE_partitionspec); + public createMaterializedViewStatement(): CreateMaterializedViewStatementContext { + let localContext = new CreateMaterializedViewStatementContext(this.context, this.state); + this.enterRule(localContext, 254, PostgreSqlParser.RULE_createMaterializedViewStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { + this.state = 3083; + this.match(PostgreSqlParser.CREATE); + this.state = 3085; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 360) { + { + this.state = 3084; + this.match(PostgreSqlParser.UNLOGGED); + } + } + + this.state = 3087; + this.match(PostgreSqlParser.MATERIALIZED); + this.state = 3088; + this.match(PostgreSqlParser.VIEW); + this.state = 3092; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + case 1: + { + this.state = 3089; + this.match(PostgreSqlParser.IF_P); + this.state = 3090; + this.match(PostgreSqlParser.NOT); + this.state = 3091; + this.match(PostgreSqlParser.EXISTS); + } + break; + } + this.state = 3094; + this.createMaterializedViewTarget(); + this.state = 3095; + this.match(PostgreSqlParser.AS); this.state = 3096; - this.match(PostgreSqlParser.PARTITION); + this.selectStatement(); this.state = 3097; - this.match(PostgreSqlParser.BY); - this.state = 3098; - this.colid(); + this.withData(); + } + } + 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 createMaterializedViewTarget(): CreateMaterializedViewTargetContext { + let localContext = new CreateMaterializedViewTargetContext(this.context, this.state); + this.enterRule(localContext, 256, PostgreSqlParser.RULE_createMaterializedViewTarget); + try { + this.enterOuterAlt(localContext, 1); + { this.state = 3099; - this.match(PostgreSqlParser.OPEN_PAREN); + this.qualifiedName(); this.state = 3100; - this.part_params(); + this.columnListWithParentheses(); this.state = 3101; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.optionalTableAccessMethodClause(); + this.state = 3102; + this.optionalRelOptions(); + this.state = 3103; + this.optionalTablespace(); } } catch (re) { @@ -15424,31 +15401,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public part_params(): Part_paramsContext { - let localContext = new Part_paramsContext(this.context, this.state); - this.enterRule(localContext, 242, PostgreSqlParser.RULE_part_params); - let _la: number; + public refreshMaterializedViewStatement(): RefreshMaterializedViewStatementContext { + let localContext = new RefreshMaterializedViewStatementContext(this.context, this.state); + this.enterRule(localContext, 258, PostgreSqlParser.RULE_refreshMaterializedViewStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3103; - this.part_elem(); + this.state = 3105; + this.match(PostgreSqlParser.REFRESH); + this.state = 3106; + this.match(PostgreSqlParser.MATERIALIZED); + this.state = 3107; + this.match(PostgreSqlParser.VIEW); this.state = 3108; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 3104; - this.match(PostgreSqlParser.COMMA); - this.state = 3105; - this.part_elem(); - } - } - this.state = 3110; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.optionalConcurrently(); + this.state = 3109; + this.qualifiedName(); + this.state = 3110; + this.withData(); } } catch (re) { @@ -15465,50 +15435,45 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public part_elem(): Part_elemContext { - let localContext = new Part_elemContext(this.context, this.state); - this.enterRule(localContext, 244, PostgreSqlParser.RULE_part_elem); + public createSequenceStatement(): CreateSequenceStatementContext { + let localContext = new CreateSequenceStatementContext(this.context, this.state); + this.enterRule(localContext, 260, PostgreSqlParser.RULE_createSequenceStatement); + let _la: number; try { - this.state = 3125; + this.enterOuterAlt(localContext, 1); + { + this.state = 3112; + this.match(PostgreSqlParser.CREATE); + this.state = 3113; + this.temporaryOption(); + this.state = 3114; + this.match(PostgreSqlParser.SEQUENCE); + this.state = 3118; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3111; - this.colid(); - this.state = 3112; - this.opt_collate(); - this.state = 3113; - this.opt_class(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); { this.state = 3115; - this.func_expr_windowless(); + this.match(PostgreSqlParser.IF_P); this.state = 3116; - this.opt_collate(); + this.match(PostgreSqlParser.NOT); this.state = 3117; - this.opt_class(); + this.match(PostgreSqlParser.EXISTS); } break; - case 3: - this.enterOuterAlt(localContext, 3); + } + this.state = 3120; + this.qualifiedName(); + this.state = 3122; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36 || _la === 148 || _la === 173 || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 1207959553) !== 0) || _la === 262 || _la === 274 || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 67125249) !== 0)) { { - this.state = 3119; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3120; - this.a_expr(); this.state = 3121; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3122; - this.opt_collate(); - this.state = 3123; - this.opt_class(); + this.sequenceOptionList(); } - break; + } + } } catch (re) { @@ -15525,39 +15490,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public table_access_method_clause(): Table_access_method_clauseContext { - let localContext = new Table_access_method_clauseContext(this.context, this.state); - this.enterRule(localContext, 246, PostgreSqlParser.RULE_table_access_method_clause); + public alterSequenceStatement(): AlterSequenceStatementContext { + let localContext = new AlterSequenceStatementContext(this.context, this.state); + this.enterRule(localContext, 262, PostgreSqlParser.RULE_alterSequenceStatement); try { - this.state = 3130; + this.enterOuterAlt(localContext, 1); + { + this.state = 3124; + this.match(PostgreSqlParser.ALTER); + this.state = 3125; + this.match(PostgreSqlParser.SEQUENCE); + this.state = 3128; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { + case 1: { + this.state = 3126; + this.match(PostgreSqlParser.IF_P); this.state = 3127; - this.match(PostgreSqlParser.USING); - this.state = 3128; - this.name(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.WITH: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.WITHOUT: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { + this.match(PostgreSqlParser.EXISTS); } break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 3130; + this.qualifiedName(); + this.state = 3131; + this.sequenceOptionList(); } } catch (re) { @@ -15574,40 +15532,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optwith(): OptwithContext { - let localContext = new OptwithContext(this.context, this.state); - this.enterRule(localContext, 248, PostgreSqlParser.RULE_optwith); + public optionalParenthesizedSeqOptionsList(): OptionalParenthesizedSeqOptionsListContext { + let localContext = new OptionalParenthesizedSeqOptionsListContext(this.context, this.state); + this.enterRule(localContext, 264, PostgreSqlParser.RULE_optionalParenthesizedSeqOptionsList); try { - this.state = 3137; + this.state = 3138; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WITH: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 3132; - this.match(PostgreSqlParser.WITH); this.state = 3133; - this.reloptions(); - } - break; - case PostgreSqlParser.WITHOUT: - this.enterOuterAlt(localContext, 2); - { + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3134; - this.match(PostgreSqlParser.WITHOUT); + this.sequenceOptionList(); this.state = 3135; - this.match(PostgreSqlParser.OIDS); + this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.INITIALLY: case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.TABLESPACE: - this.enterOuterAlt(localContext, 3); + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.GENERATED: + this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { } @@ -15630,64 +15590,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public oncommitoption(): OncommitoptionContext { - let localContext = new OncommitoptionContext(this.context, this.state); - this.enterRule(localContext, 250, PostgreSqlParser.RULE_oncommitoption); + public sequenceOptionList(): SequenceOptionListContext { + let localContext = new SequenceOptionListContext(this.context, this.state); + this.enterRule(localContext, 266, PostgreSqlParser.RULE_sequenceOptionList); + let _la: number; try { - this.state = 3149; + this.enterOuterAlt(localContext, 1); + { + this.state = 3141; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ON: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + do { + { { - this.state = 3139; - this.match(PostgreSqlParser.ON); this.state = 3140; - this.match(PostgreSqlParser.COMMIT); - this.state = 3146; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DROP: - { - this.state = 3141; - this.match(PostgreSqlParser.DROP); - } - break; - case PostgreSqlParser.DELETE_P: - { - this.state = 3142; - this.match(PostgreSqlParser.DELETE_P); - this.state = 3143; - this.match(PostgreSqlParser.ROWS); - } - break; - case PostgreSqlParser.PRESERVE: - { - this.state = 3144; - this.match(PostgreSqlParser.PRESERVE); - this.state = 3145; - this.match(PostgreSqlParser.ROWS); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.sequenceOptionItem(); } } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.TABLESPACE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 3143; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (_la === 36 || _la === 148 || _la === 173 || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 1207959553) !== 0) || _la === 262 || _la === 274 || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 67125249) !== 0)); } } catch (re) { @@ -15704,32 +15627,142 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opttablespace(): OpttablespaceContext { - let localContext = new OpttablespaceContext(this.context, this.state); - this.enterRule(localContext, 252, PostgreSqlParser.RULE_opttablespace); + public sequenceOptionItem(): SequenceOptionItemContext { + let localContext = new SequenceOptionItemContext(this.context, this.state); + this.enterRule(localContext, 268, PostgreSqlParser.RULE_sequenceOptionItem); + let _la: number; try { - this.state = 3154; + this.state = 3176; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.AS: this.enterOuterAlt(localContext, 1); { - this.state = 3151; - this.match(PostgreSqlParser.TABLESPACE); - this.state = 3152; - this.name(); + this.state = 3145; + this.match(PostgreSqlParser.AS); + this.state = 3146; + this.simpleTypeName(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.WHERE: + case PostgreSqlParser.CACHE: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 3147; + this.match(PostgreSqlParser.CACHE); + this.state = 3148; + this.numericOnly(); + } + break; + case PostgreSqlParser.CYCLE: + this.enterOuterAlt(localContext, 3); + { + this.state = 3149; + this.match(PostgreSqlParser.CYCLE); + } + break; + case PostgreSqlParser.INCREMENT: + this.enterOuterAlt(localContext, 4); + { + this.state = 3150; + this.match(PostgreSqlParser.INCREMENT); + this.state = 3152; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 147) { + { + this.state = 3151; + this.match(PostgreSqlParser.BY); + } + } + + this.state = 3154; + this.numericOnly(); + } + break; + case PostgreSqlParser.MAXVALUE: + this.enterOuterAlt(localContext, 5); + { + this.state = 3155; + this.match(PostgreSqlParser.MAXVALUE); + this.state = 3156; + this.numericOnly(); + } + break; + case PostgreSqlParser.MINVALUE: + this.enterOuterAlt(localContext, 6); + { + this.state = 3157; + this.match(PostgreSqlParser.MINVALUE); + this.state = 3158; + this.numericOnly(); + } + break; + case PostgreSqlParser.NO: + this.enterOuterAlt(localContext, 7); + { + this.state = 3159; + this.match(PostgreSqlParser.NO); + this.state = 3160; + _la = this.tokenStream.LA(1); + if(!(_la === 173 || _la === 252 || _la === 255)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case PostgreSqlParser.OWNED: + this.enterOuterAlt(localContext, 8); + { + this.state = 3161; + this.match(PostgreSqlParser.OWNED); + this.state = 3162; + this.match(PostgreSqlParser.BY); + this.state = 3163; + this.anyName(); + } + break; + case PostgreSqlParser.SEQUENCE: + this.enterOuterAlt(localContext, 9); + { + this.state = 3164; + this.match(PostgreSqlParser.SEQUENCE); + this.state = 3165; + this.match(PostgreSqlParser.NAME_P); + this.state = 3166; + this.anyName(); + } + break; + case PostgreSqlParser.START: + this.enterOuterAlt(localContext, 10); + { + this.state = 3167; + this.match(PostgreSqlParser.START); + this.state = 3168; + this.optionalWith(); + this.state = 3169; + this.numericOnly(); + } + break; + case PostgreSqlParser.RESTART: + this.enterOuterAlt(localContext, 11); + { + this.state = 3171; + this.match(PostgreSqlParser.RESTART); + this.state = 3172; + this.optionalWith(); + this.state = 3174; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 12 || _la === 13 || _la === 658 || _la === 660) { + { + this.state = 3173; + this.numericOnly(); + } + } + } break; default: @@ -15750,52 +15783,45 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optconstablespace(): OptconstablespaceContext { - let localContext = new OptconstablespaceContext(this.context, this.state); - this.enterRule(localContext, 254, PostgreSqlParser.RULE_optconstablespace); + public numericOnly(): NumericOnlyContext { + let localContext = new NumericOnlyContext(this.context, this.state); + this.enterRule(localContext, 270, PostgreSqlParser.RULE_numericOnly); try { - this.state = 3161; + this.state = 3184; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3156; - this.match(PostgreSqlParser.USING); - this.state = 3157; - this.match(PostgreSqlParser.INDEX); - this.state = 3158; - this.match(PostgreSqlParser.TABLESPACE); - this.state = 3159; - this.name(); + this.state = 3178; + this.fconst(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.NO: - case PostgreSqlParser.GENERATED: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 3179; + this.match(PostgreSqlParser.PLUS); + this.state = 3180; + this.fconst(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 3181; + this.match(PostgreSqlParser.MINUS); + this.state = 3182; + this.fconst(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 3183; + this.signedIconst(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -15812,18 +15838,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public existingindex(): ExistingindexContext { - let localContext = new ExistingindexContext(this.context, this.state); - this.enterRule(localContext, 256, PostgreSqlParser.RULE_existingindex); + public numericOnlyList(): NumericOnlyListContext { + let localContext = new NumericOnlyListContext(this.context, this.state); + this.enterRule(localContext, 272, PostgreSqlParser.RULE_numericOnlyList); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3163; - this.match(PostgreSqlParser.USING); - this.state = 3164; - this.match(PostgreSqlParser.INDEX); - this.state = 3165; - this.name(); + this.state = 3186; + this.numericOnly(); + this.state = 3191; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 3187; + this.match(PostgreSqlParser.COMMA); + this.state = 3188; + this.numericOnly(); + } + } + this.state = 3193; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -15840,42 +15879,57 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createstatsstmt(): CreatestatsstmtContext { - let localContext = new CreatestatsstmtContext(this.context, this.state); - this.enterRule(localContext, 258, PostgreSqlParser.RULE_createstatsstmt); + public createProcedureLangStatement(): CreateProcedureLangStatementContext { + let localContext = new CreateProcedureLangStatementContext(this.context, this.state); + this.enterRule(localContext, 274, PostgreSqlParser.RULE_createProcedureLangStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3167; + this.state = 3194; this.match(PostgreSqlParser.CREATE); - this.state = 3168; - this.match(PostgreSqlParser.STATISTICS); - this.state = 3172; + this.state = 3195; + this.optionalOrReplace(); + this.state = 3197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 352) { { - this.state = 3169; - this.match(PostgreSqlParser.IF_P); - this.state = 3170; - this.match(PostgreSqlParser.NOT); - this.state = 3171; - this.match(PostgreSqlParser.EXISTS); + this.state = 3196; + this.match(PostgreSqlParser.TRUSTED); } - break; } - this.state = 3174; - this.any_name(); - this.state = 3175; - this.opt_name_list(); - this.state = 3176; - this.match(PostgreSqlParser.ON); - this.state = 3177; - this.expr_list(); - this.state = 3178; - this.match(PostgreSqlParser.FROM); - this.state = 3179; - this.from_list(); + + this.state = 3199; + this.optionalProcedural(); + this.state = 3200; + this.match(PostgreSqlParser.LANGUAGE); + this.state = 3201; + this.name(); + this.state = 3208; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 215) { + { + this.state = 3202; + this.match(PostgreSqlParser.HANDLER); + this.state = 3203; + this.handlerName(); + this.state = 3204; + this.optionalInlineHandler(); + this.state = 3206; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262 || _la === 366) { + { + this.state = 3205; + this.validatorClause(); + } + } + + } + } + } } catch (re) { @@ -15892,36 +15946,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterstatsstmt(): AlterstatsstmtContext { - let localContext = new AlterstatsstmtContext(this.context, this.state); - this.enterRule(localContext, 260, PostgreSqlParser.RULE_alterstatsstmt); + public handlerName(): HandlerNameContext { + let localContext = new HandlerNameContext(this.context, this.state); + this.enterRule(localContext, 276, PostgreSqlParser.RULE_handlerName); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3181; - this.match(PostgreSqlParser.ALTER); - this.state = 3182; - this.match(PostgreSqlParser.STATISTICS); - this.state = 3185; + this.state = 3210; + this.name(); + this.state = 3212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 11) { { - this.state = 3183; - this.match(PostgreSqlParser.IF_P); - this.state = 3184; - this.match(PostgreSqlParser.EXISTS); + this.state = 3211; + this.attributes(); } - break; } - this.state = 3187; - this.any_name(); - this.state = 3188; - this.match(PostgreSqlParser.SET); - this.state = 3189; - this.match(PostgreSqlParser.STATISTICS); - this.state = 3190; - this.signediconst(); + } } catch (re) { @@ -15938,40 +15981,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createasstmt(): CreateasstmtContext { - let localContext = new CreateasstmtContext(this.context, this.state); - this.enterRule(localContext, 262, PostgreSqlParser.RULE_createasstmt); + public optionalInlineHandler(): OptionalInlineHandlerContext { + let localContext = new OptionalInlineHandlerContext(this.context, this.state); + this.enterRule(localContext, 278, PostgreSqlParser.RULE_optionalInlineHandler); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3192; - this.match(PostgreSqlParser.CREATE); - this.state = 3193; - this.opttemp(); - this.state = 3194; - this.match(PostgreSqlParser.TABLE); - this.state = 3198; + this.state = 3217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.INLINE_P: + this.enterOuterAlt(localContext, 1); + { + this.state = 3214; + this.match(PostgreSqlParser.INLINE_P); + this.state = 3215; + this.handlerName(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NO: + case PostgreSqlParser.VALIDATOR: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 3195; - this.match(PostgreSqlParser.IF_P); - this.state = 3196; - this.match(PostgreSqlParser.NOT); - this.state = 3197; - this.match(PostgreSqlParser.EXISTS); } break; - } - this.state = 3200; - this.create_as_target(); - this.state = 3201; - this.match(PostgreSqlParser.AS); - this.state = 3202; - this.selectstmt(); - this.state = 3203; - this.opt_with_data(); + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -15988,24 +16025,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public create_as_target(): Create_as_targetContext { - let localContext = new Create_as_targetContext(this.context, this.state); - this.enterRule(localContext, 264, PostgreSqlParser.RULE_create_as_target); + public validatorClause(): ValidatorClauseContext { + let localContext = new ValidatorClauseContext(this.context, this.state); + this.enterRule(localContext, 280, PostgreSqlParser.RULE_validatorClause); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3205; - this.qualified_name(); - this.state = 3206; - this.opt_column_list(); - this.state = 3207; - this.table_access_method_clause(); - this.state = 3208; - this.optwith(); - this.state = 3209; - this.oncommitoption(); - this.state = 3210; - this.opttablespace(); + this.state = 3223; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.VALIDATOR: + this.enterOuterAlt(localContext, 1); + { + this.state = 3219; + this.match(PostgreSqlParser.VALIDATOR); + this.state = 3220; + this.handlerName(); + } + break; + case PostgreSqlParser.NO: + this.enterOuterAlt(localContext, 2); + { + this.state = 3221; + this.match(PostgreSqlParser.NO); + this.state = 3222; + this.match(PostgreSqlParser.VALIDATOR); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -16022,44 +16068,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_with_data(): Opt_with_dataContext { - let localContext = new Opt_with_dataContext(this.context, this.state); - this.enterRule(localContext, 266, PostgreSqlParser.RULE_opt_with_data); + public optionalProcedural(): OptionalProceduralContext { + let localContext = new OptionalProceduralContext(this.context, this.state); + this.enterRule(localContext, 282, PostgreSqlParser.RULE_optionalProcedural); try { - this.state = 3219; + this.state = 3227; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WITH: + case PostgreSqlParser.PROCEDURAL: this.enterOuterAlt(localContext, 1); { - this.state = 3212; - this.match(PostgreSqlParser.WITH); - this.state = 3216; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DATA_P: - { - this.state = 3213; - this.match(PostgreSqlParser.DATA_P); - } - break; - case PostgreSqlParser.NO: - { - this.state = 3214; - this.match(PostgreSqlParser.NO); - this.state = 3215; - this.match(PostgreSqlParser.DATA_P); - } - break; - default: - throw new antlr.NoViableAltException(this); - } + this.state = 3225; + this.match(PostgreSqlParser.PROCEDURAL); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LOOP: + case PostgreSqlParser.LANGUAGE: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -16083,74 +16106,26 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public creatematviewstmt(): CreatematviewstmtContext { - let localContext = new CreatematviewstmtContext(this.context, this.state); - this.enterRule(localContext, 268, PostgreSqlParser.RULE_creatematviewstmt); + public createTablespaceStatement(): CreateTablespaceStatementContext { + let localContext = new CreateTablespaceStatementContext(this.context, this.state); + this.enterRule(localContext, 284, PostgreSqlParser.RULE_createTablespaceStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3221; + this.state = 3229; this.match(PostgreSqlParser.CREATE); - this.state = 3222; - this.optnolog(); - this.state = 3223; - this.match(PostgreSqlParser.MATERIALIZED); - this.state = 3224; - this.match(PostgreSqlParser.VIEW); - this.state = 3228; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { - case 1: - { - this.state = 3225; - this.match(PostgreSqlParser.IF_P); - this.state = 3226; - this.match(PostgreSqlParser.NOT); - this.state = 3227; - this.match(PostgreSqlParser.EXISTS); - } - break; - } this.state = 3230; - this.create_mv_target(); + this.match(PostgreSqlParser.TABLESPACE); this.state = 3231; - this.match(PostgreSqlParser.AS); + this.name(); this.state = 3232; - this.selectstmt(); + this.optionalTablespaceOwner(); this.state = 3233; - this.opt_with_data(); - } - } - 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 create_mv_target(): Create_mv_targetContext { - let localContext = new Create_mv_targetContext(this.context, this.state); - this.enterRule(localContext, 270, PostgreSqlParser.RULE_create_mv_target); - try { - this.enterOuterAlt(localContext, 1); - { + this.match(PostgreSqlParser.LOCATION); + this.state = 3234; + this.sconst(); this.state = 3235; - this.qualified_name(); - this.state = 3236; - this.opt_column_list(); - this.state = 3237; - this.table_access_method_clause(); - this.state = 3238; - this.opt_reloptions(); - this.state = 3239; - this.opttablespace(); + this.optionalRelOptions(); } } catch (re) { @@ -16167,21 +16142,23 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optnolog(): OptnologContext { - let localContext = new OptnologContext(this.context, this.state); - this.enterRule(localContext, 272, PostgreSqlParser.RULE_optnolog); + public optionalTablespaceOwner(): OptionalTablespaceOwnerContext { + let localContext = new OptionalTablespaceOwnerContext(this.context, this.state); + this.enterRule(localContext, 286, PostgreSqlParser.RULE_optionalTablespaceOwner); try { - this.state = 3243; + this.state = 3240; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.OWNER: this.enterOuterAlt(localContext, 1); { - this.state = 3241; - this.match(PostgreSqlParser.UNLOGGED); + this.state = 3237; + this.match(PostgreSqlParser.OWNER); + this.state = 3238; + this.roleSpecification(); } break; - case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.LOCATION: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -16205,70 +16182,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public refreshmatviewstmt(): RefreshmatviewstmtContext { - let localContext = new RefreshmatviewstmtContext(this.context, this.state); - this.enterRule(localContext, 274, PostgreSqlParser.RULE_refreshmatviewstmt); + public dropTablespaceStatement(): DropTablespaceStatementContext { + let localContext = new DropTablespaceStatementContext(this.context, this.state); + this.enterRule(localContext, 288, PostgreSqlParser.RULE_dropTablespaceStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3245; - this.match(PostgreSqlParser.REFRESH); + this.state = 3242; + this.match(PostgreSqlParser.DROP); + this.state = 3243; + this.match(PostgreSqlParser.TABLESPACE); this.state = 3246; - this.match(PostgreSqlParser.MATERIALIZED); - this.state = 3247; - this.match(PostgreSqlParser.VIEW); - this.state = 3248; - this.opt_concurrently(); - this.state = 3249; - this.qualified_name(); - this.state = 3250; - this.opt_with_data(); - } - } - 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 createseqstmt(): CreateseqstmtContext { - let localContext = new CreateseqstmtContext(this.context, this.state); - this.enterRule(localContext, 276, PostgreSqlParser.RULE_createseqstmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3252; - this.match(PostgreSqlParser.CREATE); - this.state = 3253; - this.opttemp(); - this.state = 3254; - this.match(PostgreSqlParser.SEQUENCE); - this.state = 3258; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 3255; + this.state = 3244; this.match(PostgreSqlParser.IF_P); - this.state = 3256; - this.match(PostgreSqlParser.NOT); - this.state = 3257; + this.state = 3245; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 3260; - this.qualified_name(); - this.state = 3261; - this.optseqoptlist(); + this.state = 3248; + this.name(); } } catch (re) { @@ -16285,32 +16222,49 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterseqstmt(): AlterseqstmtContext { - let localContext = new AlterseqstmtContext(this.context, this.state); - this.enterRule(localContext, 278, PostgreSqlParser.RULE_alterseqstmt); + public createExtensionStatement(): CreateExtensionStatementContext { + let localContext = new CreateExtensionStatementContext(this.context, this.state); + this.enterRule(localContext, 290, PostgreSqlParser.RULE_createExtensionStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3263; - this.match(PostgreSqlParser.ALTER); - this.state = 3264; - this.match(PostgreSqlParser.SEQUENCE); - this.state = 3267; + this.state = 3250; + this.match(PostgreSqlParser.CREATE); + this.state = 3251; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3255; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { - this.state = 3265; + this.state = 3252; this.match(PostgreSqlParser.IF_P); - this.state = 3266; + this.state = 3253; + this.match(PostgreSqlParser.NOT); + this.state = 3254; this.match(PostgreSqlParser.EXISTS); } break; } - this.state = 3269; - this.qualified_name(); - this.state = 3270; - this.seqoptlist(); + this.state = 3257; + this.name(); + this.state = 3258; + this.optionalWith(); + this.state = 3262; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 64 || _la === 150 || _la === 316 || _la === 368) { + { + { + this.state = 3259; + this.createExtensionOptionItem(); + } + } + this.state = 3264; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -16327,38 +16281,45 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optseqoptlist(): OptseqoptlistContext { - let localContext = new OptseqoptlistContext(this.context, this.state); - this.enterRule(localContext, 280, PostgreSqlParser.RULE_optseqoptlist); + public createExtensionOptionItem(): CreateExtensionOptionItemContext { + let localContext = new CreateExtensionOptionItemContext(this.context, this.state); + this.enterRule(localContext, 292, PostgreSqlParser.RULE_createExtensionOptionItem); try { - this.state = 3274; + this.state = 3272; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.NO: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.START: + case PostgreSqlParser.SCHEMA: this.enterOuterAlt(localContext, 1); { - this.state = 3272; - this.seqoptlist(); + this.state = 3265; + this.match(PostgreSqlParser.SCHEMA); + this.state = 3266; + this.name(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: + case PostgreSqlParser.VERSION_P: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 3267; + this.match(PostgreSqlParser.VERSION_P); + this.state = 3268; + this.nonReservedWordOrSconst(); + } + break; + case PostgreSqlParser.FROM: + this.enterOuterAlt(localContext, 3); + { + this.state = 3269; + this.match(PostgreSqlParser.FROM); + this.state = 3270; + this.nonReservedWordOrSconst(); + } + break; + case PostgreSqlParser.CASCADE: + this.enterOuterAlt(localContext, 4); + { + this.state = 3271; + this.match(PostgreSqlParser.CASCADE); } break; default: @@ -16379,48 +16340,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext { - let localContext = new OptparenthesizedseqoptlistContext(this.context, this.state); - this.enterRule(localContext, 282, PostgreSqlParser.RULE_optparenthesizedseqoptlist); + public alterExtensionStatement(): AlterExtensionStatementContext { + let localContext = new AlterExtensionStatementContext(this.context, this.state); + this.enterRule(localContext, 294, PostgreSqlParser.RULE_alterExtensionStatement); + let _la: number; try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3274; + this.match(PostgreSqlParser.ALTER); + this.state = 3275; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3276; + this.name(); + this.state = 3277; + this.match(PostgreSqlParser.UPDATE); this.state = 3281; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while (_la === 94) { + { { - this.state = 3276; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3277; - this.seqoptlist(); this.state = 3278; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.alterExtensionOptionItem(); } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CHECK: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.GENERATED: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 3283; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -16437,27 +16385,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public seqoptlist(): SeqoptlistContext { - let localContext = new SeqoptlistContext(this.context, this.state); - this.enterRule(localContext, 284, PostgreSqlParser.RULE_seqoptlist); - let _la: number; + public alterExtensionOptionItem(): AlterExtensionOptionItemContext { + let localContext = new AlterExtensionOptionItemContext(this.context, this.state); + this.enterRule(localContext, 296, PostgreSqlParser.RULE_alterExtensionOptionItem); try { this.enterOuterAlt(localContext, 1); { this.state = 3284; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 3283; - this.seqoptelem(); - } - } - this.state = 3286; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 36 || _la === 148 || _la === 173 || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 1207959553) !== 0) || _la === 262 || _la === 274 || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 67125249) !== 0)); + this.match(PostgreSqlParser.TO); + this.state = 3285; + this.nonReservedWordOrSconst(); } } catch (re) { @@ -16474,138 +16411,260 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public seqoptelem(): SeqoptelemContext { - let localContext = new SeqoptelemContext(this.context, this.state); - this.enterRule(localContext, 286, PostgreSqlParser.RULE_seqoptelem); - let _la: number; + public alterExtensionContentsStatement(): AlterExtensionContentsStatementContext { + let localContext = new AlterExtensionContentsStatementContext(this.context, this.state); + this.enterRule(localContext, 298, PostgreSqlParser.RULE_alterExtensionContentsStatement); try { - this.state = 3318; + this.state = 3391; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { + this.state = 3287; + this.match(PostgreSqlParser.ALTER); this.state = 3288; - this.match(PostgreSqlParser.AS); + this.match(PostgreSqlParser.EXTENSION); this.state = 3289; - this.simpletypename(); + this.name(); + this.state = 3290; + this.addOrDrop(); + this.state = 3291; + this.objectTypeName(); + this.state = 3292; + this.name(); } break; - case PostgreSqlParser.CACHE: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3290; - this.match(PostgreSqlParser.CACHE); - this.state = 3291; - this.numericonly(); + this.state = 3294; + this.match(PostgreSqlParser.ALTER); + this.state = 3295; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3296; + this.name(); + this.state = 3297; + this.addOrDrop(); + this.state = 3298; + this.objectTypeAnyName(); + this.state = 3299; + this.anyName(); } break; - case PostgreSqlParser.CYCLE: + case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3292; - this.match(PostgreSqlParser.CYCLE); + this.state = 3301; + this.match(PostgreSqlParser.ALTER); + this.state = 3302; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3303; + this.name(); + this.state = 3304; + this.addOrDrop(); + this.state = 3305; + this.match(PostgreSqlParser.AGGREGATE); + this.state = 3306; + this.aggregateWithArgumentTypes(); } break; - case PostgreSqlParser.INCREMENT: + case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3293; - this.match(PostgreSqlParser.INCREMENT); - this.state = 3294; - this.opt_by(); - this.state = 3295; - this.numericonly(); + this.state = 3308; + this.match(PostgreSqlParser.ALTER); + this.state = 3309; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3310; + this.name(); + this.state = 3311; + this.addOrDrop(); + this.state = 3312; + this.match(PostgreSqlParser.CAST); + this.state = 3313; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3314; + this.typeName(); + this.state = 3315; + this.match(PostgreSqlParser.AS); + this.state = 3316; + this.typeName(); + this.state = 3317; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.MAXVALUE: + case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3297; - this.match(PostgreSqlParser.MAXVALUE); - this.state = 3298; - this.numericonly(); + this.state = 3319; + this.match(PostgreSqlParser.ALTER); + this.state = 3320; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3321; + this.name(); + this.state = 3322; + this.addOrDrop(); + this.state = 3323; + this.match(PostgreSqlParser.DOMAIN_P); + this.state = 3324; + this.typeName(); } break; - case PostgreSqlParser.MINVALUE: + case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3299; - this.match(PostgreSqlParser.MINVALUE); - this.state = 3300; - this.numericonly(); + this.state = 3326; + this.match(PostgreSqlParser.ALTER); + this.state = 3327; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3328; + this.name(); + this.state = 3329; + this.addOrDrop(); + this.state = 3330; + this.match(PostgreSqlParser.FUNCTION); + this.state = 3331; + this.functionWithArgumentTypes(); } break; - case PostgreSqlParser.NO: + case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3301; - this.match(PostgreSqlParser.NO); - this.state = 3302; - _la = this.tokenStream.LA(1); - if(!(_la === 173 || _la === 252 || _la === 255)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 3333; + this.match(PostgreSqlParser.ALTER); + this.state = 3334; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3335; + this.name(); + this.state = 3336; + this.addOrDrop(); + this.state = 3337; + this.match(PostgreSqlParser.OPERATOR); + this.state = 3338; + this.operatorWithArgumentTypes(); } break; - case PostgreSqlParser.OWNED: + case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3303; - this.match(PostgreSqlParser.OWNED); - this.state = 3304; - this.match(PostgreSqlParser.BY); - this.state = 3305; - this.any_name(); + this.state = 3340; + this.match(PostgreSqlParser.ALTER); + this.state = 3341; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3342; + this.name(); + this.state = 3343; + this.addOrDrop(); + this.state = 3344; + this.match(PostgreSqlParser.OPERATOR); + this.state = 3345; + this.match(PostgreSqlParser.CLASS); + this.state = 3346; + this.anyName(); + this.state = 3347; + this.match(PostgreSqlParser.USING); + this.state = 3348; + this.name(); } break; - case PostgreSqlParser.SEQUENCE: + case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3306; - this.match(PostgreSqlParser.SEQUENCE); - this.state = 3307; - this.match(PostgreSqlParser.NAME_P); - this.state = 3308; - this.any_name(); + this.state = 3350; + this.match(PostgreSqlParser.ALTER); + this.state = 3351; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3352; + this.name(); + this.state = 3353; + this.addOrDrop(); + this.state = 3354; + this.match(PostgreSqlParser.OPERATOR); + this.state = 3355; + this.match(PostgreSqlParser.FAMILY); + this.state = 3356; + this.anyName(); + this.state = 3357; + this.match(PostgreSqlParser.USING); + this.state = 3358; + this.name(); } break; - case PostgreSqlParser.START: + case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3309; - this.match(PostgreSqlParser.START); - this.state = 3310; - this.opt_with(); - this.state = 3311; - this.numericonly(); + this.state = 3360; + this.match(PostgreSqlParser.ALTER); + this.state = 3361; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3362; + this.name(); + this.state = 3363; + this.addOrDrop(); + this.state = 3364; + this.match(PostgreSqlParser.PROCEDURE); + this.state = 3365; + this.functionWithArgumentTypes(); } break; - case PostgreSqlParser.RESTART: + case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3313; - this.match(PostgreSqlParser.RESTART); - this.state = 3314; - this.opt_with(); - this.state = 3316; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 12 || _la === 13 || _la === 658 || _la === 660) { - { - this.state = 3315; - this.numericonly(); - } + this.state = 3367; + this.match(PostgreSqlParser.ALTER); + this.state = 3368; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3369; + this.name(); + this.state = 3370; + this.addOrDrop(); + this.state = 3371; + this.match(PostgreSqlParser.ROUTINE); + this.state = 3372; + this.functionWithArgumentTypes(); } - + break; + case 12: + this.enterOuterAlt(localContext, 12); + { + this.state = 3374; + this.match(PostgreSqlParser.ALTER); + this.state = 3375; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3376; + this.name(); + this.state = 3377; + this.addOrDrop(); + this.state = 3378; + this.match(PostgreSqlParser.TRANSFORM); + this.state = 3379; + this.match(PostgreSqlParser.FOR); + this.state = 3380; + this.typeName(); + this.state = 3381; + this.match(PostgreSqlParser.LANGUAGE); + this.state = 3382; + this.name(); + } + break; + case 13: + this.enterOuterAlt(localContext, 13); + { + this.state = 3384; + this.match(PostgreSqlParser.ALTER); + this.state = 3385; + this.match(PostgreSqlParser.EXTENSION); + this.state = 3386; + this.name(); + this.state = 3387; + this.addOrDrop(); + this.state = 3388; + this.match(PostgreSqlParser.TYPE_P); + this.state = 3389; + this.typeName(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -16622,31 +16681,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_by(): Opt_byContext { - let localContext = new Opt_byContext(this.context, this.state); - this.enterRule(localContext, 288, PostgreSqlParser.RULE_opt_by); + public createForeignDataWrapperStatement(): CreateForeignDataWrapperStatementContext { + let localContext = new CreateForeignDataWrapperStatementContext(this.context, this.state); + this.enterRule(localContext, 300, PostgreSqlParser.RULE_createForeignDataWrapperStatement); + let _la: number; try { - this.state = 3322; + this.enterOuterAlt(localContext, 1); + { + this.state = 3393; + this.match(PostgreSqlParser.CREATE); + this.state = 3394; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3395; + this.match(PostgreSqlParser.DATA_P); + this.state = 3396; + this.match(PostgreSqlParser.WRAPPER); + this.state = 3397; + this.name(); + this.state = 3399; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.BY: - this.enterOuterAlt(localContext, 1); - { - this.state = 3320; - this.match(PostgreSqlParser.BY); - } - break; - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty + _la = this.tokenStream.LA(1); + if (_la === 215 || _la === 262 || _la === 366) { { + this.state = 3398; + this.forwardOptions(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + + this.state = 3401; + this.createGenericOptions(); } } catch (re) { @@ -16663,43 +16726,47 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public numericonly(): NumericonlyContext { - let localContext = new NumericonlyContext(this.context, this.state); - this.enterRule(localContext, 290, PostgreSqlParser.RULE_numericonly); + public forwardOption(): ForwardOptionContext { + let localContext = new ForwardOptionContext(this.context, this.state); + this.enterRule(localContext, 302, PostgreSqlParser.RULE_forwardOption); try { - this.state = 3330; + this.state = 3411; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3324; - this.fconst(); + this.state = 3403; + this.match(PostgreSqlParser.HANDLER); + this.state = 3404; + this.handlerName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3325; - this.match(PostgreSqlParser.PLUS); - this.state = 3326; - this.fconst(); + this.state = 3405; + this.match(PostgreSqlParser.NO); + this.state = 3406; + this.match(PostgreSqlParser.HANDLER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3327; - this.match(PostgreSqlParser.MINUS); - this.state = 3328; - this.fconst(); + this.state = 3407; + this.match(PostgreSqlParser.VALIDATOR); + this.state = 3408; + this.handlerName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3329; - this.signediconst(); + this.state = 3409; + this.match(PostgreSqlParser.NO); + this.state = 3410; + this.match(PostgreSqlParser.VALIDATOR); } break; } @@ -16718,31 +16785,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public numericonly_list(): Numericonly_listContext { - let localContext = new Numericonly_listContext(this.context, this.state); - this.enterRule(localContext, 292, PostgreSqlParser.RULE_numericonly_list); + public forwardOptions(): ForwardOptionsContext { + let localContext = new ForwardOptionsContext(this.context, this.state); + this.enterRule(localContext, 304, PostgreSqlParser.RULE_forwardOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3332; - this.numericonly(); - this.state = 3337; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { + do { { { - this.state = 3333; - this.match(PostgreSqlParser.COMMA); - this.state = 3334; - this.numericonly(); + this.state = 3413; + this.forwardOption(); } } - this.state = 3339; + this.state = 3416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } + } while (_la === 215 || _la === 262 || _la === 366); } } catch (re) { @@ -16759,41 +16822,58 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createplangstmt(): CreateplangstmtContext { - let localContext = new CreateplangstmtContext(this.context, this.state); - this.enterRule(localContext, 294, PostgreSqlParser.RULE_createplangstmt); + public alterForeignDataWrapperStatement(): AlterForeignDataWrapperStatementContext { + let localContext = new AlterForeignDataWrapperStatementContext(this.context, this.state); + this.enterRule(localContext, 306, PostgreSqlParser.RULE_alterForeignDataWrapperStatement); let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3340; - this.match(PostgreSqlParser.CREATE); - this.state = 3341; - this.opt_or_replace(); - this.state = 3342; - this.opt_trusted(); - this.state = 3343; - this.opt_procedural(); - this.state = 3344; - this.match(PostgreSqlParser.LANGUAGE); - this.state = 3345; - this.name(); - this.state = 3351; + this.state = 3435; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 215) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 3346; - this.match(PostgreSqlParser.HANDLER); - this.state = 3347; - this.handler_name(); - this.state = 3348; - this.opt_inline_handler(); - this.state = 3349; - this.opt_validator(); - } - } + this.state = 3418; + this.match(PostgreSqlParser.ALTER); + this.state = 3419; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3420; + this.match(PostgreSqlParser.DATA_P); + this.state = 3421; + this.match(PostgreSqlParser.WRAPPER); + this.state = 3422; + this.name(); + this.state = 3424; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 215 || _la === 262 || _la === 366) { + { + this.state = 3423; + this.forwardOptions(); + } + } + this.state = 3426; + this.alterGenericOptions(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 3428; + this.match(PostgreSqlParser.ALTER); + this.state = 3429; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3430; + this.match(PostgreSqlParser.DATA_P); + this.state = 3431; + this.match(PostgreSqlParser.WRAPPER); + this.state = 3432; + this.name(); + this.state = 3433; + this.forwardOptions(); + } + break; } } catch (re) { @@ -16810,22 +16890,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_trusted(): Opt_trustedContext { - let localContext = new Opt_trustedContext(this.context, this.state); - this.enterRule(localContext, 296, PostgreSqlParser.RULE_opt_trusted); + public createGenericOptions(): CreateGenericOptionsContext { + let localContext = new CreateGenericOptionsContext(this.context, this.state); + this.enterRule(localContext, 308, PostgreSqlParser.RULE_createGenericOptions); try { - this.state = 3355; + this.state = 3443; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.OPTIONS: this.enterOuterAlt(localContext, 1); { - this.state = 3353; - this.match(PostgreSqlParser.TRUSTED); + this.state = 3437; + this.match(PostgreSqlParser.OPTIONS); + this.state = 3438; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3439; + this.genericOptionList(); + this.state = 3440; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.GENERATED: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -16849,25 +16950,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public handler_name(): Handler_nameContext { - let localContext = new Handler_nameContext(this.context, this.state); - this.enterRule(localContext, 298, PostgreSqlParser.RULE_handler_name); + public genericOptionList(): GenericOptionListContext { + let localContext = new GenericOptionListContext(this.context, this.state); + this.enterRule(localContext, 310, PostgreSqlParser.RULE_genericOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3357; - this.name(); - this.state = 3359; + this.state = 3445; + this.genericOptionElement(); + this.state = 3450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 11) { + while (_la === 6) { { - this.state = 3358; - this.attrs(); + { + this.state = 3446; + this.match(PostgreSqlParser.COMMA); + this.state = 3447; + this.genericOptionElement(); } + } + this.state = 3452; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - } } catch (re) { @@ -16884,34 +16991,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_inline_handler(): Opt_inline_handlerContext { - let localContext = new Opt_inline_handlerContext(this.context, this.state); - this.enterRule(localContext, 300, PostgreSqlParser.RULE_opt_inline_handler); + public alterGenericOptions(): AlterGenericOptionsContext { + let localContext = new AlterGenericOptionsContext(this.context, this.state); + this.enterRule(localContext, 312, PostgreSqlParser.RULE_alterGenericOptions); try { - this.state = 3364; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.INLINE_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 3361; - this.match(PostgreSqlParser.INLINE_P); - this.state = 3362; - this.handler_name(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NO: - case PostgreSqlParser.VALIDATOR: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.enterOuterAlt(localContext, 1); + { + this.state = 3453; + this.match(PostgreSqlParser.OPTIONS); + this.state = 3454; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3455; + this.alterGenericOptionList(); + this.state = 3456; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -16928,33 +17021,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public validator_clause(): Validator_clauseContext { - let localContext = new Validator_clauseContext(this.context, this.state); - this.enterRule(localContext, 302, PostgreSqlParser.RULE_validator_clause); + public alterGenericOptionList(): AlterGenericOptionListContext { + let localContext = new AlterGenericOptionListContext(this.context, this.state); + this.enterRule(localContext, 314, PostgreSqlParser.RULE_alterGenericOptionList); + let _la: number; try { - this.state = 3370; + this.enterOuterAlt(localContext, 1); + { + this.state = 3458; + this.alterGenericOptionElem(); + this.state = 3463; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.VALIDATOR: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 3366; - this.match(PostgreSqlParser.VALIDATOR); - this.state = 3367; - this.handler_name(); - } - break; - case PostgreSqlParser.NO: - this.enterOuterAlt(localContext, 2); { - this.state = 3368; - this.match(PostgreSqlParser.NO); - this.state = 3369; - this.match(PostgreSqlParser.VALIDATOR); + this.state = 3459; + this.match(PostgreSqlParser.COMMA); + this.state = 3460; + this.alterGenericOptionElem(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 3465; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -16971,31 +17062,47 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_validator(): Opt_validatorContext { - let localContext = new Opt_validatorContext(this.context, this.state); - this.enterRule(localContext, 304, PostgreSqlParser.RULE_opt_validator); + public alterGenericOptionElem(): AlterGenericOptionElemContext { + let localContext = new AlterGenericOptionElemContext(this.context, this.state); + this.enterRule(localContext, 316, PostgreSqlParser.RULE_alterGenericOptionElem); try { - this.state = 3374; + this.state = 3473; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: - case PostgreSqlParser.VALIDATOR: + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3372; - this.validator_clause(); + this.state = 3466; + this.genericOptionElement(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 3467; + this.match(PostgreSqlParser.SET); + this.state = 3468; + this.genericOptionElement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 3469; + this.match(PostgreSqlParser.ADD_P); + this.state = 3470; + this.genericOptionElement(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 3471; + this.match(PostgreSqlParser.DROP); + this.state = 3472; + this.genericOptionName(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17012,28 +17119,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_procedural(): Opt_proceduralContext { - let localContext = new Opt_proceduralContext(this.context, this.state); - this.enterRule(localContext, 306, PostgreSqlParser.RULE_opt_procedural); + public genericOptionElement(): GenericOptionElementContext { + let localContext = new GenericOptionElementContext(this.context, this.state); + this.enterRule(localContext, 318, PostgreSqlParser.RULE_genericOptionElement); try { - this.state = 3378; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.PROCEDURAL: - this.enterOuterAlt(localContext, 1); - { - this.state = 3376; - this.match(PostgreSqlParser.PROCEDURAL); - } - break; - case PostgreSqlParser.LANGUAGE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.enterOuterAlt(localContext, 1); + { + this.state = 3475; + this.genericOptionName(); + this.state = 3476; + this.genericOptionArgument(); } } catch (re) { @@ -17050,26 +17145,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createtablespacestmt(): CreatetablespacestmtContext { - let localContext = new CreatetablespacestmtContext(this.context, this.state); - this.enterRule(localContext, 308, PostgreSqlParser.RULE_createtablespacestmt); + public genericOptionName(): GenericOptionNameContext { + let localContext = new GenericOptionNameContext(this.context, this.state); + this.enterRule(localContext, 320, PostgreSqlParser.RULE_genericOptionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3380; - this.match(PostgreSqlParser.CREATE); - this.state = 3381; - this.match(PostgreSqlParser.TABLESPACE); - this.state = 3382; - this.name(); - this.state = 3383; - this.opttablespaceowner(); - this.state = 3384; - this.match(PostgreSqlParser.LOCATION); - this.state = 3385; + this.state = 3478; + this.columnLabel(); + } + } + 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 genericOptionArgument(): GenericOptionArgumentContext { + let localContext = new GenericOptionArgumentContext(this.context, this.state); + this.enterRule(localContext, 322, PostgreSqlParser.RULE_genericOptionArgument); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3480; this.sconst(); - this.state = 3386; - this.opt_reloptions(); } } catch (re) { @@ -17086,30 +17193,86 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opttablespaceowner(): OpttablespaceownerContext { - let localContext = new OpttablespaceownerContext(this.context, this.state); - this.enterRule(localContext, 310, PostgreSqlParser.RULE_opttablespaceowner); + public createForeignServerStatement(): CreateForeignServerStatementContext { + let localContext = new CreateForeignServerStatementContext(this.context, this.state); + this.enterRule(localContext, 324, PostgreSqlParser.RULE_createForeignServerStatement); + let _la: number; try { - this.state = 3391; + this.state = 3511; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OWNER: + switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3388; - this.match(PostgreSqlParser.OWNER); - this.state = 3389; - this.rolespec(); + this.state = 3482; + this.match(PostgreSqlParser.CREATE); + this.state = 3483; + this.match(PostgreSqlParser.SERVER); + this.state = 3484; + this.name(); + this.state = 3485; + this.optionalType(); + this.state = 3487; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 368) { + { + this.state = 3486; + this.foreignServerVersion(); + } + } + + this.state = 3489; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3490; + this.match(PostgreSqlParser.DATA_P); + this.state = 3491; + this.match(PostgreSqlParser.WRAPPER); + this.state = 3492; + this.name(); + this.state = 3493; + this.createGenericOptions(); } break; - case PostgreSqlParser.LOCATION: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 3495; + this.match(PostgreSqlParser.CREATE); + this.state = 3496; + this.match(PostgreSqlParser.SERVER); + this.state = 3497; + this.match(PostgreSqlParser.IF_P); + this.state = 3498; + this.match(PostgreSqlParser.NOT); + this.state = 3499; + this.match(PostgreSqlParser.EXISTS); + this.state = 3500; + this.name(); + this.state = 3501; + this.optionalType(); + this.state = 3503; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 368) { + { + this.state = 3502; + this.foreignServerVersion(); + } + } + + this.state = 3505; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3506; + this.match(PostgreSqlParser.DATA_P); + this.state = 3507; + this.match(PostgreSqlParser.WRAPPER); + this.state = 3508; + this.name(); + this.state = 3509; + this.createGenericOptions(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17126,30 +17289,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public droptablespacestmt(): DroptablespacestmtContext { - let localContext = new DroptablespacestmtContext(this.context, this.state); - this.enterRule(localContext, 312, PostgreSqlParser.RULE_droptablespacestmt); + public optionalType(): OptionalTypeContext { + let localContext = new OptionalTypeContext(this.context, this.state); + this.enterRule(localContext, 326, PostgreSqlParser.RULE_optionalType); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3393; - this.match(PostgreSqlParser.DROP); - this.state = 3394; - this.match(PostgreSqlParser.TABLESPACE); - this.state = 3397; + this.state = 3516; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.TYPE_P: + this.enterOuterAlt(localContext, 1); { - this.state = 3395; - this.match(PostgreSqlParser.IF_P); - this.state = 3396; - this.match(PostgreSqlParser.EXISTS); + this.state = 3513; + this.match(PostgreSqlParser.TYPE_P); + this.state = 3514; + this.sconst(); } break; - } - this.state = 3399; - this.name(); + case PostgreSqlParser.FOREIGN: + case PostgreSqlParser.VERSION_P: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17166,36 +17330,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createextensionstmt(): CreateextensionstmtContext { - let localContext = new CreateextensionstmtContext(this.context, this.state); - this.enterRule(localContext, 314, PostgreSqlParser.RULE_createextensionstmt); + public foreignServerVersion(): ForeignServerVersionContext { + let localContext = new ForeignServerVersionContext(this.context, this.state); + this.enterRule(localContext, 328, PostgreSqlParser.RULE_foreignServerVersion); try { this.enterOuterAlt(localContext, 1); { - this.state = 3401; - this.match(PostgreSqlParser.CREATE); - this.state = 3402; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3406; + this.state = 3518; + this.match(PostgreSqlParser.VERSION_P); + this.state = 3521; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.EscapeStringConstant: { - this.state = 3403; - this.match(PostgreSqlParser.IF_P); - this.state = 3404; - this.match(PostgreSqlParser.NOT); - this.state = 3405; - this.match(PostgreSqlParser.EXISTS); + this.state = 3519; + this.sconst(); + } + break; + case PostgreSqlParser.NULL_P: + { + this.state = 3520; + this.match(PostgreSqlParser.NULL_P); } break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 3408; - this.name(); - this.state = 3409; - this.opt_with(); - this.state = 3410; - this.create_extension_opt_list(); } } catch (re) { @@ -17212,26 +17375,46 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public create_extension_opt_list(): Create_extension_opt_listContext { - let localContext = new Create_extension_opt_listContext(this.context, this.state); - this.enterRule(localContext, 316, PostgreSqlParser.RULE_create_extension_opt_list); + public alterForeignServerStatement(): AlterForeignServerStatementContext { + let localContext = new AlterForeignServerStatementContext(this.context, this.state); + this.enterRule(localContext, 330, PostgreSqlParser.RULE_alterForeignServerStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3415; + this.state = 3523; + this.match(PostgreSqlParser.ALTER); + this.state = 3524; + this.match(PostgreSqlParser.SERVER); + this.state = 3525; + this.name(); + this.state = 3531; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 64 || _la === 150 || _la === 316 || _la === 368) { - { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPTIONS: { - this.state = 3412; - this.create_extension_opt_item(); - } + this.state = 3526; + this.alterGenericOptions(); } - this.state = 3417; + break; + case PostgreSqlParser.VERSION_P: + { + this.state = 3527; + this.foreignServerVersion(); + this.state = 3529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); + if (_la === 273) { + { + this.state = 3528; + this.alterGenericOptions(); + } + } + + } + break; + default: + throw new antlr.NoViableAltException(this); } } } @@ -17249,49 +17432,137 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public create_extension_opt_item(): Create_extension_opt_itemContext { - let localContext = new Create_extension_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 318, PostgreSqlParser.RULE_create_extension_opt_item); + public createForeignTableStatement(): CreateForeignTableStatementContext { + let localContext = new CreateForeignTableStatementContext(this.context, this.state); + this.enterRule(localContext, 332, PostgreSqlParser.RULE_createForeignTableStatement); try { - this.state = 3425; + this.state = 3589; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.SCHEMA: + switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3418; - this.match(PostgreSqlParser.SCHEMA); - this.state = 3419; + this.state = 3533; + this.match(PostgreSqlParser.CREATE); + this.state = 3534; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3535; + this.match(PostgreSqlParser.TABLE); + this.state = 3536; + this.qualifiedName(); + this.state = 3537; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3538; + this.optionalTableElementList(); + this.state = 3539; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3540; + this.inheritClause(); + this.state = 3541; + this.match(PostgreSqlParser.SERVER); + this.state = 3542; this.name(); + this.state = 3543; + this.createGenericOptions(); } break; - case PostgreSqlParser.VERSION_P: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3420; - this.match(PostgreSqlParser.VERSION_P); - this.state = 3421; - this.nonreservedword_or_sconst(); + this.state = 3545; + this.match(PostgreSqlParser.CREATE); + this.state = 3546; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3547; + this.match(PostgreSqlParser.TABLE); + this.state = 3548; + this.match(PostgreSqlParser.IF_P); + this.state = 3549; + this.match(PostgreSqlParser.NOT); + this.state = 3550; + this.match(PostgreSqlParser.EXISTS); + this.state = 3551; + this.qualifiedName(); + this.state = 3552; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3553; + this.optionalTableElementList(); + this.state = 3554; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3555; + this.inheritClause(); + this.state = 3556; + this.match(PostgreSqlParser.SERVER); + this.state = 3557; + this.name(); + this.state = 3558; + this.createGenericOptions(); } break; - case PostgreSqlParser.FROM: + case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3422; - this.match(PostgreSqlParser.FROM); - this.state = 3423; - this.nonreservedword_or_sconst(); + this.state = 3560; + this.match(PostgreSqlParser.CREATE); + this.state = 3561; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3562; + this.match(PostgreSqlParser.TABLE); + this.state = 3563; + this.qualifiedName(); + this.state = 3564; + this.match(PostgreSqlParser.PARTITION); + this.state = 3565; + this.match(PostgreSqlParser.OF); + this.state = 3566; + this.qualifiedName(); + this.state = 3567; + this.optionalTypedTableElementList(); + this.state = 3568; + this.partitionBoundSpecification(); + this.state = 3569; + this.match(PostgreSqlParser.SERVER); + this.state = 3570; + this.name(); + this.state = 3571; + this.createGenericOptions(); } break; - case PostgreSqlParser.CASCADE: + case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3424; - this.match(PostgreSqlParser.CASCADE); + this.state = 3573; + this.match(PostgreSqlParser.CREATE); + this.state = 3574; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3575; + this.match(PostgreSqlParser.TABLE); + this.state = 3576; + this.match(PostgreSqlParser.IF_P); + this.state = 3577; + this.match(PostgreSqlParser.NOT); + this.state = 3578; + this.match(PostgreSqlParser.EXISTS); + this.state = 3579; + this.qualifiedName(); + this.state = 3580; + this.match(PostgreSqlParser.PARTITION); + this.state = 3581; + this.match(PostgreSqlParser.OF); + this.state = 3582; + this.qualifiedName(); + this.state = 3583; + this.optionalTypedTableElementList(); + this.state = 3584; + this.partitionBoundSpecification(); + this.state = 3585; + this.match(PostgreSqlParser.SERVER); + this.state = 3586; + this.name(); + this.state = 3587; + this.createGenericOptions(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17308,22 +17579,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterextensionstmt(): AlterextensionstmtContext { - let localContext = new AlterextensionstmtContext(this.context, this.state); - this.enterRule(localContext, 320, PostgreSqlParser.RULE_alterextensionstmt); + public importForeignSchemaStatement(): ImportForeignSchemaStatementContext { + let localContext = new ImportForeignSchemaStatementContext(this.context, this.state); + this.enterRule(localContext, 334, PostgreSqlParser.RULE_importForeignSchemaStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3427; - this.match(PostgreSqlParser.ALTER); - this.state = 3428; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3429; + this.state = 3591; + this.match(PostgreSqlParser.IMPORT_P); + this.state = 3592; + this.match(PostgreSqlParser.FOREIGN); + this.state = 3593; + this.match(PostgreSqlParser.SCHEMA); + this.state = 3594; this.name(); - this.state = 3430; - this.match(PostgreSqlParser.UPDATE); - this.state = 3431; - this.alter_extension_opt_list(); + this.state = 3595; + this.importQualification(); + this.state = 3596; + this.match(PostgreSqlParser.FROM); + this.state = 3597; + this.match(PostgreSqlParser.SERVER); + this.state = 3598; + this.name(); + this.state = 3599; + this.match(PostgreSqlParser.INTO); + this.state = 3600; + this.name(); + this.state = 3601; + this.createGenericOptions(); } } catch (re) { @@ -17340,27 +17623,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_extension_opt_list(): Alter_extension_opt_listContext { - let localContext = new Alter_extension_opt_listContext(this.context, this.state); - this.enterRule(localContext, 322, PostgreSqlParser.RULE_alter_extension_opt_list); - let _la: number; + public importQualificationType(): ImportQualificationTypeContext { + let localContext = new ImportQualificationTypeContext(this.context, this.state); + this.enterRule(localContext, 336, PostgreSqlParser.RULE_importQualificationType); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3436; + this.state = 3606; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 94) { - { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.LIMIT: + this.enterOuterAlt(localContext, 1); { - this.state = 3433; - this.alter_extension_opt_item(); + this.state = 3603; + this.match(PostgreSqlParser.LIMIT); + this.state = 3604; + this.match(PostgreSqlParser.TO); } + break; + case PostgreSqlParser.EXCEPT: + this.enterOuterAlt(localContext, 2); + { + this.state = 3605; + this.match(PostgreSqlParser.EXCEPT); } - this.state = 3438; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17377,16 +17664,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alter_extension_opt_item(): Alter_extension_opt_itemContext { - let localContext = new Alter_extension_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 324, PostgreSqlParser.RULE_alter_extension_opt_item); + public importQualification(): ImportQualificationContext { + let localContext = new ImportQualificationContext(this.context, this.state); + this.enterRule(localContext, 338, PostgreSqlParser.RULE_importQualification); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3439; - this.match(PostgreSqlParser.TO); - this.state = 3440; - this.nonreservedword_or_sconst(); + this.state = 3614; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.LIMIT: + this.enterOuterAlt(localContext, 1); + { + this.state = 3608; + this.importQualificationType(); + this.state = 3609; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3610; + this.relationExpressionList(); + this.state = 3611; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.FROM: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -17403,492 +17709,59 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterextensioncontentsstmt(): AlterextensioncontentsstmtContext { - let localContext = new AlterextensioncontentsstmtContext(this.context, this.state); - this.enterRule(localContext, 326, PostgreSqlParser.RULE_alterextensioncontentsstmt); + public createUserMappingStatement(): CreateUserMappingStatementContext { + let localContext = new CreateUserMappingStatementContext(this.context, this.state); + this.enterRule(localContext, 340, PostgreSqlParser.RULE_createUserMappingStatement); try { - this.state = 3546; + this.state = 3637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3442; - this.match(PostgreSqlParser.ALTER); - this.state = 3443; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3444; - this.name(); - this.state = 3445; - this.add_drop(); - this.state = 3446; - this.object_type_name(); - this.state = 3447; + this.state = 3616; + this.match(PostgreSqlParser.CREATE); + this.state = 3617; + this.match(PostgreSqlParser.USER); + this.state = 3618; + this.match(PostgreSqlParser.MAPPING); + this.state = 3619; + this.match(PostgreSqlParser.FOR); + this.state = 3620; + this.authIdentifier(); + this.state = 3621; + this.match(PostgreSqlParser.SERVER); + this.state = 3622; this.name(); + this.state = 3623; + this.createGenericOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3449; - this.match(PostgreSqlParser.ALTER); - this.state = 3450; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3451; - this.name(); - this.state = 3452; - this.add_drop(); - this.state = 3453; - this.object_type_any_name(); - this.state = 3454; - this.any_name(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3456; - this.match(PostgreSqlParser.ALTER); - this.state = 3457; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3458; - this.name(); - this.state = 3459; - this.add_drop(); - this.state = 3460; - this.match(PostgreSqlParser.AGGREGATE); - this.state = 3461; - this.aggregate_with_argtypes(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3463; - this.match(PostgreSqlParser.ALTER); - this.state = 3464; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3465; - this.name(); - this.state = 3466; - this.add_drop(); - this.state = 3467; - this.match(PostgreSqlParser.CAST); - this.state = 3468; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3469; - this.typename(); - this.state = 3470; - this.match(PostgreSqlParser.AS); - this.state = 3471; - this.typename(); - this.state = 3472; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3474; - this.match(PostgreSqlParser.ALTER); - this.state = 3475; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3476; - this.name(); - this.state = 3477; - this.add_drop(); - this.state = 3478; - this.match(PostgreSqlParser.DOMAIN_P); - this.state = 3479; - this.typename(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 3481; - this.match(PostgreSqlParser.ALTER); - this.state = 3482; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3483; - this.name(); - this.state = 3484; - this.add_drop(); - this.state = 3485; - this.match(PostgreSqlParser.FUNCTION); - this.state = 3486; - this.function_with_argtypes(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 3488; - this.match(PostgreSqlParser.ALTER); - this.state = 3489; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3490; - this.name(); - this.state = 3491; - this.add_drop(); - this.state = 3492; - this.match(PostgreSqlParser.OPERATOR); - this.state = 3493; - this.operator_with_argtypes(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 3495; - this.match(PostgreSqlParser.ALTER); - this.state = 3496; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3497; - this.name(); - this.state = 3498; - this.add_drop(); - this.state = 3499; - this.match(PostgreSqlParser.OPERATOR); - this.state = 3500; - this.match(PostgreSqlParser.CLASS); - this.state = 3501; - this.any_name(); - this.state = 3502; - this.match(PostgreSqlParser.USING); - this.state = 3503; - this.name(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 3505; - this.match(PostgreSqlParser.ALTER); - this.state = 3506; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3507; - this.name(); - this.state = 3508; - this.add_drop(); - this.state = 3509; - this.match(PostgreSqlParser.OPERATOR); - this.state = 3510; - this.match(PostgreSqlParser.FAMILY); - this.state = 3511; - this.any_name(); - this.state = 3512; - this.match(PostgreSqlParser.USING); - this.state = 3513; - this.name(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 3515; - this.match(PostgreSqlParser.ALTER); - this.state = 3516; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3517; - this.name(); - this.state = 3518; - this.add_drop(); - this.state = 3519; - this.match(PostgreSqlParser.PROCEDURE); - this.state = 3520; - this.function_with_argtypes(); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - { - this.state = 3522; - this.match(PostgreSqlParser.ALTER); - this.state = 3523; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3524; - this.name(); - this.state = 3525; - this.add_drop(); - this.state = 3526; - this.match(PostgreSqlParser.ROUTINE); - this.state = 3527; - this.function_with_argtypes(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 3529; - this.match(PostgreSqlParser.ALTER); - this.state = 3530; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3531; - this.name(); - this.state = 3532; - this.add_drop(); - this.state = 3533; - this.match(PostgreSqlParser.TRANSFORM); - this.state = 3534; + this.state = 3625; + this.match(PostgreSqlParser.CREATE); + this.state = 3626; + this.match(PostgreSqlParser.USER); + this.state = 3627; + this.match(PostgreSqlParser.MAPPING); + this.state = 3628; + this.match(PostgreSqlParser.IF_P); + this.state = 3629; + this.match(PostgreSqlParser.NOT); + this.state = 3630; + this.match(PostgreSqlParser.EXISTS); + this.state = 3631; this.match(PostgreSqlParser.FOR); - this.state = 3535; - this.typename(); - this.state = 3536; - this.match(PostgreSqlParser.LANGUAGE); - this.state = 3537; - this.name(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 3539; - this.match(PostgreSqlParser.ALTER); - this.state = 3540; - this.match(PostgreSqlParser.EXTENSION); - this.state = 3541; - this.name(); - this.state = 3542; - this.add_drop(); - this.state = 3543; - this.match(PostgreSqlParser.TYPE_P); - this.state = 3544; - this.typename(); - } - 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 createfdwstmt(): CreatefdwstmtContext { - let localContext = new CreatefdwstmtContext(this.context, this.state); - this.enterRule(localContext, 328, PostgreSqlParser.RULE_createfdwstmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3548; - this.match(PostgreSqlParser.CREATE); - this.state = 3549; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3550; - this.match(PostgreSqlParser.DATA_P); - this.state = 3551; - this.match(PostgreSqlParser.WRAPPER); - this.state = 3552; - this.name(); - this.state = 3553; - this.opt_fdw_options(); - this.state = 3554; - this.create_generic_options(); - } - } - 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 fdw_option(): Fdw_optionContext { - let localContext = new Fdw_optionContext(this.context, this.state); - this.enterRule(localContext, 330, PostgreSqlParser.RULE_fdw_option); - try { - this.state = 3564; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3556; - this.match(PostgreSqlParser.HANDLER); - this.state = 3557; - this.handler_name(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3558; - this.match(PostgreSqlParser.NO); - this.state = 3559; - this.match(PostgreSqlParser.HANDLER); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3560; - this.match(PostgreSqlParser.VALIDATOR); - this.state = 3561; - this.handler_name(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3562; - this.match(PostgreSqlParser.NO); - this.state = 3563; - this.match(PostgreSqlParser.VALIDATOR); - } - 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 fdw_options(): Fdw_optionsContext { - let localContext = new Fdw_optionsContext(this.context, this.state); - this.enterRule(localContext, 332, PostgreSqlParser.RULE_fdw_options); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3567; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 3566; - this.fdw_option(); - } - } - this.state = 3569; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 215 || _la === 262 || _la === 366); - } - } - 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 opt_fdw_options(): Opt_fdw_optionsContext { - let localContext = new Opt_fdw_optionsContext(this.context, this.state); - this.enterRule(localContext, 334, PostgreSqlParser.RULE_opt_fdw_options); - try { - this.state = 3573; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.NO: - case PostgreSqlParser.VALIDATOR: - this.enterOuterAlt(localContext, 1); - { - this.state = 3571; - this.fdw_options(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.OPTIONS: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 alterfdwstmt(): AlterfdwstmtContext { - let localContext = new AlterfdwstmtContext(this.context, this.state); - this.enterRule(localContext, 336, PostgreSqlParser.RULE_alterfdwstmt); - try { - this.state = 3590; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3575; - this.match(PostgreSqlParser.ALTER); - this.state = 3576; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3577; - this.match(PostgreSqlParser.DATA_P); - this.state = 3578; - this.match(PostgreSqlParser.WRAPPER); - this.state = 3579; - this.name(); - this.state = 3580; - this.opt_fdw_options(); - this.state = 3581; - this.alter_generic_options(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3583; - this.match(PostgreSqlParser.ALTER); - this.state = 3584; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3585; - this.match(PostgreSqlParser.DATA_P); - this.state = 3586; - this.match(PostgreSqlParser.WRAPPER); - this.state = 3587; + this.state = 3632; + this.authIdentifier(); + this.state = 3633; + this.match(PostgreSqlParser.SERVER); + this.state = 3634; this.name(); - this.state = 3588; - this.fdw_options(); + this.state = 3635; + this.createGenericOptions(); } break; } @@ -17907,554 +17780,567 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public create_generic_options(): Create_generic_optionsContext { - let localContext = new Create_generic_optionsContext(this.context, this.state); - this.enterRule(localContext, 338, PostgreSqlParser.RULE_create_generic_options); + public authIdentifier(): AuthIdentifierContext { + let localContext = new AuthIdentifierContext(this.context, this.state); + this.enterRule(localContext, 342, PostgreSqlParser.RULE_authIdentifier); try { - this.state = 3598; + this.state = 3641; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPTIONS: - this.enterOuterAlt(localContext, 1); - { - this.state = 3592; - this.match(PostgreSqlParser.OPTIONS); - this.state = 3593; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3594; - this.generic_option_list(); - this.state = 3595; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CHECK: + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.INITIALLY: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.GENERATED: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 generic_option_list(): Generic_option_listContext { - let localContext = new Generic_option_listContext(this.context, this.state); - this.enterRule(localContext, 340, PostgreSqlParser.RULE_generic_option_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3600; - this.generic_option_elem(); - this.state = 3605; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 3601; - this.match(PostgreSqlParser.COMMA); - this.state = 3602; - this.generic_option_elem(); - } - } - this.state = 3607; - 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 alter_generic_options(): Alter_generic_optionsContext { - let localContext = new Alter_generic_optionsContext(this.context, this.state); - this.enterRule(localContext, 342, PostgreSqlParser.RULE_alter_generic_options); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3608; - this.match(PostgreSqlParser.OPTIONS); - this.state = 3609; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3610; - this.alter_generic_option_list(); - this.state = 3611; - this.match(PostgreSqlParser.CLOSE_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 alter_generic_option_list(): Alter_generic_option_listContext { - let localContext = new Alter_generic_option_listContext(this.context, this.state); - this.enterRule(localContext, 344, PostgreSqlParser.RULE_alter_generic_option_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3613; - this.alter_generic_option_elem(); - this.state = 3618; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 3614; - this.match(PostgreSqlParser.COMMA); - this.state = 3615; - this.alter_generic_option_elem(); - } - } - this.state = 3620; - 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 alter_generic_option_elem(): Alter_generic_option_elemContext { - let localContext = new Alter_generic_option_elemContext(this.context, this.state); - this.enterRule(localContext, 346, PostgreSqlParser.RULE_alter_generic_option_elem); - try { - this.state = 3628; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3621; - this.generic_option_elem(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3622; - this.match(PostgreSqlParser.SET); - this.state = 3623; - this.generic_option_elem(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3624; - this.match(PostgreSqlParser.ADD_P); - this.state = 3625; - this.generic_option_elem(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3626; - this.match(PostgreSqlParser.DROP); - this.state = 3627; - this.generic_option_name(); - } - 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 generic_option_elem(): Generic_option_elemContext { - let localContext = new Generic_option_elemContext(this.context, this.state); - this.enterRule(localContext, 348, PostgreSqlParser.RULE_generic_option_elem); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3630; - this.generic_option_name(); - this.state = 3631; - this.generic_option_arg(); - } - } - 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 generic_option_name(): Generic_option_nameContext { - let localContext = new Generic_option_nameContext(this.context, this.state); - this.enterRule(localContext, 350, PostgreSqlParser.RULE_generic_option_name); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3633; - this.collabel(); - } - } - 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 generic_option_arg(): Generic_option_argContext { - let localContext = new Generic_option_argContext(this.context, this.state); - this.enterRule(localContext, 352, PostgreSqlParser.RULE_generic_option_arg); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3635; - this.sconst(); - } - } - 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 createforeignserverstmt(): CreateforeignserverstmtContext { - let localContext = new CreateforeignserverstmtContext(this.context, this.state); - this.enterRule(localContext, 354, PostgreSqlParser.RULE_createforeignserverstmt); - try { - this.state = 3662; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3637; - this.match(PostgreSqlParser.CREATE); - this.state = 3638; - this.match(PostgreSqlParser.SERVER); - this.state = 3639; - this.name(); - this.state = 3640; - this.opt_type(); - this.state = 3641; - this.opt_foreign_server_version(); - this.state = 3642; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3643; - this.match(PostgreSqlParser.DATA_P); - this.state = 3644; - this.match(PostgreSqlParser.WRAPPER); - this.state = 3645; - this.name(); - this.state = 3646; - this.create_generic_options(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3648; - this.match(PostgreSqlParser.CREATE); - this.state = 3649; - this.match(PostgreSqlParser.SERVER); - this.state = 3650; - this.match(PostgreSqlParser.IF_P); - this.state = 3651; - this.match(PostgreSqlParser.NOT); - this.state = 3652; - this.match(PostgreSqlParser.EXISTS); - this.state = 3653; - this.name(); - this.state = 3654; - this.opt_type(); - this.state = 3655; - this.opt_foreign_server_version(); - this.state = 3656; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3657; - this.match(PostgreSqlParser.DATA_P); - this.state = 3658; - this.match(PostgreSqlParser.WRAPPER); - this.state = 3659; - this.name(); - this.state = 3660; - this.create_generic_options(); - } - 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 opt_type(): Opt_typeContext { - let localContext = new Opt_typeContext(this.context, this.state); - this.enterRule(localContext, 356, PostgreSqlParser.RULE_opt_type); - try { - this.state = 3667; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.SESSION_USER: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: case PostgreSqlParser.TYPE_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 3664; - this.match(PostgreSqlParser.TYPE_P); - this.state = 3665; - this.sconst(); - } - break; - case PostgreSqlParser.FOREIGN: - case PostgreSqlParser.VERSION_P: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 foreign_server_version(): Foreign_server_versionContext { - let localContext = new Foreign_server_versionContext(this.context, this.state); - this.enterRule(localContext, 358, PostgreSqlParser.RULE_foreign_server_version); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3669; - this.match(PostgreSqlParser.VERSION_P); - this.state = 3672; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: - { - this.state = 3670; - this.sconst(); - } - break; - case PostgreSqlParser.NULL_P: - { - this.state = 3671; - this.match(PostgreSqlParser.NULL_P); - } - 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 opt_foreign_server_version(): Opt_foreign_server_versionContext { - let localContext = new Opt_foreign_server_versionContext(this.context, this.state); - this.enterRule(localContext, 360, PostgreSqlParser.RULE_opt_foreign_server_version); - try { - this.state = 3676; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: case PostgreSqlParser.VERSION_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 3674; - this.foreign_server_version(); - } - break; - case PostgreSqlParser.FOREIGN: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 alterforeignserverstmt(): AlterforeignserverstmtContext { - let localContext = new AlterforeignserverstmtContext(this.context, this.state); - this.enterRule(localContext, 362, PostgreSqlParser.RULE_alterforeignserverstmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3678; - this.match(PostgreSqlParser.ALTER); - this.state = 3679; - this.match(PostgreSqlParser.SERVER); - this.state = 3680; - this.name(); - this.state = 3686; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + this.enterOuterAlt(localContext, 1); { - this.state = 3681; - this.alter_generic_options(); + this.state = 3639; + this.roleSpecification(); } break; - case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.USER: + this.enterOuterAlt(localContext, 2); { - this.state = 3682; - this.foreign_server_version(); - this.state = 3684; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 273) { - { - this.state = 3683; - this.alter_generic_options(); - } - } - + this.state = 3640; + this.match(PostgreSqlParser.USER); } break; default: throw new antlr.NoViableAltException(this); } - } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -18470,135 +18356,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createforeigntablestmt(): CreateforeigntablestmtContext { - let localContext = new CreateforeigntablestmtContext(this.context, this.state); - this.enterRule(localContext, 364, PostgreSqlParser.RULE_createforeigntablestmt); + public dropUserMappingStatement(): DropUserMappingStatementContext { + let localContext = new DropUserMappingStatementContext(this.context, this.state); + this.enterRule(localContext, 344, PostgreSqlParser.RULE_dropUserMappingStatement); try { - this.state = 3744; + this.state = 3661; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3688; - this.match(PostgreSqlParser.CREATE); - this.state = 3689; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3690; - this.match(PostgreSqlParser.TABLE); - this.state = 3691; - this.qualified_name(); - this.state = 3692; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3693; - this.opttableelementlist(); - this.state = 3694; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3695; - this.optinherit(); - this.state = 3696; + this.state = 3643; + this.match(PostgreSqlParser.DROP); + this.state = 3644; + this.match(PostgreSqlParser.USER); + this.state = 3645; + this.match(PostgreSqlParser.MAPPING); + this.state = 3646; + this.match(PostgreSqlParser.FOR); + this.state = 3647; + this.authIdentifier(); + this.state = 3648; this.match(PostgreSqlParser.SERVER); - this.state = 3697; + this.state = 3649; this.name(); - this.state = 3698; - this.create_generic_options(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3700; - this.match(PostgreSqlParser.CREATE); - this.state = 3701; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3702; - this.match(PostgreSqlParser.TABLE); - this.state = 3703; - this.match(PostgreSqlParser.IF_P); - this.state = 3704; - this.match(PostgreSqlParser.NOT); - this.state = 3705; - this.match(PostgreSqlParser.EXISTS); - this.state = 3706; - this.qualified_name(); - this.state = 3707; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3708; - this.opttableelementlist(); - this.state = 3709; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3710; - this.optinherit(); - this.state = 3711; - this.match(PostgreSqlParser.SERVER); - this.state = 3712; - this.name(); - this.state = 3713; - this.create_generic_options(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3715; - this.match(PostgreSqlParser.CREATE); - this.state = 3716; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3717; - this.match(PostgreSqlParser.TABLE); - this.state = 3718; - this.qualified_name(); - this.state = 3719; - this.match(PostgreSqlParser.PARTITION); - this.state = 3720; - this.match(PostgreSqlParser.OF); - this.state = 3721; - this.qualified_name(); - this.state = 3722; - this.opttypedtableelementlist(); - this.state = 3723; - this.partitionboundspec(); - this.state = 3724; - this.match(PostgreSqlParser.SERVER); - this.state = 3725; - this.name(); - this.state = 3726; - this.create_generic_options(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3728; - this.match(PostgreSqlParser.CREATE); - this.state = 3729; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3730; - this.match(PostgreSqlParser.TABLE); - this.state = 3731; + this.state = 3651; + this.match(PostgreSqlParser.DROP); + this.state = 3652; + this.match(PostgreSqlParser.USER); + this.state = 3653; + this.match(PostgreSqlParser.MAPPING); + this.state = 3654; this.match(PostgreSqlParser.IF_P); - this.state = 3732; - this.match(PostgreSqlParser.NOT); - this.state = 3733; + this.state = 3655; this.match(PostgreSqlParser.EXISTS); - this.state = 3734; - this.qualified_name(); - this.state = 3735; - this.match(PostgreSqlParser.PARTITION); - this.state = 3736; - this.match(PostgreSqlParser.OF); - this.state = 3737; - this.qualified_name(); - this.state = 3738; - this.opttypedtableelementlist(); - this.state = 3739; - this.partitionboundspec(); - this.state = 3740; + this.state = 3656; + this.match(PostgreSqlParser.FOR); + this.state = 3657; + this.authIdentifier(); + this.state = 3658; this.match(PostgreSqlParser.SERVER); - this.state = 3741; + this.state = 3659; this.name(); - this.state = 3742; - this.create_generic_options(); } break; } @@ -18617,34 +18421,70 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public importforeignschemastmt(): ImportforeignschemastmtContext { - let localContext = new ImportforeignschemastmtContext(this.context, this.state); - this.enterRule(localContext, 366, PostgreSqlParser.RULE_importforeignschemastmt); + public alterUserMappingStatement(): AlterUserMappingStatementContext { + let localContext = new AlterUserMappingStatementContext(this.context, this.state); + this.enterRule(localContext, 346, PostgreSqlParser.RULE_alterUserMappingStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3746; - this.match(PostgreSqlParser.IMPORT_P); - this.state = 3747; - this.match(PostgreSqlParser.FOREIGN); - this.state = 3748; - this.match(PostgreSqlParser.SCHEMA); - this.state = 3749; - this.name(); - this.state = 3750; - this.import_qualification(); - this.state = 3751; - this.match(PostgreSqlParser.FROM); - this.state = 3752; + this.state = 3663; + this.match(PostgreSqlParser.ALTER); + this.state = 3664; + this.match(PostgreSqlParser.USER); + this.state = 3665; + this.match(PostgreSqlParser.MAPPING); + this.state = 3666; + this.match(PostgreSqlParser.FOR); + this.state = 3667; + this.authIdentifier(); + this.state = 3668; this.match(PostgreSqlParser.SERVER); - this.state = 3753; + this.state = 3669; this.name(); - this.state = 3754; - this.match(PostgreSqlParser.INTO); - this.state = 3755; + this.state = 3670; + this.alterGenericOptions(); + } + } + 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 createPolicyStatement(): CreatePolicyStatementContext { + let localContext = new CreatePolicyStatementContext(this.context, this.state); + this.enterRule(localContext, 348, PostgreSqlParser.RULE_createPolicyStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3672; + this.match(PostgreSqlParser.CREATE); + this.state = 3673; + this.match(PostgreSqlParser.POLICY); + this.state = 3674; this.name(); - this.state = 3756; - this.create_generic_options(); + this.state = 3675; + this.match(PostgreSqlParser.ON); + this.state = 3676; + this.qualifiedName(); + this.state = 3677; + this.rowSecurityDefaultPermissive(); + this.state = 3678; + this.rowSecurityDefaultForCmd(); + this.state = 3679; + this.rowSecurityDefaultToRole(); + this.state = 3680; + this.rowSecurityOptionalExpression(); + this.state = 3681; + this.rowSecurityOptionalWithCheck(); } } catch (re) { @@ -18661,31 +18501,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public import_qualification_type(): Import_qualification_typeContext { - let localContext = new Import_qualification_typeContext(this.context, this.state); - this.enterRule(localContext, 368, PostgreSqlParser.RULE_import_qualification_type); + public alterPolicyStatement(): AlterPolicyStatementContext { + let localContext = new AlterPolicyStatementContext(this.context, this.state); + this.enterRule(localContext, 350, PostgreSqlParser.RULE_alterPolicyStatement); try { - this.state = 3761; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.LIMIT: - this.enterOuterAlt(localContext, 1); - { - this.state = 3758; - this.match(PostgreSqlParser.LIMIT); - this.state = 3759; - this.match(PostgreSqlParser.TO); - } - break; - case PostgreSqlParser.EXCEPT: - this.enterOuterAlt(localContext, 2); - { - this.state = 3760; - this.match(PostgreSqlParser.EXCEPT); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.enterOuterAlt(localContext, 1); + { + this.state = 3683; + this.match(PostgreSqlParser.ALTER); + this.state = 3684; + this.match(PostgreSqlParser.POLICY); + this.state = 3685; + this.name(); + this.state = 3686; + this.match(PostgreSqlParser.ON); + this.state = 3687; + this.qualifiedName(); + this.state = 3688; + this.rowSecurityOptionalToRole(); + this.state = 3689; + this.rowSecurityOptionalExpression(); + this.state = 3690; + this.rowSecurityOptionalWithCheck(); } } catch (re) { @@ -18702,28 +18539,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public import_qualification(): Import_qualificationContext { - let localContext = new Import_qualificationContext(this.context, this.state); - this.enterRule(localContext, 370, PostgreSqlParser.RULE_import_qualification); + public rowSecurityOptionalExpression(): RowSecurityOptionalExpressionContext { + let localContext = new RowSecurityOptionalExpressionContext(this.context, this.state); + this.enterRule(localContext, 352, PostgreSqlParser.RULE_rowSecurityOptionalExpression); try { - this.state = 3769; + this.state = 3698; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.LIMIT: + case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 1); { - this.state = 3763; - this.import_qualification_type(); - this.state = 3764; + this.state = 3692; + this.match(PostgreSqlParser.USING); + this.state = 3693; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3765; - this.relation_expr_list(); - this.state = 3766; + this.state = 3694; + this.expression1(); + this.state = 3695; this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.FROM: + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -18747,61 +18586,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createusermappingstmt(): CreateusermappingstmtContext { - let localContext = new CreateusermappingstmtContext(this.context, this.state); - this.enterRule(localContext, 372, PostgreSqlParser.RULE_createusermappingstmt); + public rowSecurityOptionalWithCheck(): RowSecurityOptionalWithCheckContext { + let localContext = new RowSecurityOptionalWithCheckContext(this.context, this.state); + this.enterRule(localContext, 354, PostgreSqlParser.RULE_rowSecurityOptionalWithCheck); try { - this.state = 3792; + this.state = 3707; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 3771; - this.match(PostgreSqlParser.CREATE); - this.state = 3772; - this.match(PostgreSqlParser.USER); - this.state = 3773; - this.match(PostgreSqlParser.MAPPING); - this.state = 3774; - this.match(PostgreSqlParser.FOR); - this.state = 3775; - this.auth_ident(); - this.state = 3776; - this.match(PostgreSqlParser.SERVER); - this.state = 3777; - this.name(); - this.state = 3778; - this.create_generic_options(); + this.state = 3700; + this.match(PostgreSqlParser.WITH); + this.state = 3701; + this.match(PostgreSqlParser.CHECK); + this.state = 3702; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3703; + this.expression1(); + this.state = 3704; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 3780; - this.match(PostgreSqlParser.CREATE); - this.state = 3781; - this.match(PostgreSqlParser.USER); - this.state = 3782; - this.match(PostgreSqlParser.MAPPING); - this.state = 3783; - this.match(PostgreSqlParser.IF_P); - this.state = 3784; - this.match(PostgreSqlParser.NOT); - this.state = 3785; - this.match(PostgreSqlParser.EXISTS); - this.state = 3786; - this.match(PostgreSqlParser.FOR); - this.state = 3787; - this.auth_ident(); - this.state = 3788; - this.match(PostgreSqlParser.SERVER); - this.state = 3789; - this.name(); - this.state = 3790; - this.create_generic_options(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -18818,562 +18634,420 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public auth_ident(): Auth_identContext { - let localContext = new Auth_identContext(this.context, this.state); - this.enterRule(localContext, 374, PostgreSqlParser.RULE_auth_ident); + public rowSecurityDefaultToRole(): RowSecurityDefaultToRoleContext { + let localContext = new RowSecurityDefaultToRoleContext(this.context, this.state); + this.enterRule(localContext, 356, PostgreSqlParser.RULE_rowSecurityDefaultToRole); try { - this.state = 3796; + this.state = 3712; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.TO: + this.enterOuterAlt(localContext, 1); + { + this.state = 3709; + this.match(PostgreSqlParser.TO); + this.state = 3710; + this.roleList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 rowSecurityOptionalToRole(): RowSecurityOptionalToRoleContext { + let localContext = new RowSecurityOptionalToRoleContext(this.context, this.state); + this.enterRule(localContext, 358, PostgreSqlParser.RULE_rowSecurityOptionalToRole); + try { + this.state = 3717; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.TO: + this.enterOuterAlt(localContext, 1); + { + this.state = 3714; + this.match(PostgreSqlParser.TO); + this.state = 3715; + this.roleList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 rowSecurityDefaultPermissive(): RowSecurityDefaultPermissiveContext { + let localContext = new RowSecurityDefaultPermissiveContext(this.context, this.state); + this.enterRule(localContext, 360, PostgreSqlParser.RULE_rowSecurityDefaultPermissive); + try { + this.state = 3722; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AS: + this.enterOuterAlt(localContext, 1); + { + this.state = 3719; + this.match(PostgreSqlParser.AS); + this.state = 3720; + this.identifier(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.FOR: + case PostgreSqlParser.INTO: + case PostgreSqlParser.TO: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 rowSecurityDefaultForCmd(): RowSecurityDefaultForCmdContext { + let localContext = new RowSecurityDefaultForCmdContext(this.context, this.state); + this.enterRule(localContext, 362, PostgreSqlParser.RULE_rowSecurityDefaultForCmd); + try { + this.state = 3727; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.FOR: + this.enterOuterAlt(localContext, 1); + { + this.state = 3724; + this.match(PostgreSqlParser.FOR); + this.state = 3725; + this.rowSecurityCommand(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.TO: + case PostgreSqlParser.USING: + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 rowSecurityCommand(): RowSecurityCommandContext { + let localContext = new RowSecurityCommandContext(this.context, this.state); + this.enterRule(localContext, 364, PostgreSqlParser.RULE_rowSecurityCommand); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3729; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || _la === 88 || _la === 182 || _la === 232 || _la === 362)) { + 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 createAccessMethodStatement(): CreateAccessMethodStatementContext { + let localContext = new CreateAccessMethodStatementContext(this.context, this.state); + this.enterRule(localContext, 366, PostgreSqlParser.RULE_createAccessMethodStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3731; + this.match(PostgreSqlParser.CREATE); + this.state = 3732; + this.match(PostgreSqlParser.ACCESS); + this.state = 3733; + this.match(PostgreSqlParser.METHOD); + this.state = 3734; + this.name(); + this.state = 3735; + this.match(PostgreSqlParser.TYPE_P); + this.state = 3736; + this.accessMethodType(); + this.state = 3737; + this.match(PostgreSqlParser.HANDLER); + this.state = 3738; + this.handlerName(); + } + } + 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 accessMethodType(): AccessMethodTypeContext { + let localContext = new AccessMethodTypeContext(this.context, this.state); + this.enterRule(localContext, 368, PostgreSqlParser.RULE_accessMethodType); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3740; + _la = this.tokenStream.LA(1); + if(!(_la === 92 || _la === 226)) { + 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 createTriggerStatement(): CreateTriggerStatementContext { + let localContext = new CreateTriggerStatementContext(this.context, this.state); + this.enterRule(localContext, 370, PostgreSqlParser.RULE_createTriggerStatement); + try { + this.state = 3780; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 3742; + this.match(PostgreSqlParser.CREATE); + this.state = 3743; + this.match(PostgreSqlParser.TRIGGER); + this.state = 3744; + this.name(); + this.state = 3745; + this.triggerActionTime(); + this.state = 3746; + this.triggerEvents(); + this.state = 3747; + this.match(PostgreSqlParser.ON); + this.state = 3748; + this.qualifiedName(); + this.state = 3749; + this.triggerReferencing(); + this.state = 3750; + this.triggerForSpec(); + this.state = 3751; + this.triggerWhen(); + this.state = 3752; + this.match(PostgreSqlParser.EXECUTE); + this.state = 3753; + this.functionOrProcedure(); + this.state = 3754; + this.functionName(); + this.state = 3755; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3756; + this.triggerFunctionArguments(); + this.state = 3757; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 3759; + this.match(PostgreSqlParser.CREATE); + this.state = 3760; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 3761; + this.match(PostgreSqlParser.TRIGGER); + this.state = 3762; + this.name(); + this.state = 3763; + this.match(PostgreSqlParser.AFTER); + this.state = 3764; + this.triggerEvents(); + this.state = 3765; + this.match(PostgreSqlParser.ON); + this.state = 3766; + this.qualifiedName(); + this.state = 3767; + this.optionalConstraintFromTable(); + this.state = 3768; + this.constraintAttributeSpecification(); + this.state = 3769; + this.match(PostgreSqlParser.FOR); + this.state = 3770; + this.match(PostgreSqlParser.EACH); + this.state = 3771; + this.match(PostgreSqlParser.ROW); + this.state = 3772; + this.triggerWhen(); + this.state = 3773; + this.match(PostgreSqlParser.EXECUTE); + this.state = 3774; + this.functionOrProcedure(); + this.state = 3775; + this.functionName(); + this.state = 3776; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3777; + this.triggerFunctionArguments(); + this.state = 3778; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 triggerActionTime(): TriggerActionTimeContext { + let localContext = new TriggerActionTimeContext(this.context, this.state); + this.enterRule(localContext, 372, PostgreSqlParser.RULE_triggerActionTime); + try { + this.state = 3786; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_USER: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: + this.enterOuterAlt(localContext, 1); + { + this.state = 3782; + this.match(PostgreSqlParser.BEFORE); + } + break; + case PostgreSqlParser.AFTER: + this.enterOuterAlt(localContext, 2); + { + this.state = 3783; + this.match(PostgreSqlParser.AFTER); + } + break; case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); - { - this.state = 3794; - this.rolespec(); - } - break; - case PostgreSqlParser.USER: - this.enterOuterAlt(localContext, 2); + this.enterOuterAlt(localContext, 3); { - this.state = 3795; - this.match(PostgreSqlParser.USER); + this.state = 3784; + this.match(PostgreSqlParser.INSTEAD); + this.state = 3785; + this.match(PostgreSqlParser.OF); } break; default: @@ -19394,55 +19068,135 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropusermappingstmt(): DropusermappingstmtContext { - let localContext = new DropusermappingstmtContext(this.context, this.state); - this.enterRule(localContext, 376, PostgreSqlParser.RULE_dropusermappingstmt); + public triggerEvents(): TriggerEventsContext { + let localContext = new TriggerEventsContext(this.context, this.state); + this.enterRule(localContext, 374, PostgreSqlParser.RULE_triggerEvents); + let _la: number; try { - this.state = 3816; + this.enterOuterAlt(localContext, 1); + { + this.state = 3788; + this.triggerOneEvent(); + this.state = 3793; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 82) { + { + { + this.state = 3789; + this.match(PostgreSqlParser.OR); + this.state = 3790; + this.triggerOneEvent(); + } + } + this.state = 3795; + 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 triggerOneEvent(): TriggerOneEventContext { + let localContext = new TriggerOneEventContext(this.context, this.state); + this.enterRule(localContext, 376, PostgreSqlParser.RULE_triggerOneEvent); + try { + this.state = 3803; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { + this.state = 3796; + this.match(PostgreSqlParser.INSERT); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 3797; + this.match(PostgreSqlParser.DELETE_P); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { this.state = 3798; - this.match(PostgreSqlParser.DROP); + this.match(PostgreSqlParser.UPDATE); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { this.state = 3799; - this.match(PostgreSqlParser.USER); + this.match(PostgreSqlParser.UPDATE); this.state = 3800; - this.match(PostgreSqlParser.MAPPING); + this.match(PostgreSqlParser.OF); this.state = 3801; - this.match(PostgreSqlParser.FOR); + this.columnList(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { this.state = 3802; - this.auth_ident(); - this.state = 3803; - this.match(PostgreSqlParser.SERVER); - this.state = 3804; - this.name(); + this.match(PostgreSqlParser.TRUNCATE); } break; - case 2: - this.enterOuterAlt(localContext, 2); + } + } + 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 triggerReferencing(): TriggerReferencingContext { + let localContext = new TriggerReferencingContext(this.context, this.state); + this.enterRule(localContext, 378, PostgreSqlParser.RULE_triggerReferencing); + try { + this.state = 3808; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.REFERENCING: + this.enterOuterAlt(localContext, 1); { + this.state = 3805; + this.match(PostgreSqlParser.REFERENCING); this.state = 3806; - this.match(PostgreSqlParser.DROP); - this.state = 3807; - this.match(PostgreSqlParser.USER); - this.state = 3808; - this.match(PostgreSqlParser.MAPPING); - this.state = 3809; - this.match(PostgreSqlParser.IF_P); - this.state = 3810; - this.match(PostgreSqlParser.EXISTS); - this.state = 3811; - this.match(PostgreSqlParser.FOR); - this.state = 3812; - this.auth_ident(); - this.state = 3813; - this.match(PostgreSqlParser.SERVER); - this.state = 3814; - this.name(); + this.triggerTransitions(); + } + break; + case PostgreSqlParser.FOR: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.EXECUTE: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -19459,28 +19213,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterusermappingstmt(): AlterusermappingstmtContext { - let localContext = new AlterusermappingstmtContext(this.context, this.state); - this.enterRule(localContext, 378, PostgreSqlParser.RULE_alterusermappingstmt); + public triggerTransitions(): TriggerTransitionsContext { + let localContext = new TriggerTransitionsContext(this.context, this.state); + this.enterRule(localContext, 380, PostgreSqlParser.RULE_triggerTransitions); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3818; - this.match(PostgreSqlParser.ALTER); - this.state = 3819; - this.match(PostgreSqlParser.USER); - this.state = 3820; - this.match(PostgreSqlParser.MAPPING); - this.state = 3821; - this.match(PostgreSqlParser.FOR); - this.state = 3822; - this.auth_ident(); - this.state = 3823; - this.match(PostgreSqlParser.SERVER); - this.state = 3824; - this.name(); - this.state = 3825; - this.alter_generic_options(); + this.state = 3811; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 3810; + this.triggerTransition(); + } + } + this.state = 3813; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (_la === 448 || _la === 449); } } catch (re) { @@ -19497,32 +19250,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createpolicystmt(): CreatepolicystmtContext { - let localContext = new CreatepolicystmtContext(this.context, this.state); - this.enterRule(localContext, 380, PostgreSqlParser.RULE_createpolicystmt); + public triggerTransition(): TriggerTransitionContext { + let localContext = new TriggerTransitionContext(this.context, this.state); + this.enterRule(localContext, 382, PostgreSqlParser.RULE_triggerTransition); try { this.enterOuterAlt(localContext, 1); { - this.state = 3827; - this.match(PostgreSqlParser.CREATE); - this.state = 3828; - this.match(PostgreSqlParser.POLICY); - this.state = 3829; - this.name(); - this.state = 3830; - this.match(PostgreSqlParser.ON); - this.state = 3831; - this.qualified_name(); - this.state = 3832; - this.rowsecuritydefaultpermissive(); - this.state = 3833; - this.rowsecuritydefaultforcmd(); - this.state = 3834; - this.rowsecuritydefaulttorole(); - this.state = 3835; - this.rowsecurityoptionalexpr(); - this.state = 3836; - this.rowsecurityoptionalwithcheck(); + this.state = 3815; + this.transitionOldOrNew(); + this.state = 3816; + this.transitionRowOrTable(); + this.state = 3817; + this.optionalAs(); + this.state = 3818; + this.transitionRelName(); } } catch (re) { @@ -19539,28 +19280,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterpolicystmt(): AlterpolicystmtContext { - let localContext = new AlterpolicystmtContext(this.context, this.state); - this.enterRule(localContext, 382, PostgreSqlParser.RULE_alterpolicystmt); + public transitionOldOrNew(): TransitionOldOrNewContext { + let localContext = new TransitionOldOrNewContext(this.context, this.state); + this.enterRule(localContext, 384, PostgreSqlParser.RULE_transitionOldOrNew); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3838; - this.match(PostgreSqlParser.ALTER); - this.state = 3839; - this.match(PostgreSqlParser.POLICY); - this.state = 3840; - this.name(); - this.state = 3841; - this.match(PostgreSqlParser.ON); - this.state = 3842; - this.qualified_name(); - this.state = 3843; - this.rowsecurityoptionaltorole(); - this.state = 3844; - this.rowsecurityoptionalexpr(); - this.state = 3845; - this.rowsecurityoptionalwithcheck(); + this.state = 3820; + _la = this.tokenStream.LA(1); + if(!(_la === 448 || _la === 449)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -19577,290 +19312,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public rowsecurityoptionalexpr(): RowsecurityoptionalexprContext { - let localContext = new RowsecurityoptionalexprContext(this.context, this.state); - this.enterRule(localContext, 384, PostgreSqlParser.RULE_rowsecurityoptionalexpr); - try { - this.state = 3853; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - this.enterOuterAlt(localContext, 1); - { - this.state = 3847; - this.match(PostgreSqlParser.USING); - this.state = 3848; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3849; - this.a_expr(); - this.state = 3850; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 rowsecurityoptionalwithcheck(): RowsecurityoptionalwithcheckContext { - let localContext = new RowsecurityoptionalwithcheckContext(this.context, this.state); - this.enterRule(localContext, 386, PostgreSqlParser.RULE_rowsecurityoptionalwithcheck); - try { - this.state = 3862; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 1); - { - this.state = 3855; - this.match(PostgreSqlParser.WITH); - this.state = 3856; - this.match(PostgreSqlParser.CHECK); - this.state = 3857; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3858; - this.a_expr(); - this.state = 3859; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 rowsecuritydefaulttorole(): RowsecuritydefaulttoroleContext { - let localContext = new RowsecuritydefaulttoroleContext(this.context, this.state); - this.enterRule(localContext, 388, PostgreSqlParser.RULE_rowsecuritydefaulttorole); - try { - this.state = 3867; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.TO: - this.enterOuterAlt(localContext, 1); - { - this.state = 3864; - this.match(PostgreSqlParser.TO); - this.state = 3865; - this.role_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 rowsecurityoptionaltorole(): RowsecurityoptionaltoroleContext { - let localContext = new RowsecurityoptionaltoroleContext(this.context, this.state); - this.enterRule(localContext, 390, PostgreSqlParser.RULE_rowsecurityoptionaltorole); - try { - this.state = 3872; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.TO: - this.enterOuterAlt(localContext, 1); - { - this.state = 3869; - this.match(PostgreSqlParser.TO); - this.state = 3870; - this.role_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 rowsecuritydefaultpermissive(): RowsecuritydefaultpermissiveContext { - let localContext = new RowsecuritydefaultpermissiveContext(this.context, this.state); - this.enterRule(localContext, 392, PostgreSqlParser.RULE_rowsecuritydefaultpermissive); - try { - this.state = 3877; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: - this.enterOuterAlt(localContext, 1); - { - this.state = 3874; - this.match(PostgreSqlParser.AS); - this.state = 3875; - this.identifier(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.FOR: - case PostgreSqlParser.INTO: - case PostgreSqlParser.TO: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 rowsecuritydefaultforcmd(): RowsecuritydefaultforcmdContext { - let localContext = new RowsecuritydefaultforcmdContext(this.context, this.state); - this.enterRule(localContext, 394, PostgreSqlParser.RULE_rowsecuritydefaultforcmd); - try { - this.state = 3882; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - this.enterOuterAlt(localContext, 1); - { - this.state = 3879; - this.match(PostgreSqlParser.FOR); - this.state = 3880; - this.row_security_cmd(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.TO: - case PostgreSqlParser.USING: - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 row_security_cmd(): Row_security_cmdContext { - let localContext = new Row_security_cmdContext(this.context, this.state); - this.enterRule(localContext, 396, PostgreSqlParser.RULE_row_security_cmd); - let _la: number; + public transitionRowOrTable(): TransitionRowOrTableContext { + let localContext = new TransitionRowOrTableContext(this.context, this.state); + this.enterRule(localContext, 386, PostgreSqlParser.RULE_transitionRowOrTable); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3884; + this.state = 3822; _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 88 || _la === 182 || _la === 232 || _la === 362)) { + if(!(_la === 92 || _la === 407)) { this.errorHandler.recoverInline(this); } else { @@ -19883,28 +19344,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createamstmt(): CreateamstmtContext { - let localContext = new CreateamstmtContext(this.context, this.state); - this.enterRule(localContext, 398, PostgreSqlParser.RULE_createamstmt); + public transitionRelName(): TransitionRelNameContext { + let localContext = new TransitionRelNameContext(this.context, this.state); + this.enterRule(localContext, 388, PostgreSqlParser.RULE_transitionRelName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3886; - this.match(PostgreSqlParser.CREATE); - this.state = 3887; - this.match(PostgreSqlParser.ACCESS); - this.state = 3888; - this.match(PostgreSqlParser.METHOD); - this.state = 3889; - this.name(); - this.state = 3890; - this.match(PostgreSqlParser.TYPE_P); - this.state = 3891; - this.am_type(); - this.state = 3892; - this.match(PostgreSqlParser.HANDLER); - this.state = 3893; - this.handler_name(); + this.state = 3824; + this.columnId(); } } catch (re) { @@ -19921,171 +19368,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public am_type(): Am_typeContext { - let localContext = new Am_typeContext(this.context, this.state); - this.enterRule(localContext, 400, PostgreSqlParser.RULE_am_type); + public triggerForSpec(): TriggerForSpecContext { + let localContext = new TriggerForSpecContext(this.context, this.state); + this.enterRule(localContext, 390, PostgreSqlParser.RULE_triggerForSpec); let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3895; - _la = this.tokenStream.LA(1); - if(!(_la === 92 || _la === 226)) { - 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 createtrigstmt(): CreatetrigstmtContext { - let localContext = new CreatetrigstmtContext(this.context, this.state); - this.enterRule(localContext, 402, PostgreSqlParser.RULE_createtrigstmt); - try { - this.state = 3935; + this.state = 3832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3897; - this.match(PostgreSqlParser.CREATE); - this.state = 3898; - this.match(PostgreSqlParser.TRIGGER); - this.state = 3899; - this.name(); - this.state = 3900; - this.triggeractiontime(); - this.state = 3901; - this.triggerevents(); - this.state = 3902; - this.match(PostgreSqlParser.ON); - this.state = 3903; - this.qualified_name(); - this.state = 3904; - this.triggerreferencing(); - this.state = 3905; - this.triggerforspec(); - this.state = 3906; - this.triggerwhen(); - this.state = 3907; - this.match(PostgreSqlParser.EXECUTE); - this.state = 3908; - this.function_or_procedure(); - this.state = 3909; - this.func_name(); - this.state = 3910; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3911; - this.triggerfuncargs(); - this.state = 3912; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3914; - this.match(PostgreSqlParser.CREATE); - this.state = 3915; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 3916; - this.match(PostgreSqlParser.TRIGGER); - this.state = 3917; - this.name(); - this.state = 3918; - this.match(PostgreSqlParser.AFTER); - this.state = 3919; - this.triggerevents(); - this.state = 3920; - this.match(PostgreSqlParser.ON); - this.state = 3921; - this.qualified_name(); - this.state = 3922; - this.optconstrfromtable(); - this.state = 3923; - this.constraintattributespec(); - this.state = 3924; + this.state = 3826; this.match(PostgreSqlParser.FOR); - this.state = 3925; - this.match(PostgreSqlParser.EACH); - this.state = 3926; - this.match(PostgreSqlParser.ROW); - this.state = 3927; - this.triggerwhen(); - this.state = 3928; - this.match(PostgreSqlParser.EXECUTE); - this.state = 3929; - this.function_or_procedure(); - this.state = 3930; - this.func_name(); - this.state = 3931; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3932; - this.triggerfuncargs(); - this.state = 3933; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3828; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 192) { + { + this.state = 3827; + this.match(PostgreSqlParser.EACH); + } } - 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 triggeractiontime(): TriggeractiontimeContext { - let localContext = new TriggeractiontimeContext(this.context, this.state); - this.enterRule(localContext, 404, PostgreSqlParser.RULE_triggeractiontime); - try { - this.state = 3941; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.BEFORE: - this.enterOuterAlt(localContext, 1); - { - this.state = 3937; - this.match(PostgreSqlParser.BEFORE); + + this.state = 3830; + this.triggerForType(); } break; - case PostgreSqlParser.AFTER: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.EXECUTE: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 3938; - this.match(PostgreSqlParser.AFTER); - } - break; - case PostgreSqlParser.INSTEAD: - this.enterOuterAlt(localContext, 3); - { - this.state = 3939; - this.match(PostgreSqlParser.INSTEAD); - this.state = 3940; - this.match(PostgreSqlParser.OF); } break; default: @@ -20106,93 +19420,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public triggerevents(): TriggereventsContext { - let localContext = new TriggereventsContext(this.context, this.state); - this.enterRule(localContext, 406, PostgreSqlParser.RULE_triggerevents); + public triggerForType(): TriggerForTypeContext { + let localContext = new TriggerForTypeContext(this.context, this.state); + this.enterRule(localContext, 392, PostgreSqlParser.RULE_triggerForType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3943; - this.triggeroneevent(); - this.state = 3948; - this.errorHandler.sync(this); + this.state = 3834; _la = this.tokenStream.LA(1); - while (_la === 82) { - { - { - this.state = 3944; - this.match(PostgreSqlParser.OR); - this.state = 3945; - this.triggeroneevent(); - } - } - this.state = 3950; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + if(!(_la === 334 || _la === 407)) { + this.errorHandler.recoverInline(this); } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; + else { + this.errorHandler.reportMatch(this); + this.consume(); } - } - finally { - this.exitRule(); - } - return localContext; - } - public triggeroneevent(): TriggeroneeventContext { - let localContext = new TriggeroneeventContext(this.context, this.state); - this.enterRule(localContext, 408, PostgreSqlParser.RULE_triggeroneevent); - try { - this.state = 3958; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3951; - this.match(PostgreSqlParser.INSERT); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3952; - this.match(PostgreSqlParser.DELETE_P); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3953; - this.match(PostgreSqlParser.UPDATE); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3954; - this.match(PostgreSqlParser.UPDATE); - this.state = 3955; - this.match(PostgreSqlParser.OF); - this.state = 3956; - this.columnlist(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3957; - this.match(PostgreSqlParser.TRUNCATE); - } - break; } } catch (re) { @@ -20209,24 +19452,26 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public triggerreferencing(): TriggerreferencingContext { - let localContext = new TriggerreferencingContext(this.context, this.state); - this.enterRule(localContext, 410, PostgreSqlParser.RULE_triggerreferencing); + public triggerWhen(): TriggerWhenContext { + let localContext = new TriggerWhenContext(this.context, this.state); + this.enterRule(localContext, 394, PostgreSqlParser.RULE_triggerWhen); try { - this.state = 3963; + this.state = 3842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.WHEN: this.enterOuterAlt(localContext, 1); { - this.state = 3960; - this.match(PostgreSqlParser.REFERENCING); - this.state = 3961; - this.triggertransitions(); + this.state = 3836; + this.match(PostgreSqlParser.WHEN); + this.state = 3837; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3838; + this.expression1(); + this.state = 3839; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.FOR: - case PostgreSqlParser.WHEN: case PostgreSqlParser.EXECUTE: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty @@ -20251,83 +19496,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public triggertransitions(): TriggertransitionsContext { - let localContext = new TriggertransitionsContext(this.context, this.state); - this.enterRule(localContext, 412, PostgreSqlParser.RULE_triggertransitions); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3966; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 3965; - this.triggertransition(); - } - } - this.state = 3968; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 448 || _la === 449); - } - } - 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 triggertransition(): TriggertransitionContext { - let localContext = new TriggertransitionContext(this.context, this.state); - this.enterRule(localContext, 414, PostgreSqlParser.RULE_triggertransition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3970; - this.transitionoldornew(); - this.state = 3971; - this.transitionrowortable(); - this.state = 3972; - this.opt_as(); - this.state = 3973; - this.transitionrelname(); - } - } - 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 transitionoldornew(): TransitionoldornewContext { - let localContext = new TransitionoldornewContext(this.context, this.state); - this.enterRule(localContext, 416, PostgreSqlParser.RULE_transitionoldornew); + public functionOrProcedure(): FunctionOrProcedureContext { + let localContext = new FunctionOrProcedureContext(this.context, this.state); + this.enterRule(localContext, 396, PostgreSqlParser.RULE_functionOrProcedure); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3975; + this.state = 3844; _la = this.tokenStream.LA(1); - if(!(_la === 448 || _la === 449)) { + if(!(_la === 211 || _la === 289)) { this.errorHandler.recoverInline(this); } else { @@ -20350,260 +19528,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transitionrowortable(): TransitionrowortableContext { - let localContext = new TransitionrowortableContext(this.context, this.state); - this.enterRule(localContext, 418, PostgreSqlParser.RULE_transitionrowortable); + public triggerFunctionArguments(): TriggerFunctionArgumentsContext { + let localContext = new TriggerFunctionArgumentsContext(this.context, this.state); + this.enterRule(localContext, 398, PostgreSqlParser.RULE_triggerFunctionArguments); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3977; - _la = this.tokenStream.LA(1); - if(!(_la === 92 || _la === 407)) { - 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 transitionrelname(): TransitionrelnameContext { - let localContext = new TransitionrelnameContext(this.context, this.state); - this.enterRule(localContext, 420, PostgreSqlParser.RULE_transitionrelname); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3979; - this.colid(); - } - } - 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 triggerforspec(): TriggerforspecContext { - let localContext = new TriggerforspecContext(this.context, this.state); - this.enterRule(localContext, 422, PostgreSqlParser.RULE_triggerforspec); - try { - this.state = 3986; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - this.enterOuterAlt(localContext, 1); - { - this.state = 3981; - this.match(PostgreSqlParser.FOR); - this.state = 3982; - this.triggerforopteach(); - this.state = 3983; - this.triggerfortype(); - } - break; - case PostgreSqlParser.WHEN: - case PostgreSqlParser.EXECUTE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 triggerforopteach(): TriggerforopteachContext { - let localContext = new TriggerforopteachContext(this.context, this.state); - this.enterRule(localContext, 424, PostgreSqlParser.RULE_triggerforopteach); - try { - this.state = 3990; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.EACH: - this.enterOuterAlt(localContext, 1); - { - this.state = 3988; - this.match(PostgreSqlParser.EACH); - } - break; - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.ROW: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 triggerfortype(): TriggerfortypeContext { - let localContext = new TriggerfortypeContext(this.context, this.state); - this.enterRule(localContext, 426, PostgreSqlParser.RULE_triggerfortype); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3992; - _la = this.tokenStream.LA(1); - if(!(_la === 334 || _la === 407)) { - 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 triggerwhen(): TriggerwhenContext { - let localContext = new TriggerwhenContext(this.context, this.state); - this.enterRule(localContext, 428, PostgreSqlParser.RULE_triggerwhen); - try { - this.state = 4000; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WHEN: - this.enterOuterAlt(localContext, 1); - { - this.state = 3994; - this.match(PostgreSqlParser.WHEN); - this.state = 3995; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3996; - this.a_expr(); - this.state = 3997; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EXECUTE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 function_or_procedure(): Function_or_procedureContext { - let localContext = new Function_or_procedureContext(this.context, this.state); - this.enterRule(localContext, 430, PostgreSqlParser.RULE_function_or_procedure); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4002; - _la = this.tokenStream.LA(1); - if(!(_la === 211 || _la === 289)) { - 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 triggerfuncargs(): TriggerfuncargsContext { - let localContext = new TriggerfuncargsContext(this.context, this.state); - this.enterRule(localContext, 432, PostgreSqlParser.RULE_triggerfuncargs); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4006; + this.state = 3848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ALL: @@ -21216,8 +20148,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4004; - this.triggerfuncarg(); + this.state = 3846; + this.triggerFunctionArgument(); } break; case PostgreSqlParser.CLOSE_PAREN: @@ -21229,19 +20161,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4012; + this.state = 3854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4008; + this.state = 3850; this.match(PostgreSqlParser.COMMA); - this.state = 4009; - this.triggerfuncarg(); + this.state = 3851; + this.triggerFunctionArgument(); } } - this.state = 4014; + this.state = 3856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21261,24 +20193,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public triggerfuncarg(): TriggerfuncargContext { - let localContext = new TriggerfuncargContext(this.context, this.state); - this.enterRule(localContext, 434, PostgreSqlParser.RULE_triggerfuncarg); + public triggerFunctionArgument(): TriggerFunctionArgumentContext { + let localContext = new TriggerFunctionArgumentContext(this.context, this.state); + this.enterRule(localContext, 400, PostgreSqlParser.RULE_triggerFunctionArgument); try { - this.state = 4019; + this.state = 3861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 4015; + this.state = 3857; this.iconst(); } break; case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 4016; + this.state = 3858; this.fconst(); } break; @@ -21288,7 +20220,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 4017; + this.state = 3859; this.sconst(); } break; @@ -21897,8 +20829,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 4018; - this.collabel(); + this.state = 3860; + this.columnLabel(); } break; default: @@ -21919,20 +20851,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public optconstrfromtable(): OptconstrfromtableContext { - let localContext = new OptconstrfromtableContext(this.context, this.state); - this.enterRule(localContext, 436, PostgreSqlParser.RULE_optconstrfromtable); + public optionalConstraintFromTable(): OptionalConstraintFromTableContext { + let localContext = new OptionalConstraintFromTableContext(this.context, this.state); + this.enterRule(localContext, 402, PostgreSqlParser.RULE_optionalConstraintFromTable); try { - this.state = 4024; + this.state = 3866; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FROM: this.enterOuterAlt(localContext, 1); { - this.state = 4021; + this.state = 3863; this.match(PostgreSqlParser.FROM); - this.state = 4022; - this.qualified_name(); + this.state = 3864; + this.qualifiedName(); } break; case PostgreSqlParser.DEFERRABLE: @@ -21963,24 +20895,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraintattributespec(): ConstraintattributespecContext { - let localContext = new ConstraintattributespecContext(this.context, this.state); - this.enterRule(localContext, 438, PostgreSqlParser.RULE_constraintattributespec); + public constraintAttributeSpecification(): ConstraintAttributeSpecificationContext { + let localContext = new ConstraintAttributeSpecificationContext(this.context, this.state); + this.enterRule(localContext, 404, PostgreSqlParser.RULE_constraintAttributeSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4029; + this.state = 3871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 262) { { { - this.state = 4026; - this.constraintattributeElem(); + this.state = 3868; + this.constraintAttributeElement(); } } - this.state = 4031; + this.state = 3873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22000,62 +20932,62 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public constraintattributeElem(): ConstraintattributeElemContext { - let localContext = new ConstraintattributeElemContext(this.context, this.state); - this.enterRule(localContext, 440, PostgreSqlParser.RULE_constraintattributeElem); + public constraintAttributeElement(): ConstraintAttributeElementContext { + let localContext = new ConstraintAttributeElementContext(this.context, this.state); + this.enterRule(localContext, 406, PostgreSqlParser.RULE_constraintAttributeElement); try { - this.state = 4043; + this.state = 3885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4032; + this.state = 3874; this.match(PostgreSqlParser.NOT); - this.state = 4033; + this.state = 3875; this.match(PostgreSqlParser.DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4034; + this.state = 3876; this.match(PostgreSqlParser.DEFERRABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4035; + this.state = 3877; this.match(PostgreSqlParser.INITIALLY); - this.state = 4036; + this.state = 3878; this.match(PostgreSqlParser.IMMEDIATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4037; + this.state = 3879; this.match(PostgreSqlParser.INITIALLY); - this.state = 4038; + this.state = 3880; this.match(PostgreSqlParser.DEFERRED); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4039; + this.state = 3881; this.match(PostgreSqlParser.NOT); - this.state = 4040; + this.state = 3882; this.match(PostgreSqlParser.VALID); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4041; + this.state = 3883; this.match(PostgreSqlParser.NO); - this.state = 4042; + this.state = 3884; this.match(PostgreSqlParser.INHERIT); } break; @@ -22075,68 +21007,68 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createeventtrigstmt(): CreateeventtrigstmtContext { - let localContext = new CreateeventtrigstmtContext(this.context, this.state); - this.enterRule(localContext, 442, PostgreSqlParser.RULE_createeventtrigstmt); + public createEventTriggerStatement(): CreateEventTriggerStatementContext { + let localContext = new CreateEventTriggerStatementContext(this.context, this.state); + this.enterRule(localContext, 408, PostgreSqlParser.RULE_createEventTriggerStatement); try { - this.state = 4071; + this.state = 3913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4045; + this.state = 3887; this.match(PostgreSqlParser.CREATE); - this.state = 4046; + this.state = 3888; this.match(PostgreSqlParser.EVENT); - this.state = 4047; + this.state = 3889; this.match(PostgreSqlParser.TRIGGER); - this.state = 4048; + this.state = 3890; this.name(); - this.state = 4049; + this.state = 3891; this.match(PostgreSqlParser.ON); - this.state = 4050; - this.collabel(); - this.state = 4051; + this.state = 3892; + this.columnLabel(); + this.state = 3893; this.match(PostgreSqlParser.EXECUTE); - this.state = 4052; - this.function_or_procedure(); - this.state = 4053; - this.func_name(); - this.state = 4054; + this.state = 3894; + this.functionOrProcedure(); + this.state = 3895; + this.functionName(); + this.state = 3896; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4055; + this.state = 3897; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4057; + this.state = 3899; this.match(PostgreSqlParser.CREATE); - this.state = 4058; + this.state = 3900; this.match(PostgreSqlParser.EVENT); - this.state = 4059; + this.state = 3901; this.match(PostgreSqlParser.TRIGGER); - this.state = 4060; + this.state = 3902; this.name(); - this.state = 4061; + this.state = 3903; this.match(PostgreSqlParser.ON); - this.state = 4062; - this.collabel(); - this.state = 4063; + this.state = 3904; + this.columnLabel(); + this.state = 3905; this.match(PostgreSqlParser.WHEN); - this.state = 4064; - this.event_trigger_when_list(); - this.state = 4065; + this.state = 3906; + this.eventTriggerWhenList(); + this.state = 3907; this.match(PostgreSqlParser.EXECUTE); - this.state = 4066; - this.function_or_procedure(); - this.state = 4067; - this.func_name(); - this.state = 4068; + this.state = 3908; + this.functionOrProcedure(); + this.state = 3909; + this.functionName(); + this.state = 3910; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4069; + this.state = 3911; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -22156,28 +21088,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public event_trigger_when_list(): Event_trigger_when_listContext { - let localContext = new Event_trigger_when_listContext(this.context, this.state); - this.enterRule(localContext, 444, PostgreSqlParser.RULE_event_trigger_when_list); + public eventTriggerWhenList(): EventTriggerWhenListContext { + let localContext = new EventTriggerWhenListContext(this.context, this.state); + this.enterRule(localContext, 410, PostgreSqlParser.RULE_eventTriggerWhenList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4073; - this.event_trigger_when_item(); - this.state = 4078; + this.state = 3915; + this.eventTriggerWhenItem(); + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 4074; + this.state = 3916; this.match(PostgreSqlParser.AND); - this.state = 4075; - this.event_trigger_when_item(); + this.state = 3917; + this.eventTriggerWhenItem(); } } - this.state = 4080; + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22197,21 +21129,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public event_trigger_when_item(): Event_trigger_when_itemContext { - let localContext = new Event_trigger_when_itemContext(this.context, this.state); - this.enterRule(localContext, 446, PostgreSqlParser.RULE_event_trigger_when_item); + public eventTriggerWhenItem(): EventTriggerWhenItemContext { + let localContext = new EventTriggerWhenItemContext(this.context, this.state); + this.enterRule(localContext, 412, PostgreSqlParser.RULE_eventTriggerWhenItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 4081; - this.colid(); - this.state = 4082; + this.state = 3923; + this.columnId(); + this.state = 3924; this.match(PostgreSqlParser.IN_P); - this.state = 4083; + this.state = 3925; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4084; - this.event_trigger_value_list(); - this.state = 4085; + this.state = 3926; + this.eventTriggerValueList(); + this.state = 3927; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -22229,28 +21161,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public event_trigger_value_list(): Event_trigger_value_listContext { - let localContext = new Event_trigger_value_listContext(this.context, this.state); - this.enterRule(localContext, 448, PostgreSqlParser.RULE_event_trigger_value_list); + public eventTriggerValueList(): EventTriggerValueListContext { + let localContext = new EventTriggerValueListContext(this.context, this.state); + this.enterRule(localContext, 414, PostgreSqlParser.RULE_eventTriggerValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4087; + this.state = 3929; this.sconst(); - this.state = 4092; + this.state = 3934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4088; + this.state = 3930; this.match(PostgreSqlParser.COMMA); - this.state = 4089; + this.state = 3931; this.sconst(); } } - this.state = 4094; + this.state = 3936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22270,22 +21202,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altereventtrigstmt(): AltereventtrigstmtContext { - let localContext = new AltereventtrigstmtContext(this.context, this.state); - this.enterRule(localContext, 450, PostgreSqlParser.RULE_altereventtrigstmt); + public alterEventTriggerStatement(): AlterEventTriggerStatementContext { + let localContext = new AlterEventTriggerStatementContext(this.context, this.state); + this.enterRule(localContext, 416, PostgreSqlParser.RULE_alterEventTriggerStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 3937; this.match(PostgreSqlParser.ALTER); - this.state = 4096; + this.state = 3938; this.match(PostgreSqlParser.EVENT); - this.state = 4097; + this.state = 3939; this.match(PostgreSqlParser.TRIGGER); - this.state = 4098; + this.state = 3940; this.name(); - this.state = 4099; - this.enable_trigger(); + this.state = 3941; + this.enableTrigger(); } } catch (re) { @@ -22302,42 +21234,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public enable_trigger(): Enable_triggerContext { - let localContext = new Enable_triggerContext(this.context, this.state); - this.enterRule(localContext, 452, PostgreSqlParser.RULE_enable_trigger); + public enableTrigger(): EnableTriggerContext { + let localContext = new EnableTriggerContext(this.context, this.state); + this.enterRule(localContext, 418, PostgreSqlParser.RULE_enableTrigger); try { - this.state = 4107; + this.state = 3949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4101; + this.state = 3943; this.match(PostgreSqlParser.ENABLE_P); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4102; + this.state = 3944; this.match(PostgreSqlParser.ENABLE_P); - this.state = 4103; + this.state = 3945; this.match(PostgreSqlParser.REPLICA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4104; + this.state = 3946; this.match(PostgreSqlParser.ENABLE_P); - this.state = 4105; + this.state = 3947; this.match(PostgreSqlParser.ALWAYS); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4106; + this.state = 3948; this.match(PostgreSqlParser.DISABLE_P); } break; @@ -22357,28 +21289,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createassertionstmt(): CreateassertionstmtContext { - let localContext = new CreateassertionstmtContext(this.context, this.state); - this.enterRule(localContext, 454, PostgreSqlParser.RULE_createassertionstmt); + public createAssertionStatement(): CreateAssertionStatementContext { + let localContext = new CreateAssertionStatementContext(this.context, this.state); + this.enterRule(localContext, 420, PostgreSqlParser.RULE_createAssertionStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4109; + this.state = 3951; this.match(PostgreSqlParser.CREATE); - this.state = 4110; + this.state = 3952; this.match(PostgreSqlParser.ASSERTION); - this.state = 4111; - this.any_name(); - this.state = 4112; + this.state = 3953; + this.anyName(); + this.state = 3954; this.match(PostgreSqlParser.CHECK); - this.state = 4113; + this.state = 3955; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4114; - this.a_expr(); - this.state = 4115; + this.state = 3956; + this.expression1(); + this.state = 3957; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4116; - this.constraintattributespec(); + this.state = 3958; + this.constraintAttributeSpecification(); } } catch (re) { @@ -22395,273 +21327,282 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public definestmt(): DefinestmtContext { - let localContext = new DefinestmtContext(this.context, this.state); - this.enterRule(localContext, 456, PostgreSqlParser.RULE_definestmt); + public defineStatement(): DefineStatementContext { + let localContext = new DefineStatementContext(this.context, this.state); + this.enterRule(localContext, 422, PostgreSqlParser.RULE_defineStatement); + let _la: number; try { - this.state = 4224; + this.state = 4068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4118; + this.state = 3960; this.match(PostgreSqlParser.CREATE); - this.state = 4119; - this.opt_or_replace(); - this.state = 4120; + this.state = 3961; + this.optionalOrReplace(); + this.state = 3962; this.match(PostgreSqlParser.AGGREGATE); - this.state = 4121; - this.func_name(); - this.state = 4122; - this.aggr_args(); - this.state = 4123; + this.state = 3963; + this.functionName(); + this.state = 3964; + this.aggregateArguments(); + this.state = 3965; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4125; + this.state = 3967; this.match(PostgreSqlParser.CREATE); - this.state = 4126; - this.opt_or_replace(); - this.state = 4127; + this.state = 3968; + this.optionalOrReplace(); + this.state = 3969; this.match(PostgreSqlParser.AGGREGATE); - this.state = 4128; - this.func_name(); - this.state = 4129; - this.old_aggr_definition(); + this.state = 3970; + this.functionName(); + this.state = 3971; + this.oldAggregateDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4131; + this.state = 3973; this.match(PostgreSqlParser.CREATE); - this.state = 4132; + this.state = 3974; this.match(PostgreSqlParser.OPERATOR); - this.state = 4133; - this.any_operator(); - this.state = 4134; + this.state = 3975; + this.anyOperator(); + this.state = 3976; this.definition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4136; + this.state = 3978; this.match(PostgreSqlParser.CREATE); - this.state = 4137; + this.state = 3979; this.match(PostgreSqlParser.TYPE_P); - this.state = 4138; - this.any_name(); - this.state = 4139; + this.state = 3980; + this.anyName(); + this.state = 3981; this.definition(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4141; + this.state = 3983; this.match(PostgreSqlParser.CREATE); - this.state = 4142; + this.state = 3984; this.match(PostgreSqlParser.TYPE_P); - this.state = 4143; - this.any_name(); + this.state = 3985; + this.anyName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4144; + this.state = 3986; this.match(PostgreSqlParser.CREATE); - this.state = 4145; + this.state = 3987; this.match(PostgreSqlParser.TYPE_P); - this.state = 4146; - this.any_name(); - this.state = 4147; + this.state = 3988; + this.anyName(); + this.state = 3989; this.match(PostgreSqlParser.AS); - this.state = 4148; + this.state = 3990; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4149; - this.opttablefuncelementlist(); - this.state = 4150; + this.state = 3991; + this.optionalTableFunctionElementList(); + this.state = 3992; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4152; + this.state = 3994; this.match(PostgreSqlParser.CREATE); - this.state = 4153; + this.state = 3995; this.match(PostgreSqlParser.TYPE_P); - this.state = 4154; - this.any_name(); - this.state = 4155; + this.state = 3996; + this.anyName(); + this.state = 3997; this.match(PostgreSqlParser.AS); - this.state = 4156; + this.state = 3998; this.match(PostgreSqlParser.ENUM_P); - this.state = 4157; + this.state = 3999; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4158; - this.opt_enum_val_list(); - this.state = 4159; + this.state = 4001; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 645)) & ~0x1F) === 0 && ((1 << (_la - 645)) & 67108885) !== 0)) { + { + this.state = 4000; + this.enumValueList(); + } + } + + this.state = 4003; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4161; + this.state = 4005; this.match(PostgreSqlParser.CREATE); - this.state = 4162; + this.state = 4006; this.match(PostgreSqlParser.TYPE_P); - this.state = 4163; - this.any_name(); - this.state = 4164; + this.state = 4007; + this.anyName(); + this.state = 4008; this.match(PostgreSqlParser.AS); - this.state = 4165; + this.state = 4009; this.match(PostgreSqlParser.RANGE); - this.state = 4166; + this.state = 4010; this.definition(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4168; + this.state = 4012; this.match(PostgreSqlParser.CREATE); - this.state = 4169; + this.state = 4013; this.match(PostgreSqlParser.TEXT_P); - this.state = 4170; + this.state = 4014; this.match(PostgreSqlParser.SEARCH); - this.state = 4171; + this.state = 4015; this.match(PostgreSqlParser.PARSER); - this.state = 4172; - this.any_name(); - this.state = 4173; + this.state = 4016; + this.anyName(); + this.state = 4017; this.definition(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4175; + this.state = 4019; this.match(PostgreSqlParser.CREATE); - this.state = 4176; + this.state = 4020; this.match(PostgreSqlParser.TEXT_P); - this.state = 4177; + this.state = 4021; this.match(PostgreSqlParser.SEARCH); - this.state = 4178; + this.state = 4022; this.match(PostgreSqlParser.DICTIONARY); - this.state = 4179; - this.any_name(); - this.state = 4180; + this.state = 4023; + this.anyName(); + this.state = 4024; this.definition(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4182; + this.state = 4026; this.match(PostgreSqlParser.CREATE); - this.state = 4183; + this.state = 4027; this.match(PostgreSqlParser.TEXT_P); - this.state = 4184; + this.state = 4028; this.match(PostgreSqlParser.SEARCH); - this.state = 4185; + this.state = 4029; this.match(PostgreSqlParser.TEMPLATE); - this.state = 4186; - this.any_name(); - this.state = 4187; + this.state = 4030; + this.anyName(); + this.state = 4031; this.definition(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4189; + this.state = 4033; this.match(PostgreSqlParser.CREATE); - this.state = 4190; + this.state = 4034; this.match(PostgreSqlParser.TEXT_P); - this.state = 4191; + this.state = 4035; this.match(PostgreSqlParser.SEARCH); - this.state = 4192; + this.state = 4036; this.match(PostgreSqlParser.CONFIGURATION); - this.state = 4193; - this.any_name(); - this.state = 4194; + this.state = 4037; + this.anyName(); + this.state = 4038; this.definition(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4196; + this.state = 4040; this.match(PostgreSqlParser.CREATE); - this.state = 4197; + this.state = 4041; this.match(PostgreSqlParser.COLLATION); - this.state = 4198; - this.any_name(); - this.state = 4199; + this.state = 4042; + this.anyName(); + this.state = 4043; this.definition(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4201; + this.state = 4045; this.match(PostgreSqlParser.CREATE); - this.state = 4202; + this.state = 4046; this.match(PostgreSqlParser.COLLATION); - this.state = 4203; + this.state = 4047; this.match(PostgreSqlParser.IF_P); - this.state = 4204; + this.state = 4048; this.match(PostgreSqlParser.NOT); - this.state = 4205; + this.state = 4049; this.match(PostgreSqlParser.EXISTS); - this.state = 4206; - this.any_name(); - this.state = 4207; + this.state = 4050; + this.anyName(); + this.state = 4051; this.definition(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4209; + this.state = 4053; this.match(PostgreSqlParser.CREATE); - this.state = 4210; + this.state = 4054; this.match(PostgreSqlParser.COLLATION); - this.state = 4211; - this.any_name(); - this.state = 4212; + this.state = 4055; + this.anyName(); + this.state = 4056; this.match(PostgreSqlParser.FROM); - this.state = 4213; - this.any_name(); + this.state = 4057; + this.anyName(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4215; + this.state = 4059; this.match(PostgreSqlParser.CREATE); - this.state = 4216; + this.state = 4060; this.match(PostgreSqlParser.COLLATION); - this.state = 4217; + this.state = 4061; this.match(PostgreSqlParser.IF_P); - this.state = 4218; + this.state = 4062; this.match(PostgreSqlParser.NOT); - this.state = 4219; + this.state = 4063; this.match(PostgreSqlParser.EXISTS); - this.state = 4220; - this.any_name(); - this.state = 4221; + this.state = 4064; + this.anyName(); + this.state = 4065; this.match(PostgreSqlParser.FROM); - this.state = 4222; - this.any_name(); + this.state = 4066; + this.anyName(); } break; } @@ -22682,57 +21623,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public definition(): DefinitionContext { let localContext = new DefinitionContext(this.context, this.state); - this.enterRule(localContext, 458, PostgreSqlParser.RULE_definition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4226; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4227; - this.def_list(); - this.state = 4228; - this.match(PostgreSqlParser.CLOSE_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 def_list(): Def_listContext { - let localContext = new Def_listContext(this.context, this.state); - this.enterRule(localContext, 460, PostgreSqlParser.RULE_def_list); + this.enterRule(localContext, 424, PostgreSqlParser.RULE_definition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4230; - this.def_elem(); - this.state = 4235; + this.state = 4070; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 4071; + this.definitionElement(); + this.state = 4076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4231; + this.state = 4072; this.match(PostgreSqlParser.COMMA); - this.state = 4232; - this.def_elem(); + this.state = 4073; + this.definitionElement(); } } - this.state = 4237; + this.state = 4078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } + this.state = 4079; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -22749,24 +21666,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public def_elem(): Def_elemContext { - let localContext = new Def_elemContext(this.context, this.state); - this.enterRule(localContext, 462, PostgreSqlParser.RULE_def_elem); + public definitionElement(): DefinitionElementContext { + let localContext = new DefinitionElementContext(this.context, this.state); + this.enterRule(localContext, 426, PostgreSqlParser.RULE_definitionElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4238; - this.collabel(); - this.state = 4241; + this.state = 4081; + this.columnLabel(); + this.state = 4084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4239; + this.state = 4082; this.match(PostgreSqlParser.EQUAL); - this.state = 4240; - this.def_arg(); + this.state = 4083; + this.definitionArgument(); } } @@ -22786,52 +21703,52 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public def_arg(): Def_argContext { - let localContext = new Def_argContext(this.context, this.state); - this.enterRule(localContext, 464, PostgreSqlParser.RULE_def_arg); + public definitionArgument(): DefinitionArgumentContext { + let localContext = new DefinitionArgumentContext(this.context, this.state); + this.enterRule(localContext, 428, PostgreSqlParser.RULE_definitionArgument); try { - this.state = 4249; + this.state = 4092; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4243; - this.func_type(); + this.state = 4086; + this.functionType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4244; - this.reserved_keyword(); + this.state = 4087; + this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4245; - this.qual_all_op(); + this.state = 4088; + this.allOperatorQualifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4246; - this.numericonly(); + this.state = 4089; + this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4247; + this.state = 4090; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4248; + this.state = 4091; this.match(PostgreSqlParser.NONE); } break; @@ -22851,59 +21768,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public old_aggr_definition(): Old_aggr_definitionContext { - let localContext = new Old_aggr_definitionContext(this.context, this.state); - this.enterRule(localContext, 466, PostgreSqlParser.RULE_old_aggr_definition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4251; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4252; - this.old_aggr_list(); - this.state = 4253; - this.match(PostgreSqlParser.CLOSE_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 old_aggr_list(): Old_aggr_listContext { - let localContext = new Old_aggr_listContext(this.context, this.state); - this.enterRule(localContext, 468, PostgreSqlParser.RULE_old_aggr_list); + public oldAggregateDefinition(): OldAggregateDefinitionContext { + let localContext = new OldAggregateDefinitionContext(this.context, this.state); + this.enterRule(localContext, 430, PostgreSqlParser.RULE_oldAggregateDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4255; - this.old_aggr_elem(); - this.state = 4260; + this.state = 4094; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 4095; + this.oldAggregateElement(); + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4256; + this.state = 4096; this.match(PostgreSqlParser.COMMA); - this.state = 4257; - this.old_aggr_elem(); + this.state = 4097; + this.oldAggregateElement(); } } - this.state = 4262; + this.state = 4102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } + this.state = 4103; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -22920,59 +21813,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public old_aggr_elem(): Old_aggr_elemContext { - let localContext = new Old_aggr_elemContext(this.context, this.state); - this.enterRule(localContext, 470, PostgreSqlParser.RULE_old_aggr_elem); + public oldAggregateElement(): OldAggregateElementContext { + let localContext = new OldAggregateElementContext(this.context, this.state); + this.enterRule(localContext, 432, PostgreSqlParser.RULE_oldAggregateElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4263; + this.state = 4105; this.identifier(); - this.state = 4264; + this.state = 4106; this.match(PostgreSqlParser.EQUAL); - this.state = 4265; - this.def_arg(); - } - } - 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 opt_enum_val_list(): Opt_enum_val_listContext { - let localContext = new Opt_enum_val_listContext(this.context, this.state); - this.enterRule(localContext, 472, PostgreSqlParser.RULE_opt_enum_val_list); - try { - this.state = 4269; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 4267; - this.enum_val_list(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 4107; + this.definitionArgument(); } } catch (re) { @@ -22989,28 +21841,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public enum_val_list(): Enum_val_listContext { - let localContext = new Enum_val_listContext(this.context, this.state); - this.enterRule(localContext, 474, PostgreSqlParser.RULE_enum_val_list); + public enumValueList(): EnumValueListContext { + let localContext = new EnumValueListContext(this.context, this.state); + this.enterRule(localContext, 434, PostgreSqlParser.RULE_enumValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4271; + this.state = 4109; this.sconst(); - this.state = 4276; + this.state = 4114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4272; + this.state = 4110; this.match(PostgreSqlParser.COMMA); - this.state = 4273; + this.state = 4111; this.sconst(); } } - this.state = 4278; + this.state = 4116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23030,96 +21882,96 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterenumstmt(): AlterenumstmtContext { - let localContext = new AlterenumstmtContext(this.context, this.state); - this.enterRule(localContext, 476, PostgreSqlParser.RULE_alterenumstmt); + public alterEnumStatement(): AlterEnumStatementContext { + let localContext = new AlterEnumStatementContext(this.context, this.state); + this.enterRule(localContext, 436, PostgreSqlParser.RULE_alterEnumStatement); try { - this.state = 4316; + this.state = 4154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4279; + this.state = 4117; this.match(PostgreSqlParser.ALTER); - this.state = 4280; + this.state = 4118; this.match(PostgreSqlParser.TYPE_P); - this.state = 4281; - this.any_name(); - this.state = 4282; + this.state = 4119; + this.anyName(); + this.state = 4120; this.match(PostgreSqlParser.ADD_P); - this.state = 4283; + this.state = 4121; this.match(PostgreSqlParser.VALUE_P); - this.state = 4284; - this.opt_if_not_exists(); - this.state = 4285; + this.state = 4122; + this.optionalIfNotExists(); + this.state = 4123; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4287; + this.state = 4125; this.match(PostgreSqlParser.ALTER); - this.state = 4288; + this.state = 4126; this.match(PostgreSqlParser.TYPE_P); - this.state = 4289; - this.any_name(); - this.state = 4290; + this.state = 4127; + this.anyName(); + this.state = 4128; this.match(PostgreSqlParser.ADD_P); - this.state = 4291; + this.state = 4129; this.match(PostgreSqlParser.VALUE_P); - this.state = 4292; - this.opt_if_not_exists(); - this.state = 4293; + this.state = 4130; + this.optionalIfNotExists(); + this.state = 4131; this.sconst(); - this.state = 4294; + this.state = 4132; this.match(PostgreSqlParser.BEFORE); - this.state = 4295; + this.state = 4133; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4297; + this.state = 4135; this.match(PostgreSqlParser.ALTER); - this.state = 4298; + this.state = 4136; this.match(PostgreSqlParser.TYPE_P); - this.state = 4299; - this.any_name(); - this.state = 4300; + this.state = 4137; + this.anyName(); + this.state = 4138; this.match(PostgreSqlParser.ADD_P); - this.state = 4301; + this.state = 4139; this.match(PostgreSqlParser.VALUE_P); - this.state = 4302; - this.opt_if_not_exists(); - this.state = 4303; + this.state = 4140; + this.optionalIfNotExists(); + this.state = 4141; this.sconst(); - this.state = 4304; + this.state = 4142; this.match(PostgreSqlParser.AFTER); - this.state = 4305; + this.state = 4143; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4307; + this.state = 4145; this.match(PostgreSqlParser.ALTER); - this.state = 4308; + this.state = 4146; this.match(PostgreSqlParser.TYPE_P); - this.state = 4309; - this.any_name(); - this.state = 4310; + this.state = 4147; + this.anyName(); + this.state = 4148; this.match(PostgreSqlParser.RENAME); - this.state = 4311; + this.state = 4149; this.match(PostgreSqlParser.VALUE_P); - this.state = 4312; + this.state = 4150; this.sconst(); - this.state = 4313; + this.state = 4151; this.match(PostgreSqlParser.TO); - this.state = 4314; + this.state = 4152; this.sconst(); } break; @@ -23139,21 +21991,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_if_not_exists(): Opt_if_not_existsContext { - let localContext = new Opt_if_not_existsContext(this.context, this.state); - this.enterRule(localContext, 478, PostgreSqlParser.RULE_opt_if_not_exists); + public optionalIfNotExists(): OptionalIfNotExistsContext { + let localContext = new OptionalIfNotExistsContext(this.context, this.state); + this.enterRule(localContext, 438, PostgreSqlParser.RULE_optionalIfNotExists); try { - this.state = 4322; + this.state = 4160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.IF_P: this.enterOuterAlt(localContext, 1); { - this.state = 4318; + this.state = 4156; this.match(PostgreSqlParser.IF_P); - this.state = 4319; + this.state = 4157; this.match(PostgreSqlParser.NOT); - this.state = 4320; + this.state = 4158; this.match(PostgreSqlParser.EXISTS); } break; @@ -23184,38 +22036,47 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createopclassstmt(): CreateopclassstmtContext { - let localContext = new CreateopclassstmtContext(this.context, this.state); - this.enterRule(localContext, 480, PostgreSqlParser.RULE_createopclassstmt); + public createOperatorClassStatement(): CreateOperatorClassStatementContext { + let localContext = new CreateOperatorClassStatementContext(this.context, this.state); + this.enterRule(localContext, 440, PostgreSqlParser.RULE_createOperatorClassStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4324; + this.state = 4162; this.match(PostgreSqlParser.CREATE); - this.state = 4325; + this.state = 4163; this.match(PostgreSqlParser.OPERATOR); - this.state = 4326; + this.state = 4164; this.match(PostgreSqlParser.CLASS); - this.state = 4327; - this.any_name(); - this.state = 4328; - this.opt_default(); - this.state = 4329; + this.state = 4165; + this.anyName(); + this.state = 4167; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 53) { + { + this.state = 4166; + this.match(PostgreSqlParser.DEFAULT); + } + } + + this.state = 4169; this.match(PostgreSqlParser.FOR); - this.state = 4330; + this.state = 4170; this.match(PostgreSqlParser.TYPE_P); - this.state = 4331; - this.typename(); - this.state = 4332; + this.state = 4171; + this.typeName(); + this.state = 4172; this.match(PostgreSqlParser.USING); - this.state = 4333; + this.state = 4173; this.name(); - this.state = 4334; - this.opt_opfamily(); - this.state = 4335; + this.state = 4174; + this.optionalOperatorFamily(); + this.state = 4175; this.match(PostgreSqlParser.AS); - this.state = 4336; - this.opclass_item_list(); + this.state = 4176; + this.operatorClassItemList(); } } catch (re) { @@ -23232,28 +22093,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opclass_item_list(): Opclass_item_listContext { - let localContext = new Opclass_item_listContext(this.context, this.state); - this.enterRule(localContext, 482, PostgreSqlParser.RULE_opclass_item_list); + public operatorClassItemList(): OperatorClassItemListContext { + let localContext = new OperatorClassItemListContext(this.context, this.state); + this.enterRule(localContext, 442, PostgreSqlParser.RULE_operatorClassItemList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4338; - this.opclass_item(); - this.state = 4343; + this.state = 4178; + this.operatorClassItem(); + this.state = 4183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4339; + this.state = 4179; this.match(PostgreSqlParser.COMMA); - this.state = 4340; - this.opclass_item(); + this.state = 4180; + this.operatorClassItem(); } } - this.state = 4345; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23273,119 +22134,97 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opclass_item(): Opclass_itemContext { - let localContext = new Opclass_itemContext(this.context, this.state); - this.enterRule(localContext, 484, PostgreSqlParser.RULE_opclass_item); + public operatorClassItem(): OperatorClassItemContext { + let localContext = new OperatorClassItemContext(this.context, this.state); + this.enterRule(localContext, 444, PostgreSqlParser.RULE_operatorClassItem); + let _la: number; try { - this.state = 4371; + this.state = 4213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4346; + this.state = 4186; this.match(PostgreSqlParser.OPERATOR); - this.state = 4347; + this.state = 4187; this.iconst(); - this.state = 4348; - this.any_operator(); - this.state = 4349; - this.opclass_purpose(); - this.state = 4350; - this.opt_recheck(); + this.state = 4188; + this.anyOperator(); + this.state = 4189; + this.operatorClassPurpose(); + this.state = 4191; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 295) { + { + this.state = 4190; + this.match(PostgreSqlParser.RECHECK); + } + } + } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4352; + this.state = 4193; this.match(PostgreSqlParser.OPERATOR); - this.state = 4353; + this.state = 4194; this.iconst(); - this.state = 4354; - this.operator_with_argtypes(); - this.state = 4355; - this.opclass_purpose(); - this.state = 4356; - this.opt_recheck(); + this.state = 4195; + this.operatorWithArgumentTypes(); + this.state = 4196; + this.operatorClassPurpose(); + this.state = 4198; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 295) { + { + this.state = 4197; + this.match(PostgreSqlParser.RECHECK); + } + } + } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4358; + this.state = 4200; this.match(PostgreSqlParser.FUNCTION); - this.state = 4359; + this.state = 4201; this.iconst(); - this.state = 4360; - this.function_with_argtypes(); + this.state = 4202; + this.functionWithArgumentTypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4362; + this.state = 4204; this.match(PostgreSqlParser.FUNCTION); - this.state = 4363; + this.state = 4205; this.iconst(); - this.state = 4364; + this.state = 4206; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4365; - this.type_list(); - this.state = 4366; + this.state = 4207; + this.typeList(); + this.state = 4208; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4367; - this.function_with_argtypes(); + this.state = 4209; + this.functionWithArgumentTypes(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4369; + this.state = 4211; this.match(PostgreSqlParser.STORAGE); - this.state = 4370; - this.typename(); - } - 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 opt_default(): Opt_defaultContext { - let localContext = new Opt_defaultContext(this.context, this.state); - this.enterRule(localContext, 486, PostgreSqlParser.RULE_opt_default); - try { - this.state = 4375; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DEFAULT: - this.enterOuterAlt(localContext, 1); - { - this.state = 4373; - this.match(PostgreSqlParser.DEFAULT); - } - break; - case PostgreSqlParser.FOR: - case PostgreSqlParser.CONVERSION_P: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { + this.state = 4212; + this.typeName(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -23402,20 +22241,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_opfamily(): Opt_opfamilyContext { - let localContext = new Opt_opfamilyContext(this.context, this.state); - this.enterRule(localContext, 488, PostgreSqlParser.RULE_opt_opfamily); + public optionalOperatorFamily(): OptionalOperatorFamilyContext { + let localContext = new OptionalOperatorFamilyContext(this.context, this.state); + this.enterRule(localContext, 446, PostgreSqlParser.RULE_optionalOperatorFamily); try { - this.state = 4380; + this.state = 4218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FAMILY: this.enterOuterAlt(localContext, 1); { - this.state = 4377; + this.state = 4215; this.match(PostgreSqlParser.FAMILY); - this.state = 4378; - this.any_name(); + this.state = 4216; + this.anyName(); } break; case PostgreSqlParser.AS: @@ -23442,33 +22281,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opclass_purpose(): Opclass_purposeContext { - let localContext = new Opclass_purposeContext(this.context, this.state); - this.enterRule(localContext, 490, PostgreSqlParser.RULE_opclass_purpose); + public operatorClassPurpose(): OperatorClassPurposeContext { + let localContext = new OperatorClassPurposeContext(this.context, this.state); + this.enterRule(localContext, 448, PostgreSqlParser.RULE_operatorClassPurpose); try { - this.state = 4389; + this.state = 4227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4382; + this.state = 4220; this.match(PostgreSqlParser.FOR); - this.state = 4383; + this.state = 4221; this.match(PostgreSqlParser.SEARCH); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4384; + this.state = 4222; this.match(PostgreSqlParser.FOR); - this.state = 4385; + this.state = 4223; this.match(PostgreSqlParser.ORDER); - this.state = 4386; + this.state = 4224; this.match(PostgreSqlParser.BY); - this.state = 4387; - this.any_name(); + this.state = 4225; + this.anyName(); } break; case 3: @@ -23493,64 +22332,23 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_recheck(): Opt_recheckContext { - let localContext = new Opt_recheckContext(this.context, this.state); - this.enterRule(localContext, 492, PostgreSqlParser.RULE_opt_recheck); - try { - this.state = 4393; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.RECHECK: - this.enterOuterAlt(localContext, 1); - { - this.state = 4391; - this.match(PostgreSqlParser.RECHECK); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 createopfamilystmt(): CreateopfamilystmtContext { - let localContext = new CreateopfamilystmtContext(this.context, this.state); - this.enterRule(localContext, 494, PostgreSqlParser.RULE_createopfamilystmt); + public createOperatorFamilyStatement(): CreateOperatorFamilyStatementContext { + let localContext = new CreateOperatorFamilyStatementContext(this.context, this.state); + this.enterRule(localContext, 450, PostgreSqlParser.RULE_createOperatorFamilyStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4395; + this.state = 4229; this.match(PostgreSqlParser.CREATE); - this.state = 4396; + this.state = 4230; this.match(PostgreSqlParser.OPERATOR); - this.state = 4397; + this.state = 4231; this.match(PostgreSqlParser.FAMILY); - this.state = 4398; - this.any_name(); - this.state = 4399; + this.state = 4232; + this.anyName(); + this.state = 4233; this.match(PostgreSqlParser.USING); - this.state = 4400; + this.state = 4234; this.name(); } } @@ -23568,53 +22366,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alteropfamilystmt(): AlteropfamilystmtContext { - let localContext = new AlteropfamilystmtContext(this.context, this.state); - this.enterRule(localContext, 496, PostgreSqlParser.RULE_alteropfamilystmt); + public alterOperatorFamilyStatement(): AlterOperatorFamilyStatementContext { + let localContext = new AlterOperatorFamilyStatementContext(this.context, this.state); + this.enterRule(localContext, 452, PostgreSqlParser.RULE_alterOperatorFamilyStatement); try { - this.state = 4420; + this.state = 4254; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4402; + this.state = 4236; this.match(PostgreSqlParser.ALTER); - this.state = 4403; + this.state = 4237; this.match(PostgreSqlParser.OPERATOR); - this.state = 4404; + this.state = 4238; this.match(PostgreSqlParser.FAMILY); - this.state = 4405; - this.any_name(); - this.state = 4406; + this.state = 4239; + this.anyName(); + this.state = 4240; this.match(PostgreSqlParser.USING); - this.state = 4407; + this.state = 4241; this.name(); - this.state = 4408; + this.state = 4242; this.match(PostgreSqlParser.ADD_P); - this.state = 4409; - this.opclass_item_list(); + this.state = 4243; + this.operatorClassItemList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4411; + this.state = 4245; this.match(PostgreSqlParser.ALTER); - this.state = 4412; + this.state = 4246; this.match(PostgreSqlParser.OPERATOR); - this.state = 4413; + this.state = 4247; this.match(PostgreSqlParser.FAMILY); - this.state = 4414; - this.any_name(); - this.state = 4415; + this.state = 4248; + this.anyName(); + this.state = 4249; this.match(PostgreSqlParser.USING); - this.state = 4416; + this.state = 4250; this.name(); - this.state = 4417; + this.state = 4251; this.match(PostgreSqlParser.DROP); - this.state = 4418; - this.opclass_drop_list(); + this.state = 4252; + this.operatorClassDropList(); } break; } @@ -23633,28 +22431,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opclass_drop_list(): Opclass_drop_listContext { - let localContext = new Opclass_drop_listContext(this.context, this.state); - this.enterRule(localContext, 498, PostgreSqlParser.RULE_opclass_drop_list); + public operatorClassDropList(): OperatorClassDropListContext { + let localContext = new OperatorClassDropListContext(this.context, this.state); + this.enterRule(localContext, 454, PostgreSqlParser.RULE_operatorClassDropList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; - this.opclass_drop(); - this.state = 4427; + this.state = 4256; + this.operatorClassDrop(); + this.state = 4261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4423; + this.state = 4257; this.match(PostgreSqlParser.COMMA); - this.state = 4424; - this.opclass_drop(); + this.state = 4258; + this.operatorClassDrop(); } } - this.state = 4429; + this.state = 4263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23674,40 +22472,40 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opclass_drop(): Opclass_dropContext { - let localContext = new Opclass_dropContext(this.context, this.state); - this.enterRule(localContext, 500, PostgreSqlParser.RULE_opclass_drop); + public operatorClassDrop(): OperatorClassDropContext { + let localContext = new OperatorClassDropContext(this.context, this.state); + this.enterRule(localContext, 456, PostgreSqlParser.RULE_operatorClassDrop); try { - this.state = 4442; + this.state = 4276; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 4430; + this.state = 4264; this.match(PostgreSqlParser.OPERATOR); - this.state = 4431; + this.state = 4265; this.iconst(); - this.state = 4432; + this.state = 4266; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4433; - this.type_list(); - this.state = 4434; + this.state = 4267; + this.typeList(); + this.state = 4268; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 4436; + this.state = 4270; this.match(PostgreSqlParser.FUNCTION); - this.state = 4437; + this.state = 4271; this.iconst(); - this.state = 4438; + this.state = 4272; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4439; - this.type_list(); - this.state = 4440; + this.state = 4273; + this.typeList(); + this.state = 4274; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -23729,53 +22527,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropopclassstmt(): DropopclassstmtContext { - let localContext = new DropopclassstmtContext(this.context, this.state); - this.enterRule(localContext, 502, PostgreSqlParser.RULE_dropopclassstmt); + public dropOperatorClassStatement(): DropOperatorClassStatementContext { + let localContext = new DropOperatorClassStatementContext(this.context, this.state); + this.enterRule(localContext, 458, PostgreSqlParser.RULE_dropOperatorClassStatement); try { - this.state = 4462; + this.state = 4296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4444; + this.state = 4278; this.match(PostgreSqlParser.DROP); - this.state = 4445; + this.state = 4279; this.match(PostgreSqlParser.OPERATOR); - this.state = 4446; + this.state = 4280; this.match(PostgreSqlParser.CLASS); - this.state = 4447; - this.any_name(); - this.state = 4448; + this.state = 4281; + this.anyName(); + this.state = 4282; this.match(PostgreSqlParser.USING); - this.state = 4449; + this.state = 4283; this.name(); - this.state = 4450; - this.opt_drop_behavior(); + this.state = 4284; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4452; + this.state = 4286; this.match(PostgreSqlParser.DROP); - this.state = 4453; + this.state = 4287; this.match(PostgreSqlParser.OPERATOR); - this.state = 4454; + this.state = 4288; this.match(PostgreSqlParser.CLASS); - this.state = 4455; + this.state = 4289; this.match(PostgreSqlParser.IF_P); - this.state = 4456; + this.state = 4290; this.match(PostgreSqlParser.EXISTS); - this.state = 4457; - this.any_name(); - this.state = 4458; + this.state = 4291; + this.anyName(); + this.state = 4292; this.match(PostgreSqlParser.USING); - this.state = 4459; + this.state = 4293; this.name(); - this.state = 4460; - this.opt_drop_behavior(); + this.state = 4294; + this.optionalDropBehavior(); } break; } @@ -23794,53 +22592,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropopfamilystmt(): DropopfamilystmtContext { - let localContext = new DropopfamilystmtContext(this.context, this.state); - this.enterRule(localContext, 504, PostgreSqlParser.RULE_dropopfamilystmt); + public dropOperatorFamilyStatement(): DropOperatorFamilyStatementContext { + let localContext = new DropOperatorFamilyStatementContext(this.context, this.state); + this.enterRule(localContext, 460, PostgreSqlParser.RULE_dropOperatorFamilyStatement); try { - this.state = 4482; + this.state = 4316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4464; + this.state = 4298; this.match(PostgreSqlParser.DROP); - this.state = 4465; + this.state = 4299; this.match(PostgreSqlParser.OPERATOR); - this.state = 4466; + this.state = 4300; this.match(PostgreSqlParser.FAMILY); - this.state = 4467; - this.any_name(); - this.state = 4468; + this.state = 4301; + this.anyName(); + this.state = 4302; this.match(PostgreSqlParser.USING); - this.state = 4469; + this.state = 4303; this.name(); - this.state = 4470; - this.opt_drop_behavior(); + this.state = 4304; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4472; + this.state = 4306; this.match(PostgreSqlParser.DROP); - this.state = 4473; + this.state = 4307; this.match(PostgreSqlParser.OPERATOR); - this.state = 4474; + this.state = 4308; this.match(PostgreSqlParser.FAMILY); - this.state = 4475; + this.state = 4309; this.match(PostgreSqlParser.IF_P); - this.state = 4476; + this.state = 4310; this.match(PostgreSqlParser.EXISTS); - this.state = 4477; - this.any_name(); - this.state = 4478; + this.state = 4311; + this.anyName(); + this.state = 4312; this.match(PostgreSqlParser.USING); - this.state = 4479; + this.state = 4313; this.name(); - this.state = 4480; - this.opt_drop_behavior(); + this.state = 4314; + this.optionalDropBehavior(); } break; } @@ -23859,22 +22657,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropownedstmt(): DropownedstmtContext { - let localContext = new DropownedstmtContext(this.context, this.state); - this.enterRule(localContext, 506, PostgreSqlParser.RULE_dropownedstmt); + public dropOwnedStatement(): DropOwnedStatementContext { + let localContext = new DropOwnedStatementContext(this.context, this.state); + this.enterRule(localContext, 462, PostgreSqlParser.RULE_dropOwnedStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4484; + this.state = 4318; this.match(PostgreSqlParser.DROP); - this.state = 4485; + this.state = 4319; this.match(PostgreSqlParser.OWNED); - this.state = 4486; + this.state = 4320; this.match(PostgreSqlParser.BY); - this.state = 4487; - this.role_list(); - this.state = 4488; - this.opt_drop_behavior(); + this.state = 4321; + this.roleList(); + this.state = 4322; + this.optionalDropBehavior(); } } catch (re) { @@ -23891,24 +22689,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reassignownedstmt(): ReassignownedstmtContext { - let localContext = new ReassignownedstmtContext(this.context, this.state); - this.enterRule(localContext, 508, PostgreSqlParser.RULE_reassignownedstmt); + public reassignOwnedStatement(): ReassignOwnedStatementContext { + let localContext = new ReassignOwnedStatementContext(this.context, this.state); + this.enterRule(localContext, 464, PostgreSqlParser.RULE_reassignOwnedStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4490; + this.state = 4324; this.match(PostgreSqlParser.REASSIGN); - this.state = 4491; + this.state = 4325; this.match(PostgreSqlParser.OWNED); - this.state = 4492; + this.state = 4326; this.match(PostgreSqlParser.BY); - this.state = 4493; - this.role_list(); - this.state = 4494; + this.state = 4327; + this.roleList(); + this.state = 4328; this.match(PostgreSqlParser.TO); - this.state = 4495; - this.rolespec(); + this.state = 4329; + this.roleSpecification(); } } catch (re) { @@ -23925,203 +22723,203 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropstmt(): DropstmtContext { - let localContext = new DropstmtContext(this.context, this.state); - this.enterRule(localContext, 510, PostgreSqlParser.RULE_dropstmt); + public dropStatement(): DropStatementContext { + let localContext = new DropStatementContext(this.context, this.state); + this.enterRule(localContext, 466, PostgreSqlParser.RULE_dropStatement); try { - this.state = 4575; + this.state = 4409; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4497; + this.state = 4331; this.match(PostgreSqlParser.DROP); - this.state = 4498; - this.object_type_any_name(); - this.state = 4499; + this.state = 4332; + this.objectTypeAnyName(); + this.state = 4333; this.match(PostgreSqlParser.IF_P); - this.state = 4500; + this.state = 4334; this.match(PostgreSqlParser.EXISTS); - this.state = 4501; - this.any_name_list(); - this.state = 4502; - this.opt_drop_behavior(); + this.state = 4335; + this.anyNameList(); + this.state = 4336; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4504; + this.state = 4338; this.match(PostgreSqlParser.DROP); - this.state = 4505; - this.object_type_any_name(); - this.state = 4506; - this.any_name_list(); - this.state = 4507; - this.opt_drop_behavior(); + this.state = 4339; + this.objectTypeAnyName(); + this.state = 4340; + this.anyNameList(); + this.state = 4341; + this.optionalDropBehavior(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4509; + this.state = 4343; this.match(PostgreSqlParser.DROP); - this.state = 4510; - this.drop_type_name(); - this.state = 4511; + this.state = 4344; + this.dropTypeName(); + this.state = 4345; this.match(PostgreSqlParser.IF_P); - this.state = 4512; + this.state = 4346; this.match(PostgreSqlParser.EXISTS); - this.state = 4513; - this.name_list(); - this.state = 4514; - this.opt_drop_behavior(); + this.state = 4347; + this.nameList(); + this.state = 4348; + this.optionalDropBehavior(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4516; + this.state = 4350; this.match(PostgreSqlParser.DROP); - this.state = 4517; - this.drop_type_name(); - this.state = 4518; - this.name_list(); - this.state = 4519; - this.opt_drop_behavior(); + this.state = 4351; + this.dropTypeName(); + this.state = 4352; + this.nameList(); + this.state = 4353; + this.optionalDropBehavior(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4521; + this.state = 4355; this.match(PostgreSqlParser.DROP); - this.state = 4522; - this.object_type_name_on_any_name(); - this.state = 4523; + this.state = 4356; + this.objectTypeNameOnAnyName(); + this.state = 4357; this.name(); - this.state = 4524; + this.state = 4358; this.match(PostgreSqlParser.ON); - this.state = 4525; - this.any_name(); - this.state = 4526; - this.opt_drop_behavior(); + this.state = 4359; + this.anyName(); + this.state = 4360; + this.optionalDropBehavior(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4528; + this.state = 4362; this.match(PostgreSqlParser.DROP); - this.state = 4529; - this.object_type_name_on_any_name(); - this.state = 4530; + this.state = 4363; + this.objectTypeNameOnAnyName(); + this.state = 4364; this.match(PostgreSqlParser.IF_P); - this.state = 4531; + this.state = 4365; this.match(PostgreSqlParser.EXISTS); - this.state = 4532; + this.state = 4366; this.name(); - this.state = 4533; + this.state = 4367; this.match(PostgreSqlParser.ON); - this.state = 4534; - this.any_name(); - this.state = 4535; - this.opt_drop_behavior(); + this.state = 4368; + this.anyName(); + this.state = 4369; + this.optionalDropBehavior(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4537; + this.state = 4371; this.match(PostgreSqlParser.DROP); - this.state = 4538; + this.state = 4372; this.match(PostgreSqlParser.TYPE_P); - this.state = 4539; - this.type_name_list(); - this.state = 4540; - this.opt_drop_behavior(); + this.state = 4373; + this.typeNameList(); + this.state = 4374; + this.optionalDropBehavior(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4542; + this.state = 4376; this.match(PostgreSqlParser.DROP); - this.state = 4543; + this.state = 4377; this.match(PostgreSqlParser.TYPE_P); - this.state = 4544; + this.state = 4378; this.match(PostgreSqlParser.IF_P); - this.state = 4545; + this.state = 4379; this.match(PostgreSqlParser.EXISTS); - this.state = 4546; - this.type_name_list(); - this.state = 4547; - this.opt_drop_behavior(); + this.state = 4380; + this.typeNameList(); + this.state = 4381; + this.optionalDropBehavior(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4549; + this.state = 4383; this.match(PostgreSqlParser.DROP); - this.state = 4550; + this.state = 4384; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 4551; - this.type_name_list(); - this.state = 4552; - this.opt_drop_behavior(); + this.state = 4385; + this.typeNameList(); + this.state = 4386; + this.optionalDropBehavior(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4554; + this.state = 4388; this.match(PostgreSqlParser.DROP); - this.state = 4555; + this.state = 4389; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 4556; + this.state = 4390; this.match(PostgreSqlParser.IF_P); - this.state = 4557; + this.state = 4391; this.match(PostgreSqlParser.EXISTS); - this.state = 4558; - this.type_name_list(); - this.state = 4559; - this.opt_drop_behavior(); + this.state = 4392; + this.typeNameList(); + this.state = 4393; + this.optionalDropBehavior(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4561; + this.state = 4395; this.match(PostgreSqlParser.DROP); - this.state = 4562; + this.state = 4396; this.match(PostgreSqlParser.INDEX); - this.state = 4563; + this.state = 4397; this.match(PostgreSqlParser.CONCURRENTLY); - this.state = 4564; - this.any_name_list(); - this.state = 4565; - this.opt_drop_behavior(); + this.state = 4398; + this.anyNameList(); + this.state = 4399; + this.optionalDropBehavior(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4567; + this.state = 4401; this.match(PostgreSqlParser.DROP); - this.state = 4568; + this.state = 4402; this.match(PostgreSqlParser.INDEX); - this.state = 4569; + this.state = 4403; this.match(PostgreSqlParser.CONCURRENTLY); - this.state = 4570; + this.state = 4404; this.match(PostgreSqlParser.IF_P); - this.state = 4571; + this.state = 4405; this.match(PostgreSqlParser.EXISTS); - this.state = 4572; - this.any_name_list(); - this.state = 4573; - this.opt_drop_behavior(); + this.state = 4406; + this.anyNameList(); + this.state = 4407; + this.optionalDropBehavior(); } break; } @@ -24140,121 +22938,121 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public object_type_any_name(): Object_type_any_nameContext { - let localContext = new Object_type_any_nameContext(this.context, this.state); - this.enterRule(localContext, 512, PostgreSqlParser.RULE_object_type_any_name); + public objectTypeAnyName(): ObjectTypeAnyNameContext { + let localContext = new ObjectTypeAnyNameContext(this.context, this.state); + this.enterRule(localContext, 468, PostgreSqlParser.RULE_objectTypeAnyName); try { - this.state = 4600; + this.state = 4434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4577; + this.state = 4411; this.match(PostgreSqlParser.TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4578; + this.state = 4412; this.match(PostgreSqlParser.SEQUENCE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4579; + this.state = 4413; this.match(PostgreSqlParser.VIEW); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4580; + this.state = 4414; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 4581; + this.state = 4415; this.match(PostgreSqlParser.VIEW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4582; + this.state = 4416; this.match(PostgreSqlParser.INDEX); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4583; + this.state = 4417; this.match(PostgreSqlParser.FOREIGN); - this.state = 4584; + this.state = 4418; this.match(PostgreSqlParser.TABLE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4585; + this.state = 4419; this.match(PostgreSqlParser.COLLATION); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4586; + this.state = 4420; this.match(PostgreSqlParser.CONVERSION_P); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4587; + this.state = 4421; this.match(PostgreSqlParser.STATISTICS); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4588; + this.state = 4422; this.match(PostgreSqlParser.TEXT_P); - this.state = 4589; + this.state = 4423; this.match(PostgreSqlParser.SEARCH); - this.state = 4590; + this.state = 4424; this.match(PostgreSqlParser.PARSER); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4591; + this.state = 4425; this.match(PostgreSqlParser.TEXT_P); - this.state = 4592; + this.state = 4426; this.match(PostgreSqlParser.SEARCH); - this.state = 4593; + this.state = 4427; this.match(PostgreSqlParser.DICTIONARY); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4594; + this.state = 4428; this.match(PostgreSqlParser.TEXT_P); - this.state = 4595; + this.state = 4429; this.match(PostgreSqlParser.SEARCH); - this.state = 4596; + this.state = 4430; this.match(PostgreSqlParser.TEMPLATE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4597; + this.state = 4431; this.match(PostgreSqlParser.TEXT_P); - this.state = 4598; + this.state = 4432; this.match(PostgreSqlParser.SEARCH); - this.state = 4599; + this.state = 4433; this.match(PostgreSqlParser.CONFIGURATION); } break; @@ -24274,11 +23072,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public object_type_name(): Object_type_nameContext { - let localContext = new Object_type_nameContext(this.context, this.state); - this.enterRule(localContext, 514, PostgreSqlParser.RULE_object_type_name); + public objectTypeName(): ObjectTypeNameContext { + let localContext = new ObjectTypeNameContext(this.context, this.state); + this.enterRule(localContext, 470, PostgreSqlParser.RULE_objectTypeName); try { - this.state = 4607; + this.state = 4441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FOREIGN: @@ -24292,35 +23090,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 4602; - this.drop_type_name(); + this.state = 4436; + this.dropTypeName(); } break; case PostgreSqlParser.DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 4603; + this.state = 4437; this.match(PostgreSqlParser.DATABASE); } break; case PostgreSqlParser.ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 4604; + this.state = 4438; this.match(PostgreSqlParser.ROLE); } break; case PostgreSqlParser.SUBSCRIPTION: this.enterOuterAlt(localContext, 4); { - this.state = 4605; + this.state = 4439; this.match(PostgreSqlParser.SUBSCRIPTION); } break; case PostgreSqlParser.TABLESPACE: this.enterOuterAlt(localContext, 5); { - this.state = 4606; + this.state = 4440; this.match(PostgreSqlParser.TABLESPACE); } break; @@ -24342,46 +23140,46 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public drop_type_name(): Drop_type_nameContext { - let localContext = new Drop_type_nameContext(this.context, this.state); - this.enterRule(localContext, 516, PostgreSqlParser.RULE_drop_type_name); + public dropTypeName(): DropTypeNameContext { + let localContext = new DropTypeNameContext(this.context, this.state); + this.enterRule(localContext, 472, PostgreSqlParser.RULE_dropTypeName); try { - this.state = 4623; + this.state = 4457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.ACCESS: this.enterOuterAlt(localContext, 1); { - this.state = 4609; + this.state = 4443; this.match(PostgreSqlParser.ACCESS); - this.state = 4610; + this.state = 4444; this.match(PostgreSqlParser.METHOD); } break; case PostgreSqlParser.EVENT: this.enterOuterAlt(localContext, 2); { - this.state = 4611; + this.state = 4445; this.match(PostgreSqlParser.EVENT); - this.state = 4612; + this.state = 4446; this.match(PostgreSqlParser.TRIGGER); } break; case PostgreSqlParser.EXTENSION: this.enterOuterAlt(localContext, 3); { - this.state = 4613; + this.state = 4447; this.match(PostgreSqlParser.EXTENSION); } break; case PostgreSqlParser.FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 4614; + this.state = 4448; this.match(PostgreSqlParser.FOREIGN); - this.state = 4615; + this.state = 4449; this.match(PostgreSqlParser.DATA_P); - this.state = 4616; + this.state = 4450; this.match(PostgreSqlParser.WRAPPER); } break; @@ -24389,30 +23187,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PROCEDURAL: this.enterOuterAlt(localContext, 5); { - this.state = 4617; - this.opt_procedural(); - this.state = 4618; + this.state = 4451; + this.optionalProcedural(); + this.state = 4452; this.match(PostgreSqlParser.LANGUAGE); } break; case PostgreSqlParser.PUBLICATION: this.enterOuterAlt(localContext, 6); { - this.state = 4620; + this.state = 4454; this.match(PostgreSqlParser.PUBLICATION); } break; case PostgreSqlParser.SCHEMA: this.enterOuterAlt(localContext, 7); { - this.state = 4621; + this.state = 4455; this.match(PostgreSqlParser.SCHEMA); } break; case PostgreSqlParser.SERVER: this.enterOuterAlt(localContext, 8); { - this.state = 4622; + this.state = 4456; this.match(PostgreSqlParser.SERVER); } break; @@ -24434,14 +23232,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public object_type_name_on_any_name(): Object_type_name_on_any_nameContext { - let localContext = new Object_type_name_on_any_nameContext(this.context, this.state); - this.enterRule(localContext, 518, PostgreSqlParser.RULE_object_type_name_on_any_name); + public objectTypeNameOnAnyName(): ObjectTypeNameOnAnyNameContext { + let localContext = new ObjectTypeNameOnAnyNameContext(this.context, this.state); + this.enterRule(localContext, 474, PostgreSqlParser.RULE_objectTypeNameOnAnyName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4625; + this.state = 4459; _la = this.tokenStream.LA(1); if(!(_la === 314 || _la === 350 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -24466,28 +23264,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public any_name_list(): Any_name_listContext { - let localContext = new Any_name_listContext(this.context, this.state); - this.enterRule(localContext, 520, PostgreSqlParser.RULE_any_name_list); + public anyNameList(): AnyNameListContext { + let localContext = new AnyNameListContext(this.context, this.state); + this.enterRule(localContext, 476, PostgreSqlParser.RULE_anyNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4627; - this.any_name(); - this.state = 4632; + this.state = 4461; + this.anyName(); + this.state = 4466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4628; + this.state = 4462; this.match(PostgreSqlParser.COMMA); - this.state = 4629; - this.any_name(); + this.state = 4463; + this.anyName(); } } - this.state = 4634; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24507,22 +23305,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public any_name(): Any_nameContext { - let localContext = new Any_nameContext(this.context, this.state); - this.enterRule(localContext, 522, PostgreSqlParser.RULE_any_name); + public anyName(): AnyNameContext { + let localContext = new AnyNameContext(this.context, this.state); + this.enterRule(localContext, 478, PostgreSqlParser.RULE_anyName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4635; - this.colid(); - this.state = 4637; + this.state = 4469; + this.columnId(); + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4636; - this.attrs(); + this.state = 4470; + this.attributes(); } } @@ -24542,14 +23340,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public attrs(): AttrsContext { - let localContext = new AttrsContext(this.context, this.state); - this.enterRule(localContext, 524, PostgreSqlParser.RULE_attrs); + public attributes(): AttributesContext { + let localContext = new AttributesContext(this.context, this.state); + this.enterRule(localContext, 480, PostgreSqlParser.RULE_attributes); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4641; + this.state = 4475; this.errorHandler.sync(this); alternative = 1; do { @@ -24557,19 +23355,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 1: { { - this.state = 4639; + this.state = 4473; this.match(PostgreSqlParser.DOT); - this.state = 4640; - this.attr_name(); + this.state = 4474; + this.attributeName(); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4643; + this.state = 4477; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 225, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -24587,28 +23385,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public type_name_list(): Type_name_listContext { - let localContext = new Type_name_listContext(this.context, this.state); - this.enterRule(localContext, 526, PostgreSqlParser.RULE_type_name_list); + public typeNameList(): TypeNameListContext { + let localContext = new TypeNameListContext(this.context, this.state); + this.enterRule(localContext, 482, PostgreSqlParser.RULE_typeNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4645; - this.typename(); - this.state = 4650; + this.state = 4479; + this.typeName(); + this.state = 4484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4646; + this.state = 4480; this.match(PostgreSqlParser.COMMA); - this.state = 4647; - this.typename(); + this.state = 4481; + this.typeName(); } } - this.state = 4652; + this.state = 4486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24628,22 +23426,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public truncatestmt(): TruncatestmtContext { - let localContext = new TruncatestmtContext(this.context, this.state); - this.enterRule(localContext, 528, PostgreSqlParser.RULE_truncatestmt); + public truncateStatement(): TruncateStatementContext { + let localContext = new TruncateStatementContext(this.context, this.state); + this.enterRule(localContext, 484, PostgreSqlParser.RULE_truncateStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4653; + this.state = 4487; this.match(PostgreSqlParser.TRUNCATE); - this.state = 4654; - this.opt_table(); - this.state = 4655; - this.relation_expr_list(); - this.state = 4656; - this.opt_restart_seqs(); - this.state = 4657; - this.opt_drop_behavior(); + this.state = 4488; + this.optionalTable(); + this.state = 4489; + this.relationExpressionList(); + this.state = 4490; + this.optionalRestartSequences(); + this.state = 4491; + this.optionalDropBehavior(); } } catch (re) { @@ -24660,28 +23458,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_restart_seqs(): Opt_restart_seqsContext { - let localContext = new Opt_restart_seqsContext(this.context, this.state); - this.enterRule(localContext, 530, PostgreSqlParser.RULE_opt_restart_seqs); + public optionalRestartSequences(): OptionalRestartSequencesContext { + let localContext = new OptionalRestartSequencesContext(this.context, this.state); + this.enterRule(localContext, 486, PostgreSqlParser.RULE_optionalRestartSequences); try { - this.state = 4664; + this.state = 4498; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CONTINUE_P: this.enterOuterAlt(localContext, 1); { - this.state = 4659; + this.state = 4493; this.match(PostgreSqlParser.CONTINUE_P); - this.state = 4660; + this.state = 4494; this.match(PostgreSqlParser.IDENTITY_P); } break; case PostgreSqlParser.RESTART: this.enterOuterAlt(localContext, 2); { - this.state = 4661; + this.state = 4495; this.match(PostgreSqlParser.RESTART); - this.state = 4662; + this.state = 4496; this.match(PostgreSqlParser.IDENTITY_P); } break; @@ -24713,359 +23511,359 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public commentstmt(): CommentstmtContext { - let localContext = new CommentstmtContext(this.context, this.state); - this.enterRule(localContext, 532, PostgreSqlParser.RULE_commentstmt); + public commentStatement(): CommentStatementContext { + let localContext = new CommentStatementContext(this.context, this.state); + this.enterRule(localContext, 488, PostgreSqlParser.RULE_commentStatement); try { - this.state = 4813; + this.state = 4647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4666; + this.state = 4500; this.match(PostgreSqlParser.COMMENT); - this.state = 4667; + this.state = 4501; this.match(PostgreSqlParser.ON); - this.state = 4668; - this.object_type_any_name(); - this.state = 4669; - this.any_name(); - this.state = 4670; + this.state = 4502; + this.objectTypeAnyName(); + this.state = 4503; + this.anyName(); + this.state = 4504; this.match(PostgreSqlParser.IS); - this.state = 4671; - this.comment_text(); + this.state = 4505; + this.commentText(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4673; + this.state = 4507; this.match(PostgreSqlParser.COMMENT); - this.state = 4674; + this.state = 4508; this.match(PostgreSqlParser.ON); - this.state = 4675; + this.state = 4509; this.match(PostgreSqlParser.COLUMN); - this.state = 4676; - this.any_name(); - this.state = 4677; + this.state = 4510; + this.anyName(); + this.state = 4511; this.match(PostgreSqlParser.IS); - this.state = 4678; - this.comment_text(); + this.state = 4512; + this.commentText(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4680; + this.state = 4514; this.match(PostgreSqlParser.COMMENT); - this.state = 4681; + this.state = 4515; this.match(PostgreSqlParser.ON); - this.state = 4682; - this.object_type_name(); - this.state = 4683; + this.state = 4516; + this.objectTypeName(); + this.state = 4517; this.name(); - this.state = 4684; + this.state = 4518; this.match(PostgreSqlParser.IS); - this.state = 4685; - this.comment_text(); + this.state = 4519; + this.commentText(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4687; + this.state = 4521; this.match(PostgreSqlParser.COMMENT); - this.state = 4688; + this.state = 4522; this.match(PostgreSqlParser.ON); - this.state = 4689; + this.state = 4523; this.match(PostgreSqlParser.TYPE_P); - this.state = 4690; - this.typename(); - this.state = 4691; + this.state = 4524; + this.typeName(); + this.state = 4525; this.match(PostgreSqlParser.IS); - this.state = 4692; - this.comment_text(); + this.state = 4526; + this.commentText(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4694; + this.state = 4528; this.match(PostgreSqlParser.COMMENT); - this.state = 4695; + this.state = 4529; this.match(PostgreSqlParser.ON); - this.state = 4696; + this.state = 4530; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 4697; - this.typename(); - this.state = 4698; + this.state = 4531; + this.typeName(); + this.state = 4532; this.match(PostgreSqlParser.IS); - this.state = 4699; - this.comment_text(); + this.state = 4533; + this.commentText(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4701; + this.state = 4535; this.match(PostgreSqlParser.COMMENT); - this.state = 4702; + this.state = 4536; this.match(PostgreSqlParser.ON); - this.state = 4703; + this.state = 4537; this.match(PostgreSqlParser.AGGREGATE); - this.state = 4704; - this.aggregate_with_argtypes(); - this.state = 4705; + this.state = 4538; + this.aggregateWithArgumentTypes(); + this.state = 4539; this.match(PostgreSqlParser.IS); - this.state = 4706; - this.comment_text(); + this.state = 4540; + this.commentText(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4708; + this.state = 4542; this.match(PostgreSqlParser.COMMENT); - this.state = 4709; + this.state = 4543; this.match(PostgreSqlParser.ON); - this.state = 4710; + this.state = 4544; this.match(PostgreSqlParser.FUNCTION); - this.state = 4711; - this.function_with_argtypes(); - this.state = 4712; + this.state = 4545; + this.functionWithArgumentTypes(); + this.state = 4546; this.match(PostgreSqlParser.IS); - this.state = 4713; - this.comment_text(); + this.state = 4547; + this.commentText(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4715; + this.state = 4549; this.match(PostgreSqlParser.COMMENT); - this.state = 4716; + this.state = 4550; this.match(PostgreSqlParser.ON); - this.state = 4717; + this.state = 4551; this.match(PostgreSqlParser.OPERATOR); - this.state = 4718; - this.operator_with_argtypes(); - this.state = 4719; + this.state = 4552; + this.operatorWithArgumentTypes(); + this.state = 4553; this.match(PostgreSqlParser.IS); - this.state = 4720; - this.comment_text(); + this.state = 4554; + this.commentText(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4722; + this.state = 4556; this.match(PostgreSqlParser.COMMENT); - this.state = 4723; + this.state = 4557; this.match(PostgreSqlParser.ON); - this.state = 4724; + this.state = 4558; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 4725; + this.state = 4559; this.name(); - this.state = 4726; + this.state = 4560; this.match(PostgreSqlParser.ON); - this.state = 4727; - this.any_name(); - this.state = 4728; + this.state = 4561; + this.anyName(); + this.state = 4562; this.match(PostgreSqlParser.IS); - this.state = 4729; - this.comment_text(); + this.state = 4563; + this.commentText(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4731; + this.state = 4565; this.match(PostgreSqlParser.COMMENT); - this.state = 4732; + this.state = 4566; this.match(PostgreSqlParser.ON); - this.state = 4733; + this.state = 4567; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 4734; + this.state = 4568; this.name(); - this.state = 4735; + this.state = 4569; this.match(PostgreSqlParser.ON); - this.state = 4736; + this.state = 4570; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 4737; - this.any_name(); - this.state = 4738; + this.state = 4571; + this.anyName(); + this.state = 4572; this.match(PostgreSqlParser.IS); - this.state = 4739; - this.comment_text(); + this.state = 4573; + this.commentText(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4741; + this.state = 4575; this.match(PostgreSqlParser.COMMENT); - this.state = 4742; + this.state = 4576; this.match(PostgreSqlParser.ON); - this.state = 4743; - this.object_type_name_on_any_name(); - this.state = 4744; + this.state = 4577; + this.objectTypeNameOnAnyName(); + this.state = 4578; this.name(); - this.state = 4745; + this.state = 4579; this.match(PostgreSqlParser.ON); - this.state = 4746; - this.any_name(); - this.state = 4747; + this.state = 4580; + this.anyName(); + this.state = 4581; this.match(PostgreSqlParser.IS); - this.state = 4748; - this.comment_text(); + this.state = 4582; + this.commentText(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4750; + this.state = 4584; this.match(PostgreSqlParser.COMMENT); - this.state = 4751; + this.state = 4585; this.match(PostgreSqlParser.ON); - this.state = 4752; + this.state = 4586; this.match(PostgreSqlParser.PROCEDURE); - this.state = 4753; - this.function_with_argtypes(); - this.state = 4754; + this.state = 4587; + this.functionWithArgumentTypes(); + this.state = 4588; this.match(PostgreSqlParser.IS); - this.state = 4755; - this.comment_text(); + this.state = 4589; + this.commentText(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4757; + this.state = 4591; this.match(PostgreSqlParser.COMMENT); - this.state = 4758; + this.state = 4592; this.match(PostgreSqlParser.ON); - this.state = 4759; + this.state = 4593; this.match(PostgreSqlParser.ROUTINE); - this.state = 4760; - this.function_with_argtypes(); - this.state = 4761; + this.state = 4594; + this.functionWithArgumentTypes(); + this.state = 4595; this.match(PostgreSqlParser.IS); - this.state = 4762; - this.comment_text(); + this.state = 4596; + this.commentText(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4764; + this.state = 4598; this.match(PostgreSqlParser.COMMENT); - this.state = 4765; + this.state = 4599; this.match(PostgreSqlParser.ON); - this.state = 4766; + this.state = 4600; this.match(PostgreSqlParser.TRANSFORM); - this.state = 4767; + this.state = 4601; this.match(PostgreSqlParser.FOR); - this.state = 4768; - this.typename(); - this.state = 4769; + this.state = 4602; + this.typeName(); + this.state = 4603; this.match(PostgreSqlParser.LANGUAGE); - this.state = 4770; + this.state = 4604; this.name(); - this.state = 4771; + this.state = 4605; this.match(PostgreSqlParser.IS); - this.state = 4772; - this.comment_text(); + this.state = 4606; + this.commentText(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4774; + this.state = 4608; this.match(PostgreSqlParser.COMMENT); - this.state = 4775; + this.state = 4609; this.match(PostgreSqlParser.ON); - this.state = 4776; + this.state = 4610; this.match(PostgreSqlParser.OPERATOR); - this.state = 4777; + this.state = 4611; this.match(PostgreSqlParser.CLASS); - this.state = 4778; - this.any_name(); - this.state = 4779; + this.state = 4612; + this.anyName(); + this.state = 4613; this.match(PostgreSqlParser.USING); - this.state = 4780; + this.state = 4614; this.name(); - this.state = 4781; + this.state = 4615; this.match(PostgreSqlParser.IS); - this.state = 4782; - this.comment_text(); + this.state = 4616; + this.commentText(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4784; + this.state = 4618; this.match(PostgreSqlParser.COMMENT); - this.state = 4785; + this.state = 4619; this.match(PostgreSqlParser.ON); - this.state = 4786; + this.state = 4620; this.match(PostgreSqlParser.OPERATOR); - this.state = 4787; + this.state = 4621; this.match(PostgreSqlParser.FAMILY); - this.state = 4788; - this.any_name(); - this.state = 4789; + this.state = 4622; + this.anyName(); + this.state = 4623; this.match(PostgreSqlParser.USING); - this.state = 4790; + this.state = 4624; this.name(); - this.state = 4791; + this.state = 4625; this.match(PostgreSqlParser.IS); - this.state = 4792; - this.comment_text(); + this.state = 4626; + this.commentText(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 4794; + this.state = 4628; this.match(PostgreSqlParser.COMMENT); - this.state = 4795; + this.state = 4629; this.match(PostgreSqlParser.ON); - this.state = 4796; + this.state = 4630; this.match(PostgreSqlParser.LARGE_P); - this.state = 4797; + this.state = 4631; this.match(PostgreSqlParser.OBJECT_P); - this.state = 4798; - this.numericonly(); - this.state = 4799; + this.state = 4632; + this.numericOnly(); + this.state = 4633; this.match(PostgreSqlParser.IS); - this.state = 4800; - this.comment_text(); + this.state = 4634; + this.commentText(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 4802; + this.state = 4636; this.match(PostgreSqlParser.COMMENT); - this.state = 4803; + this.state = 4637; this.match(PostgreSqlParser.ON); - this.state = 4804; + this.state = 4638; this.match(PostgreSqlParser.CAST); - this.state = 4805; + this.state = 4639; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4806; - this.typename(); - this.state = 4807; + this.state = 4640; + this.typeName(); + this.state = 4641; this.match(PostgreSqlParser.AS); - this.state = 4808; - this.typename(); - this.state = 4809; + this.state = 4642; + this.typeName(); + this.state = 4643; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4810; + this.state = 4644; this.match(PostgreSqlParser.IS); - this.state = 4811; - this.comment_text(); + this.state = 4645; + this.commentText(); } break; } @@ -25084,11 +23882,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public comment_text(): Comment_textContext { - let localContext = new Comment_textContext(this.context, this.state); - this.enterRule(localContext, 534, PostgreSqlParser.RULE_comment_text); + public commentText(): CommentTextContext { + let localContext = new CommentTextContext(this.context, this.state); + this.enterRule(localContext, 490, PostgreSqlParser.RULE_commentText); try { - this.state = 4817; + this.state = 4651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -25097,14 +23895,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 4815; + this.state = 4649; this.sconst(); } break; case PostgreSqlParser.NULL_P: this.enterOuterAlt(localContext, 2); { - this.state = 4816; + this.state = 4650; this.match(PostgreSqlParser.NULL_P); } break; @@ -25126,223 +23924,223 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public seclabelstmt(): SeclabelstmtContext { - let localContext = new SeclabelstmtContext(this.context, this.state); - this.enterRule(localContext, 536, PostgreSqlParser.RULE_seclabelstmt); + public securityLabelStatement(): SecurityLabelStatementContext { + let localContext = new SecurityLabelStatementContext(this.context, this.state); + this.enterRule(localContext, 492, PostgreSqlParser.RULE_securityLabelStatement); try { - this.state = 4910; + this.state = 4744; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4819; + this.state = 4653; this.match(PostgreSqlParser.SECURITY); - this.state = 4820; + this.state = 4654; this.match(PostgreSqlParser.LABEL); - this.state = 4821; - this.opt_provider(); - this.state = 4822; + this.state = 4655; + this.optionalProvider(); + this.state = 4656; this.match(PostgreSqlParser.ON); - this.state = 4823; - this.object_type_any_name(); - this.state = 4824; - this.any_name(); - this.state = 4825; + this.state = 4657; + this.objectTypeAnyName(); + this.state = 4658; + this.anyName(); + this.state = 4659; this.match(PostgreSqlParser.IS); - this.state = 4826; - this.security_label(); + this.state = 4660; + this.securityLabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4828; + this.state = 4662; this.match(PostgreSqlParser.SECURITY); - this.state = 4829; + this.state = 4663; this.match(PostgreSqlParser.LABEL); - this.state = 4830; - this.opt_provider(); - this.state = 4831; + this.state = 4664; + this.optionalProvider(); + this.state = 4665; this.match(PostgreSqlParser.ON); - this.state = 4832; + this.state = 4666; this.match(PostgreSqlParser.COLUMN); - this.state = 4833; - this.any_name(); - this.state = 4834; + this.state = 4667; + this.anyName(); + this.state = 4668; this.match(PostgreSqlParser.IS); - this.state = 4835; - this.security_label(); + this.state = 4669; + this.securityLabel(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4837; + this.state = 4671; this.match(PostgreSqlParser.SECURITY); - this.state = 4838; + this.state = 4672; this.match(PostgreSqlParser.LABEL); - this.state = 4839; - this.opt_provider(); - this.state = 4840; + this.state = 4673; + this.optionalProvider(); + this.state = 4674; this.match(PostgreSqlParser.ON); - this.state = 4841; - this.object_type_name(); - this.state = 4842; + this.state = 4675; + this.objectTypeName(); + this.state = 4676; this.name(); - this.state = 4843; + this.state = 4677; this.match(PostgreSqlParser.IS); - this.state = 4844; - this.security_label(); + this.state = 4678; + this.securityLabel(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4846; + this.state = 4680; this.match(PostgreSqlParser.SECURITY); - this.state = 4847; + this.state = 4681; this.match(PostgreSqlParser.LABEL); - this.state = 4848; - this.opt_provider(); - this.state = 4849; + this.state = 4682; + this.optionalProvider(); + this.state = 4683; this.match(PostgreSqlParser.ON); - this.state = 4850; + this.state = 4684; this.match(PostgreSqlParser.TYPE_P); - this.state = 4851; - this.typename(); - this.state = 4852; + this.state = 4685; + this.typeName(); + this.state = 4686; this.match(PostgreSqlParser.IS); - this.state = 4853; - this.security_label(); + this.state = 4687; + this.securityLabel(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4855; + this.state = 4689; this.match(PostgreSqlParser.SECURITY); - this.state = 4856; + this.state = 4690; this.match(PostgreSqlParser.LABEL); - this.state = 4857; - this.opt_provider(); - this.state = 4858; + this.state = 4691; + this.optionalProvider(); + this.state = 4692; this.match(PostgreSqlParser.ON); - this.state = 4859; + this.state = 4693; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 4860; - this.typename(); - this.state = 4861; + this.state = 4694; + this.typeName(); + this.state = 4695; this.match(PostgreSqlParser.IS); - this.state = 4862; - this.security_label(); + this.state = 4696; + this.securityLabel(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4864; + this.state = 4698; this.match(PostgreSqlParser.SECURITY); - this.state = 4865; + this.state = 4699; this.match(PostgreSqlParser.LABEL); - this.state = 4866; - this.opt_provider(); - this.state = 4867; + this.state = 4700; + this.optionalProvider(); + this.state = 4701; this.match(PostgreSqlParser.ON); - this.state = 4868; + this.state = 4702; this.match(PostgreSqlParser.AGGREGATE); - this.state = 4869; - this.aggregate_with_argtypes(); - this.state = 4870; + this.state = 4703; + this.aggregateWithArgumentTypes(); + this.state = 4704; this.match(PostgreSqlParser.IS); - this.state = 4871; - this.security_label(); + this.state = 4705; + this.securityLabel(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4873; + this.state = 4707; this.match(PostgreSqlParser.SECURITY); - this.state = 4874; + this.state = 4708; this.match(PostgreSqlParser.LABEL); - this.state = 4875; - this.opt_provider(); - this.state = 4876; + this.state = 4709; + this.optionalProvider(); + this.state = 4710; this.match(PostgreSqlParser.ON); - this.state = 4877; + this.state = 4711; this.match(PostgreSqlParser.FUNCTION); - this.state = 4878; - this.function_with_argtypes(); - this.state = 4879; + this.state = 4712; + this.functionWithArgumentTypes(); + this.state = 4713; this.match(PostgreSqlParser.IS); - this.state = 4880; - this.security_label(); + this.state = 4714; + this.securityLabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4882; + this.state = 4716; this.match(PostgreSqlParser.SECURITY); - this.state = 4883; + this.state = 4717; this.match(PostgreSqlParser.LABEL); - this.state = 4884; - this.opt_provider(); - this.state = 4885; + this.state = 4718; + this.optionalProvider(); + this.state = 4719; this.match(PostgreSqlParser.ON); - this.state = 4886; + this.state = 4720; this.match(PostgreSqlParser.LARGE_P); - this.state = 4887; + this.state = 4721; this.match(PostgreSqlParser.OBJECT_P); - this.state = 4888; - this.numericonly(); - this.state = 4889; + this.state = 4722; + this.numericOnly(); + this.state = 4723; this.match(PostgreSqlParser.IS); - this.state = 4890; - this.security_label(); + this.state = 4724; + this.securityLabel(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4892; + this.state = 4726; this.match(PostgreSqlParser.SECURITY); - this.state = 4893; + this.state = 4727; this.match(PostgreSqlParser.LABEL); - this.state = 4894; - this.opt_provider(); - this.state = 4895; + this.state = 4728; + this.optionalProvider(); + this.state = 4729; this.match(PostgreSqlParser.ON); - this.state = 4896; + this.state = 4730; this.match(PostgreSqlParser.PROCEDURE); - this.state = 4897; - this.function_with_argtypes(); - this.state = 4898; + this.state = 4731; + this.functionWithArgumentTypes(); + this.state = 4732; this.match(PostgreSqlParser.IS); - this.state = 4899; - this.security_label(); + this.state = 4733; + this.securityLabel(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4901; + this.state = 4735; this.match(PostgreSqlParser.SECURITY); - this.state = 4902; + this.state = 4736; this.match(PostgreSqlParser.LABEL); - this.state = 4903; - this.opt_provider(); - this.state = 4904; + this.state = 4737; + this.optionalProvider(); + this.state = 4738; this.match(PostgreSqlParser.ON); - this.state = 4905; + this.state = 4739; this.match(PostgreSqlParser.ROUTINE); - this.state = 4906; - this.function_with_argtypes(); - this.state = 4907; + this.state = 4740; + this.functionWithArgumentTypes(); + this.state = 4741; this.match(PostgreSqlParser.IS); - this.state = 4908; - this.security_label(); + this.state = 4742; + this.securityLabel(); } break; } @@ -25361,20 +24159,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_provider(): Opt_providerContext { - let localContext = new Opt_providerContext(this.context, this.state); - this.enterRule(localContext, 538, PostgreSqlParser.RULE_opt_provider); + public optionalProvider(): OptionalProviderContext { + let localContext = new OptionalProviderContext(this.context, this.state); + this.enterRule(localContext, 494, PostgreSqlParser.RULE_optionalProvider); try { - this.state = 4915; + this.state = 4749; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FOR: this.enterOuterAlt(localContext, 1); { - this.state = 4912; + this.state = 4746; this.match(PostgreSqlParser.FOR); - this.state = 4913; - this.nonreservedword_or_sconst(); + this.state = 4747; + this.nonReservedWordOrSconst(); } break; case PostgreSqlParser.ON: @@ -25401,11 +24199,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public security_label(): Security_labelContext { - let localContext = new Security_labelContext(this.context, this.state); - this.enterRule(localContext, 540, PostgreSqlParser.RULE_security_label); + public securityLabel(): SecurityLabelContext { + let localContext = new SecurityLabelContext(this.context, this.state); + this.enterRule(localContext, 496, PostgreSqlParser.RULE_securityLabel); try { - this.state = 4919; + this.state = 4753; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -25414,14 +24212,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 4917; + this.state = 4751; this.sconst(); } break; case PostgreSqlParser.NULL_P: this.enterOuterAlt(localContext, 2); { - this.state = 4918; + this.state = 4752; this.match(PostgreSqlParser.NULL_P); } break; @@ -25443,29 +24241,29 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public fetchstmt(): FetchstmtContext { - let localContext = new FetchstmtContext(this.context, this.state); - this.enterRule(localContext, 542, PostgreSqlParser.RULE_fetchstmt); + public fetchStatement(): FetchStatementContext { + let localContext = new FetchStatementContext(this.context, this.state); + this.enterRule(localContext, 498, PostgreSqlParser.RULE_fetchStatement); try { - this.state = 4925; + this.state = 4759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FETCH: this.enterOuterAlt(localContext, 1); { - this.state = 4921; + this.state = 4755; this.match(PostgreSqlParser.FETCH); - this.state = 4922; - this.fetch_args(); + this.state = 4756; + this.fetchArguments(); } break; case PostgreSqlParser.MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4923; + this.state = 4757; this.match(PostgreSqlParser.MOVE); - this.state = 4924; - this.fetch_args(); + this.state = 4758; + this.fetchArguments(); } break; default: @@ -25486,193 +24284,193 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public fetch_args(): Fetch_argsContext { - let localContext = new Fetch_argsContext(this.context, this.state); - this.enterRule(localContext, 544, PostgreSqlParser.RULE_fetch_args); + public fetchArguments(): FetchArgumentsContext { + let localContext = new FetchArgumentsContext(this.context, this.state); + this.enterRule(localContext, 500, PostgreSqlParser.RULE_fetchArguments); try { - this.state = 4993; + this.state = 4827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4927; - this.cursor_name(); + this.state = 4761; + this.cursorName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4928; - this.from_in(); - this.state = 4929; - this.cursor_name(); + this.state = 4762; + this.fromOrIn(); + this.state = 4763; + this.cursorName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4931; + this.state = 4765; this.match(PostgreSqlParser.NEXT); - this.state = 4932; - this.opt_from_in(); - this.state = 4933; - this.cursor_name(); + this.state = 4766; + this.optionalFromOrIn(); + this.state = 4767; + this.cursorName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4935; + this.state = 4769; this.match(PostgreSqlParser.PRIOR); - this.state = 4936; - this.opt_from_in(); - this.state = 4937; - this.cursor_name(); + this.state = 4770; + this.optionalFromOrIn(); + this.state = 4771; + this.cursorName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4939; + this.state = 4773; this.match(PostgreSqlParser.FIRST_P); - this.state = 4940; - this.opt_from_in(); - this.state = 4941; - this.cursor_name(); + this.state = 4774; + this.optionalFromOrIn(); + this.state = 4775; + this.cursorName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4943; + this.state = 4777; this.match(PostgreSqlParser.LAST_P); - this.state = 4944; - this.opt_from_in(); - this.state = 4945; - this.cursor_name(); + this.state = 4778; + this.optionalFromOrIn(); + this.state = 4779; + this.cursorName(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4947; + this.state = 4781; this.match(PostgreSqlParser.ABSOLUTE_P); - this.state = 4948; - this.signediconst(); - this.state = 4949; - this.opt_from_in(); - this.state = 4950; - this.cursor_name(); + this.state = 4782; + this.signedIconst(); + this.state = 4783; + this.optionalFromOrIn(); + this.state = 4784; + this.cursorName(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4952; + this.state = 4786; this.match(PostgreSqlParser.RELATIVE_P); - this.state = 4953; - this.signediconst(); - this.state = 4954; - this.opt_from_in(); - this.state = 4955; - this.cursor_name(); + this.state = 4787; + this.signedIconst(); + this.state = 4788; + this.optionalFromOrIn(); + this.state = 4789; + this.cursorName(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4957; - this.signediconst(); - this.state = 4958; - this.opt_from_in(); - this.state = 4959; - this.cursor_name(); + this.state = 4791; + this.signedIconst(); + this.state = 4792; + this.optionalFromOrIn(); + this.state = 4793; + this.cursorName(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4961; + this.state = 4795; this.match(PostgreSqlParser.ALL); - this.state = 4962; - this.opt_from_in(); - this.state = 4963; - this.cursor_name(); + this.state = 4796; + this.optionalFromOrIn(); + this.state = 4797; + this.cursorName(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4965; + this.state = 4799; this.match(PostgreSqlParser.FORWARD); - this.state = 4966; - this.opt_from_in(); - this.state = 4967; - this.cursor_name(); + this.state = 4800; + this.optionalFromOrIn(); + this.state = 4801; + this.cursorName(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4969; + this.state = 4803; this.match(PostgreSqlParser.FORWARD); - this.state = 4970; - this.signediconst(); - this.state = 4971; - this.opt_from_in(); - this.state = 4972; - this.cursor_name(); + this.state = 4804; + this.signedIconst(); + this.state = 4805; + this.optionalFromOrIn(); + this.state = 4806; + this.cursorName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4974; + this.state = 4808; this.match(PostgreSqlParser.FORWARD); - this.state = 4975; + this.state = 4809; this.match(PostgreSqlParser.ALL); - this.state = 4976; - this.opt_from_in(); - this.state = 4977; - this.cursor_name(); + this.state = 4810; + this.optionalFromOrIn(); + this.state = 4811; + this.cursorName(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4979; + this.state = 4813; this.match(PostgreSqlParser.BACKWARD); - this.state = 4980; - this.opt_from_in(); - this.state = 4981; - this.cursor_name(); + this.state = 4814; + this.optionalFromOrIn(); + this.state = 4815; + this.cursorName(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4983; + this.state = 4817; this.match(PostgreSqlParser.BACKWARD); - this.state = 4984; - this.signediconst(); - this.state = 4985; - this.opt_from_in(); - this.state = 4986; - this.cursor_name(); + this.state = 4818; + this.signedIconst(); + this.state = 4819; + this.optionalFromOrIn(); + this.state = 4820; + this.cursorName(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4988; + this.state = 4822; this.match(PostgreSqlParser.BACKWARD); - this.state = 4989; + this.state = 4823; this.match(PostgreSqlParser.ALL); - this.state = 4990; - this.opt_from_in(); - this.state = 4991; - this.cursor_name(); + this.state = 4824; + this.optionalFromOrIn(); + this.state = 4825; + this.cursorName(); } break; } @@ -25691,14 +24489,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public from_in(): From_inContext { - let localContext = new From_inContext(this.context, this.state); - this.enterRule(localContext, 546, PostgreSqlParser.RULE_from_in); + public fromOrIn(): FromOrInContext { + let localContext = new FromOrInContext(this.context, this.state); + this.enterRule(localContext, 502, PostgreSqlParser.RULE_fromOrIn); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4995; + this.state = 4829; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -25723,19 +24521,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_from_in(): Opt_from_inContext { - let localContext = new Opt_from_inContext(this.context, this.state); - this.enterRule(localContext, 548, PostgreSqlParser.RULE_opt_from_in); + public optionalFromOrIn(): OptionalFromOrInContext { + let localContext = new OptionalFromOrInContext(this.context, this.state); + this.enterRule(localContext, 504, PostgreSqlParser.RULE_optionalFromOrIn); try { - this.state = 4999; + this.state = 4833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FROM: case PostgreSqlParser.IN_P: this.enterOuterAlt(localContext, 1); { - this.state = 4997; - this.from_in(); + this.state = 4831; + this.fromOrIn(); } break; case PostgreSqlParser.AND: @@ -26280,26 +25078,26 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public grantstmt(): GrantstmtContext { - let localContext = new GrantstmtContext(this.context, this.state); - this.enterRule(localContext, 550, PostgreSqlParser.RULE_grantstmt); + public grantStatement(): GrantStatementContext { + let localContext = new GrantStatementContext(this.context, this.state); + this.enterRule(localContext, 506, PostgreSqlParser.RULE_grantStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5001; + this.state = 4835; this.match(PostgreSqlParser.GRANT); - this.state = 5002; + this.state = 4836; this.privileges(); - this.state = 5003; + this.state = 4837; this.match(PostgreSqlParser.ON); - this.state = 5004; - this.privilege_target(); - this.state = 5005; + this.state = 4838; + this.privilegeTarget(); + this.state = 4839; this.match(PostgreSqlParser.TO); - this.state = 5006; - this.grantee_list(); - this.state = 5007; - this.opt_grant_grant_option(); + this.state = 4840; + this.granteeList(); + this.state = 4841; + this.optionalWithGrantOption(); } } catch (re) { @@ -26316,55 +25114,55 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public revokestmt(): RevokestmtContext { - let localContext = new RevokestmtContext(this.context, this.state); - this.enterRule(localContext, 552, PostgreSqlParser.RULE_revokestmt); + public revokeStatement(): RevokeStatementContext { + let localContext = new RevokeStatementContext(this.context, this.state); + this.enterRule(localContext, 508, PostgreSqlParser.RULE_revokeStatement); try { - this.state = 5028; + this.state = 4862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5009; + this.state = 4843; this.match(PostgreSqlParser.REVOKE); - this.state = 5010; + this.state = 4844; this.privileges(); - this.state = 5011; + this.state = 4845; this.match(PostgreSqlParser.ON); - this.state = 5012; - this.privilege_target(); - this.state = 5013; + this.state = 4846; + this.privilegeTarget(); + this.state = 4847; this.match(PostgreSqlParser.FROM); - this.state = 5014; - this.grantee_list(); - this.state = 5015; - this.opt_drop_behavior(); + this.state = 4848; + this.granteeList(); + this.state = 4849; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5017; + this.state = 4851; this.match(PostgreSqlParser.REVOKE); - this.state = 5018; + this.state = 4852; this.match(PostgreSqlParser.GRANT); - this.state = 5019; + this.state = 4853; this.match(PostgreSqlParser.OPTION); - this.state = 5020; + this.state = 4854; this.match(PostgreSqlParser.FOR); - this.state = 5021; + this.state = 4855; this.privileges(); - this.state = 5022; + this.state = 4856; this.match(PostgreSqlParser.ON); - this.state = 5023; - this.privilege_target(); - this.state = 5024; + this.state = 4857; + this.privilegeTarget(); + this.state = 4858; this.match(PostgreSqlParser.FROM); - this.state = 5025; - this.grantee_list(); - this.state = 5026; - this.opt_drop_behavior(); + this.state = 4859; + this.granteeList(); + this.state = 4860; + this.optionalDropBehavior(); } break; } @@ -26385,59 +25183,59 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public privileges(): PrivilegesContext { let localContext = new PrivilegesContext(this.context, this.state); - this.enterRule(localContext, 554, PostgreSqlParser.RULE_privileges); + this.enterRule(localContext, 510, PostgreSqlParser.RULE_privileges); try { - this.state = 5045; + this.state = 4879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5030; - this.privilege_list(); + this.state = 4864; + this.privilegeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5031; + this.state = 4865; this.match(PostgreSqlParser.ALL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5032; + this.state = 4866; this.match(PostgreSqlParser.ALL); - this.state = 5033; + this.state = 4867; this.match(PostgreSqlParser.PRIVILEGES); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5034; + this.state = 4868; this.match(PostgreSqlParser.ALL); - this.state = 5035; + this.state = 4869; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5036; - this.columnlist(); - this.state = 5037; + this.state = 4870; + this.columnList(); + this.state = 4871; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5039; + this.state = 4873; this.match(PostgreSqlParser.ALL); - this.state = 5040; + this.state = 4874; this.match(PostgreSqlParser.PRIVILEGES); - this.state = 5041; + this.state = 4875; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5042; - this.columnlist(); - this.state = 5043; + this.state = 4876; + this.columnList(); + this.state = 4877; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -26457,28 +25255,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public privilege_list(): Privilege_listContext { - let localContext = new Privilege_listContext(this.context, this.state); - this.enterRule(localContext, 556, PostgreSqlParser.RULE_privilege_list); + public privilegeList(): PrivilegeListContext { + let localContext = new PrivilegeListContext(this.context, this.state); + this.enterRule(localContext, 512, PostgreSqlParser.RULE_privilegeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5047; + this.state = 4881; this.privilege(); - this.state = 5052; + this.state = 4886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5048; + this.state = 4882; this.match(PostgreSqlParser.COMMA); - this.state = 5049; + this.state = 4883; this.privilege(); } } - this.state = 5054; + this.state = 4888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26500,36 +25298,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 558, PostgreSqlParser.RULE_privilege); + this.enterRule(localContext, 514, PostgreSqlParser.RULE_privilege); try { - this.state = 5064; + this.state = 4898; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 5055; + this.state = 4889; this.match(PostgreSqlParser.SELECT); - this.state = 5056; - this.opt_column_list(); + this.state = 4890; + this.columnListWithParentheses(); } break; case PostgreSqlParser.REFERENCES: this.enterOuterAlt(localContext, 2); { - this.state = 5057; + this.state = 4891; this.match(PostgreSqlParser.REFERENCES); - this.state = 5058; - this.opt_column_list(); + this.state = 4892; + this.columnListWithParentheses(); } break; case PostgreSqlParser.CREATE: this.enterOuterAlt(localContext, 3); { - this.state = 5059; + this.state = 4893; this.match(PostgreSqlParser.CREATE); - this.state = 5060; - this.opt_column_list(); + this.state = 4894; + this.columnListWithParentheses(); } break; case PostgreSqlParser.AND: @@ -27053,10 +25851,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 5061; - this.colid(); - this.state = 5062; - this.opt_column_list(); + this.state = 4895; + this.columnId(); + this.state = 4896; + this.columnListWithParentheses(); } break; default: @@ -27077,227 +25875,227 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public privilege_target(): Privilege_targetContext { - let localContext = new Privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 560, PostgreSqlParser.RULE_privilege_target); + public privilegeTarget(): PrivilegeTargetContext { + let localContext = new PrivilegeTargetContext(this.context, this.state); + this.enterRule(localContext, 516, PostgreSqlParser.RULE_privilegeTarget); try { - this.state = 5124; + this.state = 4958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5066; - this.qualified_name_list(); + this.state = 4900; + this.qualifiedNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5067; + this.state = 4901; this.match(PostgreSqlParser.TABLE); - this.state = 5068; - this.qualified_name_list(); + this.state = 4902; + this.qualifiedNameList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5069; + this.state = 4903; this.match(PostgreSqlParser.SEQUENCE); - this.state = 5070; - this.qualified_name_list(); + this.state = 4904; + this.qualifiedNameList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5071; + this.state = 4905; this.match(PostgreSqlParser.FOREIGN); - this.state = 5072; + this.state = 4906; this.match(PostgreSqlParser.DATA_P); - this.state = 5073; + this.state = 4907; this.match(PostgreSqlParser.WRAPPER); - this.state = 5074; - this.name_list(); + this.state = 4908; + this.nameList(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5075; + this.state = 4909; this.match(PostgreSqlParser.FOREIGN); - this.state = 5076; + this.state = 4910; this.match(PostgreSqlParser.SERVER); - this.state = 5077; - this.name_list(); + this.state = 4911; + this.nameList(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5078; + this.state = 4912; this.match(PostgreSqlParser.FUNCTION); - this.state = 5079; - this.function_with_argtypes_list(); + this.state = 4913; + this.functionWithArgumentTypesList(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5080; + this.state = 4914; this.match(PostgreSqlParser.PROCEDURE); - this.state = 5081; - this.function_with_argtypes_list(); + this.state = 4915; + this.functionWithArgumentTypesList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5082; + this.state = 4916; this.match(PostgreSqlParser.ROUTINE); - this.state = 5083; - this.function_with_argtypes_list(); + this.state = 4917; + this.functionWithArgumentTypesList(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5084; + this.state = 4918; this.match(PostgreSqlParser.DATABASE); - this.state = 5085; - this.name_list(); + this.state = 4919; + this.nameList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5086; + this.state = 4920; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 5087; - this.any_name_list(); + this.state = 4921; + this.anyNameList(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5088; + this.state = 4922; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5089; - this.name_list(); + this.state = 4923; + this.nameList(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5090; + this.state = 4924; this.match(PostgreSqlParser.LARGE_P); - this.state = 5091; + this.state = 4925; this.match(PostgreSqlParser.OBJECT_P); - this.state = 5092; - this.numericonly_list(); + this.state = 4926; + this.numericOnlyList(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5093; + this.state = 4927; this.match(PostgreSqlParser.SCHEMA); - this.state = 5094; - this.name_list(); + this.state = 4928; + this.nameList(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5095; + this.state = 4929; this.match(PostgreSqlParser.TABLESPACE); - this.state = 5096; - this.name_list(); + this.state = 4930; + this.nameList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5097; + this.state = 4931; this.match(PostgreSqlParser.TYPE_P); - this.state = 5098; - this.any_name_list(); + this.state = 4932; + this.anyNameList(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5099; + this.state = 4933; this.match(PostgreSqlParser.ALL); - this.state = 5100; + this.state = 4934; this.match(PostgreSqlParser.TABLES); - this.state = 5101; + this.state = 4935; this.match(PostgreSqlParser.IN_P); - this.state = 5102; + this.state = 4936; this.match(PostgreSqlParser.SCHEMA); - this.state = 5103; - this.name_list(); + this.state = 4937; + this.nameList(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5104; + this.state = 4938; this.match(PostgreSqlParser.ALL); - this.state = 5105; + this.state = 4939; this.match(PostgreSqlParser.SEQUENCES); - this.state = 5106; + this.state = 4940; this.match(PostgreSqlParser.IN_P); - this.state = 5107; + this.state = 4941; this.match(PostgreSqlParser.SCHEMA); - this.state = 5108; - this.name_list(); + this.state = 4942; + this.nameList(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5109; + this.state = 4943; this.match(PostgreSqlParser.ALL); - this.state = 5110; + this.state = 4944; this.match(PostgreSqlParser.FUNCTIONS); - this.state = 5111; + this.state = 4945; this.match(PostgreSqlParser.IN_P); - this.state = 5112; + this.state = 4946; this.match(PostgreSqlParser.SCHEMA); - this.state = 5113; - this.name_list(); + this.state = 4947; + this.nameList(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5114; + this.state = 4948; this.match(PostgreSqlParser.ALL); - this.state = 5115; + this.state = 4949; this.match(PostgreSqlParser.PROCEDURES); - this.state = 5116; + this.state = 4950; this.match(PostgreSqlParser.IN_P); - this.state = 5117; + this.state = 4951; this.match(PostgreSqlParser.SCHEMA); - this.state = 5118; - this.name_list(); + this.state = 4952; + this.nameList(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5119; + this.state = 4953; this.match(PostgreSqlParser.ALL); - this.state = 5120; + this.state = 4954; this.match(PostgreSqlParser.ROUTINES); - this.state = 5121; + this.state = 4955; this.match(PostgreSqlParser.IN_P); - this.state = 5122; + this.state = 4956; this.match(PostgreSqlParser.SCHEMA); - this.state = 5123; - this.name_list(); + this.state = 4957; + this.nameList(); } break; } @@ -27316,28 +26114,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public grantee_list(): Grantee_listContext { - let localContext = new Grantee_listContext(this.context, this.state); - this.enterRule(localContext, 562, PostgreSqlParser.RULE_grantee_list); + public granteeList(): GranteeListContext { + let localContext = new GranteeListContext(this.context, this.state); + this.enterRule(localContext, 518, PostgreSqlParser.RULE_granteeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5126; + this.state = 4960; this.grantee(); - this.state = 5131; + this.state = 4965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5127; + this.state = 4961; this.match(PostgreSqlParser.COMMA); - this.state = 5128; + this.state = 4962; this.grantee(); } } - this.state = 5133; + this.state = 4967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27359,9 +26157,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public grantee(): GranteeContext { let localContext = new GranteeContext(this.context, this.state); - this.enterRule(localContext, 564, PostgreSqlParser.RULE_grantee); + this.enterRule(localContext, 520, PostgreSqlParser.RULE_grantee); try { - this.state = 5137; + this.state = 4971; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -27904,17 +26702,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 5134; - this.rolespec(); + this.state = 4968; + this.roleSpecification(); } break; case PostgreSqlParser.GROUP_P: this.enterOuterAlt(localContext, 2); { - this.state = 5135; + this.state = 4969; this.match(PostgreSqlParser.GROUP_P); - this.state = 5136; - this.rolespec(); + this.state = 4970; + this.roleSpecification(); } break; default: @@ -27935,21 +26733,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_grant_grant_option(): Opt_grant_grant_optionContext { - let localContext = new Opt_grant_grant_optionContext(this.context, this.state); - this.enterRule(localContext, 566, PostgreSqlParser.RULE_opt_grant_grant_option); + public optionalWithGrantOption(): OptionalWithGrantOptionContext { + let localContext = new OptionalWithGrantOptionContext(this.context, this.state); + this.enterRule(localContext, 522, PostgreSqlParser.RULE_optionalWithGrantOption); try { - this.state = 5143; + this.state = 4977; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 5139; + this.state = 4973; this.match(PostgreSqlParser.WITH); - this.state = 5140; + this.state = 4974; this.match(PostgreSqlParser.GRANT); - this.state = 5141; + this.state = 4975; this.match(PostgreSqlParser.OPTION); } break; @@ -27981,24 +26779,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public grantrolestmt(): GrantrolestmtContext { - let localContext = new GrantrolestmtContext(this.context, this.state); - this.enterRule(localContext, 568, PostgreSqlParser.RULE_grantrolestmt); + public grantRoleStatement(): GrantRoleStatementContext { + let localContext = new GrantRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 524, PostgreSqlParser.RULE_grantRoleStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5145; + this.state = 4979; this.match(PostgreSqlParser.GRANT); - this.state = 5146; - this.privilege_list(); - this.state = 5147; + this.state = 4980; + this.privilegeList(); + this.state = 4981; this.match(PostgreSqlParser.TO); - this.state = 5148; - this.role_list(); - this.state = 5149; - this.opt_grant_admin_option(); - this.state = 5150; - this.opt_granted_by(); + this.state = 4982; + this.roleList(); + this.state = 4983; + this.optionalGrantAdminOption(); + this.state = 4984; + this.optionalGrantedBy(); } } catch (re) { @@ -28015,51 +26813,51 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public revokerolestmt(): RevokerolestmtContext { - let localContext = new RevokerolestmtContext(this.context, this.state); - this.enterRule(localContext, 570, PostgreSqlParser.RULE_revokerolestmt); + public revokeRoleStatement(): RevokeRoleStatementContext { + let localContext = new RevokeRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 526, PostgreSqlParser.RULE_revokeRoleStatement); try { - this.state = 5169; + this.state = 5003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5152; + this.state = 4986; this.match(PostgreSqlParser.REVOKE); - this.state = 5153; - this.privilege_list(); - this.state = 5154; + this.state = 4987; + this.privilegeList(); + this.state = 4988; this.match(PostgreSqlParser.FROM); - this.state = 5155; - this.role_list(); - this.state = 5156; - this.opt_granted_by(); - this.state = 5157; - this.opt_drop_behavior(); + this.state = 4989; + this.roleList(); + this.state = 4990; + this.optionalGrantedBy(); + this.state = 4991; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5159; + this.state = 4993; this.match(PostgreSqlParser.REVOKE); - this.state = 5160; + this.state = 4994; this.match(PostgreSqlParser.ADMIN); - this.state = 5161; + this.state = 4995; this.match(PostgreSqlParser.OPTION); - this.state = 5162; + this.state = 4996; this.match(PostgreSqlParser.FOR); - this.state = 5163; - this.privilege_list(); - this.state = 5164; + this.state = 4997; + this.privilegeList(); + this.state = 4998; this.match(PostgreSqlParser.FROM); - this.state = 5165; - this.role_list(); - this.state = 5166; - this.opt_granted_by(); - this.state = 5167; - this.opt_drop_behavior(); + this.state = 4999; + this.roleList(); + this.state = 5000; + this.optionalGrantedBy(); + this.state = 5001; + this.optionalDropBehavior(); } break; } @@ -28078,21 +26876,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_grant_admin_option(): Opt_grant_admin_optionContext { - let localContext = new Opt_grant_admin_optionContext(this.context, this.state); - this.enterRule(localContext, 572, PostgreSqlParser.RULE_opt_grant_admin_option); + public optionalGrantAdminOption(): OptionalGrantAdminOptionContext { + let localContext = new OptionalGrantAdminOptionContext(this.context, this.state); + this.enterRule(localContext, 528, PostgreSqlParser.RULE_optionalGrantAdminOption); try { - this.state = 5175; + this.state = 5009; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 5171; + this.state = 5005; this.match(PostgreSqlParser.WITH); - this.state = 5172; + this.state = 5006; this.match(PostgreSqlParser.ADMIN); - this.state = 5173; + this.state = 5007; this.match(PostgreSqlParser.OPTION); } break; @@ -28123,22 +26921,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_granted_by(): Opt_granted_byContext { - let localContext = new Opt_granted_byContext(this.context, this.state); - this.enterRule(localContext, 574, PostgreSqlParser.RULE_opt_granted_by); + public optionalGrantedBy(): OptionalGrantedByContext { + let localContext = new OptionalGrantedByContext(this.context, this.state); + this.enterRule(localContext, 530, PostgreSqlParser.RULE_optionalGrantedBy); try { - this.state = 5181; + this.state = 5015; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.GRANTED: this.enterOuterAlt(localContext, 1); { - this.state = 5177; + this.state = 5011; this.match(PostgreSqlParser.GRANTED); - this.state = 5178; + this.state = 5012; this.match(PostgreSqlParser.BY); - this.state = 5179; - this.rolespec(); + this.state = 5013; + this.roleSpecification(); } break; case PostgreSqlParser.EOF: @@ -28169,59 +26967,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterdefaultprivilegesstmt(): AlterdefaultprivilegesstmtContext { - let localContext = new AlterdefaultprivilegesstmtContext(this.context, this.state); - this.enterRule(localContext, 576, PostgreSqlParser.RULE_alterdefaultprivilegesstmt); + public alterDefaultPrivilegesStatement(): AlterDefaultPrivilegesStatementContext { + let localContext = new AlterDefaultPrivilegesStatementContext(this.context, this.state); + this.enterRule(localContext, 532, PostgreSqlParser.RULE_alterDefaultPrivilegesStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5183; + this.state = 5017; this.match(PostgreSqlParser.ALTER); - this.state = 5184; + this.state = 5018; this.match(PostgreSqlParser.DEFAULT); - this.state = 5185; + this.state = 5019; this.match(PostgreSqlParser.PRIVILEGES); - this.state = 5186; - this.defacloptionlist(); - this.state = 5187; - this.defaclaction(); - } - } - 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 defacloptionlist(): DefacloptionlistContext { - let localContext = new DefacloptionlistContext(this.context, this.state); - this.enterRule(localContext, 578, PostgreSqlParser.RULE_defacloptionlist); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5192; + this.state = 5023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { { - this.state = 5189; - this.defacloption(); + this.state = 5020; + this.defultPrivilegeOption(); } } - this.state = 5194; + this.state = 5025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } + this.state = 5026; + this.defaultPrivelegeAction(); } } catch (re) { @@ -28238,44 +27012,44 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public defacloption(): DefacloptionContext { - let localContext = new DefacloptionContext(this.context, this.state); - this.enterRule(localContext, 580, PostgreSqlParser.RULE_defacloption); + public defultPrivilegeOption(): DefultPrivilegeOptionContext { + let localContext = new DefultPrivilegeOptionContext(this.context, this.state); + this.enterRule(localContext, 534, PostgreSqlParser.RULE_defultPrivilegeOption); try { - this.state = 5204; + this.state = 5037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5195; + this.state = 5028; this.match(PostgreSqlParser.IN_P); - this.state = 5196; + this.state = 5029; this.match(PostgreSqlParser.SCHEMA); - this.state = 5197; - this.name_list(); + this.state = 5030; + this.nameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5198; + this.state = 5031; this.match(PostgreSqlParser.FOR); - this.state = 5199; + this.state = 5032; this.match(PostgreSqlParser.ROLE); - this.state = 5200; - this.role_list(); + this.state = 5033; + this.roleList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5201; + this.state = 5034; this.match(PostgreSqlParser.FOR); - this.state = 5202; + this.state = 5035; this.match(PostgreSqlParser.USER); - this.state = 5203; - this.role_list(); + this.state = 5036; + this.roleList(); } break; } @@ -28294,74 +27068,74 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public defaclaction(): DefaclactionContext { - let localContext = new DefaclactionContext(this.context, this.state); - this.enterRule(localContext, 582, PostgreSqlParser.RULE_defaclaction); + public defaultPrivelegeAction(): DefaultPrivelegeActionContext { + let localContext = new DefaultPrivelegeActionContext(this.context, this.state); + this.enterRule(localContext, 536, PostgreSqlParser.RULE_defaultPrivelegeAction); try { - this.state = 5233; + this.state = 5066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5206; + this.state = 5039; this.match(PostgreSqlParser.GRANT); - this.state = 5207; + this.state = 5040; this.privileges(); - this.state = 5208; + this.state = 5041; this.match(PostgreSqlParser.ON); - this.state = 5209; - this.defacl_privilege_target(); - this.state = 5210; + this.state = 5042; + this.defultPrivilegeTarget(); + this.state = 5043; this.match(PostgreSqlParser.TO); - this.state = 5211; - this.grantee_list(); - this.state = 5212; - this.opt_grant_grant_option(); + this.state = 5044; + this.granteeList(); + this.state = 5045; + this.optionalWithGrantOption(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5214; + this.state = 5047; this.match(PostgreSqlParser.REVOKE); - this.state = 5215; + this.state = 5048; this.privileges(); - this.state = 5216; + this.state = 5049; this.match(PostgreSqlParser.ON); - this.state = 5217; - this.defacl_privilege_target(); - this.state = 5218; + this.state = 5050; + this.defultPrivilegeTarget(); + this.state = 5051; this.match(PostgreSqlParser.FROM); - this.state = 5219; - this.grantee_list(); - this.state = 5220; - this.opt_drop_behavior(); + this.state = 5052; + this.granteeList(); + this.state = 5053; + this.optionalDropBehavior(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5222; + this.state = 5055; this.match(PostgreSqlParser.REVOKE); - this.state = 5223; + this.state = 5056; this.match(PostgreSqlParser.GRANT); - this.state = 5224; + this.state = 5057; this.match(PostgreSqlParser.OPTION); - this.state = 5225; + this.state = 5058; this.match(PostgreSqlParser.FOR); - this.state = 5226; + this.state = 5059; this.privileges(); - this.state = 5227; + this.state = 5060; this.match(PostgreSqlParser.ON); - this.state = 5228; - this.defacl_privilege_target(); - this.state = 5229; + this.state = 5061; + this.defultPrivilegeTarget(); + this.state = 5062; this.match(PostgreSqlParser.FROM); - this.state = 5230; - this.grantee_list(); - this.state = 5231; - this.opt_drop_behavior(); + this.state = 5063; + this.granteeList(); + this.state = 5064; + this.optionalDropBehavior(); } break; } @@ -28380,14 +27154,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public defacl_privilege_target(): Defacl_privilege_targetContext { - let localContext = new Defacl_privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 584, PostgreSqlParser.RULE_defacl_privilege_target); + public defultPrivilegeTarget(): DefultPrivilegeTargetContext { + let localContext = new DefultPrivilegeTargetContext(this.context, this.state); + this.enterRule(localContext, 538, PostgreSqlParser.RULE_defultPrivilegeTarget); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5235; + this.state = 5068; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 322 || _la === 343 || _la === 354 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -28412,127 +27186,114 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public indexstmt(): IndexstmtContext { - let localContext = new IndexstmtContext(this.context, this.state); - this.enterRule(localContext, 586, PostgreSqlParser.RULE_indexstmt); + public indexStatement(): IndexStatementContext { + let localContext = new IndexStatementContext(this.context, this.state); + this.enterRule(localContext, 540, PostgreSqlParser.RULE_indexStatement); + let _la: number; try { - this.state = 5272; + this.state = 5111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5237; + this.state = 5070; this.match(PostgreSqlParser.CREATE); - this.state = 5238; - this.opt_unique(); - this.state = 5239; + this.state = 5072; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 98) { + { + this.state = 5071; + this.match(PostgreSqlParser.UNIQUE); + } + } + + this.state = 5074; this.match(PostgreSqlParser.INDEX); - this.state = 5240; - this.opt_concurrently(); - this.state = 5241; - this.opt_index_name(); - this.state = 5242; + this.state = 5075; + this.optionalConcurrently(); + this.state = 5077; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { + { + this.state = 5076; + this.name(); + } + } + + this.state = 5079; this.match(PostgreSqlParser.ON); - this.state = 5243; - this.relation_expr(); - this.state = 5244; - this.access_method_clause(); - this.state = 5245; + this.state = 5080; + this.relationExpression(); + this.state = 5081; + this.optionalAccessMethodClause(); + this.state = 5082; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5246; - this.index_params(); - this.state = 5247; + this.state = 5083; + this.indexParameters(); + this.state = 5084; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5248; - this.opt_include(); - this.state = 5249; - this.opt_reloptions(); - this.state = 5250; - this.opttablespace(); - this.state = 5251; - this.where_clause(); + this.state = 5085; + this.optionalInclude(); + this.state = 5086; + this.optionalRelOptions(); + this.state = 5087; + this.optionalTablespace(); + this.state = 5088; + this.whereClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5253; + this.state = 5090; this.match(PostgreSqlParser.CREATE); - this.state = 5254; - this.opt_unique(); - this.state = 5255; + this.state = 5092; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 98) { + { + this.state = 5091; + this.match(PostgreSqlParser.UNIQUE); + } + } + + this.state = 5094; this.match(PostgreSqlParser.INDEX); - this.state = 5256; - this.opt_concurrently(); - this.state = 5257; + this.state = 5095; + this.optionalConcurrently(); + this.state = 5096; this.match(PostgreSqlParser.IF_P); - this.state = 5258; + this.state = 5097; this.match(PostgreSqlParser.NOT); - this.state = 5259; + this.state = 5098; this.match(PostgreSqlParser.EXISTS); - this.state = 5260; + this.state = 5099; this.name(); - this.state = 5261; + this.state = 5100; this.match(PostgreSqlParser.ON); - this.state = 5262; - this.relation_expr(); - this.state = 5263; - this.access_method_clause(); - this.state = 5264; + this.state = 5101; + this.relationExpression(); + this.state = 5102; + this.optionalAccessMethodClause(); + this.state = 5103; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5265; - this.index_params(); - this.state = 5266; + this.state = 5104; + this.indexParameters(); + this.state = 5105; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5267; - this.opt_include(); - this.state = 5268; - this.opt_reloptions(); - this.state = 5269; - this.opttablespace(); - this.state = 5270; - this.where_clause(); - } - 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 opt_unique(): Opt_uniqueContext { - let localContext = new Opt_uniqueContext(this.context, this.state); - this.enterRule(localContext, 588, PostgreSqlParser.RULE_opt_unique); - try { - this.state = 5276; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.UNIQUE: - this.enterOuterAlt(localContext, 1); - { - this.state = 5274; - this.match(PostgreSqlParser.UNIQUE); - } - break; - case PostgreSqlParser.INDEX: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { + this.state = 5106; + this.optionalInclude(); + this.state = 5107; + this.optionalRelOptions(); + this.state = 5108; + this.optionalTablespace(); + this.state = 5109; + this.whereClause(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -28549,17 +27310,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_concurrently(): Opt_concurrentlyContext { - let localContext = new Opt_concurrentlyContext(this.context, this.state); - this.enterRule(localContext, 590, PostgreSqlParser.RULE_opt_concurrently); + public optionalConcurrently(): OptionalConcurrentlyContext { + let localContext = new OptionalConcurrentlyContext(this.context, this.state); + this.enterRule(localContext, 542, PostgreSqlParser.RULE_optionalConcurrently); try { - this.state = 5280; + this.state = 5115; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CONCURRENTLY: this.enterOuterAlt(localContext, 1); { - this.state = 5278; + this.state = 5113; this.match(PostgreSqlParser.CONCURRENTLY); } break; @@ -29106,540 +27867,375 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_index_name(): Opt_index_nameContext { - let localContext = new Opt_index_nameContext(this.context, this.state); - this.enterRule(localContext, 592, PostgreSqlParser.RULE_opt_index_name); + public optionalAccessMethodClause(): OptionalAccessMethodClauseContext { + let localContext = new OptionalAccessMethodClauseContext(this.context, this.state); + this.enterRule(localContext, 544, PostgreSqlParser.RULE_optionalAccessMethodClause); try { - this.state = 5284; + this.state = 5120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: + case PostgreSqlParser.USING: + this.enterOuterAlt(localContext, 1); + { + this.state = 5117; + this.match(PostgreSqlParser.USING); + this.state = 5118; + this.name(); + } + break; + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 indexParameters(): IndexParametersContext { + let localContext = new IndexParametersContext(this.context, this.state); + this.enterRule(localContext, 546, PostgreSqlParser.RULE_indexParameters); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 5122; + this.indexElement(); + this.state = 5127; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 5123; + this.match(PostgreSqlParser.COMMA); + this.state = 5124; + this.indexElement(); + } + } + this.state = 5129; + 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 indexElemOptions(): IndexElemOptionsContext { + let localContext = new IndexElemOptionsContext(this.context, this.state); + this.enterRule(localContext, 548, PostgreSqlParser.RULE_indexElemOptions); + try { + this.state = 5141; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 5130; + this.optionalCollate(); + this.state = 5131; + this.optionalClass(); + this.state = 5132; + this.optionalAscOrDesc(); + this.state = 5133; + this.optionalNullsOrder(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 5135; + this.optionalCollate(); + this.state = 5136; + this.anyName(); + this.state = 5137; + this.relOptions(); + this.state = 5138; + this.optionalAscOrDesc(); + this.state = 5139; + this.optionalNullsOrder(); + } + 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 indexElement(): IndexElementContext { + let localContext = new IndexElementContext(this.context, this.state); + this.enterRule(localContext, 550, PostgreSqlParser.RULE_indexElement); + try { + this.state = 5154; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 5143; + this.columnId(); + this.state = 5144; + this.indexElemOptions(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 5146; + this.functionExpressionWindowless(); + this.state = 5147; + this.indexElemOptions(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 5149; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 5150; + this.expression1(); + this.state = 5151; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 5152; + this.indexElemOptions(); + } + 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 optionalInclude(): OptionalIncludeContext { + let localContext = new OptionalIncludeContext(this.context, this.state); + this.enterRule(localContext, 552, PostgreSqlParser.RULE_optionalInclude); + let _la: number; + try { + this.state = 5169; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.INCLUDE: + this.enterOuterAlt(localContext, 1); + { + this.state = 5156; + this.match(PostgreSqlParser.INCLUDE); + this.state = 5157; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 5158; + this.indexElement(); + this.state = 5163; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 5159; + this.match(PostgreSqlParser.COMMA); + this.state = 5160; + this.indexElement(); + } + } + this.state = 5165; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 5166; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.WITH: + case PostgreSqlParser.TABLESPACE: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 optionalCollate(): OptionalCollateContext { + let localContext = new OptionalCollateContext(this.context, this.state); + this.enterRule(localContext, 554, PostgreSqlParser.RULE_optionalCollate); + try { + this.state = 5174; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 5171; + this.match(PostgreSqlParser.COLLATE); + this.state = 5172; + this.anyName(); + } + 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 optionalClass(): OptionalClassContext { + let localContext = new OptionalClassContext(this.context, this.state); + this.enterRule(localContext, 556, PostgreSqlParser.RULE_optionalClass); + try { + this.state = 5178; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 5176; + this.anyName(); + } + 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 optionalAscOrDesc(): OptionalAscOrDescContext { + let localContext = new OptionalAscOrDescContext(this.context, this.state); + this.enterRule(localContext, 558, PostgreSqlParser.RULE_optionalAscOrDesc); + try { + this.state = 5183; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ASC: + this.enterOuterAlt(localContext, 1); + { + this.state = 5180; + this.match(PostgreSqlParser.ASC); + } + break; + case PostgreSqlParser.DESC: + this.enterOuterAlt(localContext, 2); + { + this.state = 5181; + this.match(PostgreSqlParser.DESC); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); - { - this.state = 5282; - this.name(); - } - break; - case PostgreSqlParser.ON: - this.enterOuterAlt(localContext, 2); + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -29662,30 +28258,37 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public access_method_clause(): Access_method_clauseContext { - let localContext = new Access_method_clauseContext(this.context, this.state); - this.enterRule(localContext, 594, PostgreSqlParser.RULE_access_method_clause); + public optionalNullsOrder(): OptionalNullsOrderContext { + let localContext = new OptionalNullsOrderContext(this.context, this.state); + this.enterRule(localContext, 560, PostgreSqlParser.RULE_optionalNullsOrder); try { - this.state = 5289; + this.state = 5190; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5286; - this.match(PostgreSqlParser.USING); - this.state = 5287; - this.name(); + this.state = 5185; + this.match(PostgreSqlParser.NULLS_P); + this.state = 5186; + this.match(PostgreSqlParser.FIRST_P); } break; - case PostgreSqlParser.OPEN_PAREN: + case 2: this.enterOuterAlt(localContext, 2); + { + this.state = 5187; + this.match(PostgreSqlParser.NULLS_P); + this.state = 5188; + this.match(PostgreSqlParser.LAST_P); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -29702,83 +28305,77 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public index_params(): Index_paramsContext { - let localContext = new Index_paramsContext(this.context, this.state); - this.enterRule(localContext, 596, PostgreSqlParser.RULE_index_params); + public createFunctionStatement(): CreateFunctionStatementContext { + let localContext = new CreateFunctionStatementContext(this.context, this.state); + this.enterRule(localContext, 562, PostgreSqlParser.RULE_createFunctionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5291; - this.index_elem(); - this.state = 5296; + this.state = 5192; + this.match(PostgreSqlParser.CREATE); + this.state = 5193; + this.optionalOrReplace(); + this.state = 5194; + _la = this.tokenStream.LA(1); + if(!(_la === 211 || _la === 289)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 5195; + this.functionName(); + this.state = 5196; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 5198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { - { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 4276092927) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 4294967295) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4294967295) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4294967295) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 4294967295) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294967295) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 4294967295) !== 0) || ((((_la - 453)) & ~0x1F) === 0 && ((1 << (_la - 453)) & 4294967293) !== 0) || ((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 4293656575) !== 0) || ((((_la - 517)) & ~0x1F) === 0 && ((1 << (_la - 517)) & 4294967291) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 4294967295) !== 0) || ((((_la - 581)) & ~0x1F) === 0 && ((1 << (_la - 581)) & 4294967295) !== 0) || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 301989887) !== 0) || _la === 661 || _la === 662) { { - this.state = 5292; - this.match(PostgreSqlParser.COMMA); - this.state = 5293; - this.index_elem(); - } + this.state = 5197; + this.functionArgumentsWithDefaultsList(); } - this.state = 5298; - 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 index_elem_options(): Index_elem_optionsContext { - let localContext = new Index_elem_optionsContext(this.context, this.state); - this.enterRule(localContext, 598, PostgreSqlParser.RULE_index_elem_options); - try { - this.state = 5310; + + this.state = 5200; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 5210; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); { - this.state = 5299; - this.opt_collate(); - this.state = 5300; - this.opt_class(); - this.state = 5301; - this.opt_asc_desc(); - this.state = 5302; - this.opt_nulls_order(); + this.state = 5201; + this.match(PostgreSqlParser.RETURNS); + this.state = 5208; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + case 1: + { + this.state = 5202; + this.functionReturn(); + } + break; + case 2: + { + this.state = 5203; + this.match(PostgreSqlParser.TABLE); + this.state = 5204; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 5205; + this.tableFunctionColumnList(); + this.state = 5206; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 5304; - this.opt_collate(); - this.state = 5305; - this.any_name(); - this.state = 5306; - this.reloptions(); - this.state = 5307; - this.opt_asc_desc(); - this.state = 5308; - this.opt_nulls_order(); } break; } + this.state = 5212; + this.createFunctionOptionList(); + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -29794,44 +28391,37 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public index_elem(): Index_elemContext { - let localContext = new Index_elemContext(this.context, this.state); - this.enterRule(localContext, 600, PostgreSqlParser.RULE_index_elem); + public optionalOrReplace(): OptionalOrReplaceContext { + let localContext = new OptionalOrReplaceContext(this.context, this.state); + this.enterRule(localContext, 564, PostgreSqlParser.RULE_optionalOrReplace); try { - this.state = 5323; + this.state = 5217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OR: this.enterOuterAlt(localContext, 1); { - this.state = 5312; - this.colid(); - this.state = 5313; - this.index_elem_options(); + this.state = 5214; + this.match(PostgreSqlParser.OR); + this.state = 5215; + this.match(PostgreSqlParser.REPLACE); } break; - case 2: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.RULE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TRANSFORM: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 5315; - this.func_expr_windowless(); - this.state = 5316; - this.index_elem_options(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 5318; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5319; - this.a_expr(); - this.state = 5320; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5321; - this.index_elem_options(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -29848,41 +28438,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_include(): Opt_includeContext { - let localContext = new Opt_includeContext(this.context, this.state); - this.enterRule(localContext, 602, PostgreSqlParser.RULE_opt_include); + public functionArgumentsList(): FunctionArgumentsListContext { + let localContext = new FunctionArgumentsListContext(this.context, this.state); + this.enterRule(localContext, 566, PostgreSqlParser.RULE_functionArgumentsList); + let _la: number; try { - this.state = 5331; + this.enterOuterAlt(localContext, 1); + { + this.state = 5219; + this.functionArgument(); + this.state = 5224; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.INCLUDE: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 5325; - this.match(PostgreSqlParser.INCLUDE); - this.state = 5326; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5327; - this.index_including_params(); - this.state = 5328; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.WITH: - case PostgreSqlParser.TABLESPACE: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 5220; + this.match(PostgreSqlParser.COMMA); + this.state = 5221; + this.functionArgument(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 5226; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -29899,28 +28479,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public index_including_params(): Index_including_paramsContext { - let localContext = new Index_including_paramsContext(this.context, this.state); - this.enterRule(localContext, 604, PostgreSqlParser.RULE_index_including_params); + public functionWithArgumentTypesList(): FunctionWithArgumentTypesListContext { + let localContext = new FunctionWithArgumentTypesListContext(this.context, this.state); + this.enterRule(localContext, 568, PostgreSqlParser.RULE_functionWithArgumentTypesList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5333; - this.index_elem(); - this.state = 5338; + this.state = 5227; + this.functionWithArgumentTypes(); + this.state = 5232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5334; + this.state = 5228; this.match(PostgreSqlParser.COMMA); - this.state = 5335; - this.index_elem(); + this.state = 5229; + this.functionWithArgumentTypes(); } } - this.state = 5340; + this.state = 5234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29940,26 +28520,57 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_collate(): Opt_collateContext { - let localContext = new Opt_collateContext(this.context, this.state); - this.enterRule(localContext, 606, PostgreSqlParser.RULE_opt_collate); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext { + let localContext = new FunctionWithArgumentTypesContext(this.context, this.state); + this.enterRule(localContext, 570, PostgreSqlParser.RULE_functionWithArgumentTypes); + let _la: number; try { - this.state = 5344; + this.state = 5247; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5341; - this.match(PostgreSqlParser.COLLATE); - this.state = 5342; - this.any_name(); + this.state = 5235; + this.functionName(); + this.state = 5236; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 5238; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 4276092927) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 4294967295) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4294967295) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4294967295) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 4294967295) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294967295) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 4294967295) !== 0) || ((((_la - 453)) & ~0x1F) === 0 && ((1 << (_la - 453)) & 4294967293) !== 0) || ((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 4293656575) !== 0) || ((((_la - 517)) & ~0x1F) === 0 && ((1 << (_la - 517)) & 4294967291) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 4294967295) !== 0) || ((((_la - 581)) & ~0x1F) === 0 && ((1 << (_la - 581)) & 4294967295) !== 0) || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 301989887) !== 0) || _la === 661 || _la === 662) { + { + this.state = 5237; + this.functionArgumentsList(); + } + } + + this.state = 5240; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 5242; + this.typeFunctionNameKeyword(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 5243; + this.columnId(); + this.state = 5245; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 4 || _la === 11) { + { + this.state = 5244; + this.indirection(); + } + } + } break; } @@ -29978,26 +28589,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_class(): Opt_classContext { - let localContext = new Opt_classContext(this.context, this.state); - this.enterRule(localContext, 608, PostgreSqlParser.RULE_opt_class); + public functionArgumentsWithDefaultsList(): FunctionArgumentsWithDefaultsListContext { + let localContext = new FunctionArgumentsWithDefaultsListContext(this.context, this.state); + this.enterRule(localContext, 572, PostgreSqlParser.RULE_functionArgumentsWithDefaultsList); + let _la: number; try { - this.state = 5348; + this.enterOuterAlt(localContext, 1); + { + this.state = 5249; + this.functionArgumentWithDefault(); + this.state = 5254; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 5346; - this.any_name(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 5250; + this.match(PostgreSqlParser.COMMA); + this.state = 5251; + this.functionArgumentWithDefault(); } - break; + } + this.state = 5256; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -30014,434 +28630,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_asc_desc(): Opt_asc_descContext { - let localContext = new Opt_asc_descContext(this.context, this.state); - this.enterRule(localContext, 610, PostgreSqlParser.RULE_opt_asc_desc); + public functionArgumentWithDefault(): FunctionArgumentWithDefaultContext { + let localContext = new FunctionArgumentWithDefaultContext(this.context, this.state); + this.enterRule(localContext, 574, PostgreSqlParser.RULE_functionArgumentWithDefault); + let _la: number; try { - this.state = 5353; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ASC: - this.enterOuterAlt(localContext, 1); - { - this.state = 5350; - this.match(PostgreSqlParser.ASC); - } - break; - case PostgreSqlParser.DESC: - this.enterOuterAlt(localContext, 2); - { - this.state = 5351; - this.match(PostgreSqlParser.DESC); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty - { - } - 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 opt_nulls_order(): Opt_nulls_orderContext { - let localContext = new Opt_nulls_orderContext(this.context, this.state); - this.enterRule(localContext, 612, PostgreSqlParser.RULE_opt_nulls_order); - try { - this.state = 5360; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 5355; - this.match(PostgreSqlParser.NULLS_P); - this.state = 5356; - this.match(PostgreSqlParser.FIRST_P); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 5357; - this.match(PostgreSqlParser.NULLS_P); - this.state = 5358; - this.match(PostgreSqlParser.LAST_P); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - // 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 createfunctionstmt(): CreatefunctionstmtContext { - let localContext = new CreatefunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 614, PostgreSqlParser.RULE_createfunctionstmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5362; - this.match(PostgreSqlParser.CREATE); - this.state = 5363; - this.opt_or_replace(); - this.state = 5364; - _la = this.tokenStream.LA(1); - if(!(_la === 211 || _la === 289)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 5365; - this.func_name(); - this.state = 5366; - this.func_args_with_defaults(); - this.state = 5376; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { - case 1: - { - this.state = 5367; - this.match(PostgreSqlParser.RETURNS); - this.state = 5374; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { - case 1: - { - this.state = 5368; - this.func_return(); - } - break; - case 2: - { - this.state = 5369; - this.match(PostgreSqlParser.TABLE); - this.state = 5370; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5371; - this.table_func_column_list(); - this.state = 5372; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - } - this.state = 5378; - this.createfunc_opt_list(); - } - } - 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 opt_or_replace(): Opt_or_replaceContext { - let localContext = new Opt_or_replaceContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSqlParser.RULE_opt_or_replace); - try { - this.state = 5383; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OR: - this.enterOuterAlt(localContext, 1); - { - this.state = 5380; - this.match(PostgreSqlParser.OR); - this.state = 5381; - this.match(PostgreSqlParser.REPLACE); - } - break; - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.RULE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TRANSFORM: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 func_args(): Func_argsContext { - let localContext = new Func_argsContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSqlParser.RULE_func_args); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5385; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5387; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 4276092927) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 4294967295) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4294967295) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4294967295) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 4294967295) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294967295) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 4294967295) !== 0) || ((((_la - 453)) & ~0x1F) === 0 && ((1 << (_la - 453)) & 4294967293) !== 0) || ((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 4293656575) !== 0) || ((((_la - 517)) & ~0x1F) === 0 && ((1 << (_la - 517)) & 4294967291) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 4294967295) !== 0) || ((((_la - 581)) & ~0x1F) === 0 && ((1 << (_la - 581)) & 4294967295) !== 0) || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 301989887) !== 0) || _la === 661 || _la === 662) { - { - this.state = 5386; - this.func_args_list(); - } - } - - this.state = 5389; - this.match(PostgreSqlParser.CLOSE_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 func_args_list(): Func_args_listContext { - let localContext = new Func_args_listContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSqlParser.RULE_func_args_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5391; - this.func_arg(); - this.state = 5396; + this.enterOuterAlt(localContext, 1); + { + this.state = 5257; + this.functionArgument(); + this.state = 5260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 5392; - this.match(PostgreSqlParser.COMMA); - this.state = 5393; - this.func_arg(); - } - } - this.state = 5398; - 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 function_with_argtypes_list(): Function_with_argtypes_listContext { - let localContext = new Function_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSqlParser.RULE_function_with_argtypes_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5399; - this.function_with_argtypes(); - this.state = 5404; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 5400; - this.match(PostgreSqlParser.COMMA); - this.state = 5401; - this.function_with_argtypes(); - } - } - this.state = 5406; - 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 function_with_argtypes(): Function_with_argtypesContext { - let localContext = new Function_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSqlParser.RULE_function_with_argtypes); - let _la: number; - try { - this.state = 5415; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 5407; - this.func_name(); - this.state = 5408; - this.func_args(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 5410; - this.type_func_name_keyword(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); + if (_la === 10 || _la === 53) { { - this.state = 5411; - this.colid(); - this.state = 5413; - this.errorHandler.sync(this); + this.state = 5258; _la = this.tokenStream.LA(1); - if (_la === 4 || _la === 11) { - { - this.state = 5412; - this.indirection(); - } + if(!(_la === 10 || _la === 53)) { + this.errorHandler.recoverInline(this); } - + else { + this.errorHandler.reportMatch(this); + this.consume(); } - 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 func_args_with_defaults(): Func_args_with_defaultsContext { - let localContext = new Func_args_with_defaultsContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSqlParser.RULE_func_args_with_defaults); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5417; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5419; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 4276092927) !== 0) || ((((_la - 261)) & ~0x1F) === 0 && ((1 << (_la - 261)) & 4294967295) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4294967295) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4294967295) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 4294967295) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294967295) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 4294967295) !== 0) || ((((_la - 453)) & ~0x1F) === 0 && ((1 << (_la - 453)) & 4294967293) !== 0) || ((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 4293656575) !== 0) || ((((_la - 517)) & ~0x1F) === 0 && ((1 << (_la - 517)) & 4294967291) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 4294967295) !== 0) || ((((_la - 581)) & ~0x1F) === 0 && ((1 << (_la - 581)) & 4294967295) !== 0) || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 301989887) !== 0) || _la === 661 || _la === 662) { - { - this.state = 5418; - this.func_args_with_defaults_list(); + this.state = 5259; + this.expression1(); } } - this.state = 5421; - this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -30458,97 +28674,56 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_args_with_defaults_list(): Func_args_with_defaults_listContext { - let localContext = new Func_args_with_defaults_listContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSqlParser.RULE_func_args_with_defaults_list); - let _la: number; + public functionArgument(): FunctionArgumentContext { + let localContext = new FunctionArgumentContext(this.context, this.state); + this.enterRule(localContext, 576, PostgreSqlParser.RULE_functionArgument); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5423; - this.func_arg_with_default(); - this.state = 5428; + this.state = 5275; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 5424; - this.match(PostgreSqlParser.COMMA); - this.state = 5425; - this.func_arg_with_default(); - } - } - this.state = 5430; - 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 func_arg(): Func_argContext { - let localContext = new Func_argContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSqlParser.RULE_func_arg); - try { - this.state = 5444; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5431; - this.arg_class(); - this.state = 5433; + this.state = 5262; + this.argumentClass(); + this.state = 5264; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 5432; - this.param_name(); + this.state = 5263; + this.parameterName(); } break; } - this.state = 5435; - this.func_type(); + this.state = 5266; + this.functionType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5437; - this.param_name(); - this.state = 5439; + this.state = 5268; + this.parameterName(); + this.state = 5270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 5438; - this.arg_class(); + this.state = 5269; + this.argumentClass(); } break; } - this.state = 5441; - this.func_type(); + this.state = 5272; + this.functionType(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5443; - this.func_type(); + this.state = 5274; + this.functionType(); } break; } @@ -30567,24 +28742,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public arg_class(): Arg_classContext { - let localContext = new Arg_classContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSqlParser.RULE_arg_class); + public argumentClass(): ArgumentClassContext { + let localContext = new ArgumentClassContext(this.context, this.state); + this.enterRule(localContext, 578, PostgreSqlParser.RULE_argumentClass); try { - this.state = 5453; + this.state = 5284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.IN_P: this.enterOuterAlt(localContext, 1); { - this.state = 5446; + this.state = 5277; this.match(PostgreSqlParser.IN_P); - this.state = 5448; + this.state = 5279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 5447; + this.state = 5278; this.match(PostgreSqlParser.OUT_P); } break; @@ -30594,21 +28769,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.OUT_P: this.enterOuterAlt(localContext, 2); { - this.state = 5450; + this.state = 5281; this.match(PostgreSqlParser.OUT_P); } break; case PostgreSqlParser.INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 5451; + this.state = 5282; this.match(PostgreSqlParser.INOUT); } break; case PostgreSqlParser.VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 5452; + this.state = 5283; this.match(PostgreSqlParser.VARIADIC); } break; @@ -30630,11 +28805,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public param_name(): Param_nameContext { - let localContext = new Param_nameContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSqlParser.RULE_param_name); + public parameterName(): ParameterNameContext { + let localContext = new ParameterNameContext(this.context, this.state); + this.enterRule(localContext, 580, PostgreSqlParser.RULE_parameterName); try { - this.state = 5459; + this.state = 5290; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -30999,8 +29174,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 5455; - this.type_function_name(); + this.state = 5286; + this.typeFunctionName(); } break; case PostgreSqlParser.REPLACE: @@ -31130,21 +29305,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.TO_NUMBER: this.enterOuterAlt(localContext, 2); { - this.state = 5456; - this.builtin_function_name(); + this.state = 5287; + this.builtinFunctionName(); } break; case PostgreSqlParser.LEFT: this.enterOuterAlt(localContext, 3); { - this.state = 5457; + this.state = 5288; this.match(PostgreSqlParser.LEFT); } break; case PostgreSqlParser.RIGHT: this.enterOuterAlt(localContext, 4); { - this.state = 5458; + this.state = 5289; this.match(PostgreSqlParser.RIGHT); } break; @@ -31166,14 +29341,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_return(): Func_returnContext { - let localContext = new Func_returnContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSqlParser.RULE_func_return); + public functionReturn(): FunctionReturnContext { + let localContext = new FunctionReturnContext(this.context, this.state); + this.enterRule(localContext, 582, PostgreSqlParser.RULE_functionReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 5461; - this.func_type(); + this.state = 5292; + this.functionType(); } } catch (re) { @@ -31190,35 +29365,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_type(): Func_typeContext { - let localContext = new Func_typeContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSqlParser.RULE_func_type); + public functionType(): FunctionTypeContext { + let localContext = new FunctionTypeContext(this.context, this.state); + this.enterRule(localContext, 584, PostgreSqlParser.RULE_functionType); let _la: number; try { - this.state = 5477; + this.state = 5308; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5463; - this.typename(); + this.state = 5294; + this.typeName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5465; + this.state = 5296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 5464; + this.state = 5295; this.match(PostgreSqlParser.SETOF); } } - this.state = 5471; + this.state = 5302; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.REPLACE: @@ -31347,8 +29522,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.TO_DATE: case PostgreSqlParser.TO_NUMBER: { - this.state = 5467; - this.builtin_function_name(); + this.state = 5298; + this.builtinFunctionName(); } break; case PostgreSqlParser.AND: @@ -31712,30 +29887,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 5468; - this.type_function_name(); + this.state = 5299; + this.typeFunctionName(); } break; case PostgreSqlParser.LEFT: { - this.state = 5469; + this.state = 5300; this.match(PostgreSqlParser.LEFT); } break; case PostgreSqlParser.RIGHT: { - this.state = 5470; + this.state = 5301; this.match(PostgreSqlParser.RIGHT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5473; - this.attrs(); - this.state = 5474; + this.state = 5304; + this.attributes(); + this.state = 5305; this.match(PostgreSqlParser.PERCENT); - this.state = 5475; + this.state = 5306; this.match(PostgreSqlParser.TYPE_P); } break; @@ -31755,121 +29930,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_arg_with_default(): Func_arg_with_defaultContext { - let localContext = new Func_arg_with_defaultContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSqlParser.RULE_func_arg_with_default); - let _la: number; + public aggregateArguments(): AggregateArgumentsContext { + let localContext = new AggregateArgumentsContext(this.context, this.state); + this.enterRule(localContext, 586, PostgreSqlParser.RULE_aggregateArguments); try { this.enterOuterAlt(localContext, 1); { - this.state = 5479; - this.func_arg(); - this.state = 5482; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 10 || _la === 53) { - { - this.state = 5480; - _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 53)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 5481; - this.a_expr(); - } - } - - } - } - 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 aggr_arg(): Aggr_argContext { - let localContext = new Aggr_argContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSqlParser.RULE_aggr_arg); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5484; - this.func_arg(); - } - } - 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 aggr_args(): Aggr_argsContext { - let localContext = new Aggr_argsContext(this.context, this.state); - this.enterRule(localContext, 644, PostgreSqlParser.RULE_aggr_args); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5486; + this.state = 5310; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5497; + this.state = 5321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { - this.state = 5487; + this.state = 5311; this.match(PostgreSqlParser.STAR); } break; case 2: { - this.state = 5488; - this.aggr_args_list(); + this.state = 5312; + this.aggregateArgumentsList(); } break; case 3: { - this.state = 5489; + this.state = 5313; this.match(PostgreSqlParser.ORDER); - this.state = 5490; + this.state = 5314; this.match(PostgreSqlParser.BY); - this.state = 5491; - this.aggr_args_list(); + this.state = 5315; + this.aggregateArgumentsList(); } break; case 4: { - this.state = 5492; - this.aggr_args_list(); - this.state = 5493; + this.state = 5316; + this.aggregateArgumentsList(); + this.state = 5317; this.match(PostgreSqlParser.ORDER); - this.state = 5494; + this.state = 5318; this.match(PostgreSqlParser.BY); - this.state = 5495; - this.aggr_args_list(); + this.state = 5319; + this.aggregateArgumentsList(); } break; } - this.state = 5499; + this.state = 5323; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -31887,28 +29994,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public aggr_args_list(): Aggr_args_listContext { - let localContext = new Aggr_args_listContext(this.context, this.state); - this.enterRule(localContext, 646, PostgreSqlParser.RULE_aggr_args_list); + public aggregateArgumentsList(): AggregateArgumentsListContext { + let localContext = new AggregateArgumentsListContext(this.context, this.state); + this.enterRule(localContext, 588, PostgreSqlParser.RULE_aggregateArgumentsList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5501; - this.aggr_arg(); - this.state = 5506; + this.state = 5325; + this.functionArgument(); + this.state = 5330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5502; + this.state = 5326; this.match(PostgreSqlParser.COMMA); - this.state = 5503; - this.aggr_arg(); + this.state = 5327; + this.functionArgument(); } } - this.state = 5508; + this.state = 5332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31928,16 +30035,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext { - let localContext = new Aggregate_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 648, PostgreSqlParser.RULE_aggregate_with_argtypes); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext { + let localContext = new AggregateWithArgumentTypesContext(this.context, this.state); + this.enterRule(localContext, 590, PostgreSqlParser.RULE_aggregateWithArgumentTypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 5509; - this.func_name(); - this.state = 5510; - this.aggr_args(); + this.state = 5333; + this.functionName(); + this.state = 5334; + this.aggregateArguments(); } } catch (re) { @@ -31954,28 +30061,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public aggregate_with_argtypes_list(): Aggregate_with_argtypes_listContext { - let localContext = new Aggregate_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 650, PostgreSqlParser.RULE_aggregate_with_argtypes_list); + public aggregateWithArgumentTypesList(): AggregateWithArgumentTypesListContext { + let localContext = new AggregateWithArgumentTypesListContext(this.context, this.state); + this.enterRule(localContext, 592, PostgreSqlParser.RULE_aggregateWithArgumentTypesList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5512; - this.aggregate_with_argtypes(); - this.state = 5517; + this.state = 5336; + this.aggregateWithArgumentTypes(); + this.state = 5341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5513; + this.state = 5337; this.match(PostgreSqlParser.COMMA); - this.state = 5514; - this.aggregate_with_argtypes(); + this.state = 5338; + this.aggregateWithArgumentTypes(); } } - this.state = 5519; + this.state = 5343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31995,24 +30102,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createfunc_opt_list(): Createfunc_opt_listContext { - let localContext = new Createfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 652, PostgreSqlParser.RULE_createfunc_opt_list); + public createFunctionOptionList(): CreateFunctionOptionListContext { + let localContext = new CreateFunctionOptionListContext(this.context, this.state); + this.enterRule(localContext, 594, PostgreSqlParser.RULE_createFunctionOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5521; + this.state = 5345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5520; - this.createfunc_opt_item(); + this.state = 5344; + this.createFunctionOptionItem(); } } - this.state = 5523; + this.state = 5347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 77 || _la === 104 || _la === 149 || _la === 170 || _la === 205 || _la === 222 || _la === 238 || _la === 241 || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 34619529) !== 0) || _la === 339 || _la === 370 || ((((_la - 443)) & ~0x1F) === 0 && ((1 << (_la - 443)) & 196609) !== 0)); @@ -32035,166 +30142,166 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public common_func_opt_item(): Common_func_opt_itemContext { - let localContext = new Common_func_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 654, PostgreSqlParser.RULE_common_func_opt_item); + public commonFunctionOptionItem(): CommonFunctionOptionItemContext { + let localContext = new CommonFunctionOptionItemContext(this.context, this.state); + this.enterRule(localContext, 596, PostgreSqlParser.RULE_commonFunctionOptionItem); try { - this.state = 5562; + this.state = 5386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5527; + this.state = 5351; this.match(PostgreSqlParser.CALLED); - this.state = 5528; + this.state = 5352; this.match(PostgreSqlParser.ON); - this.state = 5529; + this.state = 5353; this.match(PostgreSqlParser.NULL_P); - this.state = 5530; + this.state = 5354; this.match(PostgreSqlParser.INPUT_P); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5531; + this.state = 5355; this.match(PostgreSqlParser.RETURNS); - this.state = 5532; + this.state = 5356; this.match(PostgreSqlParser.NULL_P); - this.state = 5533; + this.state = 5357; this.match(PostgreSqlParser.ON); - this.state = 5534; + this.state = 5358; this.match(PostgreSqlParser.NULL_P); - this.state = 5535; + this.state = 5359; this.match(PostgreSqlParser.INPUT_P); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5536; + this.state = 5360; this.match(PostgreSqlParser.STRICT_P); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5537; + this.state = 5361; this.match(PostgreSqlParser.IMMUTABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5538; + this.state = 5362; this.match(PostgreSqlParser.STABLE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5539; + this.state = 5363; this.match(PostgreSqlParser.VOLATILE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5540; + this.state = 5364; this.match(PostgreSqlParser.EXTERNAL); - this.state = 5541; + this.state = 5365; this.match(PostgreSqlParser.SECURITY); - this.state = 5542; + this.state = 5366; this.match(PostgreSqlParser.DEFINER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5543; + this.state = 5367; this.match(PostgreSqlParser.EXTERNAL); - this.state = 5544; + this.state = 5368; this.match(PostgreSqlParser.SECURITY); - this.state = 5545; + this.state = 5369; this.match(PostgreSqlParser.INVOKER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5546; + this.state = 5370; this.match(PostgreSqlParser.SECURITY); - this.state = 5547; + this.state = 5371; this.match(PostgreSqlParser.DEFINER); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5548; + this.state = 5372; this.match(PostgreSqlParser.SECURITY); - this.state = 5549; + this.state = 5373; this.match(PostgreSqlParser.INVOKER); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5550; + this.state = 5374; this.match(PostgreSqlParser.LEAKPROOF); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5551; + this.state = 5375; this.match(PostgreSqlParser.NOT); - this.state = 5552; + this.state = 5376; this.match(PostgreSqlParser.LEAKPROOF); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5553; + this.state = 5377; this.match(PostgreSqlParser.COST); - this.state = 5554; - this.numericonly(); + this.state = 5378; + this.numericOnly(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5555; + this.state = 5379; this.match(PostgreSqlParser.ROWS); - this.state = 5556; - this.numericonly(); + this.state = 5380; + this.numericOnly(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5557; + this.state = 5381; this.match(PostgreSqlParser.SUPPORT); - this.state = 5558; - this.any_name(); + this.state = 5382; + this.anyName(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5559; - this.functionsetresetclause(); + this.state = 5383; + this.functionSetResetClause(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5560; + this.state = 5384; this.match(PostgreSqlParser.PARALLEL); - this.state = 5561; - this.colid(); + this.state = 5385; + this.columnId(); } break; } @@ -32213,44 +30320,44 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createfunc_opt_item(): Createfunc_opt_itemContext { - let localContext = new Createfunc_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 656, PostgreSqlParser.RULE_createfunc_opt_item); + public createFunctionOptionItem(): CreateFunctionOptionItemContext { + let localContext = new CreateFunctionOptionItemContext(this.context, this.state); + this.enterRule(localContext, 598, PostgreSqlParser.RULE_createFunctionOptionItem); try { - this.state = 5572; + this.state = 5396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AS: this.enterOuterAlt(localContext, 1); { - this.state = 5564; + this.state = 5388; this.match(PostgreSqlParser.AS); - this.state = 5565; - this.func_as(); + this.state = 5389; + this.functionAs(); } break; case PostgreSqlParser.LANGUAGE: this.enterOuterAlt(localContext, 2); { - this.state = 5566; + this.state = 5390; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5567; - this.nonreservedword_or_sconst(); + this.state = 5391; + this.nonReservedWordOrSconst(); } break; case PostgreSqlParser.TRANSFORM: this.enterOuterAlt(localContext, 3); { - this.state = 5568; + this.state = 5392; this.match(PostgreSqlParser.TRANSFORM); - this.state = 5569; - this.transform_type_list(); + this.state = 5393; + this.transformTypeList(); } break; case PostgreSqlParser.WINDOW: this.enterOuterAlt(localContext, 4); { - this.state = 5570; + this.state = 5394; this.match(PostgreSqlParser.WINDOW); } break; @@ -32272,8 +30379,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PARALLEL: this.enterOuterAlt(localContext, 5); { - this.state = 5571; - this.common_func_opt_item(); + this.state = 5395; + this.commonFunctionOptionItem(); } break; default: @@ -32294,28 +30401,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_as(): Func_asContext { - let localContext = new Func_asContext(this.context, this.state); - this.enterRule(localContext, 658, PostgreSqlParser.RULE_func_as); + public functionAs(): FunctionAsContext { + let localContext = new FunctionAsContext(this.context, this.state); + this.enterRule(localContext, 600, PostgreSqlParser.RULE_functionAs); try { - this.state = 5579; + this.state = 5403; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5574; + this.state = 5398; localContext._def = this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5575; + this.state = 5399; this.sconst(); - this.state = 5576; + this.state = 5400; this.match(PostgreSqlParser.COMMA); - this.state = 5577; + this.state = 5401; this.sconst(); } break; @@ -32335,36 +30442,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transform_type_list(): Transform_type_listContext { - let localContext = new Transform_type_listContext(this.context, this.state); - this.enterRule(localContext, 660, PostgreSqlParser.RULE_transform_type_list); + public transformTypeList(): TransformTypeListContext { + let localContext = new TransformTypeListContext(this.context, this.state); + this.enterRule(localContext, 602, PostgreSqlParser.RULE_transformTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5581; + this.state = 5405; this.match(PostgreSqlParser.FOR); - this.state = 5582; + this.state = 5406; this.match(PostgreSqlParser.TYPE_P); - this.state = 5583; - this.typename(); - this.state = 5590; + this.state = 5407; + this.typeName(); + this.state = 5414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5584; + this.state = 5408; this.match(PostgreSqlParser.COMMA); - this.state = 5585; + this.state = 5409; this.match(PostgreSqlParser.FOR); - this.state = 5586; + this.state = 5410; this.match(PostgreSqlParser.TYPE_P); - this.state = 5587; - this.typename(); + this.state = 5411; + this.typeName(); } } - this.state = 5592; + this.state = 5416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32384,19 +30491,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_definition(): Opt_definitionContext { - let localContext = new Opt_definitionContext(this.context, this.state); - this.enterRule(localContext, 662, PostgreSqlParser.RULE_opt_definition); + public optionalDefinition(): OptionalDefinitionContext { + let localContext = new OptionalDefinitionContext(this.context, this.state); + this.enterRule(localContext, 604, PostgreSqlParser.RULE_optionalDefinition); try { - this.state = 5596; + this.state = 5420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 5593; + this.state = 5417; this.match(PostgreSqlParser.WITH); - this.state = 5594; + this.state = 5418; this.definition(); } break; @@ -32443,16 +30550,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public table_func_column(): Table_func_columnContext { - let localContext = new Table_func_columnContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSqlParser.RULE_table_func_column); + public tableFunctionColumn(): TableFunctionColumnContext { + let localContext = new TableFunctionColumnContext(this.context, this.state); + this.enterRule(localContext, 606, PostgreSqlParser.RULE_tableFunctionColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 5598; - this.param_name(); - this.state = 5599; - this.func_type(); + this.state = 5422; + this.parameterName(); + this.state = 5423; + this.functionType(); } } catch (re) { @@ -32469,28 +30576,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public table_func_column_list(): Table_func_column_listContext { - let localContext = new Table_func_column_listContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSqlParser.RULE_table_func_column_list); + public tableFunctionColumnList(): TableFunctionColumnListContext { + let localContext = new TableFunctionColumnListContext(this.context, this.state); + this.enterRule(localContext, 608, PostgreSqlParser.RULE_tableFunctionColumnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5601; - this.table_func_column(); - this.state = 5606; + this.state = 5425; + this.tableFunctionColumn(); + this.state = 5430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5602; + this.state = 5426; this.match(PostgreSqlParser.COMMA); - this.state = 5603; - this.table_func_column(); + this.state = 5427; + this.tableFunctionColumn(); } } - this.state = 5608; + this.state = 5432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32510,16 +30617,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterfunctionstmt(): AlterfunctionstmtContext { - let localContext = new AlterfunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSqlParser.RULE_alterfunctionstmt); + public alterFunctionStatement(): AlterFunctionStatementContext { + let localContext = new AlterFunctionStatementContext(this.context, this.state); + this.enterRule(localContext, 610, PostgreSqlParser.RULE_alterFunctionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5609; + this.state = 5433; this.match(PostgreSqlParser.ALTER); - this.state = 5610; + this.state = 5434; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 289 || _la === 442)) { this.errorHandler.recoverInline(this); @@ -32528,89 +30635,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5611; - this.function_with_argtypes(); - this.state = 5612; - this.alterfunc_opt_list(); - this.state = 5613; - this.opt_restrict(); - } - } - 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 alterfunc_opt_list(): Alterfunc_opt_listContext { - let localContext = new Alterfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 670, PostgreSqlParser.RULE_alterfunc_opt_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5616; + this.state = 5435; + this.functionWithArgumentTypes(); + this.state = 5437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5615; - this.common_func_opt_item(); + this.state = 5436; + this.commonFunctionOptionItem(); } } - this.state = 5618; + this.state = 5439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 77 || _la === 149 || _la === 170 || _la === 205 || _la === 222 || _la === 241 || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 34619529) !== 0) || _la === 339 || _la === 370 || _la === 459 || _la === 460); - } - } - 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 opt_restrict(): Opt_restrictContext { - let localContext = new Opt_restrictContext(this.context, this.state); - this.enterRule(localContext, 672, PostgreSqlParser.RULE_opt_restrict); - try { - this.state = 5622; + this.state = 5442; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.RESTRICT: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + if (_la === 308) { { - this.state = 5620; + this.state = 5441; this.match(PostgreSqlParser.RESTRICT); } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + } + } } catch (re) { @@ -32627,101 +30677,101 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public removefuncstmt(): RemovefuncstmtContext { - let localContext = new RemovefuncstmtContext(this.context, this.state); - this.enterRule(localContext, 674, PostgreSqlParser.RULE_removefuncstmt); + public removeFunctionStatement(): RemoveFunctionStatementContext { + let localContext = new RemoveFunctionStatementContext(this.context, this.state); + this.enterRule(localContext, 612, PostgreSqlParser.RULE_removeFunctionStatement); try { - this.state = 5660; + this.state = 5480; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5624; + this.state = 5444; this.match(PostgreSqlParser.DROP); - this.state = 5625; + this.state = 5445; this.match(PostgreSqlParser.FUNCTION); - this.state = 5626; - this.function_with_argtypes_list(); - this.state = 5627; - this.opt_drop_behavior(); + this.state = 5446; + this.functionWithArgumentTypesList(); + this.state = 5447; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5629; + this.state = 5449; this.match(PostgreSqlParser.DROP); - this.state = 5630; + this.state = 5450; this.match(PostgreSqlParser.FUNCTION); - this.state = 5631; + this.state = 5451; this.match(PostgreSqlParser.IF_P); - this.state = 5632; + this.state = 5452; this.match(PostgreSqlParser.EXISTS); - this.state = 5633; - this.function_with_argtypes_list(); - this.state = 5634; - this.opt_drop_behavior(); + this.state = 5453; + this.functionWithArgumentTypesList(); + this.state = 5454; + this.optionalDropBehavior(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5636; + this.state = 5456; this.match(PostgreSqlParser.DROP); - this.state = 5637; + this.state = 5457; this.match(PostgreSqlParser.PROCEDURE); - this.state = 5638; - this.function_with_argtypes_list(); - this.state = 5639; - this.opt_drop_behavior(); + this.state = 5458; + this.functionWithArgumentTypesList(); + this.state = 5459; + this.optionalDropBehavior(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5641; + this.state = 5461; this.match(PostgreSqlParser.DROP); - this.state = 5642; + this.state = 5462; this.match(PostgreSqlParser.PROCEDURE); - this.state = 5643; + this.state = 5463; this.match(PostgreSqlParser.IF_P); - this.state = 5644; + this.state = 5464; this.match(PostgreSqlParser.EXISTS); - this.state = 5645; - this.function_with_argtypes_list(); - this.state = 5646; - this.opt_drop_behavior(); + this.state = 5465; + this.functionWithArgumentTypesList(); + this.state = 5466; + this.optionalDropBehavior(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5648; + this.state = 5468; this.match(PostgreSqlParser.DROP); - this.state = 5649; + this.state = 5469; this.match(PostgreSqlParser.ROUTINE); - this.state = 5650; - this.function_with_argtypes_list(); - this.state = 5651; - this.opt_drop_behavior(); + this.state = 5470; + this.functionWithArgumentTypesList(); + this.state = 5471; + this.optionalDropBehavior(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5653; + this.state = 5473; this.match(PostgreSqlParser.DROP); - this.state = 5654; + this.state = 5474; this.match(PostgreSqlParser.ROUTINE); - this.state = 5655; + this.state = 5475; this.match(PostgreSqlParser.IF_P); - this.state = 5656; + this.state = 5476; this.match(PostgreSqlParser.EXISTS); - this.state = 5657; - this.function_with_argtypes_list(); - this.state = 5658; - this.opt_drop_behavior(); + this.state = 5477; + this.functionWithArgumentTypesList(); + this.state = 5478; + this.optionalDropBehavior(); } break; } @@ -32740,41 +30790,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public removeaggrstmt(): RemoveaggrstmtContext { - let localContext = new RemoveaggrstmtContext(this.context, this.state); - this.enterRule(localContext, 676, PostgreSqlParser.RULE_removeaggrstmt); + public removeAggregateStatement(): RemoveAggregateStatementContext { + let localContext = new RemoveAggregateStatementContext(this.context, this.state); + this.enterRule(localContext, 614, PostgreSqlParser.RULE_removeAggregateStatement); try { - this.state = 5674; + this.state = 5494; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5662; + this.state = 5482; this.match(PostgreSqlParser.DROP); - this.state = 5663; + this.state = 5483; this.match(PostgreSqlParser.AGGREGATE); - this.state = 5664; - this.aggregate_with_argtypes_list(); - this.state = 5665; - this.opt_drop_behavior(); + this.state = 5484; + this.aggregateWithArgumentTypesList(); + this.state = 5485; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5667; + this.state = 5487; this.match(PostgreSqlParser.DROP); - this.state = 5668; + this.state = 5488; this.match(PostgreSqlParser.AGGREGATE); - this.state = 5669; + this.state = 5489; this.match(PostgreSqlParser.IF_P); - this.state = 5670; + this.state = 5490; this.match(PostgreSqlParser.EXISTS); - this.state = 5671; - this.aggregate_with_argtypes_list(); - this.state = 5672; - this.opt_drop_behavior(); + this.state = 5491; + this.aggregateWithArgumentTypesList(); + this.state = 5492; + this.optionalDropBehavior(); } break; } @@ -32793,41 +30843,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public removeoperstmt(): RemoveoperstmtContext { - let localContext = new RemoveoperstmtContext(this.context, this.state); - this.enterRule(localContext, 678, PostgreSqlParser.RULE_removeoperstmt); + public removeOperatorStatement(): RemoveOperatorStatementContext { + let localContext = new RemoveOperatorStatementContext(this.context, this.state); + this.enterRule(localContext, 616, PostgreSqlParser.RULE_removeOperatorStatement); try { - this.state = 5688; + this.state = 5508; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5676; + this.state = 5496; this.match(PostgreSqlParser.DROP); - this.state = 5677; + this.state = 5497; this.match(PostgreSqlParser.OPERATOR); - this.state = 5678; - this.operator_with_argtypes_list(); - this.state = 5679; - this.opt_drop_behavior(); + this.state = 5498; + this.operatorWithArgumentTypesList(); + this.state = 5499; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5681; + this.state = 5501; this.match(PostgreSqlParser.DROP); - this.state = 5682; + this.state = 5502; this.match(PostgreSqlParser.OPERATOR); - this.state = 5683; + this.state = 5503; this.match(PostgreSqlParser.IF_P); - this.state = 5684; + this.state = 5504; this.match(PostgreSqlParser.EXISTS); - this.state = 5685; - this.operator_with_argtypes_list(); - this.state = 5686; - this.opt_drop_behavior(); + this.state = 5505; + this.operatorWithArgumentTypesList(); + this.state = 5506; + this.optionalDropBehavior(); } break; } @@ -32846,66 +30896,66 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public oper_argtypes(): Oper_argtypesContext { - let localContext = new Oper_argtypesContext(this.context, this.state); - this.enterRule(localContext, 680, PostgreSqlParser.RULE_oper_argtypes); + public operatorArgumentTypes(): OperatorArgumentTypesContext { + let localContext = new OperatorArgumentTypesContext(this.context, this.state); + this.enterRule(localContext, 618, PostgreSqlParser.RULE_operatorArgumentTypes); try { - this.state = 5712; + this.state = 5532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5690; + this.state = 5510; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5691; - this.typename(); - this.state = 5692; + this.state = 5511; + this.typeName(); + this.state = 5512; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5694; + this.state = 5514; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5695; - this.typename(); - this.state = 5696; + this.state = 5515; + this.typeName(); + this.state = 5516; this.match(PostgreSqlParser.COMMA); - this.state = 5697; - this.typename(); - this.state = 5698; + this.state = 5517; + this.typeName(); + this.state = 5518; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5700; + this.state = 5520; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5701; + this.state = 5521; this.match(PostgreSqlParser.NONE); - this.state = 5702; + this.state = 5522; this.match(PostgreSqlParser.COMMA); - this.state = 5703; - this.typename(); - this.state = 5704; + this.state = 5523; + this.typeName(); + this.state = 5524; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5706; + this.state = 5526; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5707; - this.typename(); - this.state = 5708; + this.state = 5527; + this.typeName(); + this.state = 5528; this.match(PostgreSqlParser.COMMA); - this.state = 5709; + this.state = 5529; this.match(PostgreSqlParser.NONE); - this.state = 5710; + this.state = 5530; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -32925,31 +30975,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public any_operator(): Any_operatorContext { - let localContext = new Any_operatorContext(this.context, this.state); - this.enterRule(localContext, 682, PostgreSqlParser.RULE_any_operator); + public anyOperator(): AnyOperatorContext { + let localContext = new AnyOperatorContext(this.context, this.state); + this.enterRule(localContext, 620, PostgreSqlParser.RULE_anyOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5719; + this.state = 5539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { { { - this.state = 5714; - this.colid(); - this.state = 5715; + this.state = 5534; + this.columnId(); + this.state = 5535; this.match(PostgreSqlParser.DOT); } } - this.state = 5721; + this.state = 5541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5722; - this.all_op(); + this.state = 5542; + this.allOperator(); } } catch (re) { @@ -32966,28 +31016,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public operator_with_argtypes_list(): Operator_with_argtypes_listContext { - let localContext = new Operator_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 684, PostgreSqlParser.RULE_operator_with_argtypes_list); + public operatorWithArgumentTypesList(): OperatorWithArgumentTypesListContext { + let localContext = new OperatorWithArgumentTypesListContext(this.context, this.state); + this.enterRule(localContext, 622, PostgreSqlParser.RULE_operatorWithArgumentTypesList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5724; - this.operator_with_argtypes(); - this.state = 5729; + this.state = 5544; + this.operatorWithArgumentTypes(); + this.state = 5549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5725; + this.state = 5545; this.match(PostgreSqlParser.COMMA); - this.state = 5726; - this.operator_with_argtypes(); + this.state = 5546; + this.operatorWithArgumentTypes(); } } - this.state = 5731; + this.state = 5551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33007,16 +31057,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public operator_with_argtypes(): Operator_with_argtypesContext { - let localContext = new Operator_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 686, PostgreSqlParser.RULE_operator_with_argtypes); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext { + let localContext = new OperatorWithArgumentTypesContext(this.context, this.state); + this.enterRule(localContext, 624, PostgreSqlParser.RULE_operatorWithArgumentTypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 5732; - this.any_operator(); - this.state = 5733; - this.oper_argtypes(); + this.state = 5552; + this.anyOperator(); + this.state = 5553; + this.operatorArgumentTypes(); } } catch (re) { @@ -33033,16 +31083,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dostmt(): DostmtContext { - let localContext = new DostmtContext(this.context, this.state); - this.enterRule(localContext, 688, PostgreSqlParser.RULE_dostmt); + public doStatement(): DoStatementContext { + let localContext = new DoStatementContext(this.context, this.state); + this.enterRule(localContext, 626, PostgreSqlParser.RULE_doStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5735; + this.state = 5555; this.match(PostgreSqlParser.DO); - this.state = 5736; - this.dostmt_opt_list(); + this.state = 5556; + this.doStatementOptionsList(); } } catch (re) { @@ -33059,24 +31109,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dostmt_opt_list(): Dostmt_opt_listContext { - let localContext = new Dostmt_opt_listContext(this.context, this.state); - this.enterRule(localContext, 690, PostgreSqlParser.RULE_dostmt_opt_list); + public doStatementOptionsList(): DoStatementOptionsListContext { + let localContext = new DoStatementOptionsListContext(this.context, this.state); + this.enterRule(localContext, 628, PostgreSqlParser.RULE_doStatementOptionsList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5739; + this.state = 5559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5738; - this.dostmt_opt_item(); + this.state = 5558; + this.doStatementOptionItem(); } } - this.state = 5741; + this.state = 5561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 238 || ((((_la - 645)) & ~0x1F) === 0 && ((1 << (_la - 645)) & 67108885) !== 0)); @@ -33096,11 +31146,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dostmt_opt_item(): Dostmt_opt_itemContext { - let localContext = new Dostmt_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSqlParser.RULE_dostmt_opt_item); + public doStatementOptionItem(): DoStatementOptionItemContext { + let localContext = new DoStatementOptionItemContext(this.context, this.state); + this.enterRule(localContext, 630, PostgreSqlParser.RULE_doStatementOptionItem); try { - this.state = 5746; + this.state = 5566; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -33109,17 +31159,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5743; + this.state = 5563; this.sconst(); } break; case PostgreSqlParser.LANGUAGE: this.enterOuterAlt(localContext, 2); { - this.state = 5744; + this.state = 5564; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5745; - this.nonreservedword_or_sconst(); + this.state = 5565; + this.nonReservedWordOrSconst(); } break; default: @@ -33140,88 +31190,88 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createcaststmt(): CreatecaststmtContext { - let localContext = new CreatecaststmtContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSqlParser.RULE_createcaststmt); + public createCastStatement(): CreateCastStatementContext { + let localContext = new CreateCastStatementContext(this.context, this.state); + this.enterRule(localContext, 632, PostgreSqlParser.RULE_createCastStatement); try { - this.state = 5782; + this.state = 5602; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5748; + this.state = 5568; this.match(PostgreSqlParser.CREATE); - this.state = 5749; + this.state = 5569; this.match(PostgreSqlParser.CAST); - this.state = 5750; + this.state = 5570; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5751; - this.typename(); - this.state = 5752; + this.state = 5571; + this.typeName(); + this.state = 5572; this.match(PostgreSqlParser.AS); - this.state = 5753; - this.typename(); - this.state = 5754; + this.state = 5573; + this.typeName(); + this.state = 5574; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5755; + this.state = 5575; this.match(PostgreSqlParser.WITH); - this.state = 5756; + this.state = 5576; this.match(PostgreSqlParser.FUNCTION); - this.state = 5757; - this.function_with_argtypes(); - this.state = 5758; - this.cast_context(); + this.state = 5577; + this.functionWithArgumentTypes(); + this.state = 5578; + this.castContext(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5760; + this.state = 5580; this.match(PostgreSqlParser.CREATE); - this.state = 5761; + this.state = 5581; this.match(PostgreSqlParser.CAST); - this.state = 5762; + this.state = 5582; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5763; - this.typename(); - this.state = 5764; + this.state = 5583; + this.typeName(); + this.state = 5584; this.match(PostgreSqlParser.AS); - this.state = 5765; - this.typename(); - this.state = 5766; + this.state = 5585; + this.typeName(); + this.state = 5586; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5767; + this.state = 5587; this.match(PostgreSqlParser.WITHOUT); - this.state = 5768; + this.state = 5588; this.match(PostgreSqlParser.FUNCTION); - this.state = 5769; - this.cast_context(); + this.state = 5589; + this.castContext(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5771; + this.state = 5591; this.match(PostgreSqlParser.CREATE); - this.state = 5772; + this.state = 5592; this.match(PostgreSqlParser.CAST); - this.state = 5773; + this.state = 5593; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5774; - this.typename(); - this.state = 5775; + this.state = 5594; + this.typeName(); + this.state = 5595; this.match(PostgreSqlParser.AS); - this.state = 5776; - this.typename(); - this.state = 5777; + this.state = 5596; + this.typeName(); + this.state = 5597; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5778; + this.state = 5598; this.match(PostgreSqlParser.WITH); - this.state = 5779; + this.state = 5599; this.match(PostgreSqlParser.INOUT); - this.state = 5780; - this.cast_context(); + this.state = 5600; + this.castContext(); } break; } @@ -33240,28 +31290,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public cast_context(): Cast_contextContext { - let localContext = new Cast_contextContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSqlParser.RULE_cast_context); + public castContext(): CastContextContext { + let localContext = new CastContextContext(this.context, this.state); + this.enterRule(localContext, 634, PostgreSqlParser.RULE_castContext); try { - this.state = 5789; + this.state = 5609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5784; + this.state = 5604; this.match(PostgreSqlParser.AS); - this.state = 5785; + this.state = 5605; this.match(PostgreSqlParser.IMPLICIT_P); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5786; + this.state = 5606; this.match(PostgreSqlParser.AS); - this.state = 5787; + this.state = 5607; this.match(PostgreSqlParser.ASSIGNMENT); } break; @@ -33287,30 +31337,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropcaststmt(): DropcaststmtContext { - let localContext = new DropcaststmtContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSqlParser.RULE_dropcaststmt); + public dropCastStatement(): DropCastStatementContext { + let localContext = new DropCastStatementContext(this.context, this.state); + this.enterRule(localContext, 636, PostgreSqlParser.RULE_dropCastStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5791; + this.state = 5611; this.match(PostgreSqlParser.DROP); - this.state = 5792; + this.state = 5612; this.match(PostgreSqlParser.CAST); - this.state = 5793; - this.opt_if_exists(); - this.state = 5794; + this.state = 5613; + this.optionalIfExists(); + this.state = 5614; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5795; - this.typename(); - this.state = 5796; + this.state = 5615; + this.typeName(); + this.state = 5616; this.match(PostgreSqlParser.AS); - this.state = 5797; - this.typename(); - this.state = 5798; + this.state = 5617; + this.typeName(); + this.state = 5618; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5799; - this.opt_drop_behavior(); + this.state = 5619; + this.optionalDropBehavior(); } } catch (re) { @@ -33327,19 +31377,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_if_exists(): Opt_if_existsContext { - let localContext = new Opt_if_existsContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSqlParser.RULE_opt_if_exists); + public optionalIfExists(): OptionalIfExistsContext { + let localContext = new OptionalIfExistsContext(this.context, this.state); + this.enterRule(localContext, 638, PostgreSqlParser.RULE_optionalIfExists); try { - this.state = 5804; + this.state = 5624; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.IF_P: this.enterOuterAlt(localContext, 1); { - this.state = 5801; + this.state = 5621; this.match(PostgreSqlParser.IF_P); - this.state = 5802; + this.state = 5622; this.match(PostgreSqlParser.EXISTS); } break; @@ -33368,31 +31418,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createtransformstmt(): CreatetransformstmtContext { - let localContext = new CreatetransformstmtContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSqlParser.RULE_createtransformstmt); + public createTransformStatement(): CreateTransformStatementContext { + let localContext = new CreateTransformStatementContext(this.context, this.state); + this.enterRule(localContext, 640, PostgreSqlParser.RULE_createTransformStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5806; + this.state = 5626; this.match(PostgreSqlParser.CREATE); - this.state = 5807; - this.opt_or_replace(); - this.state = 5808; + this.state = 5627; + this.optionalOrReplace(); + this.state = 5628; this.match(PostgreSqlParser.TRANSFORM); - this.state = 5809; + this.state = 5629; this.match(PostgreSqlParser.FOR); - this.state = 5810; - this.typename(); - this.state = 5811; + this.state = 5630; + this.typeName(); + this.state = 5631; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5812; + this.state = 5632; this.name(); - this.state = 5813; + this.state = 5633; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5814; - this.transform_element_list(); - this.state = 5815; + this.state = 5634; + this.transformElementList(); + this.state = 5635; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33410,95 +31460,95 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transform_element_list(): Transform_element_listContext { - let localContext = new Transform_element_listContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSqlParser.RULE_transform_element_list); + public transformElementList(): TransformElementListContext { + let localContext = new TransformElementListContext(this.context, this.state); + this.enterRule(localContext, 642, PostgreSqlParser.RULE_transformElementList); try { - this.state = 5851; + this.state = 5671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5817; + this.state = 5637; this.match(PostgreSqlParser.FROM); - this.state = 5818; + this.state = 5638; this.match(PostgreSqlParser.SQL_P); - this.state = 5819; + this.state = 5639; this.match(PostgreSqlParser.WITH); - this.state = 5820; + this.state = 5640; this.match(PostgreSqlParser.FUNCTION); - this.state = 5821; - this.function_with_argtypes(); - this.state = 5822; + this.state = 5641; + this.functionWithArgumentTypes(); + this.state = 5642; this.match(PostgreSqlParser.COMMA); - this.state = 5823; + this.state = 5643; this.match(PostgreSqlParser.TO); - this.state = 5824; + this.state = 5644; this.match(PostgreSqlParser.SQL_P); - this.state = 5825; + this.state = 5645; this.match(PostgreSqlParser.WITH); - this.state = 5826; + this.state = 5646; this.match(PostgreSqlParser.FUNCTION); - this.state = 5827; - this.function_with_argtypes(); + this.state = 5647; + this.functionWithArgumentTypes(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5829; + this.state = 5649; this.match(PostgreSqlParser.TO); - this.state = 5830; + this.state = 5650; this.match(PostgreSqlParser.SQL_P); - this.state = 5831; + this.state = 5651; this.match(PostgreSqlParser.WITH); - this.state = 5832; + this.state = 5652; this.match(PostgreSqlParser.FUNCTION); - this.state = 5833; - this.function_with_argtypes(); - this.state = 5834; + this.state = 5653; + this.functionWithArgumentTypes(); + this.state = 5654; this.match(PostgreSqlParser.COMMA); - this.state = 5835; + this.state = 5655; this.match(PostgreSqlParser.FROM); - this.state = 5836; + this.state = 5656; this.match(PostgreSqlParser.SQL_P); - this.state = 5837; + this.state = 5657; this.match(PostgreSqlParser.WITH); - this.state = 5838; + this.state = 5658; this.match(PostgreSqlParser.FUNCTION); - this.state = 5839; - this.function_with_argtypes(); + this.state = 5659; + this.functionWithArgumentTypes(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5841; + this.state = 5661; this.match(PostgreSqlParser.FROM); - this.state = 5842; + this.state = 5662; this.match(PostgreSqlParser.SQL_P); - this.state = 5843; + this.state = 5663; this.match(PostgreSqlParser.WITH); - this.state = 5844; + this.state = 5664; this.match(PostgreSqlParser.FUNCTION); - this.state = 5845; - this.function_with_argtypes(); + this.state = 5665; + this.functionWithArgumentTypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5846; + this.state = 5666; this.match(PostgreSqlParser.TO); - this.state = 5847; + this.state = 5667; this.match(PostgreSqlParser.SQL_P); - this.state = 5848; + this.state = 5668; this.match(PostgreSqlParser.WITH); - this.state = 5849; + this.state = 5669; this.match(PostgreSqlParser.FUNCTION); - this.state = 5850; - this.function_with_argtypes(); + this.state = 5670; + this.functionWithArgumentTypes(); } break; } @@ -33517,28 +31567,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public droptransformstmt(): DroptransformstmtContext { - let localContext = new DroptransformstmtContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSqlParser.RULE_droptransformstmt); + public dropTransformStatement(): DropTransformStatementContext { + let localContext = new DropTransformStatementContext(this.context, this.state); + this.enterRule(localContext, 644, PostgreSqlParser.RULE_dropTransformStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5853; + this.state = 5673; this.match(PostgreSqlParser.DROP); - this.state = 5854; + this.state = 5674; this.match(PostgreSqlParser.TRANSFORM); - this.state = 5855; - this.opt_if_exists(); - this.state = 5856; + this.state = 5675; + this.optionalIfExists(); + this.state = 5676; this.match(PostgreSqlParser.FOR); - this.state = 5857; - this.typename(); - this.state = 5858; + this.state = 5677; + this.typeName(); + this.state = 5678; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5859; + this.state = 5679; this.name(); - this.state = 5860; - this.opt_drop_behavior(); + this.state = 5680; + this.optionalDropBehavior(); } } catch (re) { @@ -33555,74 +31605,74 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reindexstmt(): ReindexstmtContext { - let localContext = new ReindexstmtContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSqlParser.RULE_reindexstmt); + public reindexStatement(): ReindexStatementContext { + let localContext = new ReindexStatementContext(this.context, this.state); + this.enterRule(localContext, 646, PostgreSqlParser.RULE_reindexStatement); try { - this.state = 5888; + this.state = 5708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5862; + this.state = 5682; this.match(PostgreSqlParser.REINDEX); - this.state = 5863; - this.reindex_target_type(); - this.state = 5864; - this.opt_concurrently(); - this.state = 5865; - this.qualified_name(); + this.state = 5683; + this.reindexTargetType(); + this.state = 5684; + this.optionalConcurrently(); + this.state = 5685; + this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5867; + this.state = 5687; this.match(PostgreSqlParser.REINDEX); - this.state = 5868; - this.reindex_target_multitable(); - this.state = 5869; - this.opt_concurrently(); - this.state = 5870; + this.state = 5688; + this.reindexTargetMultiTable(); + this.state = 5689; + this.optionalConcurrently(); + this.state = 5690; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5872; + this.state = 5692; this.match(PostgreSqlParser.REINDEX); - this.state = 5873; + this.state = 5693; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5874; - this.reindex_option_list(); - this.state = 5875; + this.state = 5694; + this.reindexOptionList(); + this.state = 5695; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5876; - this.reindex_target_type(); - this.state = 5877; - this.opt_concurrently(); - this.state = 5878; - this.qualified_name(); + this.state = 5696; + this.reindexTargetType(); + this.state = 5697; + this.optionalConcurrently(); + this.state = 5698; + this.qualifiedName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5880; + this.state = 5700; this.match(PostgreSqlParser.REINDEX); - this.state = 5881; + this.state = 5701; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5882; - this.reindex_option_list(); - this.state = 5883; + this.state = 5702; + this.reindexOptionList(); + this.state = 5703; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5884; - this.reindex_target_multitable(); - this.state = 5885; - this.opt_concurrently(); - this.state = 5886; + this.state = 5704; + this.reindexTargetMultiTable(); + this.state = 5705; + this.optionalConcurrently(); + this.state = 5706; this.name(); } break; @@ -33642,14 +31692,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reindex_target_type(): Reindex_target_typeContext { - let localContext = new Reindex_target_typeContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSqlParser.RULE_reindex_target_type); + public reindexTargetType(): ReindexTargetTypeContext { + let localContext = new ReindexTargetTypeContext(this.context, this.state); + this.enterRule(localContext, 648, PostgreSqlParser.RULE_reindexTargetType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5890; + this.state = 5710; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 175 || _la === 226 || _la === 316 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -33674,14 +31724,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reindex_target_multitable(): Reindex_target_multitableContext { - let localContext = new Reindex_target_multitableContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSqlParser.RULE_reindex_target_multitable); + public reindexTargetMultiTable(): ReindexTargetMultiTableContext { + let localContext = new ReindexTargetMultiTableContext(this.context, this.state); + this.enterRule(localContext, 650, PostgreSqlParser.RULE_reindexTargetMultiTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5892; + this.state = 5712; _la = this.tokenStream.LA(1); if(!(_la === 175 || _la === 316 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -33706,28 +31756,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reindex_option_list(): Reindex_option_listContext { - let localContext = new Reindex_option_listContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSqlParser.RULE_reindex_option_list); + public reindexOptionList(): ReindexOptionListContext { + let localContext = new ReindexOptionListContext(this.context, this.state); + this.enterRule(localContext, 652, PostgreSqlParser.RULE_reindexOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5894; - this.reindex_option_elem(); - this.state = 5899; + this.state = 5714; + this.reindexOptionElement(); + this.state = 5719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5895; + this.state = 5715; this.match(PostgreSqlParser.COMMA); - this.state = 5896; - this.reindex_option_elem(); + this.state = 5716; + this.reindexOptionElement(); } } - this.state = 5901; + this.state = 5721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33747,14 +31797,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reindex_option_elem(): Reindex_option_elemContext { - let localContext = new Reindex_option_elemContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSqlParser.RULE_reindex_option_elem); + public reindexOptionElement(): ReindexOptionElementContext { + let localContext = new ReindexOptionElementContext(this.context, this.state); + this.enterRule(localContext, 654, PostgreSqlParser.RULE_reindexOptionElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5902; + this.state = 5722; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 128 || _la === 344)) { this.errorHandler.recoverInline(this); @@ -33779,41 +31829,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altertblspcstmt(): AltertblspcstmtContext { - let localContext = new AltertblspcstmtContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSqlParser.RULE_altertblspcstmt); + public alterTablespaceStatement(): AlterTablespaceStatementContext { + let localContext = new AlterTablespaceStatementContext(this.context, this.state); + this.enterRule(localContext, 656, PostgreSqlParser.RULE_alterTablespaceStatement); try { - this.state = 5916; + this.state = 5736; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5904; + this.state = 5724; this.match(PostgreSqlParser.ALTER); - this.state = 5905; + this.state = 5725; this.match(PostgreSqlParser.TABLESPACE); - this.state = 5906; + this.state = 5726; this.name(); - this.state = 5907; + this.state = 5727; this.match(PostgreSqlParser.SET); - this.state = 5908; - this.reloptions(); + this.state = 5728; + this.relOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5910; + this.state = 5730; this.match(PostgreSqlParser.ALTER); - this.state = 5911; + this.state = 5731; this.match(PostgreSqlParser.TABLESPACE); - this.state = 5912; + this.state = 5732; this.name(); - this.state = 5913; + this.state = 5733; this.match(PostgreSqlParser.RESET); - this.state = 5914; - this.reloptions(); + this.state = 5734; + this.relOptions(); } break; } @@ -33832,1112 +31882,1112 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public renamestmt(): RenamestmtContext { - let localContext = new RenamestmtContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSqlParser.RULE_renamestmt); + public renameStatement(): RenameStatementContext { + let localContext = new RenameStatementContext(this.context, this.state); + this.enterRule(localContext, 658, PostgreSqlParser.RULE_renameStatement); try { - this.state = 6386; + this.state = 6206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5918; + this.state = 5738; this.match(PostgreSqlParser.ALTER); - this.state = 5919; + this.state = 5739; this.match(PostgreSqlParser.AGGREGATE); - this.state = 5920; - this.aggregate_with_argtypes(); - this.state = 5921; + this.state = 5740; + this.aggregateWithArgumentTypes(); + this.state = 5741; this.match(PostgreSqlParser.RENAME); - this.state = 5922; + this.state = 5742; this.match(PostgreSqlParser.TO); - this.state = 5923; + this.state = 5743; this.name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5925; + this.state = 5745; this.match(PostgreSqlParser.ALTER); - this.state = 5926; + this.state = 5746; this.match(PostgreSqlParser.COLLATION); - this.state = 5927; - this.any_name(); - this.state = 5928; + this.state = 5747; + this.anyName(); + this.state = 5748; this.match(PostgreSqlParser.RENAME); - this.state = 5929; + this.state = 5749; this.match(PostgreSqlParser.TO); - this.state = 5930; + this.state = 5750; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5932; + this.state = 5752; this.match(PostgreSqlParser.ALTER); - this.state = 5933; + this.state = 5753; this.match(PostgreSqlParser.CONVERSION_P); - this.state = 5934; - this.any_name(); - this.state = 5935; + this.state = 5754; + this.anyName(); + this.state = 5755; this.match(PostgreSqlParser.RENAME); - this.state = 5936; + this.state = 5756; this.match(PostgreSqlParser.TO); - this.state = 5937; + this.state = 5757; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5939; + this.state = 5759; this.match(PostgreSqlParser.ALTER); - this.state = 5940; + this.state = 5760; this.match(PostgreSqlParser.DATABASE); - this.state = 5941; + this.state = 5761; this.name(); - this.state = 5942; + this.state = 5762; this.match(PostgreSqlParser.RENAME); - this.state = 5943; + this.state = 5763; this.match(PostgreSqlParser.TO); - this.state = 5944; + this.state = 5764; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5946; + this.state = 5766; this.match(PostgreSqlParser.ALTER); - this.state = 5947; + this.state = 5767; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 5948; - this.any_name(); - this.state = 5949; + this.state = 5768; + this.anyName(); + this.state = 5769; this.match(PostgreSqlParser.RENAME); - this.state = 5950; + this.state = 5770; this.match(PostgreSqlParser.TO); - this.state = 5951; + this.state = 5771; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5953; + this.state = 5773; this.match(PostgreSqlParser.ALTER); - this.state = 5954; + this.state = 5774; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 5955; - this.any_name(); - this.state = 5956; + this.state = 5775; + this.anyName(); + this.state = 5776; this.match(PostgreSqlParser.RENAME); - this.state = 5957; + this.state = 5777; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 5958; + this.state = 5778; this.name(); - this.state = 5959; + this.state = 5779; this.match(PostgreSqlParser.TO); - this.state = 5960; + this.state = 5780; this.name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5962; + this.state = 5782; this.match(PostgreSqlParser.ALTER); - this.state = 5963; + this.state = 5783; this.match(PostgreSqlParser.FOREIGN); - this.state = 5964; + this.state = 5784; this.match(PostgreSqlParser.DATA_P); - this.state = 5965; + this.state = 5785; this.match(PostgreSqlParser.WRAPPER); - this.state = 5966; + this.state = 5786; this.name(); - this.state = 5967; + this.state = 5787; this.match(PostgreSqlParser.RENAME); - this.state = 5968; + this.state = 5788; this.match(PostgreSqlParser.TO); - this.state = 5969; + this.state = 5789; this.name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5971; + this.state = 5791; this.match(PostgreSqlParser.ALTER); - this.state = 5972; + this.state = 5792; this.match(PostgreSqlParser.FUNCTION); - this.state = 5973; - this.function_with_argtypes(); - this.state = 5974; + this.state = 5793; + this.functionWithArgumentTypes(); + this.state = 5794; this.match(PostgreSqlParser.RENAME); - this.state = 5975; + this.state = 5795; this.match(PostgreSqlParser.TO); - this.state = 5976; + this.state = 5796; this.name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5978; + this.state = 5798; this.match(PostgreSqlParser.ALTER); - this.state = 5979; + this.state = 5799; this.match(PostgreSqlParser.GROUP_P); - this.state = 5980; - this.roleid(); - this.state = 5981; + this.state = 5800; + this.roleId(); + this.state = 5801; this.match(PostgreSqlParser.RENAME); - this.state = 5982; + this.state = 5802; this.match(PostgreSqlParser.TO); - this.state = 5983; - this.roleid(); + this.state = 5803; + this.roleId(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5985; + this.state = 5805; this.match(PostgreSqlParser.ALTER); - this.state = 5986; - this.opt_procedural(); - this.state = 5987; + this.state = 5806; + this.optionalProcedural(); + this.state = 5807; this.match(PostgreSqlParser.LANGUAGE); - this.state = 5988; + this.state = 5808; this.name(); - this.state = 5989; + this.state = 5809; this.match(PostgreSqlParser.RENAME); - this.state = 5990; + this.state = 5810; this.match(PostgreSqlParser.TO); - this.state = 5991; + this.state = 5811; this.name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5993; + this.state = 5813; this.match(PostgreSqlParser.ALTER); - this.state = 5994; + this.state = 5814; this.match(PostgreSqlParser.OPERATOR); - this.state = 5995; + this.state = 5815; this.match(PostgreSqlParser.CLASS); - this.state = 5996; - this.any_name(); - this.state = 5997; + this.state = 5816; + this.anyName(); + this.state = 5817; this.match(PostgreSqlParser.USING); - this.state = 5998; + this.state = 5818; this.name(); - this.state = 5999; + this.state = 5819; this.match(PostgreSqlParser.RENAME); - this.state = 6000; + this.state = 5820; this.match(PostgreSqlParser.TO); - this.state = 6001; + this.state = 5821; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6003; + this.state = 5823; this.match(PostgreSqlParser.ALTER); - this.state = 6004; + this.state = 5824; this.match(PostgreSqlParser.OPERATOR); - this.state = 6005; + this.state = 5825; this.match(PostgreSqlParser.FAMILY); - this.state = 6006; - this.any_name(); - this.state = 6007; + this.state = 5826; + this.anyName(); + this.state = 5827; this.match(PostgreSqlParser.USING); - this.state = 6008; + this.state = 5828; this.name(); - this.state = 6009; + this.state = 5829; this.match(PostgreSqlParser.RENAME); - this.state = 6010; + this.state = 5830; this.match(PostgreSqlParser.TO); - this.state = 6011; + this.state = 5831; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6013; + this.state = 5833; this.match(PostgreSqlParser.ALTER); - this.state = 6014; + this.state = 5834; this.match(PostgreSqlParser.POLICY); - this.state = 6015; + this.state = 5835; this.name(); - this.state = 6016; + this.state = 5836; this.match(PostgreSqlParser.ON); - this.state = 6017; - this.qualified_name(); - this.state = 6018; + this.state = 5837; + this.qualifiedName(); + this.state = 5838; this.match(PostgreSqlParser.RENAME); - this.state = 6019; + this.state = 5839; this.match(PostgreSqlParser.TO); - this.state = 6020; + this.state = 5840; this.name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6022; + this.state = 5842; this.match(PostgreSqlParser.ALTER); - this.state = 6023; + this.state = 5843; this.match(PostgreSqlParser.POLICY); - this.state = 6024; + this.state = 5844; this.match(PostgreSqlParser.IF_P); - this.state = 6025; + this.state = 5845; this.match(PostgreSqlParser.EXISTS); - this.state = 6026; + this.state = 5846; this.name(); - this.state = 6027; + this.state = 5847; this.match(PostgreSqlParser.ON); - this.state = 6028; - this.qualified_name(); - this.state = 6029; + this.state = 5848; + this.qualifiedName(); + this.state = 5849; this.match(PostgreSqlParser.RENAME); - this.state = 6030; + this.state = 5850; this.match(PostgreSqlParser.TO); - this.state = 6031; + this.state = 5851; this.name(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6033; + this.state = 5853; this.match(PostgreSqlParser.ALTER); - this.state = 6034; + this.state = 5854; this.match(PostgreSqlParser.PROCEDURE); - this.state = 6035; - this.function_with_argtypes(); - this.state = 6036; + this.state = 5855; + this.functionWithArgumentTypes(); + this.state = 5856; this.match(PostgreSqlParser.RENAME); - this.state = 6037; + this.state = 5857; this.match(PostgreSqlParser.TO); - this.state = 6038; + this.state = 5858; this.name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6040; + this.state = 5860; this.match(PostgreSqlParser.ALTER); - this.state = 6041; + this.state = 5861; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6042; + this.state = 5862; this.name(); - this.state = 6043; + this.state = 5863; this.match(PostgreSqlParser.RENAME); - this.state = 6044; + this.state = 5864; this.match(PostgreSqlParser.TO); - this.state = 6045; + this.state = 5865; this.name(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6047; + this.state = 5867; this.match(PostgreSqlParser.ALTER); - this.state = 6048; + this.state = 5868; this.match(PostgreSqlParser.ROUTINE); - this.state = 6049; - this.function_with_argtypes(); - this.state = 6050; + this.state = 5869; + this.functionWithArgumentTypes(); + this.state = 5870; this.match(PostgreSqlParser.RENAME); - this.state = 6051; + this.state = 5871; this.match(PostgreSqlParser.TO); - this.state = 6052; + this.state = 5872; this.name(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 6054; + this.state = 5874; this.match(PostgreSqlParser.ALTER); - this.state = 6055; + this.state = 5875; this.match(PostgreSqlParser.SCHEMA); - this.state = 6056; + this.state = 5876; this.name(); - this.state = 6057; + this.state = 5877; this.match(PostgreSqlParser.RENAME); - this.state = 6058; + this.state = 5878; this.match(PostgreSqlParser.TO); - this.state = 6059; + this.state = 5879; this.name(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 6061; + this.state = 5881; this.match(PostgreSqlParser.ALTER); - this.state = 6062; + this.state = 5882; this.match(PostgreSqlParser.SERVER); - this.state = 6063; + this.state = 5883; this.name(); - this.state = 6064; + this.state = 5884; this.match(PostgreSqlParser.RENAME); - this.state = 6065; + this.state = 5885; this.match(PostgreSqlParser.TO); - this.state = 6066; + this.state = 5886; this.name(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 6068; + this.state = 5888; this.match(PostgreSqlParser.ALTER); - this.state = 6069; + this.state = 5889; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6070; + this.state = 5890; this.name(); - this.state = 6071; + this.state = 5891; this.match(PostgreSqlParser.RENAME); - this.state = 6072; + this.state = 5892; this.match(PostgreSqlParser.TO); - this.state = 6073; + this.state = 5893; this.name(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 6075; + this.state = 5895; this.match(PostgreSqlParser.ALTER); - this.state = 6076; + this.state = 5896; this.match(PostgreSqlParser.TABLE); - this.state = 6077; - this.relation_expr(); - this.state = 6078; + this.state = 5897; + this.relationExpression(); + this.state = 5898; this.match(PostgreSqlParser.RENAME); - this.state = 6079; + this.state = 5899; this.match(PostgreSqlParser.TO); - this.state = 6080; + this.state = 5900; this.name(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 6082; + this.state = 5902; this.match(PostgreSqlParser.ALTER); - this.state = 6083; + this.state = 5903; this.match(PostgreSqlParser.TABLE); - this.state = 6084; + this.state = 5904; this.match(PostgreSqlParser.IF_P); - this.state = 6085; + this.state = 5905; this.match(PostgreSqlParser.EXISTS); - this.state = 6086; - this.relation_expr(); - this.state = 6087; + this.state = 5906; + this.relationExpression(); + this.state = 5907; this.match(PostgreSqlParser.RENAME); - this.state = 6088; + this.state = 5908; this.match(PostgreSqlParser.TO); - this.state = 6089; + this.state = 5909; this.name(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 6091; + this.state = 5911; this.match(PostgreSqlParser.ALTER); - this.state = 6092; + this.state = 5912; this.match(PostgreSqlParser.SEQUENCE); - this.state = 6093; - this.qualified_name(); - this.state = 6094; + this.state = 5913; + this.qualifiedName(); + this.state = 5914; this.match(PostgreSqlParser.RENAME); - this.state = 6095; + this.state = 5915; this.match(PostgreSqlParser.TO); - this.state = 6096; + this.state = 5916; this.name(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 6098; + this.state = 5918; this.match(PostgreSqlParser.ALTER); - this.state = 6099; + this.state = 5919; this.match(PostgreSqlParser.SEQUENCE); - this.state = 6100; + this.state = 5920; this.match(PostgreSqlParser.IF_P); - this.state = 6101; + this.state = 5921; this.match(PostgreSqlParser.EXISTS); - this.state = 6102; - this.qualified_name(); - this.state = 6103; + this.state = 5922; + this.qualifiedName(); + this.state = 5923; this.match(PostgreSqlParser.RENAME); - this.state = 6104; + this.state = 5924; this.match(PostgreSqlParser.TO); - this.state = 6105; + this.state = 5925; this.name(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 6107; + this.state = 5927; this.match(PostgreSqlParser.ALTER); - this.state = 6108; + this.state = 5928; this.match(PostgreSqlParser.VIEW); - this.state = 6109; - this.qualified_name(); - this.state = 6110; + this.state = 5929; + this.qualifiedName(); + this.state = 5930; this.match(PostgreSqlParser.RENAME); - this.state = 6111; + this.state = 5931; this.match(PostgreSqlParser.TO); - this.state = 6112; + this.state = 5932; this.name(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 6114; + this.state = 5934; this.match(PostgreSqlParser.ALTER); - this.state = 6115; + this.state = 5935; this.match(PostgreSqlParser.VIEW); - this.state = 6116; + this.state = 5936; this.match(PostgreSqlParser.IF_P); - this.state = 6117; + this.state = 5937; this.match(PostgreSqlParser.EXISTS); - this.state = 6118; - this.qualified_name(); - this.state = 6119; + this.state = 5938; + this.qualifiedName(); + this.state = 5939; this.match(PostgreSqlParser.RENAME); - this.state = 6120; + this.state = 5940; this.match(PostgreSqlParser.TO); - this.state = 6121; + this.state = 5941; this.name(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 6123; + this.state = 5943; this.match(PostgreSqlParser.ALTER); - this.state = 6124; + this.state = 5944; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6125; + this.state = 5945; this.match(PostgreSqlParser.VIEW); - this.state = 6126; - this.qualified_name(); - this.state = 6127; + this.state = 5946; + this.qualifiedName(); + this.state = 5947; this.match(PostgreSqlParser.RENAME); - this.state = 6128; + this.state = 5948; this.match(PostgreSqlParser.TO); - this.state = 6129; + this.state = 5949; this.name(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 6131; + this.state = 5951; this.match(PostgreSqlParser.ALTER); - this.state = 6132; + this.state = 5952; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6133; + this.state = 5953; this.match(PostgreSqlParser.VIEW); - this.state = 6134; + this.state = 5954; this.match(PostgreSqlParser.IF_P); - this.state = 6135; + this.state = 5955; this.match(PostgreSqlParser.EXISTS); - this.state = 6136; - this.qualified_name(); - this.state = 6137; + this.state = 5956; + this.qualifiedName(); + this.state = 5957; this.match(PostgreSqlParser.RENAME); - this.state = 6138; + this.state = 5958; this.match(PostgreSqlParser.TO); - this.state = 6139; + this.state = 5959; this.name(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 6141; + this.state = 5961; this.match(PostgreSqlParser.ALTER); - this.state = 6142; + this.state = 5962; this.match(PostgreSqlParser.INDEX); - this.state = 6143; - this.qualified_name(); - this.state = 6144; + this.state = 5963; + this.qualifiedName(); + this.state = 5964; this.match(PostgreSqlParser.RENAME); - this.state = 6145; + this.state = 5965; this.match(PostgreSqlParser.TO); - this.state = 6146; + this.state = 5966; this.name(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 6148; + this.state = 5968; this.match(PostgreSqlParser.ALTER); - this.state = 6149; + this.state = 5969; this.match(PostgreSqlParser.INDEX); - this.state = 6150; + this.state = 5970; this.match(PostgreSqlParser.IF_P); - this.state = 6151; + this.state = 5971; this.match(PostgreSqlParser.EXISTS); - this.state = 6152; - this.qualified_name(); - this.state = 6153; + this.state = 5972; + this.qualifiedName(); + this.state = 5973; this.match(PostgreSqlParser.RENAME); - this.state = 6154; + this.state = 5974; this.match(PostgreSqlParser.TO); - this.state = 6155; + this.state = 5975; this.name(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 6157; + this.state = 5977; this.match(PostgreSqlParser.ALTER); - this.state = 6158; + this.state = 5978; this.match(PostgreSqlParser.FOREIGN); - this.state = 6159; + this.state = 5979; this.match(PostgreSqlParser.TABLE); - this.state = 6160; - this.relation_expr(); - this.state = 6161; + this.state = 5980; + this.relationExpression(); + this.state = 5981; this.match(PostgreSqlParser.RENAME); - this.state = 6162; + this.state = 5982; this.match(PostgreSqlParser.TO); - this.state = 6163; + this.state = 5983; this.name(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 6165; + this.state = 5985; this.match(PostgreSqlParser.ALTER); - this.state = 6166; + this.state = 5986; this.match(PostgreSqlParser.FOREIGN); - this.state = 6167; + this.state = 5987; this.match(PostgreSqlParser.TABLE); - this.state = 6168; + this.state = 5988; this.match(PostgreSqlParser.IF_P); - this.state = 6169; + this.state = 5989; this.match(PostgreSqlParser.EXISTS); - this.state = 6170; - this.relation_expr(); - this.state = 6171; + this.state = 5990; + this.relationExpression(); + this.state = 5991; this.match(PostgreSqlParser.RENAME); - this.state = 6172; + this.state = 5992; this.match(PostgreSqlParser.TO); - this.state = 6173; + this.state = 5993; this.name(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 6175; + this.state = 5995; this.match(PostgreSqlParser.ALTER); - this.state = 6176; + this.state = 5996; this.match(PostgreSqlParser.TABLE); - this.state = 6177; - this.relation_expr(); - this.state = 6178; + this.state = 5997; + this.relationExpression(); + this.state = 5998; this.match(PostgreSqlParser.RENAME); - this.state = 6179; - this.opt_column(); - this.state = 6180; + this.state = 5999; + this.optionalColumn(); + this.state = 6000; this.name(); - this.state = 6181; + this.state = 6001; this.match(PostgreSqlParser.TO); - this.state = 6182; + this.state = 6002; this.name(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 6184; + this.state = 6004; this.match(PostgreSqlParser.ALTER); - this.state = 6185; + this.state = 6005; this.match(PostgreSqlParser.TABLE); - this.state = 6186; + this.state = 6006; this.match(PostgreSqlParser.IF_P); - this.state = 6187; + this.state = 6007; this.match(PostgreSqlParser.EXISTS); - this.state = 6188; - this.relation_expr(); - this.state = 6189; + this.state = 6008; + this.relationExpression(); + this.state = 6009; this.match(PostgreSqlParser.RENAME); - this.state = 6190; - this.opt_column(); - this.state = 6191; + this.state = 6010; + this.optionalColumn(); + this.state = 6011; this.name(); - this.state = 6192; + this.state = 6012; this.match(PostgreSqlParser.TO); - this.state = 6193; + this.state = 6013; this.name(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 6195; + this.state = 6015; this.match(PostgreSqlParser.ALTER); - this.state = 6196; + this.state = 6016; this.match(PostgreSqlParser.VIEW); - this.state = 6197; - this.qualified_name(); - this.state = 6198; + this.state = 6017; + this.qualifiedName(); + this.state = 6018; this.match(PostgreSqlParser.RENAME); - this.state = 6199; - this.opt_column(); - this.state = 6200; + this.state = 6019; + this.optionalColumn(); + this.state = 6020; this.name(); - this.state = 6201; + this.state = 6021; this.match(PostgreSqlParser.TO); - this.state = 6202; + this.state = 6022; this.name(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 6204; + this.state = 6024; this.match(PostgreSqlParser.ALTER); - this.state = 6205; + this.state = 6025; this.match(PostgreSqlParser.VIEW); - this.state = 6206; + this.state = 6026; this.match(PostgreSqlParser.IF_P); - this.state = 6207; + this.state = 6027; this.match(PostgreSqlParser.EXISTS); - this.state = 6208; - this.qualified_name(); - this.state = 6209; + this.state = 6028; + this.qualifiedName(); + this.state = 6029; this.match(PostgreSqlParser.RENAME); - this.state = 6210; - this.opt_column(); - this.state = 6211; + this.state = 6030; + this.optionalColumn(); + this.state = 6031; this.name(); - this.state = 6212; + this.state = 6032; this.match(PostgreSqlParser.TO); - this.state = 6213; + this.state = 6033; this.name(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 6215; + this.state = 6035; this.match(PostgreSqlParser.ALTER); - this.state = 6216; + this.state = 6036; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6217; + this.state = 6037; this.match(PostgreSqlParser.VIEW); - this.state = 6218; - this.qualified_name(); - this.state = 6219; + this.state = 6038; + this.qualifiedName(); + this.state = 6039; this.match(PostgreSqlParser.RENAME); - this.state = 6220; - this.opt_column(); - this.state = 6221; + this.state = 6040; + this.optionalColumn(); + this.state = 6041; this.name(); - this.state = 6222; + this.state = 6042; this.match(PostgreSqlParser.TO); - this.state = 6223; + this.state = 6043; this.name(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 6225; + this.state = 6045; this.match(PostgreSqlParser.ALTER); - this.state = 6226; + this.state = 6046; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6227; + this.state = 6047; this.match(PostgreSqlParser.VIEW); - this.state = 6228; + this.state = 6048; this.match(PostgreSqlParser.IF_P); - this.state = 6229; + this.state = 6049; this.match(PostgreSqlParser.EXISTS); - this.state = 6230; - this.qualified_name(); - this.state = 6231; + this.state = 6050; + this.qualifiedName(); + this.state = 6051; this.match(PostgreSqlParser.RENAME); - this.state = 6232; - this.opt_column(); - this.state = 6233; + this.state = 6052; + this.optionalColumn(); + this.state = 6053; this.name(); - this.state = 6234; + this.state = 6054; this.match(PostgreSqlParser.TO); - this.state = 6235; + this.state = 6055; this.name(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 6237; + this.state = 6057; this.match(PostgreSqlParser.ALTER); - this.state = 6238; + this.state = 6058; this.match(PostgreSqlParser.TABLE); - this.state = 6239; - this.relation_expr(); - this.state = 6240; + this.state = 6059; + this.relationExpression(); + this.state = 6060; this.match(PostgreSqlParser.RENAME); - this.state = 6241; + this.state = 6061; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 6242; + this.state = 6062; this.name(); - this.state = 6243; + this.state = 6063; this.match(PostgreSqlParser.TO); - this.state = 6244; + this.state = 6064; this.name(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 6246; + this.state = 6066; this.match(PostgreSqlParser.ALTER); - this.state = 6247; + this.state = 6067; this.match(PostgreSqlParser.TABLE); - this.state = 6248; + this.state = 6068; this.match(PostgreSqlParser.IF_P); - this.state = 6249; + this.state = 6069; this.match(PostgreSqlParser.EXISTS); - this.state = 6250; - this.relation_expr(); - this.state = 6251; + this.state = 6070; + this.relationExpression(); + this.state = 6071; this.match(PostgreSqlParser.RENAME); - this.state = 6252; + this.state = 6072; this.match(PostgreSqlParser.CONSTRAINT); - this.state = 6253; + this.state = 6073; this.name(); - this.state = 6254; + this.state = 6074; this.match(PostgreSqlParser.TO); - this.state = 6255; + this.state = 6075; this.name(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 6257; + this.state = 6077; this.match(PostgreSqlParser.ALTER); - this.state = 6258; + this.state = 6078; this.match(PostgreSqlParser.FOREIGN); - this.state = 6259; + this.state = 6079; this.match(PostgreSqlParser.TABLE); - this.state = 6260; - this.relation_expr(); - this.state = 6261; + this.state = 6080; + this.relationExpression(); + this.state = 6081; this.match(PostgreSqlParser.RENAME); - this.state = 6262; - this.opt_column(); - this.state = 6263; + this.state = 6082; + this.optionalColumn(); + this.state = 6083; this.name(); - this.state = 6264; + this.state = 6084; this.match(PostgreSqlParser.TO); - this.state = 6265; + this.state = 6085; this.name(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 6267; + this.state = 6087; this.match(PostgreSqlParser.ALTER); - this.state = 6268; + this.state = 6088; this.match(PostgreSqlParser.FOREIGN); - this.state = 6269; + this.state = 6089; this.match(PostgreSqlParser.TABLE); - this.state = 6270; + this.state = 6090; this.match(PostgreSqlParser.IF_P); - this.state = 6271; + this.state = 6091; this.match(PostgreSqlParser.EXISTS); - this.state = 6272; - this.relation_expr(); - this.state = 6273; + this.state = 6092; + this.relationExpression(); + this.state = 6093; this.match(PostgreSqlParser.RENAME); - this.state = 6274; - this.opt_column(); - this.state = 6275; + this.state = 6094; + this.optionalColumn(); + this.state = 6095; this.name(); - this.state = 6276; + this.state = 6096; this.match(PostgreSqlParser.TO); - this.state = 6277; + this.state = 6097; this.name(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 6279; + this.state = 6099; this.match(PostgreSqlParser.ALTER); - this.state = 6280; + this.state = 6100; this.match(PostgreSqlParser.RULE); - this.state = 6281; + this.state = 6101; this.name(); - this.state = 6282; + this.state = 6102; this.match(PostgreSqlParser.ON); - this.state = 6283; - this.qualified_name(); - this.state = 6284; + this.state = 6103; + this.qualifiedName(); + this.state = 6104; this.match(PostgreSqlParser.RENAME); - this.state = 6285; + this.state = 6105; this.match(PostgreSqlParser.TO); - this.state = 6286; + this.state = 6106; this.name(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 6288; + this.state = 6108; this.match(PostgreSqlParser.ALTER); - this.state = 6289; + this.state = 6109; this.match(PostgreSqlParser.TRIGGER); - this.state = 6290; + this.state = 6110; this.name(); - this.state = 6291; + this.state = 6111; this.match(PostgreSqlParser.ON); - this.state = 6292; - this.qualified_name(); - this.state = 6293; + this.state = 6112; + this.qualifiedName(); + this.state = 6113; this.match(PostgreSqlParser.RENAME); - this.state = 6294; + this.state = 6114; this.match(PostgreSqlParser.TO); - this.state = 6295; + this.state = 6115; this.name(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 6297; + this.state = 6117; this.match(PostgreSqlParser.ALTER); - this.state = 6298; + this.state = 6118; this.match(PostgreSqlParser.EVENT); - this.state = 6299; + this.state = 6119; this.match(PostgreSqlParser.TRIGGER); - this.state = 6300; + this.state = 6120; this.name(); - this.state = 6301; + this.state = 6121; this.match(PostgreSqlParser.RENAME); - this.state = 6302; + this.state = 6122; this.match(PostgreSqlParser.TO); - this.state = 6303; + this.state = 6123; this.name(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 6305; + this.state = 6125; this.match(PostgreSqlParser.ALTER); - this.state = 6306; + this.state = 6126; this.match(PostgreSqlParser.ROLE); - this.state = 6307; - this.roleid(); - this.state = 6308; + this.state = 6127; + this.roleId(); + this.state = 6128; this.match(PostgreSqlParser.RENAME); - this.state = 6309; + this.state = 6129; this.match(PostgreSqlParser.TO); - this.state = 6310; - this.roleid(); + this.state = 6130; + this.roleId(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 6312; + this.state = 6132; this.match(PostgreSqlParser.ALTER); - this.state = 6313; + this.state = 6133; this.match(PostgreSqlParser.USER); - this.state = 6314; - this.roleid(); - this.state = 6315; + this.state = 6134; + this.roleId(); + this.state = 6135; this.match(PostgreSqlParser.RENAME); - this.state = 6316; + this.state = 6136; this.match(PostgreSqlParser.TO); - this.state = 6317; - this.roleid(); + this.state = 6137; + this.roleId(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 6319; + this.state = 6139; this.match(PostgreSqlParser.ALTER); - this.state = 6320; + this.state = 6140; this.match(PostgreSqlParser.TABLESPACE); - this.state = 6321; + this.state = 6141; this.name(); - this.state = 6322; + this.state = 6142; this.match(PostgreSqlParser.RENAME); - this.state = 6323; + this.state = 6143; this.match(PostgreSqlParser.TO); - this.state = 6324; + this.state = 6144; this.name(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 6326; + this.state = 6146; this.match(PostgreSqlParser.ALTER); - this.state = 6327; + this.state = 6147; this.match(PostgreSqlParser.STATISTICS); - this.state = 6328; - this.any_name(); - this.state = 6329; + this.state = 6148; + this.anyName(); + this.state = 6149; this.match(PostgreSqlParser.RENAME); - this.state = 6330; + this.state = 6150; this.match(PostgreSqlParser.TO); - this.state = 6331; + this.state = 6151; this.name(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 6333; + this.state = 6153; this.match(PostgreSqlParser.ALTER); - this.state = 6334; + this.state = 6154; this.match(PostgreSqlParser.TEXT_P); - this.state = 6335; + this.state = 6155; this.match(PostgreSqlParser.SEARCH); - this.state = 6336; + this.state = 6156; this.match(PostgreSqlParser.PARSER); - this.state = 6337; - this.any_name(); - this.state = 6338; + this.state = 6157; + this.anyName(); + this.state = 6158; this.match(PostgreSqlParser.RENAME); - this.state = 6339; + this.state = 6159; this.match(PostgreSqlParser.TO); - this.state = 6340; + this.state = 6160; this.name(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 6342; + this.state = 6162; this.match(PostgreSqlParser.ALTER); - this.state = 6343; + this.state = 6163; this.match(PostgreSqlParser.TEXT_P); - this.state = 6344; + this.state = 6164; this.match(PostgreSqlParser.SEARCH); - this.state = 6345; + this.state = 6165; this.match(PostgreSqlParser.DICTIONARY); - this.state = 6346; - this.any_name(); - this.state = 6347; + this.state = 6166; + this.anyName(); + this.state = 6167; this.match(PostgreSqlParser.RENAME); - this.state = 6348; + this.state = 6168; this.match(PostgreSqlParser.TO); - this.state = 6349; + this.state = 6169; this.name(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 6351; + this.state = 6171; this.match(PostgreSqlParser.ALTER); - this.state = 6352; + this.state = 6172; this.match(PostgreSqlParser.TEXT_P); - this.state = 6353; + this.state = 6173; this.match(PostgreSqlParser.SEARCH); - this.state = 6354; + this.state = 6174; this.match(PostgreSqlParser.TEMPLATE); - this.state = 6355; - this.any_name(); - this.state = 6356; + this.state = 6175; + this.anyName(); + this.state = 6176; this.match(PostgreSqlParser.RENAME); - this.state = 6357; + this.state = 6177; this.match(PostgreSqlParser.TO); - this.state = 6358; + this.state = 6178; this.name(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 6360; + this.state = 6180; this.match(PostgreSqlParser.ALTER); - this.state = 6361; + this.state = 6181; this.match(PostgreSqlParser.TEXT_P); - this.state = 6362; + this.state = 6182; this.match(PostgreSqlParser.SEARCH); - this.state = 6363; + this.state = 6183; this.match(PostgreSqlParser.CONFIGURATION); - this.state = 6364; - this.any_name(); - this.state = 6365; + this.state = 6184; + this.anyName(); + this.state = 6185; this.match(PostgreSqlParser.RENAME); - this.state = 6366; + this.state = 6186; this.match(PostgreSqlParser.TO); - this.state = 6367; + this.state = 6187; this.name(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 6369; + this.state = 6189; this.match(PostgreSqlParser.ALTER); - this.state = 6370; + this.state = 6190; this.match(PostgreSqlParser.TYPE_P); - this.state = 6371; - this.any_name(); - this.state = 6372; + this.state = 6191; + this.anyName(); + this.state = 6192; this.match(PostgreSqlParser.RENAME); - this.state = 6373; + this.state = 6193; this.match(PostgreSqlParser.TO); - this.state = 6374; + this.state = 6194; this.name(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 6376; + this.state = 6196; this.match(PostgreSqlParser.ALTER); - this.state = 6377; + this.state = 6197; this.match(PostgreSqlParser.TYPE_P); - this.state = 6378; - this.any_name(); - this.state = 6379; + this.state = 6198; + this.anyName(); + this.state = 6199; this.match(PostgreSqlParser.RENAME); - this.state = 6380; + this.state = 6200; this.match(PostgreSqlParser.ATTRIBUTE); - this.state = 6381; + this.state = 6201; this.name(); - this.state = 6382; + this.state = 6202; this.match(PostgreSqlParser.TO); - this.state = 6383; + this.state = 6203; this.name(); - this.state = 6384; - this.opt_drop_behavior(); + this.state = 6204; + this.optionalDropBehavior(); } break; } @@ -34956,17 +33006,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_column(): Opt_columnContext { - let localContext = new Opt_columnContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSqlParser.RULE_opt_column); + public optionalColumn(): OptionalColumnContext { + let localContext = new OptionalColumnContext(this.context, this.state); + this.enterRule(localContext, 660, PostgreSqlParser.RULE_optionalColumn); try { - this.state = 6390; + this.state = 6210; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6388; + this.state = 6208; this.match(PostgreSqlParser.COLUMN); } break; @@ -34992,19 +33042,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_set_data(): Opt_set_dataContext { - let localContext = new Opt_set_dataContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSqlParser.RULE_opt_set_data); + public optionalSetData(): OptionalSetDataContext { + let localContext = new OptionalSetDataContext(this.context, this.state); + this.enterRule(localContext, 662, PostgreSqlParser.RULE_optionalSetData); try { - this.state = 6395; + this.state = 6215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 1); { - this.state = 6392; + this.state = 6212; this.match(PostgreSqlParser.SET); - this.state = 6393; + this.state = 6213; this.match(PostgreSqlParser.DATA_P); } break; @@ -35032,142 +33082,191 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterobjectdependsstmt(): AlterobjectdependsstmtContext { - let localContext = new AlterobjectdependsstmtContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSqlParser.RULE_alterobjectdependsstmt); + public alterObjectDependsStatement(): AlterObjectDependsStatementContext { + let localContext = new AlterObjectDependsStatementContext(this.context, this.state); + this.enterRule(localContext, 664, PostgreSqlParser.RULE_alterObjectDependsStatement); + let _la: number; try { - this.state = 6454; + this.state = 6286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6397; + this.state = 6217; this.match(PostgreSqlParser.ALTER); - this.state = 6398; + this.state = 6218; this.match(PostgreSqlParser.FUNCTION); - this.state = 6399; - this.function_with_argtypes(); - this.state = 6400; - this.opt_no(); - this.state = 6401; + this.state = 6219; + this.functionWithArgumentTypes(); + this.state = 6221; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6220; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6223; this.match(PostgreSqlParser.DEPENDS); - this.state = 6402; + this.state = 6224; this.match(PostgreSqlParser.ON); - this.state = 6403; + this.state = 6225; this.match(PostgreSqlParser.EXTENSION); - this.state = 6404; + this.state = 6226; this.name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6406; + this.state = 6228; this.match(PostgreSqlParser.ALTER); - this.state = 6407; + this.state = 6229; this.match(PostgreSqlParser.PROCEDURE); - this.state = 6408; - this.function_with_argtypes(); - this.state = 6409; - this.opt_no(); - this.state = 6410; + this.state = 6230; + this.functionWithArgumentTypes(); + this.state = 6232; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6231; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6234; this.match(PostgreSqlParser.DEPENDS); - this.state = 6411; + this.state = 6235; this.match(PostgreSqlParser.ON); - this.state = 6412; + this.state = 6236; this.match(PostgreSqlParser.EXTENSION); - this.state = 6413; + this.state = 6237; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6415; + this.state = 6239; this.match(PostgreSqlParser.ALTER); - this.state = 6416; + this.state = 6240; this.match(PostgreSqlParser.ROUTINE); - this.state = 6417; - this.function_with_argtypes(); - this.state = 6418; - this.opt_no(); - this.state = 6419; + this.state = 6241; + this.functionWithArgumentTypes(); + this.state = 6243; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6242; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6245; this.match(PostgreSqlParser.DEPENDS); - this.state = 6420; + this.state = 6246; this.match(PostgreSqlParser.ON); - this.state = 6421; + this.state = 6247; this.match(PostgreSqlParser.EXTENSION); - this.state = 6422; + this.state = 6248; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6424; + this.state = 6250; this.match(PostgreSqlParser.ALTER); - this.state = 6425; + this.state = 6251; this.match(PostgreSqlParser.TRIGGER); - this.state = 6426; + this.state = 6252; this.name(); - this.state = 6427; + this.state = 6253; this.match(PostgreSqlParser.ON); - this.state = 6428; - this.qualified_name(); - this.state = 6429; - this.opt_no(); - this.state = 6430; + this.state = 6254; + this.qualifiedName(); + this.state = 6256; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6255; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6258; this.match(PostgreSqlParser.DEPENDS); - this.state = 6431; + this.state = 6259; this.match(PostgreSqlParser.ON); - this.state = 6432; + this.state = 6260; this.match(PostgreSqlParser.EXTENSION); - this.state = 6433; + this.state = 6261; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6435; + this.state = 6263; this.match(PostgreSqlParser.ALTER); - this.state = 6436; + this.state = 6264; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6437; + this.state = 6265; this.match(PostgreSqlParser.VIEW); - this.state = 6438; - this.qualified_name(); - this.state = 6439; - this.opt_no(); - this.state = 6440; + this.state = 6266; + this.qualifiedName(); + this.state = 6268; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6267; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6270; this.match(PostgreSqlParser.DEPENDS); - this.state = 6441; + this.state = 6271; this.match(PostgreSqlParser.ON); - this.state = 6442; + this.state = 6272; this.match(PostgreSqlParser.EXTENSION); - this.state = 6443; + this.state = 6273; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6445; + this.state = 6275; this.match(PostgreSqlParser.ALTER); - this.state = 6446; + this.state = 6276; this.match(PostgreSqlParser.INDEX); - this.state = 6447; - this.qualified_name(); - this.state = 6448; - this.opt_no(); - this.state = 6449; + this.state = 6277; + this.qualifiedName(); + this.state = 6279; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 6278; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 6281; this.match(PostgreSqlParser.DEPENDS); - this.state = 6450; + this.state = 6282; this.match(PostgreSqlParser.ON); - this.state = 6451; + this.state = 6283; this.match(PostgreSqlParser.EXTENSION); - this.state = 6452; + this.state = 6284; this.name(); } break; @@ -35187,563 +33286,525 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_no(): Opt_noContext { - let localContext = new Opt_noContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSqlParser.RULE_opt_no); + public alterObjectSchemaStatement(): AlterObjectSchemaStatementContext { + let localContext = new AlterObjectSchemaStatementContext(this.context, this.state); + this.enterRule(localContext, 666, PostgreSqlParser.RULE_alterObjectSchemaStatement); try { - this.state = 6458; + this.state = 6505; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6456; - this.match(PostgreSqlParser.NO); + this.state = 6288; + this.match(PostgreSqlParser.ALTER); + this.state = 6289; + this.match(PostgreSqlParser.AGGREGATE); + this.state = 6290; + this.aggregateWithArgumentTypes(); + this.state = 6291; + this.match(PostgreSqlParser.SET); + this.state = 6292; + this.match(PostgreSqlParser.SCHEMA); + this.state = 6293; + this.name(); } break; - case PostgreSqlParser.DEPENDS: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { - } - 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 alterobjectschemastmt(): AlterobjectschemastmtContext { - let localContext = new AlterobjectschemastmtContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSqlParser.RULE_alterobjectschemastmt); - try { - this.state = 6677; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6460; - this.match(PostgreSqlParser.ALTER); - this.state = 6461; - this.match(PostgreSqlParser.AGGREGATE); - this.state = 6462; - this.aggregate_with_argtypes(); - this.state = 6463; - this.match(PostgreSqlParser.SET); - this.state = 6464; - this.match(PostgreSqlParser.SCHEMA); - this.state = 6465; - this.name(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 6467; + this.state = 6295; this.match(PostgreSqlParser.ALTER); - this.state = 6468; + this.state = 6296; this.match(PostgreSqlParser.COLLATION); - this.state = 6469; - this.any_name(); - this.state = 6470; + this.state = 6297; + this.anyName(); + this.state = 6298; this.match(PostgreSqlParser.SET); - this.state = 6471; + this.state = 6299; this.match(PostgreSqlParser.SCHEMA); - this.state = 6472; + this.state = 6300; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6474; + this.state = 6302; this.match(PostgreSqlParser.ALTER); - this.state = 6475; + this.state = 6303; this.match(PostgreSqlParser.CONVERSION_P); - this.state = 6476; - this.any_name(); - this.state = 6477; + this.state = 6304; + this.anyName(); + this.state = 6305; this.match(PostgreSqlParser.SET); - this.state = 6478; + this.state = 6306; this.match(PostgreSqlParser.SCHEMA); - this.state = 6479; + this.state = 6307; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6481; + this.state = 6309; this.match(PostgreSqlParser.ALTER); - this.state = 6482; + this.state = 6310; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 6483; - this.any_name(); - this.state = 6484; + this.state = 6311; + this.anyName(); + this.state = 6312; this.match(PostgreSqlParser.SET); - this.state = 6485; + this.state = 6313; this.match(PostgreSqlParser.SCHEMA); - this.state = 6486; + this.state = 6314; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6488; + this.state = 6316; this.match(PostgreSqlParser.ALTER); - this.state = 6489; + this.state = 6317; this.match(PostgreSqlParser.EXTENSION); - this.state = 6490; + this.state = 6318; this.name(); - this.state = 6491; + this.state = 6319; this.match(PostgreSqlParser.SET); - this.state = 6492; + this.state = 6320; this.match(PostgreSqlParser.SCHEMA); - this.state = 6493; + this.state = 6321; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6495; + this.state = 6323; this.match(PostgreSqlParser.ALTER); - this.state = 6496; + this.state = 6324; this.match(PostgreSqlParser.FUNCTION); - this.state = 6497; - this.function_with_argtypes(); - this.state = 6498; + this.state = 6325; + this.functionWithArgumentTypes(); + this.state = 6326; this.match(PostgreSqlParser.SET); - this.state = 6499; + this.state = 6327; this.match(PostgreSqlParser.SCHEMA); - this.state = 6500; + this.state = 6328; this.name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6502; + this.state = 6330; this.match(PostgreSqlParser.ALTER); - this.state = 6503; + this.state = 6331; this.match(PostgreSqlParser.OPERATOR); - this.state = 6504; - this.operator_with_argtypes(); - this.state = 6505; + this.state = 6332; + this.operatorWithArgumentTypes(); + this.state = 6333; this.match(PostgreSqlParser.SET); - this.state = 6506; + this.state = 6334; this.match(PostgreSqlParser.SCHEMA); - this.state = 6507; + this.state = 6335; this.name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6509; + this.state = 6337; this.match(PostgreSqlParser.ALTER); - this.state = 6510; + this.state = 6338; this.match(PostgreSqlParser.OPERATOR); - this.state = 6511; + this.state = 6339; this.match(PostgreSqlParser.CLASS); - this.state = 6512; - this.any_name(); - this.state = 6513; + this.state = 6340; + this.anyName(); + this.state = 6341; this.match(PostgreSqlParser.USING); - this.state = 6514; + this.state = 6342; this.name(); - this.state = 6515; + this.state = 6343; this.match(PostgreSqlParser.SET); - this.state = 6516; + this.state = 6344; this.match(PostgreSqlParser.SCHEMA); - this.state = 6517; + this.state = 6345; this.name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6519; + this.state = 6347; this.match(PostgreSqlParser.ALTER); - this.state = 6520; + this.state = 6348; this.match(PostgreSqlParser.OPERATOR); - this.state = 6521; + this.state = 6349; this.match(PostgreSqlParser.FAMILY); - this.state = 6522; - this.any_name(); - this.state = 6523; + this.state = 6350; + this.anyName(); + this.state = 6351; this.match(PostgreSqlParser.USING); - this.state = 6524; + this.state = 6352; this.name(); - this.state = 6525; + this.state = 6353; this.match(PostgreSqlParser.SET); - this.state = 6526; + this.state = 6354; this.match(PostgreSqlParser.SCHEMA); - this.state = 6527; + this.state = 6355; this.name(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6529; + this.state = 6357; this.match(PostgreSqlParser.ALTER); - this.state = 6530; + this.state = 6358; this.match(PostgreSqlParser.PROCEDURE); - this.state = 6531; - this.function_with_argtypes(); - this.state = 6532; + this.state = 6359; + this.functionWithArgumentTypes(); + this.state = 6360; this.match(PostgreSqlParser.SET); - this.state = 6533; + this.state = 6361; this.match(PostgreSqlParser.SCHEMA); - this.state = 6534; + this.state = 6362; this.name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6536; + this.state = 6364; this.match(PostgreSqlParser.ALTER); - this.state = 6537; + this.state = 6365; this.match(PostgreSqlParser.ROUTINE); - this.state = 6538; - this.function_with_argtypes(); - this.state = 6539; + this.state = 6366; + this.functionWithArgumentTypes(); + this.state = 6367; this.match(PostgreSqlParser.SET); - this.state = 6540; + this.state = 6368; this.match(PostgreSqlParser.SCHEMA); - this.state = 6541; + this.state = 6369; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6543; + this.state = 6371; this.match(PostgreSqlParser.ALTER); - this.state = 6544; + this.state = 6372; this.match(PostgreSqlParser.TABLE); - this.state = 6545; - this.relation_expr(); - this.state = 6546; + this.state = 6373; + this.relationExpression(); + this.state = 6374; this.match(PostgreSqlParser.SET); - this.state = 6547; + this.state = 6375; this.match(PostgreSqlParser.SCHEMA); - this.state = 6548; + this.state = 6376; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6550; + this.state = 6378; this.match(PostgreSqlParser.ALTER); - this.state = 6551; + this.state = 6379; this.match(PostgreSqlParser.TABLE); - this.state = 6552; + this.state = 6380; this.match(PostgreSqlParser.IF_P); - this.state = 6553; + this.state = 6381; this.match(PostgreSqlParser.EXISTS); - this.state = 6554; - this.relation_expr(); - this.state = 6555; + this.state = 6382; + this.relationExpression(); + this.state = 6383; this.match(PostgreSqlParser.SET); - this.state = 6556; + this.state = 6384; this.match(PostgreSqlParser.SCHEMA); - this.state = 6557; + this.state = 6385; this.name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6559; + this.state = 6387; this.match(PostgreSqlParser.ALTER); - this.state = 6560; + this.state = 6388; this.match(PostgreSqlParser.STATISTICS); - this.state = 6561; - this.any_name(); - this.state = 6562; + this.state = 6389; + this.anyName(); + this.state = 6390; this.match(PostgreSqlParser.SET); - this.state = 6563; + this.state = 6391; this.match(PostgreSqlParser.SCHEMA); - this.state = 6564; + this.state = 6392; this.name(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6566; + this.state = 6394; this.match(PostgreSqlParser.ALTER); - this.state = 6567; + this.state = 6395; this.match(PostgreSqlParser.TEXT_P); - this.state = 6568; + this.state = 6396; this.match(PostgreSqlParser.SEARCH); - this.state = 6569; + this.state = 6397; this.match(PostgreSqlParser.PARSER); - this.state = 6570; - this.any_name(); - this.state = 6571; + this.state = 6398; + this.anyName(); + this.state = 6399; this.match(PostgreSqlParser.SET); - this.state = 6572; + this.state = 6400; this.match(PostgreSqlParser.SCHEMA); - this.state = 6573; + this.state = 6401; this.name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6575; + this.state = 6403; this.match(PostgreSqlParser.ALTER); - this.state = 6576; + this.state = 6404; this.match(PostgreSqlParser.TEXT_P); - this.state = 6577; + this.state = 6405; this.match(PostgreSqlParser.SEARCH); - this.state = 6578; + this.state = 6406; this.match(PostgreSqlParser.DICTIONARY); - this.state = 6579; - this.any_name(); - this.state = 6580; + this.state = 6407; + this.anyName(); + this.state = 6408; this.match(PostgreSqlParser.SET); - this.state = 6581; + this.state = 6409; this.match(PostgreSqlParser.SCHEMA); - this.state = 6582; + this.state = 6410; this.name(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6584; + this.state = 6412; this.match(PostgreSqlParser.ALTER); - this.state = 6585; + this.state = 6413; this.match(PostgreSqlParser.TEXT_P); - this.state = 6586; + this.state = 6414; this.match(PostgreSqlParser.SEARCH); - this.state = 6587; + this.state = 6415; this.match(PostgreSqlParser.TEMPLATE); - this.state = 6588; - this.any_name(); - this.state = 6589; + this.state = 6416; + this.anyName(); + this.state = 6417; this.match(PostgreSqlParser.SET); - this.state = 6590; + this.state = 6418; this.match(PostgreSqlParser.SCHEMA); - this.state = 6591; + this.state = 6419; this.name(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 6593; + this.state = 6421; this.match(PostgreSqlParser.ALTER); - this.state = 6594; + this.state = 6422; this.match(PostgreSqlParser.TEXT_P); - this.state = 6595; + this.state = 6423; this.match(PostgreSqlParser.SEARCH); - this.state = 6596; + this.state = 6424; this.match(PostgreSqlParser.CONFIGURATION); - this.state = 6597; - this.any_name(); - this.state = 6598; + this.state = 6425; + this.anyName(); + this.state = 6426; this.match(PostgreSqlParser.SET); - this.state = 6599; + this.state = 6427; this.match(PostgreSqlParser.SCHEMA); - this.state = 6600; + this.state = 6428; this.name(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 6602; + this.state = 6430; this.match(PostgreSqlParser.ALTER); - this.state = 6603; + this.state = 6431; this.match(PostgreSqlParser.SEQUENCE); - this.state = 6604; - this.qualified_name(); - this.state = 6605; + this.state = 6432; + this.qualifiedName(); + this.state = 6433; this.match(PostgreSqlParser.SET); - this.state = 6606; + this.state = 6434; this.match(PostgreSqlParser.SCHEMA); - this.state = 6607; + this.state = 6435; this.name(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 6609; + this.state = 6437; this.match(PostgreSqlParser.ALTER); - this.state = 6610; + this.state = 6438; this.match(PostgreSqlParser.SEQUENCE); - this.state = 6611; + this.state = 6439; this.match(PostgreSqlParser.IF_P); - this.state = 6612; + this.state = 6440; this.match(PostgreSqlParser.EXISTS); - this.state = 6613; - this.qualified_name(); - this.state = 6614; + this.state = 6441; + this.qualifiedName(); + this.state = 6442; this.match(PostgreSqlParser.SET); - this.state = 6615; + this.state = 6443; this.match(PostgreSqlParser.SCHEMA); - this.state = 6616; + this.state = 6444; this.name(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 6618; + this.state = 6446; this.match(PostgreSqlParser.ALTER); - this.state = 6619; + this.state = 6447; this.match(PostgreSqlParser.VIEW); - this.state = 6620; - this.qualified_name(); - this.state = 6621; + this.state = 6448; + this.qualifiedName(); + this.state = 6449; this.match(PostgreSqlParser.SET); - this.state = 6622; + this.state = 6450; this.match(PostgreSqlParser.SCHEMA); - this.state = 6623; + this.state = 6451; this.name(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 6625; + this.state = 6453; this.match(PostgreSqlParser.ALTER); - this.state = 6626; + this.state = 6454; this.match(PostgreSqlParser.VIEW); - this.state = 6627; + this.state = 6455; this.match(PostgreSqlParser.IF_P); - this.state = 6628; + this.state = 6456; this.match(PostgreSqlParser.EXISTS); - this.state = 6629; - this.qualified_name(); - this.state = 6630; + this.state = 6457; + this.qualifiedName(); + this.state = 6458; this.match(PostgreSqlParser.SET); - this.state = 6631; + this.state = 6459; this.match(PostgreSqlParser.SCHEMA); - this.state = 6632; + this.state = 6460; this.name(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 6634; + this.state = 6462; this.match(PostgreSqlParser.ALTER); - this.state = 6635; + this.state = 6463; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6636; + this.state = 6464; this.match(PostgreSqlParser.VIEW); - this.state = 6637; - this.qualified_name(); - this.state = 6638; + this.state = 6465; + this.qualifiedName(); + this.state = 6466; this.match(PostgreSqlParser.SET); - this.state = 6639; + this.state = 6467; this.match(PostgreSqlParser.SCHEMA); - this.state = 6640; + this.state = 6468; this.name(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 6642; + this.state = 6470; this.match(PostgreSqlParser.ALTER); - this.state = 6643; + this.state = 6471; this.match(PostgreSqlParser.MATERIALIZED); - this.state = 6644; + this.state = 6472; this.match(PostgreSqlParser.VIEW); - this.state = 6645; + this.state = 6473; this.match(PostgreSqlParser.IF_P); - this.state = 6646; + this.state = 6474; this.match(PostgreSqlParser.EXISTS); - this.state = 6647; - this.qualified_name(); - this.state = 6648; + this.state = 6475; + this.qualifiedName(); + this.state = 6476; this.match(PostgreSqlParser.SET); - this.state = 6649; + this.state = 6477; this.match(PostgreSqlParser.SCHEMA); - this.state = 6650; + this.state = 6478; this.name(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 6652; + this.state = 6480; this.match(PostgreSqlParser.ALTER); - this.state = 6653; + this.state = 6481; this.match(PostgreSqlParser.FOREIGN); - this.state = 6654; + this.state = 6482; this.match(PostgreSqlParser.TABLE); - this.state = 6655; - this.relation_expr(); - this.state = 6656; + this.state = 6483; + this.relationExpression(); + this.state = 6484; this.match(PostgreSqlParser.SET); - this.state = 6657; + this.state = 6485; this.match(PostgreSqlParser.SCHEMA); - this.state = 6658; + this.state = 6486; this.name(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 6660; + this.state = 6488; this.match(PostgreSqlParser.ALTER); - this.state = 6661; + this.state = 6489; this.match(PostgreSqlParser.FOREIGN); - this.state = 6662; + this.state = 6490; this.match(PostgreSqlParser.TABLE); - this.state = 6663; + this.state = 6491; this.match(PostgreSqlParser.IF_P); - this.state = 6664; + this.state = 6492; this.match(PostgreSqlParser.EXISTS); - this.state = 6665; - this.relation_expr(); - this.state = 6666; + this.state = 6493; + this.relationExpression(); + this.state = 6494; this.match(PostgreSqlParser.SET); - this.state = 6667; + this.state = 6495; this.match(PostgreSqlParser.SCHEMA); - this.state = 6668; + this.state = 6496; this.name(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 6670; + this.state = 6498; this.match(PostgreSqlParser.ALTER); - this.state = 6671; + this.state = 6499; this.match(PostgreSqlParser.TYPE_P); - this.state = 6672; - this.any_name(); - this.state = 6673; + this.state = 6500; + this.anyName(); + this.state = 6501; this.match(PostgreSqlParser.SET); - this.state = 6674; + this.state = 6502; this.match(PostgreSqlParser.SCHEMA); - this.state = 6675; + this.state = 6503; this.name(); } break; @@ -35763,25 +33824,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alteroperatorstmt(): AlteroperatorstmtContext { - let localContext = new AlteroperatorstmtContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSqlParser.RULE_alteroperatorstmt); + public alterOperatorStatement(): AlterOperatorStatementContext { + let localContext = new AlterOperatorStatementContext(this.context, this.state); + this.enterRule(localContext, 668, PostgreSqlParser.RULE_alterOperatorStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6679; + this.state = 6507; this.match(PostgreSqlParser.ALTER); - this.state = 6680; + this.state = 6508; this.match(PostgreSqlParser.OPERATOR); - this.state = 6681; - this.operator_with_argtypes(); - this.state = 6682; + this.state = 6509; + this.operatorWithArgumentTypes(); + this.state = 6510; this.match(PostgreSqlParser.SET); - this.state = 6683; + this.state = 6511; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6684; - this.operator_def_list(); - this.state = 6685; + this.state = 6512; + this.operatorDefinitionList(); + this.state = 6513; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -35799,28 +33860,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public operator_def_list(): Operator_def_listContext { - let localContext = new Operator_def_listContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSqlParser.RULE_operator_def_list); + public operatorDefinitionList(): OperatorDefinitionListContext { + let localContext = new OperatorDefinitionListContext(this.context, this.state); + this.enterRule(localContext, 670, PostgreSqlParser.RULE_operatorDefinitionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6687; - this.operator_def_elem(); - this.state = 6692; + this.state = 6515; + this.operatorDefinitionElement(); + this.state = 6520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6688; + this.state = 6516; this.match(PostgreSqlParser.COMMA); - this.state = 6689; - this.operator_def_elem(); + this.state = 6517; + this.operatorDefinitionElement(); } } - this.state = 6694; + this.state = 6522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35840,33 +33901,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public operator_def_elem(): Operator_def_elemContext { - let localContext = new Operator_def_elemContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSqlParser.RULE_operator_def_elem); + public operatorDefinitionElement(): OperatorDefinitionElementContext { + let localContext = new OperatorDefinitionElementContext(this.context, this.state); + this.enterRule(localContext, 672, PostgreSqlParser.RULE_operatorDefinitionElement); try { - this.state = 6703; + this.state = 6531; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6695; - this.collabel(); - this.state = 6696; + this.state = 6523; + this.columnLabel(); + this.state = 6524; this.match(PostgreSqlParser.EQUAL); - this.state = 6697; + this.state = 6525; this.match(PostgreSqlParser.NONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6699; - this.collabel(); - this.state = 6700; + this.state = 6527; + this.columnLabel(); + this.state = 6528; this.match(PostgreSqlParser.EQUAL); - this.state = 6701; - this.operator_def_arg(); + this.state = 6529; + this.operatorDefinitionArgument(); } break; } @@ -35885,45 +33946,45 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public operator_def_arg(): Operator_def_argContext { - let localContext = new Operator_def_argContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSqlParser.RULE_operator_def_arg); + public operatorDefinitionArgument(): OperatorDefinitionArgumentContext { + let localContext = new OperatorDefinitionArgumentContext(this.context, this.state); + this.enterRule(localContext, 674, PostgreSqlParser.RULE_operatorDefinitionArgument); try { - this.state = 6710; + this.state = 6538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6705; - this.func_type(); + this.state = 6533; + this.functionType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6706; - this.reserved_keyword(); + this.state = 6534; + this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6707; - this.qual_all_op(); + this.state = 6535; + this.allOperatorQualifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6708; - this.numericonly(); + this.state = 6536; + this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6709; + this.state = 6537; this.sconst(); } break; @@ -35943,25 +34004,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altertypestmt(): AltertypestmtContext { - let localContext = new AltertypestmtContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSqlParser.RULE_altertypestmt); + public alterTypeStatement(): AlterTypeStatementContext { + let localContext = new AlterTypeStatementContext(this.context, this.state); + this.enterRule(localContext, 676, PostgreSqlParser.RULE_alterTypeStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6712; + this.state = 6540; this.match(PostgreSqlParser.ALTER); - this.state = 6713; + this.state = 6541; this.match(PostgreSqlParser.TYPE_P); - this.state = 6714; - this.any_name(); - this.state = 6715; + this.state = 6542; + this.anyName(); + this.state = 6543; this.match(PostgreSqlParser.SET); - this.state = 6716; + this.state = 6544; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6717; - this.operator_def_list(); - this.state = 6718; + this.state = 6545; + this.operatorDefinitionList(); + this.state = 6546; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -35979,449 +34040,449 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterownerstmt(): AlterownerstmtContext { - let localContext = new AlterownerstmtContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSqlParser.RULE_alterownerstmt); + public alterOwnerStatement(): AlterOwnerStatementContext { + let localContext = new AlterOwnerStatementContext(this.context, this.state); + this.enterRule(localContext, 678, PostgreSqlParser.RULE_alterOwnerStatement); try { - this.state = 6903; + this.state = 6731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6720; + this.state = 6548; this.match(PostgreSqlParser.ALTER); - this.state = 6721; + this.state = 6549; this.match(PostgreSqlParser.AGGREGATE); - this.state = 6722; - this.aggregate_with_argtypes(); - this.state = 6723; + this.state = 6550; + this.aggregateWithArgumentTypes(); + this.state = 6551; this.match(PostgreSqlParser.OWNER); - this.state = 6724; + this.state = 6552; this.match(PostgreSqlParser.TO); - this.state = 6725; - this.rolespec(); + this.state = 6553; + this.roleSpecification(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6727; + this.state = 6555; this.match(PostgreSqlParser.ALTER); - this.state = 6728; + this.state = 6556; this.match(PostgreSqlParser.COLLATION); - this.state = 6729; - this.any_name(); - this.state = 6730; + this.state = 6557; + this.anyName(); + this.state = 6558; this.match(PostgreSqlParser.OWNER); - this.state = 6731; + this.state = 6559; this.match(PostgreSqlParser.TO); - this.state = 6732; - this.rolespec(); + this.state = 6560; + this.roleSpecification(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6734; + this.state = 6562; this.match(PostgreSqlParser.ALTER); - this.state = 6735; + this.state = 6563; this.match(PostgreSqlParser.CONVERSION_P); - this.state = 6736; - this.any_name(); - this.state = 6737; + this.state = 6564; + this.anyName(); + this.state = 6565; this.match(PostgreSqlParser.OWNER); - this.state = 6738; + this.state = 6566; this.match(PostgreSqlParser.TO); - this.state = 6739; - this.rolespec(); + this.state = 6567; + this.roleSpecification(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6741; + this.state = 6569; this.match(PostgreSqlParser.ALTER); - this.state = 6742; + this.state = 6570; this.match(PostgreSqlParser.DATABASE); - this.state = 6743; + this.state = 6571; this.name(); - this.state = 6744; + this.state = 6572; this.match(PostgreSqlParser.OWNER); - this.state = 6745; + this.state = 6573; this.match(PostgreSqlParser.TO); - this.state = 6746; - this.rolespec(); + this.state = 6574; + this.roleSpecification(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6748; + this.state = 6576; this.match(PostgreSqlParser.ALTER); - this.state = 6749; + this.state = 6577; this.match(PostgreSqlParser.DOMAIN_P); - this.state = 6750; - this.any_name(); - this.state = 6751; + this.state = 6578; + this.anyName(); + this.state = 6579; this.match(PostgreSqlParser.OWNER); - this.state = 6752; + this.state = 6580; this.match(PostgreSqlParser.TO); - this.state = 6753; - this.rolespec(); + this.state = 6581; + this.roleSpecification(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6755; + this.state = 6583; this.match(PostgreSqlParser.ALTER); - this.state = 6756; + this.state = 6584; this.match(PostgreSqlParser.FUNCTION); - this.state = 6757; - this.function_with_argtypes(); - this.state = 6758; + this.state = 6585; + this.functionWithArgumentTypes(); + this.state = 6586; this.match(PostgreSqlParser.OWNER); - this.state = 6759; + this.state = 6587; this.match(PostgreSqlParser.TO); - this.state = 6760; - this.rolespec(); + this.state = 6588; + this.roleSpecification(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6762; + this.state = 6590; this.match(PostgreSqlParser.ALTER); - this.state = 6763; - this.opt_procedural(); - this.state = 6764; + this.state = 6591; + this.optionalProcedural(); + this.state = 6592; this.match(PostgreSqlParser.LANGUAGE); - this.state = 6765; + this.state = 6593; this.name(); - this.state = 6766; + this.state = 6594; this.match(PostgreSqlParser.OWNER); - this.state = 6767; + this.state = 6595; this.match(PostgreSqlParser.TO); - this.state = 6768; - this.rolespec(); + this.state = 6596; + this.roleSpecification(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6770; + this.state = 6598; this.match(PostgreSqlParser.ALTER); - this.state = 6771; + this.state = 6599; this.match(PostgreSqlParser.LARGE_P); - this.state = 6772; + this.state = 6600; this.match(PostgreSqlParser.OBJECT_P); - this.state = 6773; - this.numericonly(); - this.state = 6774; + this.state = 6601; + this.numericOnly(); + this.state = 6602; this.match(PostgreSqlParser.OWNER); - this.state = 6775; + this.state = 6603; this.match(PostgreSqlParser.TO); - this.state = 6776; - this.rolespec(); + this.state = 6604; + this.roleSpecification(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6778; + this.state = 6606; this.match(PostgreSqlParser.ALTER); - this.state = 6779; + this.state = 6607; this.match(PostgreSqlParser.OPERATOR); - this.state = 6780; - this.operator_with_argtypes(); - this.state = 6781; + this.state = 6608; + this.operatorWithArgumentTypes(); + this.state = 6609; this.match(PostgreSqlParser.OWNER); - this.state = 6782; + this.state = 6610; this.match(PostgreSqlParser.TO); - this.state = 6783; - this.rolespec(); + this.state = 6611; + this.roleSpecification(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6785; + this.state = 6613; this.match(PostgreSqlParser.ALTER); - this.state = 6786; + this.state = 6614; this.match(PostgreSqlParser.OPERATOR); - this.state = 6787; + this.state = 6615; this.match(PostgreSqlParser.CLASS); - this.state = 6788; - this.any_name(); - this.state = 6789; + this.state = 6616; + this.anyName(); + this.state = 6617; this.match(PostgreSqlParser.USING); - this.state = 6790; + this.state = 6618; this.name(); - this.state = 6791; + this.state = 6619; this.match(PostgreSqlParser.OWNER); - this.state = 6792; + this.state = 6620; this.match(PostgreSqlParser.TO); - this.state = 6793; - this.rolespec(); + this.state = 6621; + this.roleSpecification(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6795; + this.state = 6623; this.match(PostgreSqlParser.ALTER); - this.state = 6796; + this.state = 6624; this.match(PostgreSqlParser.OPERATOR); - this.state = 6797; + this.state = 6625; this.match(PostgreSqlParser.FAMILY); - this.state = 6798; - this.any_name(); - this.state = 6799; + this.state = 6626; + this.anyName(); + this.state = 6627; this.match(PostgreSqlParser.USING); - this.state = 6800; + this.state = 6628; this.name(); - this.state = 6801; + this.state = 6629; this.match(PostgreSqlParser.OWNER); - this.state = 6802; + this.state = 6630; this.match(PostgreSqlParser.TO); - this.state = 6803; - this.rolespec(); + this.state = 6631; + this.roleSpecification(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6805; + this.state = 6633; this.match(PostgreSqlParser.ALTER); - this.state = 6806; + this.state = 6634; this.match(PostgreSqlParser.PROCEDURE); - this.state = 6807; - this.function_with_argtypes(); - this.state = 6808; + this.state = 6635; + this.functionWithArgumentTypes(); + this.state = 6636; this.match(PostgreSqlParser.OWNER); - this.state = 6809; + this.state = 6637; this.match(PostgreSqlParser.TO); - this.state = 6810; - this.rolespec(); + this.state = 6638; + this.roleSpecification(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6812; + this.state = 6640; this.match(PostgreSqlParser.ALTER); - this.state = 6813; + this.state = 6641; this.match(PostgreSqlParser.ROUTINE); - this.state = 6814; - this.function_with_argtypes(); - this.state = 6815; + this.state = 6642; + this.functionWithArgumentTypes(); + this.state = 6643; this.match(PostgreSqlParser.OWNER); - this.state = 6816; + this.state = 6644; this.match(PostgreSqlParser.TO); - this.state = 6817; - this.rolespec(); + this.state = 6645; + this.roleSpecification(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6819; + this.state = 6647; this.match(PostgreSqlParser.ALTER); - this.state = 6820; + this.state = 6648; this.match(PostgreSqlParser.SCHEMA); - this.state = 6821; + this.state = 6649; this.name(); - this.state = 6822; + this.state = 6650; this.match(PostgreSqlParser.OWNER); - this.state = 6823; + this.state = 6651; this.match(PostgreSqlParser.TO); - this.state = 6824; - this.rolespec(); + this.state = 6652; + this.roleSpecification(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6826; + this.state = 6654; this.match(PostgreSqlParser.ALTER); - this.state = 6827; + this.state = 6655; this.match(PostgreSqlParser.TYPE_P); - this.state = 6828; - this.any_name(); - this.state = 6829; + this.state = 6656; + this.anyName(); + this.state = 6657; this.match(PostgreSqlParser.OWNER); - this.state = 6830; + this.state = 6658; this.match(PostgreSqlParser.TO); - this.state = 6831; - this.rolespec(); + this.state = 6659; + this.roleSpecification(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6833; + this.state = 6661; this.match(PostgreSqlParser.ALTER); - this.state = 6834; + this.state = 6662; this.match(PostgreSqlParser.TABLESPACE); - this.state = 6835; + this.state = 6663; this.name(); - this.state = 6836; + this.state = 6664; this.match(PostgreSqlParser.OWNER); - this.state = 6837; + this.state = 6665; this.match(PostgreSqlParser.TO); - this.state = 6838; - this.rolespec(); + this.state = 6666; + this.roleSpecification(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6840; + this.state = 6668; this.match(PostgreSqlParser.ALTER); - this.state = 6841; + this.state = 6669; this.match(PostgreSqlParser.STATISTICS); - this.state = 6842; - this.any_name(); - this.state = 6843; - this.match(PostgreSqlParser.OWNER); - this.state = 6844; + this.state = 6670; + this.anyName(); + this.state = 6671; + this.match(PostgreSqlParser.OWNER); + this.state = 6672; this.match(PostgreSqlParser.TO); - this.state = 6845; - this.rolespec(); + this.state = 6673; + this.roleSpecification(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 6847; + this.state = 6675; this.match(PostgreSqlParser.ALTER); - this.state = 6848; + this.state = 6676; this.match(PostgreSqlParser.TEXT_P); - this.state = 6849; + this.state = 6677; this.match(PostgreSqlParser.SEARCH); - this.state = 6850; + this.state = 6678; this.match(PostgreSqlParser.DICTIONARY); - this.state = 6851; - this.any_name(); - this.state = 6852; + this.state = 6679; + this.anyName(); + this.state = 6680; this.match(PostgreSqlParser.OWNER); - this.state = 6853; + this.state = 6681; this.match(PostgreSqlParser.TO); - this.state = 6854; - this.rolespec(); + this.state = 6682; + this.roleSpecification(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 6856; + this.state = 6684; this.match(PostgreSqlParser.ALTER); - this.state = 6857; + this.state = 6685; this.match(PostgreSqlParser.TEXT_P); - this.state = 6858; + this.state = 6686; this.match(PostgreSqlParser.SEARCH); - this.state = 6859; + this.state = 6687; this.match(PostgreSqlParser.CONFIGURATION); - this.state = 6860; - this.any_name(); - this.state = 6861; + this.state = 6688; + this.anyName(); + this.state = 6689; this.match(PostgreSqlParser.OWNER); - this.state = 6862; + this.state = 6690; this.match(PostgreSqlParser.TO); - this.state = 6863; - this.rolespec(); + this.state = 6691; + this.roleSpecification(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 6865; + this.state = 6693; this.match(PostgreSqlParser.ALTER); - this.state = 6866; + this.state = 6694; this.match(PostgreSqlParser.FOREIGN); - this.state = 6867; + this.state = 6695; this.match(PostgreSqlParser.DATA_P); - this.state = 6868; + this.state = 6696; this.match(PostgreSqlParser.WRAPPER); - this.state = 6869; + this.state = 6697; this.name(); - this.state = 6870; + this.state = 6698; this.match(PostgreSqlParser.OWNER); - this.state = 6871; + this.state = 6699; this.match(PostgreSqlParser.TO); - this.state = 6872; - this.rolespec(); + this.state = 6700; + this.roleSpecification(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 6874; + this.state = 6702; this.match(PostgreSqlParser.ALTER); - this.state = 6875; + this.state = 6703; this.match(PostgreSqlParser.SERVER); - this.state = 6876; + this.state = 6704; this.name(); - this.state = 6877; + this.state = 6705; this.match(PostgreSqlParser.OWNER); - this.state = 6878; + this.state = 6706; this.match(PostgreSqlParser.TO); - this.state = 6879; - this.rolespec(); + this.state = 6707; + this.roleSpecification(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 6881; + this.state = 6709; this.match(PostgreSqlParser.ALTER); - this.state = 6882; + this.state = 6710; this.match(PostgreSqlParser.EVENT); - this.state = 6883; + this.state = 6711; this.match(PostgreSqlParser.TRIGGER); - this.state = 6884; + this.state = 6712; this.name(); - this.state = 6885; + this.state = 6713; this.match(PostgreSqlParser.OWNER); - this.state = 6886; + this.state = 6714; this.match(PostgreSqlParser.TO); - this.state = 6887; - this.rolespec(); + this.state = 6715; + this.roleSpecification(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 6889; + this.state = 6717; this.match(PostgreSqlParser.ALTER); - this.state = 6890; + this.state = 6718; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6891; + this.state = 6719; this.name(); - this.state = 6892; + this.state = 6720; this.match(PostgreSqlParser.OWNER); - this.state = 6893; + this.state = 6721; this.match(PostgreSqlParser.TO); - this.state = 6894; - this.rolespec(); + this.state = 6722; + this.roleSpecification(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 6896; + this.state = 6724; this.match(PostgreSqlParser.ALTER); - this.state = 6897; + this.state = 6725; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6898; + this.state = 6726; this.name(); - this.state = 6899; + this.state = 6727; this.match(PostgreSqlParser.OWNER); - this.state = 6900; + this.state = 6728; this.match(PostgreSqlParser.TO); - this.state = 6901; - this.rolespec(); + this.state = 6729; + this.roleSpecification(); } break; } @@ -36440,22 +34501,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createpublicationstmt(): CreatepublicationstmtContext { - let localContext = new CreatepublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSqlParser.RULE_createpublicationstmt); + public createPublicationStatement(): CreatePublicationStatementContext { + let localContext = new CreatePublicationStatementContext(this.context, this.state); + this.enterRule(localContext, 680, PostgreSqlParser.RULE_createPublicationStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6905; + this.state = 6733; this.match(PostgreSqlParser.CREATE); - this.state = 6906; + this.state = 6734; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6907; + this.state = 6735; this.name(); - this.state = 6908; - this.opt_publication_for_tables(); - this.state = 6909; - this.opt_definition(); + this.state = 6736; + this.optionalPublicationForTables(); + this.state = 6737; + this.optionalDefinition(); } } catch (re) { @@ -36472,18 +34533,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_publication_for_tables(): Opt_publication_for_tablesContext { - let localContext = new Opt_publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSqlParser.RULE_opt_publication_for_tables); + public optionalPublicationForTables(): OptionalPublicationForTablesContext { + let localContext = new OptionalPublicationForTablesContext(this.context, this.state); + this.enterRule(localContext, 682, PostgreSqlParser.RULE_optionalPublicationForTables); try { - this.state = 6913; + this.state = 6741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6911; - this.publication_for_tables(); + this.state = 6739; + this.publicationForTables(); } break; case PostgreSqlParser.EOF: @@ -36513,32 +34574,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public publication_for_tables(): Publication_for_tablesContext { - let localContext = new Publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSqlParser.RULE_publication_for_tables); + public publicationForTables(): PublicationForTablesContext { + let localContext = new PublicationForTablesContext(this.context, this.state); + this.enterRule(localContext, 684, PostgreSqlParser.RULE_publicationForTables); try { - this.state = 6921; + this.state = 6749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6915; + this.state = 6743; this.match(PostgreSqlParser.FOR); - this.state = 6916; + this.state = 6744; this.match(PostgreSqlParser.TABLE); - this.state = 6917; - this.relation_expr_list(); + this.state = 6745; + this.relationExpressionList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6918; + this.state = 6746; this.match(PostgreSqlParser.FOR); - this.state = 6919; + this.state = 6747; this.match(PostgreSqlParser.ALL); - this.state = 6920; + this.state = 6748; this.match(PostgreSqlParser.TABLES); } break; @@ -36558,77 +34619,77 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterpublicationstmt(): AlterpublicationstmtContext { - let localContext = new AlterpublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSqlParser.RULE_alterpublicationstmt); + public alterPublicationStatement(): AlterPublicationStatementContext { + let localContext = new AlterPublicationStatementContext(this.context, this.state); + this.enterRule(localContext, 686, PostgreSqlParser.RULE_alterPublicationStatement); try { - this.state = 6950; + this.state = 6778; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6923; + this.state = 6751; this.match(PostgreSqlParser.ALTER); - this.state = 6924; + this.state = 6752; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6925; + this.state = 6753; this.name(); - this.state = 6926; + this.state = 6754; this.match(PostgreSqlParser.SET); - this.state = 6927; + this.state = 6755; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6929; + this.state = 6757; this.match(PostgreSqlParser.ALTER); - this.state = 6930; + this.state = 6758; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6931; + this.state = 6759; this.name(); - this.state = 6932; + this.state = 6760; this.match(PostgreSqlParser.ADD_P); - this.state = 6933; + this.state = 6761; this.match(PostgreSqlParser.TABLE); - this.state = 6934; - this.relation_expr_list(); + this.state = 6762; + this.relationExpressionList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6936; + this.state = 6764; this.match(PostgreSqlParser.ALTER); - this.state = 6937; + this.state = 6765; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6938; + this.state = 6766; this.name(); - this.state = 6939; + this.state = 6767; this.match(PostgreSqlParser.SET); - this.state = 6940; + this.state = 6768; this.match(PostgreSqlParser.TABLE); - this.state = 6941; - this.relation_expr_list(); + this.state = 6769; + this.relationExpressionList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6943; + this.state = 6771; this.match(PostgreSqlParser.ALTER); - this.state = 6944; + this.state = 6772; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6945; + this.state = 6773; this.name(); - this.state = 6946; + this.state = 6774; this.match(PostgreSqlParser.DROP); - this.state = 6947; + this.state = 6775; this.match(PostgreSqlParser.TABLE); - this.state = 6948; - this.relation_expr_list(); + this.state = 6776; + this.relationExpressionList(); } break; } @@ -36647,28 +34708,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createsubscriptionstmt(): CreatesubscriptionstmtContext { - let localContext = new CreatesubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSqlParser.RULE_createsubscriptionstmt); + public createSubscriptionStatement(): CreateSubscriptionStatementContext { + let localContext = new CreateSubscriptionStatementContext(this.context, this.state); + this.enterRule(localContext, 688, PostgreSqlParser.RULE_createSubscriptionStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6952; + this.state = 6780; this.match(PostgreSqlParser.CREATE); - this.state = 6953; + this.state = 6781; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6954; + this.state = 6782; this.name(); - this.state = 6955; + this.state = 6783; this.match(PostgreSqlParser.CONNECTION); - this.state = 6956; + this.state = 6784; this.sconst(); - this.state = 6957; + this.state = 6785; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6958; - this.publication_name_list(); - this.state = 6959; - this.opt_definition(); + this.state = 6786; + this.publicationNameList(); + this.state = 6787; + this.optionalDefinition(); } } catch (re) { @@ -36685,28 +34746,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public publication_name_list(): Publication_name_listContext { - let localContext = new Publication_name_listContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSqlParser.RULE_publication_name_list); + public publicationNameList(): PublicationNameListContext { + let localContext = new PublicationNameListContext(this.context, this.state); + this.enterRule(localContext, 690, PostgreSqlParser.RULE_publicationNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6961; - this.publication_name_item(); - this.state = 6966; + this.state = 6789; + this.publicationNameItem(); + this.state = 6794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6962; + this.state = 6790; this.match(PostgreSqlParser.COMMA); - this.state = 6963; - this.publication_name_item(); + this.state = 6791; + this.publicationNameItem(); } } - this.state = 6968; + this.state = 6796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36726,14 +34787,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public publication_name_item(): Publication_name_itemContext { - let localContext = new Publication_name_itemContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSqlParser.RULE_publication_name_item); + public publicationNameItem(): PublicationNameItemContext { + let localContext = new PublicationNameItemContext(this.context, this.state); + this.enterRule(localContext, 692, PostgreSqlParser.RULE_publicationNameItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 6969; - this.collabel(); + this.state = 6797; + this.columnLabel(); } } catch (re) { @@ -36750,102 +34811,102 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altersubscriptionstmt(): AltersubscriptionstmtContext { - let localContext = new AltersubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSqlParser.RULE_altersubscriptionstmt); + public alterSubscriptionStatement(): AlterSubscriptionStatementContext { + let localContext = new AlterSubscriptionStatementContext(this.context, this.state); + this.enterRule(localContext, 694, PostgreSqlParser.RULE_alterSubscriptionStatement); try { - this.state = 7008; + this.state = 6836; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6971; + this.state = 6799; this.match(PostgreSqlParser.ALTER); - this.state = 6972; + this.state = 6800; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6973; + this.state = 6801; this.name(); - this.state = 6974; + this.state = 6802; this.match(PostgreSqlParser.SET); - this.state = 6975; + this.state = 6803; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6977; + this.state = 6805; this.match(PostgreSqlParser.ALTER); - this.state = 6978; + this.state = 6806; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6979; + this.state = 6807; this.name(); - this.state = 6980; + this.state = 6808; this.match(PostgreSqlParser.CONNECTION); - this.state = 6981; + this.state = 6809; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6983; + this.state = 6811; this.match(PostgreSqlParser.ALTER); - this.state = 6984; + this.state = 6812; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6985; + this.state = 6813; this.name(); - this.state = 6986; + this.state = 6814; this.match(PostgreSqlParser.REFRESH); - this.state = 6987; + this.state = 6815; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6988; - this.opt_definition(); + this.state = 6816; + this.optionalDefinition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6990; + this.state = 6818; this.match(PostgreSqlParser.ALTER); - this.state = 6991; + this.state = 6819; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 6992; + this.state = 6820; this.name(); - this.state = 6993; + this.state = 6821; this.match(PostgreSqlParser.SET); - this.state = 6994; + this.state = 6822; this.match(PostgreSqlParser.PUBLICATION); - this.state = 6995; - this.publication_name_list(); - this.state = 6996; - this.opt_definition(); + this.state = 6823; + this.publicationNameList(); + this.state = 6824; + this.optionalDefinition(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6998; + this.state = 6826; this.match(PostgreSqlParser.ALTER); - this.state = 6999; + this.state = 6827; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 7000; + this.state = 6828; this.name(); - this.state = 7001; + this.state = 6829; this.match(PostgreSqlParser.ENABLE_P); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7003; + this.state = 6831; this.match(PostgreSqlParser.ALTER); - this.state = 7004; + this.state = 6832; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 7005; + this.state = 6833; this.name(); - this.state = 7006; + this.state = 6834; this.match(PostgreSqlParser.DISABLE_P); } break; @@ -36865,41 +34926,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropsubscriptionstmt(): DropsubscriptionstmtContext { - let localContext = new DropsubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSqlParser.RULE_dropsubscriptionstmt); + public dropSubscriptionStatement(): DropSubscriptionStatementContext { + let localContext = new DropSubscriptionStatementContext(this.context, this.state); + this.enterRule(localContext, 696, PostgreSqlParser.RULE_dropSubscriptionStatement); try { - this.state = 7022; + this.state = 6850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7010; + this.state = 6838; this.match(PostgreSqlParser.DROP); - this.state = 7011; + this.state = 6839; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 7012; + this.state = 6840; this.name(); - this.state = 7013; - this.opt_drop_behavior(); + this.state = 6841; + this.optionalDropBehavior(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7015; + this.state = 6843; this.match(PostgreSqlParser.DROP); - this.state = 7016; + this.state = 6844; this.match(PostgreSqlParser.SUBSCRIPTION); - this.state = 7017; + this.state = 6845; this.match(PostgreSqlParser.IF_P); - this.state = 7018; + this.state = 6846; this.match(PostgreSqlParser.EXISTS); - this.state = 7019; + this.state = 6847; this.name(); - this.state = 7020; - this.opt_drop_behavior(); + this.state = 6848; + this.optionalDropBehavior(); } break; } @@ -36918,38 +34979,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public rulestmt(): RulestmtContext { - let localContext = new RulestmtContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSqlParser.RULE_rulestmt); + public ruleStatement(): RuleStatementContext { + let localContext = new RuleStatementContext(this.context, this.state); + this.enterRule(localContext, 698, PostgreSqlParser.RULE_ruleStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7024; + this.state = 6852; this.match(PostgreSqlParser.CREATE); - this.state = 7025; - this.opt_or_replace(); - this.state = 7026; + this.state = 6853; + this.optionalOrReplace(); + this.state = 6854; this.match(PostgreSqlParser.RULE); - this.state = 7027; + this.state = 6855; this.name(); - this.state = 7028; + this.state = 6856; this.match(PostgreSqlParser.AS); - this.state = 7029; + this.state = 6857; this.match(PostgreSqlParser.ON); - this.state = 7030; + this.state = 6858; this.event(); - this.state = 7031; + this.state = 6859; this.match(PostgreSqlParser.TO); - this.state = 7032; - this.qualified_name(); - this.state = 7033; - this.where_clause(); - this.state = 7034; + this.state = 6860; + this.qualifiedName(); + this.state = 6861; + this.whereClause(); + this.state = 6862; this.match(PostgreSqlParser.DO); - this.state = 7035; - this.opt_instead(); - this.state = 7036; - this.ruleactionlist(); + this.state = 6863; + this.optionalInstead(); + this.state = 6864; + this.ruleActionList(); } } catch (re) { @@ -36966,35 +35027,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public ruleactionlist(): RuleactionlistContext { - let localContext = new RuleactionlistContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSqlParser.RULE_ruleactionlist); + public ruleActionList(): RuleActionListContext { + let localContext = new RuleActionListContext(this.context, this.state); + this.enterRule(localContext, 700, PostgreSqlParser.RULE_ruleActionList); try { - this.state = 7044; + this.state = 6872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7038; + this.state = 6866; this.match(PostgreSqlParser.NOTHING); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7039; - this.ruleactionstmt(); + this.state = 6867; + this.ruleActionStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7040; + this.state = 6868; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7041; - this.ruleactionmulti(); - this.state = 7042; + this.state = 6869; + this.ruleActionMulti(); + this.state = 6870; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37014,28 +35075,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public ruleactionmulti(): RuleactionmultiContext { - let localContext = new RuleactionmultiContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSqlParser.RULE_ruleactionmulti); + public ruleActionMulti(): RuleActionMultiContext { + let localContext = new RuleActionMultiContext(this.context, this.state); + this.enterRule(localContext, 702, PostgreSqlParser.RULE_ruleActionMulti); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7046; - this.ruleactionstmtOrEmpty(); - this.state = 7051; + this.state = 6874; + this.ruleActionStatementOrEmpty(); + this.state = 6879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 7047; + this.state = 6875; this.match(PostgreSqlParser.SEMI); - this.state = 7048; - this.ruleactionstmtOrEmpty(); + this.state = 6876; + this.ruleActionStatementOrEmpty(); } } - this.state = 7053; + this.state = 6881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37055,46 +35116,46 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public ruleactionstmt(): RuleactionstmtContext { - let localContext = new RuleactionstmtContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSqlParser.RULE_ruleactionstmt); + public ruleActionStatement(): RuleActionStatementContext { + let localContext = new RuleActionStatementContext(this.context, this.state); + this.enterRule(localContext, 704, PostgreSqlParser.RULE_ruleActionStatement); try { - this.state = 7059; + this.state = 6887; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7054; - this.selectstmt(); + this.state = 6882; + this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7055; - this.insertstmt(); + this.state = 6883; + this.insertStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7056; - this.updatestmt(); + this.state = 6884; + this.updateStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7057; - this.deletestmt(); + this.state = 6885; + this.deleteStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7058; - this.notifystmt(); + this.state = 6886; + this.notifyStatement(); } break; } @@ -37113,11 +35174,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public ruleactionstmtOrEmpty(): RuleactionstmtOrEmptyContext { - let localContext = new RuleactionstmtOrEmptyContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSqlParser.RULE_ruleactionstmtOrEmpty); + public ruleActionStatementOrEmpty(): RuleActionStatementOrEmptyContext { + let localContext = new RuleActionStatementOrEmptyContext(this.context, this.state); + this.enterRule(localContext, 706, PostgreSqlParser.RULE_ruleActionStatementOrEmpty); try { - this.state = 7063; + this.state = 6891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -37131,8 +35192,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 7061; - this.ruleactionstmt(); + this.state = 6889; + this.ruleActionStatement(); } break; case PostgreSqlParser.CLOSE_PAREN: @@ -37162,12 +35223,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public event(): EventContext { let localContext = new EventContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSqlParser.RULE_event); + this.enterRule(localContext, 708, PostgreSqlParser.RULE_event); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7065; + this.state = 6893; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 232 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -37192,24 +35253,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_instead(): Opt_insteadContext { - let localContext = new Opt_insteadContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSqlParser.RULE_opt_instead); + public optionalInstead(): OptionalInsteadContext { + let localContext = new OptionalInsteadContext(this.context, this.state); + this.enterRule(localContext, 710, PostgreSqlParser.RULE_optionalInstead); try { - this.state = 7070; + this.state = 6898; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.INSTEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7067; + this.state = 6895; this.match(PostgreSqlParser.INSTEAD); } break; case PostgreSqlParser.ALSO: this.enterOuterAlt(localContext, 2); { - this.state = 7068; + this.state = 6896; this.match(PostgreSqlParser.ALSO); } break; @@ -37246,18 +35307,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public notifystmt(): NotifystmtContext { - let localContext = new NotifystmtContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSqlParser.RULE_notifystmt); + public notifyStatement(): NotifyStatementContext { + let localContext = new NotifyStatementContext(this.context, this.state); + this.enterRule(localContext, 712, PostgreSqlParser.RULE_notifyStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7072; + this.state = 6900; this.match(PostgreSqlParser.NOTIFY); - this.state = 7073; - this.colid(); - this.state = 7074; - this.notify_payload(); + this.state = 6901; + this.columnId(); + this.state = 6902; + this.notifyPayload(); } } catch (re) { @@ -37274,19 +35335,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public notify_payload(): Notify_payloadContext { - let localContext = new Notify_payloadContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSqlParser.RULE_notify_payload); + public notifyPayload(): NotifyPayloadContext { + let localContext = new NotifyPayloadContext(this.context, this.state); + this.enterRule(localContext, 714, PostgreSqlParser.RULE_notifyPayload); try { - this.state = 7079; + this.state = 6907; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 7076; + this.state = 6904; this.match(PostgreSqlParser.COMMA); - this.state = 7077; + this.state = 6905; this.sconst(); } break; @@ -37317,16 +35378,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public listenstmt(): ListenstmtContext { - let localContext = new ListenstmtContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSqlParser.RULE_listenstmt); + public listenStatement(): ListenStatementContext { + let localContext = new ListenStatementContext(this.context, this.state); + this.enterRule(localContext, 716, PostgreSqlParser.RULE_listenStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7081; + this.state = 6909; this.match(PostgreSqlParser.LISTEN); - this.state = 7082; - this.colid(); + this.state = 6910; + this.columnId(); } } catch (re) { @@ -37343,28 +35404,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public unlistenstmt(): UnlistenstmtContext { - let localContext = new UnlistenstmtContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSqlParser.RULE_unlistenstmt); + public unlistenStatement(): UnlistenStatementContext { + let localContext = new UnlistenStatementContext(this.context, this.state); + this.enterRule(localContext, 718, PostgreSqlParser.RULE_unlistenStatement); try { - this.state = 7088; + this.state = 6916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7084; + this.state = 6912; this.match(PostgreSqlParser.UNLISTEN); - this.state = 7085; - this.colid(); + this.state = 6913; + this.columnId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7086; + this.state = 6914; this.match(PostgreSqlParser.UNLISTEN); - this.state = 7087; + this.state = 6915; this.match(PostgreSqlParser.STAR); } break; @@ -37384,166 +35445,183 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transactionstmt(): TransactionstmtContext { - let localContext = new TransactionstmtContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSqlParser.RULE_transactionstmt); + public transactionStatement(): TransactionStatementContext { + let localContext = new TransactionStatementContext(this.context, this.state); + this.enterRule(localContext, 720, PostgreSqlParser.RULE_transactionStatement); + let _la: number; try { - this.state = 7140; + this.state = 6971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7090; + this.state = 6918; this.match(PostgreSqlParser.ABORT_P); - this.state = 7091; - this.opt_transaction(); - this.state = 7092; - this.opt_transaction_chain(); + this.state = 6919; + this.optionalTransaction(); + this.state = 6920; + this.optionalTransactionChain(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7094; + this.state = 6922; this.match(PostgreSqlParser.BEGIN_P); - this.state = 7095; - this.opt_transaction(); - this.state = 7096; - this.transaction_mode_list_or_empty(); + this.state = 6923; + this.optionalTransaction(); + this.state = 6925; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 54 || _la === 77 || _la === 235 || _la === 293) { + { + this.state = 6924; + this.transactionModeList(); + } + } + } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7098; + this.state = 6927; this.match(PostgreSqlParser.START); - this.state = 7099; + this.state = 6928; this.match(PostgreSqlParser.TRANSACTION); - this.state = 7100; - this.transaction_mode_list_or_empty(); + this.state = 6930; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 54 || _la === 77 || _la === 235 || _la === 293) { + { + this.state = 6929; + this.transactionModeList(); + } + } + } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7101; + this.state = 6932; this.match(PostgreSqlParser.COMMIT); - this.state = 7102; - this.opt_transaction(); - this.state = 7103; - this.opt_transaction_chain(); + this.state = 6933; + this.optionalTransaction(); + this.state = 6934; + this.optionalTransactionChain(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7105; + this.state = 6936; this.match(PostgreSqlParser.END_P); - this.state = 7106; - this.opt_transaction(); - this.state = 7107; - this.opt_transaction_chain(); + this.state = 6937; + this.optionalTransaction(); + this.state = 6938; + this.optionalTransactionChain(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7109; + this.state = 6940; this.match(PostgreSqlParser.ROLLBACK); - this.state = 7110; - this.opt_transaction(); - this.state = 7111; - this.opt_transaction_chain(); + this.state = 6941; + this.optionalTransaction(); + this.state = 6942; + this.optionalTransactionChain(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7113; + this.state = 6944; this.match(PostgreSqlParser.SAVEPOINT); - this.state = 7114; - this.colid(); + this.state = 6945; + this.columnId(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7115; + this.state = 6946; this.match(PostgreSqlParser.RELEASE); - this.state = 7116; + this.state = 6947; this.match(PostgreSqlParser.SAVEPOINT); - this.state = 7117; - this.colid(); + this.state = 6948; + this.columnId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7118; + this.state = 6949; this.match(PostgreSqlParser.RELEASE); - this.state = 7119; - this.colid(); + this.state = 6950; + this.columnId(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7120; + this.state = 6951; this.match(PostgreSqlParser.ROLLBACK); - this.state = 7121; - this.opt_transaction(); - this.state = 7122; + this.state = 6952; + this.optionalTransaction(); + this.state = 6953; this.match(PostgreSqlParser.TO); - this.state = 7123; + this.state = 6954; this.match(PostgreSqlParser.SAVEPOINT); - this.state = 7124; - this.colid(); + this.state = 6955; + this.columnId(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7126; + this.state = 6957; this.match(PostgreSqlParser.ROLLBACK); - this.state = 7127; - this.opt_transaction(); - this.state = 7128; + this.state = 6958; + this.optionalTransaction(); + this.state = 6959; this.match(PostgreSqlParser.TO); - this.state = 7129; - this.colid(); + this.state = 6960; + this.columnId(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7131; + this.state = 6962; this.match(PostgreSqlParser.PREPARE); - this.state = 7132; + this.state = 6963; this.match(PostgreSqlParser.TRANSACTION); - this.state = 7133; + this.state = 6964; this.sconst(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7134; + this.state = 6965; this.match(PostgreSqlParser.COMMIT); - this.state = 7135; + this.state = 6966; this.match(PostgreSqlParser.PREPARED); - this.state = 7136; + this.state = 6967; this.sconst(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7137; + this.state = 6968; this.match(PostgreSqlParser.ROLLBACK); - this.state = 7138; + this.state = 6969; this.match(PostgreSqlParser.PREPARED); - this.state = 7139; + this.state = 6970; this.sconst(); } break; @@ -37563,24 +35641,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_transaction(): Opt_transactionContext { - let localContext = new Opt_transactionContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSqlParser.RULE_opt_transaction); + public optionalTransaction(): OptionalTransactionContext { + let localContext = new OptionalTransactionContext(this.context, this.state); + this.enterRule(localContext, 722, PostgreSqlParser.RULE_optionalTransaction); try { - this.state = 7145; + this.state = 6976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WORK: this.enterOuterAlt(localContext, 1); { - this.state = 7142; + this.state = 6973; this.match(PostgreSqlParser.WORK); } break; case PostgreSqlParser.TRANSACTION: this.enterOuterAlt(localContext, 2); { - this.state = 7143; + this.state = 6974; this.match(PostgreSqlParser.TRANSACTION); } break; @@ -37616,55 +35694,55 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transaction_mode_item(): Transaction_mode_itemContext { - let localContext = new Transaction_mode_itemContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSqlParser.RULE_transaction_mode_item); + public transactionModeItem(): TransactionModeItemContext { + let localContext = new TransactionModeItemContext(this.context, this.state); + this.enterRule(localContext, 724, PostgreSqlParser.RULE_transactionModeItem); try { - this.state = 7157; + this.state = 6988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7147; + this.state = 6978; this.match(PostgreSqlParser.ISOLATION); - this.state = 7148; + this.state = 6979; this.match(PostgreSqlParser.LEVEL); - this.state = 7149; - this.iso_level(); + this.state = 6980; + this.isoLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7150; + this.state = 6981; this.match(PostgreSqlParser.READ); - this.state = 7151; + this.state = 6982; this.match(PostgreSqlParser.ONLY); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7152; + this.state = 6983; this.match(PostgreSqlParser.READ); - this.state = 7153; + this.state = 6984; this.match(PostgreSqlParser.WRITE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7154; + this.state = 6985; this.match(PostgreSqlParser.DEFERRABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7155; + this.state = 6986; this.match(PostgreSqlParser.NOT); - this.state = 7156; + this.state = 6987; this.match(PostgreSqlParser.DEFERRABLE); } break; @@ -37684,36 +35762,36 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transaction_mode_list(): Transaction_mode_listContext { - let localContext = new Transaction_mode_listContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSqlParser.RULE_transaction_mode_list); + public transactionModeList(): TransactionModeListContext { + let localContext = new TransactionModeListContext(this.context, this.state); + this.enterRule(localContext, 726, PostgreSqlParser.RULE_transactionModeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7159; - this.transaction_mode_item(); - this.state = 7166; + this.state = 6990; + this.transactionModeItem(); + this.state = 6997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6 || _la === 54 || _la === 77 || _la === 235 || _la === 293) { { { - this.state = 7161; + this.state = 6992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7160; + this.state = 6991; this.match(PostgreSqlParser.COMMA); } } - this.state = 7163; - this.transaction_mode_item(); + this.state = 6994; + this.transactionModeItem(); } } - this.state = 7168; + this.state = 6999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37733,73 +35811,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public transaction_mode_list_or_empty(): Transaction_mode_list_or_emptyContext { - let localContext = new Transaction_mode_list_or_emptyContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSqlParser.RULE_transaction_mode_list_or_empty); - try { - this.state = 7171; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.NOT: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.READ: - this.enterOuterAlt(localContext, 1); - { - this.state = 7169; - this.transaction_mode_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 opt_transaction_chain(): Opt_transaction_chainContext { - let localContext = new Opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSqlParser.RULE_opt_transaction_chain); + public optionalTransactionChain(): OptionalTransactionChainContext { + let localContext = new OptionalTransactionChainContext(this.context, this.state); + this.enterRule(localContext, 728, PostgreSqlParser.RULE_optionalTransactionChain); let _la: number; try { - this.state = 7179; + this.state = 7006; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: this.enterOuterAlt(localContext, 1); { - this.state = 7173; + this.state = 7000; this.match(PostgreSqlParser.AND); - this.state = 7175; + this.state = 7002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 7174; + this.state = 7001; this.match(PostgreSqlParser.NO); } } - this.state = 7177; + this.state = 7004; this.match(PostgreSqlParser.CHAIN); } break; @@ -37829,71 +35864,71 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public viewstmt(): ViewstmtContext { - let localContext = new ViewstmtContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSqlParser.RULE_viewstmt); + public viewStatement(): ViewStatementContext { + let localContext = new ViewStatementContext(this.context, this.state); + this.enterRule(localContext, 730, PostgreSqlParser.RULE_viewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7181; + this.state = 7008; this.match(PostgreSqlParser.CREATE); - this.state = 7184; + this.state = 7011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 7182; + this.state = 7009; this.match(PostgreSqlParser.OR); - this.state = 7183; + this.state = 7010; this.match(PostgreSqlParser.REPLACE); } } - this.state = 7186; - this.opttemp(); - this.state = 7200; + this.state = 7013; + this.temporaryOption(); + this.state = 7027; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.VIEW: { - this.state = 7187; + this.state = 7014; this.match(PostgreSqlParser.VIEW); - this.state = 7188; - this.qualified_name(); - this.state = 7189; - this.opt_column_list(); - this.state = 7190; - this.opt_reloptions(); + this.state = 7015; + this.qualifiedName(); + this.state = 7016; + this.columnListWithParentheses(); + this.state = 7017; + this.optionalRelOptions(); } break; case PostgreSqlParser.RECURSIVE: { - this.state = 7192; + this.state = 7019; this.match(PostgreSqlParser.RECURSIVE); - this.state = 7193; + this.state = 7020; this.match(PostgreSqlParser.VIEW); - this.state = 7194; - this.qualified_name(); - this.state = 7195; + this.state = 7021; + this.qualifiedName(); + this.state = 7022; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7196; - this.columnlist(); - this.state = 7197; + this.state = 7023; + this.columnList(); + this.state = 7024; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7198; - this.opt_reloptions(); + this.state = 7025; + this.optionalRelOptions(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7202; + this.state = 7029; this.match(PostgreSqlParser.AS); - this.state = 7203; - this.selectstmt(); - this.state = 7204; - this.opt_check_option(); + this.state = 7030; + this.selectStatement(); + this.state = 7031; + this.optionalCheckOption(); } } catch (re) { @@ -37910,25 +35945,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_check_option(): Opt_check_optionContext { - let localContext = new Opt_check_optionContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSqlParser.RULE_opt_check_option); + public optionalCheckOption(): OptionalCheckOptionContext { + let localContext = new OptionalCheckOptionContext(this.context, this.state); + this.enterRule(localContext, 732, PostgreSqlParser.RULE_optionalCheckOption); let _la: number; try { - this.state = 7213; + this.state = 7040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WITH: this.enterOuterAlt(localContext, 1); { - this.state = 7206; + this.state = 7033; this.match(PostgreSqlParser.WITH); - this.state = 7208; + this.state = 7035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 245) { { - this.state = 7207; + this.state = 7034; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 245)) { this.errorHandler.recoverInline(this); @@ -37940,9 +35975,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } } - this.state = 7210; + this.state = 7037; this.match(PostgreSqlParser.CHECK); - this.state = 7211; + this.state = 7038; this.match(PostgreSqlParser.OPTION); } break; @@ -37974,16 +36009,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public loadstmt(): LoadstmtContext { - let localContext = new LoadstmtContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSqlParser.RULE_loadstmt); + public loadStatement(): LoadStatementContext { + let localContext = new LoadStatementContext(this.context, this.state); + this.enterRule(localContext, 734, PostgreSqlParser.RULE_loadStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7215; + this.state = 7042; this.match(PostgreSqlParser.LOAD); - this.state = 7216; - this.file_name(); + this.state = 7043; + this.fileName(); } } catch (re) { @@ -38000,22 +36035,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createdbstmt(): CreatedbstmtContext { - let localContext = new CreatedbstmtContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSqlParser.RULE_createdbstmt); + public createDatabaseStatement(): CreateDatabaseStatementContext { + let localContext = new CreateDatabaseStatementContext(this.context, this.state); + this.enterRule(localContext, 736, PostgreSqlParser.RULE_createDatabaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7218; + this.state = 7045; this.match(PostgreSqlParser.CREATE); - this.state = 7219; + this.state = 7046; this.match(PostgreSqlParser.DATABASE); - this.state = 7220; + this.state = 7047; this.name(); - this.state = 7221; - this.opt_with(); - this.state = 7222; - this.createdb_opt_list(); + this.state = 7048; + this.optionalWith(); + this.state = 7049; + this.createDatabaseOptionList(); } } catch (re) { @@ -38032,11 +36067,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createdb_opt_list(): Createdb_opt_listContext { - let localContext = new Createdb_opt_listContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSqlParser.RULE_createdb_opt_list); + public createDatabaseOptionList(): CreateDatabaseOptionListContext { + let localContext = new CreateDatabaseOptionListContext(this.context, this.state); + this.enterRule(localContext, 738, PostgreSqlParser.RULE_createDatabaseOptionList); + let _la: number; try { - this.state = 7226; + this.state = 7057; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -38115,8 +36151,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 7224; - this.createdb_opt_items(); + this.state = 7052; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 7051; + this.createDatabaseOptionItem(); + } + } + this.state = 7054; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 164)) & ~0x1F) === 0 && ((1 << (_la - 164)) & 1073742089) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553665) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451849) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 517) !== 0) || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)); } break; case PostgreSqlParser.EOF: @@ -38145,71 +36193,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createdb_opt_items(): Createdb_opt_itemsContext { - let localContext = new Createdb_opt_itemsContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSqlParser.RULE_createdb_opt_items); + public createDatabaseOptionItem(): CreateDatabaseOptionItemContext { + let localContext = new CreateDatabaseOptionItemContext(this.context, this.state); + this.enterRule(localContext, 740, PostgreSqlParser.RULE_createDatabaseOptionItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7229; + this.state = 7059; + this.createDatabaseOptionName(); + this.state = 7061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - do { - { + if (_la === 10) { { - this.state = 7228; - this.createdb_opt_item(); - } + this.state = 7060; + this.match(PostgreSqlParser.EQUAL); } - this.state = 7231; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 164)) & ~0x1F) === 0 && ((1 << (_la - 164)) & 1073742089) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553665) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451849) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 517) !== 0) || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)); } - } - 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 createdb_opt_item(): Createdb_opt_itemContext { - let localContext = new Createdb_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSqlParser.RULE_createdb_opt_item); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7233; - this.createdb_opt_name(); - this.state = 7234; - this.opt_equal(); - this.state = 7238; + + this.state = 7066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { - this.state = 7235; - this.signediconst(); + this.state = 7063; + this.signedIconst(); } break; case 2: { - this.state = 7236; - this.opt_boolean_or_string(); + this.state = 7064; + this.booleanOrString(); } break; case 3: { - this.state = 7237; + this.state = 7065; this.match(PostgreSqlParser.DEFAULT); } break; @@ -38230,11 +36250,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createdb_opt_name(): Createdb_opt_nameContext { - let localContext = new Createdb_opt_nameContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSqlParser.RULE_createdb_opt_name); + public createDatabaseOptionName(): CreateDatabaseOptionNameContext { + let localContext = new CreateDatabaseOptionNameContext(this.context, this.state); + this.enterRule(localContext, 742, PostgreSqlParser.RULE_createDatabaseOptionName); try { - this.state = 7248; + this.state = 7076; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -38307,51 +36327,51 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 7240; + this.state = 7068; this.identifier(); } break; case PostgreSqlParser.CONNECTION: this.enterOuterAlt(localContext, 2); { - this.state = 7241; + this.state = 7069; this.match(PostgreSqlParser.CONNECTION); - this.state = 7242; + this.state = 7070; this.match(PostgreSqlParser.LIMIT); } break; case PostgreSqlParser.ENCODING: this.enterOuterAlt(localContext, 3); { - this.state = 7243; + this.state = 7071; this.match(PostgreSqlParser.ENCODING); } break; case PostgreSqlParser.LOCATION: this.enterOuterAlt(localContext, 4); { - this.state = 7244; + this.state = 7072; this.match(PostgreSqlParser.LOCATION); } break; case PostgreSqlParser.OWNER: this.enterOuterAlt(localContext, 5); { - this.state = 7245; + this.state = 7073; this.match(PostgreSqlParser.OWNER); } break; case PostgreSqlParser.TABLESPACE: this.enterOuterAlt(localContext, 6); { - this.state = 7246; + this.state = 7074; this.match(PostgreSqlParser.TABLESPACE); } break; case PostgreSqlParser.TEMPLATE: this.enterOuterAlt(localContext, 7); { - this.state = 7247; + this.state = 7075; this.match(PostgreSqlParser.TEMPLATE); } break; @@ -38373,22 +36393,383 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_equal(): Opt_equalContext { - let localContext = new Opt_equalContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSqlParser.RULE_opt_equal); + public alterDatabaseStatement(): AlterDatabaseStatementContext { + let localContext = new AlterDatabaseStatementContext(this.context, this.state); + this.enterRule(localContext, 744, PostgreSqlParser.RULE_alterDatabaseStatement); try { - this.state = 7252; + this.enterOuterAlt(localContext, 1); + { + this.state = 7078; + this.match(PostgreSqlParser.ALTER); + this.state = 7079; + this.match(PostgreSqlParser.DATABASE); + this.state = 7080; + this.name(); + this.state = 7087; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { + case 1: + { + this.state = 7081; + this.match(PostgreSqlParser.WITH); + this.state = 7082; + this.createDatabaseOptionList(); + } + break; + case 2: + { + this.state = 7083; + this.createDatabaseOptionList(); + } + break; + case 3: + { + this.state = 7084; + this.match(PostgreSqlParser.SET); + this.state = 7085; + this.match(PostgreSqlParser.TABLESPACE); + this.state = 7086; + this.name(); + } + 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 alterDatabaseSetStatement(): AlterDatabaseSetStatementContext { + let localContext = new AlterDatabaseSetStatementContext(this.context, this.state); + this.enterRule(localContext, 746, PostgreSqlParser.RULE_alterDatabaseSetStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7089; + this.match(PostgreSqlParser.ALTER); + this.state = 7090; + this.match(PostgreSqlParser.DATABASE); + this.state = 7091; + this.name(); + this.state = 7092; + this.setResetClause(); + } + } + 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 dropDatabaseStatement(): DropDatabaseStatementContext { + let localContext = new DropDatabaseStatementContext(this.context, this.state); + this.enterRule(localContext, 748, PostgreSqlParser.RULE_dropDatabaseStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7094; + this.match(PostgreSqlParser.DROP); + this.state = 7095; + this.match(PostgreSqlParser.DATABASE); + this.state = 7098; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + case 1: + { + this.state = 7096; + this.match(PostgreSqlParser.IF_P); + this.state = 7097; + this.match(PostgreSqlParser.EXISTS); + } + break; + } + this.state = 7100; + this.name(); + this.state = 7113; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 2 || _la === 105) { + { + this.state = 7101; + this.optionalWith(); + this.state = 7102; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7103; + this.match(PostgreSqlParser.FORCE); + this.state = 7108; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 7104; + this.match(PostgreSqlParser.COMMA); + this.state = 7105; + this.match(PostgreSqlParser.FORCE); + } + } + this.state = 7110; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7111; + this.match(PostgreSqlParser.CLOSE_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 alterCollationStatement(): AlterCollationStatementContext { + let localContext = new AlterCollationStatementContext(this.context, this.state); + this.enterRule(localContext, 750, PostgreSqlParser.RULE_alterCollationStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7115; + this.match(PostgreSqlParser.ALTER); + this.state = 7116; + this.match(PostgreSqlParser.COLLATION); + this.state = 7117; + this.anyName(); + this.state = 7118; + this.match(PostgreSqlParser.REFRESH); + this.state = 7119; + this.match(PostgreSqlParser.VERSION_P); + } + } + 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 alterSystemStatement(): AlterSystemStatementContext { + let localContext = new AlterSystemStatementContext(this.context, this.state); + this.enterRule(localContext, 752, PostgreSqlParser.RULE_alterSystemStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7121; + this.match(PostgreSqlParser.ALTER); + this.state = 7122; + this.match(PostgreSqlParser.SYSTEM_P); + this.state = 7123; + _la = this.tokenStream.LA(1); + if(!(_la === 306 || _la === 326)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 7124; + this.genericSetClause(); + } + } + 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 createDomainStatement(): CreateDomainStatementContext { + let localContext = new CreateDomainStatementContext(this.context, this.state); + this.enterRule(localContext, 754, PostgreSqlParser.RULE_createDomainStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7126; + this.match(PostgreSqlParser.CREATE); + this.state = 7127; + this.match(PostgreSqlParser.DOMAIN_P); + this.state = 7128; + this.anyName(); + this.state = 7129; + this.optionalAs(); + this.state = 7130; + this.typeName(); + this.state = 7131; + this.columnQualifierList(); + } + } + 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 alterDomainStatement(): AlterDomainStatementContext { + let localContext = new AlterDomainStatementContext(this.context, this.state); + this.enterRule(localContext, 756, PostgreSqlParser.RULE_alterDomainStatement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7133; + this.match(PostgreSqlParser.ALTER); + this.state = 7134; + this.match(PostgreSqlParser.DOMAIN_P); + this.state = 7135; + this.anyName(); + this.state = 7157; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 367, this.context) ) { + case 1: + { + this.state = 7136; + this.alterColumnDefault(); + } + break; + case 2: + { + this.state = 7137; + this.match(PostgreSqlParser.DROP); + this.state = 7138; + this.match(PostgreSqlParser.NOT); + this.state = 7139; + this.match(PostgreSqlParser.NULL_P); + } + break; + case 3: + { + this.state = 7140; + this.match(PostgreSqlParser.SET); + this.state = 7141; + this.match(PostgreSqlParser.NOT); + this.state = 7142; + this.match(PostgreSqlParser.NULL_P); + } + break; + case 4: + { + this.state = 7143; + this.match(PostgreSqlParser.ADD_P); + this.state = 7144; + this.tableConstraint(); + } + break; + case 5: + { + this.state = 7145; + this.match(PostgreSqlParser.DROP); + this.state = 7146; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 7149; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { + case 1: + { + this.state = 7147; + this.match(PostgreSqlParser.IF_P); + this.state = 7148; + this.match(PostgreSqlParser.EXISTS); + } + break; + } + this.state = 7151; + this.name(); + this.state = 7152; + this.optionalDropBehavior(); + } + break; + case 6: + { + this.state = 7154; + this.match(PostgreSqlParser.VALIDATE); + this.state = 7155; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 7156; + this.name(); + } + 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 optionalAs(): OptionalAsContext { + let localContext = new OptionalAsContext(this.context, this.state); + this.enterRule(localContext, 758, PostgreSqlParser.RULE_optionalAs); + try { + this.state = 7161; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.EQUAL: + case PostgreSqlParser.AS: this.enterOuterAlt(localContext, 1); { - this.state = 7250; - this.match(PostgreSqlParser.EQUAL); + this.state = 7159; + this.match(PostgreSqlParser.AS); } break; - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -38396,11 +36777,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.ON: case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: case PostgreSqlParser.AUTHORIZATION: case PostgreSqlParser.BINARY: case PostgreSqlParser.COLLATION: @@ -38414,12 +36792,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.IS: case PostgreSqlParser.ISNULL: case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: case PostgreSqlParser.LIKE: case PostgreSqlParser.NATURAL: case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.RIGHT: case PostgreSqlParser.SIMILAR: case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: @@ -38929,7 +37309,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.StringConstant: case PostgreSqlParser.UnicodeEscapeStringConstant: case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.Integral: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: @@ -38956,46 +37335,209 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterdatabasestmt(): AlterdatabasestmtContext { - let localContext = new AlterdatabasestmtContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSqlParser.RULE_alterdatabasestmt); + public altertsDictionaryStatement(): AltertsDictionaryStatementContext { + let localContext = new AltertsDictionaryStatementContext(this.context, this.state); + this.enterRule(localContext, 760, PostgreSqlParser.RULE_altertsDictionaryStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7254; + this.state = 7163; this.match(PostgreSqlParser.ALTER); - this.state = 7255; - this.match(PostgreSqlParser.DATABASE); - this.state = 7256; - this.name(); - this.state = 7263; + this.state = 7164; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7165; + this.match(PostgreSqlParser.SEARCH); + this.state = 7166; + this.match(PostgreSqlParser.DICTIONARY); + this.state = 7167; + this.anyName(); + this.state = 7168; + this.definition(); + } + } + 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 altertsConfigurationStatement(): AltertsConfigurationStatementContext { + let localContext = new AltertsConfigurationStatementContext(this.context, this.state); + this.enterRule(localContext, 762, PostgreSqlParser.RULE_altertsConfigurationStatement); + try { + this.state = 7242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 7257; + this.state = 7170; + this.match(PostgreSqlParser.ALTER); + this.state = 7171; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7172; + this.match(PostgreSqlParser.SEARCH); + this.state = 7173; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7174; + this.anyName(); + this.state = 7175; + this.match(PostgreSqlParser.ADD_P); + this.state = 7176; + this.match(PostgreSqlParser.MAPPING); + this.state = 7177; + this.match(PostgreSqlParser.FOR); + this.state = 7178; + this.nameList(); + this.state = 7179; this.match(PostgreSqlParser.WITH); - this.state = 7258; - this.createdb_opt_list(); + this.state = 7180; + this.anyNameList(); } break; case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 7259; - this.createdb_opt_list(); + this.state = 7182; + this.match(PostgreSqlParser.ALTER); + this.state = 7183; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7184; + this.match(PostgreSqlParser.SEARCH); + this.state = 7185; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7186; + this.anyName(); + this.state = 7187; + this.match(PostgreSqlParser.ALTER); + this.state = 7188; + this.match(PostgreSqlParser.MAPPING); + this.state = 7189; + this.match(PostgreSqlParser.FOR); + this.state = 7190; + this.nameList(); + this.state = 7191; + this.match(PostgreSqlParser.WITH); + this.state = 7192; + this.anyNameList(); } break; case 3: + this.enterOuterAlt(localContext, 3); { - this.state = 7260; - this.match(PostgreSqlParser.SET); - this.state = 7261; - this.match(PostgreSqlParser.TABLESPACE); - this.state = 7262; - this.name(); + this.state = 7194; + this.match(PostgreSqlParser.ALTER); + this.state = 7195; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7196; + this.match(PostgreSqlParser.SEARCH); + this.state = 7197; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7198; + this.anyName(); + this.state = 7199; + this.match(PostgreSqlParser.ALTER); + this.state = 7200; + this.match(PostgreSqlParser.MAPPING); + this.state = 7201; + this.match(PostgreSqlParser.REPLACE); + this.state = 7202; + this.anyName(); + this.state = 7203; + this.match(PostgreSqlParser.WITH); + this.state = 7204; + this.anyName(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7206; + this.match(PostgreSqlParser.ALTER); + this.state = 7207; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7208; + this.match(PostgreSqlParser.SEARCH); + this.state = 7209; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7210; + this.anyName(); + this.state = 7211; + this.match(PostgreSqlParser.ALTER); + this.state = 7212; + this.match(PostgreSqlParser.MAPPING); + this.state = 7213; + this.match(PostgreSqlParser.FOR); + this.state = 7214; + this.nameList(); + this.state = 7215; + this.match(PostgreSqlParser.REPLACE); + this.state = 7216; + this.anyName(); + this.state = 7217; + this.match(PostgreSqlParser.WITH); + this.state = 7218; + this.anyName(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 7220; + this.match(PostgreSqlParser.ALTER); + this.state = 7221; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7222; + this.match(PostgreSqlParser.SEARCH); + this.state = 7223; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7224; + this.anyName(); + this.state = 7225; + this.match(PostgreSqlParser.DROP); + this.state = 7226; + this.match(PostgreSqlParser.MAPPING); + this.state = 7227; + this.match(PostgreSqlParser.FOR); + this.state = 7228; + this.nameList(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 7230; + this.match(PostgreSqlParser.ALTER); + this.state = 7231; + this.match(PostgreSqlParser.TEXT_P); + this.state = 7232; + this.match(PostgreSqlParser.SEARCH); + this.state = 7233; + this.match(PostgreSqlParser.CONFIGURATION); + this.state = 7234; + this.anyName(); + this.state = 7235; + this.match(PostgreSqlParser.DROP); + this.state = 7236; + this.match(PostgreSqlParser.MAPPING); + this.state = 7237; + this.match(PostgreSqlParser.IF_P); + this.state = 7238; + this.match(PostgreSqlParser.EXISTS); + this.state = 7239; + this.match(PostgreSqlParser.FOR); + this.state = 7240; + this.nameList(); } break; - } } } catch (re) { @@ -39012,20 +37554,41 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterdatabasesetstmt(): AlterdatabasesetstmtContext { - let localContext = new AlterdatabasesetstmtContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSqlParser.RULE_alterdatabasesetstmt); + public createConversionStatement(): CreateConversionStatementContext { + let localContext = new CreateConversionStatementContext(this.context, this.state); + this.enterRule(localContext, 764, PostgreSqlParser.RULE_createConversionStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7265; - this.match(PostgreSqlParser.ALTER); - this.state = 7266; - this.match(PostgreSqlParser.DATABASE); - this.state = 7267; - this.name(); - this.state = 7268; - this.setresetclause(); + this.state = 7244; + this.match(PostgreSqlParser.CREATE); + this.state = 7246; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 53) { + { + this.state = 7245; + this.match(PostgreSqlParser.DEFAULT); + } + } + + this.state = 7248; + this.match(PostgreSqlParser.CONVERSION_P); + this.state = 7249; + this.anyName(); + this.state = 7250; + this.match(PostgreSqlParser.FOR); + this.state = 7251; + this.sconst(); + this.state = 7252; + this.match(PostgreSqlParser.TO); + this.state = 7253; + this.sconst(); + this.state = 7254; + this.match(PostgreSqlParser.FROM); + this.state = 7255; + this.anyName(); } } catch (re) { @@ -39042,47 +37605,50 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public dropdbstmt(): DropdbstmtContext { - let localContext = new DropdbstmtContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSqlParser.RULE_dropdbstmt); - let _la: number; + public clusterStatement(): ClusterStatementContext { + let localContext = new ClusterStatementContext(this.context, this.state); + this.enterRule(localContext, 766, PostgreSqlParser.RULE_clusterStatement); try { - this.enterOuterAlt(localContext, 1); - { this.state = 7270; - this.match(PostgreSqlParser.DROP); - this.state = 7271; - this.match(PostgreSqlParser.DATABASE); - this.state = 7274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 7272; - this.match(PostgreSqlParser.IF_P); - this.state = 7273; - this.match(PostgreSqlParser.EXISTS); + this.state = 7257; + this.match(PostgreSqlParser.CLUSTER); + this.state = 7258; + this.optionalVerbose(); + this.state = 7259; + this.qualifiedName(); + this.state = 7260; + this.clusterIndexSpecification(); } break; - } - this.state = 7276; - this.name(); - this.state = 7282; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2 || _la === 105) { + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 7277; - this.opt_with(); - this.state = 7278; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7279; - this.drop_option_list(); - this.state = 7280; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7262; + this.match(PostgreSqlParser.CLUSTER); + this.state = 7263; + this.optionalVerbose(); } - } - + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7264; + this.match(PostgreSqlParser.CLUSTER); + this.state = 7265; + this.optionalVerbose(); + this.state = 7266; + this.name(); + this.state = 7267; + this.match(PostgreSqlParser.ON); + this.state = 7268; + this.qualifiedName(); + } + break; } } catch (re) { @@ -39099,31 +37665,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public drop_option_list(): Drop_option_listContext { - let localContext = new Drop_option_listContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSqlParser.RULE_drop_option_list); - let _la: number; + public clusterIndexSpecification(): ClusterIndexSpecificationContext { + let localContext = new ClusterIndexSpecificationContext(this.context, this.state); + this.enterRule(localContext, 768, PostgreSqlParser.RULE_clusterIndexSpecification); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7284; - this.drop_option(); - this.state = 7289; + this.state = 7275; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.USING: + this.enterOuterAlt(localContext, 1); { - this.state = 7285; - this.match(PostgreSqlParser.COMMA); - this.state = 7286; - this.drop_option(); + this.state = 7272; + this.match(PostgreSqlParser.USING); + this.state = 7273; + this.name(); } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { } - this.state = 7291; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -39140,14 +37707,70 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public drop_option(): Drop_optionContext { - let localContext = new Drop_optionContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSqlParser.RULE_drop_option); + public vacuumStatement(): VacuumStatementContext { + let localContext = new VacuumStatementContext(this.context, this.state); + this.enterRule(localContext, 770, PostgreSqlParser.RULE_vacuumStatement); + let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7292; - this.match(PostgreSqlParser.FORCE); + this.state = 7296; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7277; + this.match(PostgreSqlParser.VACUUM); + this.state = 7279; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 113) { + { + this.state = 7278; + this.match(PostgreSqlParser.FULL); + } + } + + this.state = 7282; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 112) { + { + this.state = 7281; + this.match(PostgreSqlParser.FREEZE); + } + } + + this.state = 7284; + this.optionalVerbose(); + this.state = 7286; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 31 || _la === 32) { + { + this.state = 7285; + this.analyzeKeyword(); + } + } + + this.state = 7288; + this.optionalVacuumRelationList(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7290; + this.match(PostgreSqlParser.VACUUM); + this.state = 7291; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7292; + this.vacuumAnalyzeOptionList(); + this.state = 7293; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7294; + this.optionalVacuumRelationList(); + } + break; } } catch (re) { @@ -39164,22 +37787,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altercollationstmt(): AltercollationstmtContext { - let localContext = new AltercollationstmtContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSqlParser.RULE_altercollationstmt); + public analyzeStatement(): AnalyzeStatementContext { + let localContext = new AnalyzeStatementContext(this.context, this.state); + this.enterRule(localContext, 772, PostgreSqlParser.RULE_analyzeStatement); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7294; - this.match(PostgreSqlParser.ALTER); - this.state = 7295; - this.match(PostgreSqlParser.COLLATION); - this.state = 7296; - this.any_name(); - this.state = 7297; - this.match(PostgreSqlParser.REFRESH); - this.state = 7298; - this.match(PostgreSqlParser.VERSION_P); + this.state = 7308; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7298; + this.analyzeKeyword(); + this.state = 7299; + this.optionalVerbose(); + this.state = 7300; + this.optionalVacuumRelationList(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7302; + this.analyzeKeyword(); + this.state = 7303; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7304; + this.vacuumAnalyzeOptionList(); + this.state = 7305; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7306; + this.optionalVacuumRelationList(); + } + break; } } catch (re) { @@ -39196,28 +37836,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public altersystemstmt(): AltersystemstmtContext { - let localContext = new AltersystemstmtContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSqlParser.RULE_altersystemstmt); + public vacuumAnalyzeOptionList(): VacuumAnalyzeOptionListContext { + let localContext = new VacuumAnalyzeOptionListContext(this.context, this.state); + this.enterRule(localContext, 774, PostgreSqlParser.RULE_vacuumAnalyzeOptionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7300; - this.match(PostgreSqlParser.ALTER); - this.state = 7301; - this.match(PostgreSqlParser.SYSTEM_P); - this.state = 7302; + this.state = 7310; + this.vacuumAnalyzeOptionElement(); + this.state = 7315; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 306 || _la === 326)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + while (_la === 6) { + { + { + this.state = 7311; + this.match(PostgreSqlParser.COMMA); + this.state = 7312; + this.vacuumAnalyzeOptionElement(); + } + } + this.state = 7317; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - this.state = 7303; - this.generic_set(); } } catch (re) { @@ -39234,24 +37877,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public createdomainstmt(): CreatedomainstmtContext { - let localContext = new CreatedomainstmtContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSqlParser.RULE_createdomainstmt); + public analyzeKeyword(): AnalyzeKeywordContext { + let localContext = new AnalyzeKeywordContext(this.context, this.state); + this.enterRule(localContext, 776, PostgreSqlParser.RULE_analyzeKeyword); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7305; - this.match(PostgreSqlParser.CREATE); - this.state = 7306; - this.match(PostgreSqlParser.DOMAIN_P); - this.state = 7307; - this.any_name(); - this.state = 7308; - this.opt_as(); - this.state = 7309; - this.typename(); - this.state = 7310; - this.colquallist(); + this.state = 7318; + _la = this.tokenStream.LA(1); + if(!(_la === 31 || _la === 32)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -39268,90 +37909,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public alterdomainstmt(): AlterdomainstmtContext { - let localContext = new AlterdomainstmtContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSqlParser.RULE_alterdomainstmt); + public vacuumAnalyzeOptionElement(): VacuumAnalyzeOptionElementContext { + let localContext = new VacuumAnalyzeOptionElementContext(this.context, this.state); + this.enterRule(localContext, 778, PostgreSqlParser.RULE_vacuumAnalyzeOptionElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7312; - this.match(PostgreSqlParser.ALTER); - this.state = 7313; - this.match(PostgreSqlParser.DOMAIN_P); - this.state = 7314; - this.any_name(); - this.state = 7336; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { - case 1: - { - this.state = 7315; - this.alter_column_default(); - } - break; - case 2: - { - this.state = 7316; - this.match(PostgreSqlParser.DROP); - this.state = 7317; - this.match(PostgreSqlParser.NOT); - this.state = 7318; - this.match(PostgreSqlParser.NULL_P); - } - break; - case 3: - { - this.state = 7319; - this.match(PostgreSqlParser.SET); - this.state = 7320; - this.match(PostgreSqlParser.NOT); - this.state = 7321; - this.match(PostgreSqlParser.NULL_P); - } - break; - case 4: - { - this.state = 7322; - this.match(PostgreSqlParser.ADD_P); - this.state = 7323; - this.tableconstraint(); - } - break; - case 5: - { - this.state = 7324; - this.match(PostgreSqlParser.DROP); - this.state = 7325; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 7328; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { - case 1: - { - this.state = 7326; - this.match(PostgreSqlParser.IF_P); - this.state = 7327; - this.match(PostgreSqlParser.EXISTS); - } - break; - } - this.state = 7330; - this.name(); - this.state = 7331; - this.opt_drop_behavior(); - } - break; - case 6: - { - this.state = 7333; - this.match(PostgreSqlParser.VALIDATE); - this.state = 7334; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 7335; - this.name(); - } - break; - } + this.state = 7320; + this.vacuumAnalyzeOptionName(); + this.state = 7321; + this.vacuumAnalyzeOptionArgument(); } } catch (re) { @@ -39368,20 +37935,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_as(): Opt_asContext { - let localContext = new Opt_asContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSqlParser.RULE_opt_as); + public vacuumAnalyzeOptionName(): VacuumAnalyzeOptionNameContext { + let localContext = new VacuumAnalyzeOptionNameContext(this.context, this.state); + this.enterRule(localContext, 780, PostgreSqlParser.RULE_vacuumAnalyzeOptionName); try { - this.state = 7340; + this.state = 7325; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: - this.enterOuterAlt(localContext, 1); - { - this.state = 7338; - this.match(PostgreSqlParser.AS); - } - break; case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -39404,14 +37964,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.IS: case PostgreSqlParser.ISNULL: case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: case PostgreSqlParser.LIKE: case PostgreSqlParser.NATURAL: case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: case PostgreSqlParser.SIMILAR: case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: @@ -39918,402 +38476,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 altertsdictionarystmt(): AltertsdictionarystmtContext { - let localContext = new AltertsdictionarystmtContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_altertsdictionarystmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7342; - this.match(PostgreSqlParser.ALTER); - this.state = 7343; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7344; - this.match(PostgreSqlParser.SEARCH); - this.state = 7345; - this.match(PostgreSqlParser.DICTIONARY); - this.state = 7346; - this.any_name(); - this.state = 7347; - this.definition(); - } - } - 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 altertsconfigurationstmt(): AltertsconfigurationstmtContext { - let localContext = new AltertsconfigurationstmtContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_altertsconfigurationstmt); - try { - this.state = 7421; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { - case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7349; - this.match(PostgreSqlParser.ALTER); - this.state = 7350; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7351; - this.match(PostgreSqlParser.SEARCH); - this.state = 7352; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7353; - this.any_name(); - this.state = 7354; - this.match(PostgreSqlParser.ADD_P); - this.state = 7355; - this.match(PostgreSqlParser.MAPPING); - this.state = 7356; - this.match(PostgreSqlParser.FOR); - this.state = 7357; - this.name_list(); - this.state = 7358; - this.any_with(); - this.state = 7359; - this.any_name_list(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7361; - this.match(PostgreSqlParser.ALTER); - this.state = 7362; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7363; - this.match(PostgreSqlParser.SEARCH); - this.state = 7364; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7365; - this.any_name(); - this.state = 7366; - this.match(PostgreSqlParser.ALTER); - this.state = 7367; - this.match(PostgreSqlParser.MAPPING); - this.state = 7368; - this.match(PostgreSqlParser.FOR); - this.state = 7369; - this.name_list(); - this.state = 7370; - this.any_with(); - this.state = 7371; - this.any_name_list(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7373; - this.match(PostgreSqlParser.ALTER); - this.state = 7374; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7375; - this.match(PostgreSqlParser.SEARCH); - this.state = 7376; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7377; - this.any_name(); - this.state = 7378; - this.match(PostgreSqlParser.ALTER); - this.state = 7379; - this.match(PostgreSqlParser.MAPPING); - this.state = 7380; - this.match(PostgreSqlParser.REPLACE); - this.state = 7381; - this.any_name(); - this.state = 7382; - this.any_with(); - this.state = 7383; - this.any_name(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7385; - this.match(PostgreSqlParser.ALTER); - this.state = 7386; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7387; - this.match(PostgreSqlParser.SEARCH); - this.state = 7388; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7389; - this.any_name(); - this.state = 7390; - this.match(PostgreSqlParser.ALTER); - this.state = 7391; - this.match(PostgreSqlParser.MAPPING); - this.state = 7392; - this.match(PostgreSqlParser.FOR); - this.state = 7393; - this.name_list(); - this.state = 7394; - this.match(PostgreSqlParser.REPLACE); - this.state = 7395; - this.any_name(); - this.state = 7396; - this.any_with(); - this.state = 7397; - this.any_name(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 7399; - this.match(PostgreSqlParser.ALTER); - this.state = 7400; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7401; - this.match(PostgreSqlParser.SEARCH); - this.state = 7402; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7403; - this.any_name(); - this.state = 7404; - this.match(PostgreSqlParser.DROP); - this.state = 7405; - this.match(PostgreSqlParser.MAPPING); - this.state = 7406; - this.match(PostgreSqlParser.FOR); - this.state = 7407; - this.name_list(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 7409; - this.match(PostgreSqlParser.ALTER); - this.state = 7410; - this.match(PostgreSqlParser.TEXT_P); - this.state = 7411; - this.match(PostgreSqlParser.SEARCH); - this.state = 7412; - this.match(PostgreSqlParser.CONFIGURATION); - this.state = 7413; - this.any_name(); - this.state = 7414; - this.match(PostgreSqlParser.DROP); - this.state = 7415; - this.match(PostgreSqlParser.MAPPING); - this.state = 7416; - this.match(PostgreSqlParser.IF_P); - this.state = 7417; - this.match(PostgreSqlParser.EXISTS); - this.state = 7418; - this.match(PostgreSqlParser.FOR); - this.state = 7419; - this.name_list(); - } - 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 any_with(): Any_withContext { - let localContext = new Any_withContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_any_with); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7423; - this.match(PostgreSqlParser.WITH); - } - } - 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 createconversionstmt(): CreateconversionstmtContext { - let localContext = new CreateconversionstmtContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_createconversionstmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7425; - this.match(PostgreSqlParser.CREATE); - this.state = 7426; - this.opt_default(); - this.state = 7427; - this.match(PostgreSqlParser.CONVERSION_P); - this.state = 7428; - this.any_name(); - this.state = 7429; - this.match(PostgreSqlParser.FOR); - this.state = 7430; - this.sconst(); - this.state = 7431; - this.match(PostgreSqlParser.TO); - this.state = 7432; - this.sconst(); - this.state = 7433; - this.match(PostgreSqlParser.FROM); - this.state = 7434; - this.any_name(); - } - } - 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 clusterstmt(): ClusterstmtContext { - let localContext = new ClusterstmtContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_clusterstmt); - try { - this.state = 7449; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7436; - this.match(PostgreSqlParser.CLUSTER); - this.state = 7437; - this.opt_verbose(); - this.state = 7438; - this.qualified_name(); - this.state = 7439; - this.cluster_index_specification(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7441; - this.match(PostgreSqlParser.CLUSTER); - this.state = 7442; - this.opt_verbose(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7443; - this.match(PostgreSqlParser.CLUSTER); - this.state = 7444; - this.opt_verbose(); - this.state = 7445; - this.name(); - this.state = 7446; - this.match(PostgreSqlParser.ON); - this.state = 7447; - this.qualified_name(); - } - 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 cluster_index_specification(): Cluster_index_specificationContext { - let localContext = new Cluster_index_specificationContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_cluster_index_specification); - try { - this.state = 7454; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - this.enterOuterAlt(localContext, 1); - { - this.state = 7451; - this.match(PostgreSqlParser.USING); - this.state = 7452; - this.name(); + this.state = 7323; + this.nonReservedWord(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: + case PostgreSqlParser.ANALYSE: + case PostgreSqlParser.ANALYZE: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7324; + this.analyzeKeyword(); } break; default: @@ -40334,214 +38510,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public vacuumstmt(): VacuumstmtContext { - let localContext = new VacuumstmtContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_vacuumstmt); - try { - this.state = 7469; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7456; - this.match(PostgreSqlParser.VACUUM); - this.state = 7457; - this.opt_full(); - this.state = 7458; - this.opt_freeze(); - this.state = 7459; - this.opt_verbose(); - this.state = 7460; - this.opt_analyze(); - this.state = 7461; - this.opt_vacuum_relation_list(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7463; - this.match(PostgreSqlParser.VACUUM); - this.state = 7464; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7465; - this.vac_analyze_option_list(); - this.state = 7466; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7467; - this.opt_vacuum_relation_list(); - } - 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 analyzestmt(): AnalyzestmtContext { - let localContext = new AnalyzestmtContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_analyzestmt); - try { - this.state = 7481; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7471; - this.analyze_keyword(); - this.state = 7472; - this.opt_verbose(); - this.state = 7473; - this.opt_vacuum_relation_list(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7475; - this.analyze_keyword(); - this.state = 7476; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7477; - this.vac_analyze_option_list(); - this.state = 7478; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7479; - this.opt_vacuum_relation_list(); - } - 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 vac_analyze_option_list(): Vac_analyze_option_listContext { - let localContext = new Vac_analyze_option_listContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_vac_analyze_option_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7483; - this.vac_analyze_option_elem(); - this.state = 7488; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 7484; - this.match(PostgreSqlParser.COMMA); - this.state = 7485; - this.vac_analyze_option_elem(); - } - } - this.state = 7490; - 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 analyze_keyword(): Analyze_keywordContext { - let localContext = new Analyze_keywordContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_analyze_keyword); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7491; - _la = this.tokenStream.LA(1); - if(!(_la === 31 || _la === 32)) { - 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 vac_analyze_option_elem(): Vac_analyze_option_elemContext { - let localContext = new Vac_analyze_option_elemContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_vac_analyze_option_elem); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7493; - this.vac_analyze_option_name(); - this.state = 7494; - this.vac_analyze_option_arg(); - } - } - 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 vac_analyze_option_name(): Vac_analyze_option_nameContext { - let localContext = new Vac_analyze_option_nameContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_vac_analyze_option_name); + public vacuumAnalyzeOptionArgument(): VacuumAnalyzeOptionArgumentContext { + let localContext = new VacuumAnalyzeOptionArgumentContext(this.context, this.state); + this.enterRule(localContext, 782, PostgreSqlParser.RULE_vacuumAnalyzeOptionArgument); try { - this.state = 7498; + this.state = 7330; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -40551,8 +38524,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: + case PostgreSqlParser.ON: case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: case PostgreSqlParser.AUTHORIZATION: case PostgreSqlParser.BINARY: case PostgreSqlParser.COLLATION: @@ -41078,20 +39054,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7496; - this.nonreservedword(); + this.state = 7327; + this.booleanOrString(); } break; - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 7497; - this.analyze_keyword(); + this.state = 7328; + this.numericOnly(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + this.enterOuterAlt(localContext, 3); + // tslint:disable-next-line:no-empty + { } break; default: @@ -41112,46 +39101,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public vac_analyze_option_arg(): Vac_analyze_option_argContext { - let localContext = new Vac_analyze_option_argContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_vac_analyze_option_arg); + public optionalVerbose(): OptionalVerboseContext { + let localContext = new OptionalVerboseContext(this.context, this.state); + this.enterRule(localContext, 784, PostgreSqlParser.RULE_optionalVerbose); try { - this.state = 7503; + this.state = 7334; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.VERBOSE: + this.enterOuterAlt(localContext, 1); + { + this.state = 7332; + this.match(PostgreSqlParser.VERBOSE); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.ANALYSE: + case PostgreSqlParser.ANALYZE: case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CREATE: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.ON: + case PostgreSqlParser.INTO: + case PostgreSqlParser.SELECT: case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: + case PostgreSqlParser.WITH: case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.LEFT: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.RIGHT: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -41492,7 +39478,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -41656,31 +39641,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 7500; - this.opt_boolean_or_string(); - } - break; - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); - { - this.state = 7501; - this.numericonly(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -41703,23 +39666,87 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_analyze(): Opt_analyzeContext { - let localContext = new Opt_analyzeContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_opt_analyze); + public optionalNameList(): OptionalNameListContext { + let localContext = new OptionalNameListContext(this.context, this.state); + this.enterRule(localContext, 786, PostgreSqlParser.RULE_optionalNameList); try { - this.state = 7507; + this.state = 7341; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 7505; - this.analyze_keyword(); + this.state = 7336; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7337; + this.nameList(); + this.state = 7338; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.EOF: + case PostgreSqlParser.COMMA: case PostgreSqlParser.SEMI: + case PostgreSqlParser.AS: + case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 vacuumRelation(): VacuumRelationContext { + let localContext = new VacuumRelationContext(this.context, this.state); + this.enterRule(localContext, 788, PostgreSqlParser.RULE_vacuumRelation); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7343; + this.qualifiedName(); + this.state = 7344; + this.optionalNameList(); + } + } + 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 optionalVacuumRelationList(): OptionalVacuumRelationListContext { + let localContext = new OptionalVacuumRelationListContext(this.context, this.state); + this.enterRule(localContext, 790, PostgreSqlParser.RULE_optionalVacuumRelationList); + let _la: number; + try { + this.state = 7355; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -41728,7 +39755,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: case PostgreSqlParser.FETCH: - case PostgreSqlParser.INTO: case PostgreSqlParser.TABLE: case PostgreSqlParser.IS: case PostgreSqlParser.LEFT: @@ -42240,6 +40266,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.UnicodeQuotedIdentifier: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + this.enterOuterAlt(localContext, 1); + { + this.state = 7346; + this.vacuumRelation(); + this.state = 7351; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 7347; + this.match(PostgreSqlParser.COMMA); + this.state = 7348; + this.vacuumRelation(); + } + } + this.state = 7353; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -42263,43 +40314,243 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_verbose(): Opt_verboseContext { - let localContext = new Opt_verboseContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_opt_verbose); + public explainStatement(): ExplainStatementContext { + let localContext = new ExplainStatementContext(this.context, this.state); + this.enterRule(localContext, 792, PostgreSqlParser.RULE_explainStatement); + let _la: number; try { - this.state = 7511; + this.state = 7380; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.VERBOSE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7509; + this.state = 7357; + this.match(PostgreSqlParser.EXPLAIN); + this.state = 7358; + this.explainableStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7359; + this.match(PostgreSqlParser.EXPLAIN); + this.state = 7360; + this.analyzeKeyword(); + this.state = 7361; + this.optionalVerbose(); + this.state = 7362; + this.explainableStatement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7364; + this.match(PostgreSqlParser.EXPLAIN); + this.state = 7365; this.match(PostgreSqlParser.VERBOSE); + this.state = 7366; + this.explainableStatement(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7367; + this.match(PostgreSqlParser.EXPLAIN); + this.state = 7368; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7369; + this.explainOptionElement(); + this.state = 7374; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 7370; + this.match(PostgreSqlParser.COMMA); + this.state = 7371; + this.explainOptionElement(); + } + } + this.state = 7376; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7377; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7378; + this.explainableStatement(); + } + 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 explainableStatement(): ExplainableStatementContext { + let localContext = new ExplainableStatementContext(this.context, this.state); + this.enterRule(localContext, 794, PostgreSqlParser.RULE_explainableStatement); + try { + this.state = 7391; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7382; + this.selectStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7383; + this.insertStatement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7384; + this.updateStatement(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7385; + this.deleteStatement(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 7386; + this.declareCursorStatement(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 7387; + this.createAsStatement(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 7388; + this.createMaterializedViewStatement(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 7389; + this.refreshMaterializedViewStatement(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 7390; + this.executeStatement(); + } + 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 explainOptionElement(): ExplainOptionElementContext { + let localContext = new ExplainOptionElementContext(this.context, this.state); + this.enterRule(localContext, 796, PostgreSqlParser.RULE_explainOptionElement); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7393; + this.explainOptionName(); + this.state = 7394; + this.explainOptionArgument(); + } + } + 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 explainOptionName(): ExplainOptionNameContext { + let localContext = new ExplainOptionNameContext(this.context, this.state); + this.enterRule(localContext, 798, PostgreSqlParser.RULE_explainOptionName); + try { + this.state = 7398; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CREATE: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: case PostgreSqlParser.FETCH: - case PostgreSqlParser.INTO: - case PostgreSqlParser.SELECT: case PostgreSqlParser.TABLE: - case PostgreSqlParser.WITH: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -42640,6 +40891,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -42805,9 +41057,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.UnicodeQuotedIdentifier: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + this.enterOuterAlt(localContext, 1); + { + this.state = 7396; + this.nonReservedWord(); + } + break; + case PostgreSqlParser.ANALYSE: + case PostgreSqlParser.ANALYZE: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7397; + this.analyzeKeyword(); } break; default: @@ -42828,24 +41089,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_full(): Opt_fullContext { - let localContext = new Opt_fullContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_opt_full); + public explainOptionArgument(): ExplainOptionArgumentContext { + let localContext = new ExplainOptionArgumentContext(this.context, this.state); + this.enterRule(localContext, 800, PostgreSqlParser.RULE_explainOptionArgument); try { - this.state = 7515; + this.state = 7403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FULL: - this.enterOuterAlt(localContext, 1); - { - this.state = 7513; - this.match(PostgreSqlParser.FULL); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -42853,15 +41103,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CONSTRAINT: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.SIMILAR: case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: @@ -43203,6 +41469,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -43366,9 +41633,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 1); + { + this.state = 7400; + this.booleanOrString(); + } + break; + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); + { + this.state = 7401; + this.numericOnly(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -43391,545 +41680,240 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_freeze(): Opt_freezeContext { - let localContext = new Opt_freezeContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_opt_freeze); + public prepareStatement(): PrepareStatementContext { + let localContext = new PrepareStatementContext(this.context, this.state); + this.enterRule(localContext, 802, PostgreSqlParser.RULE_prepareStatement); try { - this.state = 7519; + this.enterOuterAlt(localContext, 1); + { + this.state = 7405; + this.match(PostgreSqlParser.PREPARE); + this.state = 7406; + this.name(); + this.state = 7407; + this.prepareTypeClause(); + this.state = 7408; + this.match(PostgreSqlParser.AS); + this.state = 7409; + this.preparableStatement(); + } + } + 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 prepareTypeClause(): PrepareTypeClauseContext { + let localContext = new PrepareTypeClauseContext(this.context, this.state); + this.enterRule(localContext, 804, PostgreSqlParser.RULE_prepareTypeClause); + try { + this.state = 7416; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FREEZE: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 7517; - this.match(PostgreSqlParser.FREEZE); + this.state = 7411; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7412; + this.typeList(); + this.state = 7413; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.AS: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 preparableStatement(): PreparableStatementContext { + let localContext = new PreparableStatementContext(this.context, this.state); + this.enterRule(localContext, 806, PostgreSqlParser.RULE_preparableStatement); + try { + this.state = 7422; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7418; + this.selectStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7419; + this.insertStatement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7420; + this.updateStatement(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7421; + this.deleteStatement(); + } + 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 executeStatement(): ExecuteStatementContext { + let localContext = new ExecuteStatementContext(this.context, this.state); + this.enterRule(localContext, 808, PostgreSqlParser.RULE_executeStatement); + try { + this.state = 7451; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7424; + this.match(PostgreSqlParser.EXECUTE); + this.state = 7425; + this.name(); + this.state = 7426; + this.executeParameterClause(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7428; + this.match(PostgreSqlParser.CREATE); + this.state = 7429; + this.temporaryOption(); + this.state = 7430; + this.match(PostgreSqlParser.TABLE); + this.state = 7431; + this.createAsTarget(); + this.state = 7432; + this.match(PostgreSqlParser.AS); + this.state = 7433; + this.match(PostgreSqlParser.EXECUTE); + this.state = 7434; + this.name(); + this.state = 7435; + this.executeParameterClause(); + this.state = 7436; + this.withData(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7438; + this.match(PostgreSqlParser.CREATE); + this.state = 7439; + this.temporaryOption(); + this.state = 7440; + this.match(PostgreSqlParser.TABLE); + this.state = 7441; + this.match(PostgreSqlParser.IF_P); + this.state = 7442; + this.match(PostgreSqlParser.NOT); + this.state = 7443; + this.match(PostgreSqlParser.EXISTS); + this.state = 7444; + this.createAsTarget(); + this.state = 7445; + this.match(PostgreSqlParser.AS); + this.state = 7446; + this.match(PostgreSqlParser.EXECUTE); + this.state = 7447; + this.name(); + this.state = 7448; + this.executeParameterClause(); + this.state = 7449; + this.withData(); + } + 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 executeParameterClause(): ExecuteParameterClauseContext { + let localContext = new ExecuteParameterClauseContext(this.context, this.state); + this.enterRule(localContext, 810, PostgreSqlParser.RULE_executeParameterClause); + try { + this.state = 7458; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 1); + { + this.state = 7453; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7454; + this.expressionList(); + this.state = 7455; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.EOF: case PostgreSqlParser.SEMI: - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: case PostgreSqlParser.INTO: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -43953,37 +41937,215 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_name_list(): Opt_name_listContext { - let localContext = new Opt_name_listContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_opt_name_list); + public deallocateStatement(): DeallocateStatementContext { + let localContext = new DeallocateStatementContext(this.context, this.state); + this.enterRule(localContext, 812, PostgreSqlParser.RULE_deallocateStatement); try { - this.state = 7526; + this.state = 7470; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7521; + this.state = 7460; + this.match(PostgreSqlParser.DEALLOCATE); + this.state = 7461; + this.name(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7462; + this.match(PostgreSqlParser.DEALLOCATE); + this.state = 7463; + this.match(PostgreSqlParser.PREPARE); + this.state = 7464; + this.name(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7465; + this.match(PostgreSqlParser.DEALLOCATE); + this.state = 7466; + this.match(PostgreSqlParser.ALL); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7467; + this.match(PostgreSqlParser.DEALLOCATE); + this.state = 7468; + this.match(PostgreSqlParser.PREPARE); + this.state = 7469; + this.match(PostgreSqlParser.ALL); + } + 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 insertStatement(): InsertStatementContext { + let localContext = new InsertStatementContext(this.context, this.state); + this.enterRule(localContext, 814, PostgreSqlParser.RULE_insertStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7473; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 105) { + { + this.state = 7472; + this.withClause(); + } + } + + this.state = 7475; + this.match(PostgreSqlParser.INSERT); + this.state = 7476; + this.match(PostgreSqlParser.INTO); + this.state = 7477; + this.insertTarget(); + this.state = 7478; + this.insertRest(); + this.state = 7479; + this.optionalOnConflict(); + this.state = 7480; + this.returningClause(); + } + } + 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 insertTarget(): InsertTargetContext { + let localContext = new InsertTargetContext(this.context, this.state); + this.enterRule(localContext, 816, PostgreSqlParser.RULE_insertTarget); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7482; + this.qualifiedName(); + this.state = 7485; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 7483; + this.match(PostgreSqlParser.AS); + this.state = 7484; + this.columnId(); + } + } + + } + } + 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 insertRest(): InsertRestContext { + let localContext = new InsertRestContext(this.context, this.state); + this.enterRule(localContext, 818, PostgreSqlParser.RULE_insertRest); + let _la: number; + try { + this.state = 7506; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7487; + this.selectStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7488; + this.match(PostgreSqlParser.OVERRIDING); + this.state = 7489; + this.overrideKind(); + this.state = 7490; + this.match(PostgreSqlParser.VALUE_P); + this.state = 7491; + this.selectStatement(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7493; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7522; - this.name_list(); - this.state = 7523; + this.state = 7494; + this.insertColumnList(); + this.state = 7495; this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7500; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 463) { + { + this.state = 7496; + this.match(PostgreSqlParser.OVERRIDING); + this.state = 7497; + this.overrideKind(); + this.state = 7498; + this.match(PostgreSqlParser.VALUE_P); + } + } + + this.state = 7502; + this.selectStatement(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.AS: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty + case 4: + this.enterOuterAlt(localContext, 4); { + this.state = 7504; + this.match(PostgreSqlParser.DEFAULT); + this.state = 7505; + this.match(PostgreSqlParser.VALUES); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -44000,16 +42162,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public vacuum_relation(): Vacuum_relationContext { - let localContext = new Vacuum_relationContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_vacuum_relation); + public overrideKind(): OverrideKindContext { + let localContext = new OverrideKindContext(this.context, this.state); + this.enterRule(localContext, 820, PostgreSqlParser.RULE_overrideKind); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7528; - this.qualified_name(); - this.state = 7529; - this.opt_name_list(); + this.state = 7508; + _la = this.tokenStream.LA(1); + if(!(_la === 99 || _la === 342)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -44026,28 +42194,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public vacuum_relation_list(): Vacuum_relation_listContext { - let localContext = new Vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_vacuum_relation_list); + public insertColumnList(): InsertColumnListContext { + let localContext = new InsertColumnListContext(this.context, this.state); + this.enterRule(localContext, 822, PostgreSqlParser.RULE_insertColumnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7531; - this.vacuum_relation(); - this.state = 7536; + this.state = 7510; + this.insertColumnItem(); + this.state = 7515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7532; + this.state = 7511; this.match(PostgreSqlParser.COMMA); - this.state = 7533; - this.vacuum_relation(); + this.state = 7512; + this.insertColumnItem(); } } - this.state = 7538; + this.state = 7517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44067,93 +42235,326 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_vacuum_relation_list(): Opt_vacuum_relation_listContext { - let localContext = new Opt_vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_opt_vacuum_relation_list); + public insertColumnItem(): InsertColumnItemContext { + let localContext = new InsertColumnItemContext(this.context, this.state); + this.enterRule(localContext, 824, PostgreSqlParser.RULE_insertColumnItem); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7518; + this.columnId(); + this.state = 7519; + this.optionalIndirection(); + } + } + 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 optionalOnConflict(): OptionalOnConflictContext { + let localContext = new OptionalOnConflictContext(this.context, this.state); + this.enterRule(localContext, 826, PostgreSqlParser.RULE_optionalOnConflict); try { - this.state = 7541; + this.state = 7534; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ON: + this.enterOuterAlt(localContext, 1); + { + this.state = 7521; + this.match(PostgreSqlParser.ON); + this.state = 7522; + this.match(PostgreSqlParser.CONFLICT); + this.state = 7523; + this.optionalConflictExpr(); + this.state = 7524; + this.match(PostgreSqlParser.DO); + this.state = 7531; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.UPDATE: + { + this.state = 7525; + this.match(PostgreSqlParser.UPDATE); + this.state = 7526; + this.match(PostgreSqlParser.SET); + this.state = 7527; + this.setClauseList(); + this.state = 7528; + this.whereClause(); + } + break; + case PostgreSqlParser.NOTHING: + { + this.state = 7530; + this.match(PostgreSqlParser.NOTHING); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 optionalConflictExpr(): OptionalConflictExprContext { + let localContext = new OptionalConflictExprContext(this.context, this.state); + this.enterRule(localContext, 828, PostgreSqlParser.RULE_optionalConflictExpr); + try { + this.state = 7545; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 1); + { + this.state = 7536; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7537; + this.indexParameters(); + this.state = 7538; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7539; + this.whereClause(); + } + break; + case PostgreSqlParser.ON: + this.enterOuterAlt(localContext, 2); + { + this.state = 7541; + this.match(PostgreSqlParser.ON); + this.state = 7542; + this.match(PostgreSqlParser.CONSTRAINT); + this.state = 7543; + this.name(); + } + break; + case PostgreSqlParser.DO: + this.enterOuterAlt(localContext, 3); + // tslint:disable-next-line:no-empty + { + } + 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 returningClause(): ReturningClauseContext { + let localContext = new ReturningClauseContext(this.context, this.state); + this.enterRule(localContext, 830, PostgreSqlParser.RULE_returningClause); + try { + this.state = 7550; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.RETURNING: + this.enterOuterAlt(localContext, 1); + { + this.state = 7547; + this.match(PostgreSqlParser.RETURNING); + this.state = 7548; + this.targetList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 mergeStatement(): MergeStatementContext { + let localContext = new MergeStatementContext(this.context, this.state); + this.enterRule(localContext, 832, PostgreSqlParser.RULE_mergeStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7552; + this.match(PostgreSqlParser.MERGE); + this.state = 7554; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 71) { + { + this.state = 7553; + this.match(PostgreSqlParser.INTO); + } + } + + this.state = 7556; + this.qualifiedName(); + this.state = 7558; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { + { + this.state = 7557; + this.aliasClause(); + } + } + + this.state = 7560; + this.match(PostgreSqlParser.USING); + this.state = 7563; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 7561; + this.selectWithParenthesis(); + } + break; + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: case PostgreSqlParser.ENCRYPTED: case PostgreSqlParser.ENUM_P: case PostgreSqlParser.ESCAPE: @@ -44593,22 +42994,74 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.UnicodeQuotedIdentifier: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); { - this.state = 7539; - this.vacuum_relation_list(); + this.state = 7562; + this.qualifiedName(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty + default: + throw new antlr.NoViableAltException(this); + } + this.state = 7566; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { + { + this.state = 7565; + this.aliasClause(); + } + } + + this.state = 7568; + this.match(PostgreSqlParser.ON); + this.state = 7569; + this.expression1(); + this.state = 7578; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + case 1: { + this.state = 7570; + this.mergeInsertClause(); + this.state = 7572; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { + case 1: + { + this.state = 7571; + this.mergeUpdateClause(); + } + break; + } } break; - default: - throw new antlr.NoViableAltException(this); + case 2: + { + this.state = 7574; + this.mergeUpdateClause(); + this.state = 7576; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { + case 1: + { + this.state = 7575; + this.mergeInsertClause(); + } + break; + } + } + break; + } + this.state = 7581; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 102) { + { + this.state = 7580; + this.mergeDeleteClause(); + } + } + } } catch (re) { @@ -44625,61 +43078,59 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explainstmt(): ExplainstmtContext { - let localContext = new ExplainstmtContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_explainstmt); + public mergeInsertClause(): MergeInsertClauseContext { + let localContext = new MergeInsertClauseContext(this.context, this.state); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_mergeInsertClause); + let _la: number; try { - this.state = 7559; + this.enterOuterAlt(localContext, 1); + { + this.state = 7583; + this.match(PostgreSqlParser.WHEN); + this.state = 7584; + this.match(PostgreSqlParser.NOT); + this.state = 7585; + this.match(PostgreSqlParser.MATCHED); + this.state = 7588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7543; - this.match(PostgreSqlParser.EXPLAIN); - this.state = 7544; - this.explainablestmt(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 33) { { - this.state = 7545; - this.match(PostgreSqlParser.EXPLAIN); - this.state = 7546; - this.analyze_keyword(); - this.state = 7547; - this.opt_verbose(); - this.state = 7548; - this.explainablestmt(); + this.state = 7586; + this.match(PostgreSqlParser.AND); + this.state = 7587; + this.expression1(); } - break; - case 3: - this.enterOuterAlt(localContext, 3); + } + + this.state = 7591; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 93) { { - this.state = 7550; - this.match(PostgreSqlParser.EXPLAIN); - this.state = 7551; - this.match(PostgreSqlParser.VERBOSE); - this.state = 7552; - this.explainablestmt(); + this.state = 7590; + this.match(PostgreSqlParser.THEN); } - break; - case 4: - this.enterOuterAlt(localContext, 4); + } + + this.state = 7593; + this.match(PostgreSqlParser.INSERT); + this.state = 7598; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 2) { { - this.state = 7553; - this.match(PostgreSqlParser.EXPLAIN); - this.state = 7554; + this.state = 7594; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7555; - this.explain_option_list(); - this.state = 7556; + this.state = 7595; + this.insertColumnList(); + this.state = 7596; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7557; - this.explainablestmt(); } - break; + } + + this.state = 7600; + this.valuesClause(); } } catch (re) { @@ -44696,76 +43147,84 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explainablestmt(): ExplainablestmtContext { - let localContext = new ExplainablestmtContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_explainablestmt); + public mergeUpdateClause(): MergeUpdateClauseContext { + let localContext = new MergeUpdateClauseContext(this.context, this.state); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_mergeUpdateClause); + let _la: number; try { - this.state = 7570; + this.enterOuterAlt(localContext, 1); + { + this.state = 7602; + this.match(PostgreSqlParser.WHEN); + this.state = 7603; + this.match(PostgreSqlParser.MATCHED); + this.state = 7606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7561; - this.selectstmt(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7562; - this.insertstmt(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7563; - this.updatestmt(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7564; - this.deletestmt(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 7565; - this.declarecursorstmt(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 7566; - this.createasstmt(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); + _la = this.tokenStream.LA(1); + if (_la === 33) { { - this.state = 7567; - this.creatematviewstmt(); + this.state = 7604; + this.match(PostgreSqlParser.AND); + this.state = 7605; + this.expression1(); } - break; - case 8: - this.enterOuterAlt(localContext, 8); + } + + this.state = 7609; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 93) { { - this.state = 7568; - this.refreshmatviewstmt(); + this.state = 7608; + this.match(PostgreSqlParser.THEN); } - break; - case 9: - this.enterOuterAlt(localContext, 9); + } + + this.state = 7611; + this.match(PostgreSqlParser.UPDATE); + this.state = 7612; + this.match(PostgreSqlParser.SET); + this.state = 7613; + this.setClauseList(); + } + } + 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 mergeDeleteClause(): MergeDeleteClauseContext { + let localContext = new MergeDeleteClauseContext(this.context, this.state); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_mergeDeleteClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7615; + this.match(PostgreSqlParser.WHEN); + this.state = 7616; + this.match(PostgreSqlParser.MATCHED); + this.state = 7618; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 93) { { - this.state = 7569; - this.executestmt(); + this.state = 7617; + this.match(PostgreSqlParser.THEN); } - break; + } + + this.state = 7620; + this.match(PostgreSqlParser.DELETE_P); } } catch (re) { @@ -44782,31 +43241,81 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explain_option_list(): Explain_option_listContext { - let localContext = new Explain_option_listContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_explain_option_list); + public deleteStatement(): DeleteStatementContext { + let localContext = new DeleteStatementContext(this.context, this.state); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_deleteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7572; - this.explain_option_elem(); - this.state = 7577; + this.state = 7623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { + if (_la === 105) { { + this.state = 7622; + this.withClause(); + } + } + + this.state = 7625; + this.match(PostgreSqlParser.DELETE_P); + this.state = 7626; + this.match(PostgreSqlParser.FROM); + this.state = 7627; + this.relationExpressionOptionalAlias(); + this.state = 7628; + this.usingClause(); + this.state = 7629; + this.whereOrCurrentClause(); + this.state = 7630; + this.returningClause(); + } + } + 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 usingClause(): UsingClauseContext { + let localContext = new UsingClauseContext(this.context, this.state); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_usingClause); + try { + this.state = 7635; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.USING: + this.enterOuterAlt(localContext, 1); { - this.state = 7573; - this.match(PostgreSqlParser.COMMA); - this.state = 7574; - this.explain_option_elem(); + this.state = 7632; + this.match(PostgreSqlParser.USING); + this.state = 7633; + this.fromList(); } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { } - this.state = 7579; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -44823,16 +43332,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explain_option_elem(): Explain_option_elemContext { - let localContext = new Explain_option_elemContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_explain_option_elem); + public lockStatement(): LockStatementContext { + let localContext = new LockStatementContext(this.context, this.state); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_lockStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 7580; - this.explain_option_name(); - this.state = 7581; - this.explain_option_arg(); + this.state = 7637; + this.match(PostgreSqlParser.LOCK_P); + this.state = 7638; + this.optionalTable(); + this.state = 7639; + this.relationExpressionList(); + this.state = 7640; + this.optionalLock(); + this.state = 7641; + this.optionalNowait(); } } catch (re) { @@ -44849,43 +43364,357 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explain_option_name(): Explain_option_nameContext { - let localContext = new Explain_option_nameContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_explain_option_name); + public optionalLock(): OptionalLockContext { + let localContext = new OptionalLockContext(this.context, this.state); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_optionalLock); try { - this.state = 7585; + this.state = 7648; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IN_P: + this.enterOuterAlt(localContext, 1); + { + this.state = 7643; + this.match(PostgreSqlParser.IN_P); + this.state = 7644; + this.lockType(); + this.state = 7645; + this.match(PostgreSqlParser.MODE); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.NOWAIT: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 lockType(): LockTypeContext { + let localContext = new LockTypeContext(this.context, this.state); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_lockType); + let _la: number; + try { + this.state = 7662; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ACCESS: + this.enterOuterAlt(localContext, 1); + { + this.state = 7650; + this.match(PostgreSqlParser.ACCESS); + this.state = 7651; + _la = this.tokenStream.LA(1); + if(!(_la === 201 || _la === 327)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case PostgreSqlParser.ROW: + this.enterOuterAlt(localContext, 2); + { + this.state = 7652; + this.match(PostgreSqlParser.ROW); + this.state = 7653; + _la = this.tokenStream.LA(1); + if(!(_la === 201 || _la === 327)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case PostgreSqlParser.SHARE: + this.enterOuterAlt(localContext, 3); + { + this.state = 7654; + this.match(PostgreSqlParser.SHARE); + this.state = 7659; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.UPDATE: + { + this.state = 7655; + this.match(PostgreSqlParser.UPDATE); + this.state = 7656; + this.match(PostgreSqlParser.EXCLUSIVE); + } + break; + case PostgreSqlParser.ROW: + { + this.state = 7657; + this.match(PostgreSqlParser.ROW); + this.state = 7658; + this.match(PostgreSqlParser.EXCLUSIVE); + } + break; + case PostgreSqlParser.MODE: + break; + default: + break; + } + } + break; + case PostgreSqlParser.EXCLUSIVE: + this.enterOuterAlt(localContext, 4); + { + this.state = 7661; + this.match(PostgreSqlParser.EXCLUSIVE); + } + 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 optionalNowait(): OptionalNowaitContext { + let localContext = new OptionalNowaitContext(this.context, this.state); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_optionalNowait); + try { + this.state = 7666; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.NOWAIT: + this.enterOuterAlt(localContext, 1); + { + this.state = 7664; + this.match(PostgreSqlParser.NOWAIT); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 optionalNowaitOrSkip(): OptionalNowaitOrSkipContext { + let localContext = new OptionalNowaitOrSkipContext(this.context, this.state); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_optionalNowaitOrSkip); + try { + this.state = 7672; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.NOWAIT: + this.enterOuterAlt(localContext, 1); + { + this.state = 7668; + this.match(PostgreSqlParser.NOWAIT); + } + break; + case PostgreSqlParser.SKIP_P: + this.enterOuterAlt(localContext, 2); + { + this.state = 7669; + this.match(PostgreSqlParser.SKIP_P); + this.state = 7670; + this.match(PostgreSqlParser.LOCKED); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 3); + // tslint:disable-next-line:no-empty + { + } + 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 updateStatement(): UpdateStatementContext { + let localContext = new UpdateStatementContext(this.context, this.state); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_updateStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7675; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 105) { + { + this.state = 7674; + this.withClause(); + } + } + + this.state = 7677; + this.match(PostgreSqlParser.UPDATE); + this.state = 7678; + this.relationExpressionOptionalAlias(); + this.state = 7679; + this.match(PostgreSqlParser.SET); + this.state = 7680; + this.setClauseList(); + this.state = 7681; + this.fromClause(); + this.state = 7682; + this.whereOrCurrentClause(); + this.state = 7683; + this.returningClause(); + } + } + 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 setClauseList(): SetClauseListContext { + let localContext = new SetClauseListContext(this.context, this.state); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_setClauseList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7685; + this.setClause(); + this.state = 7690; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 7686; + this.match(PostgreSqlParser.COMMA); + this.state = 7687; + this.setClause(); + } + } + this.state = 7692; + 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 setClause(): SetClauseContext { + let localContext = new SetClauseContext(this.context, this.state); + this.enterRule(localContext, 858, PostgreSqlParser.RULE_setClause); + let _la: number; + try { + this.state = 7710; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.LEFT: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.RIGHT: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -45226,7 +44055,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -45394,16 +44222,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 7583; - this.nonreservedword(); + this.state = 7693; + this.setTarget(); + this.state = 7694; + this.match(PostgreSqlParser.EQUAL); + this.state = 7695; + this.expression1(); } break; - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7584; - this.analyze_keyword(); + this.state = 7697; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7698; + this.setTarget(); + this.state = 7703; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 7699; + this.match(PostgreSqlParser.COMMA); + this.state = 7700; + this.setTarget(); + } + } + this.state = 7705; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7706; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7707; + this.match(PostgreSqlParser.EQUAL); + this.state = 7708; + this.expression1(); } break; default: @@ -45424,99 +44279,607 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explain_option_arg(): Explain_option_argContext { - let localContext = new Explain_option_argContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_explain_option_arg); + public setTarget(): SetTargetContext { + let localContext = new SetTargetContext(this.context, this.state); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_setTarget); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7712; + this.columnId(); + this.state = 7713; + this.optionalIndirection(); + } + } + 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 declareCursorStatement(): DeclareCursorStatementContext { + let localContext = new DeclareCursorStatementContext(this.context, this.state); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_declareCursorStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7715; + this.match(PostgreSqlParser.DECLARE); + this.state = 7716; + this.cursorName(); + this.state = 7724; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 107 || _la === 231 || _la === 262 || _la === 317) { + { + this.state = 7722; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.NO: + { + this.state = 7717; + this.match(PostgreSqlParser.NO); + this.state = 7718; + this.match(PostgreSqlParser.SCROLL); + } + break; + case PostgreSqlParser.SCROLL: + { + this.state = 7719; + this.match(PostgreSqlParser.SCROLL); + } + break; + case PostgreSqlParser.BINARY: + { + this.state = 7720; + this.match(PostgreSqlParser.BINARY); + } + break; + case PostgreSqlParser.INSENSITIVE: + { + this.state = 7721; + this.match(PostgreSqlParser.INSENSITIVE); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + this.state = 7726; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7727; + this.match(PostgreSqlParser.CURSOR); + this.state = 7728; + this.optionalHold(); + this.state = 7729; + this.match(PostgreSqlParser.FOR); + this.state = 7730; + this.selectStatement(); + } + } + 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 cursorName(): CursorNameContext { + let localContext = new CursorNameContext(this.context, this.state); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_cursorName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7732; + this.name(); + } + } + 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 optionalHold(): OptionalHoldContext { + let localContext = new OptionalHoldContext(this.context, this.state); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_optionalHold); try { - this.state = 7590; + this.state = 7739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.ON: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: + case PostgreSqlParser.FOR: + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + break; + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + { + this.state = 7735; + this.match(PostgreSqlParser.WITH); + this.state = 7736; + this.match(PostgreSqlParser.HOLD); + } + break; + case PostgreSqlParser.WITHOUT: + this.enterOuterAlt(localContext, 3); + { + this.state = 7737; + this.match(PostgreSqlParser.WITHOUT); + this.state = 7738; + this.match(PostgreSqlParser.HOLD); + } + 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 selectStatement(): SelectStatementContext { + let localContext = new SelectStatementContext(this.context, this.state); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_selectStatement); + try { + this.state = 7743; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7741; + this.selectWithoutParenthesis(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7742; + this.selectWithParenthesis(); + } + 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 selectWithParenthesis(): SelectWithParenthesisContext { + let localContext = new SelectWithParenthesisContext(this.context, this.state); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_selectWithParenthesis); + try { + this.state = 7753; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7745; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7746; + this.selectWithoutParenthesis(); + this.state = 7747; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7749; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7750; + this.selectWithParenthesis(); + this.state = 7751; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 selectWithoutParenthesis(): SelectWithoutParenthesisContext { + let localContext = new SelectWithoutParenthesisContext(this.context, this.state); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_selectWithoutParenthesis); + let _la: number; + try { + this.state = 7778; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.SELECT: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.VALUES: + this.enterOuterAlt(localContext, 1); + { + this.state = 7755; + this.selectClause(); + this.state = 7756; + this.optionalSortClause(); + this.state = 7764; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.FOR: + { + this.state = 7757; + this.forLockingClause(); + this.state = 7758; + this.optionalSelectLimit(); + } + break; + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + { + this.state = 7760; + this.selectLimit(); + this.state = 7762; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 7761; + this.forLockingClause(); + } + } + + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + break; + default: + break; + } + } + break; + case PostgreSqlParser.WITH: + this.enterOuterAlt(localContext, 2); + { + this.state = 7766; + this.withClause(); + this.state = 7767; + this.selectClause(); + this.state = 7768; + this.optionalSortClause(); + this.state = 7776; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.FOR: + { + this.state = 7769; + this.forLockingClause(); + this.state = 7770; + this.optionalSelectLimit(); + } + break; + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + { + this.state = 7772; + this.selectLimit(); + this.state = 7774; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 7773; + this.forLockingClause(); + } + } + + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + break; + default: + break; + } + } + 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 selectClause(): SelectClauseContext { + let localContext = new SelectClauseContext(this.context, this.state); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_selectClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7780; + this.simpleSelectIntersect(); + this.state = 7787; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 59 || _la === 97) { + { + { + this.state = 7781; + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 97)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 7782; + this.allOrDistinct(); + this.state = 7783; + this.simpleSelectIntersect(); + } + } + this.state = 7789; + 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 simpleSelectIntersect(): SimpleSelectIntersectContext { + let localContext = new SimpleSelectIntersectContext(this.context, this.state); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_simpleSelectIntersect); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7790; + this.simpleSelectPramary(); + this.state = 7797; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 70) { + { + { + this.state = 7791; + this.match(PostgreSqlParser.INTERSECT); + this.state = 7792; + this.allOrDistinct(); + this.state = 7793; + this.simpleSelectPramary(); + } + } + this.state = 7799; + 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 simpleSelectStart(): SimpleSelectStartContext { + let localContext = new SimpleSelectStartContext(this.context, this.state); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_simpleSelectStart); + try { + this.state = 7815; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.STAR: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.SESSION_USER: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: case PostgreSqlParser.DELETE_P: case PostgreSqlParser.DELIMITER: case PostgreSqlParser.DELIMITERS: @@ -45971,30 +45334,72 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.StringConstant: case PostgreSqlParser.UnicodeEscapeStringConstant: case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7587; - this.opt_boolean_or_string(); + this.state = 7800; + this.targetList(); + this.state = 7802; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + case 1: + { + this.state = 7801; + this.intoClause(); + } + break; + } } break; - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: + case PostgreSqlParser.ALL: this.enterOuterAlt(localContext, 2); { - this.state = 7588; - this.numericonly(); + this.state = 7804; + this.allClause(); + this.state = 7805; + this.optionalTargetList(); + this.state = 7807; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { + case 1: + { + this.state = 7806; + this.intoClause(); + } + break; + } } break; - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: + case PostgreSqlParser.DISTINCT: this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty { + this.state = 7809; + this.distinctClause(); + this.state = 7810; + this.targetList(); + this.state = 7812; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { + case 1: + { + this.state = 7811; + this.intoClause(); + } + break; + } + } + break; + case PostgreSqlParser.INTO: + this.enterOuterAlt(localContext, 4); + { + this.state = 7814; + this.intoClause(); } break; default: @@ -46015,60 +45420,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public preparestmt(): PreparestmtContext { - let localContext = new PreparestmtContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_preparestmt); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7592; - this.match(PostgreSqlParser.PREPARE); - this.state = 7593; - this.name(); - this.state = 7594; - this.prep_type_clause(); - this.state = 7595; - this.match(PostgreSqlParser.AS); - this.state = 7596; - this.preparablestmt(); - } - } - 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 prep_type_clause(): Prep_type_clauseContext { - let localContext = new Prep_type_clauseContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_prep_type_clause); + public simpleSelectPramary(): SimpleSelectPramaryContext { + let localContext = new SimpleSelectPramaryContext(this.context, this.state); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_simpleSelectPramary); try { - this.state = 7603; + this.state = 7829; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 7598; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7599; - this.type_list(); - this.state = 7600; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7817; + this.match(PostgreSqlParser.SELECT); + this.state = 7818; + this.simpleSelectStart(); + this.state = 7819; + this.fromClause(); + this.state = 7820; + this.whereClause(); + this.state = 7821; + this.groupClause(); + this.state = 7822; + this.havingClause(); + this.state = 7823; + this.windowClause(); } break; - case PostgreSqlParser.AS: + case PostgreSqlParser.VALUES: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7825; + this.valuesClause(); + } + break; + case PostgreSqlParser.TABLE: + this.enterOuterAlt(localContext, 3); + { + this.state = 7826; + this.match(PostgreSqlParser.TABLE); + this.state = 7827; + this.relationExpression(); + } + break; + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 4); + { + this.state = 7828; + this.selectWithParenthesis(); } break; default: @@ -46089,41 +45487,43 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public preparablestmt(): PreparablestmtContext { - let localContext = new PreparablestmtContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSqlParser.RULE_preparablestmt); + public withClause(): WithClauseContext { + let localContext = new WithClauseContext(this.context, this.state); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_withClause); + let _la: number; try { - this.state = 7609; + this.enterOuterAlt(localContext, 1); + { + this.state = 7831; + this.match(PostgreSqlParser.WITH); + this.state = 7833; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); { - this.state = 7605; - this.selectstmt(); + this.state = 7832; + this.match(PostgreSqlParser.RECURSIVE); } break; - case 2: - this.enterOuterAlt(localContext, 2); + } + this.state = 7835; + this.commonTableExpression(); + this.state = 7840; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 7606; - this.insertstmt(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); { - this.state = 7607; - this.updatestmt(); + this.state = 7836; + this.match(PostgreSqlParser.COMMA); + this.state = 7837; + this.commonTableExpression(); } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7608; - this.deletestmt(); } - break; + this.state = 7842; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -46140,76 +45540,73 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public executestmt(): ExecutestmtContext { - let localContext = new ExecutestmtContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_executestmt); + public commonTableExpression(): CommonTableExpressionContext { + let localContext = new CommonTableExpressionContext(this.context, this.state); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_commonTableExpression); try { - this.state = 7638; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { - case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7843; + this.name(); + this.state = 7844; + this.optionalNameList(); + this.state = 7845; + this.match(PostgreSqlParser.AS); + this.state = 7846; + this.optionalMaterialized(); + this.state = 7847; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7848; + this.preparableStatement(); + this.state = 7849; + this.match(PostgreSqlParser.CLOSE_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 optionalMaterialized(): OptionalMaterializedContext { + let localContext = new OptionalMaterializedContext(this.context, this.state); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_optionalMaterialized); + try { + this.state = 7855; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.MATERIALIZED: this.enterOuterAlt(localContext, 1); { - this.state = 7611; - this.match(PostgreSqlParser.EXECUTE); - this.state = 7612; - this.name(); - this.state = 7613; - this.execute_param_clause(); + this.state = 7851; + this.match(PostgreSqlParser.MATERIALIZED); } break; - case 2: + case PostgreSqlParser.NOT: this.enterOuterAlt(localContext, 2); { - this.state = 7615; - this.match(PostgreSqlParser.CREATE); - this.state = 7616; - this.opttemp(); - this.state = 7617; - this.match(PostgreSqlParser.TABLE); - this.state = 7618; - this.create_as_target(); - this.state = 7619; - this.match(PostgreSqlParser.AS); - this.state = 7620; - this.match(PostgreSqlParser.EXECUTE); - this.state = 7621; - this.name(); - this.state = 7622; - this.execute_param_clause(); - this.state = 7623; - this.opt_with_data(); + this.state = 7852; + this.match(PostgreSqlParser.NOT); + this.state = 7853; + this.match(PostgreSqlParser.MATERIALIZED); } break; - case 3: + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 3); + // tslint:disable-next-line:no-empty { - this.state = 7625; - this.match(PostgreSqlParser.CREATE); - this.state = 7626; - this.opttemp(); - this.state = 7627; - this.match(PostgreSqlParser.TABLE); - this.state = 7628; - this.match(PostgreSqlParser.IF_P); - this.state = 7629; - this.match(PostgreSqlParser.NOT); - this.state = 7630; - this.match(PostgreSqlParser.EXISTS); - this.state = 7631; - this.create_as_target(); - this.state = 7632; - this.match(PostgreSqlParser.AS); - this.state = 7633; - this.match(PostgreSqlParser.EXECUTE); - this.state = 7634; - this.name(); - this.state = 7635; - this.execute_param_clause(); - this.state = 7636; - this.opt_with_data(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -46226,36 +45623,40 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public execute_param_clause(): Execute_param_clauseContext { - let localContext = new Execute_param_clauseContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_execute_param_clause); + public intoClause(): IntoClauseContext { + let localContext = new IntoClauseContext(this.context, this.state); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_intoClause); try { - this.state = 7645; + this.enterOuterAlt(localContext, 1); + { + this.state = 7857; + this.match(PostgreSqlParser.INTO); + this.state = 7863; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + case 1: { - this.state = 7640; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7641; - this.expr_list(); - this.state = 7642; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7859; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + case 1: + { + this.state = 7858; + this.match(PostgreSqlParser.STRICT_P); + } + break; + } + this.state = 7861; + this.optionalTemporaryTableName(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty + case 2: { + this.state = 7862; + this.intoTarget(); } break; - default: - throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -46272,51 +45673,74 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public deallocatestmt(): DeallocatestmtContext { - let localContext = new DeallocatestmtContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_deallocatestmt); + public optionalTemporaryTableName(): OptionalTemporaryTableNameContext { + let localContext = new OptionalTemporaryTableNameContext(this.context, this.state); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_optionalTemporaryTableName); + let _la: number; try { - this.state = 7657; + this.state = 7879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7647; - this.match(PostgreSqlParser.DEALLOCATE); - this.state = 7648; - this.name(); + this.state = 7866; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 213 || _la === 245) { + { + this.state = 7865; + _la = this.tokenStream.LA(1); + if(!(_la === 213 || _la === 245)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 7868; + _la = this.tokenStream.LA(1); + if(!(_la === 345 || _la === 347)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 7869; + this.optionalTable(); + this.state = 7870; + this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7649; - this.match(PostgreSqlParser.DEALLOCATE); - this.state = 7650; - this.match(PostgreSqlParser.PREPARE); - this.state = 7651; - this.name(); + this.state = 7872; + this.match(PostgreSqlParser.UNLOGGED); + this.state = 7873; + this.optionalTable(); + this.state = 7874; + this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7652; - this.match(PostgreSqlParser.DEALLOCATE); - this.state = 7653; - this.match(PostgreSqlParser.ALL); + this.state = 7876; + this.match(PostgreSqlParser.TABLE); + this.state = 7877; + this.qualifiedName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7654; - this.match(PostgreSqlParser.DEALLOCATE); - this.state = 7655; - this.match(PostgreSqlParser.PREPARE); - this.state = 7656; - this.match(PostgreSqlParser.ALL); + this.state = 7878; + this.qualifiedName(); } break; } @@ -46335,35 +45759,74 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public insertstmt(): InsertstmtContext { - let localContext = new InsertstmtContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_insertstmt); - let _la: number; + public optionalTable(): OptionalTableContext { + let localContext = new OptionalTableContext(this.context, this.state); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_optionalTable); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7660; + this.state = 7883; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7881; + this.match(PostgreSqlParser.TABLE); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 7659; - this.with_clause(); } + break; } - - this.state = 7662; - this.match(PostgreSqlParser.INSERT); - this.state = 7663; - this.match(PostgreSqlParser.INTO); - this.state = 7664; - this.insert_target(); - this.state = 7665; - this.insert_rest(); - this.state = 7666; - this.opt_on_conflict(); - this.state = 7667; - this.returning_clause(); + } + 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 allOrDistinct(): AllOrDistinctContext { + let localContext = new AllOrDistinctContext(this.context, this.state); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_allOrDistinct); + try { + this.state = 7888; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ALL: + this.enterOuterAlt(localContext, 1); + { + this.state = 7885; + this.match(PostgreSqlParser.ALL); + } + break; + case PostgreSqlParser.DISTINCT: + this.enterOuterAlt(localContext, 2); + { + this.state = 7886; + this.match(PostgreSqlParser.DISTINCT); + } + break; + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.SELECT: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.VALUES: + this.enterOuterAlt(localContext, 3); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -46380,24 +45843,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public insert_target(): Insert_targetContext { - let localContext = new Insert_targetContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_insert_target); + public distinctClause(): DistinctClauseContext { + let localContext = new DistinctClauseContext(this.context, this.state); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_distinctClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7669; - this.qualified_name(); - this.state = 7672; + this.state = 7890; + this.match(PostgreSqlParser.DISTINCT); + this.state = 7896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 36) { + if (_la === 80) { { - this.state = 7670; - this.match(PostgreSqlParser.AS); - this.state = 7671; - this.colid(); + this.state = 7891; + this.match(PostgreSqlParser.ON); + this.state = 7892; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7893; + this.expressionList(); + this.state = 7894; + this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -46417,70 +45884,68 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public insert_rest(): Insert_restContext { - let localContext = new Insert_restContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_insert_rest); - let _la: number; + public allClause(): AllClauseContext { + let localContext = new AllClauseContext(this.context, this.state); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_allClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7898; + this.match(PostgreSqlParser.ALL); + } + } + 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 optionalSortClause(): OptionalSortClauseContext { + let localContext = new OptionalSortClauseContext(this.context, this.state); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_optionalSortClause); try { - this.state = 7693; + this.state = 7902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ORDER: this.enterOuterAlt(localContext, 1); { - this.state = 7674; - this.selectstmt(); + this.state = 7900; + this.sortClause(); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 7675; - this.match(PostgreSqlParser.OVERRIDING); - this.state = 7676; - this.override_kind(); - this.state = 7677; - this.match(PostgreSqlParser.VALUE_P); - this.state = 7678; - this.selectstmt(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7680; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7681; - this.insert_column_list(); - this.state = 7682; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7687; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 463) { - { - this.state = 7683; - this.match(PostgreSqlParser.OVERRIDING); - this.state = 7684; - this.override_kind(); - this.state = 7685; - this.match(PostgreSqlParser.VALUE_P); - } - } - - this.state = 7689; - this.selectstmt(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7691; - this.match(PostgreSqlParser.DEFAULT); - this.state = 7692; - this.match(PostgreSqlParser.VALUES); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -46497,22 +45962,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public override_kind(): Override_kindContext { - let localContext = new Override_kindContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_override_kind); - let _la: number; + public sortClause(): SortClauseContext { + let localContext = new SortClauseContext(this.context, this.state); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_sortClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7695; - _la = this.tokenStream.LA(1); - if(!(_la === 99 || _la === 342)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 7904; + this.match(PostgreSqlParser.ORDER); + this.state = 7905; + this.match(PostgreSqlParser.BY); + this.state = 7906; + this.sortByList(); } } catch (re) { @@ -46529,28 +45990,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public insert_column_list(): Insert_column_listContext { - let localContext = new Insert_column_listContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_insert_column_list); + public sortByList(): SortByListContext { + let localContext = new SortByListContext(this.context, this.state); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_sortByList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7697; - this.insert_column_item(); - this.state = 7702; + this.state = 7908; + this.sortBy(); + this.state = 7913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7698; + this.state = 7909; this.match(PostgreSqlParser.COMMA); - this.state = 7699; - this.insert_column_item(); + this.state = 7910; + this.sortBy(); } } - this.state = 7704; + this.state = 7915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46570,16 +46031,56 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public insert_column_item(): Insert_column_itemContext { - let localContext = new Insert_column_itemContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_insert_column_item); + public sortBy(): SortByContext { + let localContext = new SortByContext(this.context, this.state); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_sortBy); try { this.enterOuterAlt(localContext, 1); { - this.state = 7705; - this.colid(); - this.state = 7706; - this.opt_indirection(); + this.state = 7916; + this.expression1(); + this.state = 7920; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.USING: + { + this.state = 7917; + this.match(PostgreSqlParser.USING); + this.state = 7918; + this.allOperatorQualifier(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.ASC: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.DESC: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.LOOP: + { + this.state = 7919; + this.optionalAscOrDesc(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 7922; + this.optionalNullsOrder(); } } catch (re) { @@ -46596,59 +46097,47 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_on_conflict(): Opt_on_conflictContext { - let localContext = new Opt_on_conflictContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_opt_on_conflict); + public selectLimit(): SelectLimitContext { + let localContext = new SelectLimitContext(this.context, this.state); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_selectLimit); + let _la: number; try { - this.state = 7721; + this.state = 7932; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ON: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 7708; - this.match(PostgreSqlParser.ON); - this.state = 7709; - this.match(PostgreSqlParser.CONFLICT); - this.state = 7710; - this.opt_conf_expr(); - this.state = 7711; - this.match(PostgreSqlParser.DO); - this.state = 7718; + this.state = 7924; + this.limitClause(); + this.state = 7926; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.UPDATE: - { - this.state = 7712; - this.match(PostgreSqlParser.UPDATE); - this.state = 7713; - this.match(PostgreSqlParser.SET); - this.state = 7714; - this.set_clause_list(); - this.state = 7715; - this.where_clause(); - } - break; - case PostgreSqlParser.NOTHING: + _la = this.tokenStream.LA(1); + if (_la === 79) { { - this.state = 7717; - this.match(PostgreSqlParser.NOTHING); + this.state = 7925; + this.offsetClause(); } - break; - default: - throw new antlr.NoViableAltException(this); } + } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.LOOP: + case PostgreSqlParser.OFFSET: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7928; + this.offsetClause(); + this.state = 7930; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 61 || _la === 74) { + { + this.state = 7929; + this.limitClause(); + } + } + } break; default: @@ -46669,39 +46158,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_conf_expr(): Opt_conf_exprContext { - let localContext = new Opt_conf_exprContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_opt_conf_expr); + public optionalSelectLimit(): OptionalSelectLimitContext { + let localContext = new OptionalSelectLimitContext(this.context, this.state); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_optionalSelectLimit); try { - this.state = 7732; + this.state = 7936; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: this.enterOuterAlt(localContext, 1); { - this.state = 7723; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7724; - this.index_params(); - this.state = 7725; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7726; - this.where_clause(); + this.state = 7934; + this.selectLimit(); } break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); - { - this.state = 7728; - this.match(PostgreSqlParser.ON); - this.state = 7729; - this.match(PostgreSqlParser.CONSTRAINT); - this.state = 7730; - this.name(); - } - break; - case PostgreSqlParser.DO: - this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -46724,30 +46207,100 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public returning_clause(): Returning_clauseContext { - let localContext = new Returning_clauseContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_returning_clause); + public limitClause(): LimitClauseContext { + let localContext = new LimitClauseContext(this.context, this.state); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_limitClause); + let _la: number; try { - this.state = 7737; + this.state = 7961; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.RETURNING: + case PostgreSqlParser.LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 7734; - this.match(PostgreSqlParser.RETURNING); - this.state = 7735; - this.target_list(); + this.state = 7938; + this.match(PostgreSqlParser.LIMIT); + this.state = 7939; + this.selectLimitValue(); + this.state = 7942; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 7940; + this.match(PostgreSqlParser.COMMA); + this.state = 7941; + this.selectOffsetValue(); + } + } + } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LOOP: + case PostgreSqlParser.FETCH: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7944; + this.match(PostgreSqlParser.FETCH); + this.state = 7945; + this.firstOrNext(); + this.state = 7959; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + case 1: + { + this.state = 7946; + this.selectFetchFirstValue(); + this.state = 7947; + this.rowOrRows(); + this.state = 7951; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ONLY: + { + this.state = 7948; + this.match(PostgreSqlParser.ONLY); + } + break; + case PostgreSqlParser.WITH: + { + this.state = 7949; + this.match(PostgreSqlParser.WITH); + this.state = 7950; + this.match(PostgreSqlParser.TIES); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 2: + { + this.state = 7953; + this.rowOrRows(); + this.state = 7957; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ONLY: + { + this.state = 7954; + this.match(PostgreSqlParser.ONLY); + } + break; + case PostgreSqlParser.WITH: + { + this.state = 7955; + this.match(PostgreSqlParser.WITH); + this.state = 7956; + this.match(PostgreSqlParser.TIES); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + } } break; default: @@ -46768,62 +46321,109 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public mergestmt(): MergestmtContext { - let localContext = new MergestmtContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_mergestmt); - let _la: number; + public offsetClause(): OffsetClauseContext { + let localContext = new OffsetClauseContext(this.context, this.state); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_offsetClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7739; - this.match(PostgreSqlParser.MERGE); - this.state = 7741; + this.state = 7963; + this.match(PostgreSqlParser.OFFSET); + this.state = 7968; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 71) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + case 1: { - this.state = 7740; - this.match(PostgreSqlParser.INTO); + this.state = 7964; + this.selectOffsetValue(); } - } - - this.state = 7743; - this.qualified_name(); - this.state = 7745; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { + break; + case 2: { - this.state = 7744; - this.alias_clause(); + this.state = 7965; + this.selectFetchFirstValue(); + this.state = 7966; + this.rowOrRows(); } + break; } - - this.state = 7747; - this.match(PostgreSqlParser.USING); - this.state = 7750; + } + } + 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 selectLimitValue(): SelectLimitValueContext { + let localContext = new SelectLimitValueContext(this.context, this.state); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_selectLimitValue); + try { + this.state = 7972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: - { - this.state = 7748; - this.select_with_parens(); - } - break; - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: + case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.SESSION_USER: case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: case PostgreSqlParser.LEFT: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: case PostgreSqlParser.RIGHT: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -47164,6 +46764,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -47327,326 +46928,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - { - this.state = 7749; - this.qualified_name(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 7753; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { - { - this.state = 7752; - this.alias_clause(); - } - } - - this.state = 7755; - this.match(PostgreSqlParser.ON); - this.state = 7756; - this.a_expr(); - this.state = 7765; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { - case 1: - { - this.state = 7757; - this.merge_insert_clause(); - this.state = 7759; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { - case 1: - { - this.state = 7758; - this.merge_update_clause(); - } - break; - } - } - break; - case 2: - { - this.state = 7761; - this.merge_update_clause(); - this.state = 7763; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { - case 1: - { - this.state = 7762; - this.merge_insert_clause(); - } - break; - } - } - break; - } - this.state = 7768; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 102) { - { - this.state = 7767; - this.merge_delete_clause(); - } - } - - } - } - 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 merge_insert_clause(): Merge_insert_clauseContext { - let localContext = new Merge_insert_clauseContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_merge_insert_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7770; - this.match(PostgreSqlParser.WHEN); - this.state = 7771; - this.match(PostgreSqlParser.NOT); - this.state = 7772; - this.match(PostgreSqlParser.MATCHED); - this.state = 7775; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 33) { - { - this.state = 7773; - this.match(PostgreSqlParser.AND); - this.state = 7774; - this.a_expr(); - } - } - - this.state = 7778; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 93) { - { - this.state = 7777; - this.match(PostgreSqlParser.THEN); - } - } - - this.state = 7780; - this.match(PostgreSqlParser.INSERT); - this.state = 7785; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 7781; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7782; - this.insert_column_list(); - this.state = 7783; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - } - - this.state = 7787; - this.values_clause(); - } - } - 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 merge_update_clause(): Merge_update_clauseContext { - let localContext = new Merge_update_clauseContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_merge_update_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7789; - this.match(PostgreSqlParser.WHEN); - this.state = 7790; - this.match(PostgreSqlParser.MATCHED); - this.state = 7793; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 33) { - { - this.state = 7791; - this.match(PostgreSqlParser.AND); - this.state = 7792; - this.a_expr(); - } - } - - this.state = 7796; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 93) { - { - this.state = 7795; - this.match(PostgreSqlParser.THEN); - } - } - - this.state = 7798; - this.match(PostgreSqlParser.UPDATE); - this.state = 7799; - this.match(PostgreSqlParser.SET); - this.state = 7800; - this.set_clause_list(); - } - } - 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 merge_delete_clause(): Merge_delete_clauseContext { - let localContext = new Merge_delete_clauseContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_merge_delete_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7802; - this.match(PostgreSqlParser.WHEN); - this.state = 7803; - this.match(PostgreSqlParser.MATCHED); - this.state = 7805; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 93) { - { - this.state = 7804; - this.match(PostgreSqlParser.THEN); - } - } - - this.state = 7807; - this.match(PostgreSqlParser.DELETE_P); - } - } - 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 deletestmt(): DeletestmtContext { - let localContext = new DeletestmtContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSqlParser.RULE_deletestmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7810; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { - { - this.state = 7809; - this.with_clause(); - } - } - - this.state = 7812; - this.match(PostgreSqlParser.DELETE_P); - this.state = 7813; - this.match(PostgreSqlParser.FROM); - this.state = 7814; - this.relation_expr_opt_alias(); - this.state = 7815; - this.using_clause(); - this.state = 7816; - this.where_or_current_clause(); - this.state = 7817; - this.returning_clause(); - } - } - 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 using_clause(): Using_clauseContext { - let localContext = new Using_clauseContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSqlParser.RULE_using_clause); - try { - this.state = 7822; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: + case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7819; - this.match(PostgreSqlParser.USING); - this.state = 7820; - this.from_list(); + this.state = 7970; + this.expression1(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.LOOP: + case PostgreSqlParser.ALL: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 7971; + this.match(PostgreSqlParser.ALL); } break; default: @@ -47667,351 +46969,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public lockstmt(): LockstmtContext { - let localContext = new LockstmtContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSqlParser.RULE_lockstmt); + public selectOffsetValue(): SelectOffsetValueContext { + let localContext = new SelectOffsetValueContext(this.context, this.state); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_selectOffsetValue); try { this.enterOuterAlt(localContext, 1); { - this.state = 7824; - this.match(PostgreSqlParser.LOCK_P); - this.state = 7825; - this.opt_table(); - this.state = 7826; - this.relation_expr_list(); - this.state = 7827; - this.opt_lock(); - this.state = 7828; - this.opt_nowait(); - } - } - 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 opt_lock(): Opt_lockContext { - let localContext = new Opt_lockContext(this.context, this.state); - this.enterRule(localContext, 932, PostgreSqlParser.RULE_opt_lock); - try { - this.state = 7835; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.IN_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 7830; - this.match(PostgreSqlParser.IN_P); - this.state = 7831; - this.lock_type(); - this.state = 7832; - this.match(PostgreSqlParser.MODE); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.NOWAIT: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 lock_type(): Lock_typeContext { - let localContext = new Lock_typeContext(this.context, this.state); - this.enterRule(localContext, 934, PostgreSqlParser.RULE_lock_type); - let _la: number; - try { - this.state = 7849; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ACCESS: - this.enterOuterAlt(localContext, 1); - { - this.state = 7837; - this.match(PostgreSqlParser.ACCESS); - this.state = 7838; - _la = this.tokenStream.LA(1); - if(!(_la === 201 || _la === 327)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case PostgreSqlParser.ROW: - this.enterOuterAlt(localContext, 2); - { - this.state = 7839; - this.match(PostgreSqlParser.ROW); - this.state = 7840; - _la = this.tokenStream.LA(1); - if(!(_la === 201 || _la === 327)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case PostgreSqlParser.SHARE: - this.enterOuterAlt(localContext, 3); - { - this.state = 7841; - this.match(PostgreSqlParser.SHARE); - this.state = 7846; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.UPDATE: - { - this.state = 7842; - this.match(PostgreSqlParser.UPDATE); - this.state = 7843; - this.match(PostgreSqlParser.EXCLUSIVE); - } - break; - case PostgreSqlParser.ROW: - { - this.state = 7844; - this.match(PostgreSqlParser.ROW); - this.state = 7845; - this.match(PostgreSqlParser.EXCLUSIVE); - } - break; - case PostgreSqlParser.MODE: - break; - default: - break; - } - } - break; - case PostgreSqlParser.EXCLUSIVE: - this.enterOuterAlt(localContext, 4); - { - this.state = 7848; - this.match(PostgreSqlParser.EXCLUSIVE); - } - 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 opt_nowait(): Opt_nowaitContext { - let localContext = new Opt_nowaitContext(this.context, this.state); - this.enterRule(localContext, 936, PostgreSqlParser.RULE_opt_nowait); - try { - this.state = 7853; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NOWAIT: - this.enterOuterAlt(localContext, 1); - { - this.state = 7851; - this.match(PostgreSqlParser.NOWAIT); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 opt_nowait_or_skip(): Opt_nowait_or_skipContext { - let localContext = new Opt_nowait_or_skipContext(this.context, this.state); - this.enterRule(localContext, 938, PostgreSqlParser.RULE_opt_nowait_or_skip); - try { - this.state = 7859; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NOWAIT: - this.enterOuterAlt(localContext, 1); - { - this.state = 7855; - this.match(PostgreSqlParser.NOWAIT); - } - break; - case PostgreSqlParser.SKIP_P: - this.enterOuterAlt(localContext, 2); - { - this.state = 7856; - this.match(PostgreSqlParser.SKIP_P); - this.state = 7857; - this.match(PostgreSqlParser.LOCKED); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty - { - } - 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 updatestmt(): UpdatestmtContext { - let localContext = new UpdatestmtContext(this.context, this.state); - this.enterRule(localContext, 940, PostgreSqlParser.RULE_updatestmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7862; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { - { - this.state = 7861; - this.with_clause(); - } - } - - this.state = 7864; - this.match(PostgreSqlParser.UPDATE); - this.state = 7865; - this.relation_expr_opt_alias(); - this.state = 7866; - this.match(PostgreSqlParser.SET); - this.state = 7867; - this.set_clause_list(); - this.state = 7868; - this.from_clause(); - this.state = 7869; - this.where_or_current_clause(); - this.state = 7870; - this.returning_clause(); - } - } - 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 set_clause_list(): Set_clause_listContext { - let localContext = new Set_clause_listContext(this.context, this.state); - this.enterRule(localContext, 942, PostgreSqlParser.RULE_set_clause_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7872; - this.set_clause(); - this.state = 7877; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 7873; - this.match(PostgreSqlParser.COMMA); - this.state = 7874; - this.set_clause(); - } - } - this.state = 7879; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 7974; + this.expression1(); } } catch (re) { @@ -48028,27 +46993,63 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public set_clause(): Set_clauseContext { - let localContext = new Set_clauseContext(this.context, this.state); - this.enterRule(localContext, 944, PostgreSqlParser.RULE_set_clause); + public selectFetchFirstValue(): SelectFetchFirstValueContext { + let localContext = new SelectFetchFirstValueContext(this.context, this.state); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_selectFetchFirstValue); try { - this.state = 7890; + this.state = 7981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PARAM: case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.SESSION_USER: case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: case PostgreSqlParser.LEFT: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: case PostgreSqlParser.RIGHT: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -48389,6 +47390,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -48552,31 +47554,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7880; - this.set_target(); - this.state = 7881; - this.match(PostgreSqlParser.EQUAL); - this.state = 7882; - this.a_expr(); + this.state = 7976; + this.expression3(); } break; - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: this.enterOuterAlt(localContext, 2); { - this.state = 7884; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7885; - this.set_target_list(); - this.state = 7886; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7887; - this.match(PostgreSqlParser.EQUAL); - this.state = 7888; - this.a_expr(); + this.state = 7977; + this.match(PostgreSqlParser.PLUS); + this.state = 7978; + this.anyConst(); + } + break; + case PostgreSqlParser.MINUS: + this.enterOuterAlt(localContext, 3); + { + this.state = 7979; + this.match(PostgreSqlParser.MINUS); + this.state = 7980; + this.anyConst(); } break; default: @@ -48597,16 +47606,29 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public set_target(): Set_targetContext { - let localContext = new Set_targetContext(this.context, this.state); - this.enterRule(localContext, 946, PostgreSqlParser.RULE_set_target); + public anyConst(): AnyConstContext { + let localContext = new AnyConstContext(this.context, this.state); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_anyConst); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7892; - this.colid(); - this.state = 7893; - this.opt_indirection(); + this.state = 7985; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.Integral: + this.enterOuterAlt(localContext, 1); + { + this.state = 7983; + this.iconst(); + } + break; + case PostgreSqlParser.Numeric: + this.enterOuterAlt(localContext, 2); + { + this.state = 7984; + this.fconst(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -48623,30 +47645,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public set_target_list(): Set_target_listContext { - let localContext = new Set_target_listContext(this.context, this.state); - this.enterRule(localContext, 948, PostgreSqlParser.RULE_set_target_list); + public rowOrRows(): RowOrRowsContext { + let localContext = new RowOrRowsContext(this.context, this.state); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_rowOrRows); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7895; - this.set_target(); - this.state = 7900; - this.errorHandler.sync(this); + this.state = 7987; _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 7896; - this.match(PostgreSqlParser.COMMA); - this.state = 7897; - this.set_target(); - } - } - this.state = 7902; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + if(!(_la === 313 || _la === 407)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } } } @@ -48664,26 +47677,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public declarecursorstmt(): DeclarecursorstmtContext { - let localContext = new DeclarecursorstmtContext(this.context, this.state); - this.enterRule(localContext, 950, PostgreSqlParser.RULE_declarecursorstmt); + public firstOrNext(): FirstOrNextContext { + let localContext = new FirstOrNextContext(this.context, this.state); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_firstOrNext); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7903; - this.match(PostgreSqlParser.DECLARE); - this.state = 7904; - this.cursor_name(); - this.state = 7905; - this.cursor_options(); - this.state = 7906; - this.match(PostgreSqlParser.CURSOR); - this.state = 7907; - this.opt_hold(); - this.state = 7908; - this.match(PostgreSqlParser.FOR); - this.state = 7909; - this.selectstmt(); + this.state = 7989; + _la = this.tokenStream.LA(1); + if(!(_la === 207 || _la === 261)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -48700,14 +47709,55 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public cursor_name(): Cursor_nameContext { - let localContext = new Cursor_nameContext(this.context, this.state); - this.enterRule(localContext, 952, PostgreSqlParser.RULE_cursor_name); + public groupClause(): GroupClauseContext { + let localContext = new GroupClauseContext(this.context, this.state); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_groupClause); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7911; - this.name(); + this.state = 7995; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.GROUP_P: + this.enterOuterAlt(localContext, 1); + { + this.state = 7991; + this.match(PostgreSqlParser.GROUP_P); + this.state = 7992; + this.match(PostgreSqlParser.BY); + this.state = 7993; + this.groupByList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.HAVING: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.THEN: + case PostgreSqlParser.UNION: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WINDOW: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -48724,54 +47774,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public cursor_options(): Cursor_optionsContext { - let localContext = new Cursor_optionsContext(this.context, this.state); - this.enterRule(localContext, 954, PostgreSqlParser.RULE_cursor_options); - let _la: number; + public groupByList(): GroupByListContext { + let localContext = new GroupByListContext(this.context, this.state); + this.enterRule(localContext, 930, PostgreSqlParser.RULE_groupByList); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7920; + this.state = 7997; + this.groupByItem(); + this.state = 8002; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 107 || _la === 231 || _la === 262 || _la === 317) { - { - this.state = 7918; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: - { - this.state = 7913; - this.match(PostgreSqlParser.NO); - this.state = 7914; - this.match(PostgreSqlParser.SCROLL); - } - break; - case PostgreSqlParser.SCROLL: + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { - this.state = 7915; - this.match(PostgreSqlParser.SCROLL); - } - break; - case PostgreSqlParser.BINARY: { - this.state = 7916; - this.match(PostgreSqlParser.BINARY); + this.state = 7998; + this.match(PostgreSqlParser.COMMA); + this.state = 7999; + this.groupByItem(); } - break; - case PostgreSqlParser.INSENSITIVE: - { - this.state = 7917; - this.match(PostgreSqlParser.INSENSITIVE); } - break; - default: - throw new antlr.NoViableAltException(this); - } } - this.state = 7922; + this.state = 8004; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); } } } @@ -48789,76 +47817,132 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_hold(): Opt_holdContext { - let localContext = new Opt_holdContext(this.context, this.state); - this.enterRule(localContext, 956, PostgreSqlParser.RULE_opt_hold); + public groupByItem(): GroupByItemContext { + let localContext = new GroupByItemContext(this.context, this.state); + this.enterRule(localContext, 932, PostgreSqlParser.RULE_groupByItem); try { - this.state = 7928; + this.state = 8024; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); - // tslint:disable-next-line:no-empty { + this.state = 8005; + this.expression1(); } break; - case PostgreSqlParser.WITH: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7924; - this.match(PostgreSqlParser.WITH); - this.state = 7925; - this.match(PostgreSqlParser.HOLD); + this.state = 8006; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8007; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.WITHOUT: + case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7926; - this.match(PostgreSqlParser.WITHOUT); - this.state = 7927; - this.match(PostgreSqlParser.HOLD); + this.state = 8008; + this.match(PostgreSqlParser.CUBE); + this.state = 8009; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8010; + this.expressionList(); + this.state = 8011; + this.match(PostgreSqlParser.CLOSE_PAREN); } 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 { + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 8013; + this.match(PostgreSqlParser.ROLLUP); + this.state = 8014; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8015; + this.expressionList(); + this.state = 8016; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 8018; + this.match(PostgreSqlParser.GROUPING); + this.state = 8019; + this.match(PostgreSqlParser.SETS); + this.state = 8020; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8021; + this.groupByList(); + this.state = 8022; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 selectstmt(): SelectstmtContext { - let localContext = new SelectstmtContext(this.context, this.state); - this.enterRule(localContext, 958, PostgreSqlParser.RULE_selectstmt); + public havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 934, PostgreSqlParser.RULE_havingClause); try { - this.state = 7932; + this.state = 8029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.HAVING: this.enterOuterAlt(localContext, 1); { - this.state = 7930; - this.select_no_parens(); + this.state = 8026; + this.match(PostgreSqlParser.HAVING); + this.state = 8027; + this.expression1(); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.THEN: + case PostgreSqlParser.UNION: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WINDOW: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 7931; - this.select_with_parens(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -48875,33 +47959,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public select_with_parens(): Select_with_parensContext { - let localContext = new Select_with_parensContext(this.context, this.state); - this.enterRule(localContext, 960, PostgreSqlParser.RULE_select_with_parens); + public forLockingClause(): ForLockingClauseContext { + let localContext = new ForLockingClauseContext(this.context, this.state); + this.enterRule(localContext, 936, PostgreSqlParser.RULE_forLockingClause); + let _la: number; try { - this.state = 7942; + this.state = 8039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7934; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7935; - this.select_no_parens(); - this.state = 7936; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8032; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 8031; + this.forLockingItem(); + } + } + this.state = 8034; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (_la === 62); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7938; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7939; - this.select_with_parens(); - this.state = 7940; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8036; + this.match(PostgreSqlParser.FOR); + this.state = 8037; + this.match(PostgreSqlParser.READ); + this.state = 8038; + this.match(PostgreSqlParser.ONLY); } break; } @@ -48920,104 +48013,136 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public select_no_parens(): Select_no_parensContext { - let localContext = new Select_no_parensContext(this.context, this.state); - this.enterRule(localContext, 962, PostgreSqlParser.RULE_select_no_parens); + public forLockingItem(): ForLockingItemContext { + let localContext = new ForLockingItemContext(this.context, this.state); + this.enterRule(localContext, 938, PostgreSqlParser.RULE_forLockingItem); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8041; + this.forLockingStrength(); + this.state = 8042; + this.lockedRelationsList(); + this.state = 8043; + this.optionalNowaitOrSkip(); + } + } + 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 forLockingStrength(): ForLockingStrengthContext { + let localContext = new ForLockingStrengthContext(this.context, this.state); + this.enterRule(localContext, 940, PostgreSqlParser.RULE_forLockingStrength); + let _la: number; try { - this.state = 7965; + this.enterOuterAlt(localContext, 1); + { + this.state = 8045; + this.match(PostgreSqlParser.FOR); + this.state = 8055; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.SELECT: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.VALUES: - this.enterOuterAlt(localContext, 1); + case PostgreSqlParser.NO: + case PostgreSqlParser.UPDATE: { - this.state = 7944; - this.select_clause(); - this.state = 7945; - this.opt_sort_clause(); - this.state = 7952; + this.state = 8048; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - { - this.state = 7946; - this.for_locking_clause(); - this.state = 7947; - this.opt_select_limit(); - } - break; - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: + _la = this.tokenStream.LA(1); + if (_la === 262) { { - this.state = 7949; - this.select_limit(); - this.state = 7950; - this.opt_for_locking_clause(); + this.state = 8046; + this.match(PostgreSqlParser.NO); + this.state = 8047; + this.match(PostgreSqlParser.KEY); } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - break; - default: - break; } + + this.state = 8050; + this.match(PostgreSqlParser.UPDATE); } break; - case PostgreSqlParser.WITH: - this.enterOuterAlt(localContext, 2); + case PostgreSqlParser.KEY: + case PostgreSqlParser.SHARE: { - this.state = 7954; - this.with_clause(); - this.state = 7955; - this.select_clause(); - this.state = 7956; - this.opt_sort_clause(); - this.state = 7963; + this.state = 8052; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - { - this.state = 7957; - this.for_locking_clause(); - this.state = 7958; - this.opt_select_limit(); - } - break; - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: + _la = this.tokenStream.LA(1); + if (_la === 236) { { - this.state = 7960; - this.select_limit(); - this.state = 7961; - this.opt_for_locking_clause(); + this.state = 8051; + this.match(PostgreSqlParser.KEY); } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - break; - default: - break; } + + this.state = 8054; + this.match(PostgreSqlParser.SHARE); + } + 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 lockedRelationsList(): LockedRelationsListContext { + let localContext = new LockedRelationsListContext(this.context, this.state); + this.enterRule(localContext, 942, PostgreSqlParser.RULE_lockedRelationsList); + try { + this.state = 8060; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OF: + this.enterOuterAlt(localContext, 1); + { + this.state = 8057; + this.match(PostgreSqlParser.OF); + this.state = 8058; + this.qualifiedNameList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.WITH: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { } break; default: @@ -49038,37 +48163,38 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public select_clause(): Select_clauseContext { - let localContext = new Select_clauseContext(this.context, this.state); - this.enterRule(localContext, 964, PostgreSqlParser.RULE_select_clause); + public valuesClause(): ValuesClauseContext { + let localContext = new ValuesClauseContext(this.context, this.state); + this.enterRule(localContext, 944, PostgreSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7967; - this.simple_select_intersect(); - this.state = 7974; + this.state = 8062; + this.match(PostgreSqlParser.VALUES); + this.state = 8063; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8064; + this.expressionList(); + this.state = 8065; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 59 || _la === 97) { + while (_la === 6) { { { - this.state = 7968; - _la = this.tokenStream.LA(1); - if(!(_la === 59 || _la === 97)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 7969; - this.all_or_distinct(); - this.state = 7970; - this.simple_select_intersect(); + this.state = 8066; + this.match(PostgreSqlParser.COMMA); + this.state = 8067; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8068; + this.expressionList(); + this.state = 8069; + this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7976; + this.state = 8075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49088,33 +48214,158 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public simple_select_intersect(): Simple_select_intersectContext { - let localContext = new Simple_select_intersectContext(this.context, this.state); - this.enterRule(localContext, 966, PostgreSqlParser.RULE_simple_select_intersect); - let _la: number; + public fromClause(): FromClauseContext { + let localContext = new FromClauseContext(this.context, this.state); + this.enterRule(localContext, 946, PostgreSqlParser.RULE_fromClause); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7977; - this.simple_select_pramary(); - this.state = 7984; + this.state = 8079; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 70) { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.FROM: + this.enterOuterAlt(localContext, 1); { + this.state = 8076; + this.match(PostgreSqlParser.FROM); + this.state = 8077; + this.fromList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.GROUP_P: + case PostgreSqlParser.HAVING: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.THEN: + case PostgreSqlParser.UNION: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.WINDOW: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 7978; - this.match(PostgreSqlParser.INTERSECT); - this.state = 7979; - this.all_or_distinct(); - this.state = 7980; - this.simple_select_pramary(); } + 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 fromList(): FromListContext { + let localContext = new FromListContext(this.context, this.state); + this.enterRule(localContext, 948, PostgreSqlParser.RULE_fromList); + try { + let alternative: number; + this.state = 8090; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8081; + this.nonAnsiJoin(); } - this.state = 7986; + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8082; + this.tableReference(); + this.state = 8087; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 484, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8083; + this.match(PostgreSqlParser.COMMA); + this.state = 8084; + this.tableReference(); + } + } + } + this.state = 8089; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 484, 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 nonAnsiJoin(): NonAnsiJoinContext { + let localContext = new NonAnsiJoinContext(this.context, this.state); + this.enterRule(localContext, 950, PostgreSqlParser.RULE_nonAnsiJoin); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8092; + this.tableReference(); + this.state = 8095; + this.errorHandler.sync(this); + alternative = 1; + do { + switch (alternative) { + case 1: + { + { + this.state = 8093; + this.match(PostgreSqlParser.COMMA); + this.state = 8094; + this.tableReference(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 8097; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } catch (re) { @@ -49131,748 +48382,240 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public simple_select_start(): Simple_select_startContext { - let localContext = new Simple_select_startContext(this.context, this.state); - this.enterRule(localContext, 968, PostgreSqlParser.RULE_simple_select_start); + public tableReference(): TableReferenceContext { + let localContext = new TableReferenceContext(this.context, this.state); + this.enterRule(localContext, 952, PostgreSqlParser.RULE_tableReference); + let _la: number; try { - this.state = 8002; + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8148; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.STAR: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + case 1: { - this.state = 7987; - this.target_list(); - this.state = 7989; + this.state = 8099; + this.relationExpression(); + this.state = 8100; + this.optionalAliasClause(); + this.state = 8102; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 472) { { - this.state = 7988; - this.into_clause(); + this.state = 8101; + this.tableSampleClause(); } - break; } + } break; - case PostgreSqlParser.ALL: - this.enterOuterAlt(localContext, 2); + case 2: { - this.state = 7991; - this.all_clause(); - this.state = 7992; - this.opt_target_list(); - this.state = 7994; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { - case 1: - { - this.state = 7993; - this.into_clause(); - } - break; + this.state = 8104; + this.functionTable(); + this.state = 8105; + this.functionAliasClause(); } + break; + case 3: + { + this.state = 8107; + this.xmlTable(); + this.state = 8108; + this.optionalAliasClause(); } break; - case PostgreSqlParser.DISTINCT: - this.enterOuterAlt(localContext, 3); + case 4: + { + this.state = 8110; + this.selectWithParenthesis(); + this.state = 8111; + this.optionalAliasClause(); + } + break; + case 5: { - this.state = 7996; - this.distinct_clause(); - this.state = 7997; - this.target_list(); - this.state = 7999; + this.state = 8113; + this.match(PostgreSqlParser.LATERAL_P); + this.state = 8123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 7998; - this.into_clause(); + this.state = 8114; + this.xmlTable(); + this.state = 8115; + this.optionalAliasClause(); + } + break; + case 2: + { + this.state = 8117; + this.functionTable(); + this.state = 8118; + this.functionAliasClause(); + } + break; + case 3: + { + this.state = 8120; + this.selectWithParenthesis(); + this.state = 8121; + this.optionalAliasClause(); } break; } } break; - case PostgreSqlParser.INTO: - this.enterOuterAlt(localContext, 4); + case 6: { - this.state = 8001; - this.into_clause(); - } - 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 simple_select_pramary(): Simple_select_pramaryContext { - let localContext = new Simple_select_pramaryContext(this.context, this.state); - this.enterRule(localContext, 970, PostgreSqlParser.RULE_simple_select_pramary); - try { - this.state = 8016; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.SELECT: - this.enterOuterAlt(localContext, 1); - { - this.state = 8004; - this.match(PostgreSqlParser.SELECT); - this.state = 8005; - this.simple_select_start(); - this.state = 8006; - this.from_clause(); - this.state = 8007; - this.where_clause(); - this.state = 8008; - this.group_clause(); - this.state = 8009; - this.having_clause(); - this.state = 8010; - this.window_clause(); - } - break; - case PostgreSqlParser.VALUES: - this.enterOuterAlt(localContext, 2); - { - this.state = 8012; - this.values_clause(); - } - break; - case PostgreSqlParser.TABLE: - this.enterOuterAlt(localContext, 3); - { - this.state = 8013; - this.match(PostgreSqlParser.TABLE); - this.state = 8014; - this.relation_expr(); + this.state = 8125; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8126; + this.tableReference(); + this.state = 8143; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CROSS: + { + this.state = 8127; + this.match(PostgreSqlParser.CROSS); + this.state = 8128; + this.match(PostgreSqlParser.JOIN); + this.state = 8129; + this.tableReference(); + } + break; + case PostgreSqlParser.NATURAL: + { + this.state = 8130; + this.match(PostgreSqlParser.NATURAL); + this.state = 8132; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 8131; + this.joinType(); + } + } + + this.state = 8134; + this.match(PostgreSqlParser.JOIN); + this.state = 8135; + this.tableReference(); + } + break; + case PostgreSqlParser.FULL: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.RIGHT: + { + this.state = 8137; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 8136; + this.joinType(); + } + } + + this.state = 8139; + this.match(PostgreSqlParser.JOIN); + this.state = 8140; + this.tableReference(); + this.state = 8141; + this.joinQualifier(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + break; + default: + break; } - break; - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 4); - { - this.state = 8015; - this.select_with_parens(); + this.state = 8145; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8146; + this.optionalAliasClause(); } 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 with_clause(): With_clauseContext { - let localContext = new With_clauseContext(this.context, this.state); - this.enterRule(localContext, 972, PostgreSqlParser.RULE_with_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8018; - this.match(PostgreSqlParser.WITH); - this.state = 8020; + this.state = 8168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { - case 1: - { - this.state = 8019; - this.match(PostgreSqlParser.RECURSIVE); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + this.state = 8166; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CROSS: + { + this.state = 8150; + this.match(PostgreSqlParser.CROSS); + this.state = 8151; + this.match(PostgreSqlParser.JOIN); + this.state = 8152; + this.tableReference(); + } + break; + case PostgreSqlParser.NATURAL: + { + this.state = 8153; + this.match(PostgreSqlParser.NATURAL); + this.state = 8155; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 8154; + this.joinType(); + } + } + + this.state = 8157; + this.match(PostgreSqlParser.JOIN); + this.state = 8158; + this.tableReference(); + } + break; + case PostgreSqlParser.FULL: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.RIGHT: + { + this.state = 8160; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 8159; + this.joinType(); + } + } + + this.state = 8162; + this.match(PostgreSqlParser.JOIN); + this.state = 8163; + this.tableReference(); + this.state = 8164; + this.joinQualifier(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } } - break; + this.state = 8170; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); } - this.state = 8022; - this.cte_list(); } } catch (re) { @@ -49889,278 +48632,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public cte_list(): Cte_listContext { - let localContext = new Cte_listContext(this.context, this.state); - this.enterRule(localContext, 974, PostgreSqlParser.RULE_cte_list); + public aliasClause(): AliasClauseContext { + let localContext = new AliasClauseContext(this.context, this.state); + this.enterRule(localContext, 954, PostgreSqlParser.RULE_aliasClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8024; - this.common_table_expr(); - this.state = 8029; + this.state = 8172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8025; - this.match(PostgreSqlParser.COMMA); - this.state = 8026; - this.common_table_expr(); - } - } - this.state = 8031; - 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 common_table_expr(): Common_table_exprContext { - let localContext = new Common_table_exprContext(this.context, this.state); - this.enterRule(localContext, 976, PostgreSqlParser.RULE_common_table_expr); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8032; - this.name(); - this.state = 8033; - this.opt_name_list(); - this.state = 8034; - this.match(PostgreSqlParser.AS); - this.state = 8035; - this.opt_materialized(); - this.state = 8036; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8037; - this.preparablestmt(); - this.state = 8038; - this.match(PostgreSqlParser.CLOSE_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 opt_materialized(): Opt_materializedContext { - let localContext = new Opt_materializedContext(this.context, this.state); - this.enterRule(localContext, 978, PostgreSqlParser.RULE_opt_materialized); - try { - this.state = 8044; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.MATERIALIZED: - this.enterOuterAlt(localContext, 1); - { - this.state = 8040; - this.match(PostgreSqlParser.MATERIALIZED); - } - break; - case PostgreSqlParser.NOT: - this.enterOuterAlt(localContext, 2); - { - this.state = 8041; - this.match(PostgreSqlParser.NOT); - this.state = 8042; - this.match(PostgreSqlParser.MATERIALIZED); - } - break; - case PostgreSqlParser.OPEN_PAREN: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty - { - } - 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 into_clause(): Into_clauseContext { - let localContext = new Into_clauseContext(this.context, this.state); - this.enterRule(localContext, 980, PostgreSqlParser.RULE_into_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8046; - this.match(PostgreSqlParser.INTO); - this.state = 8051; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { - case 1: - { - this.state = 8047; - this.opt_strict(); - this.state = 8048; - this.opttempTableName(); - } - break; - case 2: + if (_la === 36) { { - this.state = 8050; - this.into_target(); + this.state = 8171; + this.match(PostgreSqlParser.AS); } - 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 opt_strict(): Opt_strictContext { - let localContext = new Opt_strictContext(this.context, this.state); - this.enterRule(localContext, 982, PostgreSqlParser.RULE_opt_strict); - try { - this.state = 8055; + + this.state = 8174; + this.columnId(); + this.state = 8179; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - // tslint:disable-next-line:no-empty - { - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 2) { { - this.state = 8054; - this.match(PostgreSqlParser.STRICT_P); + this.state = 8175; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8176; + this.nameList(); + this.state = 8177; + this.match(PostgreSqlParser.CLOSE_PAREN); } - 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 opttempTableName(): OpttempTableNameContext { - let localContext = new OpttempTableNameContext(this.context, this.state); - this.enterRule(localContext, 984, PostgreSqlParser.RULE_opttempTableName); - let _la: number; - try { - this.state = 8071; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8058; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 213 || _la === 245) { - { - this.state = 8057; - _la = this.tokenStream.LA(1); - if(!(_la === 213 || _la === 245)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - this.state = 8060; - _la = this.tokenStream.LA(1); - if(!(_la === 345 || _la === 347)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8061; - this.opt_table(); - this.state = 8062; - this.qualified_name(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8064; - this.match(PostgreSqlParser.UNLOGGED); - this.state = 8065; - this.opt_table(); - this.state = 8066; - this.qualified_name(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8068; - this.match(PostgreSqlParser.TABLE); - this.state = 8069; - this.qualified_name(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8070; - this.qualified_name(); - } - break; } } catch (re) { @@ -50177,18 +48681,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_table(): Opt_tableContext { - let localContext = new Opt_tableContext(this.context, this.state); - this.enterRule(localContext, 986, PostgreSqlParser.RULE_opt_table); + public optionalAliasClause(): OptionalAliasClauseContext { + let localContext = new OptionalAliasClauseContext(this.context, this.state); + this.enterRule(localContext, 956, PostgreSqlParser.RULE_optionalAliasClause); try { - this.state = 8075; + this.state = 8183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8073; - this.match(PostgreSqlParser.TABLE); + this.state = 8181; + this.tableAliasClause(); } break; case 2: @@ -50213,75 +48717,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public all_or_distinct(): All_or_distinctContext { - let localContext = new All_or_distinctContext(this.context, this.state); - this.enterRule(localContext, 988, PostgreSqlParser.RULE_all_or_distinct); + public tableAliasClause(): TableAliasClauseContext { + let localContext = new TableAliasClauseContext(this.context, this.state); + this.enterRule(localContext, 958, PostgreSqlParser.RULE_tableAliasClause); + let _la: number; try { - this.state = 8080; + this.enterOuterAlt(localContext, 1); + { + this.state = 8186; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ALL: - this.enterOuterAlt(localContext, 1); - { - this.state = 8077; - this.match(PostgreSqlParser.ALL); - } - break; - case PostgreSqlParser.DISTINCT: - this.enterOuterAlt(localContext, 2); - { - this.state = 8078; - this.match(PostgreSqlParser.DISTINCT); - } - break; - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.SELECT: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.VALUES: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty + _la = this.tokenStream.LA(1); + if (_la === 36) { { + this.state = 8185; + this.match(PostgreSqlParser.AS); } - 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 distinct_clause(): Distinct_clauseContext { - let localContext = new Distinct_clauseContext(this.context, this.state); - this.enterRule(localContext, 990, PostgreSqlParser.RULE_distinct_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8082; - this.match(PostgreSqlParser.DISTINCT); - this.state = 8088; + + this.state = 8188; + this.tableAlias(); + this.state = 8193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 80) { + if (_la === 2) { { - this.state = 8083; - this.match(PostgreSqlParser.ON); - this.state = 8084; + this.state = 8189; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8085; - this.expr_list(); - this.state = 8086; + this.state = 8190; + this.nameList(); + this.state = 8191; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -50302,10761 +48766,584 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public all_clause(): All_clauseContext { - let localContext = new All_clauseContext(this.context, this.state); - this.enterRule(localContext, 992, PostgreSqlParser.RULE_all_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8090; - this.match(PostgreSqlParser.ALL); - } - } - 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 opt_sort_clause(): Opt_sort_clauseContext { - let localContext = new Opt_sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 994, PostgreSqlParser.RULE_opt_sort_clause); + public functionAliasClause(): FunctionAliasClauseContext { + let localContext = new FunctionAliasClauseContext(this.context, this.state); + this.enterRule(localContext, 960, PostgreSqlParser.RULE_functionAliasClause); + let _la: number; try { - this.state = 8094; + this.state = 8208; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ORDER: + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8092; - this.sort_clause(); + this.state = 8195; + this.aliasClause(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.LOOP: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 sort_clause(): Sort_clauseContext { - let localContext = new Sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 996, PostgreSqlParser.RULE_sort_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8096; - this.match(PostgreSqlParser.ORDER); - this.state = 8097; - this.match(PostgreSqlParser.BY); - this.state = 8098; - this.sortby_list(); - } - } - 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 sortby_list(): Sortby_listContext { - let localContext = new Sortby_listContext(this.context, this.state); - this.enterRule(localContext, 998, PostgreSqlParser.RULE_sortby_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8100; - this.sortby(); - this.state = 8105; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { { - this.state = 8101; - this.match(PostgreSqlParser.COMMA); - this.state = 8102; - this.sortby(); - } - } - this.state = 8107; - 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 sortby(): SortbyContext { - let localContext = new SortbyContext(this.context, this.state); - this.enterRule(localContext, 1000, PostgreSqlParser.RULE_sortby); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8108; - this.a_expr(); - this.state = 8112; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - { - this.state = 8109; - this.match(PostgreSqlParser.USING); - this.state = 8110; - this.qual_all_op(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.ASC: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.DESC: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.LOOP: - { - this.state = 8111; - this.opt_asc_desc(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 8114; - this.opt_nulls_order(); - } - } - 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 select_limit(): Select_limitContext { - let localContext = new Select_limitContext(this.context, this.state); - this.enterRule(localContext, 1002, PostgreSqlParser.RULE_select_limit); - let _la: number; - try { - this.state = 8124; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LIMIT: - this.enterOuterAlt(localContext, 1); - { - this.state = 8116; - this.limit_clause(); - this.state = 8118; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 79) { - { - this.state = 8117; - this.offset_clause(); - } - } - - } - break; - case PostgreSqlParser.OFFSET: - this.enterOuterAlt(localContext, 2); - { - this.state = 8120; - this.offset_clause(); - this.state = 8122; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 61 || _la === 74) { - { - this.state = 8121; - this.limit_clause(); - } - } - - } - 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 opt_select_limit(): Opt_select_limitContext { - let localContext = new Opt_select_limitContext(this.context, this.state); - this.enterRule(localContext, 1004, PostgreSqlParser.RULE_opt_select_limit); - try { - this.state = 8128; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - this.enterOuterAlt(localContext, 1); - { - this.state = 8126; - this.select_limit(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 limit_clause(): Limit_clauseContext { - let localContext = new Limit_clauseContext(this.context, this.state); - this.enterRule(localContext, 1006, PostgreSqlParser.RULE_limit_clause); - let _la: number; - try { - this.state = 8153; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.LIMIT: - this.enterOuterAlt(localContext, 1); - { - this.state = 8130; - this.match(PostgreSqlParser.LIMIT); - this.state = 8131; - this.select_limit_value(); - this.state = 8134; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 8132; - this.match(PostgreSqlParser.COMMA); - this.state = 8133; - this.select_offset_value(); - } - } - - } - break; - case PostgreSqlParser.FETCH: - this.enterOuterAlt(localContext, 2); - { - this.state = 8136; - this.match(PostgreSqlParser.FETCH); - this.state = 8137; - this.first_or_next(); - this.state = 8151; + this.state = 8201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { - case 1: - { - this.state = 8138; - this.select_fetch_first_value(); - this.state = 8139; - this.row_or_rows(); - this.state = 8143; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ONLY: - { - this.state = 8140; - this.match(PostgreSqlParser.ONLY); - } - break; - case PostgreSqlParser.WITH: - { - this.state = 8141; - this.match(PostgreSqlParser.WITH); - this.state = 8142; - this.match(PostgreSqlParser.TIES); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case 2: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AS: { - this.state = 8145; - this.row_or_rows(); - this.state = 8149; + this.state = 8196; + this.match(PostgreSqlParser.AS); + this.state = 8198; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ONLY: - { - this.state = 8146; - this.match(PostgreSqlParser.ONLY); - } - break; - case PostgreSqlParser.WITH: + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { { - this.state = 8147; - this.match(PostgreSqlParser.WITH); - this.state = 8148; - this.match(PostgreSqlParser.TIES); + this.state = 8197; + this.columnId(); } - break; - default: - throw new antlr.NoViableAltException(this); } + } break; - } - } - 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 offset_clause(): Offset_clauseContext { - let localContext = new Offset_clauseContext(this.context, this.state); - this.enterRule(localContext, 1008, PostgreSqlParser.RULE_offset_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8155; - this.match(PostgreSqlParser.OFFSET); - this.state = 8160; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { - case 1: - { - this.state = 8156; - this.select_offset_value(); - } - break; - case 2: - { - this.state = 8157; - this.select_fetch_first_value(); - this.state = 8158; - this.row_or_rows(); - } - 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 select_limit_value(): Select_limit_valueContext { - let localContext = new Select_limit_valueContext(this.context, this.state); - this.enterRule(localContext, 1010, PostgreSqlParser.RULE_select_limit_value); - try { - this.state = 8164; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 8162; - this.a_expr(); - } - break; - case PostgreSqlParser.ALL: - this.enterOuterAlt(localContext, 2); - { - this.state = 8163; - this.match(PostgreSqlParser.ALL); - } - 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 select_offset_value(): Select_offset_valueContext { - let localContext = new Select_offset_valueContext(this.context, this.state); - this.enterRule(localContext, 1012, PostgreSqlParser.RULE_select_offset_value); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8166; - this.a_expr(); - } - } - 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 select_fetch_first_value(): Select_fetch_first_valueContext { - let localContext = new Select_fetch_first_valueContext(this.context, this.state); - this.enterRule(localContext, 1014, PostgreSqlParser.RULE_select_fetch_first_value); - try { - this.state = 8173; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 8168; - this.c_expr(); - } - break; - case PostgreSqlParser.PLUS: - this.enterOuterAlt(localContext, 2); - { - this.state = 8169; - this.match(PostgreSqlParser.PLUS); - this.state = 8170; - this.i_or_f_const(); - } - break; - case PostgreSqlParser.MINUS: - this.enterOuterAlt(localContext, 3); - { - this.state = 8171; - this.match(PostgreSqlParser.MINUS); - this.state = 8172; - this.i_or_f_const(); - } - 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 i_or_f_const(): I_or_f_constContext { - let localContext = new I_or_f_constContext(this.context, this.state); - this.enterRule(localContext, 1016, PostgreSqlParser.RULE_i_or_f_const); - try { - this.state = 8177; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.Integral: - this.enterOuterAlt(localContext, 1); - { - this.state = 8175; - this.iconst(); - } - break; - case PostgreSqlParser.Numeric: - this.enterOuterAlt(localContext, 2); - { - this.state = 8176; - this.fconst(); - } - 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 row_or_rows(): Row_or_rowsContext { - let localContext = new Row_or_rowsContext(this.context, this.state); - this.enterRule(localContext, 1018, PostgreSqlParser.RULE_row_or_rows); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8179; - _la = this.tokenStream.LA(1); - if(!(_la === 313 || _la === 407)) { - 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 first_or_next(): First_or_nextContext { - let localContext = new First_or_nextContext(this.context, this.state); - this.enterRule(localContext, 1020, PostgreSqlParser.RULE_first_or_next); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8181; - _la = this.tokenStream.LA(1); - if(!(_la === 207 || _la === 261)) { - 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 group_clause(): Group_clauseContext { - let localContext = new Group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1022, PostgreSqlParser.RULE_group_clause); - try { - this.state = 8187; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.GROUP_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 8183; - this.match(PostgreSqlParser.GROUP_P); - this.state = 8184; - this.match(PostgreSqlParser.BY); - this.state = 8185; - this.group_by_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.HAVING: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 group_by_list(): Group_by_listContext { - let localContext = new Group_by_listContext(this.context, this.state); - this.enterRule(localContext, 1024, PostgreSqlParser.RULE_group_by_list); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8189; - this.group_by_item(); - this.state = 8194; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 459, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8190; - this.match(PostgreSqlParser.COMMA); - this.state = 8191; - this.group_by_item(); - } - } - } - this.state = 8196; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 459, 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 group_by_item(): Group_by_itemContext { - let localContext = new Group_by_itemContext(this.context, this.state); - this.enterRule(localContext, 1026, PostgreSqlParser.RULE_group_by_item); - try { - this.state = 8202; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8197; - this.a_expr(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8198; - this.empty_grouping_set(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8199; - this.cube_clause(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8200; - this.rollup_clause(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 8201; - this.grouping_sets_clause(); - } - 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 empty_grouping_set(): Empty_grouping_setContext { - let localContext = new Empty_grouping_setContext(this.context, this.state); - this.enterRule(localContext, 1028, PostgreSqlParser.RULE_empty_grouping_set); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8204; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8205; - this.match(PostgreSqlParser.CLOSE_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 rollup_clause(): Rollup_clauseContext { - let localContext = new Rollup_clauseContext(this.context, this.state); - this.enterRule(localContext, 1030, PostgreSqlParser.RULE_rollup_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8207; - this.match(PostgreSqlParser.ROLLUP); - this.state = 8208; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8209; - this.expr_list(); - this.state = 8210; - this.match(PostgreSqlParser.CLOSE_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 cube_clause(): Cube_clauseContext { - let localContext = new Cube_clauseContext(this.context, this.state); - this.enterRule(localContext, 1032, PostgreSqlParser.RULE_cube_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8212; - this.match(PostgreSqlParser.CUBE); - this.state = 8213; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8214; - this.expr_list(); - this.state = 8215; - this.match(PostgreSqlParser.CLOSE_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 grouping_sets_clause(): Grouping_sets_clauseContext { - let localContext = new Grouping_sets_clauseContext(this.context, this.state); - this.enterRule(localContext, 1034, PostgreSqlParser.RULE_grouping_sets_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8217; - this.match(PostgreSqlParser.GROUPING); - this.state = 8218; - this.match(PostgreSqlParser.SETS); - this.state = 8219; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8220; - this.group_by_list(); - this.state = 8221; - this.match(PostgreSqlParser.CLOSE_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 having_clause(): Having_clauseContext { - let localContext = new Having_clauseContext(this.context, this.state); - this.enterRule(localContext, 1036, PostgreSqlParser.RULE_having_clause); - try { - this.state = 8226; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.HAVING: - this.enterOuterAlt(localContext, 1); - { - this.state = 8223; - this.match(PostgreSqlParser.HAVING); - this.state = 8224; - this.a_expr(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 for_locking_clause(): For_locking_clauseContext { - let localContext = new For_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1038, PostgreSqlParser.RULE_for_locking_clause); - try { - this.state = 8232; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8228; - this.for_locking_items(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8229; - this.match(PostgreSqlParser.FOR); - this.state = 8230; - this.match(PostgreSqlParser.READ); - this.state = 8231; - this.match(PostgreSqlParser.ONLY); - } - 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 opt_for_locking_clause(): Opt_for_locking_clauseContext { - let localContext = new Opt_for_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1040, PostgreSqlParser.RULE_opt_for_locking_clause); - try { - this.state = 8236; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - this.enterOuterAlt(localContext, 1); - { - this.state = 8234; - this.for_locking_clause(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 for_locking_items(): For_locking_itemsContext { - let localContext = new For_locking_itemsContext(this.context, this.state); - this.enterRule(localContext, 1042, PostgreSqlParser.RULE_for_locking_items); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8239; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 8238; - this.for_locking_item(); - } - } - this.state = 8241; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 62); - } - } - 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 for_locking_item(): For_locking_itemContext { - let localContext = new For_locking_itemContext(this.context, this.state); - this.enterRule(localContext, 1044, PostgreSqlParser.RULE_for_locking_item); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8243; - this.for_locking_strength(); - this.state = 8244; - this.locked_rels_list(); - this.state = 8245; - this.opt_nowait_or_skip(); - } - } - 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 for_locking_strength(): For_locking_strengthContext { - let localContext = new For_locking_strengthContext(this.context, this.state); - this.enterRule(localContext, 1046, PostgreSqlParser.RULE_for_locking_strength); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8247; - this.match(PostgreSqlParser.FOR); - this.state = 8257; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NO: - case PostgreSqlParser.UPDATE: - { - this.state = 8250; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 262) { - { - this.state = 8248; - this.match(PostgreSqlParser.NO); - this.state = 8249; - this.match(PostgreSqlParser.KEY); - } - } - - this.state = 8252; - this.match(PostgreSqlParser.UPDATE); - } - break; - case PostgreSqlParser.KEY: - case PostgreSqlParser.SHARE: - { - this.state = 8254; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 236) { - { - this.state = 8253; - this.match(PostgreSqlParser.KEY); - } - } - - this.state = 8256; - this.match(PostgreSqlParser.SHARE); - } - 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 locked_rels_list(): Locked_rels_listContext { - let localContext = new Locked_rels_listContext(this.context, this.state); - this.enterRule(localContext, 1048, PostgreSqlParser.RULE_locked_rels_list); - try { - this.state = 8262; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OF: - this.enterOuterAlt(localContext, 1); - { - this.state = 8259; - this.match(PostgreSqlParser.OF); - this.state = 8260; - this.qualified_name_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.WITH: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 values_clause(): Values_clauseContext { - let localContext = new Values_clauseContext(this.context, this.state); - this.enterRule(localContext, 1050, PostgreSqlParser.RULE_values_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8264; - this.match(PostgreSqlParser.VALUES); - this.state = 8265; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8266; - this.expr_list(); - this.state = 8267; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 8275; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8268; - this.match(PostgreSqlParser.COMMA); - this.state = 8269; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8270; - this.expr_list(); - this.state = 8271; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - } - this.state = 8277; - 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 from_clause(): From_clauseContext { - let localContext = new From_clauseContext(this.context, this.state); - this.enterRule(localContext, 1052, PostgreSqlParser.RULE_from_clause); - try { - this.state = 8281; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FROM: - this.enterOuterAlt(localContext, 1); - { - this.state = 8278; - this.match(PostgreSqlParser.FROM); - this.state = 8279; - this.from_list(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.GROUP_P: - case PostgreSqlParser.HAVING: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 from_list(): From_listContext { - let localContext = new From_listContext(this.context, this.state); - this.enterRule(localContext, 1054, PostgreSqlParser.RULE_from_list); - try { - let alternative: number; - this.state = 8292; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8283; - this.non_ansi_join(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8284; - this.table_ref(); - this.state = 8289; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8285; - this.match(PostgreSqlParser.COMMA); - this.state = 8286; - this.table_ref(); - } - } - } - this.state = 8291; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, 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 non_ansi_join(): Non_ansi_joinContext { - let localContext = new Non_ansi_joinContext(this.context, this.state); - this.enterRule(localContext, 1056, PostgreSqlParser.RULE_non_ansi_join); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8294; - this.table_ref(); - this.state = 8297; - this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 8295; - this.match(PostgreSqlParser.COMMA); - this.state = 8296; - this.table_ref(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 8299; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, 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 table_ref(): Table_refContext { - let localContext = new Table_refContext(this.context, this.state); - this.enterRule(localContext, 1058, PostgreSqlParser.RULE_table_ref); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8350; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { - case 1: - { - this.state = 8301; - this.relation_expr(); - this.state = 8302; - this.opt_alias_clause(); - this.state = 8304; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 472) { - { - this.state = 8303; - this.tablesample_clause(); - } - } - - } - break; - case 2: - { - this.state = 8306; - this.func_table(); - this.state = 8307; - this.func_alias_clause(); - } - break; - case 3: - { - this.state = 8309; - this.xmltable(); - this.state = 8310; - this.opt_alias_clause(); - } - break; - case 4: - { - this.state = 8312; - this.select_with_parens(); - this.state = 8313; - this.opt_alias_clause(); - } - break; - case 5: - { - this.state = 8315; - this.match(PostgreSqlParser.LATERAL_P); - this.state = 8325; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { - case 1: - { - this.state = 8316; - this.xmltable(); - this.state = 8317; - this.opt_alias_clause(); - } - break; - case 2: - { - this.state = 8319; - this.func_table(); - this.state = 8320; - this.func_alias_clause(); - } - break; - case 3: - { - this.state = 8322; - this.select_with_parens(); - this.state = 8323; - this.opt_alias_clause(); - } - break; - } - } - break; - case 6: - { - this.state = 8327; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8328; - this.table_ref(); - this.state = 8345; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CROSS: - { - this.state = 8329; - this.match(PostgreSqlParser.CROSS); - this.state = 8330; - this.match(PostgreSqlParser.JOIN); - this.state = 8331; - this.table_ref(); - } - break; - case PostgreSqlParser.NATURAL: - { - this.state = 8332; - this.match(PostgreSqlParser.NATURAL); - this.state = 8334; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 8333; - this.join_type(); - } - } - - this.state = 8336; - this.match(PostgreSqlParser.JOIN); - this.state = 8337; - this.table_ref(); - } - break; - case PostgreSqlParser.FULL: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.RIGHT: - { - this.state = 8339; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 8338; - this.join_type(); - } - } - - this.state = 8341; - this.match(PostgreSqlParser.JOIN); - this.state = 8342; - this.table_ref(); - this.state = 8343; - this.join_qual(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - break; - default: - break; - } - this.state = 8347; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 8348; - this.opt_alias_clause(); - } - break; - } - this.state = 8370; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 483, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - this.state = 8368; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CROSS: - { - this.state = 8352; - this.match(PostgreSqlParser.CROSS); - this.state = 8353; - this.match(PostgreSqlParser.JOIN); - this.state = 8354; - this.table_ref(); - } - break; - case PostgreSqlParser.NATURAL: - { - this.state = 8355; - this.match(PostgreSqlParser.NATURAL); - this.state = 8357; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 8356; - this.join_type(); - } - } - - this.state = 8359; - this.match(PostgreSqlParser.JOIN); - this.state = 8360; - this.table_ref(); - } - break; - case PostgreSqlParser.FULL: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.RIGHT: - { - this.state = 8362; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 8361; - this.join_type(); - } - } - - this.state = 8364; - this.match(PostgreSqlParser.JOIN); - this.state = 8365; - this.table_ref(); - this.state = 8366; - this.join_qual(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - } - this.state = 8372; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 483, 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 alias_clause(): Alias_clauseContext { - let localContext = new Alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1060, PostgreSqlParser.RULE_alias_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8374; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 8373; - this.match(PostgreSqlParser.AS); - } - } - - this.state = 8376; - this.colid(); - this.state = 8381; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 8377; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8378; - this.name_list(); - this.state = 8379; - this.match(PostgreSqlParser.CLOSE_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 opt_alias_clause(): Opt_alias_clauseContext { - let localContext = new Opt_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1062, PostgreSqlParser.RULE_opt_alias_clause); - try { - this.state = 8385; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8383; - this.table_alias_clause(); - } - 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 table_alias_clause(): Table_alias_clauseContext { - let localContext = new Table_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1064, PostgreSqlParser.RULE_table_alias_clause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8388; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 8387; - this.match(PostgreSqlParser.AS); - } - } - - this.state = 8390; - this.table_alias(); - this.state = 8395; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 8391; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8392; - this.name_list(); - this.state = 8393; - this.match(PostgreSqlParser.CLOSE_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 func_alias_clause(): Func_alias_clauseContext { - let localContext = new Func_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1066, PostgreSqlParser.RULE_func_alias_clause); - let _la: number; - try { - this.state = 8410; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8397; - this.alias_clause(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8403; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: - { - this.state = 8398; - this.match(PostgreSqlParser.AS); - this.state = 8400; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2298478593) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967269) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 4294965247) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 4294967295) !== 0) || ((((_la - 572)) & ~0x1F) === 0 && ((1 << (_la - 572)) & 4294967295) !== 0) || ((((_la - 604)) & ~0x1F) === 0 && ((1 << (_la - 604)) & 4294967295) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { - { - this.state = 8399; - this.colid(); - } - } - - } - break; - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - { - this.state = 8402; - this.colid(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 8405; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8406; - this.tablefuncelementlist(); - this.state = 8407; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - // 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 join_type(): Join_typeContext { - let localContext = new Join_typeContext(this.context, this.state); - this.enterRule(localContext, 1068, PostgreSqlParser.RULE_join_type); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8412; - _la = this.tokenStream.LA(1); - if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8414; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 123) { - { - this.state = 8413; - this.match(PostgreSqlParser.OUTER_P); - } - } - - } - } - 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 join_qual(): Join_qualContext { - let localContext = new Join_qualContext(this.context, this.state); - this.enterRule(localContext, 1070, PostgreSqlParser.RULE_join_qual); - try { - this.state = 8423; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.USING: - this.enterOuterAlt(localContext, 1); - { - this.state = 8416; - this.match(PostgreSqlParser.USING); - this.state = 8417; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8418; - this.name_list(); - this.state = 8419; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.ON: - this.enterOuterAlt(localContext, 2); - { - this.state = 8421; - this.match(PostgreSqlParser.ON); - this.state = 8422; - this.a_expr(); - } - 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 relation_expr(): Relation_exprContext { - let localContext = new Relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1072, PostgreSqlParser.RULE_relation_expr); - let _la: number; - try { - this.state = 8437; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); - { - this.state = 8425; - this.qualified_name(); - this.state = 8427; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 9) { - { - this.state = 8426; - this.match(PostgreSqlParser.STAR); - } - } - - } - break; - case PostgreSqlParser.ONLY: - this.enterOuterAlt(localContext, 2); - { - this.state = 8429; - this.match(PostgreSqlParser.ONLY); - this.state = 8435; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - { - this.state = 8430; - this.qualified_name(); - } - break; - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 8431; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8432; - this.qualified_name(); - this.state = 8433; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - 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 relation_expr_list(): Relation_expr_listContext { - let localContext = new Relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1074, PostgreSqlParser.RULE_relation_expr_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8439; - this.relation_expr(); - this.state = 8444; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8440; - this.match(PostgreSqlParser.COMMA); - this.state = 8441; - this.relation_expr(); - } - } - this.state = 8446; - 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 relation_expr_opt_alias(): Relation_expr_opt_aliasContext { - let localContext = new Relation_expr_opt_aliasContext(this.context, this.state); - this.enterRule(localContext, 1076, PostgreSqlParser.RULE_relation_expr_opt_alias); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8447; - this.relation_expr(); - this.state = 8452; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { - case 1: - { - this.state = 8449; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 8448; - this.match(PostgreSqlParser.AS); - } - } - - this.state = 8451; - this.colid(); - } - 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 tablesample_clause(): Tablesample_clauseContext { - let localContext = new Tablesample_clauseContext(this.context, this.state); - this.enterRule(localContext, 1078, PostgreSqlParser.RULE_tablesample_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8454; - this.match(PostgreSqlParser.TABLESAMPLE); - this.state = 8455; - this.func_name(); - this.state = 8456; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8457; - this.expr_list(); - this.state = 8458; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 8459; - this.opt_repeatable_clause(); - } - } - 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 opt_repeatable_clause(): Opt_repeatable_clauseContext { - let localContext = new Opt_repeatable_clauseContext(this.context, this.state); - this.enterRule(localContext, 1080, PostgreSqlParser.RULE_opt_repeatable_clause); - try { - this.state = 8467; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.REPEATABLE: - this.enterOuterAlt(localContext, 1); - { - this.state = 8461; - this.match(PostgreSqlParser.REPEATABLE); - this.state = 8462; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8463; - this.a_expr(); - this.state = 8464; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.GROUP_P: - case PostgreSqlParser.HAVING: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.FULL: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 func_table(): Func_tableContext { - let localContext = new Func_tableContext(this.context, this.state); - this.enterRule(localContext, 1082, PostgreSqlParser.RULE_func_table); - try { - this.state = 8479; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8469; - this.func_expr_windowless(); - this.state = 8470; - this.opt_ordinality(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8472; - this.match(PostgreSqlParser.ROWS); - this.state = 8473; - this.match(PostgreSqlParser.FROM); - this.state = 8474; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8475; - this.rowsfrom_list(); - this.state = 8476; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 8477; - this.opt_ordinality(); - } - 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 rowsfrom_item(): Rowsfrom_itemContext { - let localContext = new Rowsfrom_itemContext(this.context, this.state); - this.enterRule(localContext, 1084, PostgreSqlParser.RULE_rowsfrom_item); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8481; - this.func_expr_windowless(); - this.state = 8482; - this.opt_col_def_list(); - } - } - 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 rowsfrom_list(): Rowsfrom_listContext { - let localContext = new Rowsfrom_listContext(this.context, this.state); - this.enterRule(localContext, 1086, PostgreSqlParser.RULE_rowsfrom_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8484; - this.rowsfrom_item(); - this.state = 8489; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8485; - this.match(PostgreSqlParser.COMMA); - this.state = 8486; - this.rowsfrom_item(); - } - } - this.state = 8491; - 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 opt_col_def_list(): Opt_col_def_listContext { - let localContext = new Opt_col_def_listContext(this.context, this.state); - this.enterRule(localContext, 1088, PostgreSqlParser.RULE_opt_col_def_list); - try { - this.state = 8498; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AS: - this.enterOuterAlt(localContext, 1); - { - this.state = 8492; - this.match(PostgreSqlParser.AS); - this.state = 8493; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8494; - this.tablefuncelementlist(); - this.state = 8495; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 opt_ordinality(): Opt_ordinalityContext { - let localContext = new Opt_ordinalityContext(this.context, this.state); - this.enterRule(localContext, 1090, PostgreSqlParser.RULE_opt_ordinality); - try { - this.state = 8503; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8500; - this.match(PostgreSqlParser.WITH); - this.state = 8501; - this.match(PostgreSqlParser.ORDINALITY); - } - 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 where_clause(): Where_clauseContext { - let localContext = new Where_clauseContext(this.context, this.state); - this.enterRule(localContext, 1092, PostgreSqlParser.RULE_where_clause); - try { - this.state = 8508; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WHERE: - this.enterOuterAlt(localContext, 1); - { - this.state = 8505; - this.match(PostgreSqlParser.WHERE); - this.state = 8506; - this.a_expr(); - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.DO: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.GROUP_P: - case PostgreSqlParser.HAVING: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 where_or_current_clause(): Where_or_current_clauseContext { - let localContext = new Where_or_current_clauseContext(this.context, this.state); - this.enterRule(localContext, 1094, PostgreSqlParser.RULE_where_or_current_clause); - try { - this.state = 8518; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WHERE: - this.enterOuterAlt(localContext, 1); - { - this.state = 8510; - this.match(PostgreSqlParser.WHERE); - this.state = 8515; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { - case 1: - { - this.state = 8511; - this.match(PostgreSqlParser.CURRENT_P); - this.state = 8512; - this.match(PostgreSqlParser.OF); - this.state = 8513; - this.cursor_name(); - } - break; - case 2: - { - this.state = 8514; - this.a_expr(); - } - break; - } - } - break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.INTO: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.LOOP: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 opttablefuncelementlist(): OpttablefuncelementlistContext { - let localContext = new OpttablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1096, PostgreSqlParser.RULE_opttablefuncelementlist); - try { - this.state = 8522; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - this.enterOuterAlt(localContext, 1); - { - this.state = 8520; - this.tablefuncelementlist(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 tablefuncelementlist(): TablefuncelementlistContext { - let localContext = new TablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1098, PostgreSqlParser.RULE_tablefuncelementlist); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8524; - this.tablefuncelement(); - this.state = 8529; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8525; - this.match(PostgreSqlParser.COMMA); - this.state = 8526; - this.tablefuncelement(); - } - } - this.state = 8531; - 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 tablefuncelement(): TablefuncelementContext { - let localContext = new TablefuncelementContext(this.context, this.state); - this.enterRule(localContext, 1100, PostgreSqlParser.RULE_tablefuncelement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8532; - this.colid(); - this.state = 8533; - this.typename(); - this.state = 8534; - this.opt_collate_clause(); - } - } - 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 xmltable(): XmltableContext { - let localContext = new XmltableContext(this.context, this.state); - this.enterRule(localContext, 1102, PostgreSqlParser.RULE_xmltable); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8536; - this.match(PostgreSqlParser.XMLTABLE); - this.state = 8537; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8553; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { - case 1: - { - this.state = 8538; - this.c_expr(); - this.state = 8539; - this.xmlexists_argument(); - this.state = 8540; - this.match(PostgreSqlParser.COLUMNS); - this.state = 8541; - this.xmltable_column_list(); - } - break; - case 2: - { - this.state = 8543; - this.match(PostgreSqlParser.XMLNAMESPACES); - this.state = 8544; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8545; - this.xml_namespace_list(); - this.state = 8546; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 8547; - this.match(PostgreSqlParser.COMMA); - this.state = 8548; - this.c_expr(); - this.state = 8549; - this.xmlexists_argument(); - this.state = 8550; - this.match(PostgreSqlParser.COLUMNS); - this.state = 8551; - this.xmltable_column_list(); - } - break; - } - this.state = 8555; - this.match(PostgreSqlParser.CLOSE_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 xmltable_column_list(): Xmltable_column_listContext { - let localContext = new Xmltable_column_listContext(this.context, this.state); - this.enterRule(localContext, 1104, PostgreSqlParser.RULE_xmltable_column_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8557; - this.xmltable_column_el(); - this.state = 8562; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8558; - this.match(PostgreSqlParser.COMMA); - this.state = 8559; - this.xmltable_column_el(); - } - } - this.state = 8564; - 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 xmltable_column_el(): Xmltable_column_elContext { - let localContext = new Xmltable_column_elContext(this.context, this.state); - this.enterRule(localContext, 1106, PostgreSqlParser.RULE_xmltable_column_el); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8565; - this.colid(); - this.state = 8572; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - { - this.state = 8566; - this.typename(); - this.state = 8568; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451841) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || _la === 353 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { - { - this.state = 8567; - this.xmltable_column_option_list(); - } - } - - } - break; - case PostgreSqlParser.FOR: - { - this.state = 8570; - this.match(PostgreSqlParser.FOR); - this.state = 8571; - this.match(PostgreSqlParser.ORDINALITY); - } - 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 xmltable_column_option_list(): Xmltable_column_option_listContext { - let localContext = new Xmltable_column_option_listContext(this.context, this.state); - this.enterRule(localContext, 1108, PostgreSqlParser.RULE_xmltable_column_option_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8575; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 8574; - this.xmltable_column_option_el(); - } - } - this.state = 8577; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451841) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || _la === 353 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)); - } - } - 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 xmltable_column_option_el(): Xmltable_column_option_elContext { - let localContext = new Xmltable_column_option_elContext(this.context, this.state); - this.enterRule(localContext, 1110, PostgreSqlParser.RULE_xmltable_column_option_el); - try { - this.state = 8587; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 515, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8579; - this.match(PostgreSqlParser.DEFAULT); - this.state = 8580; - this.a_expr(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8581; - this.identifier(); - this.state = 8582; - this.a_expr(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8584; - this.match(PostgreSqlParser.NOT); - this.state = 8585; - this.match(PostgreSqlParser.NULL_P); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8586; - this.match(PostgreSqlParser.NULL_P); - } - 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 xml_namespace_list(): Xml_namespace_listContext { - let localContext = new Xml_namespace_listContext(this.context, this.state); - this.enterRule(localContext, 1112, PostgreSqlParser.RULE_xml_namespace_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8589; - this.xml_namespace_el(); - this.state = 8594; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 8590; - this.match(PostgreSqlParser.COMMA); - this.state = 8591; - this.xml_namespace_el(); - } - } - this.state = 8596; - 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 xml_namespace_el(): Xml_namespace_elContext { - let localContext = new Xml_namespace_elContext(this.context, this.state); - this.enterRule(localContext, 1114, PostgreSqlParser.RULE_xml_namespace_el); - try { - this.state = 8603; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 517, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8597; - this.b_expr(0); - this.state = 8598; - this.match(PostgreSqlParser.AS); - this.state = 8599; - this.collabel(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8601; - this.match(PostgreSqlParser.DEFAULT); - this.state = 8602; - this.b_expr(0); - } - 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 typename(): TypenameContext { - let localContext = new TypenameContext(this.context, this.state); - this.enterRule(localContext, 1116, PostgreSqlParser.RULE_typename); - let _la: number; - try { - this.state = 8623; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 521, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8606; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 408) { - { - this.state = 8605; - this.match(PostgreSqlParser.SETOF); - } - } - - this.state = 8608; - this.simpletypename(); - this.state = 8617; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 520, this.context) ) { - case 1: - { - this.state = 8609; - this.opt_array_bounds(); - } - break; - case 2: - { - this.state = 8610; - this.match(PostgreSqlParser.ARRAY); - this.state = 8615; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { - case 1: - { - this.state = 8611; - this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 8612; - this.iconst(); - this.state = 8613; - this.match(PostgreSqlParser.CLOSE_BRACKET); - } - break; - } - } - break; - } - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8619; - this.qualified_name(); - this.state = 8620; - this.match(PostgreSqlParser.PERCENT); - this.state = 8621; - _la = this.tokenStream.LA(1); - if(!(_la === 353 || _la === 477)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - 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 opt_array_bounds(): Opt_array_boundsContext { - let localContext = new Opt_array_boundsContext(this.context, this.state); - this.enterRule(localContext, 1118, PostgreSqlParser.RULE_opt_array_bounds); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8632; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 523, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8625; - this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 8627; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 658) { - { - this.state = 8626; - this.iconst(); - } - } - - this.state = 8629; - this.match(PostgreSqlParser.CLOSE_BRACKET); - } - } - } - this.state = 8634; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 523, 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 simpletypename(): SimpletypenameContext { - let localContext = new SimpletypenameContext(this.context, this.state); - this.enterRule(localContext, 1120, PostgreSqlParser.RULE_simpletypename); - try { - this.state = 8648; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8635; - this.generictype(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8636; - this.numeric(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8637; - this.bit(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8638; - this.character(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 8639; - this.constdatetime(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 8640; - this.constinterval(); - this.state = 8646; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { - case 1: - { - this.state = 8641; - this.opt_interval(); - } - break; - case 2: - { - this.state = 8642; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8643; - this.iconst(); - this.state = 8644; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - 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 consttypename(): ConsttypenameContext { - let localContext = new ConsttypenameContext(this.context, this.state); - this.enterRule(localContext, 1122, PostgreSqlParser.RULE_consttypename); - try { - this.state = 8654; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.REAL: - case PostgreSqlParser.SMALLINT: - this.enterOuterAlt(localContext, 1); - { - this.state = 8650; - this.numeric(); - } - break; - case PostgreSqlParser.BIT: - this.enterOuterAlt(localContext, 2); - { - this.state = 8651; - this.constbit(); - } - break; - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.VARCHAR: - this.enterOuterAlt(localContext, 3); - { - this.state = 8652; - this.constcharacter(); - } - break; - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - this.enterOuterAlt(localContext, 4); - { - this.state = 8653; - this.constdatetime(); - } - 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 generictype(): GenerictypeContext { - let localContext = new GenerictypeContext(this.context, this.state); - this.enterRule(localContext, 1124, PostgreSqlParser.RULE_generictype); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8660; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.LOG: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - { - this.state = 8656; - this.builtin_function_name(); - } - break; - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - { - this.state = 8657; - this.type_function_name(); - } - break; - case PostgreSqlParser.LEFT: - { - this.state = 8658; - this.match(PostgreSqlParser.LEFT); - } - break; - case PostgreSqlParser.RIGHT: - { - this.state = 8659; - this.match(PostgreSqlParser.RIGHT); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 8663; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { - case 1: - { - this.state = 8662; - this.attrs(); - } - break; - } - this.state = 8665; - this.opt_type_modifiers(); - } - } - 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 opt_type_modifiers(): Opt_type_modifiersContext { - let localContext = new Opt_type_modifiersContext(this.context, this.state); - this.enterRule(localContext, 1126, PostgreSqlParser.RULE_opt_type_modifiers); - try { - this.state = 8672; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8667; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8668; - this.expr_list(); - this.state = 8669; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 numeric(): NumericContext { - let localContext = new NumericContext(this.context, this.state); - this.enterRule(localContext, 1128, PostgreSqlParser.RULE_numeric); - try { - this.state = 8690; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.INT_P: - this.enterOuterAlt(localContext, 1); - { - this.state = 8674; - this.match(PostgreSqlParser.INT_P); - } - break; - case PostgreSqlParser.INTEGER: - this.enterOuterAlt(localContext, 2); - { - this.state = 8675; - this.match(PostgreSqlParser.INTEGER); - } - break; - case PostgreSqlParser.SMALLINT: - this.enterOuterAlt(localContext, 3); - { - this.state = 8676; - this.match(PostgreSqlParser.SMALLINT); - } - break; - case PostgreSqlParser.BIGINT: - this.enterOuterAlt(localContext, 4); - { - this.state = 8677; - this.match(PostgreSqlParser.BIGINT); - } - break; - case PostgreSqlParser.REAL: - this.enterOuterAlt(localContext, 5); - { - this.state = 8678; - this.match(PostgreSqlParser.REAL); - } - break; - case PostgreSqlParser.FLOAT_P: - this.enterOuterAlt(localContext, 6); - { - this.state = 8679; - this.match(PostgreSqlParser.FLOAT_P); - this.state = 8680; - this.opt_float(); - } - break; - case PostgreSqlParser.DOUBLE_P: - this.enterOuterAlt(localContext, 7); - { - this.state = 8681; - this.match(PostgreSqlParser.DOUBLE_P); - this.state = 8682; - this.match(PostgreSqlParser.PRECISION); - } - break; - case PostgreSqlParser.DECIMAL_P: - this.enterOuterAlt(localContext, 8); - { - this.state = 8683; - this.match(PostgreSqlParser.DECIMAL_P); - this.state = 8684; - this.opt_type_modifiers(); - } - break; - case PostgreSqlParser.DEC: - this.enterOuterAlt(localContext, 9); - { - this.state = 8685; - this.match(PostgreSqlParser.DEC); - this.state = 8686; - this.opt_type_modifiers(); - } - break; - case PostgreSqlParser.NUMERIC: - this.enterOuterAlt(localContext, 10); - { - this.state = 8687; - this.match(PostgreSqlParser.NUMERIC); - this.state = 8688; - this.opt_type_modifiers(); - } - break; - case PostgreSqlParser.BOOLEAN_P: - this.enterOuterAlt(localContext, 11); - { - this.state = 8689; - this.match(PostgreSqlParser.BOOLEAN_P); - } - 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 opt_float(): Opt_floatContext { - let localContext = new Opt_floatContext(this.context, this.state); - this.enterRule(localContext, 1130, PostgreSqlParser.RULE_opt_float); - try { - this.state = 8697; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8692; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8693; - this.iconst(); - this.state = 8694; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 bit(): BitContext { - let localContext = new BitContext(this.context, this.state); - this.enterRule(localContext, 1132, PostgreSqlParser.RULE_bit); - try { - this.state = 8701; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8699; - this.bitwithlength(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8700; - this.bitwithoutlength(); - } - 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 constbit(): ConstbitContext { - let localContext = new ConstbitContext(this.context, this.state); - this.enterRule(localContext, 1134, PostgreSqlParser.RULE_constbit); - try { - this.state = 8705; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8703; - this.bitwithlength(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8704; - this.bitwithoutlength(); - } - 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 bitwithlength(): BitwithlengthContext { - let localContext = new BitwithlengthContext(this.context, this.state); - this.enterRule(localContext, 1136, PostgreSqlParser.RULE_bitwithlength); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8707; - this.match(PostgreSqlParser.BIT); - this.state = 8708; - this.opt_varying(); - this.state = 8709; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8710; - this.expr_list(); - this.state = 8711; - this.match(PostgreSqlParser.CLOSE_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 bitwithoutlength(): BitwithoutlengthContext { - let localContext = new BitwithoutlengthContext(this.context, this.state); - this.enterRule(localContext, 1138, PostgreSqlParser.RULE_bitwithoutlength); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8713; - this.match(PostgreSqlParser.BIT); - this.state = 8714; - this.opt_varying(); - } - } - 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 character(): CharacterContext { - let localContext = new CharacterContext(this.context, this.state); - this.enterRule(localContext, 1140, PostgreSqlParser.RULE_character); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8716; - this.character_c(); - this.state = 8721; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { - case 1: - { - this.state = 8717; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8718; - this.iconst(); - this.state = 8719; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 constcharacter(): ConstcharacterContext { - let localContext = new ConstcharacterContext(this.context, this.state); - this.enterRule(localContext, 1142, PostgreSqlParser.RULE_constcharacter); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8723; - this.character_c(); - this.state = 8728; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 8724; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8725; - this.iconst(); - this.state = 8726; - this.match(PostgreSqlParser.CLOSE_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 character_c(): Character_cContext { - let localContext = new Character_cContext(this.context, this.state); - this.enterRule(localContext, 1144, PostgreSqlParser.RULE_character_c); - let _la: number; - try { - this.state = 8736; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.NCHAR: - this.enterOuterAlt(localContext, 1); - { - this.state = 8730; - _la = this.tokenStream.LA(1); - if(!(((((_la - 384)) & ~0x1F) === 0 && ((1 << (_la - 384)) & 32771) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8731; - this.opt_varying(); - } - break; - case PostgreSqlParser.VARCHAR: - this.enterOuterAlt(localContext, 2); - { - this.state = 8732; - this.match(PostgreSqlParser.VARCHAR); - } - break; - case PostgreSqlParser.NATIONAL: - this.enterOuterAlt(localContext, 3); - { - this.state = 8733; - this.match(PostgreSqlParser.NATIONAL); - this.state = 8734; - _la = this.tokenStream.LA(1); - if(!(_la === 384 || _la === 385)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8735; - this.opt_varying(); - } - 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 opt_varying(): Opt_varyingContext { - let localContext = new Opt_varyingContext(this.context, this.state); - this.enterRule(localContext, 1146, PostgreSqlParser.RULE_opt_varying); - try { - this.state = 8740; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8738; - this.match(PostgreSqlParser.VARYING); - } - 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 constdatetime(): ConstdatetimeContext { - let localContext = new ConstdatetimeContext(this.context, this.state); - this.enterRule(localContext, 1148, PostgreSqlParser.RULE_constdatetime); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8742; - _la = this.tokenStream.LA(1); - if(!(_la === 411 || _la === 412)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8747; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { - case 1: - { - this.state = 8743; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8744; - this.iconst(); - this.state = 8745; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - this.state = 8749; - this.opt_timezone(); - } - } - 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 constinterval(): ConstintervalContext { - let localContext = new ConstintervalContext(this.context, this.state); - this.enterRule(localContext, 1150, PostgreSqlParser.RULE_constinterval); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8751; - this.match(PostgreSqlParser.INTERVAL); - } - } - 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 opt_timezone(): Opt_timezoneContext { - let localContext = new Opt_timezoneContext(this.context, this.state); - this.enterRule(localContext, 1152, PostgreSqlParser.RULE_opt_timezone); - try { - this.state = 8760; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8753; - this.match(PostgreSqlParser.WITH); - this.state = 8754; - this.match(PostgreSqlParser.TIME); - this.state = 8755; - this.match(PostgreSqlParser.ZONE); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8756; - this.match(PostgreSqlParser.WITHOUT); - this.state = 8757; - this.match(PostgreSqlParser.TIME); - this.state = 8758; - this.match(PostgreSqlParser.ZONE); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - // 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 opt_interval(): Opt_intervalContext { - let localContext = new Opt_intervalContext(this.context, this.state); - this.enterRule(localContext, 1154, PostgreSqlParser.RULE_opt_interval); - try { - this.state = 8788; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8762; - this.match(PostgreSqlParser.YEAR_P); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 8763; - this.match(PostgreSqlParser.MONTH_P); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8764; - this.match(PostgreSqlParser.DAY_P); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8765; - this.match(PostgreSqlParser.HOUR_P); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 8766; - this.match(PostgreSqlParser.MINUTE_P); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 8767; - this.interval_second(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 8768; - this.match(PostgreSqlParser.YEAR_P); - this.state = 8769; - this.match(PostgreSqlParser.TO); - this.state = 8770; - this.match(PostgreSqlParser.MONTH_P); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 8771; - this.match(PostgreSqlParser.DAY_P); - this.state = 8772; - this.match(PostgreSqlParser.TO); - this.state = 8776; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.HOUR_P: - { - this.state = 8773; - this.match(PostgreSqlParser.HOUR_P); - } - break; - case PostgreSqlParser.MINUTE_P: - { - this.state = 8774; - this.match(PostgreSqlParser.MINUTE_P); - } - break; - case PostgreSqlParser.SECOND_P: - { - this.state = 8775; - this.interval_second(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 8778; - this.match(PostgreSqlParser.HOUR_P); - this.state = 8779; - this.match(PostgreSqlParser.TO); - this.state = 8782; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.MINUTE_P: - { - this.state = 8780; - this.match(PostgreSqlParser.MINUTE_P); - } - break; - case PostgreSqlParser.SECOND_P: - { - this.state = 8781; - this.interval_second(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 8784; - this.match(PostgreSqlParser.MINUTE_P); - this.state = 8785; - this.match(PostgreSqlParser.TO); - this.state = 8786; - this.interval_second(); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - // 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 interval_second(): Interval_secondContext { - let localContext = new Interval_secondContext(this.context, this.state); - this.enterRule(localContext, 1156, PostgreSqlParser.RULE_interval_second); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8790; - this.match(PostgreSqlParser.SECOND_P); - this.state = 8795; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 543, this.context) ) { - case 1: - { - this.state = 8791; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8792; - this.iconst(); - this.state = 8793; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 opt_escape(): Opt_escapeContext { - let localContext = new Opt_escapeContext(this.context, this.state); - this.enterRule(localContext, 1158, PostgreSqlParser.RULE_opt_escape); - try { - this.state = 8800; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 8797; - this.match(PostgreSqlParser.ESCAPE); - this.state = 8798; - this.a_expr(); - } - 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 a_expr(): A_exprContext { - let localContext = new A_exprContext(this.context, this.state); - this.enterRule(localContext, 1160, PostgreSqlParser.RULE_a_expr); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8802; - this.a_expr_qual(); - } - } - 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 a_expr_qual(): A_expr_qualContext { - let localContext = new A_expr_qualContext(this.context, this.state); - this.enterRule(localContext, 1162, PostgreSqlParser.RULE_a_expr_qual); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8804; - this.a_expr_lessless(); - this.state = 8806; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { - case 1: - { - this.state = 8805; - this.qual_op(); - } - 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 a_expr_lessless(): A_expr_lesslessContext { - let localContext = new A_expr_lesslessContext(this.context, this.state); - this.enterRule(localContext, 1164, PostgreSqlParser.RULE_a_expr_lessless); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8808; - this.a_expr_or(); - this.state = 8813; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8809; - _la = this.tokenStream.LA(1); - if(!(_la === 18 || _la === 19)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8810; - this.a_expr_or(); - } - } - } - this.state = 8815; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, 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 a_expr_or(): A_expr_orContext { - let localContext = new A_expr_orContext(this.context, this.state); - this.enterRule(localContext, 1166, PostgreSqlParser.RULE_a_expr_or); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8816; - this.a_expr_and(); - this.state = 8821; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 547, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8817; - this.match(PostgreSqlParser.OR); - this.state = 8818; - this.a_expr_and(); - } - } - } - this.state = 8823; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 547, 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 a_expr_and(): A_expr_andContext { - let localContext = new A_expr_andContext(this.context, this.state); - this.enterRule(localContext, 1168, PostgreSqlParser.RULE_a_expr_and); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8824; - this.a_expr_between(); - this.state = 8829; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 548, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8825; - this.match(PostgreSqlParser.AND); - this.state = 8826; - this.a_expr_between(); - } - } - } - this.state = 8831; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 548, 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 a_expr_between(): A_expr_betweenContext { - let localContext = new A_expr_betweenContext(this.context, this.state); - this.enterRule(localContext, 1170, PostgreSqlParser.RULE_a_expr_between); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8832; - this.a_expr_in(); - this.state = 8844; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { - case 1: - { - this.state = 8834; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 8833; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 8836; - this.match(PostgreSqlParser.BETWEEN); - this.state = 8838; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 91) { - { - this.state = 8837; - this.match(PostgreSqlParser.SYMMETRIC); - } - } - - this.state = 8840; - this.a_expr_in(); - this.state = 8841; - this.match(PostgreSqlParser.AND); - this.state = 8842; - this.a_expr_in(); - } - 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 a_expr_in(): A_expr_inContext { - let localContext = new A_expr_inContext(this.context, this.state); - this.enterRule(localContext, 1172, PostgreSqlParser.RULE_a_expr_in); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8846; - this.a_expr_unary_not(); - this.state = 8852; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { - case 1: - { - this.state = 8848; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 8847; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 8850; - this.match(PostgreSqlParser.IN_P); - this.state = 8851; - this.in_expr(); - } - 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 a_expr_unary_not(): A_expr_unary_notContext { - let localContext = new A_expr_unary_notContext(this.context, this.state); - this.enterRule(localContext, 1174, PostgreSqlParser.RULE_a_expr_unary_not); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8855; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 8854; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 8857; - this.a_expr_isnull(); - } - } - 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 a_expr_isnull(): A_expr_isnullContext { - let localContext = new A_expr_isnullContext(this.context, this.state); - this.enterRule(localContext, 1176, PostgreSqlParser.RULE_a_expr_isnull); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8859; - this.a_expr_is_not(); - this.state = 8861; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { - case 1: - { - this.state = 8860; - _la = this.tokenStream.LA(1); - if(!(_la === 117 || _la === 122)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - 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 a_expr_is_not(): A_expr_is_notContext { - let localContext = new A_expr_is_notContext(this.context, this.state); - this.enterRule(localContext, 1178, PostgreSqlParser.RULE_a_expr_is_not); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8863; - this.a_expr_compare(); - this.state = 8887; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { - case 1: - { - this.state = 8864; - this.match(PostgreSqlParser.IS); - this.state = 8866; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 8865; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 8885; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.NULL_P: - { - this.state = 8868; - this.match(PostgreSqlParser.NULL_P); - } - break; - case PostgreSqlParser.TRUE_P: - { - this.state = 8869; - this.match(PostgreSqlParser.TRUE_P); - } - break; - case PostgreSqlParser.FALSE_P: - { - this.state = 8870; - this.match(PostgreSqlParser.FALSE_P); - } - break; - case PostgreSqlParser.UNKNOWN: - { - this.state = 8871; - this.match(PostgreSqlParser.UNKNOWN); - } - break; - case PostgreSqlParser.DISTINCT: - { - this.state = 8872; - this.match(PostgreSqlParser.DISTINCT); - this.state = 8873; - this.match(PostgreSqlParser.FROM); - this.state = 8874; - this.a_expr(); - } - break; - case PostgreSqlParser.OF: - { - this.state = 8875; - this.match(PostgreSqlParser.OF); - this.state = 8876; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8877; - this.type_list(); - this.state = 8878; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.DOCUMENT_P: - { - this.state = 8880; - this.match(PostgreSqlParser.DOCUMENT_P); - } - break; - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - { - this.state = 8882; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0)) { - { - this.state = 8881; - this.unicode_normal_form(); - } - } - - this.state = 8884; - this.match(PostgreSqlParser.NORMALIZED); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - 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 a_expr_compare(): A_expr_compareContext { - let localContext = new A_expr_compareContext(this.context, this.state); - this.enterRule(localContext, 1180, PostgreSqlParser.RULE_a_expr_compare); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8889; - this.a_expr_like(); - this.state = 8901; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { - case 1: - { - this.state = 8890; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8891; - this.a_expr_like(); - } - break; - case 2: - { - this.state = 8892; - this.subquery_Op(); - this.state = 8893; - this.sub_type(); - this.state = 8899; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { - case 1: - { - this.state = 8894; - this.select_with_parens(); - } - break; - case 2: - { - this.state = 8895; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8896; - this.a_expr(); - this.state = 8897; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - 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 a_expr_like(): A_expr_likeContext { - let localContext = new A_expr_likeContext(this.context, this.state); - this.enterRule(localContext, 1182, PostgreSqlParser.RULE_a_expr_like); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8903; - this.a_expr_qual_op(); - this.state = 8916; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { - case 1: - { - this.state = 8905; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 8904; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 8911; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.LIKE: - { - this.state = 8907; - this.match(PostgreSqlParser.LIKE); - } - break; - case PostgreSqlParser.ILIKE: - { - this.state = 8908; - this.match(PostgreSqlParser.ILIKE); - } - break; - case PostgreSqlParser.SIMILAR: - { - this.state = 8909; - this.match(PostgreSqlParser.SIMILAR); - this.state = 8910; - this.match(PostgreSqlParser.TO); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 8913; - this.a_expr_qual_op(); - this.state = 8914; - this.opt_escape(); - } - 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 a_expr_qual_op(): A_expr_qual_opContext { - let localContext = new A_expr_qual_opContext(this.context, this.state); - this.enterRule(localContext, 1184, PostgreSqlParser.RULE_a_expr_qual_op); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8918; - this.a_expr_unary_qualop(); - this.state = 8924; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8919; - this.qual_op(); - this.state = 8920; - this.a_expr_unary_qualop(); - } - } - } - this.state = 8926; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, 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 a_expr_unary_qualop(): A_expr_unary_qualopContext { - let localContext = new A_expr_unary_qualopContext(this.context, this.state); - this.enterRule(localContext, 1186, PostgreSqlParser.RULE_a_expr_unary_qualop); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8928; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { - case 1: - { - this.state = 8927; - this.qual_op(); - } - break; - } - this.state = 8930; - this.a_expr_add(); - } - } - 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 a_expr_add(): A_expr_addContext { - let localContext = new A_expr_addContext(this.context, this.state); - this.enterRule(localContext, 1188, PostgreSqlParser.RULE_a_expr_add); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8932; - this.a_expr_mul(); - this.state = 8937; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 567, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8933; - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8934; - this.a_expr_mul(); - } - } - } - this.state = 8939; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 567, 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 a_expr_mul(): A_expr_mulContext { - let localContext = new A_expr_mulContext(this.context, this.state); - this.enterRule(localContext, 1190, PostgreSqlParser.RULE_a_expr_mul); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8940; - this.a_expr_caret(); - this.state = 8945; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 8941; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8942; - this.a_expr_caret(); - } - } - } - this.state = 8947; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, 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 a_expr_caret(): A_expr_caretContext { - let localContext = new A_expr_caretContext(this.context, this.state); - this.enterRule(localContext, 1192, PostgreSqlParser.RULE_a_expr_caret); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8948; - this.a_expr_unary_sign(); - this.state = 8951; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { - case 1: - { - this.state = 8949; - this.match(PostgreSqlParser.CARET); - this.state = 8950; - this.a_expr(); - } - 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 a_expr_unary_sign(): A_expr_unary_signContext { - let localContext = new A_expr_unary_signContext(this.context, this.state); - this.enterRule(localContext, 1194, PostgreSqlParser.RULE_a_expr_unary_sign); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8954; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 12 || _la === 13) { - { - this.state = 8953; - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 8956; - this.a_expr_at_time_zone(); - } - } - 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 a_expr_at_time_zone(): A_expr_at_time_zoneContext { - let localContext = new A_expr_at_time_zoneContext(this.context, this.state); - this.enterRule(localContext, 1196, PostgreSqlParser.RULE_a_expr_at_time_zone); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8958; - this.a_expr_collate(); - this.state = 8963; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { - case 1: - { - this.state = 8959; - this.match(PostgreSqlParser.AT); - this.state = 8960; - this.match(PostgreSqlParser.TIME); - this.state = 8961; - this.match(PostgreSqlParser.ZONE); - this.state = 8962; - this.a_expr(); - } - 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 a_expr_collate(): A_expr_collateContext { - let localContext = new A_expr_collateContext(this.context, this.state); - this.enterRule(localContext, 1198, PostgreSqlParser.RULE_a_expr_collate); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8965; - this.a_expr_typecast(); - this.state = 8968; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { - case 1: - { - this.state = 8966; - this.match(PostgreSqlParser.COLLATE); - this.state = 8967; - this.any_name(); - } - 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 a_expr_typecast(): A_expr_typecastContext { - let localContext = new A_expr_typecastContext(this.context, this.state); - this.enterRule(localContext, 1200, PostgreSqlParser.RULE_a_expr_typecast); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 8970; - this.c_expr(); - this.state = 8975; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 26) { - { - { - this.state = 8971; - this.match(PostgreSqlParser.TYPECAST); - this.state = 8972; - this.typename(); - } - } - this.state = 8977; - 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 b_expr(): B_exprContext; - public b_expr(_p: number): B_exprContext; - public b_expr(_p?: number): B_exprContext { - if (_p === undefined) { - _p = 0; - } - - let parentContext = this.context; - let parentState = this.state; - let localContext = new B_exprContext(this.context, parentState); - let previousContext = localContext; - let _startState = 1202; - this.enterRecursionRule(localContext, 1202, PostgreSqlParser.RULE_b_expr, _p); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 8985; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { - case 1: - { - this.state = 8979; - this.c_expr(); - } - break; - case 2: - { - this.state = 8980; - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8981; - this.b_expr(9); - } - break; - case 3: - { - this.state = 8982; - this.qual_op(); - this.state = 8983; - this.b_expr(3); - } - break; - } - this.context!.stop = this.tokenStream.LT(-1); - this.state = 9026; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 578, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - previousContext = localContext; - { - this.state = 9024; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { - case 1: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 8987; - if (!(this.precpred(this.context, 8))) { - throw this.createFailedPredicateException("this.precpred(this.context, 8)"); - } - this.state = 8988; - this.match(PostgreSqlParser.CARET); - this.state = 8989; - this.b_expr(9); - } - break; - case 2: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 8990; - if (!(this.precpred(this.context, 7))) { - throw this.createFailedPredicateException("this.precpred(this.context, 7)"); - } - this.state = 8991; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8992; - this.b_expr(8); - } - break; - case 3: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 8993; - if (!(this.precpred(this.context, 6))) { - throw this.createFailedPredicateException("this.precpred(this.context, 6)"); - } - this.state = 8994; - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 8995; - this.b_expr(7); - } - break; - case 4: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 8996; - if (!(this.precpred(this.context, 5))) { - throw this.createFailedPredicateException("this.precpred(this.context, 5)"); - } - this.state = 8997; - this.qual_op(); - this.state = 8998; - this.b_expr(6); - } - break; - case 5: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 9000; - if (!(this.precpred(this.context, 4))) { - throw this.createFailedPredicateException("this.precpred(this.context, 4)"); - } - this.state = 9001; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 9002; - this.b_expr(5); - } - break; - case 6: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 9003; - if (!(this.precpred(this.context, 10))) { - throw this.createFailedPredicateException("this.precpred(this.context, 10)"); - } - this.state = 9004; - this.match(PostgreSqlParser.TYPECAST); - this.state = 9005; - this.typename(); - } - break; - case 7: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 9006; - if (!(this.precpred(this.context, 2))) { - throw this.createFailedPredicateException("this.precpred(this.context, 2)"); - } - this.state = 9007; - this.qual_op(); - } - break; - case 8: - { - localContext = new B_exprContext(parentContext, parentState); - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_b_expr); - this.state = 9008; - if (!(this.precpred(this.context, 1))) { - throw this.createFailedPredicateException("this.precpred(this.context, 1)"); - } - this.state = 9009; - this.match(PostgreSqlParser.IS); - this.state = 9011; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 9010; - this.match(PostgreSqlParser.NOT); - } - } - - this.state = 9022; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DISTINCT: - { - this.state = 9013; - this.match(PostgreSqlParser.DISTINCT); - this.state = 9014; - this.match(PostgreSqlParser.FROM); - this.state = 9015; - this.b_expr(0); - } - break; - case PostgreSqlParser.OF: - { - this.state = 9016; - this.match(PostgreSqlParser.OF); - this.state = 9017; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9018; - this.type_list(); - this.state = 9019; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.DOCUMENT_P: - { - this.state = 9021; - this.match(PostgreSqlParser.DOCUMENT_P); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - } - } - } - this.state = 9028; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 578, 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.unrollRecursionContexts(parentContext); - } - return localContext; - } - public c_expr(): C_exprContext { - let localContext = new C_exprContext(this.context, this.state); - this.enterRule(localContext, 1204, PostgreSqlParser.RULE_c_expr); - try { - this.state = 9065; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { - case 1: - localContext = new C_expr_existsContext(localContext); - this.enterOuterAlt(localContext, 1); - { - this.state = 9029; - this.match(PostgreSqlParser.EXISTS); - this.state = 9030; - this.select_with_parens(); - } - break; - case 2: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 9031; - this.match(PostgreSqlParser.ARRAY); - this.state = 9034; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 9032; - this.select_with_parens(); - } - break; - case PostgreSqlParser.OPEN_BRACKET: - { - this.state = 9033; - this.array_expr(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case 3: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 9036; - this.match(PostgreSqlParser.PARAM); - this.state = 9037; - this.opt_indirection(); - } - break; - case 4: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 9038; - this.match(PostgreSqlParser.GROUPING); - this.state = 9039; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9040; - this.expr_list(); - this.state = 9041; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 5: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 5); - { - this.state = 9043; - this.match(PostgreSqlParser.UNIQUE); - this.state = 9044; - this.select_with_parens(); - } - break; - case 6: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 6); - { - this.state = 9045; - this.columnref(); - } - break; - case 7: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 7); - { - this.state = 9046; - this.aexprconst(); - } - break; - case 8: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 8); - { - this.state = 9047; - this.plsqlvariablename(); - } - break; - case 9: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 9); - { - this.state = 9048; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9049; - (localContext as C_expr_exprContext)._a_expr_in_parens = this.a_expr(); - this.state = 9050; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 9051; - this.opt_indirection(); - } - break; - case 10: - localContext = new C_expr_caseContext(localContext); - this.enterOuterAlt(localContext, 10); - { - this.state = 9053; - this.case_expr(); - } - break; - case 11: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 11); - { - this.state = 9054; - this.func_expr(); - } - break; - case 12: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 12); - { - this.state = 9055; - this.select_with_parens(); - this.state = 9057; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { - case 1: - { - this.state = 9056; - this.indirection(); - } - break; - } - } - break; - case 13: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 13); - { - this.state = 9059; - this.explicit_row(); - } - break; - case 14: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 14); - { - this.state = 9060; - this.implicit_row(); - } - break; - case 15: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 15); - { - this.state = 9061; - this.row(); - this.state = 9062; - this.match(PostgreSqlParser.OVERLAPS); - this.state = 9063; - this.row(); - } - 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 plsqlvariablename(): PlsqlvariablenameContext { - let localContext = new PlsqlvariablenameContext(this.context, this.state); - this.enterRule(localContext, 1206, PostgreSqlParser.RULE_plsqlvariablename); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9067; - this.match(PostgreSqlParser.PLSQLVARIABLENAME); - } - } - 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 func_application(): Func_applicationContext { - let localContext = new Func_applicationContext(this.context, this.state); - this.enterRule(localContext, 1208, PostgreSqlParser.RULE_func_application); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9069; - this.func_name(); - this.state = 9070; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9089; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: - case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: - case PostgreSqlParser.ABORT_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.ACCESS: - case PostgreSqlParser.ACTION: - case PostgreSqlParser.ADD_P: - case PostgreSqlParser.ADMIN: - case PostgreSqlParser.AFTER: - case PostgreSqlParser.AGGREGATE: - case PostgreSqlParser.ALSO: - case PostgreSqlParser.ALTER: - case PostgreSqlParser.ALWAYS: - case PostgreSqlParser.ASSERTION: - case PostgreSqlParser.ASSIGNMENT: - case PostgreSqlParser.AT: - case PostgreSqlParser.ATTRIBUTE: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.BEFORE: - case PostgreSqlParser.BEGIN_P: - case PostgreSqlParser.BY: - case PostgreSqlParser.CACHE: - case PostgreSqlParser.CALLED: - case PostgreSqlParser.CASCADE: - case PostgreSqlParser.CASCADED: - case PostgreSqlParser.CATALOG: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CHARACTERISTICS: - case PostgreSqlParser.CHECKPOINT: - case PostgreSqlParser.CLASS: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.CLUSTER: - case PostgreSqlParser.COMMENT: - case PostgreSqlParser.COMMENTS: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.COMMITTED: - case PostgreSqlParser.CONFIGURATION: - case PostgreSqlParser.CONNECTION: - case PostgreSqlParser.CONSTRAINTS: - case PostgreSqlParser.CONTENT_P: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CONVERSION_P: - case PostgreSqlParser.COPY: - case PostgreSqlParser.COST: - case PostgreSqlParser.CSV: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.CYCLE: - case PostgreSqlParser.DATA_P: - case PostgreSqlParser.DATABASE: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.DEALLOCATE: - case PostgreSqlParser.DECLARE: - case PostgreSqlParser.DEFAULTS: - case PostgreSqlParser.DEFERRED: - case PostgreSqlParser.DEFINER: - case PostgreSqlParser.DELETE_P: - case PostgreSqlParser.DELIMITER: - case PostgreSqlParser.DELIMITERS: - case PostgreSqlParser.DICTIONARY: - case PostgreSqlParser.DISABLE_P: - case PostgreSqlParser.DISCARD: - case PostgreSqlParser.DOCUMENT_P: - case PostgreSqlParser.DOMAIN_P: - case PostgreSqlParser.DOUBLE_P: - case PostgreSqlParser.DROP: - case PostgreSqlParser.EACH: - case PostgreSqlParser.ENABLE_P: - case PostgreSqlParser.ENCODING: - case PostgreSqlParser.ENCRYPTED: - case PostgreSqlParser.ENUM_P: - case PostgreSqlParser.ESCAPE: - case PostgreSqlParser.EVENT: - case PostgreSqlParser.EXCLUDE: - case PostgreSqlParser.EXCLUDING: - case PostgreSqlParser.EXCLUSIVE: - case PostgreSqlParser.EXECUTE: - case PostgreSqlParser.EXPLAIN: - case PostgreSqlParser.EXTENSION: - case PostgreSqlParser.EXTERNAL: - case PostgreSqlParser.FAMILY: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FOLLOWING: - case PostgreSqlParser.FORCE: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.FUNCTION: - case PostgreSqlParser.FUNCTIONS: - case PostgreSqlParser.GLOBAL: - case PostgreSqlParser.GRANTED: - case PostgreSqlParser.HANDLER: - case PostgreSqlParser.HEADER_P: - case PostgreSqlParser.HOLD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.IDENTITY_P: - case PostgreSqlParser.IF_P: - case PostgreSqlParser.IMMEDIATE: - case PostgreSqlParser.IMMUTABLE: - case PostgreSqlParser.IMPLICIT_P: - case PostgreSqlParser.INCLUDING: - case PostgreSqlParser.INCREMENT: - case PostgreSqlParser.INDEX: - case PostgreSqlParser.INDEXES: - case PostgreSqlParser.INHERIT: - case PostgreSqlParser.INHERITS: - case PostgreSqlParser.INLINE_P: - case PostgreSqlParser.INSENSITIVE: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.INSTEAD: - case PostgreSqlParser.INVOKER: - case PostgreSqlParser.ISOLATION: - case PostgreSqlParser.KEY: - case PostgreSqlParser.LABEL: - case PostgreSqlParser.LANGUAGE: - case PostgreSqlParser.LARGE_P: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.LEAKPROOF: - case PostgreSqlParser.LEVEL: - case PostgreSqlParser.LISTEN: - case PostgreSqlParser.LOAD: - case PostgreSqlParser.LOCAL: - case PostgreSqlParser.LOCATION: - case PostgreSqlParser.LOCK_P: - case PostgreSqlParser.MAPPING: - case PostgreSqlParser.MATCH: - case PostgreSqlParser.MATERIALIZED: - case PostgreSqlParser.MAXVALUE: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MINVALUE: - case PostgreSqlParser.MODE: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NAME_P: - case PostgreSqlParser.NAMES: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.NOTHING: - case PostgreSqlParser.NOTIFY: - case PostgreSqlParser.NOWAIT: - case PostgreSqlParser.NULLS_P: - case PostgreSqlParser.OBJECT_P: - case PostgreSqlParser.OF: - case PostgreSqlParser.OFF: - case PostgreSqlParser.OIDS: - case PostgreSqlParser.OPERATOR: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.OPTIONS: - case PostgreSqlParser.OWNED: - case PostgreSqlParser.OWNER: - case PostgreSqlParser.PARSER: - case PostgreSqlParser.PARTIAL: - case PostgreSqlParser.PARTITION: - case PostgreSqlParser.PASSING: - case PostgreSqlParser.PASSWORD: - case PostgreSqlParser.PLANS: - case PostgreSqlParser.PRECEDING: - case PostgreSqlParser.PREPARE: - case PostgreSqlParser.PREPARED: - case PostgreSqlParser.PRESERVE: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.PRIVILEGES: - case PostgreSqlParser.PROCEDURAL: - case PostgreSqlParser.PROCEDURE: - case PostgreSqlParser.PROGRAM: - case PostgreSqlParser.QUOTE: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.READ: - case PostgreSqlParser.REASSIGN: - case PostgreSqlParser.RECHECK: - case PostgreSqlParser.RECURSIVE: - case PostgreSqlParser.REF: - case PostgreSqlParser.REFRESH: - case PostgreSqlParser.REINDEX: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RELEASE: - case PostgreSqlParser.RENAME: - case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: - case PostgreSqlParser.REPLICA: - case PostgreSqlParser.RESET: - case PostgreSqlParser.RESTART: - case PostgreSqlParser.RESTRICT: - case PostgreSqlParser.RETURNS: - case PostgreSqlParser.REVOKE: - case PostgreSqlParser.ROLE: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.RULE: - case PostgreSqlParser.SAVEPOINT: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SEARCH: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SECURITY: - case PostgreSqlParser.SEQUENCE: - case PostgreSqlParser.SEQUENCES: - case PostgreSqlParser.SERIALIZABLE: - case PostgreSqlParser.SERVER: - case PostgreSqlParser.SESSION: - case PostgreSqlParser.SET: - case PostgreSqlParser.SHARE: - case PostgreSqlParser.SHOW: - case PostgreSqlParser.SIMPLE: - case PostgreSqlParser.SNAPSHOT: - case PostgreSqlParser.STABLE: - case PostgreSqlParser.STANDALONE_P: - case PostgreSqlParser.START: - case PostgreSqlParser.STATEMENT: - case PostgreSqlParser.STATISTICS: - case PostgreSqlParser.STDIN: - case PostgreSqlParser.STDOUT: - case PostgreSqlParser.STORAGE: - case PostgreSqlParser.STRICT_P: - case PostgreSqlParser.STRIP_P: - case PostgreSqlParser.SYSID: - case PostgreSqlParser.SYSTEM_P: - case PostgreSqlParser.TABLES: - case PostgreSqlParser.TABLESPACE: - case PostgreSqlParser.TEMP: - case PostgreSqlParser.TEMPLATE: - case PostgreSqlParser.TEMPORARY: - case PostgreSqlParser.TEXT_P: - case PostgreSqlParser.TRANSACTION: - case PostgreSqlParser.TRIGGER: - case PostgreSqlParser.TRUNCATE: - case PostgreSqlParser.TRUSTED: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.TYPES_P: - case PostgreSqlParser.UNBOUNDED: - case PostgreSqlParser.UNCOMMITTED: - case PostgreSqlParser.UNENCRYPTED: - case PostgreSqlParser.UNKNOWN: - case PostgreSqlParser.UNLISTEN: - case PostgreSqlParser.UNLOGGED: - case PostgreSqlParser.UNTIL: - case PostgreSqlParser.UPDATE: - case PostgreSqlParser.VACUUM: - case PostgreSqlParser.VALID: - case PostgreSqlParser.VALIDATE: - case PostgreSqlParser.VALIDATOR: - case PostgreSqlParser.VARYING: - case PostgreSqlParser.VERSION_P: - case PostgreSqlParser.VIEW: - case PostgreSqlParser.VOLATILE: - case PostgreSqlParser.WHITESPACE_P: - case PostgreSqlParser.WITHOUT: - case PostgreSqlParser.WORK: - case PostgreSqlParser.WRAPPER: - case PostgreSqlParser.WRITE: - case PostgreSqlParser.XML_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.YES_P: - case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ATTACH: - case PostgreSqlParser.DETACH: - case PostgreSqlParser.EXPRESSION: - case PostgreSqlParser.GENERATED: - case PostgreSqlParser.LOGGED: - case PostgreSqlParser.STORED: - case PostgreSqlParser.INCLUDE: - case PostgreSqlParser.ROUTINE: - case PostgreSqlParser.TRANSFORM: - case PostgreSqlParser.IMPORT_P: - case PostgreSqlParser.POLICY: - case PostgreSqlParser.METHOD: - case PostgreSqlParser.REFERENCING: - case PostgreSqlParser.NEW: - case PostgreSqlParser.OLD: - case PostgreSqlParser.VALUE_P: - case PostgreSqlParser.SUBSCRIPTION: - case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: - case PostgreSqlParser.ROUTINES: - case PostgreSqlParser.SCHEMAS: - case PostgreSqlParser.PROCEDURES: - case PostgreSqlParser.INPUT_P: - case PostgreSqlParser.SUPPORT: - case PostgreSqlParser.PARALLEL: - case PostgreSqlParser.SQL_P: - case PostgreSqlParser.DEPENDS: - case PostgreSqlParser.OVERRIDING: - case PostgreSqlParser.CONFLICT: - case PostgreSqlParser.SKIP_P: - case PostgreSqlParser.LOCKED: - case PostgreSqlParser.TIES: - case PostgreSqlParser.ROLLUP: - case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: - case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: - case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: - case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.NORMALIZED: - case PostgreSqlParser.WITHIN: - case PostgreSqlParser.FILTER: - case PostgreSqlParser.GROUPS: - case PostgreSqlParser.OTHERS: - case PostgreSqlParser.NFC: - case PostgreSqlParser.NFD: - case PostgreSqlParser.NFKC: - case PostgreSqlParser.NFKD: - case PostgreSqlParser.UESCAPE: - case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - { - this.state = 9071; - this.func_arg_list(); - this.state = 9075; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 9072; - this.match(PostgreSqlParser.COMMA); - this.state = 9073; - this.match(PostgreSqlParser.VARIADIC); - this.state = 9074; - this.func_arg_expr(); + this.state = 8200; + this.columnId(); } + break; + default: + throw new antlr.NoViableAltException(this); } - - this.state = 9077; - this.opt_sort_clause(); - } - break; - case PostgreSqlParser.VARIADIC: - { - this.state = 9079; - this.match(PostgreSqlParser.VARIADIC); - this.state = 9080; - this.func_arg_expr(); - this.state = 9081; - this.opt_sort_clause(); - } - break; - case PostgreSqlParser.ALL: - case PostgreSqlParser.DISTINCT: - { - this.state = 9083; - _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 56)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 9084; - this.func_arg_list(); - this.state = 9085; - this.opt_sort_clause(); - } - break; - case PostgreSqlParser.STAR: - { - this.state = 9087; - this.match(PostgreSqlParser.STAR); + this.state = 8203; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8204; + this.tableFunctionElementList(); + this.state = 8205; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case PostgreSqlParser.CLOSE_PAREN: + case 3: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 9091; - this.match(PostgreSqlParser.CLOSE_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 func_expr(): Func_exprContext { - let localContext = new Func_exprContext(this.context, this.state); - this.enterRule(localContext, 1210, PostgreSqlParser.RULE_func_expr); - try { - this.state = 9099; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9093; - this.func_application(); - this.state = 9094; - this.within_group_clause(); - this.state = 9095; - this.filter_clause(); - this.state = 9096; - this.over_clause(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9098; - this.func_expr_common_subexpr(); - } - break; } } catch (re) { @@ -61073,564 +49360,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_expr_windowless(): Func_expr_windowlessContext { - let localContext = new Func_expr_windowlessContext(this.context, this.state); - this.enterRule(localContext, 1212, PostgreSqlParser.RULE_func_expr_windowless); + public joinType(): JoinTypeContext { + let localContext = new JoinTypeContext(this.context, this.state); + this.enterRule(localContext, 962, PostgreSqlParser.RULE_joinType); + let _la: number; try { - this.state = 9103; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9101; - this.func_application(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9102; - this.func_expr_common_subexpr(); - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 8210; + _la = this.tokenStream.LA(1); + if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { + this.errorHandler.recoverInline(this); } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; + else { + this.errorHandler.reportMatch(this); + this.consume(); } - } - finally { - this.exitRule(); - } - return localContext; - } - public func_expr_common_subexpr(): Func_expr_common_subexprContext { - let localContext = new Func_expr_common_subexprContext(this.context, this.state); - this.enterRule(localContext, 1214, PostgreSqlParser.RULE_func_expr_common_subexpr); - let _la: number; - try { - this.state = 9282; + this.state = 8212; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.COLLATION: - this.enterOuterAlt(localContext, 1); - { - this.state = 9105; - this.match(PostgreSqlParser.COLLATION); - this.state = 9106; - this.match(PostgreSqlParser.FOR); - this.state = 9107; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9108; - this.a_expr(); - this.state = 9109; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.CURRENT_DATE: - this.enterOuterAlt(localContext, 2); - { - this.state = 9111; - this.match(PostgreSqlParser.CURRENT_DATE); - } - break; - case PostgreSqlParser.CURRENT_TIME: - this.enterOuterAlt(localContext, 3); - { - this.state = 9112; - this.match(PostgreSqlParser.CURRENT_TIME); - this.state = 9117; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { - case 1: - { - this.state = 9113; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9114; - this.iconst(); - this.state = 9115; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - case PostgreSqlParser.CURRENT_TIMESTAMP: - this.enterOuterAlt(localContext, 4); - { - this.state = 9119; - this.match(PostgreSqlParser.CURRENT_TIMESTAMP); - this.state = 9124; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { - case 1: - { - this.state = 9120; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9121; - this.iconst(); - this.state = 9122; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - case PostgreSqlParser.LOCALTIME: - this.enterOuterAlt(localContext, 5); - { - this.state = 9126; - this.match(PostgreSqlParser.LOCALTIME); - this.state = 9131; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { - case 1: - { - this.state = 9127; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9128; - this.iconst(); - this.state = 9129; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - case PostgreSqlParser.LOCALTIMESTAMP: - this.enterOuterAlt(localContext, 6); - { - this.state = 9133; - this.match(PostgreSqlParser.LOCALTIMESTAMP); - this.state = 9138; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { - case 1: - { - this.state = 9134; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9135; - this.iconst(); - this.state = 9136; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - case PostgreSqlParser.CURRENT_ROLE: - this.enterOuterAlt(localContext, 7); - { - this.state = 9140; - this.match(PostgreSqlParser.CURRENT_ROLE); - } - break; - case PostgreSqlParser.CURRENT_USER: - this.enterOuterAlt(localContext, 8); - { - this.state = 9141; - this.match(PostgreSqlParser.CURRENT_USER); - } - break; - case PostgreSqlParser.SESSION_USER: - this.enterOuterAlt(localContext, 9); - { - this.state = 9142; - this.match(PostgreSqlParser.SESSION_USER); - } - break; - case PostgreSqlParser.USER: - this.enterOuterAlt(localContext, 10); - { - this.state = 9143; - this.match(PostgreSqlParser.USER); - } - break; - case PostgreSqlParser.CURRENT_CATALOG: - this.enterOuterAlt(localContext, 11); - { - this.state = 9144; - this.match(PostgreSqlParser.CURRENT_CATALOG); - } - break; - case PostgreSqlParser.CURRENT_SCHEMA: - this.enterOuterAlt(localContext, 12); - { - this.state = 9145; - this.match(PostgreSqlParser.CURRENT_SCHEMA); - } - break; - case PostgreSqlParser.CAST: - this.enterOuterAlt(localContext, 13); - { - this.state = 9146; - this.match(PostgreSqlParser.CAST); - this.state = 9147; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9148; - this.a_expr(); - this.state = 9149; - this.match(PostgreSqlParser.AS); - this.state = 9150; - this.typename(); - this.state = 9151; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.EXTRACT: - this.enterOuterAlt(localContext, 14); - { - this.state = 9153; - this.match(PostgreSqlParser.EXTRACT); - this.state = 9154; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9155; - this.extract_list(); - this.state = 9156; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.NORMALIZE: - this.enterOuterAlt(localContext, 15); - { - this.state = 9158; - this.match(PostgreSqlParser.NORMALIZE); - this.state = 9159; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9160; - this.a_expr(); - this.state = 9163; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 9161; - this.match(PostgreSqlParser.COMMA); - this.state = 9162; - this.unicode_normal_form(); - } - } - - this.state = 9165; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.OVERLAY: - this.enterOuterAlt(localContext, 16); - { - this.state = 9167; - this.match(PostgreSqlParser.OVERLAY); - this.state = 9168; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9169; - this.overlay_list(); - this.state = 9170; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.POSITION: - this.enterOuterAlt(localContext, 17); - { - this.state = 9172; - this.match(PostgreSqlParser.POSITION); - this.state = 9173; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9174; - this.position_list(); - this.state = 9175; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.SUBSTRING: - this.enterOuterAlt(localContext, 18); - { - this.state = 9177; - this.match(PostgreSqlParser.SUBSTRING); - this.state = 9178; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9179; - this.substr_list(); - this.state = 9180; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.TREAT: - this.enterOuterAlt(localContext, 19); - { - this.state = 9182; - this.match(PostgreSqlParser.TREAT); - this.state = 9183; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9184; - this.a_expr(); - this.state = 9185; - this.match(PostgreSqlParser.AS); - this.state = 9186; - this.typename(); - this.state = 9187; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.TRIM: - this.enterOuterAlt(localContext, 20); - { - this.state = 9189; - this.match(PostgreSqlParser.TRIM); - this.state = 9190; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9192; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 39 || _la === 73 || _la === 95) { - { - this.state = 9191; - _la = this.tokenStream.LA(1); - if(!(_la === 39 || _la === 73 || _la === 95)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 9194; - this.trim_list(); - this.state = 9195; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.NULLIF: - this.enterOuterAlt(localContext, 21); - { - this.state = 9197; - this.match(PostgreSqlParser.NULLIF); - this.state = 9198; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9199; - this.a_expr(); - this.state = 9200; - this.match(PostgreSqlParser.COMMA); - this.state = 9201; - this.a_expr(); - this.state = 9202; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.COALESCE: - this.enterOuterAlt(localContext, 22); - { - this.state = 9204; - this.match(PostgreSqlParser.COALESCE); - this.state = 9205; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9206; - this.expr_list(); - this.state = 9207; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.GREATEST: - this.enterOuterAlt(localContext, 23); - { - this.state = 9209; - this.match(PostgreSqlParser.GREATEST); - this.state = 9210; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9211; - this.expr_list(); - this.state = 9212; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.LEAST: - this.enterOuterAlt(localContext, 24); - { - this.state = 9214; - this.match(PostgreSqlParser.LEAST); - this.state = 9215; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9216; - this.expr_list(); - this.state = 9217; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLCONCAT: - this.enterOuterAlt(localContext, 25); - { - this.state = 9219; - this.match(PostgreSqlParser.XMLCONCAT); - this.state = 9220; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9221; - this.expr_list(); - this.state = 9222; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLELEMENT: - this.enterOuterAlt(localContext, 26); - { - this.state = 9224; - this.match(PostgreSqlParser.XMLELEMENT); - this.state = 9225; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9226; - this.match(PostgreSqlParser.NAME_P); - this.state = 9227; - this.collabel(); - this.state = 9233; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 9228; - this.match(PostgreSqlParser.COMMA); - this.state = 9231; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { - case 1: - { - this.state = 9229; - this.xml_attributes(); - } - break; - case 2: - { - this.state = 9230; - this.expr_list(); - } - break; - } - } - } - - this.state = 9235; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLEXISTS: - this.enterOuterAlt(localContext, 27); - { - this.state = 9237; - this.match(PostgreSqlParser.XMLEXISTS); - this.state = 9238; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9239; - this.c_expr(); - this.state = 9240; - this.xmlexists_argument(); - this.state = 9241; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLFOREST: - this.enterOuterAlt(localContext, 28); - { - this.state = 9243; - this.match(PostgreSqlParser.XMLFOREST); - this.state = 9244; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9245; - this.xml_attribute_list(); - this.state = 9246; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLPARSE: - this.enterOuterAlt(localContext, 29); - { - this.state = 9248; - this.match(PostgreSqlParser.XMLPARSE); - this.state = 9249; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9250; - this.document_or_content(); - this.state = 9251; - this.a_expr(); - this.state = 9252; - this.xml_whitespace_option(); - this.state = 9253; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLPI: - this.enterOuterAlt(localContext, 30); - { - this.state = 9255; - this.match(PostgreSqlParser.XMLPI); - this.state = 9256; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9257; - this.match(PostgreSqlParser.NAME_P); - this.state = 9258; - this.collabel(); - this.state = 9261; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 9259; - this.match(PostgreSqlParser.COMMA); - this.state = 9260; - this.a_expr(); - } - } - - this.state = 9263; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLROOT: - this.enterOuterAlt(localContext, 31); - { - this.state = 9265; - this.match(PostgreSqlParser.XMLROOT); - this.state = 9266; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9267; - this.match(PostgreSqlParser.XML_P); - this.state = 9268; - this.a_expr(); - this.state = 9269; - this.match(PostgreSqlParser.COMMA); - this.state = 9270; - this.xml_root_version(); - this.state = 9271; - this.opt_xml_root_standalone(); - this.state = 9272; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case PostgreSqlParser.XMLSERIALIZE: - this.enterOuterAlt(localContext, 32); - { - this.state = 9274; - this.match(PostgreSqlParser.XMLSERIALIZE); - this.state = 9275; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9276; - this.document_or_content(); - this.state = 9277; - this.a_expr(); - this.state = 9278; - this.match(PostgreSqlParser.AS); - this.state = 9279; - this.simpletypename(); - this.state = 9280; - this.match(PostgreSqlParser.CLOSE_PAREN); + _la = this.tokenStream.LA(1); + if (_la === 123) { + { + this.state = 8211; + this.match(PostgreSqlParser.OUTER_P); } - break; - default: - throw new antlr.NoViableAltException(this); + } + } } catch (re) { @@ -61647,33 +49402,37 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public xml_root_version(): Xml_root_versionContext { - let localContext = new Xml_root_versionContext(this.context, this.state); - this.enterRule(localContext, 1216, PostgreSqlParser.RULE_xml_root_version); + public joinQualifier(): JoinQualifierContext { + let localContext = new JoinQualifierContext(this.context, this.state); + this.enterRule(localContext, 964, PostgreSqlParser.RULE_joinQualifier); try { - this.state = 9289; + this.state = 8221; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 1); { - this.state = 9284; - this.match(PostgreSqlParser.VERSION_P); - this.state = 9285; - this.a_expr(); + this.state = 8214; + this.match(PostgreSqlParser.USING); + this.state = 8215; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8216; + this.nameList(); + this.state = 8217; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case 2: + case PostgreSqlParser.ON: this.enterOuterAlt(localContext, 2); { - this.state = 9286; - this.match(PostgreSqlParser.VERSION_P); - this.state = 9287; - this.match(PostgreSqlParser.NO); - this.state = 9288; - this.match(PostgreSqlParser.VALUE_P); + this.state = 8219; + this.match(PostgreSqlParser.ON); + this.state = 8220; + this.expression1(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -61690,601 +49449,557 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_xml_root_standalone(): Opt_xml_root_standaloneContext { - let localContext = new Opt_xml_root_standaloneContext(this.context, this.state); - this.enterRule(localContext, 1218, PostgreSqlParser.RULE_opt_xml_root_standalone); + public relationExpression(): RelationExpressionContext { + let localContext = new RelationExpressionContext(this.context, this.state); + this.enterRule(localContext, 966, PostgreSqlParser.RULE_relationExpression); + let _la: number; try { - this.state = 9302; + this.state = 8235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 9291; - this.match(PostgreSqlParser.COMMA); - this.state = 9292; - this.match(PostgreSqlParser.STANDALONE_P); - this.state = 9293; - this.match(PostgreSqlParser.YES_P); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9294; - this.match(PostgreSqlParser.COMMA); - this.state = 9295; - this.match(PostgreSqlParser.STANDALONE_P); - this.state = 9296; - this.match(PostgreSqlParser.NO); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 9297; - this.match(PostgreSqlParser.COMMA); - this.state = 9298; - this.match(PostgreSqlParser.STANDALONE_P); - this.state = 9299; - this.match(PostgreSqlParser.NO); - this.state = 9300; - this.match(PostgreSqlParser.VALUE_P); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - // 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 xml_attributes(): Xml_attributesContext { - let localContext = new Xml_attributesContext(this.context, this.state); - this.enterRule(localContext, 1220, PostgreSqlParser.RULE_xml_attributes); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9304; - this.match(PostgreSqlParser.XMLATTRIBUTES); - this.state = 9305; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9306; - this.xml_attribute_list(); - this.state = 9307; - this.match(PostgreSqlParser.CLOSE_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 xml_attribute_list(): Xml_attribute_listContext { - let localContext = new Xml_attribute_listContext(this.context, this.state); - this.enterRule(localContext, 1222, PostgreSqlParser.RULE_xml_attribute_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9309; - this.xml_attribute_el(); - this.state = 9314; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 9310; - this.match(PostgreSqlParser.COMMA); - this.state = 9311; - this.xml_attribute_el(); - } - } - this.state = 9316; + this.state = 8223; + this.qualifiedName(); + this.state = 8225; 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 xml_attribute_el(): Xml_attribute_elContext { - let localContext = new Xml_attribute_elContext(this.context, this.state); - this.enterRule(localContext, 1224, PostgreSqlParser.RULE_xml_attribute_el); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9317; - this.a_expr(); - this.state = 9320; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 9318; - this.match(PostgreSqlParser.AS); - this.state = 9319; - this.collabel(); + if (_la === 9) { + { + this.state = 8224; + this.match(PostgreSqlParser.STAR); + } } - } - } - } - 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 document_or_content(): Document_or_contentContext { - let localContext = new Document_or_contentContext(this.context, this.state); - this.enterRule(localContext, 1226, PostgreSqlParser.RULE_document_or_content); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9322; - _la = this.tokenStream.LA(1); - if(!(_la === 166 || _la === 188)) { - 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 xml_whitespace_option(): Xml_whitespace_optionContext { - let localContext = new Xml_whitespace_optionContext(this.context, this.state); - this.enterRule(localContext, 1228, PostgreSqlParser.RULE_xml_whitespace_option); - try { - this.state = 9329; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.PRESERVE: - this.enterOuterAlt(localContext, 1); - { - this.state = 9324; - this.match(PostgreSqlParser.PRESERVE); - this.state = 9325; - this.match(PostgreSqlParser.WHITESPACE_P); - } - break; - case PostgreSqlParser.STRIP_P: - this.enterOuterAlt(localContext, 2); - { - this.state = 9326; - this.match(PostgreSqlParser.STRIP_P); - this.state = 9327; - this.match(PostgreSqlParser.WHITESPACE_P); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 3); - // tslint:disable-next-line:no-empty - { - } - 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 xmlexists_argument(): Xmlexists_argumentContext { - let localContext = new Xmlexists_argumentContext(this.context, this.state); - this.enterRule(localContext, 1230, PostgreSqlParser.RULE_xmlexists_argument); - try { - this.state = 9346; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9331; - this.match(PostgreSqlParser.PASSING); - this.state = 9332; - this.c_expr(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9333; - this.match(PostgreSqlParser.PASSING); - this.state = 9334; - this.c_expr(); - this.state = 9335; - this.xml_passing_mech(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 9337; - this.match(PostgreSqlParser.PASSING); - this.state = 9338; - this.xml_passing_mech(); - this.state = 9339; - this.c_expr(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 9341; - this.match(PostgreSqlParser.PASSING); - this.state = 9342; - this.xml_passing_mech(); - this.state = 9343; - this.c_expr(); - this.state = 9344; - this.xml_passing_mech(); - } - 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 xml_passing_mech(): Xml_passing_mechContext { - let localContext = new Xml_passing_mechContext(this.context, this.state); - this.enterRule(localContext, 1232, PostgreSqlParser.RULE_xml_passing_mech); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9348; - this.match(PostgreSqlParser.BY); - this.state = 9349; - _la = this.tokenStream.LA(1); - if(!(_la === 297 || _la === 450)) { - 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 within_group_clause(): Within_group_clauseContext { - let localContext = new Within_group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1234, PostgreSqlParser.RULE_within_group_clause); - try { - this.state = 9358; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9351; - this.match(PostgreSqlParser.WITHIN); - this.state = 9352; - this.match(PostgreSqlParser.GROUP_P); - this.state = 9353; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9354; - this.sort_clause(); - this.state = 9355; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 filter_clause(): Filter_clauseContext { - let localContext = new Filter_clauseContext(this.context, this.state); - this.enterRule(localContext, 1236, PostgreSqlParser.RULE_filter_clause); - try { - this.state = 9367; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9360; - this.match(PostgreSqlParser.FILTER); - this.state = 9361; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9362; - this.match(PostgreSqlParser.WHERE); - this.state = 9363; - this.a_expr(); - this.state = 9364; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 window_clause(): Window_clauseContext { - let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 1238, PostgreSqlParser.RULE_window_clause); - try { - this.state = 9372; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.WINDOW: - this.enterOuterAlt(localContext, 1); - { - this.state = 9369; - this.match(PostgreSqlParser.WINDOW); - this.state = 9370; - this.window_definition_list(); } break; - case PostgreSqlParser.EOF: - case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.COMMA: - case PostgreSqlParser.SEMI: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.INTO: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.THEN: - case PostgreSqlParser.UNION: - case PostgreSqlParser.USING: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WITH: - case PostgreSqlParser.LOOP: + case PostgreSqlParser.ONLY: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 window_definition_list(): Window_definition_listContext { - let localContext = new Window_definition_listContext(this.context, this.state); - this.enterRule(localContext, 1240, PostgreSqlParser.RULE_window_definition_list); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9374; - this.window_definition(); - this.state = 9379; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 9375; - this.match(PostgreSqlParser.COMMA); - this.state = 9376; - this.window_definition(); - } - } - } - this.state = 9381; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, 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 window_definition(): Window_definitionContext { - let localContext = new Window_definitionContext(this.context, this.state); - this.enterRule(localContext, 1242, PostgreSqlParser.RULE_window_definition); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9382; - this.colid(); - this.state = 9383; - this.match(PostgreSqlParser.AS); - this.state = 9384; - this.window_specification(); - } - } - 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 over_clause(): Over_clauseContext { - let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 1244, PostgreSqlParser.RULE_over_clause); - try { - this.state = 9392; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); { - this.state = 9386; - this.match(PostgreSqlParser.OVER); - this.state = 9389; + this.state = 8227; + this.match(PostgreSqlParser.ONLY); + this.state = 8233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 9387; - this.window_specification(); - } - break; case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: case PostgreSqlParser.COLLATE: @@ -62805,8 +50520,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 9388; - this.colid(); + this.state = 8228; + this.qualifiedName(); + } + break; + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 8229; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8230; + this.qualifiedName(); + this.state = 8231; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; default: @@ -62814,13 +50539,95 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } } break; - case 2: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty + 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 relationExpressionList(): RelationExpressionListContext { + let localContext = new RelationExpressionListContext(this.context, this.state); + this.enterRule(localContext, 968, PostgreSqlParser.RULE_relationExpressionList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8237; + this.relationExpression(); + this.state = 8242; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 8238; + this.match(PostgreSqlParser.COMMA); + this.state = 8239; + this.relationExpression(); + } + } + this.state = 8244; + 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 relationExpressionOptionalAlias(): RelationExpressionOptionalAliasContext { + let localContext = new RelationExpressionOptionalAliasContext(this.context, this.state); + this.enterRule(localContext, 970, PostgreSqlParser.RULE_relationExpressionOptionalAlias); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8245; + this.relationExpression(); + this.state = 8250; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { + case 1: { + this.state = 8247; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 8246; + this.match(PostgreSqlParser.AS); + } + } + + this.state = 8249; + this.columnId(); } break; } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -62836,23 +50643,29 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public window_specification(): Window_specificationContext { - let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 1246, PostgreSqlParser.RULE_window_specification); + public tableSampleClause(): TableSampleClauseContext { + let localContext = new TableSampleClauseContext(this.context, this.state); + this.enterRule(localContext, 972, PostgreSqlParser.RULE_tableSampleClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9394; + this.state = 8252; + this.match(PostgreSqlParser.TABLESAMPLE); + this.state = 8253; + this.functionName(); + this.state = 8254; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9395; - this.opt_existing_window_name(); - this.state = 9396; - this.opt_partition_clause(); - this.state = 9397; - this.opt_sort_clause(); - this.state = 9398; - this.opt_frame_clause(); - this.state = 9399; + this.state = 8255; + this.expressionList(); + this.state = 8256; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8257; + this.match(PostgreSqlParser.REPEATABLE); + this.state = 8258; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8259; + this.expression1(); + this.state = 8260; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -62870,24 +50683,54 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_existing_window_name(): Opt_existing_window_nameContext { - let localContext = new Opt_existing_window_nameContext(this.context, this.state); - this.enterRule(localContext, 1248, PostgreSqlParser.RULE_opt_existing_window_name); + public functionTable(): FunctionTableContext { + let localContext = new FunctionTableContext(this.context, this.state); + this.enterRule(localContext, 974, PostgreSqlParser.RULE_functionTable); + let _la: number; try { - this.state = 9403; + this.state = 8279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9401; - this.colid(); + this.state = 8262; + this.functionExpressionWindowless(); + this.state = 8263; + this.optionalOrdinality(); } break; case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 8265; + this.match(PostgreSqlParser.ROWS); + this.state = 8266; + this.match(PostgreSqlParser.FROM); + this.state = 8267; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8268; + this.rowsFromItem(); + this.state = 8273; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 8269; + this.match(PostgreSqlParser.COMMA); + this.state = 8270; + this.rowsFromItem(); + } + } + this.state = 8275; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 8276; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8277; + this.optionalOrdinality(); } break; } @@ -62906,29 +50749,54 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_partition_clause(): Opt_partition_clauseContext { - let localContext = new Opt_partition_clauseContext(this.context, this.state); - this.enterRule(localContext, 1250, PostgreSqlParser.RULE_opt_partition_clause); + public rowsFromItem(): RowsFromItemContext { + let localContext = new RowsFromItemContext(this.context, this.state); + this.enterRule(localContext, 976, PostgreSqlParser.RULE_rowsFromItem); try { - this.state = 9409; + this.enterOuterAlt(localContext, 1); + { + this.state = 8281; + this.functionExpressionWindowless(); + this.state = 8282; + this.optionalColumnDefinitionList(); + } + } + 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 optionalColumnDefinitionList(): OptionalColumnDefinitionListContext { + let localContext = new OptionalColumnDefinitionListContext(this.context, this.state); + this.enterRule(localContext, 978, PostgreSqlParser.RULE_optionalColumnDefinitionList); + try { + this.state = 8290; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.PARTITION: + case PostgreSqlParser.AS: this.enterOuterAlt(localContext, 1); { - this.state = 9405; - this.match(PostgreSqlParser.PARTITION); - this.state = 9406; - this.match(PostgreSqlParser.BY); - this.state = 9407; - this.expr_list(); + this.state = 8284; + this.match(PostgreSqlParser.AS); + this.state = 8285; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8286; + this.tableFunctionElementList(); + this.state = 8287; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.CLOSE_PAREN: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.RANGE: - case PostgreSqlParser.ROWS: - case PostgreSqlParser.GROUPS: + case PostgreSqlParser.COMMA: this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { @@ -62952,54 +50820,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_frame_clause(): Opt_frame_clauseContext { - let localContext = new Opt_frame_clauseContext(this.context, this.state); - this.enterRule(localContext, 1252, PostgreSqlParser.RULE_opt_frame_clause); + public optionalOrdinality(): OptionalOrdinalityContext { + let localContext = new OptionalOrdinalityContext(this.context, this.state); + this.enterRule(localContext, 980, PostgreSqlParser.RULE_optionalOrdinality); try { - this.state = 9424; + this.state = 8295; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.RANGE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9411; - this.match(PostgreSqlParser.RANGE); - this.state = 9412; - this.frame_extent(); - this.state = 9413; - this.opt_window_exclusion_clause(); + this.state = 8292; + this.match(PostgreSqlParser.WITH); + this.state = 8293; + this.match(PostgreSqlParser.ORDINALITY); } break; - case PostgreSqlParser.ROWS: + case 2: this.enterOuterAlt(localContext, 2); - { - this.state = 9415; - this.match(PostgreSqlParser.ROWS); - this.state = 9416; - this.frame_extent(); - this.state = 9417; - this.opt_window_exclusion_clause(); - } - break; - case PostgreSqlParser.GROUPS: - this.enterOuterAlt(localContext, 3); - { - this.state = 9419; - this.match(PostgreSqlParser.GROUPS); - this.state = 9420; - this.frame_extent(); - this.state = 9421; - this.opt_window_exclusion_clause(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 4); // tslint:disable-next-line:no-empty { } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -63016,33 +50858,55 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public frame_extent(): Frame_extentContext { - let localContext = new Frame_extentContext(this.context, this.state); - this.enterRule(localContext, 1254, PostgreSqlParser.RULE_frame_extent); + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 982, PostgreSqlParser.RULE_whereClause); try { - this.state = 9432; + this.state = 8300; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 9426; - this.frame_bound(); + this.state = 8297; + this.match(PostgreSqlParser.WHERE); + this.state = 8298; + this.expression1(); } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.DO: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.GROUP_P: + case PostgreSqlParser.HAVING: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.THEN: + case PostgreSqlParser.UNION: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WINDOW: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 9427; - this.match(PostgreSqlParser.BETWEEN); - this.state = 9428; - this.frame_bound(); - this.state = 9429; - this.match(PostgreSqlParser.AND); - this.state = 9430; - this.frame_bound(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -63059,55 +50923,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public frame_bound(): Frame_boundContext { - let localContext = new Frame_boundContext(this.context, this.state); - this.enterRule(localContext, 1256, PostgreSqlParser.RULE_frame_bound); - let _la: number; + public whereOrCurrentClause(): WhereOrCurrentClauseContext { + let localContext = new WhereOrCurrentClauseContext(this.context, this.state); + this.enterRule(localContext, 984, PostgreSqlParser.RULE_whereOrCurrentClause); try { - this.state = 9441; + this.state = 8310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 9434; - this.match(PostgreSqlParser.UNBOUNDED); - this.state = 9435; - _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 282)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 8302; + this.match(PostgreSqlParser.WHERE); + this.state = 8307; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { + case 1: + { + this.state = 8303; + this.match(PostgreSqlParser.CURRENT_P); + this.state = 8304; + this.match(PostgreSqlParser.OF); + this.state = 8305; + this.cursorName(); + } + break; + case 2: + { + this.state = 8306; + this.expression1(); + } + break; } } break; - case 2: + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.INTO: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.LOOP: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 9436; - this.match(PostgreSqlParser.CURRENT_P); - this.state = 9437; - this.match(PostgreSqlParser.ROW); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 9438; - this.a_expr(); - this.state = 9439; - _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 282)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -63124,120 +50986,542 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_window_exclusion_clause(): Opt_window_exclusion_clauseContext { - let localContext = new Opt_window_exclusion_clauseContext(this.context, this.state); - this.enterRule(localContext, 1258, PostgreSqlParser.RULE_opt_window_exclusion_clause); + public optionalTableFunctionElementList(): OptionalTableFunctionElementListContext { + let localContext = new OptionalTableFunctionElementListContext(this.context, this.state); + this.enterRule(localContext, 986, PostgreSqlParser.RULE_optionalTableFunctionElementList); try { - this.state = 9453; + this.state = 8314; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: case PostgreSqlParser.EXCLUDE: - this.enterOuterAlt(localContext, 1); - { - this.state = 9443; - this.match(PostgreSqlParser.EXCLUDE); - this.state = 9450; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.CURRENT_P: - { - this.state = 9444; - this.match(PostgreSqlParser.CURRENT_P); - this.state = 9445; - this.match(PostgreSqlParser.ROW); - } - break; - case PostgreSqlParser.GROUP_P: - { - this.state = 9446; - this.match(PostgreSqlParser.GROUP_P); - } - break; - case PostgreSqlParser.TIES: - { - this.state = 9447; - this.match(PostgreSqlParser.TIES); - } - break; - case PostgreSqlParser.NO: - { - this.state = 9448; - this.match(PostgreSqlParser.NO); - this.state = 9449; - this.match(PostgreSqlParser.OTHERS); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 row(): RowContext { - let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 1260, PostgreSqlParser.RULE_row); - let _la: number; - try { - this.state = 9467; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 9455; - this.match(PostgreSqlParser.ROW); - this.state = 9456; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9458; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { - { - this.state = 9457; - this.expr_list(); - } - } - - this.state = 9460; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8312; + this.tableFunctionElementList(); } break; - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.CLOSE_PAREN: this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 9461; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9462; - this.expr_list(); - this.state = 9463; - this.match(PostgreSqlParser.COMMA); - this.state = 9464; - this.a_expr(); - this.state = 9465; - this.match(PostgreSqlParser.CLOSE_PAREN); } break; default: @@ -63258,61 +51542,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public explicit_row(): Explicit_rowContext { - let localContext = new Explicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1262, PostgreSqlParser.RULE_explicit_row); + public tableFunctionElementList(): TableFunctionElementListContext { + let localContext = new TableFunctionElementListContext(this.context, this.state); + this.enterRule(localContext, 988, PostgreSqlParser.RULE_tableFunctionElementList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9469; - this.match(PostgreSqlParser.ROW); - this.state = 9470; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9472; + this.state = 8316; + this.tableFunctionElement(); + this.state = 8321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { + while (_la === 6) { + { { - this.state = 9471; - this.expr_list(); + this.state = 8317; + this.match(PostgreSqlParser.COMMA); + this.state = 8318; + this.tableFunctionElement(); } + } + this.state = 8323; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - - this.state = 9474; - this.match(PostgreSqlParser.CLOSE_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 implicit_row(): Implicit_rowContext { - let localContext = new Implicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1264, PostgreSqlParser.RULE_implicit_row); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9476; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9477; - this.expr_list(); - this.state = 9478; - this.match(PostgreSqlParser.COMMA); - this.state = 9479; - this.a_expr(); - this.state = 9480; - this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -63329,72 +51583,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public sub_type(): Sub_typeContext { - let localContext = new Sub_typeContext(this.context, this.state); - this.enterRule(localContext, 1266, PostgreSqlParser.RULE_sub_type); - let _la: number; + public tableFunctionElement(): TableFunctionElementContext { + let localContext = new TableFunctionElementContext(this.context, this.state); + this.enterRule(localContext, 990, PostgreSqlParser.RULE_tableFunctionElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 9482; - _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 34 || _la === 90)) { - 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 all_op(): All_opContext { - let localContext = new All_opContext(this.context, this.state); - this.enterRule(localContext, 1268, PostgreSqlParser.RULE_all_op); - try { - this.state = 9486; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.Operator: - this.enterOuterAlt(localContext, 1); - { - this.state = 9484; - this.match(PostgreSqlParser.Operator); - } - break; - case PostgreSqlParser.STAR: - case PostgreSqlParser.EQUAL: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.SLASH: - case PostgreSqlParser.CARET: - case PostgreSqlParser.LT: - case PostgreSqlParser.GT: - case PostgreSqlParser.LESS_EQUALS: - case PostgreSqlParser.GREATER_EQUALS: - case PostgreSqlParser.NOT_EQUALS: - case PostgreSqlParser.PERCENT: - this.enterOuterAlt(localContext, 2); - { - this.state = 9485; - this.mathop(); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 8324; + this.columnId(); + this.state = 8325; + this.typeName(); + this.state = 8326; + this.optionalCollateClause(); } } catch (re) { @@ -63411,375 +51611,89 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public mathop(): MathopContext { - let localContext = new MathopContext(this.context, this.state); - this.enterRule(localContext, 1270, PostgreSqlParser.RULE_mathop); + public xmlTable(): XmlTableContext { + let localContext = new XmlTableContext(this.context, this.state); + this.enterRule(localContext, 992, PostgreSqlParser.RULE_xmlTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9488; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public qual_op(): Qual_opContext { - let localContext = new Qual_opContext(this.context, this.state); - this.enterRule(localContext, 1272, PostgreSqlParser.RULE_qual_op); - try { - this.state = 9496; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.Operator: - this.enterOuterAlt(localContext, 1); - { - this.state = 9490; - this.match(PostgreSqlParser.Operator); - } - break; - case PostgreSqlParser.OPERATOR: - this.enterOuterAlt(localContext, 2); - { - this.state = 9491; - this.match(PostgreSqlParser.OPERATOR); - this.state = 9492; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9493; - this.any_operator(); - this.state = 9494; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 qual_all_op(): Qual_all_opContext { - let localContext = new Qual_all_opContext(this.context, this.state); - this.enterRule(localContext, 1274, PostgreSqlParser.RULE_qual_all_op); - try { - this.state = 9504; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.STAR: - case PostgreSqlParser.EQUAL: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.SLASH: - case PostgreSqlParser.CARET: - case PostgreSqlParser.LT: - case PostgreSqlParser.GT: - case PostgreSqlParser.LESS_EQUALS: - case PostgreSqlParser.GREATER_EQUALS: - case PostgreSqlParser.NOT_EQUALS: - case PostgreSqlParser.PERCENT: - case PostgreSqlParser.Operator: - this.enterOuterAlt(localContext, 1); - { - this.state = 9498; - this.all_op(); - } - break; - case PostgreSqlParser.OPERATOR: - this.enterOuterAlt(localContext, 2); - { - this.state = 9499; - this.match(PostgreSqlParser.OPERATOR); - this.state = 9500; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9501; - this.any_operator(); - this.state = 9502; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - 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 subquery_Op(): Subquery_OpContext { - let localContext = new Subquery_OpContext(this.context, this.state); - this.enterRule(localContext, 1276, PostgreSqlParser.RULE_subquery_Op); - try { - this.state = 9518; + this.state = 8328; + this.match(PostgreSqlParser.XMLTABLE); + this.state = 8329; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8357; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9506; - this.all_op(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9507; - this.match(PostgreSqlParser.OPERATOR); - this.state = 9508; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9509; - this.any_operator(); - this.state = 9510; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 9512; - this.match(PostgreSqlParser.LIKE); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 9513; - this.match(PostgreSqlParser.NOT); - this.state = 9514; - this.match(PostgreSqlParser.LIKE); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 9515; - this.match(PostgreSqlParser.ILIKE); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); { - this.state = 9516; - this.match(PostgreSqlParser.NOT); - this.state = 9517; - this.match(PostgreSqlParser.ILIKE); - } - 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 expr_list(): Expr_listContext { - let localContext = new Expr_listContext(this.context, this.state); - this.enterRule(localContext, 1278, PostgreSqlParser.RULE_expr_list); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9520; - this.a_expr(); - this.state = 9525; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 9521; - this.match(PostgreSqlParser.COMMA); - this.state = 9522; - this.a_expr(); - } - } - } - this.state = 9527; + this.state = 8330; + this.expression3(); + this.state = 8331; + this.xmlExistsArgument(); + this.state = 8332; + this.match(PostgreSqlParser.COLUMNS); + this.state = 8333; + this.xmlTableColumnElement(); + this.state = 8338; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, 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 func_arg_list(): Func_arg_listContext { - let localContext = new Func_arg_listContext(this.context, this.state); - this.enterRule(localContext, 1280, PostgreSqlParser.RULE_func_arg_list); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9528; - this.func_arg_expr(); - this.state = 9533; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { + _la = this.tokenStream.LA(1); + while (_la === 6) { { { - this.state = 9529; + this.state = 8334; this.match(PostgreSqlParser.COMMA); - this.state = 9530; - this.func_arg_expr(); + this.state = 8335; + this.xmlTableColumnElement(); } } + this.state = 8340; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - this.state = 9535; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, 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 func_arg_expr(): Func_arg_exprContext { - let localContext = new Func_arg_exprContext(this.context, this.state); - this.enterRule(localContext, 1282, PostgreSqlParser.RULE_func_arg_expr); - let _la: number; - try { - this.state = 9541; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9536; - this.a_expr(); } break; case 2: - this.enterOuterAlt(localContext, 2); { - this.state = 9537; - this.param_name(); - this.state = 9538; + this.state = 8341; + this.match(PostgreSqlParser.XMLNAMESPACES); + this.state = 8342; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8343; + this.xmlNamespaceList(); + this.state = 8344; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8345; + this.match(PostgreSqlParser.COMMA); + this.state = 8346; + this.expression3(); + this.state = 8347; + this.xmlExistsArgument(); + this.state = 8348; + this.match(PostgreSqlParser.COLUMNS); + this.state = 8349; + this.xmlTableColumnElement(); + this.state = 8354; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 20 || _la === 22)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + while (_la === 6) { + { + { + this.state = 8350; + this.match(PostgreSqlParser.COMMA); + this.state = 8351; + this.xmlTableColumnElement(); + } + } + this.state = 8356; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - this.state = 9539; - this.a_expr(); } 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 type_list(): Type_listContext { - let localContext = new Type_listContext(this.context, this.state); - this.enterRule(localContext, 1284, PostgreSqlParser.RULE_type_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9543; - this.typename(); - this.state = 9548; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 9544; - this.match(PostgreSqlParser.COMMA); - this.state = 9545; - this.typename(); - } - } - this.state = 9550; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 8359; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -63796,48 +51710,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public array_expr(): Array_exprContext { - let localContext = new Array_exprContext(this.context, this.state); - this.enterRule(localContext, 1286, PostgreSqlParser.RULE_array_expr); + public xmlTableColumnElement(): XmlTableColumnElementContext { + let localContext = new XmlTableColumnElementContext(this.context, this.state); + this.enterRule(localContext, 994, PostgreSqlParser.RULE_xmlTableColumnElement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9551; - this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 9554; + this.state = 8361; + this.columnId(); + this.state = 8368; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: case PostgreSqlParser.AUTHORIZATION: case PostgreSqlParser.BINARY: case PostgreSqlParser.COLLATION: @@ -64365,34 +52258,128 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: { - this.state = 9552; - this.expr_list(); + this.state = 8362; + this.typeName(); + this.state = 8364; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451841) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || _la === 353 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)) { + { + this.state = 8363; + this.xmlTableColumnOptionList(); + } + } + } break; - case PostgreSqlParser.OPEN_BRACKET: + case PostgreSqlParser.FOR: { - this.state = 9553; - this.array_expr_list(); + this.state = 8366; + this.match(PostgreSqlParser.FOR); + this.state = 8367; + this.match(PostgreSqlParser.ORDINALITY); + } + 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 xmlTableColumnOptionList(): XmlTableColumnOptionListContext { + let localContext = new XmlTableColumnOptionListContext(this.context, this.state); + this.enterRule(localContext, 996, PostgreSqlParser.RULE_xmlTableColumnOptionList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8371; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 8370; + this.xmlTableColumnOptionElement(); + } + } + this.state = 8373; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451841) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || _la === 353 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0) || ((((_la - 636)) & ~0x1F) === 0 && ((1 << (_la - 636)) & 100663331) !== 0)); + } + } + 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 xmlTableColumnOptionElement(): XmlTableColumnOptionElementContext { + let localContext = new XmlTableColumnOptionElementContext(this.context, this.state); + this.enterRule(localContext, 998, PostgreSqlParser.RULE_xmlTableColumnOptionElement); + try { + this.state = 8383; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8375; + this.match(PostgreSqlParser.DEFAULT); + this.state = 8376; + this.expression1(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8377; + this.identifier(); + this.state = 8378; + this.expression1(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 8380; + this.match(PostgreSqlParser.NOT); + this.state = 8381; + this.match(PostgreSqlParser.NULL_P); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 8382; + this.match(PostgreSqlParser.NULL_P); } break; - case PostgreSqlParser.CLOSE_BRACKET: - break; - default: - break; - } - this.state = 9556; - this.match(PostgreSqlParser.CLOSE_BRACKET); } } catch (re) { @@ -64409,28 +52396,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public array_expr_list(): Array_expr_listContext { - let localContext = new Array_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1288, PostgreSqlParser.RULE_array_expr_list); + public xmlNamespaceList(): XmlNamespaceListContext { + let localContext = new XmlNamespaceListContext(this.context, this.state); + this.enterRule(localContext, 1000, PostgreSqlParser.RULE_xmlNamespaceList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9558; - this.array_expr(); - this.state = 9563; + this.state = 8385; + this.xmlNamespaceElement(); + this.state = 8390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9559; + this.state = 8386; this.match(PostgreSqlParser.COMMA); - this.state = 9560; - this.array_expr(); + this.state = 8387; + this.xmlNamespaceElement(); } } - this.state = 9565; + this.state = 8392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -64450,109 +52437,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public extract_list(): Extract_listContext { - let localContext = new Extract_listContext(this.context, this.state); - this.enterRule(localContext, 1290, PostgreSqlParser.RULE_extract_list); + public xmlNamespaceElement(): XmlNamespaceElementContext { + let localContext = new XmlNamespaceElementContext(this.context, this.state); + this.enterRule(localContext, 1002, PostgreSqlParser.RULE_xmlNamespaceElement); try { - this.state = 9571; + this.state = 8399; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.DAY_P: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.HOUR_P: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.MINUTE_P: - case PostgreSqlParser.MONTH_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RESET: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SECOND_P: - case PostgreSqlParser.SET: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.YEAR_P: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9566; - this.extract_arg(); - this.state = 9567; - this.match(PostgreSqlParser.FROM); - this.state = 9568; - this.a_expr(); + this.state = 8393; + this.expression2(0); + this.state = 8394; + this.match(PostgreSqlParser.AS); + this.state = 8395; + this.columnLabel(); } break; - case PostgreSqlParser.CLOSE_PAREN: + case 2: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 8397; + this.match(PostgreSqlParser.DEFAULT); + this.state = 8398; + this.expression2(0); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -64569,141 +52480,106 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public extract_arg(): Extract_argContext { - let localContext = new Extract_argContext(this.context, this.state); - this.enterRule(localContext, 1292, PostgreSqlParser.RULE_extract_arg); + public typeName(): TypeNameContext { + let localContext = new TypeNameContext(this.context, this.state); + this.enterRule(localContext, 1004, PostgreSqlParser.RULE_typeName); + let _la: number; try { - this.state = 9581; + let alternative: number; + this.state = 8428; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.AND: - case PostgreSqlParser.ARRAY: - case PostgreSqlParser.COLLATE: - case PostgreSqlParser.COLUMN: - case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DO: - case PostgreSqlParser.FETCH: - case PostgreSqlParser.TABLE: - case PostgreSqlParser.IS: - case PostgreSqlParser.OUTER_P: - case PostgreSqlParser.ABSOLUTE_P: - case PostgreSqlParser.BACKWARD: - case PostgreSqlParser.CHAIN: - case PostgreSqlParser.CLOSE: - case PostgreSqlParser.COMMIT: - case PostgreSqlParser.CONTINUE_P: - case PostgreSqlParser.CURSOR: - case PostgreSqlParser.FIRST_P: - case PostgreSqlParser.FORWARD: - case PostgreSqlParser.INSERT: - case PostgreSqlParser.LAST_P: - case PostgreSqlParser.MOVE: - case PostgreSqlParser.NEXT: - case PostgreSqlParser.NO: - case PostgreSqlParser.OPTION: - case PostgreSqlParser.PRIOR: - case PostgreSqlParser.RELATIVE_P: - case PostgreSqlParser.RESET: - case PostgreSqlParser.ROLLBACK: - case PostgreSqlParser.SCHEMA: - case PostgreSqlParser.SCROLL: - case PostgreSqlParser.SET: - case PostgreSqlParser.TYPE_P: - case PostgreSqlParser.CALL: - case PostgreSqlParser.CURRENT_P: - case PostgreSqlParser.ROWTYPE: - case PostgreSqlParser.DUMP: - case PostgreSqlParser.PRINT_STRICT_PARAMS: - case PostgreSqlParser.VARIABLE_CONFLICT: - case PostgreSqlParser.ERROR: - case PostgreSqlParser.USE_VARIABLE: - case PostgreSqlParser.USE_COLUMN: - case PostgreSqlParser.ALIAS: - case PostgreSqlParser.CONSTANT: - case PostgreSqlParser.PERFORM: - case PostgreSqlParser.GET: - case PostgreSqlParser.DIAGNOSTICS: - case PostgreSqlParser.STACKED: - case PostgreSqlParser.ELSIF: - case PostgreSqlParser.SLICE: - case PostgreSqlParser.EXIT: - case PostgreSqlParser.RETURN: - case PostgreSqlParser.QUERY: - case PostgreSqlParser.RAISE: - case PostgreSqlParser.SQLSTATE: - case PostgreSqlParser.DEBUG: - case PostgreSqlParser.INFO: - case PostgreSqlParser.NOTICE: - case PostgreSqlParser.WARNING: - case PostgreSqlParser.EXCEPTION: - case PostgreSqlParser.ASSERT: - case PostgreSqlParser.OPEN: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: + switch (this.interpreter.adaptivePredict(this.tokenStream, 536, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9573; - this.identifier(); - } - break; - case PostgreSqlParser.YEAR_P: - this.enterOuterAlt(localContext, 2); - { - this.state = 9574; - this.match(PostgreSqlParser.YEAR_P); - } - break; - case PostgreSqlParser.MONTH_P: - this.enterOuterAlt(localContext, 3); - { - this.state = 9575; - this.match(PostgreSqlParser.MONTH_P); + this.state = 8402; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 408) { + { + this.state = 8401; + this.match(PostgreSqlParser.SETOF); + } } - break; - case PostgreSqlParser.DAY_P: - this.enterOuterAlt(localContext, 4); - { - this.state = 9576; - this.match(PostgreSqlParser.DAY_P); + + this.state = 8404; + this.simpleTypeName(); + this.state = 8422; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 535, this.context) ) { + case 1: + { + this.state = 8412; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 533, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8405; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 8407; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 658) { + { + this.state = 8406; + this.iconst(); + } + } + + this.state = 8409; + this.match(PostgreSqlParser.CLOSE_BRACKET); + } + } + } + this.state = 8414; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 533, this.context); + } + } + break; + case 2: + { + this.state = 8415; + this.match(PostgreSqlParser.ARRAY); + this.state = 8420; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { + case 1: + { + this.state = 8416; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 8417; + this.iconst(); + this.state = 8418; + this.match(PostgreSqlParser.CLOSE_BRACKET); + } + break; + } + } + break; } - break; - case PostgreSqlParser.HOUR_P: - this.enterOuterAlt(localContext, 5); - { - this.state = 9577; - this.match(PostgreSqlParser.HOUR_P); } break; - case PostgreSqlParser.MINUTE_P: - this.enterOuterAlt(localContext, 6); + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 9578; - this.match(PostgreSqlParser.MINUTE_P); + this.state = 8424; + this.qualifiedName(); + this.state = 8425; + this.match(PostgreSqlParser.PERCENT); + this.state = 8426; + _la = this.tokenStream.LA(1); + if(!(_la === 353 || _la === 477)) { + this.errorHandler.recoverInline(this); } - break; - case PostgreSqlParser.SECOND_P: - this.enterOuterAlt(localContext, 7); - { - this.state = 9579; - this.match(PostgreSqlParser.SECOND_P); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 8); - { - this.state = 9580; - this.sconst(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -64720,22 +52596,75 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public unicode_normal_form(): Unicode_normal_formContext { - let localContext = new Unicode_normal_formContext(this.context, this.state); - this.enterRule(localContext, 1294, PostgreSqlParser.RULE_unicode_normal_form); - let _la: number; + public simpleTypeName(): SimpleTypeNameContext { + let localContext = new SimpleTypeNameContext(this.context, this.state); + this.enterRule(localContext, 1006, PostgreSqlParser.RULE_simpleTypeName); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9583; - _la = this.tokenStream.LA(1); - if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 8443; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8430; + this.genericType(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8431; + this.numeric(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 8432; + this.bit(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 8433; + this.character(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 8434; + this.constDateTime(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 8435; + this.constInterval(); + this.state = 8441; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { + case 1: + { + this.state = 8436; + this.optionalInterval(); + } + break; + case 2: + { + this.state = 8437; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8438; + this.iconst(); + this.state = 8439; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; } } catch (re) { @@ -64752,35 +52681,58 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public overlay_list(): Overlay_listContext { - let localContext = new Overlay_listContext(this.context, this.state); - this.enterRule(localContext, 1296, PostgreSqlParser.RULE_overlay_list); - let _la: number; + public constTypeName(): ConstTypeNameContext { + let localContext = new ConstTypeNameContext(this.context, this.state); + this.enterRule(localContext, 1008, PostgreSqlParser.RULE_constTypeName); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9585; - this.a_expr(); - this.state = 9586; - this.match(PostgreSqlParser.PLACING); - this.state = 9587; - this.a_expr(); - this.state = 9588; - this.match(PostgreSqlParser.FROM); - this.state = 9589; - this.a_expr(); - this.state = 9592; + this.state = 8449; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.REAL: + case PostgreSqlParser.SMALLINT: + this.enterOuterAlt(localContext, 1); { - this.state = 9590; - this.match(PostgreSqlParser.FOR); - this.state = 9591; - this.a_expr(); + this.state = 8445; + this.numeric(); } - } - + break; + case PostgreSqlParser.BIT: + this.enterOuterAlt(localContext, 2); + { + this.state = 8446; + this.constBit(); + } + break; + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.VARCHAR: + this.enterOuterAlt(localContext, 3); + { + this.state = 8447; + this.constCharacter(); + } + break; + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + this.enterOuterAlt(localContext, 4); + { + this.state = 8448; + this.constDateTime(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -64797,43 +52749,154 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public position_list(): Position_listContext { - let localContext = new Position_listContext(this.context, this.state); - this.enterRule(localContext, 1298, PostgreSqlParser.RULE_position_list); + public genericType(): GenericTypeContext { + let localContext = new GenericTypeContext(this.context, this.state); + this.enterRule(localContext, 1010, PostgreSqlParser.RULE_genericType); try { - this.state = 9599; + this.enterOuterAlt(localContext, 1); + { + this.state = 8455; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.LOG: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + { + this.state = 8451; + this.builtinFunctionName(); + } + break; case PostgreSqlParser.AND: case PostgreSqlParser.ARRAY: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: case PostgreSqlParser.DO: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.SESSION_USER: case PostgreSqlParser.TABLE: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: case PostgreSqlParser.AUTHORIZATION: case PostgreSqlParser.BINARY: case PostgreSqlParser.COLLATION: @@ -64847,14 +52910,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.IS: case PostgreSqlParser.ISNULL: case PostgreSqlParser.JOIN: - case PostgreSqlParser.LEFT: case PostgreSqlParser.LIKE: case PostgreSqlParser.NATURAL: case PostgreSqlParser.NOTNULL: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.RIGHT: case PostgreSqlParser.SIMILAR: case PostgreSqlParser.VERBOSE: case PostgreSqlParser.ABORT_P: @@ -65030,7 +53091,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.RELEASE: case PostgreSqlParser.RENAME: case PostgreSqlParser.REPEATABLE: - case PostgreSqlParser.REPLACE: case PostgreSqlParser.REPLICA: case PostgreSqlParser.RESET: case PostgreSqlParser.RESTART: @@ -65106,59 +53166,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.YEAR_P: case PostgreSqlParser.YES_P: case PostgreSqlParser.ZONE: - case PostgreSqlParser.BETWEEN: - case PostgreSqlParser.BIGINT: - case PostgreSqlParser.BIT: - case PostgreSqlParser.BOOLEAN_P: - case PostgreSqlParser.CHAR_P: - case PostgreSqlParser.CHARACTER: - case PostgreSqlParser.COALESCE: - case PostgreSqlParser.DEC: - case PostgreSqlParser.DECIMAL_P: - case PostgreSqlParser.EXISTS: - case PostgreSqlParser.EXTRACT: - case PostgreSqlParser.FLOAT_P: - case PostgreSqlParser.GREATEST: - case PostgreSqlParser.INOUT: - case PostgreSqlParser.INT_P: - case PostgreSqlParser.INTEGER: - case PostgreSqlParser.INTERVAL: - case PostgreSqlParser.LEAST: - case PostgreSqlParser.NATIONAL: - case PostgreSqlParser.NCHAR: - case PostgreSqlParser.NONE: - case PostgreSqlParser.NULLIF: - case PostgreSqlParser.NUMERIC: - case PostgreSqlParser.OVERLAY: - case PostgreSqlParser.POSITION: - case PostgreSqlParser.PRECISION: - case PostgreSqlParser.REAL: - case PostgreSqlParser.ROW: - case PostgreSqlParser.SETOF: - case PostgreSqlParser.SMALLINT: - case PostgreSqlParser.SUBSTRING: - case PostgreSqlParser.TIME: - case PostgreSqlParser.TIMESTAMP: - case PostgreSqlParser.TREAT: - case PostgreSqlParser.TRIM: - case PostgreSqlParser.VALUES: - case PostgreSqlParser.VARCHAR: - case PostgreSqlParser.XMLATTRIBUTES: - case PostgreSqlParser.XMLCOMMENT: - case PostgreSqlParser.XMLAGG: - case PostgreSqlParser.XML_IS_WELL_FORMED: - case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: - case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: - case PostgreSqlParser.XPATH: - case PostgreSqlParser.XPATH_EXISTS: - case PostgreSqlParser.XMLCONCAT: - case PostgreSqlParser.XMLELEMENT: - case PostgreSqlParser.XMLEXISTS: - case PostgreSqlParser.XMLFOREST: - case PostgreSqlParser.XMLPARSE: - case PostgreSqlParser.XMLPI: - case PostgreSqlParser.XMLROOT: - case PostgreSqlParser.XMLSERIALIZE: case PostgreSqlParser.CALL: case PostgreSqlParser.CURRENT_P: case PostgreSqlParser.ATTACH: @@ -65179,7 +53186,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.VALUE_P: case PostgreSqlParser.SUBSCRIPTION: case PostgreSqlParser.PUBLICATION: - case PostgreSqlParser.OUT_P: case PostgreSqlParser.ROUTINES: case PostgreSqlParser.SCHEMAS: case PostgreSqlParser.PROCEDURES: @@ -65195,13 +53201,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.TIES: case PostgreSqlParser.ROLLUP: case PostgreSqlParser.CUBE: - case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: - case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: - case PostgreSqlParser.XMLNAMESPACES: case PostgreSqlParser.ROWTYPE: case PostgreSqlParser.NORMALIZED: case PostgreSqlParser.WITHIN: @@ -65214,7 +53217,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.NFKD: case PostgreSqlParser.UESCAPE: case PostgreSqlParser.VIEWS: - case PostgreSqlParser.NORMALIZE: case PostgreSqlParser.DUMP: case PostgreSqlParser.PRINT_STRICT_PARAMS: case PostgreSqlParser.VARIABLE_CONFLICT: @@ -65228,7 +53230,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.DIAGNOSTICS: case PostgreSqlParser.STACKED: case PostgreSqlParser.ELSIF: - case PostgreSqlParser.REVERSE: case PostgreSqlParser.SLICE: case PostgreSqlParser.EXIT: case PostgreSqlParser.RETURN: @@ -65236,159 +53237,1734 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.RAISE: case PostgreSqlParser.SQLSTATE: case PostgreSqlParser.DEBUG: - case PostgreSqlParser.LOG: case PostgreSqlParser.INFO: case PostgreSqlParser.NOTICE: case PostgreSqlParser.WARNING: case PostgreSqlParser.EXCEPTION: case PostgreSqlParser.ASSERT: case PostgreSqlParser.OPEN: - case PostgreSqlParser.ABS: - case PostgreSqlParser.CBRT: - case PostgreSqlParser.CEIL: - case PostgreSqlParser.CEILING: - case PostgreSqlParser.DEGREES: - case PostgreSqlParser.DIV: - case PostgreSqlParser.EXP: - case PostgreSqlParser.FACTORIAL: - case PostgreSqlParser.FLOOR: - case PostgreSqlParser.GCD: - case PostgreSqlParser.LCM: - case PostgreSqlParser.LN: - case PostgreSqlParser.LOG10: - case PostgreSqlParser.MIN_SCALE: - case PostgreSqlParser.MOD: - case PostgreSqlParser.PI: - case PostgreSqlParser.POWER: - case PostgreSqlParser.RADIANS: - case PostgreSqlParser.ROUND: - case PostgreSqlParser.SCALE: - case PostgreSqlParser.SIGN: - case PostgreSqlParser.SQRT: - case PostgreSqlParser.TRIM_SCALE: - case PostgreSqlParser.TRUNC: - case PostgreSqlParser.WIDTH_BUCKET: - case PostgreSqlParser.RANDOM: - case PostgreSqlParser.SETSEED: - case PostgreSqlParser.ACOS: - case PostgreSqlParser.ACOSD: - case PostgreSqlParser.ASIN: - case PostgreSqlParser.ASIND: - case PostgreSqlParser.ATAN: - case PostgreSqlParser.ATAND: - case PostgreSqlParser.ATAN2: - case PostgreSqlParser.ATAN2D: - case PostgreSqlParser.COS: - case PostgreSqlParser.COSD: - case PostgreSqlParser.COT: - case PostgreSqlParser.COTD: - case PostgreSqlParser.SIN: - case PostgreSqlParser.SIND: - case PostgreSqlParser.TAN: - case PostgreSqlParser.TAND: - case PostgreSqlParser.SINH: - case PostgreSqlParser.COSH: - case PostgreSqlParser.TANH: - case PostgreSqlParser.ASINH: - case PostgreSqlParser.ACOSH: - case PostgreSqlParser.ATANH: - case PostgreSqlParser.BIT_LENGTH: - case PostgreSqlParser.CHAR_LENGTH: - case PostgreSqlParser.CHARACTER_LENGTH: - case PostgreSqlParser.LOWER: - case PostgreSqlParser.OCTET_LENGTH: - case PostgreSqlParser.UPPER: - case PostgreSqlParser.ASCII: - case PostgreSqlParser.BTRIM: - case PostgreSqlParser.CHR: - case PostgreSqlParser.CONCAT: - case PostgreSqlParser.CONCAT_WS: - case PostgreSqlParser.FORMAT: - case PostgreSqlParser.INITCAP: - case PostgreSqlParser.LENGTH: - case PostgreSqlParser.LPAD: - case PostgreSqlParser.LTRIM: - case PostgreSqlParser.MD5: - case PostgreSqlParser.PARSE_IDENT: - case PostgreSqlParser.PG_CLIENT_ENCODING: - case PostgreSqlParser.QUOTE_IDENT: - case PostgreSqlParser.QUOTE_LITERAL: - case PostgreSqlParser.QUOTE_NULLABLE: - case PostgreSqlParser.REGEXP_COUNT: - case PostgreSqlParser.REGEXP_INSTR: - case PostgreSqlParser.REGEXP_LIKE: - case PostgreSqlParser.REGEXP_MATCH: - case PostgreSqlParser.REGEXP_MATCHES: - case PostgreSqlParser.REGEXP_REPLACE: - case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: - case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: - case PostgreSqlParser.REGEXP_SUBSTR: - case PostgreSqlParser.REPEAT: - case PostgreSqlParser.RPAD: - case PostgreSqlParser.RTRIM: - case PostgreSqlParser.SPLIT_PART: - case PostgreSqlParser.STARTS_WITH: - case PostgreSqlParser.STRING_TO_ARRAY: - case PostgreSqlParser.STRING_TO_TABLE: - case PostgreSqlParser.STRPOS: - case PostgreSqlParser.SUBSTR: - case PostgreSqlParser.TO_ASCII: - case PostgreSqlParser.TO_HEX: - case PostgreSqlParser.TRANSLATE: - case PostgreSqlParser.UNISTR: - case PostgreSqlParser.AGE: - case PostgreSqlParser.CLOCK_TIMESTAMP: - case PostgreSqlParser.DATE_BIN: - case PostgreSqlParser.DATE_PART: - case PostgreSqlParser.DATE_TRUNC: - case PostgreSqlParser.ISFINITE: - case PostgreSqlParser.JUSTIFY_DAYS: - case PostgreSqlParser.JUSTIFY_HOURS: - case PostgreSqlParser.JUSTIFY_INTERVAL: - case PostgreSqlParser.MAKE_DATE: - case PostgreSqlParser.MAKE_INTERVAL: - case PostgreSqlParser.MAKE_TIME: - case PostgreSqlParser.MAKE_TIMESTAMP: - case PostgreSqlParser.MAKE_TIMESTAMPTZ: - case PostgreSqlParser.NOW: - case PostgreSqlParser.STATEMENT_TIMESTAMP: - case PostgreSqlParser.TIMEOFDAY: - case PostgreSqlParser.TRANSACTION_TIMESTAMP: - case PostgreSqlParser.TO_TIMESTAMP: - case PostgreSqlParser.TO_CHAR: - case PostgreSqlParser.TO_DATE: - case PostgreSqlParser.TO_NUMBER: case PostgreSqlParser.Identifier: case PostgreSqlParser.QuotedIdentifier: case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: + { + this.state = 8452; + this.typeFunctionName(); + } + break; + case PostgreSqlParser.LEFT: + { + this.state = 8453; + this.match(PostgreSqlParser.LEFT); + } + break; + case PostgreSqlParser.RIGHT: + { + this.state = 8454; + this.match(PostgreSqlParser.RIGHT); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 8458; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { + case 1: + { + this.state = 8457; + this.attributes(); + } + break; + } + this.state = 8460; + this.optionalTypeModifiers(); + } + } + 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 optionalTypeModifiers(): OptionalTypeModifiersContext { + let localContext = new OptionalTypeModifiersContext(this.context, this.state); + this.enterRule(localContext, 1012, PostgreSqlParser.RULE_optionalTypeModifiers); + try { + this.state = 8467; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8462; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8463; + this.expressionList(); + this.state = 8464; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 numeric(): NumericContext { + let localContext = new NumericContext(this.context, this.state); + this.enterRule(localContext, 1014, PostgreSqlParser.RULE_numeric); + try { + this.state = 8485; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.INT_P: + this.enterOuterAlt(localContext, 1); + { + this.state = 8469; + this.match(PostgreSqlParser.INT_P); + } + break; + case PostgreSqlParser.INTEGER: + this.enterOuterAlt(localContext, 2); + { + this.state = 8470; + this.match(PostgreSqlParser.INTEGER); + } + break; + case PostgreSqlParser.SMALLINT: + this.enterOuterAlt(localContext, 3); + { + this.state = 8471; + this.match(PostgreSqlParser.SMALLINT); + } + break; + case PostgreSqlParser.BIGINT: + this.enterOuterAlt(localContext, 4); + { + this.state = 8472; + this.match(PostgreSqlParser.BIGINT); + } + break; + case PostgreSqlParser.REAL: + this.enterOuterAlt(localContext, 5); + { + this.state = 8473; + this.match(PostgreSqlParser.REAL); + } + break; + case PostgreSqlParser.FLOAT_P: + this.enterOuterAlt(localContext, 6); + { + this.state = 8474; + this.match(PostgreSqlParser.FLOAT_P); + this.state = 8475; + this.optionalFloat(); + } + break; + case PostgreSqlParser.DOUBLE_P: + this.enterOuterAlt(localContext, 7); + { + this.state = 8476; + this.match(PostgreSqlParser.DOUBLE_P); + this.state = 8477; + this.match(PostgreSqlParser.PRECISION); + } + break; + case PostgreSqlParser.DECIMAL_P: + this.enterOuterAlt(localContext, 8); + { + this.state = 8478; + this.match(PostgreSqlParser.DECIMAL_P); + this.state = 8479; + this.optionalTypeModifiers(); + } + break; + case PostgreSqlParser.DEC: + this.enterOuterAlt(localContext, 9); + { + this.state = 8480; + this.match(PostgreSqlParser.DEC); + this.state = 8481; + this.optionalTypeModifiers(); + } + break; + case PostgreSqlParser.NUMERIC: + this.enterOuterAlt(localContext, 10); + { + this.state = 8482; + this.match(PostgreSqlParser.NUMERIC); + this.state = 8483; + this.optionalTypeModifiers(); + } + break; + case PostgreSqlParser.BOOLEAN_P: + this.enterOuterAlt(localContext, 11); + { + this.state = 8484; + this.match(PostgreSqlParser.BOOLEAN_P); + } + 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 optionalFloat(): OptionalFloatContext { + let localContext = new OptionalFloatContext(this.context, this.state); + this.enterRule(localContext, 1016, PostgreSqlParser.RULE_optionalFloat); + try { + this.state = 8492; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8487; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8488; + this.iconst(); + this.state = 8489; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 bit(): BitContext { + let localContext = new BitContext(this.context, this.state); + this.enterRule(localContext, 1018, PostgreSqlParser.RULE_bit); + try { + this.state = 8496; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8494; + this.bitWithLength(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8495; + this.bitWithoutLength(); + } + 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 constBit(): ConstBitContext { + let localContext = new ConstBitContext(this.context, this.state); + this.enterRule(localContext, 1020, PostgreSqlParser.RULE_constBit); + try { + this.state = 8500; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8498; + this.bitWithLength(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8499; + this.bitWithoutLength(); + } + 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 bitWithLength(): BitWithLengthContext { + let localContext = new BitWithLengthContext(this.context, this.state); + this.enterRule(localContext, 1022, PostgreSqlParser.RULE_bitWithLength); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8502; + this.match(PostgreSqlParser.BIT); + this.state = 8503; + this.optionalVarying(); + this.state = 8504; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8505; + this.expressionList(); + this.state = 8506; + this.match(PostgreSqlParser.CLOSE_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 bitWithoutLength(): BitWithoutLengthContext { + let localContext = new BitWithoutLengthContext(this.context, this.state); + this.enterRule(localContext, 1024, PostgreSqlParser.RULE_bitWithoutLength); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8508; + this.match(PostgreSqlParser.BIT); + this.state = 8509; + this.optionalVarying(); + } + } + 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 character(): CharacterContext { + let localContext = new CharacterContext(this.context, this.state); + this.enterRule(localContext, 1026, PostgreSqlParser.RULE_character); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8511; + this.characterChar(); + this.state = 8516; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { + case 1: + { + this.state = 8512; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8513; + this.iconst(); + this.state = 8514; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 constCharacter(): ConstCharacterContext { + let localContext = new ConstCharacterContext(this.context, this.state); + this.enterRule(localContext, 1028, PostgreSqlParser.RULE_constCharacter); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8518; + this.characterChar(); + this.state = 8523; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 2) { + { + this.state = 8519; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8520; + this.iconst(); + this.state = 8521; + this.match(PostgreSqlParser.CLOSE_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 characterChar(): CharacterCharContext { + let localContext = new CharacterCharContext(this.context, this.state); + this.enterRule(localContext, 1030, PostgreSqlParser.RULE_characterChar); + let _la: number; + try { + this.state = 8531; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.NCHAR: + this.enterOuterAlt(localContext, 1); + { + this.state = 8525; + _la = this.tokenStream.LA(1); + if(!(((((_la - 384)) & ~0x1F) === 0 && ((1 << (_la - 384)) & 32771) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8526; + this.optionalVarying(); + } + break; + case PostgreSqlParser.VARCHAR: + this.enterOuterAlt(localContext, 2); + { + this.state = 8527; + this.match(PostgreSqlParser.VARCHAR); + } + break; + case PostgreSqlParser.NATIONAL: + this.enterOuterAlt(localContext, 3); + { + this.state = 8528; + this.match(PostgreSqlParser.NATIONAL); + this.state = 8529; + _la = this.tokenStream.LA(1); + if(!(_la === 384 || _la === 385)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8530; + this.optionalVarying(); + } + 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 optionalVarying(): OptionalVaryingContext { + let localContext = new OptionalVaryingContext(this.context, this.state); + this.enterRule(localContext, 1032, PostgreSqlParser.RULE_optionalVarying); + try { + this.state = 8535; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8533; + this.match(PostgreSqlParser.VARYING); + } + 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 constDateTime(): ConstDateTimeContext { + let localContext = new ConstDateTimeContext(this.context, this.state); + this.enterRule(localContext, 1034, PostgreSqlParser.RULE_constDateTime); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8537; + _la = this.tokenStream.LA(1); + if(!(_la === 411 || _la === 412)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8542; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + case 1: + { + this.state = 8538; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8539; + this.iconst(); + this.state = 8540; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + this.state = 8544; + this.optionalTimezone(); + } + } + 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 constInterval(): ConstIntervalContext { + let localContext = new ConstIntervalContext(this.context, this.state); + this.enterRule(localContext, 1036, PostgreSqlParser.RULE_constInterval); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8546; + this.match(PostgreSqlParser.INTERVAL); + } + } + 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 optionalTimezone(): OptionalTimezoneContext { + let localContext = new OptionalTimezoneContext(this.context, this.state); + this.enterRule(localContext, 1038, PostgreSqlParser.RULE_optionalTimezone); + try { + this.state = 8555; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8548; + this.match(PostgreSqlParser.WITH); + this.state = 8549; + this.match(PostgreSqlParser.TIME); + this.state = 8550; + this.match(PostgreSqlParser.ZONE); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8551; + this.match(PostgreSqlParser.WITHOUT); + this.state = 8552; + this.match(PostgreSqlParser.TIME); + this.state = 8553; + this.match(PostgreSqlParser.ZONE); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + // 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 optionalInterval(): OptionalIntervalContext { + let localContext = new OptionalIntervalContext(this.context, this.state); + this.enterRule(localContext, 1040, PostgreSqlParser.RULE_optionalInterval); + try { + this.state = 8583; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8557; + this.match(PostgreSqlParser.YEAR_P); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8558; + this.match(PostgreSqlParser.MONTH_P); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 8559; + this.match(PostgreSqlParser.DAY_P); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 8560; + this.match(PostgreSqlParser.HOUR_P); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 8561; + this.match(PostgreSqlParser.MINUTE_P); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 8562; + this.intervalSecond(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 8563; + this.match(PostgreSqlParser.YEAR_P); + this.state = 8564; + this.match(PostgreSqlParser.TO); + this.state = 8565; + this.match(PostgreSqlParser.MONTH_P); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 8566; + this.match(PostgreSqlParser.DAY_P); + this.state = 8567; + this.match(PostgreSqlParser.TO); + this.state = 8571; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.HOUR_P: + { + this.state = 8568; + this.match(PostgreSqlParser.HOUR_P); + } + break; + case PostgreSqlParser.MINUTE_P: + { + this.state = 8569; + this.match(PostgreSqlParser.MINUTE_P); + } + break; + case PostgreSqlParser.SECOND_P: + { + this.state = 8570; + this.intervalSecond(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 8573; + this.match(PostgreSqlParser.HOUR_P); + this.state = 8574; + this.match(PostgreSqlParser.TO); + this.state = 8577; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.MINUTE_P: + { + this.state = 8575; + this.match(PostgreSqlParser.MINUTE_P); + } + break; + case PostgreSqlParser.SECOND_P: + { + this.state = 8576; + this.intervalSecond(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 10: + this.enterOuterAlt(localContext, 10); + { + this.state = 8579; + this.match(PostgreSqlParser.MINUTE_P); + this.state = 8580; + this.match(PostgreSqlParser.TO); + this.state = 8581; + this.intervalSecond(); + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + // 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 intervalSecond(): IntervalSecondContext { + let localContext = new IntervalSecondContext(this.context, this.state); + this.enterRule(localContext, 1042, PostgreSqlParser.RULE_intervalSecond); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8585; + this.match(PostgreSqlParser.SECOND_P); + this.state = 8590; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + case 1: + { + this.state = 8586; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8587; + this.iconst(); + this.state = 8588; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 optionalEscape(): OptionalEscapeContext { + let localContext = new OptionalEscapeContext(this.context, this.state); + this.enterRule(localContext, 1044, PostgreSqlParser.RULE_optionalEscape); + try { + this.state = 8595; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9594; - this.b_expr(0); - this.state = 9595; + this.state = 8592; + this.match(PostgreSqlParser.ESCAPE); + this.state = 8593; + this.expression1(); + } + 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 expression1(): Expression1Context { + let localContext = new Expression1Context(this.context, this.state); + this.enterRule(localContext, 1046, PostgreSqlParser.RULE_expression1); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8597; + this.expression1Qualifier(); + } + } + 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 expression1Qualifier(): Expression1QualifierContext { + let localContext = new Expression1QualifierContext(this.context, this.state); + this.enterRule(localContext, 1048, PostgreSqlParser.RULE_expression1Qualifier); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8599; + this.expression1LessLess(); + this.state = 8601; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + case 1: + { + this.state = 8600; + this.operatorQualifier(); + } + 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 expression1LessLess(): Expression1LessLessContext { + let localContext = new Expression1LessLessContext(this.context, this.state); + this.enterRule(localContext, 1050, PostgreSqlParser.RULE_expression1LessLess); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8603; + this.expression1Or(); + this.state = 8608; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 559, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8604; + _la = this.tokenStream.LA(1); + if(!(_la === 18 || _la === 19)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8605; + this.expression1Or(); + } + } + } + this.state = 8610; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 559, 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 expression1Or(): Expression1OrContext { + let localContext = new Expression1OrContext(this.context, this.state); + this.enterRule(localContext, 1052, PostgreSqlParser.RULE_expression1Or); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8611; + this.expression1And(); + this.state = 8616; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 560, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8612; + this.match(PostgreSqlParser.OR); + this.state = 8613; + this.expression1And(); + } + } + } + this.state = 8618; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 560, 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 expression1And(): Expression1AndContext { + let localContext = new Expression1AndContext(this.context, this.state); + this.enterRule(localContext, 1054, PostgreSqlParser.RULE_expression1And); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8619; + this.expression1Between(); + this.state = 8624; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 561, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8620; + this.match(PostgreSqlParser.AND); + this.state = 8621; + this.expression1Between(); + } + } + } + this.state = 8626; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 561, 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 expression1Between(): Expression1BetweenContext { + let localContext = new Expression1BetweenContext(this.context, this.state); + this.enterRule(localContext, 1056, PostgreSqlParser.RULE_expression1Between); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8627; + this.expression1In(); + this.state = 8639; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + case 1: + { + this.state = 8629; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8628; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8631; + this.match(PostgreSqlParser.BETWEEN); + this.state = 8633; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 91) { + { + this.state = 8632; + this.match(PostgreSqlParser.SYMMETRIC); + } + } + + this.state = 8635; + this.expression1In(); + this.state = 8636; + this.match(PostgreSqlParser.AND); + this.state = 8637; + this.expression1In(); + } + 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 expression1In(): Expression1InContext { + let localContext = new Expression1InContext(this.context, this.state); + this.enterRule(localContext, 1058, PostgreSqlParser.RULE_expression1In); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8641; + this.expression1UnaryNot(); + this.state = 8647; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { + case 1: + { + this.state = 8643; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8642; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8645; this.match(PostgreSqlParser.IN_P); - this.state = 9596; - this.b_expr(0); + this.state = 8646; + this.inExpression(); + } + 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 expression1UnaryNot(): Expression1UnaryNotContext { + let localContext = new Expression1UnaryNotContext(this.context, this.state); + this.enterRule(localContext, 1060, PostgreSqlParser.RULE_expression1UnaryNot); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8650; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8649; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8652; + this.expression1IsNull(); + } + } + 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 expression1IsNull(): Expression1IsNullContext { + let localContext = new Expression1IsNullContext(this.context, this.state); + this.enterRule(localContext, 1062, PostgreSqlParser.RULE_expression1IsNull); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8654; + this.expression1IsNot(); + this.state = 8656; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { + case 1: + { + this.state = 8655; + _la = this.tokenStream.LA(1); + if(!(_la === 117 || _la === 122)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + 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 expression1IsNot(): Expression1IsNotContext { + let localContext = new Expression1IsNotContext(this.context, this.state); + this.enterRule(localContext, 1064, PostgreSqlParser.RULE_expression1IsNot); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8658; + this.expression1Compare(); + this.state = 8682; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { + case 1: + { + this.state = 8659; + this.match(PostgreSqlParser.IS); + this.state = 8661; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8660; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8680; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.NULL_P: + { + this.state = 8663; + this.match(PostgreSqlParser.NULL_P); + } + break; + case PostgreSqlParser.TRUE_P: + { + this.state = 8664; + this.match(PostgreSqlParser.TRUE_P); + } + break; + case PostgreSqlParser.FALSE_P: + { + this.state = 8665; + this.match(PostgreSqlParser.FALSE_P); + } + break; + case PostgreSqlParser.UNKNOWN: + { + this.state = 8666; + this.match(PostgreSqlParser.UNKNOWN); + } + break; + case PostgreSqlParser.DISTINCT: + { + this.state = 8667; + this.match(PostgreSqlParser.DISTINCT); + this.state = 8668; + this.match(PostgreSqlParser.FROM); + this.state = 8669; + this.expression1(); + } + break; + case PostgreSqlParser.OF: + { + this.state = 8670; + this.match(PostgreSqlParser.OF); + this.state = 8671; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8672; + this.typeList(); + this.state = 8673; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.DOCUMENT_P: + { + this.state = 8675; + this.match(PostgreSqlParser.DOCUMENT_P); + } + break; + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + { + this.state = 8677; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0)) { + { + this.state = 8676; + this.unicodeNormalForm(); + } + } + + this.state = 8679; + this.match(PostgreSqlParser.NORMALIZED); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + 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 expression1Compare(): Expression1CompareContext { + let localContext = new Expression1CompareContext(this.context, this.state); + this.enterRule(localContext, 1066, PostgreSqlParser.RULE_expression1Compare); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8684; + this.expression1Like(); + this.state = 8696; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { + case 1: + { + this.state = 8685; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8686; + this.expression1Like(); + } + break; + case 2: + { + this.state = 8687; + this.subqueryOperator(); + this.state = 8688; + this.subType(); + this.state = 8694; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { + case 1: + { + this.state = 8689; + this.selectWithParenthesis(); + } + break; + case 2: + { + this.state = 8690; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8691; + this.expression1(); + this.state = 8692; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + 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 expression1Like(): Expression1LikeContext { + let localContext = new Expression1LikeContext(this.context, this.state); + this.enterRule(localContext, 1068, PostgreSqlParser.RULE_expression1Like); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8698; + this.expression1qualifierOperator(); + this.state = 8711; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + case 1: + { + this.state = 8700; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8699; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8706; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.LIKE: + { + this.state = 8702; + this.match(PostgreSqlParser.LIKE); + } + break; + case PostgreSqlParser.ILIKE: + { + this.state = 8703; + this.match(PostgreSqlParser.ILIKE); + } + break; + case PostgreSqlParser.SIMILAR: + { + this.state = 8704; + this.match(PostgreSqlParser.SIMILAR); + this.state = 8705; + this.match(PostgreSqlParser.TO); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 8708; + this.expression1qualifierOperator(); + this.state = 8709; + this.optionalEscape(); + } + 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 expression1qualifierOperator(): Expression1qualifierOperatorContext { + let localContext = new Expression1qualifierOperatorContext(this.context, this.state); + this.enterRule(localContext, 1070, PostgreSqlParser.RULE_expression1qualifierOperator); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8713; + this.expression1UnaryQualifierOperator(); + this.state = 8719; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 578, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8714; + this.operatorQualifier(); + this.state = 8715; + this.expression1UnaryQualifierOperator(); + } + } + } + this.state = 8721; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 578, 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 expression1UnaryQualifierOperator(): Expression1UnaryQualifierOperatorContext { + let localContext = new Expression1UnaryQualifierOperatorContext(this.context, this.state); + this.enterRule(localContext, 1072, PostgreSqlParser.RULE_expression1UnaryQualifierOperator); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8723; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + case 1: + { + this.state = 8722; + this.operatorQualifier(); + } + break; + } + this.state = 8725; + this.expression1Add(); + } + } + 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 expression1Add(): Expression1AddContext { + let localContext = new Expression1AddContext(this.context, this.state); + this.enterRule(localContext, 1074, PostgreSqlParser.RULE_expression1Add); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8727; + this.expressionMultiply(); + this.state = 8732; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 580, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8728; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8729; + this.expressionMultiply(); + } + } } - break; - case PostgreSqlParser.CLOSE_PAREN: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { + this.state = 8734; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 580, 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 expressionMultiply(): ExpressionMultiplyContext { + let localContext = new ExpressionMultiplyContext(this.context, this.state); + this.enterRule(localContext, 1076, PostgreSqlParser.RULE_expressionMultiply); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 8735; + this.expression1Caret(); + this.state = 8740; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 581, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 8736; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8737; + this.expression1Caret(); + } + } } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 8742; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 581, this.context); + } } } catch (re) { @@ -65405,87 +54981,68 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public substr_list(): Substr_listContext { - let localContext = new Substr_listContext(this.context, this.state); - this.enterRule(localContext, 1300, PostgreSqlParser.RULE_substr_list); + public expression1Caret(): Expression1CaretContext { + let localContext = new Expression1CaretContext(this.context, this.state); + this.enterRule(localContext, 1078, PostgreSqlParser.RULE_expression1Caret); try { - this.state = 9628; + this.enterOuterAlt(localContext, 1); + { + this.state = 8743; + this.expression1UnarySign(); + this.state = 8746; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9601; - this.a_expr(); - this.state = 9602; - this.match(PostgreSqlParser.FROM); - this.state = 9603; - this.a_expr(); - this.state = 9604; - this.match(PostgreSqlParser.FOR); - this.state = 9605; - this.a_expr(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9607; - this.a_expr(); - this.state = 9608; - this.match(PostgreSqlParser.FOR); - this.state = 9609; - this.a_expr(); - this.state = 9610; - this.match(PostgreSqlParser.FROM); - this.state = 9611; - this.a_expr(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); { - this.state = 9613; - this.a_expr(); - this.state = 9614; - this.match(PostgreSqlParser.FROM); - this.state = 9615; - this.a_expr(); + this.state = 8744; + this.match(PostgreSqlParser.CARET); + this.state = 8745; + this.expression1(); } break; - case 4: - this.enterOuterAlt(localContext, 4); + } + } + } + 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 expression1UnarySign(): Expression1UnarySignContext { + let localContext = new Expression1UnarySignContext(this.context, this.state); + this.enterRule(localContext, 1080, PostgreSqlParser.RULE_expression1UnarySign); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 8749; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 12 || _la === 13) { { - this.state = 9617; - this.a_expr(); - this.state = 9618; - this.match(PostgreSqlParser.FOR); - this.state = 9619; - this.a_expr(); + this.state = 8748; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 9621; - this.a_expr(); - this.state = 9622; - this.match(PostgreSqlParser.SIMILAR); - this.state = 9623; - this.a_expr(); - this.state = 9624; - this.match(PostgreSqlParser.ESCAPE); - this.state = 9625; - this.a_expr(); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 9627; - this.expr_list(); } - break; + } + + this.state = 8751; + this.expression1AtTimeZone(); } } catch (re) { @@ -65502,41 +55059,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public trim_list(): Trim_listContext { - let localContext = new Trim_listContext(this.context, this.state); - this.enterRule(localContext, 1302, PostgreSqlParser.RULE_trim_list); + public expression1AtTimeZone(): Expression1AtTimeZoneContext { + let localContext = new Expression1AtTimeZoneContext(this.context, this.state); + this.enterRule(localContext, 1082, PostgreSqlParser.RULE_expression1AtTimeZone); try { - this.state = 9637; + this.enterOuterAlt(localContext, 1); + { + this.state = 8753; + this.expression1Collate(); + this.state = 8758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 9630; - this.a_expr(); - this.state = 9631; - this.match(PostgreSqlParser.FROM); - this.state = 9632; - this.expr_list(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 9634; - this.match(PostgreSqlParser.FROM); - this.state = 9635; - this.expr_list(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); { - this.state = 9636; - this.expr_list(); + this.state = 8754; + this.match(PostgreSqlParser.AT); + this.state = 8755; + this.match(PostgreSqlParser.TIME); + this.state = 8756; + this.match(PostgreSqlParser.ZONE); + this.state = 8757; + this.expression1(); } break; } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -65552,34 +55099,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public in_expr(): In_exprContext { - let localContext = new In_exprContext(this.context, this.state); - this.enterRule(localContext, 1304, PostgreSqlParser.RULE_in_expr); + public expression1Collate(): Expression1CollateContext { + let localContext = new Expression1CollateContext(this.context, this.state); + this.enterRule(localContext, 1084, PostgreSqlParser.RULE_expression1Collate); try { - this.state = 9644; + this.enterOuterAlt(localContext, 1); + { + this.state = 8760; + this.expression1Typecast(); + this.state = 8763; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: - localContext = new In_expr_selectContext(localContext); - this.enterOuterAlt(localContext, 1); - { - this.state = 9639; - this.select_with_parens(); - } - break; - case 2: - localContext = new In_expr_listContext(localContext); - this.enterOuterAlt(localContext, 2); { - this.state = 9640; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9641; - this.expr_list(); - this.state = 9642; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8761; + this.match(PostgreSqlParser.COLLATE); + this.state = 8762; + this.anyName(); } break; } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -65595,22 +55135,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public case_expr(): Case_exprContext { - let localContext = new Case_exprContext(this.context, this.state); - this.enterRule(localContext, 1306, PostgreSqlParser.RULE_case_expr); + public expression1Typecast(): Expression1TypecastContext { + let localContext = new Expression1TypecastContext(this.context, this.state); + this.enterRule(localContext, 1086, PostgreSqlParser.RULE_expression1Typecast); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9646; - this.match(PostgreSqlParser.CASE); - this.state = 9647; - this.case_arg(); - this.state = 9648; - this.when_clause_list(); - this.state = 9649; - this.case_default(); - this.state = 9650; - this.match(PostgreSqlParser.END_P); + this.state = 8765; + this.expression3(); + this.state = 8770; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 26) { + { + { + this.state = 8766; + this.match(PostgreSqlParser.TYPECAST); + this.state = 8767; + this.typeName(); + } + } + this.state = 8772; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -65627,27 +55176,445 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public when_clause_list(): When_clause_listContext { - let localContext = new When_clause_listContext(this.context, this.state); - this.enterRule(localContext, 1308, PostgreSqlParser.RULE_when_clause_list); + + public expression2(): Expression2Context; + public expression2(_p: number): Expression2Context; + public expression2(_p?: number): Expression2Context { + if (_p === undefined) { + _p = 0; + } + + let parentContext = this.context; + let parentState = this.state; + let localContext = new Expression2Context(this.context, parentState); + let previousContext = localContext; + let _startState = 1088; + this.enterRecursionRule(localContext, 1088, PostgreSqlParser.RULE_expression2, _p); let _la: number; try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9653; + this.state = 8780; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { + switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { + case 1: + { + this.state = 8774; + this.expression3(); + } + break; + case 2: + { + this.state = 8775; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8776; + this.expression2(9); + } + break; + case 3: + { + this.state = 8777; + this.operatorQualifier(); + this.state = 8778; + this.expression2(3); + } + break; + } + this.context!.stop = this.tokenStream.LT(-1); + this.state = 8821; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + previousContext = localContext; + { + this.state = 8819; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { + case 1: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8782; + if (!(this.precpred(this.context, 8))) { + throw this.createFailedPredicateException("this.precpred(this.context, 8)"); + } + this.state = 8783; + this.match(PostgreSqlParser.CARET); + this.state = 8784; + this.expression2(9); + } + break; + case 2: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8785; + if (!(this.precpred(this.context, 7))) { + throw this.createFailedPredicateException("this.precpred(this.context, 7)"); + } + this.state = 8786; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8787; + this.expression2(8); + } + break; + case 3: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8788; + if (!(this.precpred(this.context, 6))) { + throw this.createFailedPredicateException("this.precpred(this.context, 6)"); + } + this.state = 8789; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8790; + this.expression2(7); + } + break; + case 4: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8791; + if (!(this.precpred(this.context, 5))) { + throw this.createFailedPredicateException("this.precpred(this.context, 5)"); + } + this.state = 8792; + this.operatorQualifier(); + this.state = 8793; + this.expression2(6); + } + break; + case 5: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8795; + if (!(this.precpred(this.context, 4))) { + throw this.createFailedPredicateException("this.precpred(this.context, 4)"); + } + this.state = 8796; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8797; + this.expression2(5); + } + break; + case 6: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8798; + if (!(this.precpred(this.context, 10))) { + throw this.createFailedPredicateException("this.precpred(this.context, 10)"); + } + this.state = 8799; + this.match(PostgreSqlParser.TYPECAST); + this.state = 8800; + this.typeName(); + } + break; + case 7: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8801; + if (!(this.precpred(this.context, 2))) { + throw this.createFailedPredicateException("this.precpred(this.context, 2)"); + } + this.state = 8802; + this.operatorQualifier(); + } + break; + case 8: + { + localContext = new Expression2Context(parentContext, parentState); + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_expression2); + this.state = 8803; + if (!(this.precpred(this.context, 1))) { + throw this.createFailedPredicateException("this.precpred(this.context, 1)"); + } + this.state = 8804; + this.match(PostgreSqlParser.IS); + this.state = 8806; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 8805; + this.match(PostgreSqlParser.NOT); + } + } + + this.state = 8817; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DISTINCT: + { + this.state = 8808; + this.match(PostgreSqlParser.DISTINCT); + this.state = 8809; + this.match(PostgreSqlParser.FROM); + this.state = 8810; + this.expression2(0); + } + break; + case PostgreSqlParser.OF: + { + this.state = 8811; + this.match(PostgreSqlParser.OF); + this.state = 8812; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8813; + this.typeList(); + this.state = 8814; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.DOCUMENT_P: + { + this.state = 8816; + this.match(PostgreSqlParser.DOCUMENT_P); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + } + } + } + this.state = 8823; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, 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.unrollRecursionContexts(parentContext); + } + return localContext; + } + public expression3(): Expression3Context { + let localContext = new Expression3Context(this.context, this.state); + this.enterRule(localContext, 1090, PostgreSqlParser.RULE_expression3); + try { + this.state = 8860; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { + case 1: + localContext = new C_expr_existsContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 8824; + this.match(PostgreSqlParser.EXISTS); + this.state = 8825; + this.selectWithParenthesis(); + } + break; + case 2: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 8826; + this.match(PostgreSqlParser.ARRAY); + this.state = 8829; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 8827; + this.selectWithParenthesis(); + } + break; + case PostgreSqlParser.OPEN_BRACKET: + { + this.state = 8828; + this.arrayExpression(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 3: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 8831; + this.match(PostgreSqlParser.PARAM); + this.state = 8832; + this.optionalIndirection(); + } + break; + case 4: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 8833; + this.match(PostgreSqlParser.GROUPING); + this.state = 8834; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8835; + this.expressionList(); + this.state = 8836; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 5: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 5); + { + this.state = 8838; + this.match(PostgreSqlParser.UNIQUE); + this.state = 8839; + this.selectWithParenthesis(); + } + break; + case 6: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 6); + { + this.state = 8840; + this.columnReference(); + } + break; + case 7: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 7); + { + this.state = 8841; + this.aExpressionConst(); + } + break; + case 8: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 8); + { + this.state = 8842; + this.plsqlVariableName(); + } + break; + case 9: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 9); + { + this.state = 8843; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8844; + (localContext as C_expr_exprContext)._a_expr_in_parens = this.expression1(); + this.state = 8845; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 8846; + this.optionalIndirection(); + } + break; + case 10: + localContext = new C_expr_caseContext(localContext); + this.enterOuterAlt(localContext, 10); + { + this.state = 8848; + this.caseExpression(); + } + break; + case 11: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 11); { + this.state = 8849; + this.functionExpression(); + } + break; + case 12: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 12); + { + this.state = 8850; + this.selectWithParenthesis(); + this.state = 8852; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { + case 1: + { + this.state = 8851; + this.indirection(); + } + break; + } + } + break; + case 13: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 13); + { + this.state = 8854; + this.explicitRow(); + } + break; + case 14: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 14); + { + this.state = 8855; + this.implicitRow(); + } + break; + case 15: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 15); { - this.state = 9652; - this.when_clause(); - } + this.state = 8856; + this.row(); + this.state = 8857; + this.match(PostgreSqlParser.OVERLAPS); + this.state = 8858; + this.row(); } - this.state = 9655; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 102); + break; } } catch (re) { @@ -65664,60 +55631,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public when_clause(): When_clauseContext { - let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 1310, PostgreSqlParser.RULE_when_clause); + public plsqlVariableName(): PlsqlVariableNameContext { + let localContext = new PlsqlVariableNameContext(this.context, this.state); + this.enterRule(localContext, 1092, PostgreSqlParser.RULE_plsqlVariableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 9657; - this.match(PostgreSqlParser.WHEN); - this.state = 9658; - this.a_expr(); - this.state = 9659; - this.match(PostgreSqlParser.THEN); - this.state = 9660; - this.a_expr(); - } - } - 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 case_default(): Case_defaultContext { - let localContext = new Case_defaultContext(this.context, this.state); - this.enterRule(localContext, 1312, PostgreSqlParser.RULE_case_default); - try { - this.state = 9665; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ELSE: - this.enterOuterAlt(localContext, 1); - { - this.state = 9662; - this.match(PostgreSqlParser.ELSE); - this.state = 9663; - this.a_expr(); - } - break; - case PostgreSqlParser.END_P: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 8862; + this.match(PostgreSqlParser.PLSQLVARIABLENAME); } } catch (re) { @@ -65734,11 +55655,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public case_arg(): Case_argContext { - let localContext = new Case_argContext(this.context, this.state); - this.enterRule(localContext, 1314, PostgreSqlParser.RULE_case_arg); + public functionApplication(): FunctionApplicationContext { + let localContext = new FunctionApplicationContext(this.context, this.state); + this.enterRule(localContext, 1094, PostgreSqlParser.RULE_functionApplication); + let _la: number; try { - this.state = 9669; + this.enterOuterAlt(localContext, 1); + { + this.state = 8864; + this.functionName(); + this.state = 8865; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8884; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -66309,14 +56237,978 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: + { + this.state = 8866; + this.functionArgumentList(); + this.state = 8870; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 8867; + this.match(PostgreSqlParser.COMMA); + this.state = 8868; + this.match(PostgreSqlParser.VARIADIC); + this.state = 8869; + this.functionArgumentExpression(); + } + } + + this.state = 8872; + this.optionalSortClause(); + } + break; + case PostgreSqlParser.VARIADIC: + { + this.state = 8874; + this.match(PostgreSqlParser.VARIADIC); + this.state = 8875; + this.functionArgumentExpression(); + this.state = 8876; + this.optionalSortClause(); + } + break; + case PostgreSqlParser.ALL: + case PostgreSqlParser.DISTINCT: + { + this.state = 8878; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || _la === 56)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 8879; + this.functionArgumentList(); + this.state = 8880; + this.optionalSortClause(); + } + break; + case PostgreSqlParser.STAR: + { + this.state = 8882; + this.match(PostgreSqlParser.STAR); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + // tslint:disable-next-line:no-empty + { + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 8886; + this.match(PostgreSqlParser.CLOSE_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 functionExpression(): FunctionExpressionContext { + let localContext = new FunctionExpressionContext(this.context, this.state); + this.enterRule(localContext, 1096, PostgreSqlParser.RULE_functionExpression); + try { + this.state = 8894; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8888; + this.functionApplication(); + this.state = 8889; + this.withinGroupClause(); + this.state = 8890; + this.filterClause(); + this.state = 8891; + this.overClause(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8893; + this.functionExpressionCommonSubexpr(); + } + 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 functionExpressionWindowless(): FunctionExpressionWindowlessContext { + let localContext = new FunctionExpressionWindowlessContext(this.context, this.state); + this.enterRule(localContext, 1098, PostgreSqlParser.RULE_functionExpressionWindowless); + try { + this.state = 8898; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 8896; + this.functionApplication(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 8897; + this.functionExpressionCommonSubexpr(); + } + 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 functionExpressionCommonSubexpr(): FunctionExpressionCommonSubexprContext { + let localContext = new FunctionExpressionCommonSubexprContext(this.context, this.state); + this.enterRule(localContext, 1100, PostgreSqlParser.RULE_functionExpressionCommonSubexpr); + let _la: number; + try { + this.state = 9077; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.COLLATION: + this.enterOuterAlt(localContext, 1); + { + this.state = 8900; + this.match(PostgreSqlParser.COLLATION); + this.state = 8901; + this.match(PostgreSqlParser.FOR); + this.state = 8902; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8903; + this.expression1(); + this.state = 8904; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.CURRENT_DATE: + this.enterOuterAlt(localContext, 2); + { + this.state = 8906; + this.match(PostgreSqlParser.CURRENT_DATE); + } + break; + case PostgreSqlParser.CURRENT_TIME: + this.enterOuterAlt(localContext, 3); + { + this.state = 8907; + this.match(PostgreSqlParser.CURRENT_TIME); + this.state = 8912; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + case 1: + { + this.state = 8908; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8909; + this.iconst(); + this.state = 8910; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; + case PostgreSqlParser.CURRENT_TIMESTAMP: + this.enterOuterAlt(localContext, 4); + { + this.state = 8914; + this.match(PostgreSqlParser.CURRENT_TIMESTAMP); + this.state = 8919; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { + case 1: + { + this.state = 8915; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8916; + this.iconst(); + this.state = 8917; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; + case PostgreSqlParser.LOCALTIME: + this.enterOuterAlt(localContext, 5); + { + this.state = 8921; + this.match(PostgreSqlParser.LOCALTIME); + this.state = 8926; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { + case 1: + { + this.state = 8922; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8923; + this.iconst(); + this.state = 8924; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; + case PostgreSqlParser.LOCALTIMESTAMP: + this.enterOuterAlt(localContext, 6); + { + this.state = 8928; + this.match(PostgreSqlParser.LOCALTIMESTAMP); + this.state = 8933; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { + case 1: + { + this.state = 8929; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8930; + this.iconst(); + this.state = 8931; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; + case PostgreSqlParser.CURRENT_ROLE: + this.enterOuterAlt(localContext, 7); + { + this.state = 8935; + this.match(PostgreSqlParser.CURRENT_ROLE); + } + break; + case PostgreSqlParser.CURRENT_USER: + this.enterOuterAlt(localContext, 8); + { + this.state = 8936; + this.match(PostgreSqlParser.CURRENT_USER); + } + break; + case PostgreSqlParser.SESSION_USER: + this.enterOuterAlt(localContext, 9); + { + this.state = 8937; + this.match(PostgreSqlParser.SESSION_USER); + } + break; + case PostgreSqlParser.USER: + this.enterOuterAlt(localContext, 10); + { + this.state = 8938; + this.match(PostgreSqlParser.USER); + } + break; + case PostgreSqlParser.CURRENT_CATALOG: + this.enterOuterAlt(localContext, 11); + { + this.state = 8939; + this.match(PostgreSqlParser.CURRENT_CATALOG); + } + break; + case PostgreSqlParser.CURRENT_SCHEMA: + this.enterOuterAlt(localContext, 12); + { + this.state = 8940; + this.match(PostgreSqlParser.CURRENT_SCHEMA); + } + break; + case PostgreSqlParser.CAST: + this.enterOuterAlt(localContext, 13); + { + this.state = 8941; + this.match(PostgreSqlParser.CAST); + this.state = 8942; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8943; + this.expression1(); + this.state = 8944; + this.match(PostgreSqlParser.AS); + this.state = 8945; + this.typeName(); + this.state = 8946; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.EXTRACT: + this.enterOuterAlt(localContext, 14); + { + this.state = 8948; + this.match(PostgreSqlParser.EXTRACT); + this.state = 8949; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8950; + this.extractList(); + this.state = 8951; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.NORMALIZE: + this.enterOuterAlt(localContext, 15); + { + this.state = 8953; + this.match(PostgreSqlParser.NORMALIZE); + this.state = 8954; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8955; + this.expression1(); + this.state = 8958; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 8956; + this.match(PostgreSqlParser.COMMA); + this.state = 8957; + this.unicodeNormalForm(); + } + } + + this.state = 8960; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.OVERLAY: + this.enterOuterAlt(localContext, 16); + { + this.state = 8962; + this.match(PostgreSqlParser.OVERLAY); + this.state = 8963; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8964; + this.overlayList(); + this.state = 8965; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.POSITION: + this.enterOuterAlt(localContext, 17); + { + this.state = 8967; + this.match(PostgreSqlParser.POSITION); + this.state = 8968; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8969; + this.positionList(); + this.state = 8970; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.SUBSTRING: + this.enterOuterAlt(localContext, 18); + { + this.state = 8972; + this.match(PostgreSqlParser.SUBSTRING); + this.state = 8973; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8974; + this.substrList(); + this.state = 8975; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.TREAT: + this.enterOuterAlt(localContext, 19); + { + this.state = 8977; + this.match(PostgreSqlParser.TREAT); + this.state = 8978; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8979; + this.expression1(); + this.state = 8980; + this.match(PostgreSqlParser.AS); + this.state = 8981; + this.typeName(); + this.state = 8982; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.TRIM: + this.enterOuterAlt(localContext, 20); + { + this.state = 8984; + this.match(PostgreSqlParser.TRIM); + this.state = 8985; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8987; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 39 || _la === 73 || _la === 95) { + { + this.state = 8986; + _la = this.tokenStream.LA(1); + if(!(_la === 39 || _la === 73 || _la === 95)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 8989; + this.trimList(); + this.state = 8990; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.NULLIF: + this.enterOuterAlt(localContext, 21); + { + this.state = 8992; + this.match(PostgreSqlParser.NULLIF); + this.state = 8993; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8994; + this.expression1(); + this.state = 8995; + this.match(PostgreSqlParser.COMMA); + this.state = 8996; + this.expression1(); + this.state = 8997; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.COALESCE: + this.enterOuterAlt(localContext, 22); + { + this.state = 8999; + this.match(PostgreSqlParser.COALESCE); + this.state = 9000; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9001; + this.expressionList(); + this.state = 9002; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.GREATEST: + this.enterOuterAlt(localContext, 23); + { + this.state = 9004; + this.match(PostgreSqlParser.GREATEST); + this.state = 9005; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9006; + this.expressionList(); + this.state = 9007; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.LEAST: + this.enterOuterAlt(localContext, 24); + { + this.state = 9009; + this.match(PostgreSqlParser.LEAST); + this.state = 9010; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9011; + this.expressionList(); + this.state = 9012; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLCONCAT: + this.enterOuterAlt(localContext, 25); + { + this.state = 9014; + this.match(PostgreSqlParser.XMLCONCAT); + this.state = 9015; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9016; + this.expressionList(); + this.state = 9017; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLELEMENT: + this.enterOuterAlt(localContext, 26); + { + this.state = 9019; + this.match(PostgreSqlParser.XMLELEMENT); + this.state = 9020; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9021; + this.match(PostgreSqlParser.NAME_P); + this.state = 9022; + this.columnLabel(); + this.state = 9028; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 9023; + this.match(PostgreSqlParser.COMMA); + this.state = 9026; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + case 1: + { + this.state = 9024; + this.xmlAttributes(); + } + break; + case 2: + { + this.state = 9025; + this.expressionList(); + } + break; + } + } + } + + this.state = 9030; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLEXISTS: + this.enterOuterAlt(localContext, 27); + { + this.state = 9032; + this.match(PostgreSqlParser.XMLEXISTS); + this.state = 9033; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9034; + this.expression3(); + this.state = 9035; + this.xmlExistsArgument(); + this.state = 9036; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLFOREST: + this.enterOuterAlt(localContext, 28); + { + this.state = 9038; + this.match(PostgreSqlParser.XMLFOREST); + this.state = 9039; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9040; + this.xmlAttributeList(); + this.state = 9041; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLPARSE: + this.enterOuterAlt(localContext, 29); + { + this.state = 9043; + this.match(PostgreSqlParser.XMLPARSE); + this.state = 9044; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9045; + this.documentOrContent(); + this.state = 9046; + this.expression1(); + this.state = 9047; + this.xmlWhitespaceOption(); + this.state = 9048; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLPI: + this.enterOuterAlt(localContext, 30); + { + this.state = 9050; + this.match(PostgreSqlParser.XMLPI); + this.state = 9051; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9052; + this.match(PostgreSqlParser.NAME_P); + this.state = 9053; + this.columnLabel(); + this.state = 9056; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 9054; + this.match(PostgreSqlParser.COMMA); + this.state = 9055; + this.expression1(); + } + } + + this.state = 9058; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLROOT: + this.enterOuterAlt(localContext, 31); + { + this.state = 9060; + this.match(PostgreSqlParser.XMLROOT); + this.state = 9061; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9062; + this.match(PostgreSqlParser.XML_P); + this.state = 9063; + this.expression1(); + this.state = 9064; + this.match(PostgreSqlParser.COMMA); + this.state = 9065; + this.xmlRootVersion(); + this.state = 9066; + this.optionalXmlRootStandalone(); + this.state = 9067; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.XMLSERIALIZE: + this.enterOuterAlt(localContext, 32); + { + this.state = 9069; + this.match(PostgreSqlParser.XMLSERIALIZE); + this.state = 9070; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9071; + this.documentOrContent(); + this.state = 9072; + this.expression1(); + this.state = 9073; + this.match(PostgreSqlParser.AS); + this.state = 9074; + this.simpleTypeName(); + this.state = 9075; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 xmlRootVersion(): XmlRootVersionContext { + let localContext = new XmlRootVersionContext(this.context, this.state); + this.enterRule(localContext, 1102, PostgreSqlParser.RULE_xmlRootVersion); + try { + this.state = 9084; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9667; - this.a_expr(); + this.state = 9079; + this.match(PostgreSqlParser.VERSION_P); + this.state = 9080; + this.expression1(); } break; - case PostgreSqlParser.WHEN: + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9081; + this.match(PostgreSqlParser.VERSION_P); + this.state = 9082; + this.match(PostgreSqlParser.NO); + this.state = 9083; + this.match(PostgreSqlParser.VALUE_P); + } + 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 optionalXmlRootStandalone(): OptionalXmlRootStandaloneContext { + let localContext = new OptionalXmlRootStandaloneContext(this.context, this.state); + this.enterRule(localContext, 1104, PostgreSqlParser.RULE_optionalXmlRootStandalone); + try { + this.state = 9097; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9086; + this.match(PostgreSqlParser.COMMA); + this.state = 9087; + this.match(PostgreSqlParser.STANDALONE_P); + this.state = 9088; + this.match(PostgreSqlParser.YES_P); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9089; + this.match(PostgreSqlParser.COMMA); + this.state = 9090; + this.match(PostgreSqlParser.STANDALONE_P); + this.state = 9091; + this.match(PostgreSqlParser.NO); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9092; + this.match(PostgreSqlParser.COMMA); + this.state = 9093; + this.match(PostgreSqlParser.STANDALONE_P); + this.state = 9094; + this.match(PostgreSqlParser.NO); + this.state = 9095; + this.match(PostgreSqlParser.VALUE_P); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + // 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 xmlAttributes(): XmlAttributesContext { + let localContext = new XmlAttributesContext(this.context, this.state); + this.enterRule(localContext, 1106, PostgreSqlParser.RULE_xmlAttributes); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9099; + this.match(PostgreSqlParser.XMLATTRIBUTES); + this.state = 9100; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9101; + this.xmlAttributeList(); + this.state = 9102; + this.match(PostgreSqlParser.CLOSE_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 xmlAttributeList(): XmlAttributeListContext { + let localContext = new XmlAttributeListContext(this.context, this.state); + this.enterRule(localContext, 1108, PostgreSqlParser.RULE_xmlAttributeList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9104; + this.xmlAttributeElement(); + this.state = 9109; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 9105; + this.match(PostgreSqlParser.COMMA); + this.state = 9106; + this.xmlAttributeElement(); + } + } + this.state = 9111; + 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 xmlAttributeElement(): XmlAttributeElementContext { + let localContext = new XmlAttributeElementContext(this.context, this.state); + this.enterRule(localContext, 1110, PostgreSqlParser.RULE_xmlAttributeElement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9112; + this.expression1(); + this.state = 9115; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 9113; + this.match(PostgreSqlParser.AS); + this.state = 9114; + this.columnLabel(); + } + } + + } + } + 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 documentOrContent(): DocumentOrContentContext { + let localContext = new DocumentOrContentContext(this.context, this.state); + this.enterRule(localContext, 1112, PostgreSqlParser.RULE_documentOrContent); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9117; + _la = this.tokenStream.LA(1); + if(!(_la === 166 || _la === 188)) { + 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 xmlWhitespaceOption(): XmlWhitespaceOptionContext { + let localContext = new XmlWhitespaceOptionContext(this.context, this.state); + this.enterRule(localContext, 1114, PostgreSqlParser.RULE_xmlWhitespaceOption); + try { + this.state = 9124; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.PRESERVE: + this.enterOuterAlt(localContext, 1); + { + this.state = 9119; + this.match(PostgreSqlParser.PRESERVE); + this.state = 9120; + this.match(PostgreSqlParser.WHITESPACE_P); + } + break; + case PostgreSqlParser.STRIP_P: this.enterOuterAlt(localContext, 2); + { + this.state = 9121; + this.match(PostgreSqlParser.STRIP_P); + this.state = 9122; + this.match(PostgreSqlParser.WHITESPACE_P); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + this.enterOuterAlt(localContext, 3); // tslint:disable-next-line:no-empty { } @@ -66339,24 +57231,179 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public columnref(): ColumnrefContext { - let localContext = new ColumnrefContext(this.context, this.state); - this.enterRule(localContext, 1316, PostgreSqlParser.RULE_columnref); + public xmlExistsArgument(): XmlExistsArgumentContext { + let localContext = new XmlExistsArgumentContext(this.context, this.state); + this.enterRule(localContext, 1116, PostgreSqlParser.RULE_xmlExistsArgument); + try { + this.state = 9141; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9126; + this.match(PostgreSqlParser.PASSING); + this.state = 9127; + this.expression3(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9128; + this.match(PostgreSqlParser.PASSING); + this.state = 9129; + this.expression3(); + this.state = 9130; + this.xmlPassingMech(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9132; + this.match(PostgreSqlParser.PASSING); + this.state = 9133; + this.xmlPassingMech(); + this.state = 9134; + this.expression3(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 9136; + this.match(PostgreSqlParser.PASSING); + this.state = 9137; + this.xmlPassingMech(); + this.state = 9138; + this.expression3(); + this.state = 9139; + this.xmlPassingMech(); + } + 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 xmlPassingMech(): XmlPassingMechContext { + let localContext = new XmlPassingMechContext(this.context, this.state); + this.enterRule(localContext, 1118, PostgreSqlParser.RULE_xmlPassingMech); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9671; - this.colid(); - this.state = 9673; + this.state = 9143; + this.match(PostgreSqlParser.BY); + this.state = 9144; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 450)) { + 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 withinGroupClause(): WithinGroupClauseContext { + let localContext = new WithinGroupClauseContext(this.context, this.state); + this.enterRule(localContext, 1120, PostgreSqlParser.RULE_withinGroupClause); + try { + this.state = 9153; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9146; + this.match(PostgreSqlParser.WITHIN); + this.state = 9147; + this.match(PostgreSqlParser.GROUP_P); + this.state = 9148; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9149; + this.sortClause(); + this.state = 9150; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 9672; - this.indirection(); } 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 filterClause(): FilterClauseContext { + let localContext = new FilterClauseContext(this.context, this.state); + this.enterRule(localContext, 1122, PostgreSqlParser.RULE_filterClause); + try { + this.state = 9162; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9155; + this.match(PostgreSqlParser.FILTER); + this.state = 9156; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9157; + this.match(PostgreSqlParser.WHERE); + this.state = 9158; + this.expression1(); + this.state = 9159; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + break; } } catch (re) { @@ -66373,117 +57420,173 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public indirection_el(): Indirection_elContext { - let localContext = new Indirection_elContext(this.context, this.state); - this.enterRule(localContext, 1318, PostgreSqlParser.RULE_indirection_el); + public windowClause(): WindowClauseContext { + let localContext = new WindowClauseContext(this.context, this.state); + this.enterRule(localContext, 1124, PostgreSqlParser.RULE_windowClause); try { - this.state = 9690; + this.state = 9167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DOT: + case PostgreSqlParser.WINDOW: this.enterOuterAlt(localContext, 1); { - this.state = 9675; - this.match(PostgreSqlParser.DOT); - this.state = 9678; + this.state = 9164; + this.match(PostgreSqlParser.WINDOW); + this.state = 9165; + this.windowDefinitionList(); + } + break; + case PostgreSqlParser.EOF: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.INTO: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.THEN: + case PostgreSqlParser.UNION: + case PostgreSqlParser.USING: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WITH: + case PostgreSqlParser.LOOP: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 windowDefinitionList(): WindowDefinitionListContext { + let localContext = new WindowDefinitionListContext(this.context, this.state); + this.enterRule(localContext, 1126, PostgreSqlParser.RULE_windowDefinitionList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9169; + this.windowDefinition(); + this.state = 9174; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 618, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9170; + this.match(PostgreSqlParser.COMMA); + this.state = 9171; + this.windowDefinition(); + } + } + } + this.state = 9176; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.ALL: - case PostgreSqlParser.ANALYSE: - case PostgreSqlParser.ANALYZE: + alternative = this.interpreter.adaptivePredict(this.tokenStream, 618, 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 windowDefinition(): WindowDefinitionContext { + let localContext = new WindowDefinitionContext(this.context, this.state); + this.enterRule(localContext, 1128, PostgreSqlParser.RULE_windowDefinition); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9177; + this.columnId(); + this.state = 9178; + this.match(PostgreSqlParser.AS); + this.state = 9179; + this.windowSpecification(); + } + } + 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 overClause(): OverClauseContext { + let localContext = new OverClauseContext(this.context, this.state); + this.enterRule(localContext, 1130, PostgreSqlParser.RULE_overClause); + try { + this.state = 9187; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9181; + this.match(PostgreSqlParser.OVER); + this.state = 9184; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 9182; + this.windowSpecification(); + } + break; case PostgreSqlParser.AND: - case PostgreSqlParser.ANY: case PostgreSqlParser.ARRAY: - case PostgreSqlParser.AS: - case PostgreSqlParser.ASC: - case PostgreSqlParser.ASYMMETRIC: - case PostgreSqlParser.BOTH: - case PostgreSqlParser.CASE: - case PostgreSqlParser.CAST: - case PostgreSqlParser.CHECK: case PostgreSqlParser.COLLATE: case PostgreSqlParser.COLUMN: case PostgreSqlParser.CONSTRAINT: - case PostgreSqlParser.CREATE: - case PostgreSqlParser.CURRENT_CATALOG: - case PostgreSqlParser.CURRENT_DATE: - case PostgreSqlParser.CURRENT_ROLE: - case PostgreSqlParser.CURRENT_TIME: - case PostgreSqlParser.CURRENT_TIMESTAMP: - case PostgreSqlParser.CURRENT_USER: case PostgreSqlParser.DEFAULT: - case PostgreSqlParser.DEFERRABLE: - case PostgreSqlParser.DESC: - case PostgreSqlParser.DISTINCT: case PostgreSqlParser.DO: - case PostgreSqlParser.ELSE: - case PostgreSqlParser.EXCEPT: - case PostgreSqlParser.FALSE_P: case PostgreSqlParser.FETCH: - case PostgreSqlParser.FOR: - case PostgreSqlParser.FOREIGN: - case PostgreSqlParser.FROM: - case PostgreSqlParser.GRANT: - case PostgreSqlParser.GROUP_P: - case PostgreSqlParser.HAVING: - case PostgreSqlParser.IN_P: - case PostgreSqlParser.INITIALLY: - case PostgreSqlParser.INTERSECT: - case PostgreSqlParser.LATERAL_P: - case PostgreSqlParser.LEADING: - case PostgreSqlParser.LIMIT: - case PostgreSqlParser.LOCALTIME: - case PostgreSqlParser.LOCALTIMESTAMP: - case PostgreSqlParser.NOT: - case PostgreSqlParser.NULL_P: - case PostgreSqlParser.OFFSET: - case PostgreSqlParser.ON: - case PostgreSqlParser.ONLY: - case PostgreSqlParser.OR: - case PostgreSqlParser.ORDER: - case PostgreSqlParser.PLACING: - case PostgreSqlParser.PRIMARY: - case PostgreSqlParser.REFERENCES: - case PostgreSqlParser.RETURNING: - case PostgreSqlParser.SELECT: - case PostgreSqlParser.SESSION_USER: - case PostgreSqlParser.SOME: - case PostgreSqlParser.SYMMETRIC: case PostgreSqlParser.TABLE: - case PostgreSqlParser.THEN: - case PostgreSqlParser.TO: - case PostgreSqlParser.TRAILING: - case PostgreSqlParser.TRUE_P: - case PostgreSqlParser.UNION: - case PostgreSqlParser.UNIQUE: - case PostgreSqlParser.USER: - case PostgreSqlParser.USING: - case PostgreSqlParser.VARIADIC: - case PostgreSqlParser.WHEN: - case PostgreSqlParser.WHERE: - case PostgreSqlParser.WINDOW: - case PostgreSqlParser.WITH: - case PostgreSqlParser.AUTHORIZATION: - case PostgreSqlParser.BINARY: - case PostgreSqlParser.COLLATION: - case PostgreSqlParser.CONCURRENTLY: - case PostgreSqlParser.CROSS: - case PostgreSqlParser.CURRENT_SCHEMA: - case PostgreSqlParser.FREEZE: - case PostgreSqlParser.FULL: - case PostgreSqlParser.ILIKE: - case PostgreSqlParser.INNER_P: case PostgreSqlParser.IS: - case PostgreSqlParser.ISNULL: - case PostgreSqlParser.JOIN: - case PostgreSqlParser.LIKE: - case PostgreSqlParser.NATURAL: - case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.LEFT: case PostgreSqlParser.OUTER_P: case PostgreSqlParser.OVER: - case PostgreSqlParser.OVERLAPS: - case PostgreSqlParser.SIMILAR: - case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.RIGHT: case PostgreSqlParser.ABORT_P: case PostgreSqlParser.ABSOLUTE_P: case PostgreSqlParser.ACCESS: @@ -66807,7 +57910,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SUBSCRIPTION: case PostgreSqlParser.PUBLICATION: case PostgreSqlParser.OUT_P: - case PostgreSqlParser.END_P: case PostgreSqlParser.ROUTINES: case PostgreSqlParser.SCHEMAS: case PostgreSqlParser.PROCEDURES: @@ -66825,7 +57927,6 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CUBE: case PostgreSqlParser.GROUPING: case PostgreSqlParser.SETS: - case PostgreSqlParser.TABLESAMPLE: case PostgreSqlParser.ORDINALITY: case PostgreSqlParser.XMLTABLE: case PostgreSqlParser.COLUMNS: @@ -66992,48 +58093,2915 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 9676; - this.attr_name(); + this.state = 9183; + this.columnId(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + 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 windowSpecification(): WindowSpecificationContext { + let localContext = new WindowSpecificationContext(this.context, this.state); + this.enterRule(localContext, 1132, PostgreSqlParser.RULE_windowSpecification); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9189; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9190; + this.optionalExistingWindowName(); + this.state = 9191; + this.optionalPartitionClause(); + this.state = 9192; + this.optionalSortClause(); + this.state = 9193; + this.optionalFrameClause(); + this.state = 9194; + this.match(PostgreSqlParser.CLOSE_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 optionalExistingWindowName(): OptionalExistingWindowNameContext { + let localContext = new OptionalExistingWindowNameContext(this.context, this.state); + this.enterRule(localContext, 1134, PostgreSqlParser.RULE_optionalExistingWindowName); + try { + this.state = 9198; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9196; + this.columnId(); + } + 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 optionalPartitionClause(): OptionalPartitionClauseContext { + let localContext = new OptionalPartitionClauseContext(this.context, this.state); + this.enterRule(localContext, 1136, PostgreSqlParser.RULE_optionalPartitionClause); + try { + this.state = 9204; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.PARTITION: + this.enterOuterAlt(localContext, 1); + { + this.state = 9200; + this.match(PostgreSqlParser.PARTITION); + this.state = 9201; + this.match(PostgreSqlParser.BY); + this.state = 9202; + this.expressionList(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.GROUPS: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 optionalFrameClause(): OptionalFrameClauseContext { + let localContext = new OptionalFrameClauseContext(this.context, this.state); + this.enterRule(localContext, 1138, PostgreSqlParser.RULE_optionalFrameClause); + try { + this.state = 9219; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.RANGE: + this.enterOuterAlt(localContext, 1); + { + this.state = 9206; + this.match(PostgreSqlParser.RANGE); + this.state = 9207; + this.frameExtent(); + this.state = 9208; + this.optionalWindowExclusionClause(); + } + break; + case PostgreSqlParser.ROWS: + this.enterOuterAlt(localContext, 2); + { + this.state = 9210; + this.match(PostgreSqlParser.ROWS); + this.state = 9211; + this.frameExtent(); + this.state = 9212; + this.optionalWindowExclusionClause(); + } + break; + case PostgreSqlParser.GROUPS: + this.enterOuterAlt(localContext, 3); + { + this.state = 9214; + this.match(PostgreSqlParser.GROUPS); + this.state = 9215; + this.frameExtent(); + this.state = 9216; + this.optionalWindowExclusionClause(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + this.enterOuterAlt(localContext, 4); + // tslint:disable-next-line:no-empty + { + } + 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 frameExtent(): FrameExtentContext { + let localContext = new FrameExtentContext(this.context, this.state); + this.enterRule(localContext, 1140, PostgreSqlParser.RULE_frameExtent); + try { + this.state = 9227; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9221; + this.frameBound(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9222; + this.match(PostgreSqlParser.BETWEEN); + this.state = 9223; + this.frameBound(); + this.state = 9224; + this.match(PostgreSqlParser.AND); + this.state = 9225; + this.frameBound(); + } + 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 frameBound(): FrameBoundContext { + let localContext = new FrameBoundContext(this.context, this.state); + this.enterRule(localContext, 1142, PostgreSqlParser.RULE_frameBound); + let _la: number; + try { + this.state = 9236; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9229; + this.match(PostgreSqlParser.UNBOUNDED); + this.state = 9230; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 282)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9231; + this.match(PostgreSqlParser.CURRENT_P); + this.state = 9232; + this.match(PostgreSqlParser.ROW); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9233; + this.expression1(); + this.state = 9234; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 282)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + 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 optionalWindowExclusionClause(): OptionalWindowExclusionClauseContext { + let localContext = new OptionalWindowExclusionClauseContext(this.context, this.state); + this.enterRule(localContext, 1144, PostgreSqlParser.RULE_optionalWindowExclusionClause); + try { + this.state = 9248; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.EXCLUDE: + this.enterOuterAlt(localContext, 1); + { + this.state = 9238; + this.match(PostgreSqlParser.EXCLUDE); + this.state = 9245; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.CURRENT_P: + { + this.state = 9239; + this.match(PostgreSqlParser.CURRENT_P); + this.state = 9240; + this.match(PostgreSqlParser.ROW); + } + break; + case PostgreSqlParser.GROUP_P: + { + this.state = 9241; + this.match(PostgreSqlParser.GROUP_P); + } + break; + case PostgreSqlParser.TIES: + { + this.state = 9242; + this.match(PostgreSqlParser.TIES); + } + break; + case PostgreSqlParser.NO: + { + this.state = 9243; + this.match(PostgreSqlParser.NO); + this.state = 9244; + this.match(PostgreSqlParser.OTHERS); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case PostgreSqlParser.CLOSE_PAREN: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 row(): RowContext { + let localContext = new RowContext(this.context, this.state); + this.enterRule(localContext, 1146, PostgreSqlParser.RULE_row); + let _la: number; + try { + this.state = 9262; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ROW: + this.enterOuterAlt(localContext, 1); + { + this.state = 9250; + this.match(PostgreSqlParser.ROW); + this.state = 9251; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9253; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { + { + this.state = 9252; + this.expressionList(); + } + } + + this.state = 9255; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 2); + { + this.state = 9256; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9257; + this.expressionList(); + this.state = 9258; + this.match(PostgreSqlParser.COMMA); + this.state = 9259; + this.expression1(); + this.state = 9260; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 explicitRow(): ExplicitRowContext { + let localContext = new ExplicitRowContext(this.context, this.state); + this.enterRule(localContext, 1148, PostgreSqlParser.RULE_explicitRow); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9264; + this.match(PostgreSqlParser.ROW); + this.state = 9265; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9267; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { + { + this.state = 9266; + this.expressionList(); + } + } + + this.state = 9269; + this.match(PostgreSqlParser.CLOSE_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 implicitRow(): ImplicitRowContext { + let localContext = new ImplicitRowContext(this.context, this.state); + this.enterRule(localContext, 1150, PostgreSqlParser.RULE_implicitRow); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9271; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9272; + this.expressionList(); + this.state = 9273; + this.match(PostgreSqlParser.COMMA); + this.state = 9274; + this.expression1(); + this.state = 9275; + this.match(PostgreSqlParser.CLOSE_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 subType(): SubTypeContext { + let localContext = new SubTypeContext(this.context, this.state); + this.enterRule(localContext, 1152, PostgreSqlParser.RULE_subType); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9277; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || _la === 34 || _la === 90)) { + 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 allOperator(): AllOperatorContext { + let localContext = new AllOperatorContext(this.context, this.state); + this.enterRule(localContext, 1154, PostgreSqlParser.RULE_allOperator); + try { + this.state = 9281; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.Operator: + this.enterOuterAlt(localContext, 1); + { + this.state = 9279; + this.match(PostgreSqlParser.Operator); + } + break; + case PostgreSqlParser.STAR: + case PostgreSqlParser.EQUAL: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.SLASH: + case PostgreSqlParser.CARET: + case PostgreSqlParser.LT: + case PostgreSqlParser.GT: + case PostgreSqlParser.LESS_EQUALS: + case PostgreSqlParser.GREATER_EQUALS: + case PostgreSqlParser.NOT_EQUALS: + case PostgreSqlParser.PERCENT: + this.enterOuterAlt(localContext, 2); + { + this.state = 9280; + this.mathOperator(); + } + 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 mathOperator(): MathOperatorContext { + let localContext = new MathOperatorContext(this.context, this.state); + this.enterRule(localContext, 1156, PostgreSqlParser.RULE_mathOperator); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9283; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public operatorQualifier(): OperatorQualifierContext { + let localContext = new OperatorQualifierContext(this.context, this.state); + this.enterRule(localContext, 1158, PostgreSqlParser.RULE_operatorQualifier); + try { + this.state = 9291; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.Operator: + this.enterOuterAlt(localContext, 1); + { + this.state = 9285; + this.match(PostgreSqlParser.Operator); + } + break; + case PostgreSqlParser.OPERATOR: + this.enterOuterAlt(localContext, 2); + { + this.state = 9286; + this.match(PostgreSqlParser.OPERATOR); + this.state = 9287; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9288; + this.anyOperator(); + this.state = 9289; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 allOperatorQualifier(): AllOperatorQualifierContext { + let localContext = new AllOperatorQualifierContext(this.context, this.state); + this.enterRule(localContext, 1160, PostgreSqlParser.RULE_allOperatorQualifier); + try { + this.state = 9299; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.STAR: + case PostgreSqlParser.EQUAL: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.SLASH: + case PostgreSqlParser.CARET: + case PostgreSqlParser.LT: + case PostgreSqlParser.GT: + case PostgreSqlParser.LESS_EQUALS: + case PostgreSqlParser.GREATER_EQUALS: + case PostgreSqlParser.NOT_EQUALS: + case PostgreSqlParser.PERCENT: + case PostgreSqlParser.Operator: + this.enterOuterAlt(localContext, 1); + { + this.state = 9293; + this.allOperator(); + } + break; + case PostgreSqlParser.OPERATOR: + this.enterOuterAlt(localContext, 2); + { + this.state = 9294; + this.match(PostgreSqlParser.OPERATOR); + this.state = 9295; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9296; + this.anyOperator(); + this.state = 9297; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 subqueryOperator(): SubqueryOperatorContext { + let localContext = new SubqueryOperatorContext(this.context, this.state); + this.enterRule(localContext, 1162, PostgreSqlParser.RULE_subqueryOperator); + try { + this.state = 9313; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9301; + this.allOperator(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9302; + this.match(PostgreSqlParser.OPERATOR); + this.state = 9303; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9304; + this.anyOperator(); + this.state = 9305; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9307; + this.match(PostgreSqlParser.LIKE); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 9308; + this.match(PostgreSqlParser.NOT); + this.state = 9309; + this.match(PostgreSqlParser.LIKE); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 9310; + this.match(PostgreSqlParser.ILIKE); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 9311; + this.match(PostgreSqlParser.NOT); + this.state = 9312; + this.match(PostgreSqlParser.ILIKE); + } + 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 expressionList(): ExpressionListContext { + let localContext = new ExpressionListContext(this.context, this.state); + this.enterRule(localContext, 1164, PostgreSqlParser.RULE_expressionList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9315; + this.expression1(); + this.state = 9320; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 635, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9316; + this.match(PostgreSqlParser.COMMA); + this.state = 9317; + this.expression1(); } - break; - case PostgreSqlParser.STAR: + } + } + this.state = 9322; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 635, 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 functionArgumentList(): FunctionArgumentListContext { + let localContext = new FunctionArgumentListContext(this.context, this.state); + this.enterRule(localContext, 1166, PostgreSqlParser.RULE_functionArgumentList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9323; + this.functionArgumentExpression(); + this.state = 9328; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 636, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { - this.state = 9677; - this.match(PostgreSqlParser.STAR); + { + this.state = 9324; + this.match(PostgreSqlParser.COMMA); + this.state = 9325; + this.functionArgumentExpression(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + } + this.state = 9330; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 636, 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 functionArgumentExpression(): FunctionArgumentExpressionContext { + let localContext = new FunctionArgumentExpressionContext(this.context, this.state); + this.enterRule(localContext, 1168, PostgreSqlParser.RULE_functionArgumentExpression); + let _la: number; + try { + this.state = 9336; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9331; + this.expression1(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9332; + this.parameterName(); + this.state = 9333; + _la = this.tokenStream.LA(1); + if(!(_la === 20 || _la === 22)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 9334; + this.expression1(); + } + 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 typeList(): TypeListContext { + let localContext = new TypeListContext(this.context, this.state); + this.enterRule(localContext, 1170, PostgreSqlParser.RULE_typeList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9338; + this.typeName(); + this.state = 9343; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 9339; + this.match(PostgreSqlParser.COMMA); + this.state = 9340; + this.typeName(); + } + } + this.state = 9345; + 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 arrayExpression(): ArrayExpressionContext { + let localContext = new ArrayExpressionContext(this.context, this.state); + this.enterRule(localContext, 1172, PostgreSqlParser.RULE_arrayExpression); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9346; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 9349; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.SESSION_USER: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 9347; + this.expressionList(); + } + break; + case PostgreSqlParser.OPEN_BRACKET: + { + this.state = 9348; + this.arrayExpressionList(); + } + break; + case PostgreSqlParser.CLOSE_BRACKET: + break; + default: + break; + } + this.state = 9351; + this.match(PostgreSqlParser.CLOSE_BRACKET); + } + } + 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 arrayExpressionList(): ArrayExpressionListContext { + let localContext = new ArrayExpressionListContext(this.context, this.state); + this.enterRule(localContext, 1174, PostgreSqlParser.RULE_arrayExpressionList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9353; + this.arrayExpression(); + this.state = 9358; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 9354; + this.match(PostgreSqlParser.COMMA); + this.state = 9355; + this.arrayExpression(); + } + } + this.state = 9360; + 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 extractList(): ExtractListContext { + let localContext = new ExtractListContext(this.context, this.state); + this.enterRule(localContext, 1176, PostgreSqlParser.RULE_extractList); + try { + this.state = 9366; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RESET: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SET: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 1); + { + this.state = 9361; + this.extractArgument(); + this.state = 9362; + this.match(PostgreSqlParser.FROM); + this.state = 9363; + this.expression1(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 extractArgument(): ExtractArgumentContext { + let localContext = new ExtractArgumentContext(this.context, this.state); + this.enterRule(localContext, 1178, PostgreSqlParser.RULE_extractArgument); + try { + this.state = 9376; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.IS: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RESET: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SET: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + this.enterOuterAlt(localContext, 1); + { + this.state = 9368; + this.identifier(); + } + break; + case PostgreSqlParser.YEAR_P: + this.enterOuterAlt(localContext, 2); + { + this.state = 9369; + this.match(PostgreSqlParser.YEAR_P); + } + break; + case PostgreSqlParser.MONTH_P: + this.enterOuterAlt(localContext, 3); + { + this.state = 9370; + this.match(PostgreSqlParser.MONTH_P); + } + break; + case PostgreSqlParser.DAY_P: + this.enterOuterAlt(localContext, 4); + { + this.state = 9371; + this.match(PostgreSqlParser.DAY_P); + } + break; + case PostgreSqlParser.HOUR_P: + this.enterOuterAlt(localContext, 5); + { + this.state = 9372; + this.match(PostgreSqlParser.HOUR_P); + } + break; + case PostgreSqlParser.MINUTE_P: + this.enterOuterAlt(localContext, 6); + { + this.state = 9373; + this.match(PostgreSqlParser.MINUTE_P); + } + break; + case PostgreSqlParser.SECOND_P: + this.enterOuterAlt(localContext, 7); + { + this.state = 9374; + this.match(PostgreSqlParser.SECOND_P); + } + break; + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 8); + { + this.state = 9375; + this.sconst(); + } + 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 unicodeNormalForm(): UnicodeNormalFormContext { + let localContext = new UnicodeNormalFormContext(this.context, this.state); + this.enterRule(localContext, 1180, PostgreSqlParser.RULE_unicodeNormalForm); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9378; + _la = this.tokenStream.LA(1); + if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public overlayList(): OverlayListContext { + let localContext = new OverlayListContext(this.context, this.state); + this.enterRule(localContext, 1182, PostgreSqlParser.RULE_overlayList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9380; + this.expression1(); + this.state = 9381; + this.match(PostgreSqlParser.PLACING); + this.state = 9382; + this.expression1(); + this.state = 9383; + this.match(PostgreSqlParser.FROM); + this.state = 9384; + this.expression1(); + this.state = 9387; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 9385; + this.match(PostgreSqlParser.FOR); + this.state = 9386; + this.expression1(); + } + } + + } + } + 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 positionList(): PositionListContext { + let localContext = new PositionListContext(this.context, this.state); + this.enterRule(localContext, 1184, PostgreSqlParser.RULE_positionList); + try { + this.state = 9394; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.AND: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DO: + case PostgreSqlParser.FALSE_P: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.SESSION_USER: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LEFT: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.RIGHT: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 1); + { + this.state = 9389; + this.expression2(0); + this.state = 9390; + this.match(PostgreSqlParser.IN_P); + this.state = 9391; + this.expression2(0); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 substrList(): SubstrListContext { + let localContext = new SubstrListContext(this.context, this.state); + this.enterRule(localContext, 1186, PostgreSqlParser.RULE_substrList); + try { + this.state = 9423; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9396; + this.expression1(); + this.state = 9397; + this.match(PostgreSqlParser.FROM); + this.state = 9398; + this.expression1(); + this.state = 9399; + this.match(PostgreSqlParser.FOR); + this.state = 9400; + this.expression1(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9402; + this.expression1(); + this.state = 9403; + this.match(PostgreSqlParser.FOR); + this.state = 9404; + this.expression1(); + this.state = 9405; + this.match(PostgreSqlParser.FROM); + this.state = 9406; + this.expression1(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9408; + this.expression1(); + this.state = 9409; + this.match(PostgreSqlParser.FROM); + this.state = 9410; + this.expression1(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 9412; + this.expression1(); + this.state = 9413; + this.match(PostgreSqlParser.FOR); + this.state = 9414; + this.expression1(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 9416; + this.expression1(); + this.state = 9417; + this.match(PostgreSqlParser.SIMILAR); + this.state = 9418; + this.expression1(); + this.state = 9419; + this.match(PostgreSqlParser.ESCAPE); + this.state = 9420; + this.expression1(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 9422; + this.expressionList(); + } + 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 trimList(): TrimListContext { + let localContext = new TrimListContext(this.context, this.state); + this.enterRule(localContext, 1188, PostgreSqlParser.RULE_trimList); + try { + this.state = 9432; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 9425; + this.expression1(); + this.state = 9426; + this.match(PostgreSqlParser.FROM); + this.state = 9427; + this.expressionList(); } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 9429; + this.match(PostgreSqlParser.FROM); + this.state = 9430; + this.expressionList(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 9431; + this.expressionList(); + } + 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 inExpression(): InExpressionContext { + let localContext = new InExpressionContext(this.context, this.state); + this.enterRule(localContext, 1190, PostgreSqlParser.RULE_inExpression); + try { + this.state = 9439; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 647, this.context) ) { + case 1: + localContext = new In_expr_selectContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 9434; + this.selectWithParenthesis(); } break; - case PostgreSqlParser.OPEN_BRACKET: + case 2: + localContext = new In_expr_listContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 9680; - this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 9686; + this.state = 9435; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 9436; + this.expressionList(); + this.state = 9437; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + 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 caseExpression(): CaseExpressionContext { + let localContext = new CaseExpressionContext(this.context, this.state); + this.enterRule(localContext, 1192, PostgreSqlParser.RULE_caseExpression); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9441; + this.match(PostgreSqlParser.CASE); + this.state = 9442; + this.caseArg(); + this.state = 9443; + this.whenClauseList(); + this.state = 9444; + this.caseDefault(); + this.state = 9445; + this.match(PostgreSqlParser.END_P); + } + } + 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 whenClauseList(): WhenClauseListContext { + let localContext = new WhenClauseListContext(this.context, this.state); + this.enterRule(localContext, 1194, PostgreSqlParser.RULE_whenClauseList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9448; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 9447; + this.whenClause(); + } + } + this.state = 9450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 640, this.context) ) { - case 1: - { - this.state = 9681; - this.a_expr(); - } - break; - case 2: - { - this.state = 9682; - this.opt_slice_bound(); - this.state = 9683; - this.match(PostgreSqlParser.COLON); - this.state = 9684; - this.opt_slice_bound(); - } - break; + _la = this.tokenStream.LA(1); + } while (_la === 102); + } + } + 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 whenClause(): WhenClauseContext { + let localContext = new WhenClauseContext(this.context, this.state); + this.enterRule(localContext, 1196, PostgreSqlParser.RULE_whenClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9452; + this.match(PostgreSqlParser.WHEN); + this.state = 9453; + this.expression1(); + this.state = 9454; + this.match(PostgreSqlParser.THEN); + this.state = 9455; + this.expression1(); + } + } + 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 caseDefault(): CaseDefaultContext { + let localContext = new CaseDefaultContext(this.context, this.state); + this.enterRule(localContext, 1198, PostgreSqlParser.RULE_caseDefault); + try { + this.state = 9460; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ELSE: + this.enterOuterAlt(localContext, 1); + { + this.state = 9457; + this.match(PostgreSqlParser.ELSE); + this.state = 9458; + this.expression1(); } - this.state = 9688; - this.match(PostgreSqlParser.CLOSE_BRACKET); + break; + case PostgreSqlParser.END_P: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { } break; default: @@ -67054,11 +61022,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_slice_bound(): Opt_slice_boundContext { - let localContext = new Opt_slice_boundContext(this.context, this.state); - this.enterRule(localContext, 1320, PostgreSqlParser.RULE_opt_slice_bound); + public caseArg(): CaseArgContext { + let localContext = new CaseArgContext(this.context, this.state); + this.enterRule(localContext, 1200, PostgreSqlParser.RULE_caseArg); try { - this.state = 9694; + this.state = 9464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -67631,15 +61599,746 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 9692; - this.a_expr(); + this.state = 9462; + this.expression1(); + } + break; + case PostgreSqlParser.WHEN: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty + { + } + 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 columnReference(): ColumnReferenceContext { + let localContext = new ColumnReferenceContext(this.context, this.state); + this.enterRule(localContext, 1202, PostgreSqlParser.RULE_columnReference); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9466; + this.columnId(); + this.state = 9468; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { + case 1: + { + this.state = 9467; + this.indirection(); + } + 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 indirectionElement(): IndirectionElementContext { + let localContext = new IndirectionElementContext(this.context, this.state); + this.enterRule(localContext, 1204, PostgreSqlParser.RULE_indirectionElement); + let _la: number; + try { + this.state = 9487; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.DOT: + this.enterOuterAlt(localContext, 1); + { + this.state = 9470; + this.match(PostgreSqlParser.DOT); + this.state = 9473; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.ALL: + case PostgreSqlParser.ANALYSE: + case PostgreSqlParser.ANALYZE: + case PostgreSqlParser.AND: + case PostgreSqlParser.ANY: + case PostgreSqlParser.ARRAY: + case PostgreSqlParser.AS: + case PostgreSqlParser.ASC: + case PostgreSqlParser.ASYMMETRIC: + case PostgreSqlParser.BOTH: + case PostgreSqlParser.CASE: + case PostgreSqlParser.CAST: + case PostgreSqlParser.CHECK: + case PostgreSqlParser.COLLATE: + case PostgreSqlParser.COLUMN: + case PostgreSqlParser.CONSTRAINT: + case PostgreSqlParser.CREATE: + case PostgreSqlParser.CURRENT_CATALOG: + case PostgreSqlParser.CURRENT_DATE: + case PostgreSqlParser.CURRENT_ROLE: + case PostgreSqlParser.CURRENT_TIME: + case PostgreSqlParser.CURRENT_TIMESTAMP: + case PostgreSqlParser.CURRENT_USER: + case PostgreSqlParser.DEFAULT: + case PostgreSqlParser.DEFERRABLE: + case PostgreSqlParser.DESC: + case PostgreSqlParser.DISTINCT: + case PostgreSqlParser.DO: + case PostgreSqlParser.ELSE: + case PostgreSqlParser.EXCEPT: + case PostgreSqlParser.FALSE_P: + case PostgreSqlParser.FETCH: + case PostgreSqlParser.FOR: + case PostgreSqlParser.FOREIGN: + case PostgreSqlParser.FROM: + case PostgreSqlParser.GRANT: + case PostgreSqlParser.GROUP_P: + case PostgreSqlParser.HAVING: + case PostgreSqlParser.IN_P: + case PostgreSqlParser.INITIALLY: + case PostgreSqlParser.INTERSECT: + case PostgreSqlParser.LATERAL_P: + case PostgreSqlParser.LEADING: + case PostgreSqlParser.LIMIT: + case PostgreSqlParser.LOCALTIME: + case PostgreSqlParser.LOCALTIMESTAMP: + case PostgreSqlParser.NOT: + case PostgreSqlParser.NULL_P: + case PostgreSqlParser.OFFSET: + case PostgreSqlParser.ON: + case PostgreSqlParser.ONLY: + case PostgreSqlParser.OR: + case PostgreSqlParser.ORDER: + case PostgreSqlParser.PLACING: + case PostgreSqlParser.PRIMARY: + case PostgreSqlParser.REFERENCES: + case PostgreSqlParser.RETURNING: + case PostgreSqlParser.SELECT: + case PostgreSqlParser.SESSION_USER: + case PostgreSqlParser.SOME: + case PostgreSqlParser.SYMMETRIC: + case PostgreSqlParser.TABLE: + case PostgreSqlParser.THEN: + case PostgreSqlParser.TO: + case PostgreSqlParser.TRAILING: + case PostgreSqlParser.TRUE_P: + case PostgreSqlParser.UNION: + case PostgreSqlParser.UNIQUE: + case PostgreSqlParser.USER: + case PostgreSqlParser.USING: + case PostgreSqlParser.VARIADIC: + case PostgreSqlParser.WHEN: + case PostgreSqlParser.WHERE: + case PostgreSqlParser.WINDOW: + case PostgreSqlParser.WITH: + case PostgreSqlParser.AUTHORIZATION: + case PostgreSqlParser.BINARY: + case PostgreSqlParser.COLLATION: + case PostgreSqlParser.CONCURRENTLY: + case PostgreSqlParser.CROSS: + case PostgreSqlParser.CURRENT_SCHEMA: + case PostgreSqlParser.FREEZE: + case PostgreSqlParser.FULL: + case PostgreSqlParser.ILIKE: + case PostgreSqlParser.INNER_P: + case PostgreSqlParser.IS: + case PostgreSqlParser.ISNULL: + case PostgreSqlParser.JOIN: + case PostgreSqlParser.LIKE: + case PostgreSqlParser.NATURAL: + case PostgreSqlParser.NOTNULL: + case PostgreSqlParser.OUTER_P: + case PostgreSqlParser.OVER: + case PostgreSqlParser.OVERLAPS: + case PostgreSqlParser.SIMILAR: + case PostgreSqlParser.VERBOSE: + case PostgreSqlParser.ABORT_P: + case PostgreSqlParser.ABSOLUTE_P: + case PostgreSqlParser.ACCESS: + case PostgreSqlParser.ACTION: + case PostgreSqlParser.ADD_P: + case PostgreSqlParser.ADMIN: + case PostgreSqlParser.AFTER: + case PostgreSqlParser.AGGREGATE: + case PostgreSqlParser.ALSO: + case PostgreSqlParser.ALTER: + case PostgreSqlParser.ALWAYS: + case PostgreSqlParser.ASSERTION: + case PostgreSqlParser.ASSIGNMENT: + case PostgreSqlParser.AT: + case PostgreSqlParser.ATTRIBUTE: + case PostgreSqlParser.BACKWARD: + case PostgreSqlParser.BEFORE: + case PostgreSqlParser.BEGIN_P: + case PostgreSqlParser.BY: + case PostgreSqlParser.CACHE: + case PostgreSqlParser.CALLED: + case PostgreSqlParser.CASCADE: + case PostgreSqlParser.CASCADED: + case PostgreSqlParser.CATALOG: + case PostgreSqlParser.CHAIN: + case PostgreSqlParser.CHARACTERISTICS: + case PostgreSqlParser.CHECKPOINT: + case PostgreSqlParser.CLASS: + case PostgreSqlParser.CLOSE: + case PostgreSqlParser.CLUSTER: + case PostgreSqlParser.COMMENT: + case PostgreSqlParser.COMMENTS: + case PostgreSqlParser.COMMIT: + case PostgreSqlParser.COMMITTED: + case PostgreSqlParser.CONFIGURATION: + case PostgreSqlParser.CONNECTION: + case PostgreSqlParser.CONSTRAINTS: + case PostgreSqlParser.CONTENT_P: + case PostgreSqlParser.CONTINUE_P: + case PostgreSqlParser.CONVERSION_P: + case PostgreSqlParser.COPY: + case PostgreSqlParser.COST: + case PostgreSqlParser.CSV: + case PostgreSqlParser.CURSOR: + case PostgreSqlParser.CYCLE: + case PostgreSqlParser.DATA_P: + case PostgreSqlParser.DATABASE: + case PostgreSqlParser.DAY_P: + case PostgreSqlParser.DEALLOCATE: + case PostgreSqlParser.DECLARE: + case PostgreSqlParser.DEFAULTS: + case PostgreSqlParser.DEFERRED: + case PostgreSqlParser.DEFINER: + case PostgreSqlParser.DELETE_P: + case PostgreSqlParser.DELIMITER: + case PostgreSqlParser.DELIMITERS: + case PostgreSqlParser.DICTIONARY: + case PostgreSqlParser.DISABLE_P: + case PostgreSqlParser.DISCARD: + case PostgreSqlParser.DOCUMENT_P: + case PostgreSqlParser.DOMAIN_P: + case PostgreSqlParser.DOUBLE_P: + case PostgreSqlParser.DROP: + case PostgreSqlParser.EACH: + case PostgreSqlParser.ENABLE_P: + case PostgreSqlParser.ENCODING: + case PostgreSqlParser.ENCRYPTED: + case PostgreSqlParser.ENUM_P: + case PostgreSqlParser.ESCAPE: + case PostgreSqlParser.EVENT: + case PostgreSqlParser.EXCLUDE: + case PostgreSqlParser.EXCLUDING: + case PostgreSqlParser.EXCLUSIVE: + case PostgreSqlParser.EXECUTE: + case PostgreSqlParser.EXPLAIN: + case PostgreSqlParser.EXTENSION: + case PostgreSqlParser.EXTERNAL: + case PostgreSqlParser.FAMILY: + case PostgreSqlParser.FIRST_P: + case PostgreSqlParser.FOLLOWING: + case PostgreSqlParser.FORCE: + case PostgreSqlParser.FORWARD: + case PostgreSqlParser.FUNCTION: + case PostgreSqlParser.FUNCTIONS: + case PostgreSqlParser.GLOBAL: + case PostgreSqlParser.GRANTED: + case PostgreSqlParser.HANDLER: + case PostgreSqlParser.HEADER_P: + case PostgreSqlParser.HOLD: + case PostgreSqlParser.HOUR_P: + case PostgreSqlParser.IDENTITY_P: + case PostgreSqlParser.IF_P: + case PostgreSqlParser.IMMEDIATE: + case PostgreSqlParser.IMMUTABLE: + case PostgreSqlParser.IMPLICIT_P: + case PostgreSqlParser.INCLUDING: + case PostgreSqlParser.INCREMENT: + case PostgreSqlParser.INDEX: + case PostgreSqlParser.INDEXES: + case PostgreSqlParser.INHERIT: + case PostgreSqlParser.INHERITS: + case PostgreSqlParser.INLINE_P: + case PostgreSqlParser.INSENSITIVE: + case PostgreSqlParser.INSERT: + case PostgreSqlParser.INSTEAD: + case PostgreSqlParser.INVOKER: + case PostgreSqlParser.ISOLATION: + case PostgreSqlParser.KEY: + case PostgreSqlParser.LABEL: + case PostgreSqlParser.LANGUAGE: + case PostgreSqlParser.LARGE_P: + case PostgreSqlParser.LAST_P: + case PostgreSqlParser.LEAKPROOF: + case PostgreSqlParser.LEVEL: + case PostgreSqlParser.LISTEN: + case PostgreSqlParser.LOAD: + case PostgreSqlParser.LOCAL: + case PostgreSqlParser.LOCATION: + case PostgreSqlParser.LOCK_P: + case PostgreSqlParser.MAPPING: + case PostgreSqlParser.MATCH: + case PostgreSqlParser.MATERIALIZED: + case PostgreSqlParser.MAXVALUE: + case PostgreSqlParser.MINUTE_P: + case PostgreSqlParser.MINVALUE: + case PostgreSqlParser.MODE: + case PostgreSqlParser.MONTH_P: + case PostgreSqlParser.MOVE: + case PostgreSqlParser.NAME_P: + case PostgreSqlParser.NAMES: + case PostgreSqlParser.NEXT: + case PostgreSqlParser.NO: + case PostgreSqlParser.NOTHING: + case PostgreSqlParser.NOTIFY: + case PostgreSqlParser.NOWAIT: + case PostgreSqlParser.NULLS_P: + case PostgreSqlParser.OBJECT_P: + case PostgreSqlParser.OF: + case PostgreSqlParser.OFF: + case PostgreSqlParser.OIDS: + case PostgreSqlParser.OPERATOR: + case PostgreSqlParser.OPTION: + case PostgreSqlParser.OPTIONS: + case PostgreSqlParser.OWNED: + case PostgreSqlParser.OWNER: + case PostgreSqlParser.PARSER: + case PostgreSqlParser.PARTIAL: + case PostgreSqlParser.PARTITION: + case PostgreSqlParser.PASSING: + case PostgreSqlParser.PASSWORD: + case PostgreSqlParser.PLANS: + case PostgreSqlParser.PRECEDING: + case PostgreSqlParser.PREPARE: + case PostgreSqlParser.PREPARED: + case PostgreSqlParser.PRESERVE: + case PostgreSqlParser.PRIOR: + case PostgreSqlParser.PRIVILEGES: + case PostgreSqlParser.PROCEDURAL: + case PostgreSqlParser.PROCEDURE: + case PostgreSqlParser.PROGRAM: + case PostgreSqlParser.QUOTE: + case PostgreSqlParser.RANGE: + case PostgreSqlParser.READ: + case PostgreSqlParser.REASSIGN: + case PostgreSqlParser.RECHECK: + case PostgreSqlParser.RECURSIVE: + case PostgreSqlParser.REF: + case PostgreSqlParser.REFRESH: + case PostgreSqlParser.REINDEX: + case PostgreSqlParser.RELATIVE_P: + case PostgreSqlParser.RELEASE: + case PostgreSqlParser.RENAME: + case PostgreSqlParser.REPEATABLE: + case PostgreSqlParser.REPLACE: + case PostgreSqlParser.REPLICA: + case PostgreSqlParser.RESET: + case PostgreSqlParser.RESTART: + case PostgreSqlParser.RESTRICT: + case PostgreSqlParser.RETURNS: + case PostgreSqlParser.REVOKE: + case PostgreSqlParser.ROLE: + case PostgreSqlParser.ROLLBACK: + case PostgreSqlParser.ROWS: + case PostgreSqlParser.RULE: + case PostgreSqlParser.SAVEPOINT: + case PostgreSqlParser.SCHEMA: + case PostgreSqlParser.SCROLL: + case PostgreSqlParser.SEARCH: + case PostgreSqlParser.SECOND_P: + case PostgreSqlParser.SECURITY: + case PostgreSqlParser.SEQUENCE: + case PostgreSqlParser.SEQUENCES: + case PostgreSqlParser.SERIALIZABLE: + case PostgreSqlParser.SERVER: + case PostgreSqlParser.SESSION: + case PostgreSqlParser.SET: + case PostgreSqlParser.SHARE: + case PostgreSqlParser.SHOW: + case PostgreSqlParser.SIMPLE: + case PostgreSqlParser.SNAPSHOT: + case PostgreSqlParser.STABLE: + case PostgreSqlParser.STANDALONE_P: + case PostgreSqlParser.START: + case PostgreSqlParser.STATEMENT: + case PostgreSqlParser.STATISTICS: + case PostgreSqlParser.STDIN: + case PostgreSqlParser.STDOUT: + case PostgreSqlParser.STORAGE: + case PostgreSqlParser.STRICT_P: + case PostgreSqlParser.STRIP_P: + case PostgreSqlParser.SYSID: + case PostgreSqlParser.SYSTEM_P: + case PostgreSqlParser.TABLES: + case PostgreSqlParser.TABLESPACE: + case PostgreSqlParser.TEMP: + case PostgreSqlParser.TEMPLATE: + case PostgreSqlParser.TEMPORARY: + case PostgreSqlParser.TEXT_P: + case PostgreSqlParser.TRANSACTION: + case PostgreSqlParser.TRIGGER: + case PostgreSqlParser.TRUNCATE: + case PostgreSqlParser.TRUSTED: + case PostgreSqlParser.TYPE_P: + case PostgreSqlParser.TYPES_P: + case PostgreSqlParser.UNBOUNDED: + case PostgreSqlParser.UNCOMMITTED: + case PostgreSqlParser.UNENCRYPTED: + case PostgreSqlParser.UNKNOWN: + case PostgreSqlParser.UNLISTEN: + case PostgreSqlParser.UNLOGGED: + case PostgreSqlParser.UNTIL: + case PostgreSqlParser.UPDATE: + case PostgreSqlParser.VACUUM: + case PostgreSqlParser.VALID: + case PostgreSqlParser.VALIDATE: + case PostgreSqlParser.VALIDATOR: + case PostgreSqlParser.VARYING: + case PostgreSqlParser.VERSION_P: + case PostgreSqlParser.VIEW: + case PostgreSqlParser.VOLATILE: + case PostgreSqlParser.WHITESPACE_P: + case PostgreSqlParser.WITHOUT: + case PostgreSqlParser.WORK: + case PostgreSqlParser.WRAPPER: + case PostgreSqlParser.WRITE: + case PostgreSqlParser.XML_P: + case PostgreSqlParser.YEAR_P: + case PostgreSqlParser.YES_P: + case PostgreSqlParser.ZONE: + case PostgreSqlParser.BETWEEN: + case PostgreSqlParser.BIGINT: + case PostgreSqlParser.BIT: + case PostgreSqlParser.BOOLEAN_P: + case PostgreSqlParser.CHAR_P: + case PostgreSqlParser.CHARACTER: + case PostgreSqlParser.COALESCE: + case PostgreSqlParser.DEC: + case PostgreSqlParser.DECIMAL_P: + case PostgreSqlParser.EXISTS: + case PostgreSqlParser.EXTRACT: + case PostgreSqlParser.FLOAT_P: + case PostgreSqlParser.GREATEST: + case PostgreSqlParser.INOUT: + case PostgreSqlParser.INT_P: + case PostgreSqlParser.INTEGER: + case PostgreSqlParser.INTERVAL: + case PostgreSqlParser.LEAST: + case PostgreSqlParser.NATIONAL: + case PostgreSqlParser.NCHAR: + case PostgreSqlParser.NONE: + case PostgreSqlParser.NULLIF: + case PostgreSqlParser.NUMERIC: + case PostgreSqlParser.OVERLAY: + case PostgreSqlParser.POSITION: + case PostgreSqlParser.PRECISION: + case PostgreSqlParser.REAL: + case PostgreSqlParser.ROW: + case PostgreSqlParser.SETOF: + case PostgreSqlParser.SMALLINT: + case PostgreSqlParser.SUBSTRING: + case PostgreSqlParser.TIME: + case PostgreSqlParser.TIMESTAMP: + case PostgreSqlParser.TREAT: + case PostgreSqlParser.TRIM: + case PostgreSqlParser.VALUES: + case PostgreSqlParser.VARCHAR: + case PostgreSqlParser.XMLATTRIBUTES: + case PostgreSqlParser.XMLCOMMENT: + case PostgreSqlParser.XMLAGG: + case PostgreSqlParser.XML_IS_WELL_FORMED: + case PostgreSqlParser.XML_IS_WELL_FORMED_DOCUMENT: + case PostgreSqlParser.XML_IS_WELL_FORMED_CONTENT: + case PostgreSqlParser.XPATH: + case PostgreSqlParser.XPATH_EXISTS: + case PostgreSqlParser.XMLCONCAT: + case PostgreSqlParser.XMLELEMENT: + case PostgreSqlParser.XMLEXISTS: + case PostgreSqlParser.XMLFOREST: + case PostgreSqlParser.XMLPARSE: + case PostgreSqlParser.XMLPI: + case PostgreSqlParser.XMLROOT: + case PostgreSqlParser.XMLSERIALIZE: + case PostgreSqlParser.CALL: + case PostgreSqlParser.CURRENT_P: + case PostgreSqlParser.ATTACH: + case PostgreSqlParser.DETACH: + case PostgreSqlParser.EXPRESSION: + case PostgreSqlParser.GENERATED: + case PostgreSqlParser.LOGGED: + case PostgreSqlParser.STORED: + case PostgreSqlParser.INCLUDE: + case PostgreSqlParser.ROUTINE: + case PostgreSqlParser.TRANSFORM: + case PostgreSqlParser.IMPORT_P: + case PostgreSqlParser.POLICY: + case PostgreSqlParser.METHOD: + case PostgreSqlParser.REFERENCING: + case PostgreSqlParser.NEW: + case PostgreSqlParser.OLD: + case PostgreSqlParser.VALUE_P: + case PostgreSqlParser.SUBSCRIPTION: + case PostgreSqlParser.PUBLICATION: + case PostgreSqlParser.OUT_P: + case PostgreSqlParser.END_P: + case PostgreSqlParser.ROUTINES: + case PostgreSqlParser.SCHEMAS: + case PostgreSqlParser.PROCEDURES: + case PostgreSqlParser.INPUT_P: + case PostgreSqlParser.SUPPORT: + case PostgreSqlParser.PARALLEL: + case PostgreSqlParser.SQL_P: + case PostgreSqlParser.DEPENDS: + case PostgreSqlParser.OVERRIDING: + case PostgreSqlParser.CONFLICT: + case PostgreSqlParser.SKIP_P: + case PostgreSqlParser.LOCKED: + case PostgreSqlParser.TIES: + case PostgreSqlParser.ROLLUP: + case PostgreSqlParser.CUBE: + case PostgreSqlParser.GROUPING: + case PostgreSqlParser.SETS: + case PostgreSqlParser.TABLESAMPLE: + case PostgreSqlParser.ORDINALITY: + case PostgreSqlParser.XMLTABLE: + case PostgreSqlParser.COLUMNS: + case PostgreSqlParser.XMLNAMESPACES: + case PostgreSqlParser.ROWTYPE: + case PostgreSqlParser.NORMALIZED: + case PostgreSqlParser.WITHIN: + case PostgreSqlParser.FILTER: + case PostgreSqlParser.GROUPS: + case PostgreSqlParser.OTHERS: + case PostgreSqlParser.NFC: + case PostgreSqlParser.NFD: + case PostgreSqlParser.NFKC: + case PostgreSqlParser.NFKD: + case PostgreSqlParser.UESCAPE: + case PostgreSqlParser.VIEWS: + case PostgreSqlParser.NORMALIZE: + case PostgreSqlParser.DUMP: + case PostgreSqlParser.PRINT_STRICT_PARAMS: + case PostgreSqlParser.VARIABLE_CONFLICT: + case PostgreSqlParser.ERROR: + case PostgreSqlParser.USE_VARIABLE: + case PostgreSqlParser.USE_COLUMN: + case PostgreSqlParser.ALIAS: + case PostgreSqlParser.CONSTANT: + case PostgreSqlParser.PERFORM: + case PostgreSqlParser.GET: + case PostgreSqlParser.DIAGNOSTICS: + case PostgreSqlParser.STACKED: + case PostgreSqlParser.ELSIF: + case PostgreSqlParser.REVERSE: + case PostgreSqlParser.SLICE: + case PostgreSqlParser.EXIT: + case PostgreSqlParser.RETURN: + case PostgreSqlParser.QUERY: + case PostgreSqlParser.RAISE: + case PostgreSqlParser.SQLSTATE: + case PostgreSqlParser.DEBUG: + case PostgreSqlParser.LOG: + case PostgreSqlParser.INFO: + case PostgreSqlParser.NOTICE: + case PostgreSqlParser.WARNING: + case PostgreSqlParser.EXCEPTION: + case PostgreSqlParser.ASSERT: + case PostgreSqlParser.OPEN: + case PostgreSqlParser.ABS: + case PostgreSqlParser.CBRT: + case PostgreSqlParser.CEIL: + case PostgreSqlParser.CEILING: + case PostgreSqlParser.DEGREES: + case PostgreSqlParser.DIV: + case PostgreSqlParser.EXP: + case PostgreSqlParser.FACTORIAL: + case PostgreSqlParser.FLOOR: + case PostgreSqlParser.GCD: + case PostgreSqlParser.LCM: + case PostgreSqlParser.LN: + case PostgreSqlParser.LOG10: + case PostgreSqlParser.MIN_SCALE: + case PostgreSqlParser.MOD: + case PostgreSqlParser.PI: + case PostgreSqlParser.POWER: + case PostgreSqlParser.RADIANS: + case PostgreSqlParser.ROUND: + case PostgreSqlParser.SCALE: + case PostgreSqlParser.SIGN: + case PostgreSqlParser.SQRT: + case PostgreSqlParser.TRIM_SCALE: + case PostgreSqlParser.TRUNC: + case PostgreSqlParser.WIDTH_BUCKET: + case PostgreSqlParser.RANDOM: + case PostgreSqlParser.SETSEED: + case PostgreSqlParser.ACOS: + case PostgreSqlParser.ACOSD: + case PostgreSqlParser.ASIN: + case PostgreSqlParser.ASIND: + case PostgreSqlParser.ATAN: + case PostgreSqlParser.ATAND: + case PostgreSqlParser.ATAN2: + case PostgreSqlParser.ATAN2D: + case PostgreSqlParser.COS: + case PostgreSqlParser.COSD: + case PostgreSqlParser.COT: + case PostgreSqlParser.COTD: + case PostgreSqlParser.SIN: + case PostgreSqlParser.SIND: + case PostgreSqlParser.TAN: + case PostgreSqlParser.TAND: + case PostgreSqlParser.SINH: + case PostgreSqlParser.COSH: + case PostgreSqlParser.TANH: + case PostgreSqlParser.ASINH: + case PostgreSqlParser.ACOSH: + case PostgreSqlParser.ATANH: + case PostgreSqlParser.BIT_LENGTH: + case PostgreSqlParser.CHAR_LENGTH: + case PostgreSqlParser.CHARACTER_LENGTH: + case PostgreSqlParser.LOWER: + case PostgreSqlParser.OCTET_LENGTH: + case PostgreSqlParser.UPPER: + case PostgreSqlParser.ASCII: + case PostgreSqlParser.BTRIM: + case PostgreSqlParser.CHR: + case PostgreSqlParser.CONCAT: + case PostgreSqlParser.CONCAT_WS: + case PostgreSqlParser.FORMAT: + case PostgreSqlParser.INITCAP: + case PostgreSqlParser.LENGTH: + case PostgreSqlParser.LPAD: + case PostgreSqlParser.LTRIM: + case PostgreSqlParser.MD5: + case PostgreSqlParser.PARSE_IDENT: + case PostgreSqlParser.PG_CLIENT_ENCODING: + case PostgreSqlParser.QUOTE_IDENT: + case PostgreSqlParser.QUOTE_LITERAL: + case PostgreSqlParser.QUOTE_NULLABLE: + case PostgreSqlParser.REGEXP_COUNT: + case PostgreSqlParser.REGEXP_INSTR: + case PostgreSqlParser.REGEXP_LIKE: + case PostgreSqlParser.REGEXP_MATCH: + case PostgreSqlParser.REGEXP_MATCHES: + case PostgreSqlParser.REGEXP_REPLACE: + case PostgreSqlParser.REGEXP_SPLIT_TO_ARRAY: + case PostgreSqlParser.REGEXP_SPLIT_TO_TABLE: + case PostgreSqlParser.REGEXP_SUBSTR: + case PostgreSqlParser.REPEAT: + case PostgreSqlParser.RPAD: + case PostgreSqlParser.RTRIM: + case PostgreSqlParser.SPLIT_PART: + case PostgreSqlParser.STARTS_WITH: + case PostgreSqlParser.STRING_TO_ARRAY: + case PostgreSqlParser.STRING_TO_TABLE: + case PostgreSqlParser.STRPOS: + case PostgreSqlParser.SUBSTR: + case PostgreSqlParser.TO_ASCII: + case PostgreSqlParser.TO_HEX: + case PostgreSqlParser.TRANSLATE: + case PostgreSqlParser.UNISTR: + case PostgreSqlParser.AGE: + case PostgreSqlParser.CLOCK_TIMESTAMP: + case PostgreSqlParser.DATE_BIN: + case PostgreSqlParser.DATE_PART: + case PostgreSqlParser.DATE_TRUNC: + case PostgreSqlParser.ISFINITE: + case PostgreSqlParser.JUSTIFY_DAYS: + case PostgreSqlParser.JUSTIFY_HOURS: + case PostgreSqlParser.JUSTIFY_INTERVAL: + case PostgreSqlParser.MAKE_DATE: + case PostgreSqlParser.MAKE_INTERVAL: + case PostgreSqlParser.MAKE_TIME: + case PostgreSqlParser.MAKE_TIMESTAMP: + case PostgreSqlParser.MAKE_TIMESTAMPTZ: + case PostgreSqlParser.NOW: + case PostgreSqlParser.STATEMENT_TIMESTAMP: + case PostgreSqlParser.TIMEOFDAY: + case PostgreSqlParser.TRANSACTION_TIMESTAMP: + case PostgreSqlParser.TO_TIMESTAMP: + case PostgreSqlParser.TO_CHAR: + case PostgreSqlParser.TO_DATE: + case PostgreSqlParser.TO_NUMBER: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + { + this.state = 9471; + this.attributeName(); + } + break; + case PostgreSqlParser.STAR: + { + this.state = 9472; + this.match(PostgreSqlParser.STAR); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - case PostgreSqlParser.CLOSE_BRACKET: - case PostgreSqlParser.COLON: + case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty { + this.state = 9475; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 9484; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + case 1: + { + this.state = 9476; + this.expression1(); + } + break; + case 2: + { + this.state = 9478; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { + { + this.state = 9477; + this.expression1(); + } + } + + this.state = 9480; + this.match(PostgreSqlParser.COLON); + this.state = 9482; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 4294967295) !== 0) || ((((_la - 235)) & ~0x1F) === 0 && ((1 << (_la - 235)) & 4294672383) !== 0) || ((((_la - 267)) & ~0x1F) === 0 && ((1 << (_la - 267)) & 4294967295) !== 0) || ((((_la - 299)) & ~0x1F) === 0 && ((1 << (_la - 299)) & 4294967295) !== 0) || ((((_la - 331)) & ~0x1F) === 0 && ((1 << (_la - 331)) & 4294967295) !== 0) || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 4294967295) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 4294967295) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4160749567) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 4026511359) !== 0) || ((((_la - 523)) & ~0x1F) === 0 && ((1 << (_la - 523)) & 4294967295) !== 0) || ((((_la - 555)) & ~0x1F) === 0 && ((1 << (_la - 555)) & 4294967295) !== 0) || ((((_la - 587)) & ~0x1F) === 0 && ((1 << (_la - 587)) & 4294967295) !== 0) || ((((_la - 619)) & ~0x1F) === 0 && ((1 << (_la - 619)) & 3561488383) !== 0) || ((((_la - 654)) & ~0x1F) === 0 && ((1 << (_la - 654)) & 131537) !== 0)) { + { + this.state = 9481; + this.expression1(); + } + } + + } + break; + } + this.state = 9486; + this.match(PostgreSqlParser.CLOSE_BRACKET); } break; default: @@ -67662,12 +62361,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 1322, PostgreSqlParser.RULE_indirection); + this.enterRule(localContext, 1206, PostgreSqlParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9697; + this.state = 9490; this.errorHandler.sync(this); alternative = 1; do { @@ -67675,17 +62374,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 1: { { - this.state = 9696; - this.indirection_el(); + this.state = 9489; + this.indirectionElement(); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 9699; + this.state = 9492; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 643, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 657, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -67703,28 +62402,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_indirection(): Opt_indirectionContext { - let localContext = new Opt_indirectionContext(this.context, this.state); - this.enterRule(localContext, 1324, PostgreSqlParser.RULE_opt_indirection); + public optionalIndirection(): OptionalIndirectionContext { + let localContext = new OptionalIndirectionContext(this.context, this.state); + this.enterRule(localContext, 1208, PostgreSqlParser.RULE_optionalIndirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9704; + this.state = 9497; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 644, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 658, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9701; - this.indirection_el(); + this.state = 9494; + this.indirectionElement(); } } } - this.state = 9706; + this.state = 9499; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 644, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 658, this.context); } } } @@ -67742,18 +62441,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_target_list(): Opt_target_listContext { - let localContext = new Opt_target_listContext(this.context, this.state); - this.enterRule(localContext, 1326, PostgreSqlParser.RULE_opt_target_list); + public optionalTargetList(): OptionalTargetListContext { + let localContext = new OptionalTargetListContext(this.context, this.state); + this.enterRule(localContext, 1210, PostgreSqlParser.RULE_optionalTargetList); try { - this.state = 9709; + this.state = 9502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 659, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9707; - this.target_list(); + this.state = 9500; + this.targetList(); } break; case 2: @@ -67778,32 +62477,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public target_list(): Target_listContext { - let localContext = new Target_listContext(this.context, this.state); - this.enterRule(localContext, 1328, PostgreSqlParser.RULE_target_list); + public targetList(): TargetListContext { + let localContext = new TargetListContext(this.context, this.state); + this.enterRule(localContext, 1212, PostgreSqlParser.RULE_targetList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9711; - this.target_el(); - this.state = 9716; + this.state = 9504; + this.targetElement(); + this.state = 9509; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 646, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 660, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9712; + this.state = 9505; this.match(PostgreSqlParser.COMMA); - this.state = 9713; - this.target_el(); + this.state = 9506; + this.targetElement(); } } } - this.state = 9718; + this.state = 9511; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 646, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 660, this.context); } } } @@ -67821,18 +62520,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public target_el(): Target_elContext { - let localContext = new Target_elContext(this.context, this.state); - this.enterRule(localContext, 1330, PostgreSqlParser.RULE_target_el); + public targetElement(): TargetElementContext { + let localContext = new TargetElementContext(this.context, this.state); + this.enterRule(localContext, 1214, PostgreSqlParser.RULE_targetElement); try { - this.state = 9727; + this.state = 9520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 9719; + this.state = 9512; this.match(PostgreSqlParser.STAR); } break; @@ -68407,22 +63106,22 @@ export class PostgreSqlParser extends PostgreSqlParserBase { localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 9720; - this.a_expr(); - this.state = 9725; + this.state = 9513; + this.expression1(); + this.state = 9518; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 647, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 9721; + this.state = 9514; this.match(PostgreSqlParser.AS); - this.state = 9722; - this.collabel(); + this.state = 9515; + this.columnLabel(); } break; case 2: { - this.state = 9723; + this.state = 9516; this.identifier(); } break; @@ -68452,28 +63151,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public qualified_name_list(): Qualified_name_listContext { - let localContext = new Qualified_name_listContext(this.context, this.state); - this.enterRule(localContext, 1332, PostgreSqlParser.RULE_qualified_name_list); + public qualifiedNameList(): QualifiedNameListContext { + let localContext = new QualifiedNameListContext(this.context, this.state); + this.enterRule(localContext, 1216, PostgreSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9729; - this.qualified_name(); - this.state = 9734; + this.state = 9522; + this.qualifiedName(); + this.state = 9527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9730; + this.state = 9523; this.match(PostgreSqlParser.COMMA); - this.state = 9731; - this.qualified_name(); + this.state = 9524; + this.qualifiedName(); } } - this.state = 9736; + this.state = 9529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -68493,21 +63192,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public qualified_name(): Qualified_nameContext { - let localContext = new Qualified_nameContext(this.context, this.state); - this.enterRule(localContext, 1334, PostgreSqlParser.RULE_qualified_name); + public qualifiedName(): QualifiedNameContext { + let localContext = new QualifiedNameContext(this.context, this.state); + this.enterRule(localContext, 1218, PostgreSqlParser.RULE_qualifiedName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9737; - this.colid(); - this.state = 9739; + this.state = 9530; + this.columnId(); + this.state = 9532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 9738; + this.state = 9531; this.indirection(); } } @@ -68528,28 +63227,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public name_list(): Name_listContext { - let localContext = new Name_listContext(this.context, this.state); - this.enterRule(localContext, 1336, PostgreSqlParser.RULE_name_list); + public nameList(): NameListContext { + let localContext = new NameListContext(this.context, this.state); + this.enterRule(localContext, 1220, PostgreSqlParser.RULE_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9741; + this.state = 9534; this.name(); - this.state = 9746; + this.state = 9539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9742; + this.state = 9535; this.match(PostgreSqlParser.COMMA); - this.state = 9743; + this.state = 9536; this.name(); } } - this.state = 9748; + this.state = 9541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -68571,12 +63270,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public name(): NameContext { let localContext = new NameContext(this.context, this.state); - this.enterRule(localContext, 1338, PostgreSqlParser.RULE_name); + this.enterRule(localContext, 1222, PostgreSqlParser.RULE_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 9749; - this.colid(); + this.state = 9542; + this.columnId(); } } catch (re) { @@ -68593,14 +63292,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public attr_name(): Attr_nameContext { - let localContext = new Attr_nameContext(this.context, this.state); - this.enterRule(localContext, 1340, PostgreSqlParser.RULE_attr_name); + public attributeName(): AttributeNameContext { + let localContext = new AttributeNameContext(this.context, this.state); + this.enterRule(localContext, 1224, PostgreSqlParser.RULE_attributeName); try { this.enterOuterAlt(localContext, 1); { - this.state = 9751; - this.collabel(); + this.state = 9544; + this.columnLabel(); } } catch (re) { @@ -68617,13 +63316,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public file_name(): File_nameContext { - let localContext = new File_nameContext(this.context, this.state); - this.enterRule(localContext, 1342, PostgreSqlParser.RULE_file_name); + public fileName(): FileNameContext { + let localContext = new FileNameContext(this.context, this.state); + this.enterRule(localContext, 1226, PostgreSqlParser.RULE_fileName); try { this.enterOuterAlt(localContext, 1); { - this.state = 9753; + this.state = 9546; this.sconst(); } } @@ -68641,47 +63340,47 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public func_name(): Func_nameContext { - let localContext = new Func_nameContext(this.context, this.state); - this.enterRule(localContext, 1344, PostgreSqlParser.RULE_func_name); + public functionName(): FunctionNameContext { + let localContext = new FunctionNameContext(this.context, this.state); + this.enterRule(localContext, 1228, PostgreSqlParser.RULE_functionName); try { - this.state = 9762; + this.state = 9555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9755; - this.builtin_function_name(); + this.state = 9548; + this.builtinFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9756; - this.type_function_name(); + this.state = 9549; + this.typeFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9757; - this.colid(); - this.state = 9758; + this.state = 9550; + this.columnId(); + this.state = 9551; this.indirection(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9760; + this.state = 9553; this.match(PostgreSqlParser.LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9761; + this.state = 9554; this.match(PostgreSqlParser.RIGHT); } break; @@ -68701,54 +63400,54 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public aexprconst(): AexprconstContext { - let localContext = new AexprconstContext(this.context, this.state); - this.enterRule(localContext, 1346, PostgreSqlParser.RULE_aexprconst); + public aExpressionConst(): AExpressionConstContext { + let localContext = new AExpressionConstContext(this.context, this.state); + this.enterRule(localContext, 1230, PostgreSqlParser.RULE_aExpressionConst); try { - this.state = 9796; + this.state = 9589; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 669, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9764; + this.state = 9557; this.iconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9765; + this.state = 9558; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9766; + this.state = 9559; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9767; + this.state = 9560; this.bconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9768; + this.state = 9561; this.xconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9769; - this.func_name(); - this.state = 9777; + this.state = 9562; + this.functionName(); + this.state = 9570; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -68756,21 +63455,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 9770; + this.state = 9563; this.sconst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 9771; + this.state = 9564; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9772; - this.func_arg_list(); - this.state = 9773; - this.opt_sort_clause(); - this.state = 9774; + this.state = 9565; + this.functionArgumentList(); + this.state = 9566; + this.optionalSortClause(); + this.state = 9567; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 9775; + this.state = 9568; this.sconst(); } break; @@ -68782,18 +63481,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 9779; - this.consttypename(); - this.state = 9780; + this.state = 9572; + this.constTypeName(); + this.state = 9573; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 9782; - this.constinterval(); - this.state = 9791; + this.state = 9575; + this.constInterval(); + this.state = 9584; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -68801,21 +63500,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 9783; + this.state = 9576; this.sconst(); - this.state = 9784; - this.opt_interval(); + this.state = 9577; + this.optionalInterval(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 9786; + this.state = 9579; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 9787; + this.state = 9580; this.iconst(); - this.state = 9788; + this.state = 9581; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 9789; + this.state = 9582; this.sconst(); } break; @@ -68827,21 +63526,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 9793; + this.state = 9586; this.match(PostgreSqlParser.TRUE_P); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 9794; + this.state = 9587; this.match(PostgreSqlParser.FALSE_P); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 9795; + this.state = 9588; this.match(PostgreSqlParser.NULL_P); } break; @@ -68863,11 +63562,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public xconst(): XconstContext { let localContext = new XconstContext(this.context, this.state); - this.enterRule(localContext, 1348, PostgreSqlParser.RULE_xconst); + this.enterRule(localContext, 1232, PostgreSqlParser.RULE_xconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 9798; + this.state = 9591; this.match(PostgreSqlParser.HexadecimalStringConstant); } } @@ -68887,11 +63586,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public bconst(): BconstContext { let localContext = new BconstContext(this.context, this.state); - this.enterRule(localContext, 1350, PostgreSqlParser.RULE_bconst); + this.enterRule(localContext, 1234, PostgreSqlParser.RULE_bconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 9800; + this.state = 9593; this.match(PostgreSqlParser.BinaryStringConstant); } } @@ -68911,11 +63610,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public fconst(): FconstContext { let localContext = new FconstContext(this.context, this.state); - this.enterRule(localContext, 1352, PostgreSqlParser.RULE_fconst); + this.enterRule(localContext, 1236, PostgreSqlParser.RULE_fconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 9802; + this.state = 9595; this.match(PostgreSqlParser.Numeric); } } @@ -68935,11 +63634,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public iconst(): IconstContext { let localContext = new IconstContext(this.context, this.state); - this.enterRule(localContext, 1354, PostgreSqlParser.RULE_iconst); + this.enterRule(localContext, 1238, PostgreSqlParser.RULE_iconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 9804; + this.state = 9597; this.match(PostgreSqlParser.Integral); } } @@ -68959,14 +63658,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public sconst(): SconstContext { let localContext = new SconstContext(this.context, this.state); - this.enterRule(localContext, 1356, PostgreSqlParser.RULE_sconst); + this.enterRule(localContext, 1240, PostgreSqlParser.RULE_sconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 9806; - this.anysconst(); - this.state = 9807; - this.opt_uescape(); + this.state = 9599; + this.anySconst(); + this.state = 9600; + this.optionalUescape(); } } catch (re) { @@ -68983,55 +63682,55 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public anysconst(): AnysconstContext { - let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 1358, PostgreSqlParser.RULE_anysconst); + public anySconst(): AnySconstContext { + let localContext = new AnySconstContext(this.context, this.state); + this.enterRule(localContext, 1242, PostgreSqlParser.RULE_anySconst); let _la: number; try { - this.state = 9820; + this.state = 9613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 9809; + this.state = 9602; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 9810; + this.state = 9603; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 9811; + this.state = 9604; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 9815; + this.state = 9608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 677) { { { - this.state = 9812; + this.state = 9605; this.match(PostgreSqlParser.DollarText); } } - this.state = 9817; + this.state = 9610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 9818; + this.state = 9611; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 9819; + this.state = 9612; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -69053,20 +63752,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_uescape(): Opt_uescapeContext { - let localContext = new Opt_uescapeContext(this.context, this.state); - this.enterRule(localContext, 1360, PostgreSqlParser.RULE_opt_uescape); + public optionalUescape(): OptionalUescapeContext { + let localContext = new OptionalUescapeContext(this.context, this.state); + this.enterRule(localContext, 1244, PostgreSqlParser.RULE_optionalUescape); try { - this.state = 9825; + this.state = 9618; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 658, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9822; + this.state = 9615; this.match(PostgreSqlParser.UESCAPE); - this.state = 9823; - this.anysconst(); + this.state = 9616; + this.anySconst(); } break; case 2: @@ -69091,35 +63790,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public signediconst(): SignediconstContext { - let localContext = new SignediconstContext(this.context, this.state); - this.enterRule(localContext, 1362, PostgreSqlParser.RULE_signediconst); + public signedIconst(): SignedIconstContext { + let localContext = new SignedIconstContext(this.context, this.state); + this.enterRule(localContext, 1246, PostgreSqlParser.RULE_signedIconst); try { - this.state = 9832; + this.state = 9625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 9827; + this.state = 9620; this.iconst(); } break; case PostgreSqlParser.PLUS: this.enterOuterAlt(localContext, 2); { - this.state = 9828; + this.state = 9621; this.match(PostgreSqlParser.PLUS); - this.state = 9829; + this.state = 9622; this.iconst(); } break; case PostgreSqlParser.MINUS: this.enterOuterAlt(localContext, 3); { - this.state = 9830; + this.state = 9623; this.match(PostgreSqlParser.MINUS); - this.state = 9831; + this.state = 9624; this.iconst(); } break; @@ -69141,14 +63840,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public roleid(): RoleidContext { - let localContext = new RoleidContext(this.context, this.state); - this.enterRule(localContext, 1364, PostgreSqlParser.RULE_roleid); + public roleId(): RoleIdContext { + let localContext = new RoleIdContext(this.context, this.state); + this.enterRule(localContext, 1248, PostgreSqlParser.RULE_roleId); try { this.enterOuterAlt(localContext, 1); { - this.state = 9834; - this.rolespec(); + this.state = 9627; + this.roleSpecification(); } } catch (re) { @@ -69165,11 +63864,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public rolespec(): RolespecContext { - let localContext = new RolespecContext(this.context, this.state); - this.enterRule(localContext, 1366, PostgreSqlParser.RULE_rolespec); + public roleSpecification(): RoleSpecificationContext { + let localContext = new RoleSpecificationContext(this.context, this.state); + this.enterRule(localContext, 1250, PostgreSqlParser.RULE_roleSpecification); try { - this.state = 9839; + this.state = 9632; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -69710,21 +64409,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 9836; - this.nonreservedword(); + this.state = 9629; + this.nonReservedWord(); } break; case PostgreSqlParser.CURRENT_USER: this.enterOuterAlt(localContext, 2); { - this.state = 9837; + this.state = 9630; this.match(PostgreSqlParser.CURRENT_USER); } break; case PostgreSqlParser.SESSION_USER: this.enterOuterAlt(localContext, 3); { - this.state = 9838; + this.state = 9631; this.match(PostgreSqlParser.SESSION_USER); } break; @@ -69746,28 +64445,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public role_list(): Role_listContext { - let localContext = new Role_listContext(this.context, this.state); - this.enterRule(localContext, 1368, PostgreSqlParser.RULE_role_list); + public roleList(): RoleListContext { + let localContext = new RoleListContext(this.context, this.state); + this.enterRule(localContext, 1252, PostgreSqlParser.RULE_roleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9841; - this.rolespec(); - this.state = 9846; + this.state = 9634; + this.roleSpecification(); + this.state = 9639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9842; + this.state = 9635; this.match(PostgreSqlParser.COMMA); - this.state = 9843; - this.rolespec(); + this.state = 9636; + this.roleSpecification(); } } - this.state = 9848; + this.state = 9641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -69787,52 +64486,52 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public colid(): ColidContext { - let localContext = new ColidContext(this.context, this.state); - this.enterRule(localContext, 1370, PostgreSqlParser.RULE_colid); + public columnId(): ColumnIdContext { + let localContext = new ColumnIdContext(this.context, this.state); + this.enterRule(localContext, 1254, PostgreSqlParser.RULE_columnId); try { - this.state = 9855; + this.state = 9648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9849; + this.state = 9642; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9850; - this.unreserved_keyword(); + this.state = 9643; + this.unreservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9851; - this.col_name_keyword(); + this.state = 9644; + this.columnNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9852; - this.plsql_unreserved_keyword(); + this.state = 9645; + this.plsqlUnreservedKeyword(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9853; + this.state = 9646; this.match(PostgreSqlParser.LEFT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9854; + this.state = 9647; this.match(PostgreSqlParser.RIGHT); } break; @@ -69852,39 +64551,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public table_alias(): Table_aliasContext { - let localContext = new Table_aliasContext(this.context, this.state); - this.enterRule(localContext, 1372, PostgreSqlParser.RULE_table_alias); + public tableAlias(): TableAliasContext { + let localContext = new TableAliasContext(this.context, this.state); + this.enterRule(localContext, 1256, PostgreSqlParser.RULE_tableAlias); try { - this.state = 9861; + this.state = 9654; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 663, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9857; + this.state = 9650; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9858; - this.unreserved_keyword(); + this.state = 9651; + this.unreservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9859; - this.col_name_keyword(); + this.state = 9652; + this.columnNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9860; - this.plsql_unreserved_keyword(); + this.state = 9653; + this.plsqlUnreservedKeyword(); } break; } @@ -69903,39 +64602,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public type_function_name(): Type_function_nameContext { - let localContext = new Type_function_nameContext(this.context, this.state); - this.enterRule(localContext, 1374, PostgreSqlParser.RULE_type_function_name); + public typeFunctionName(): TypeFunctionNameContext { + let localContext = new TypeFunctionNameContext(this.context, this.state); + this.enterRule(localContext, 1258, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 9867; + this.state = 9660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 664, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 678, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9863; + this.state = 9656; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9864; - this.unreserved_keyword(); + this.state = 9657; + this.unreservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9865; - this.plsql_unreserved_keyword(); + this.state = 9658; + this.plsqlUnreservedKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9866; - this.type_func_name_keyword(); + this.state = 9659; + this.typeFunctionNameKeyword(); } break; } @@ -69954,39 +64653,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public nonreservedword(): NonreservedwordContext { - let localContext = new NonreservedwordContext(this.context, this.state); - this.enterRule(localContext, 1376, PostgreSqlParser.RULE_nonreservedword); + public nonReservedWord(): NonReservedWordContext { + let localContext = new NonReservedWordContext(this.context, this.state); + this.enterRule(localContext, 1260, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 9873; + this.state = 9666; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9869; + this.state = 9662; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9870; - this.unreserved_keyword(); + this.state = 9663; + this.unreservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9871; - this.col_name_keyword(); + this.state = 9664; + this.columnNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9872; - this.type_func_name_keyword(); + this.state = 9665; + this.typeFunctionNameKeyword(); } break; } @@ -70005,53 +64704,53 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public collabel(): CollabelContext { - let localContext = new CollabelContext(this.context, this.state); - this.enterRule(localContext, 1378, PostgreSqlParser.RULE_collabel); + public columnLabel(): ColumnLabelContext { + let localContext = new ColumnLabelContext(this.context, this.state); + this.enterRule(localContext, 1262, PostgreSqlParser.RULE_columnLabel); try { - this.state = 9881; + this.state = 9674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 680, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9875; + this.state = 9668; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9876; - this.plsql_unreserved_keyword(); + this.state = 9669; + this.plsqlUnreservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9877; - this.unreserved_keyword(); + this.state = 9670; + this.unreservedKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9878; - this.col_name_keyword(); + this.state = 9671; + this.columnNameKeyword(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9879; - this.type_func_name_keyword(); + this.state = 9672; + this.typeFunctionNameKeyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9880; - this.reserved_keyword(); + this.state = 9673; + this.reservedKeyword(); } break; } @@ -70072,46 +64771,46 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 1380, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 1264, PostgreSqlParser.RULE_identifier); try { - this.state = 9890; + this.state = 9683; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 9883; + this.state = 9676; this.match(PostgreSqlParser.Identifier); - this.state = 9884; - this.opt_uescape(); + this.state = 9677; + this.optionalUescape(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 2); { - this.state = 9885; + this.state = 9678; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 9886; + this.state = 9679; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 4); { - this.state = 9887; - this.plsqlvariablename(); + this.state = 9680; + this.plsqlVariableName(); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 5); { - this.state = 9888; - this.plsqlidentifier(); + this.state = 9681; + this.plsqlIdentifier(); } break; case PostgreSqlParser.AND: @@ -70179,8 +64878,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.OPEN: this.enterOuterAlt(localContext, 6); { - this.state = 9889; - this.plsql_unreserved_keyword(); + this.state = 9682; + this.plsqlUnreservedKeyword(); } break; default: @@ -70201,13 +64900,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public plsqlidentifier(): PlsqlidentifierContext { - let localContext = new PlsqlidentifierContext(this.context, this.state); - this.enterRule(localContext, 1382, PostgreSqlParser.RULE_plsqlidentifier); + public plsqlIdentifier(): PlsqlIdentifierContext { + let localContext = new PlsqlIdentifierContext(this.context, this.state); + this.enterRule(localContext, 1266, PostgreSqlParser.RULE_plsqlIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 9892; + this.state = 9685; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } } @@ -70225,14 +64924,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public unreserved_keyword(): Unreserved_keywordContext { - let localContext = new Unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1384, PostgreSqlParser.RULE_unreserved_keyword); + public unreservedKeyword(): UnreservedKeywordContext { + let localContext = new UnreservedKeywordContext(this.context, this.state); + this.enterRule(localContext, 1268, PostgreSqlParser.RULE_unreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9894; + this.state = 9687; _la = this.tokenStream.LA(1); if(!(((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 3221225471) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967293) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4293918719) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 16770399) !== 0))) { this.errorHandler.recoverInline(this); @@ -70257,375 +64956,375 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public col_name_keyword(): Col_name_keywordContext { - let localContext = new Col_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1386, PostgreSqlParser.RULE_col_name_keyword); + public columnNameKeyword(): ColumnNameKeywordContext { + let localContext = new ColumnNameKeywordContext(this.context, this.state); + this.enterRule(localContext, 1270, PostgreSqlParser.RULE_columnNameKeyword); try { - this.state = 9948; + this.state = 9741; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 682, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9896; + this.state = 9689; this.match(PostgreSqlParser.BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9897; + this.state = 9690; this.match(PostgreSqlParser.BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9898; + this.state = 9691; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9899; + this.state = 9692; this.match(PostgreSqlParser.BOOLEAN_P); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9900; + this.state = 9693; this.match(PostgreSqlParser.CHAR_P); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9901; + this.state = 9694; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 9902; + this.state = 9695; this.match(PostgreSqlParser.COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 9903; + this.state = 9696; this.match(PostgreSqlParser.DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 9904; + this.state = 9697; this.match(PostgreSqlParser.DECIMAL_P); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 9905; + this.state = 9698; this.match(PostgreSqlParser.EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 9906; + this.state = 9699; this.match(PostgreSqlParser.EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 9907; + this.state = 9700; this.match(PostgreSqlParser.FLOAT_P); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 9908; + this.state = 9701; this.match(PostgreSqlParser.GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 9909; + this.state = 9702; this.match(PostgreSqlParser.GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 9910; + this.state = 9703; this.match(PostgreSqlParser.INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 9911; + this.state = 9704; this.match(PostgreSqlParser.INT_P); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 9912; + this.state = 9705; this.match(PostgreSqlParser.INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 9913; + this.state = 9706; this.match(PostgreSqlParser.INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 9914; + this.state = 9707; this.match(PostgreSqlParser.LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 9915; + this.state = 9708; this.match(PostgreSqlParser.NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 9916; + this.state = 9709; this.match(PostgreSqlParser.NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 9917; + this.state = 9710; this.match(PostgreSqlParser.NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 9918; + this.state = 9711; this.match(PostgreSqlParser.NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 9919; + this.state = 9712; this.match(PostgreSqlParser.NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 9920; + this.state = 9713; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 9921; + this.state = 9714; this.match(PostgreSqlParser.OUT_P); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 9922; + this.state = 9715; this.match(PostgreSqlParser.OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 9923; + this.state = 9716; this.match(PostgreSqlParser.POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 9924; + this.state = 9717; this.match(PostgreSqlParser.PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 9925; + this.state = 9718; this.match(PostgreSqlParser.REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 9926; + this.state = 9719; this.match(PostgreSqlParser.ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 9927; + this.state = 9720; this.match(PostgreSqlParser.SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 9928; + this.state = 9721; this.match(PostgreSqlParser.SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 9929; + this.state = 9722; this.match(PostgreSqlParser.SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 9930; + this.state = 9723; this.match(PostgreSqlParser.TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 9931; + this.state = 9724; this.match(PostgreSqlParser.TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 9932; + this.state = 9725; this.match(PostgreSqlParser.TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 9933; + this.state = 9726; this.match(PostgreSqlParser.TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 9934; + this.state = 9727; this.match(PostgreSqlParser.VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 9935; + this.state = 9728; this.match(PostgreSqlParser.VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 9936; + this.state = 9729; this.match(PostgreSqlParser.XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 9937; + this.state = 9730; this.match(PostgreSqlParser.XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 9938; + this.state = 9731; this.match(PostgreSqlParser.XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 9939; + this.state = 9732; this.match(PostgreSqlParser.XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 9940; + this.state = 9733; this.match(PostgreSqlParser.XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 9941; + this.state = 9734; this.match(PostgreSqlParser.XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 9942; + this.state = 9735; this.match(PostgreSqlParser.XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 9943; + this.state = 9736; this.match(PostgreSqlParser.XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 9944; + this.state = 9737; this.match(PostgreSqlParser.XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 9945; + this.state = 9738; this.match(PostgreSqlParser.XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 9946; + this.state = 9739; this.match(PostgreSqlParser.XMLTABLE); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 9947; - this.builtin_function_name(); + this.state = 9740; + this.builtinFunctionName(); } break; } @@ -70644,14 +65343,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public type_func_name_keyword(): Type_func_name_keywordContext { - let localContext = new Type_func_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1388, PostgreSqlParser.RULE_type_func_name_keyword); + public typeFunctionNameKeyword(): TypeFunctionNameKeywordContext { + let localContext = new TypeFunctionNameKeywordContext(this.context, this.state); + this.enterRule(localContext, 1272, PostgreSqlParser.RULE_typeFunctionNameKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9950; + this.state = 9743; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 7069695) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -70676,14 +65375,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public reserved_keyword(): Reserved_keywordContext { - let localContext = new Reserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1390, PostgreSqlParser.RULE_reserved_keyword); + public reservedKeyword(): ReservedKeywordContext { + let localContext = new ReservedKeywordContext(this.context, this.state); + this.enterRule(localContext, 1274, PostgreSqlParser.RULE_reservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9952; + this.state = 9745; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -70708,14 +65407,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public builtin_function_name(): Builtin_function_nameContext { - let localContext = new Builtin_function_nameContext(this.context, this.state); - this.enterRule(localContext, 1392, PostgreSqlParser.RULE_builtin_function_name); + public builtinFunctionName(): BuiltinFunctionNameContext { + let localContext = new BuiltinFunctionNameContext(this.context, this.state); + this.enterRule(localContext, 1276, PostgreSqlParser.RULE_builtinFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9954; + this.state = 9747; _la = this.tokenStream.LA(1); if(!(_la === 304 || ((((_la - 418)) & ~0x1F) === 0 && ((1 << (_la - 418)) & 127) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 4294836737) !== 0) || ((((_la - 536)) & ~0x1F) === 0 && ((1 << (_la - 536)) & 4294967295) !== 0) || ((((_la - 568)) & ~0x1F) === 0 && ((1 << (_la - 568)) & 4294967295) !== 0) || ((((_la - 600)) & ~0x1F) === 0 && ((1 << (_la - 600)) & 4294967295) !== 0) || ((((_la - 632)) & ~0x1F) === 0 && ((1 << (_la - 632)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -70740,18 +65439,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public pl_function(): Pl_functionContext { - let localContext = new Pl_functionContext(this.context, this.state); - this.enterRule(localContext, 1394, PostgreSqlParser.RULE_pl_function); + public plsqlFunction(): PlsqlFunctionContext { + let localContext = new PlsqlFunctionContext(this.context, this.state); + this.enterRule(localContext, 1278, PostgreSqlParser.RULE_plsqlFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 9956; - this.comp_options(); - this.state = 9957; - this.pl_block(); - this.state = 9958; - this.opt_semi(); + this.state = 9749; + this.computeOptions(); + this.state = 9750; + this.plsqlBlock(); + this.state = 9751; + this.optionalSemi(); } } catch (re) { @@ -70768,24 +65467,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public comp_options(): Comp_optionsContext { - let localContext = new Comp_optionsContext(this.context, this.state); - this.enterRule(localContext, 1396, PostgreSqlParser.RULE_comp_options); + public computeOptions(): ComputeOptionsContext { + let localContext = new ComputeOptionsContext(this.context, this.state); + this.enterRule(localContext, 1280, PostgreSqlParser.RULE_computeOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9963; + this.state = 9756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 29) { { { - this.state = 9960; - this.comp_option(); + this.state = 9753; + this.computeOption(); } } - this.state = 9965; + this.state = 9758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -70805,65 +65504,65 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public comp_option(): Comp_optionContext { - let localContext = new Comp_optionContext(this.context, this.state); - this.enterRule(localContext, 1398, PostgreSqlParser.RULE_comp_option); + public computeOption(): ComputeOptionContext { + let localContext = new ComputeOptionContext(this.context, this.state); + this.enterRule(localContext, 1282, PostgreSqlParser.RULE_computeOption); try { - this.state = 9986; + this.state = 9779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 670, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9966; + this.state = 9759; this.sharp(); - this.state = 9967; + this.state = 9760; this.match(PostgreSqlParser.OPTION); - this.state = 9968; + this.state = 9761; this.match(PostgreSqlParser.DUMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9970; + this.state = 9763; this.sharp(); - this.state = 9971; + this.state = 9764; this.match(PostgreSqlParser.PRINT_STRICT_PARAMS); - this.state = 9972; - this.option_value(); + this.state = 9765; + this.optionValue(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9974; + this.state = 9767; this.sharp(); - this.state = 9975; + this.state = 9768; this.match(PostgreSqlParser.VARIABLE_CONFLICT); - this.state = 9976; + this.state = 9769; this.match(PostgreSqlParser.ERROR); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9978; + this.state = 9771; this.sharp(); - this.state = 9979; + this.state = 9772; this.match(PostgreSqlParser.VARIABLE_CONFLICT); - this.state = 9980; + this.state = 9773; this.match(PostgreSqlParser.USE_VARIABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9982; + this.state = 9775; this.sharp(); - this.state = 9983; + this.state = 9776; this.match(PostgreSqlParser.VARIABLE_CONFLICT); - this.state = 9984; + this.state = 9777; this.match(PostgreSqlParser.USE_COLUMN); } break; @@ -70885,11 +65584,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public sharp(): SharpContext { let localContext = new SharpContext(this.context, this.state); - this.enterRule(localContext, 1400, PostgreSqlParser.RULE_sharp); + this.enterRule(localContext, 1284, PostgreSqlParser.RULE_sharp); try { this.enterOuterAlt(localContext, 1); { - this.state = 9988; + this.state = 9781; this.match(PostgreSqlParser.Operator); } } @@ -70907,39 +65606,39 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public option_value(): Option_valueContext { - let localContext = new Option_valueContext(this.context, this.state); - this.enterRule(localContext, 1402, PostgreSqlParser.RULE_option_value); + public optionValue(): OptionValueContext { + let localContext = new OptionValueContext(this.context, this.state); + this.enterRule(localContext, 1286, PostgreSqlParser.RULE_optionValue); try { - this.state = 9994; + this.state = 9787; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 671, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 685, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9990; + this.state = 9783; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9991; - this.reserved_keyword(); + this.state = 9784; + this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9992; - this.plsql_unreserved_keyword(); + this.state = 9785; + this.plsqlUnreservedKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9993; - this.unreserved_keyword(); + this.state = 9786; + this.unreservedKeyword(); } break; } @@ -70958,11 +65657,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_semi(): Opt_semiContext { - let localContext = new Opt_semiContext(this.context, this.state); - this.enterRule(localContext, 1404, PostgreSqlParser.RULE_opt_semi); + public optionalSemi(): OptionalSemiContext { + let localContext = new OptionalSemiContext(this.context, this.state); + this.enterRule(localContext, 1288, PostgreSqlParser.RULE_optionalSemi); try { - this.state = 9998; + this.state = 9791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EOF: @@ -70974,7 +65673,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 9997; + this.state = 9790; this.match(PostgreSqlParser.SEMI); } break; @@ -70996,24 +65695,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public pl_block(): Pl_blockContext { - let localContext = new Pl_blockContext(this.context, this.state); - this.enterRule(localContext, 1406, PostgreSqlParser.RULE_pl_block); + public plsqlBlock(): PlsqlBlockContext { + let localContext = new PlsqlBlockContext(this.context, this.state); + this.enterRule(localContext, 1290, PostgreSqlParser.RULE_plsqlBlock); try { this.enterOuterAlt(localContext, 1); { - this.state = 10000; - this.decl_sect(); - this.state = 10001; + this.state = 9793; + this.declareSection(); + this.state = 9794; this.match(PostgreSqlParser.BEGIN_P); - this.state = 10002; - this.proc_sect(); - this.state = 10003; - this.exception_sect(); - this.state = 10004; + this.state = 9795; + this.procedureSection(); + this.state = 9796; + this.exceptionSection(); + this.state = 9797; this.match(PostgreSqlParser.END_P); - this.state = 10005; - this.opt_label(); + this.state = 9798; + this.optionalLabel(); } } catch (re) { @@ -71030,29 +65729,29 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_sect(): Decl_sectContext { - let localContext = new Decl_sectContext(this.context, this.state); - this.enterRule(localContext, 1408, PostgreSqlParser.RULE_decl_sect); + public declareSection(): DeclareSectionContext { + let localContext = new DeclareSectionContext(this.context, this.state); + this.enterRule(localContext, 1292, PostgreSqlParser.RULE_declareSection); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10007; - this.opt_block_label(); - this.state = 10012; + this.state = 9800; + this.optionalBlockLabel(); + this.state = 9805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 10008; - this.decl_start(); - this.state = 10010; + this.state = 9801; + this.declareStart(); + this.state = 9803; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 10009; - this.decl_stmts(); + this.state = 9802; + this.declareStatements(); } break; } @@ -71075,13 +65774,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_start(): Decl_startContext { - let localContext = new Decl_startContext(this.context, this.state); - this.enterRule(localContext, 1410, PostgreSqlParser.RULE_decl_start); + public declareStart(): DeclareStartContext { + let localContext = new DeclareStartContext(this.context, this.state); + this.enterRule(localContext, 1294, PostgreSqlParser.RULE_declareStart); try { this.enterOuterAlt(localContext, 1); { - this.state = 10014; + this.state = 9807; this.match(PostgreSqlParser.DECLARE); } } @@ -71099,14 +65798,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_stmts(): Decl_stmtsContext { - let localContext = new Decl_stmtsContext(this.context, this.state); - this.enterRule(localContext, 1412, PostgreSqlParser.RULE_decl_stmts); + public declareStatements(): DeclareStatementsContext { + let localContext = new DeclareStatementsContext(this.context, this.state); + this.enterRule(localContext, 1296, PostgreSqlParser.RULE_declareStatements); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10017; + this.state = 9810; this.errorHandler.sync(this); alternative = 1; do { @@ -71114,17 +65813,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 1: { { - this.state = 10016; - this.decl_stmt(); + this.state = 9809; + this.declareStatement(); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 10019; + this.state = 9812; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 675, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 689, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -71142,17 +65841,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public label_decl(): Label_declContext { - let localContext = new Label_declContext(this.context, this.state); - this.enterRule(localContext, 1414, PostgreSqlParser.RULE_label_decl); + public labelDeclaration(): LabelDeclarationContext { + let localContext = new LabelDeclarationContext(this.context, this.state); + this.enterRule(localContext, 1298, PostgreSqlParser.RULE_labelDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 10021; + this.state = 9814; this.match(PostgreSqlParser.LESS_LESS); - this.state = 10022; - this.any_identifier(); - this.state = 10023; + this.state = 9815; + this.anyIdentifier(); + this.state = 9816; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -71170,32 +65869,32 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_stmt(): Decl_stmtContext { - let localContext = new Decl_stmtContext(this.context, this.state); - this.enterRule(localContext, 1416, PostgreSqlParser.RULE_decl_stmt); + public declareStatement(): DeclareStatementContext { + let localContext = new DeclareStatementContext(this.context, this.state); + this.enterRule(localContext, 1300, PostgreSqlParser.RULE_declareStatement); try { - this.state = 10028; + this.state = 9821; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10025; - this.decl_statement(); + this.state = 9818; + this.declareStatement2(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10026; + this.state = 9819; this.match(PostgreSqlParser.DECLARE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10027; - this.label_decl(); + this.state = 9820; + this.labelDeclaration(); } break; } @@ -71214,57 +65913,57 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_statement(): Decl_statementContext { - let localContext = new Decl_statementContext(this.context, this.state); - this.enterRule(localContext, 1418, PostgreSqlParser.RULE_decl_statement); + public declareStatement2(): DeclareStatement2Context { + let localContext = new DeclareStatement2Context(this.context, this.state); + this.enterRule(localContext, 1302, PostgreSqlParser.RULE_declareStatement2); try { this.enterOuterAlt(localContext, 1); { - this.state = 10030; - this.decl_varname(); - this.state = 10046; + this.state = 9823; + this.declareVarname(); + this.state = 9839; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { case 1: { - this.state = 10031; + this.state = 9824; this.match(PostgreSqlParser.ALIAS); - this.state = 10032; + this.state = 9825; this.match(PostgreSqlParser.FOR); - this.state = 10033; - this.decl_aliasitem(); + this.state = 9826; + this.declareAliasItem(); } break; case 2: { - this.state = 10034; - this.decl_const(); - this.state = 10035; - this.decl_datatype(); - this.state = 10036; - this.decl_collate(); - this.state = 10037; - this.decl_notnull(); - this.state = 10038; - this.decl_defval(); + this.state = 9827; + this.declareConst(); + this.state = 9828; + this.declareDatatype(); + this.state = 9829; + this.declareCollate(); + this.state = 9830; + this.declareNotNull(); + this.state = 9831; + this.declareDefaultValue(); } break; case 3: { - this.state = 10040; - this.opt_scrollable(); - this.state = 10041; + this.state = 9833; + this.optionalScrollable(); + this.state = 9834; this.match(PostgreSqlParser.CURSOR); - this.state = 10042; - this.decl_cursor_args(); - this.state = 10043; - this.decl_is_for(); - this.state = 10044; - this.decl_cursor_query(); + this.state = 9835; + this.declareCursorArgs(); + this.state = 9836; + this.declareIsOrFor(); + this.state = 9837; + this.declareCursorQuery(); } break; } - this.state = 10048; + this.state = 9841; this.match(PostgreSqlParser.SEMI); } } @@ -71282,11 +65981,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_scrollable(): Opt_scrollableContext { - let localContext = new Opt_scrollableContext(this.context, this.state); - this.enterRule(localContext, 1420, PostgreSqlParser.RULE_opt_scrollable); + public optionalScrollable(): OptionalScrollableContext { + let localContext = new OptionalScrollableContext(this.context, this.state); + this.enterRule(localContext, 1304, PostgreSqlParser.RULE_optionalScrollable); try { - this.state = 10054; + this.state = 9847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CURSOR: @@ -71298,16 +65997,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.NO: this.enterOuterAlt(localContext, 2); { - this.state = 10051; + this.state = 9844; this.match(PostgreSqlParser.NO); - this.state = 10052; + this.state = 9845; this.match(PostgreSqlParser.SCROLL); } break; case PostgreSqlParser.SCROLL: this.enterOuterAlt(localContext, 3); { - this.state = 10053; + this.state = 9846; this.match(PostgreSqlParser.SCROLL); } break; @@ -71329,14 +66028,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_cursor_query(): Decl_cursor_queryContext { - let localContext = new Decl_cursor_queryContext(this.context, this.state); - this.enterRule(localContext, 1422, PostgreSqlParser.RULE_decl_cursor_query); + public declareCursorQuery(): DeclareCursorQueryContext { + let localContext = new DeclareCursorQueryContext(this.context, this.state); + this.enterRule(localContext, 1306, PostgreSqlParser.RULE_declareCursorQuery); try { this.enterOuterAlt(localContext, 1); { - this.state = 10056; - this.selectstmt(); + this.state = 9849; + this.selectStatement(); } } catch (re) { @@ -71353,11 +66052,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_cursor_args(): Decl_cursor_argsContext { - let localContext = new Decl_cursor_argsContext(this.context, this.state); - this.enterRule(localContext, 1424, PostgreSqlParser.RULE_decl_cursor_args); + public declareCursorArgs(): DeclareCursorArgsContext { + let localContext = new DeclareCursorArgsContext(this.context, this.state); + this.enterRule(localContext, 1308, PostgreSqlParser.RULE_declareCursorArgs); try { - this.state = 10063; + this.state = 9856; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FOR: @@ -71370,11 +66069,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 10059; + this.state = 9852; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 10060; - this.decl_cursor_arglist(); - this.state = 10061; + this.state = 9853; + this.declareCursorArglist(); + this.state = 9854; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -71396,28 +66095,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_cursor_arglist(): Decl_cursor_arglistContext { - let localContext = new Decl_cursor_arglistContext(this.context, this.state); - this.enterRule(localContext, 1426, PostgreSqlParser.RULE_decl_cursor_arglist); + public declareCursorArglist(): DeclareCursorArglistContext { + let localContext = new DeclareCursorArglistContext(this.context, this.state); + this.enterRule(localContext, 1310, PostgreSqlParser.RULE_declareCursorArglist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10065; - this.decl_cursor_arg(); - this.state = 10070; + this.state = 9858; + this.declareCursorArg(); + this.state = 9863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10066; + this.state = 9859; this.match(PostgreSqlParser.COMMA); - this.state = 10067; - this.decl_cursor_arg(); + this.state = 9860; + this.declareCursorArg(); } } - this.state = 10072; + this.state = 9865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -71437,16 +66136,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_cursor_arg(): Decl_cursor_argContext { - let localContext = new Decl_cursor_argContext(this.context, this.state); - this.enterRule(localContext, 1428, PostgreSqlParser.RULE_decl_cursor_arg); + public declareCursorArg(): DeclareCursorArgContext { + let localContext = new DeclareCursorArgContext(this.context, this.state); + this.enterRule(localContext, 1312, PostgreSqlParser.RULE_declareCursorArg); try { this.enterOuterAlt(localContext, 1); { - this.state = 10073; - this.decl_varname(); - this.state = 10074; - this.decl_datatype(); + this.state = 9866; + this.declareVarname(); + this.state = 9867; + this.declareDatatype(); } } catch (re) { @@ -71463,14 +66162,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_is_for(): Decl_is_forContext { - let localContext = new Decl_is_forContext(this.context, this.state); - this.enterRule(localContext, 1430, PostgreSqlParser.RULE_decl_is_for); + public declareIsOrFor(): DeclareIsOrForContext { + let localContext = new DeclareIsOrForContext(this.context, this.state); + this.enterRule(localContext, 1314, PostgreSqlParser.RULE_declareIsOrFor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10076; + this.state = 9869; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -71495,17 +66194,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_aliasitem(): Decl_aliasitemContext { - let localContext = new Decl_aliasitemContext(this.context, this.state); - this.enterRule(localContext, 1432, PostgreSqlParser.RULE_decl_aliasitem); + public declareAliasItem(): DeclareAliasItemContext { + let localContext = new DeclareAliasItemContext(this.context, this.state); + this.enterRule(localContext, 1316, PostgreSqlParser.RULE_declareAliasItem); try { - this.state = 10080; + this.state = 9873; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 1); { - this.state = 10078; + this.state = 9871; this.match(PostgreSqlParser.PARAM); } break; @@ -72030,8 +66729,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 10079; - this.colid(); + this.state = 9872; + this.columnId(); } break; default: @@ -72052,14 +66751,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_varname(): Decl_varnameContext { - let localContext = new Decl_varnameContext(this.context, this.state); - this.enterRule(localContext, 1434, PostgreSqlParser.RULE_decl_varname); + public declareVarname(): DeclareVarnameContext { + let localContext = new DeclareVarnameContext(this.context, this.state); + this.enterRule(localContext, 1318, PostgreSqlParser.RULE_declareVarname); try { this.enterOuterAlt(localContext, 1); { - this.state = 10082; - this.any_identifier(); + this.state = 9875; + this.anyIdentifier(); } } catch (re) { @@ -72076,13 +66775,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_const(): Decl_constContext { - let localContext = new Decl_constContext(this.context, this.state); - this.enterRule(localContext, 1436, PostgreSqlParser.RULE_decl_const); + public declareConst(): DeclareConstContext { + let localContext = new DeclareConstContext(this.context, this.state); + this.enterRule(localContext, 1320, PostgreSqlParser.RULE_declareConst); try { - this.state = 10086; + this.state = 9879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 682, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -72092,7 +66791,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10085; + this.state = 9878; this.match(PostgreSqlParser.CONSTANT); } break; @@ -72112,14 +66811,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_datatype(): Decl_datatypeContext { - let localContext = new Decl_datatypeContext(this.context, this.state); - this.enterRule(localContext, 1438, PostgreSqlParser.RULE_decl_datatype); + public declareDatatype(): DeclareDatatypeContext { + let localContext = new DeclareDatatypeContext(this.context, this.state); + this.enterRule(localContext, 1322, PostgreSqlParser.RULE_declareDatatype); try { this.enterOuterAlt(localContext, 1); { - this.state = 10088; - this.typename(); + this.state = 9881; + this.typeName(); } } catch (re) { @@ -72136,11 +66835,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_collate(): Decl_collateContext { - let localContext = new Decl_collateContext(this.context, this.state); - this.enterRule(localContext, 1440, PostgreSqlParser.RULE_decl_collate); + public declareCollate(): DeclareCollateContext { + let localContext = new DeclareCollateContext(this.context, this.state); + this.enterRule(localContext, 1324, PostgreSqlParser.RULE_declareCollate); try { - this.state = 10093; + this.state = 9886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -72156,10 +66855,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.COLLATE: this.enterOuterAlt(localContext, 2); { - this.state = 10091; + this.state = 9884; this.match(PostgreSqlParser.COLLATE); - this.state = 10092; - this.any_name(); + this.state = 9885; + this.anyName(); } break; default: @@ -72180,11 +66879,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_notnull(): Decl_notnullContext { - let localContext = new Decl_notnullContext(this.context, this.state); - this.enterRule(localContext, 1442, PostgreSqlParser.RULE_decl_notnull); + public declareNotNull(): DeclareNotNullContext { + let localContext = new DeclareNotNullContext(this.context, this.state); + this.enterRule(localContext, 1326, PostgreSqlParser.RULE_declareNotNull); try { - this.state = 10098; + this.state = 9891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -72199,9 +66898,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.NOT: this.enterOuterAlt(localContext, 2); { - this.state = 10096; + this.state = 9889; this.match(PostgreSqlParser.NOT); - this.state = 10097; + this.state = 9890; this.match(PostgreSqlParser.NULL_P); } break; @@ -72223,11 +66922,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_defval(): Decl_defvalContext { - let localContext = new Decl_defvalContext(this.context, this.state); - this.enterRule(localContext, 1444, PostgreSqlParser.RULE_decl_defval); + public declareDefaultValue(): DeclareDefaultValueContext { + let localContext = new DeclareDefaultValueContext(this.context, this.state); + this.enterRule(localContext, 1328, PostgreSqlParser.RULE_declareDefaultValue); try { - this.state = 10104; + this.state = 9897; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -72241,10 +66940,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 10101; - this.decl_defkey(); - this.state = 10102; - this.sql_expression(); + this.state = 9894; + this.declareDefaultKey(); + this.state = 9895; + this.sqlExpression(); } break; default: @@ -72265,25 +66964,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public decl_defkey(): Decl_defkeyContext { - let localContext = new Decl_defkeyContext(this.context, this.state); - this.enterRule(localContext, 1446, PostgreSqlParser.RULE_decl_defkey); + public declareDefaultKey(): DeclareDefaultKeyContext { + let localContext = new DeclareDefaultKeyContext(this.context, this.state); + this.enterRule(localContext, 1330, PostgreSqlParser.RULE_declareDefaultKey); try { - this.state = 10108; + this.state = 9901; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: this.enterOuterAlt(localContext, 1); { - this.state = 10106; - this.assign_operator(); + this.state = 9899; + this.assignOperator(); } break; case PostgreSqlParser.DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 10107; + this.state = 9900; this.match(PostgreSqlParser.DEFAULT); } break; @@ -72305,14 +67004,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public assign_operator(): Assign_operatorContext { - let localContext = new Assign_operatorContext(this.context, this.state); - this.enterRule(localContext, 1448, PostgreSqlParser.RULE_assign_operator); + public assignOperator(): AssignOperatorContext { + let localContext = new AssignOperatorContext(this.context, this.state); + this.enterRule(localContext, 1332, PostgreSqlParser.RULE_assignOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10110; + this.state = 9903; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -72337,28 +67036,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_sect(): Proc_sectContext { - let localContext = new Proc_sectContext(this.context, this.state); - this.enterRule(localContext, 1450, PostgreSqlParser.RULE_proc_sect); + public procedureSection(): ProcedureSectionContext { + let localContext = new ProcedureSectionContext(this.context, this.state); + this.enterRule(localContext, 1334, PostgreSqlParser.RULE_procedureSection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10115; + this.state = 9908; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 687, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10112; - this.proc_stmt(); + this.state = 9905; + this.proceduralStatement(); } } } - this.state = 10117; + this.state = 9910; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 687, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); } } } @@ -72376,188 +67075,188 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_stmt(): Proc_stmtContext { - let localContext = new Proc_stmtContext(this.context, this.state); - this.enterRule(localContext, 1452, PostgreSqlParser.RULE_proc_stmt); + public proceduralStatement(): ProceduralStatementContext { + let localContext = new ProceduralStatementContext(this.context, this.state); + this.enterRule(localContext, 1336, PostgreSqlParser.RULE_proceduralStatement); try { - this.state = 10145; + this.state = 9938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10118; - this.pl_block(); - this.state = 10119; + this.state = 9911; + this.plsqlBlock(); + this.state = 9912; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10121; - this.stmt_return(); + this.state = 9914; + this.statementReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10122; - this.stmt_raise(); + this.state = 9915; + this.statementRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10123; - this.stmt_assign(); + this.state = 9916; + this.statementAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10124; - this.stmt_if(); + this.state = 9917; + this.statementIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10125; - this.stmt_case(); + this.state = 9918; + this.statementCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10126; - this.stmt_loop(); + this.state = 9919; + this.statementLoop(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10127; - this.stmt_while(); + this.state = 9920; + this.statementWhile(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10128; - this.stmt_for(); + this.state = 9921; + this.statementFor(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10129; - this.stmt_foreach_a(); + this.state = 9922; + this.statementForeachA(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10130; - this.stmt_exit(); + this.state = 9923; + this.statementExit(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 10131; - this.stmt_assert(); + this.state = 9924; + this.statementAssert(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 10132; - this.stmt_execsql(); + this.state = 9925; + this.statementExecSql(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 10133; - this.stmt_dynexecute(); + this.state = 9926; + this.statementDynExecute(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 10134; - this.stmt_perform(); + this.state = 9927; + this.statementPerform(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 10135; - this.stmt_call(); + this.state = 9928; + this.statementCall(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 10136; - this.stmt_getdiag(); + this.state = 9929; + this.statementGetDiagram(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 10137; - this.stmt_open(); + this.state = 9930; + this.statementOpen(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 10138; - this.stmt_fetch(); + this.state = 9931; + this.statementFetch(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 10139; - this.stmt_move(); + this.state = 9932; + this.statementMove(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 10140; - this.stmt_close(); + this.state = 9933; + this.statementClose(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 10141; - this.stmt_null(); + this.state = 9934; + this.statementNull(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 10142; - this.stmt_commit(); + this.state = 9935; + this.statementCommit(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 10143; - this.stmt_rollback(); + this.state = 9936; + this.statementRollback(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 10144; - this.stmt_set(); + this.state = 9937; + this.statementSet(); } break; } @@ -72576,17 +67275,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_perform(): Stmt_performContext { - let localContext = new Stmt_performContext(this.context, this.state); - this.enterRule(localContext, 1454, PostgreSqlParser.RULE_stmt_perform); + public statementPerform(): StatementPerformContext { + let localContext = new StatementPerformContext(this.context, this.state); + this.enterRule(localContext, 1338, PostgreSqlParser.RULE_statementPerform); try { this.enterOuterAlt(localContext, 1); { - this.state = 10147; + this.state = 9940; this.match(PostgreSqlParser.PERFORM); - this.state = 10148; - this.expr_until_semi(); - this.state = 10149; + this.state = 9941; + this.expressionUntilSemi(); + this.state = 9942; this.match(PostgreSqlParser.SEMI); } } @@ -72604,44 +67303,44 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_call(): Stmt_callContext { - let localContext = new Stmt_callContext(this.context, this.state); - this.enterRule(localContext, 1456, PostgreSqlParser.RULE_stmt_call); + public statementCall(): StatementCallContext { + let localContext = new StatementCallContext(this.context, this.state); + this.enterRule(localContext, 1340, PostgreSqlParser.RULE_statementCall); try { - this.state = 10165; + this.state = 9958; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CALL: this.enterOuterAlt(localContext, 1); { - this.state = 10151; + this.state = 9944; this.match(PostgreSqlParser.CALL); - this.state = 10152; - this.any_identifier(); - this.state = 10153; + this.state = 9945; + this.anyIdentifier(); + this.state = 9946; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 10154; - this.opt_expr_list(); - this.state = 10155; + this.state = 9947; + this.optionalExpressionList(); + this.state = 9948; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 10156; + this.state = 9949; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.DO: this.enterOuterAlt(localContext, 2); { - this.state = 10158; + this.state = 9951; this.match(PostgreSqlParser.DO); - this.state = 10159; - this.any_identifier(); - this.state = 10160; + this.state = 9952; + this.anyIdentifier(); + this.state = 9953; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 10161; - this.opt_expr_list(); - this.state = 10162; + this.state = 9954; + this.optionalExpressionList(); + this.state = 9955; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 10163; + this.state = 9956; this.match(PostgreSqlParser.SEMI); } break; @@ -72663,11 +67362,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_expr_list(): Opt_expr_listContext { - let localContext = new Opt_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1458, PostgreSqlParser.RULE_opt_expr_list); + public optionalExpressionList(): OptionalExpressionListContext { + let localContext = new OptionalExpressionListContext(this.context, this.state); + this.enterRule(localContext, 1342, PostgreSqlParser.RULE_optionalExpressionList); try { - this.state = 10169; + this.state = 9962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.CLOSE_PAREN: @@ -73246,8 +67945,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 10168; - this.expr_list(); + this.state = 9961; + this.expressionList(); } break; default: @@ -73268,19 +67967,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_assign(): Stmt_assignContext { - let localContext = new Stmt_assignContext(this.context, this.state); - this.enterRule(localContext, 1460, PostgreSqlParser.RULE_stmt_assign); + public statementAssign(): StatementAssignContext { + let localContext = new StatementAssignContext(this.context, this.state); + this.enterRule(localContext, 1344, PostgreSqlParser.RULE_statementAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 10171; - this.assign_var(); - this.state = 10172; - this.assign_operator(); - this.state = 10173; - this.sql_expression(); - this.state = 10174; + this.state = 9964; + this.assignVariable(); + this.state = 9965; + this.assignOperator(); + this.state = 9966; + this.sqlExpression(); + this.state = 9967; this.match(PostgreSqlParser.SEMI); } } @@ -73298,21 +67997,21 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_getdiag(): Stmt_getdiagContext { - let localContext = new Stmt_getdiagContext(this.context, this.state); - this.enterRule(localContext, 1462, PostgreSqlParser.RULE_stmt_getdiag); + public statementGetDiagram(): StatementGetDiagramContext { + let localContext = new StatementGetDiagramContext(this.context, this.state); + this.enterRule(localContext, 1346, PostgreSqlParser.RULE_statementGetDiagram); try { this.enterOuterAlt(localContext, 1); { - this.state = 10176; + this.state = 9969; this.match(PostgreSqlParser.GET); - this.state = 10177; - this.getdiag_area_opt(); - this.state = 10178; + this.state = 9970; + this.optionalGetDiagramArea(); + this.state = 9971; this.match(PostgreSqlParser.DIAGNOSTICS); - this.state = 10179; - this.getdiag_list(); - this.state = 10180; + this.state = 9972; + this.getDiagramList(); + this.state = 9973; this.match(PostgreSqlParser.SEMI); } } @@ -73330,11 +68029,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public getdiag_area_opt(): Getdiag_area_optContext { - let localContext = new Getdiag_area_optContext(this.context, this.state); - this.enterRule(localContext, 1464, PostgreSqlParser.RULE_getdiag_area_opt); + public optionalGetDiagramArea(): OptionalGetDiagramAreaContext { + let localContext = new OptionalGetDiagramAreaContext(this.context, this.state); + this.enterRule(localContext, 1348, PostgreSqlParser.RULE_optionalGetDiagramArea); try { - this.state = 10185; + this.state = 9978; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DIAGNOSTICS: @@ -73346,14 +68045,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.CURRENT_P: this.enterOuterAlt(localContext, 2); { - this.state = 10183; + this.state = 9976; this.match(PostgreSqlParser.CURRENT_P); } break; case PostgreSqlParser.STACKED: this.enterOuterAlt(localContext, 3); { - this.state = 10184; + this.state = 9977; this.match(PostgreSqlParser.STACKED); } break; @@ -73375,28 +68074,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public getdiag_list(): Getdiag_listContext { - let localContext = new Getdiag_listContext(this.context, this.state); - this.enterRule(localContext, 1466, PostgreSqlParser.RULE_getdiag_list); + public getDiagramList(): GetDiagramListContext { + let localContext = new GetDiagramListContext(this.context, this.state); + this.enterRule(localContext, 1350, PostgreSqlParser.RULE_getDiagramList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10187; - this.getdiag_list_item(); - this.state = 10192; + this.state = 9980; + this.getDiagramListItem(); + this.state = 9985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10188; + this.state = 9981; this.match(PostgreSqlParser.COMMA); - this.state = 10189; - this.getdiag_list_item(); + this.state = 9982; + this.getDiagramListItem(); } } - this.state = 10194; + this.state = 9987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -73416,18 +68115,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public getdiag_list_item(): Getdiag_list_itemContext { - let localContext = new Getdiag_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1468, PostgreSqlParser.RULE_getdiag_list_item); + public getDiagramListItem(): GetDiagramListItemContext { + let localContext = new GetDiagramListItemContext(this.context, this.state); + this.enterRule(localContext, 1352, PostgreSqlParser.RULE_getDiagramListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 10195; - this.getdiag_target(); - this.state = 10196; - this.assign_operator(); - this.state = 10197; - this.getdiag_item(); + this.state = 9988; + this.getDiagramTarget(); + this.state = 9989; + this.assignOperator(); + this.state = 9990; + this.getDiagramItem(); } } catch (re) { @@ -73444,14 +68143,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public getdiag_item(): Getdiag_itemContext { - let localContext = new Getdiag_itemContext(this.context, this.state); - this.enterRule(localContext, 1470, PostgreSqlParser.RULE_getdiag_item); + public getDiagramItem(): GetDiagramItemContext { + let localContext = new GetDiagramItemContext(this.context, this.state); + this.enterRule(localContext, 1354, PostgreSqlParser.RULE_getDiagramItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 10199; - this.colid(); + this.state = 9992; + this.columnId(); } } catch (re) { @@ -73468,14 +68167,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public getdiag_target(): Getdiag_targetContext { - let localContext = new Getdiag_targetContext(this.context, this.state); - this.enterRule(localContext, 1472, PostgreSqlParser.RULE_getdiag_target); + public getDiagramTarget(): GetDiagramTargetContext { + let localContext = new GetDiagramTargetContext(this.context, this.state); + this.enterRule(localContext, 1356, PostgreSqlParser.RULE_getDiagramTarget); try { this.enterOuterAlt(localContext, 1); { - this.state = 10201; - this.assign_var(); + this.state = 9994; + this.assignVariable(); } } catch (re) { @@ -73492,14 +68191,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public assign_var(): Assign_varContext { - let localContext = new Assign_varContext(this.context, this.state); - this.enterRule(localContext, 1474, PostgreSqlParser.RULE_assign_var); + public assignVariable(): AssignVariableContext { + let localContext = new AssignVariableContext(this.context, this.state); + this.enterRule(localContext, 1358, PostgreSqlParser.RULE_assignVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10205; + this.state = 9998; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -74022,34 +68721,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 10203; - this.any_name(); + this.state = 9996; + this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 10204; + this.state = 9997; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 10213; + this.state = 10006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 10207; + this.state = 10000; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 10208; - this.expr_until_rightbracket(); - this.state = 10209; + this.state = 10001; + this.expressionUntilRightbracket(); + this.state = 10002; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 10215; + this.state = 10008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -74069,29 +68768,29 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_if(): Stmt_ifContext { - let localContext = new Stmt_ifContext(this.context, this.state); - this.enterRule(localContext, 1476, PostgreSqlParser.RULE_stmt_if); + public statementIf(): StatementIfContext { + let localContext = new StatementIfContext(this.context, this.state); + this.enterRule(localContext, 1360, PostgreSqlParser.RULE_statementIf); try { this.enterOuterAlt(localContext, 1); { - this.state = 10216; + this.state = 10009; this.match(PostgreSqlParser.IF_P); - this.state = 10217; - this.expr_until_then(); - this.state = 10218; + this.state = 10010; + this.expressionUntilThen(); + this.state = 10011; this.match(PostgreSqlParser.THEN); - this.state = 10219; - this.proc_sect(); - this.state = 10220; - this.stmt_elsifs(); - this.state = 10221; - this.stmt_else(); - this.state = 10222; + this.state = 10012; + this.procedureSection(); + this.state = 10013; + this.statementElsifs(); + this.state = 10014; + this.statementElse(); + this.state = 10015; this.match(PostgreSqlParser.END_P); - this.state = 10223; + this.state = 10016; this.match(PostgreSqlParser.IF_P); - this.state = 10224; + this.state = 10017; this.match(PostgreSqlParser.SEMI); } } @@ -74109,30 +68808,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_elsifs(): Stmt_elsifsContext { - let localContext = new Stmt_elsifsContext(this.context, this.state); - this.enterRule(localContext, 1478, PostgreSqlParser.RULE_stmt_elsifs); + public statementElsifs(): StatementElsifsContext { + let localContext = new StatementElsifsContext(this.context, this.state); + this.enterRule(localContext, 1362, PostgreSqlParser.RULE_statementElsifs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10233; + this.state = 10026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 10226; + this.state = 10019; this.match(PostgreSqlParser.ELSIF); - this.state = 10227; - this.a_expr(); - this.state = 10228; + this.state = 10020; + this.expression1(); + this.state = 10021; this.match(PostgreSqlParser.THEN); - this.state = 10229; - this.proc_sect(); + this.state = 10022; + this.procedureSection(); } } - this.state = 10235; + this.state = 10028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -74152,11 +68851,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_else(): Stmt_elseContext { - let localContext = new Stmt_elseContext(this.context, this.state); - this.enterRule(localContext, 1480, PostgreSqlParser.RULE_stmt_else); + public statementElse(): StatementElseContext { + let localContext = new StatementElseContext(this.context, this.state); + this.enterRule(localContext, 1364, PostgreSqlParser.RULE_statementElse); try { - this.state = 10239; + this.state = 10032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.END_P: @@ -74168,10 +68867,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 10237; + this.state = 10030; this.match(PostgreSqlParser.ELSE); - this.state = 10238; - this.proc_sect(); + this.state = 10031; + this.procedureSection(); } break; default: @@ -74192,25 +68891,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_case(): Stmt_caseContext { - let localContext = new Stmt_caseContext(this.context, this.state); - this.enterRule(localContext, 1482, PostgreSqlParser.RULE_stmt_case); + public statementCase(): StatementCaseContext { + let localContext = new StatementCaseContext(this.context, this.state); + this.enterRule(localContext, 1366, PostgreSqlParser.RULE_statementCase); try { this.enterOuterAlt(localContext, 1); { - this.state = 10241; + this.state = 10034; this.match(PostgreSqlParser.CASE); - this.state = 10242; - this.opt_expr_until_when(); - this.state = 10243; - this.case_when_list(); - this.state = 10244; - this.opt_case_else(); - this.state = 10245; + this.state = 10035; + this.optionalExpressionUntilWhen(); + this.state = 10036; + this.caseWhenList(); + this.state = 10037; + this.optionalCaseElse(); + this.state = 10038; this.match(PostgreSqlParser.END_P); - this.state = 10246; + this.state = 10039; this.match(PostgreSqlParser.CASE); - this.state = 10247; + this.state = 10040; this.match(PostgreSqlParser.SEMI); } } @@ -74228,13 +68927,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_expr_until_when(): Opt_expr_until_whenContext { - let localContext = new Opt_expr_until_whenContext(this.context, this.state); - this.enterRule(localContext, 1484, PostgreSqlParser.RULE_opt_expr_until_when); + public optionalExpressionUntilWhen(): OptionalExpressionUntilWhenContext { + let localContext = new OptionalExpressionUntilWhenContext(this.context, this.state); + this.enterRule(localContext, 1368, PostgreSqlParser.RULE_optionalExpressionUntilWhen); try { - this.state = 10251; + this.state = 10044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -74244,8 +68943,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10250; - this.sql_expression(); + this.state = 10043; + this.sqlExpression(); } break; } @@ -74264,24 +68963,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public case_when_list(): Case_when_listContext { - let localContext = new Case_when_listContext(this.context, this.state); - this.enterRule(localContext, 1486, PostgreSqlParser.RULE_case_when_list); + public caseWhenList(): CaseWhenListContext { + let localContext = new CaseWhenListContext(this.context, this.state); + this.enterRule(localContext, 1370, PostgreSqlParser.RULE_caseWhenList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10254; + this.state = 10047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 10253; - this.case_when(); + this.state = 10046; + this.caseWhen(); } } - this.state = 10256; + this.state = 10049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -74301,20 +69000,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public case_when(): Case_whenContext { - let localContext = new Case_whenContext(this.context, this.state); - this.enterRule(localContext, 1488, PostgreSqlParser.RULE_case_when); + public caseWhen(): CaseWhenContext { + let localContext = new CaseWhenContext(this.context, this.state); + this.enterRule(localContext, 1372, PostgreSqlParser.RULE_caseWhen); try { this.enterOuterAlt(localContext, 1); { - this.state = 10258; + this.state = 10051; this.match(PostgreSqlParser.WHEN); - this.state = 10259; - this.expr_list(); - this.state = 10260; + this.state = 10052; + this.expressionList(); + this.state = 10053; this.match(PostgreSqlParser.THEN); - this.state = 10261; - this.proc_sect(); + this.state = 10054; + this.procedureSection(); } } catch (re) { @@ -74331,11 +69030,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_case_else(): Opt_case_elseContext { - let localContext = new Opt_case_elseContext(this.context, this.state); - this.enterRule(localContext, 1490, PostgreSqlParser.RULE_opt_case_else); + public optionalCaseElse(): OptionalCaseElseContext { + let localContext = new OptionalCaseElseContext(this.context, this.state); + this.enterRule(localContext, 1374, PostgreSqlParser.RULE_optionalCaseElse); try { - this.state = 10266; + this.state = 10059; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.END_P: @@ -74347,10 +69046,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 10264; + this.state = 10057; this.match(PostgreSqlParser.ELSE); - this.state = 10265; - this.proc_sect(); + this.state = 10058; + this.procedureSection(); } break; default: @@ -74371,16 +69070,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_loop(): Stmt_loopContext { - let localContext = new Stmt_loopContext(this.context, this.state); - this.enterRule(localContext, 1492, PostgreSqlParser.RULE_stmt_loop); + public statementLoop(): StatementLoopContext { + let localContext = new StatementLoopContext(this.context, this.state); + this.enterRule(localContext, 1376, PostgreSqlParser.RULE_statementLoop); try { this.enterOuterAlt(localContext, 1); { - this.state = 10268; - this.opt_loop_label(); - this.state = 10269; - this.loop_body(); + this.state = 10061; + this.optionalLoopLabel(); + this.state = 10062; + this.loopBody(); } } catch (re) { @@ -74397,20 +69096,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_while(): Stmt_whileContext { - let localContext = new Stmt_whileContext(this.context, this.state); - this.enterRule(localContext, 1494, PostgreSqlParser.RULE_stmt_while); + public statementWhile(): StatementWhileContext { + let localContext = new StatementWhileContext(this.context, this.state); + this.enterRule(localContext, 1378, PostgreSqlParser.RULE_statementWhile); try { this.enterOuterAlt(localContext, 1); { - this.state = 10271; - this.opt_loop_label(); - this.state = 10272; + this.state = 10064; + this.optionalLoopLabel(); + this.state = 10065; this.match(PostgreSqlParser.WHILE); - this.state = 10273; - this.expr_until_loop(); - this.state = 10274; - this.loop_body(); + this.state = 10066; + this.expressionUntilLoop(); + this.state = 10067; + this.loopBody(); } } catch (re) { @@ -74427,20 +69126,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_for(): Stmt_forContext { - let localContext = new Stmt_forContext(this.context, this.state); - this.enterRule(localContext, 1496, PostgreSqlParser.RULE_stmt_for); + public statementFor(): StatementForContext { + let localContext = new StatementForContext(this.context, this.state); + this.enterRule(localContext, 1380, PostgreSqlParser.RULE_statementFor); try { this.enterOuterAlt(localContext, 1); { - this.state = 10276; - this.opt_loop_label(); - this.state = 10277; + this.state = 10069; + this.optionalLoopLabel(); + this.state = 10070; this.match(PostgreSqlParser.FOR); - this.state = 10278; - this.for_control(); - this.state = 10279; - this.loop_body(); + this.state = 10071; + this.forControl(); + this.state = 10072; + this.loopBody(); } } catch (re) { @@ -74457,61 +69156,61 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public for_control(): For_controlContext { - let localContext = new For_controlContext(this.context, this.state); - this.enterRule(localContext, 1498, PostgreSqlParser.RULE_for_control); + public forControl(): ForControlContext { + let localContext = new ForControlContext(this.context, this.state); + this.enterRule(localContext, 1382, PostgreSqlParser.RULE_forControl); try { this.enterOuterAlt(localContext, 1); { - this.state = 10281; - this.for_variable(); - this.state = 10282; + this.state = 10074; + this.forVariable(); + this.state = 10075; this.match(PostgreSqlParser.IN_P); - this.state = 10298; + this.state = 10091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: { - this.state = 10283; - this.cursor_name(); - this.state = 10284; - this.opt_cursor_parameters(); + this.state = 10076; + this.cursorName(); + this.state = 10077; + this.optionalCursorParameters(); } break; case 2: { - this.state = 10286; - this.selectstmt(); + this.state = 10079; + this.selectStatement(); } break; case 3: { - this.state = 10287; - this.explainstmt(); + this.state = 10080; + this.explainStatement(); } break; case 4: { - this.state = 10288; + this.state = 10081; this.match(PostgreSqlParser.EXECUTE); - this.state = 10289; - this.a_expr(); - this.state = 10290; - this.opt_for_using_expression(); + this.state = 10082; + this.expression1(); + this.state = 10083; + this.optionalForUsingExpression(); } break; case 5: { - this.state = 10292; - this.opt_reverse(); - this.state = 10293; - this.a_expr(); - this.state = 10294; + this.state = 10085; + this.optionalReverse(); + this.state = 10086; + this.expression1(); + this.state = 10087; this.match(PostgreSqlParser.DOT_DOT); - this.state = 10295; - this.a_expr(); - this.state = 10296; - this.opt_by_expression(); + this.state = 10088; + this.expression1(); + this.state = 10089; + this.optionalByExpression(); } break; } @@ -74531,11 +69230,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_for_using_expression(): Opt_for_using_expressionContext { - let localContext = new Opt_for_using_expressionContext(this.context, this.state); - this.enterRule(localContext, 1500, PostgreSqlParser.RULE_opt_for_using_expression); + public optionalForUsingExpression(): OptionalForUsingExpressionContext { + let localContext = new OptionalForUsingExpressionContext(this.context, this.state); + this.enterRule(localContext, 1384, PostgreSqlParser.RULE_optionalForUsingExpression); try { - this.state = 10303; + this.state = 10096; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -74548,10 +69247,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 2); { - this.state = 10301; + this.state = 10094; this.match(PostgreSqlParser.USING); - this.state = 10302; - this.expr_list(); + this.state = 10095; + this.expressionList(); } break; default: @@ -74572,12 +69271,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_cursor_parameters(): Opt_cursor_parametersContext { - let localContext = new Opt_cursor_parametersContext(this.context, this.state); - this.enterRule(localContext, 1502, PostgreSqlParser.RULE_opt_cursor_parameters); + public optionalCursorParameters(): OptionalCursorParametersContext { + let localContext = new OptionalCursorParametersContext(this.context, this.state); + this.enterRule(localContext, 1386, PostgreSqlParser.RULE_optionalCursorParameters); let _la: number; try { - this.state = 10317; + this.state = 10110; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.LOOP: @@ -74589,27 +69288,27 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 10306; + this.state = 10099; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 10307; - this.a_expr(); - this.state = 10312; + this.state = 10100; + this.expression1(); + this.state = 10105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10308; + this.state = 10101; this.match(PostgreSqlParser.COMMA); - this.state = 10309; - this.a_expr(); + this.state = 10102; + this.expression1(); } } - this.state = 10314; + this.state = 10107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 10315; + this.state = 10108; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -74631,13 +69330,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_reverse(): Opt_reverseContext { - let localContext = new Opt_reverseContext(this.context, this.state); - this.enterRule(localContext, 1504, PostgreSqlParser.RULE_opt_reverse); + public optionalReverse(): OptionalReverseContext { + let localContext = new OptionalReverseContext(this.context, this.state); + this.enterRule(localContext, 1388, PostgreSqlParser.RULE_optionalReverse); try { - this.state = 10321; + this.state = 10114; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -74647,7 +69346,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10320; + this.state = 10113; this.match(PostgreSqlParser.REVERSE); } break; @@ -74667,11 +69366,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_by_expression(): Opt_by_expressionContext { - let localContext = new Opt_by_expressionContext(this.context, this.state); - this.enterRule(localContext, 1506, PostgreSqlParser.RULE_opt_by_expression); + public optionalByExpression(): OptionalByExpressionContext { + let localContext = new OptionalByExpressionContext(this.context, this.state); + this.enterRule(localContext, 1390, PostgreSqlParser.RULE_optionalByExpression); try { - this.state = 10326; + this.state = 10119; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.LOOP: @@ -74683,10 +69382,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.BY: this.enterOuterAlt(localContext, 2); { - this.state = 10324; + this.state = 10117; this.match(PostgreSqlParser.BY); - this.state = 10325; - this.a_expr(); + this.state = 10118; + this.expression1(); } break; default: @@ -74707,14 +69406,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public for_variable(): For_variableContext { - let localContext = new For_variableContext(this.context, this.state); - this.enterRule(localContext, 1508, PostgreSqlParser.RULE_for_variable); + public forVariable(): ForVariableContext { + let localContext = new ForVariableContext(this.context, this.state); + this.enterRule(localContext, 1392, PostgreSqlParser.RULE_forVariable); try { this.enterOuterAlt(localContext, 1); { - this.state = 10328; - this.any_name_list(); + this.state = 10121; + this.anyNameList(); } } catch (re) { @@ -74731,28 +69430,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_foreach_a(): Stmt_foreach_aContext { - let localContext = new Stmt_foreach_aContext(this.context, this.state); - this.enterRule(localContext, 1510, PostgreSqlParser.RULE_stmt_foreach_a); + public statementForeachA(): StatementForeachAContext { + let localContext = new StatementForeachAContext(this.context, this.state); + this.enterRule(localContext, 1394, PostgreSqlParser.RULE_statementForeachA); try { this.enterOuterAlt(localContext, 1); { - this.state = 10330; - this.opt_loop_label(); - this.state = 10331; + this.state = 10123; + this.optionalLoopLabel(); + this.state = 10124; this.match(PostgreSqlParser.FOREACH); - this.state = 10332; - this.for_variable(); - this.state = 10333; - this.foreach_slice(); - this.state = 10334; + this.state = 10125; + this.forVariable(); + this.state = 10126; + this.foreachSlice(); + this.state = 10127; this.match(PostgreSqlParser.IN_P); - this.state = 10335; + this.state = 10128; this.match(PostgreSqlParser.ARRAY); - this.state = 10336; - this.a_expr(); - this.state = 10337; - this.loop_body(); + this.state = 10129; + this.expression1(); + this.state = 10130; + this.loopBody(); } } catch (re) { @@ -74769,11 +69468,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public foreach_slice(): Foreach_sliceContext { - let localContext = new Foreach_sliceContext(this.context, this.state); - this.enterRule(localContext, 1512, PostgreSqlParser.RULE_foreach_slice); + public foreachSlice(): ForeachSliceContext { + let localContext = new ForeachSliceContext(this.context, this.state); + this.enterRule(localContext, 1396, PostgreSqlParser.RULE_foreachSlice); try { - this.state = 10342; + this.state = 10135; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.IN_P: @@ -74785,9 +69484,9 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.SLICE: this.enterOuterAlt(localContext, 2); { - this.state = 10340; + this.state = 10133; this.match(PostgreSqlParser.SLICE); - this.state = 10341; + this.state = 10134; this.iconst(); } break; @@ -74809,19 +69508,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_exit(): Stmt_exitContext { - let localContext = new Stmt_exitContext(this.context, this.state); - this.enterRule(localContext, 1514, PostgreSqlParser.RULE_stmt_exit); + public statementExit(): StatementExitContext { + let localContext = new StatementExitContext(this.context, this.state); + this.enterRule(localContext, 1398, PostgreSqlParser.RULE_statementExit); try { this.enterOuterAlt(localContext, 1); { - this.state = 10344; - this.exit_type(); - this.state = 10345; - this.opt_label(); - this.state = 10346; - this.opt_exitcond(); - this.state = 10347; + this.state = 10137; + this.exitType(); + this.state = 10138; + this.optionalLabel(); + this.state = 10139; + this.optionalExitCondition(); + this.state = 10140; this.match(PostgreSqlParser.SEMI); } } @@ -74839,14 +69538,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public exit_type(): Exit_typeContext { - let localContext = new Exit_typeContext(this.context, this.state); - this.enterRule(localContext, 1516, PostgreSqlParser.RULE_exit_type); + public exitType(): ExitTypeContext { + let localContext = new ExitTypeContext(this.context, this.state); + this.enterRule(localContext, 1400, PostgreSqlParser.RULE_exitType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10349; + this.state = 10142; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -74871,40 +69570,40 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_return(): Stmt_returnContext { - let localContext = new Stmt_returnContext(this.context, this.state); - this.enterRule(localContext, 1518, PostgreSqlParser.RULE_stmt_return); + public statementReturn(): StatementReturnContext { + let localContext = new StatementReturnContext(this.context, this.state); + this.enterRule(localContext, 1402, PostgreSqlParser.RULE_statementReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 10351; + this.state = 10144; this.match(PostgreSqlParser.RETURN); - this.state = 10363; + this.state = 10156; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { case 1: { - this.state = 10352; + this.state = 10145; this.match(PostgreSqlParser.NEXT); - this.state = 10353; - this.sql_expression(); + this.state = 10146; + this.sqlExpression(); } break; case 2: { - this.state = 10354; + this.state = 10147; this.match(PostgreSqlParser.QUERY); - this.state = 10360; + this.state = 10153; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EXECUTE: { - this.state = 10355; + this.state = 10148; this.match(PostgreSqlParser.EXECUTE); - this.state = 10356; - this.a_expr(); - this.state = 10357; - this.opt_for_using_expression(); + this.state = 10149; + this.expression1(); + this.state = 10150; + this.optionalForUsingExpression(); } break; case PostgreSqlParser.OPEN_PAREN: @@ -74913,8 +69612,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.WITH: case PostgreSqlParser.VALUES: { - this.state = 10359; - this.selectstmt(); + this.state = 10152; + this.selectStatement(); } break; default: @@ -74924,12 +69623,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { break; case 3: { - this.state = 10362; - this.opt_return_result(); + this.state = 10155; + this.optionalReturnResult(); } break; } - this.state = 10365; + this.state = 10158; this.match(PostgreSqlParser.SEMI); } } @@ -74947,13 +69646,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_return_result(): Opt_return_resultContext { - let localContext = new Opt_return_resultContext(this.context, this.state); - this.enterRule(localContext, 1520, PostgreSqlParser.RULE_opt_return_result); + public optionalReturnResult(): OptionalReturnResultContext { + let localContext = new OptionalReturnResultContext(this.context, this.state); + this.enterRule(localContext, 1404, PostgreSqlParser.RULE_optionalReturnResult); try { - this.state = 10369; + this.state = 10162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -74963,8 +69662,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10368; - this.sql_expression(); + this.state = 10161; + this.sqlExpression(); } break; } @@ -74983,79 +69682,79 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_raise(): Stmt_raiseContext { - let localContext = new Stmt_raiseContext(this.context, this.state); - this.enterRule(localContext, 1522, PostgreSqlParser.RULE_stmt_raise); + public statementRaise(): StatementRaiseContext { + let localContext = new StatementRaiseContext(this.context, this.state); + this.enterRule(localContext, 1406, PostgreSqlParser.RULE_statementRaise); try { - this.state = 10397; + this.state = 10190; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10371; + this.state = 10164; this.match(PostgreSqlParser.RAISE); - this.state = 10372; - this.opt_stmt_raise_level(); - this.state = 10373; + this.state = 10165; + this.optionalStatementRaiseLevel(); + this.state = 10166; this.sconst(); - this.state = 10374; - this.opt_raise_list(); - this.state = 10375; - this.opt_raise_using(); - this.state = 10376; + this.state = 10167; + this.optionalRaiseList(); + this.state = 10168; + this.optionalRaiseUsing(); + this.state = 10169; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10378; + this.state = 10171; this.match(PostgreSqlParser.RAISE); - this.state = 10379; - this.opt_stmt_raise_level(); - this.state = 10380; + this.state = 10172; + this.optionalStatementRaiseLevel(); + this.state = 10173; this.identifier(); - this.state = 10381; - this.opt_raise_using(); - this.state = 10382; + this.state = 10174; + this.optionalRaiseUsing(); + this.state = 10175; this.match(PostgreSqlParser.SEMI); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10384; + this.state = 10177; this.match(PostgreSqlParser.RAISE); - this.state = 10385; - this.opt_stmt_raise_level(); - this.state = 10386; + this.state = 10178; + this.optionalStatementRaiseLevel(); + this.state = 10179; this.match(PostgreSqlParser.SQLSTATE); - this.state = 10387; + this.state = 10180; this.sconst(); - this.state = 10388; - this.opt_raise_using(); - this.state = 10389; + this.state = 10181; + this.optionalRaiseUsing(); + this.state = 10182; this.match(PostgreSqlParser.SEMI); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10391; + this.state = 10184; this.match(PostgreSqlParser.RAISE); - this.state = 10392; - this.opt_stmt_raise_level(); - this.state = 10393; - this.opt_raise_using(); - this.state = 10394; + this.state = 10185; + this.optionalStatementRaiseLevel(); + this.state = 10186; + this.optionalRaiseUsing(); + this.state = 10187; this.match(PostgreSqlParser.SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10396; + this.state = 10189; this.match(PostgreSqlParser.RAISE); } break; @@ -75075,13 +69774,13 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_stmt_raise_level(): Opt_stmt_raise_levelContext { - let localContext = new Opt_stmt_raise_levelContext(this.context, this.state); - this.enterRule(localContext, 1524, PostgreSqlParser.RULE_opt_stmt_raise_level); + public optionalStatementRaiseLevel(): OptionalStatementRaiseLevelContext { + let localContext = new OptionalStatementRaiseLevelContext(this.context, this.state); + this.enterRule(localContext, 1408, PostgreSqlParser.RULE_optionalStatementRaiseLevel); try { - this.state = 10407; + this.state = 10200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -75097,42 +69796,42 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10401; + this.state = 10194; this.match(PostgreSqlParser.DEBUG); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10402; + this.state = 10195; this.match(PostgreSqlParser.LOG); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10403; + this.state = 10196; this.match(PostgreSqlParser.INFO); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10404; + this.state = 10197; this.match(PostgreSqlParser.NOTICE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10405; + this.state = 10198; this.match(PostgreSqlParser.WARNING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10406; + this.state = 10199; this.match(PostgreSqlParser.EXCEPTION); } break; @@ -75152,12 +69851,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_raise_list(): Opt_raise_listContext { - let localContext = new Opt_raise_listContext(this.context, this.state); - this.enterRule(localContext, 1526, PostgreSqlParser.RULE_opt_raise_list); + public optionalRaiseList(): OptionalRaiseListContext { + let localContext = new OptionalRaiseListContext(this.context, this.state); + this.enterRule(localContext, 1410, PostgreSqlParser.RULE_optionalRaiseList); let _la: number; try { - this.state = 10416; + this.state = 10209; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -75170,19 +69869,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 10412; + this.state = 10205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 10410; + this.state = 10203; this.match(PostgreSqlParser.COMMA); - this.state = 10411; - this.a_expr(); + this.state = 10204; + this.expression1(); } } - this.state = 10414; + this.state = 10207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -75206,11 +69905,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_raise_using(): Opt_raise_usingContext { - let localContext = new Opt_raise_usingContext(this.context, this.state); - this.enterRule(localContext, 1528, PostgreSqlParser.RULE_opt_raise_using); + public optionalRaiseUsing(): OptionalRaiseUsingContext { + let localContext = new OptionalRaiseUsingContext(this.context, this.state); + this.enterRule(localContext, 1412, PostgreSqlParser.RULE_optionalRaiseUsing); + let _la: number; try { - this.state = 10421; + this.state = 10221; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -75222,10 +69922,26 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 2); { - this.state = 10419; + this.state = 10212; this.match(PostgreSqlParser.USING); - this.state = 10420; - this.opt_raise_using_elem_list(); + this.state = 10213; + this.optionalRaiseUsingElement(); + this.state = 10218; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 10214; + this.match(PostgreSqlParser.COMMA); + this.state = 10215; + this.optionalRaiseUsingElement(); + } + } + this.state = 10220; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } break; default: @@ -75246,59 +69962,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_raise_using_elem(): Opt_raise_using_elemContext { - let localContext = new Opt_raise_using_elemContext(this.context, this.state); - this.enterRule(localContext, 1530, PostgreSqlParser.RULE_opt_raise_using_elem); + public optionalRaiseUsingElement(): OptionalRaiseUsingElementContext { + let localContext = new OptionalRaiseUsingElementContext(this.context, this.state); + this.enterRule(localContext, 1414, PostgreSqlParser.RULE_optionalRaiseUsingElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 10423; + this.state = 10223; this.identifier(); - this.state = 10424; + this.state = 10224; this.match(PostgreSqlParser.EQUAL); - this.state = 10425; - this.a_expr(); - } - } - 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 opt_raise_using_elem_list(): Opt_raise_using_elem_listContext { - let localContext = new Opt_raise_using_elem_listContext(this.context, this.state); - this.enterRule(localContext, 1532, PostgreSqlParser.RULE_opt_raise_using_elem_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 10427; - this.opt_raise_using_elem(); - this.state = 10432; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 10428; - this.match(PostgreSqlParser.COMMA); - this.state = 10429; - this.opt_raise_using_elem(); - } - } - this.state = 10434; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 10225; + this.expression1(); } } catch (re) { @@ -75315,19 +69990,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_assert(): Stmt_assertContext { - let localContext = new Stmt_assertContext(this.context, this.state); - this.enterRule(localContext, 1534, PostgreSqlParser.RULE_stmt_assert); + public statementAssert(): StatementAssertContext { + let localContext = new StatementAssertContext(this.context, this.state); + this.enterRule(localContext, 1416, PostgreSqlParser.RULE_statementAssert); try { this.enterOuterAlt(localContext, 1); { - this.state = 10435; + this.state = 10227; this.match(PostgreSqlParser.ASSERT); - this.state = 10436; - this.sql_expression(); - this.state = 10437; - this.opt_stmt_assert_message(); - this.state = 10438; + this.state = 10228; + this.sqlExpression(); + this.state = 10229; + this.optionalStatementAssertMessage(); + this.state = 10230; this.match(PostgreSqlParser.SEMI); } } @@ -75345,11 +70020,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_stmt_assert_message(): Opt_stmt_assert_messageContext { - let localContext = new Opt_stmt_assert_messageContext(this.context, this.state); - this.enterRule(localContext, 1536, PostgreSqlParser.RULE_opt_stmt_assert_message); + public optionalStatementAssertMessage(): OptionalStatementAssertMessageContext { + let localContext = new OptionalStatementAssertMessageContext(this.context, this.state); + this.enterRule(localContext, 1418, PostgreSqlParser.RULE_optionalStatementAssertMessage); try { - this.state = 10443; + this.state = 10235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -75361,10 +70036,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 10441; + this.state = 10233; this.match(PostgreSqlParser.COMMA); - this.state = 10442; - this.sql_expression(); + this.state = 10234; + this.sqlExpression(); } break; default: @@ -75385,23 +70060,23 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public loop_body(): Loop_bodyContext { - let localContext = new Loop_bodyContext(this.context, this.state); - this.enterRule(localContext, 1538, PostgreSqlParser.RULE_loop_body); + public loopBody(): LoopBodyContext { + let localContext = new LoopBodyContext(this.context, this.state); + this.enterRule(localContext, 1420, PostgreSqlParser.RULE_loopBody); try { this.enterOuterAlt(localContext, 1); { - this.state = 10445; + this.state = 10237; this.match(PostgreSqlParser.LOOP); - this.state = 10446; - this.proc_sect(); - this.state = 10447; + this.state = 10238; + this.procedureSection(); + this.state = 10239; this.match(PostgreSqlParser.END_P); - this.state = 10448; + this.state = 10240; this.match(PostgreSqlParser.LOOP); - this.state = 10449; - this.opt_label(); - this.state = 10450; + this.state = 10241; + this.optionalLabel(); + this.state = 10242; this.match(PostgreSqlParser.SEMI); } } @@ -75419,15 +70094,15 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_execsql(): Stmt_execsqlContext { - let localContext = new Stmt_execsqlContext(this.context, this.state); - this.enterRule(localContext, 1540, PostgreSqlParser.RULE_stmt_execsql); + public statementExecSql(): StatementExecSqlContext { + let localContext = new StatementExecSqlContext(this.context, this.state); + this.enterRule(localContext, 1422, PostgreSqlParser.RULE_statementExecSql); try { this.enterOuterAlt(localContext, 1); { - this.state = 10452; - this.make_execsql_stmt(); - this.state = 10453; + this.state = 10244; + this.makeExecuteSqlStatement(); + this.state = 10245; this.match(PostgreSqlParser.SEMI); } } @@ -75445,33 +70120,33 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_dynexecute(): Stmt_dynexecuteContext { - let localContext = new Stmt_dynexecuteContext(this.context, this.state); - this.enterRule(localContext, 1542, PostgreSqlParser.RULE_stmt_dynexecute); + public statementDynExecute(): StatementDynExecuteContext { + let localContext = new StatementDynExecuteContext(this.context, this.state); + this.enterRule(localContext, 1424, PostgreSqlParser.RULE_statementDynExecute); try { this.enterOuterAlt(localContext, 1); { - this.state = 10455; + this.state = 10247; this.match(PostgreSqlParser.EXECUTE); - this.state = 10456; - this.a_expr(); - this.state = 10464; + this.state = 10248; + this.expression1(); + this.state = 10256; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 731, this.context) ) { case 1: { - this.state = 10457; - this.opt_execute_into(); - this.state = 10458; - this.opt_execute_using(); + this.state = 10249; + this.optionalExecuteInto(); + this.state = 10250; + this.optionalExecuteUsing(); } break; case 2: { - this.state = 10460; - this.opt_execute_using(); - this.state = 10461; - this.opt_execute_into(); + this.state = 10252; + this.optionalExecuteUsing(); + this.state = 10253; + this.optionalExecuteInto(); } break; case 3: @@ -75480,7 +70155,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } break; } - this.state = 10466; + this.state = 10258; this.match(PostgreSqlParser.SEMI); } } @@ -75498,11 +70173,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_execute_using(): Opt_execute_usingContext { - let localContext = new Opt_execute_usingContext(this.context, this.state); - this.enterRule(localContext, 1544, PostgreSqlParser.RULE_opt_execute_using); + public optionalExecuteUsing(): OptionalExecuteUsingContext { + let localContext = new OptionalExecuteUsingContext(this.context, this.state); + this.enterRule(localContext, 1426, PostgreSqlParser.RULE_optionalExecuteUsing); try { - this.state = 10471; + this.state = 10263; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -75515,10 +70190,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.USING: this.enterOuterAlt(localContext, 2); { - this.state = 10469; + this.state = 10261; this.match(PostgreSqlParser.USING); - this.state = 10470; - this.opt_execute_using_list(); + this.state = 10262; + this.optionalExecuteUsingList(); } break; default: @@ -75539,28 +70214,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_execute_using_list(): Opt_execute_using_listContext { - let localContext = new Opt_execute_using_listContext(this.context, this.state); - this.enterRule(localContext, 1546, PostgreSqlParser.RULE_opt_execute_using_list); + public optionalExecuteUsingList(): OptionalExecuteUsingListContext { + let localContext = new OptionalExecuteUsingListContext(this.context, this.state); + this.enterRule(localContext, 1428, PostgreSqlParser.RULE_optionalExecuteUsingList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10473; - this.a_expr(); - this.state = 10478; + this.state = 10265; + this.expression1(); + this.state = 10270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10474; + this.state = 10266; this.match(PostgreSqlParser.COMMA); - this.state = 10475; - this.a_expr(); + this.state = 10267; + this.expression1(); } } - this.state = 10480; + this.state = 10272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -75580,11 +70255,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_execute_into(): Opt_execute_intoContext { - let localContext = new Opt_execute_intoContext(this.context, this.state); - this.enterRule(localContext, 1548, PostgreSqlParser.RULE_opt_execute_into); + public optionalExecuteInto(): OptionalExecuteIntoContext { + let localContext = new OptionalExecuteIntoContext(this.context, this.state); + this.enterRule(localContext, 1430, PostgreSqlParser.RULE_optionalExecuteInto); try { - this.state = 10487; + this.state = 10279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SEMI: @@ -75597,20 +70272,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.INTO: this.enterOuterAlt(localContext, 2); { - this.state = 10482; + this.state = 10274; this.match(PostgreSqlParser.INTO); - this.state = 10484; + this.state = 10276; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { case 1: { - this.state = 10483; + this.state = 10275; this.match(PostgreSqlParser.STRICT_P); } break; } - this.state = 10486; - this.into_target(); + this.state = 10278; + this.intoTarget(); } break; default: @@ -75631,27 +70306,37 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_open(): Stmt_openContext { - let localContext = new Stmt_openContext(this.context, this.state); - this.enterRule(localContext, 1550, PostgreSqlParser.RULE_stmt_open); + public statementOpen(): StatementOpenContext { + let localContext = new StatementOpenContext(this.context, this.state); + this.enterRule(localContext, 1432, PostgreSqlParser.RULE_statementOpen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10489; + this.state = 10281; this.match(PostgreSqlParser.OPEN); - this.state = 10507; + this.state = 10310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 740, this.context) ) { case 1: { - this.state = 10490; - this.cursor_variable(); - this.state = 10491; - this.opt_scroll_option(); - this.state = 10492; + this.state = 10282; + this.cursorVariable(); + this.state = 10284; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 262) { + { + this.state = 10283; + this.match(PostgreSqlParser.NO); + } + } + + this.state = 10286; + this.match(PostgreSqlParser.SCROLL); + this.state = 10287; this.match(PostgreSqlParser.FOR); - this.state = 10498; + this.state = 10294; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -75660,18 +70345,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.WITH: case PostgreSqlParser.VALUES: { - this.state = 10493; - this.selectstmt(); + this.state = 10288; + this.selectStatement(); } break; case PostgreSqlParser.EXECUTE: { - this.state = 10494; + this.state = 10289; this.match(PostgreSqlParser.EXECUTE); - this.state = 10495; - this.sql_expression(); - this.state = 10496; - this.opt_open_using(); + this.state = 10290; + this.sqlExpression(); + this.state = 10291; + this.match(PostgreSqlParser.USING); + this.state = 10292; + this.expressionList(); } break; default: @@ -75681,18 +70368,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { break; case 2: { - this.state = 10500; - this.colid(); - this.state = 10505; + this.state = 10296; + this.columnId(); + this.state = 10308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 10501; + this.state = 10297; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 10502; - this.opt_open_bound_list(); - this.state = 10503; + this.state = 10298; + this.optionalOpenBoundListItem(); + this.state = 10303; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 10299; + this.match(PostgreSqlParser.COMMA); + this.state = 10300; + this.optionalOpenBoundListItem(); + } + } + this.state = 10305; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 10306; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -75700,7 +70403,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } break; } - this.state = 10509; + this.state = 10312; this.match(PostgreSqlParser.SEMI); } } @@ -75718,191 +70421,31 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_open_bound_list_item(): Opt_open_bound_list_itemContext { - let localContext = new Opt_open_bound_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1552, PostgreSqlParser.RULE_opt_open_bound_list_item); + public optionalOpenBoundListItem(): OptionalOpenBoundListItemContext { + let localContext = new OptionalOpenBoundListItemContext(this.context, this.state); + this.enterRule(localContext, 1434, PostgreSqlParser.RULE_optionalOpenBoundListItem); try { - this.state = 10516; + this.state = 10319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10511; - this.colid(); - this.state = 10512; + this.state = 10314; + this.columnId(); + this.state = 10315; this.match(PostgreSqlParser.COLON_EQUALS); - this.state = 10513; - this.a_expr(); + this.state = 10316; + this.expression1(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10515; - this.a_expr(); - } - 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 opt_open_bound_list(): Opt_open_bound_listContext { - let localContext = new Opt_open_bound_listContext(this.context, this.state); - this.enterRule(localContext, 1554, PostgreSqlParser.RULE_opt_open_bound_list); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 10518; - this.opt_open_bound_list_item(); - this.state = 10523; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 10519; - this.match(PostgreSqlParser.COMMA); - this.state = 10520; - this.opt_open_bound_list_item(); - } - } - this.state = 10525; - 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 opt_open_using(): Opt_open_usingContext { - let localContext = new Opt_open_usingContext(this.context, this.state); - this.enterRule(localContext, 1556, PostgreSqlParser.RULE_opt_open_using); - try { - this.state = 10529; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.SEMI: - this.enterOuterAlt(localContext, 1); - // tslint:disable-next-line:no-empty - { - } - break; - case PostgreSqlParser.USING: - this.enterOuterAlt(localContext, 2); - { - this.state = 10527; - this.match(PostgreSqlParser.USING); - this.state = 10528; - this.expr_list(); - } - 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 opt_scroll_option(): Opt_scroll_optionContext { - let localContext = new Opt_scroll_optionContext(this.context, this.state); - this.enterRule(localContext, 1558, PostgreSqlParser.RULE_opt_scroll_option); - try { - this.state = 10535; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.FOR: - this.enterOuterAlt(localContext, 1); - // tslint:disable-next-line:no-empty - { - } - break; - case PostgreSqlParser.NO: - case PostgreSqlParser.SCROLL: - this.enterOuterAlt(localContext, 2); - { - this.state = 10532; - this.opt_scroll_option_no(); - this.state = 10533; - this.match(PostgreSqlParser.SCROLL); - } - 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 opt_scroll_option_no(): Opt_scroll_option_noContext { - let localContext = new Opt_scroll_option_noContext(this.context, this.state); - this.enterRule(localContext, 1560, PostgreSqlParser.RULE_opt_scroll_option_no); - try { - this.state = 10539; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.SCROLL: - this.enterOuterAlt(localContext, 1); - // tslint:disable-next-line:no-empty - { - } - break; - case PostgreSqlParser.NO: - this.enterOuterAlt(localContext, 2); - { - this.state = 10538; - this.match(PostgreSqlParser.NO); + this.state = 10318; + this.expression1(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -75919,25 +70462,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_fetch(): Stmt_fetchContext { - let localContext = new Stmt_fetchContext(this.context, this.state); - this.enterRule(localContext, 1562, PostgreSqlParser.RULE_stmt_fetch); + public statementFetch(): StatementFetchContext { + let localContext = new StatementFetchContext(this.context, this.state); + this.enterRule(localContext, 1436, PostgreSqlParser.RULE_statementFetch); try { this.enterOuterAlt(localContext, 1); { - this.state = 10541; + this.state = 10321; this.match(PostgreSqlParser.FETCH); - this.state = 10542; - localContext._direction = this.opt_fetch_direction(); - this.state = 10543; - this.opt_cursor_from(); - this.state = 10544; - this.cursor_variable(); - this.state = 10545; + this.state = 10322; + localContext._direction = this.optionalFetchDirection(); + this.state = 10323; + this.optionalCursorFrom(); + this.state = 10324; + this.cursorVariable(); + this.state = 10325; this.match(PostgreSqlParser.INTO); - this.state = 10546; - this.into_target(); - this.state = 10547; + this.state = 10326; + this.intoTarget(); + this.state = 10327; this.match(PostgreSqlParser.SEMI); } } @@ -75955,14 +70498,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public into_target(): Into_targetContext { - let localContext = new Into_targetContext(this.context, this.state); - this.enterRule(localContext, 1564, PostgreSqlParser.RULE_into_target); + public intoTarget(): IntoTargetContext { + let localContext = new IntoTargetContext(this.context, this.state); + this.enterRule(localContext, 1438, PostgreSqlParser.RULE_intoTarget); try { this.enterOuterAlt(localContext, 1); { - this.state = 10549; - this.expr_list(); + this.state = 10329; + this.expressionList(); } } catch (re) { @@ -75979,11 +70522,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_cursor_from(): Opt_cursor_fromContext { - let localContext = new Opt_cursor_fromContext(this.context, this.state); - this.enterRule(localContext, 1566, PostgreSqlParser.RULE_opt_cursor_from); + public optionalCursorFrom(): OptionalCursorFromContext { + let localContext = new OptionalCursorFromContext(this.context, this.state); + this.enterRule(localContext, 1440, PostgreSqlParser.RULE_optionalCursorFrom); try { - this.state = 10554; + this.state = 10334; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: @@ -76514,14 +71057,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.FROM: this.enterOuterAlt(localContext, 2); { - this.state = 10552; + this.state = 10332; this.match(PostgreSqlParser.FROM); } break; case PostgreSqlParser.IN_P: this.enterOuterAlt(localContext, 3); { - this.state = 10553; + this.state = 10333; this.match(PostgreSqlParser.IN_P); } break; @@ -76543,14 +71086,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_fetch_direction(): Opt_fetch_directionContext { - let localContext = new Opt_fetch_directionContext(this.context, this.state); - this.enterRule(localContext, 1568, PostgreSqlParser.RULE_opt_fetch_direction); + public optionalFetchDirection(): OptionalFetchDirectionContext { + let localContext = new OptionalFetchDirectionContext(this.context, this.state); + this.enterRule(localContext, 1442, PostgreSqlParser.RULE_optionalFetchDirection); let _la: number; try { - this.state = 10573; + this.state = 10353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -76566,67 +71109,67 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10558; + this.state = 10338; this.match(PostgreSqlParser.NEXT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10559; + this.state = 10339; this.match(PostgreSqlParser.PRIOR); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10560; + this.state = 10340; this.match(PostgreSqlParser.FIRST_P); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10561; + this.state = 10341; this.match(PostgreSqlParser.LAST_P); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10562; + this.state = 10342; this.match(PostgreSqlParser.ABSOLUTE_P); - this.state = 10563; - this.a_expr(); + this.state = 10343; + this.expression1(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10564; + this.state = 10344; this.match(PostgreSqlParser.RELATIVE_P); - this.state = 10565; - this.a_expr(); + this.state = 10345; + this.expression1(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10566; - this.a_expr(); + this.state = 10346; + this.expression1(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10567; + this.state = 10347; this.match(PostgreSqlParser.ALL); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10568; + this.state = 10348; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -76635,18 +71178,18 @@ export class PostgreSqlParser extends PostgreSqlParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 10571; + this.state = 10351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 731, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 10569; - this.a_expr(); + this.state = 10349; + this.expression1(); } break; case 2: { - this.state = 10570; + this.state = 10350; this.match(PostgreSqlParser.ALL); } break; @@ -76669,19 +71212,19 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_move(): Stmt_moveContext { - let localContext = new Stmt_moveContext(this.context, this.state); - this.enterRule(localContext, 1570, PostgreSqlParser.RULE_stmt_move); + public statementMove(): StatementMoveContext { + let localContext = new StatementMoveContext(this.context, this.state); + this.enterRule(localContext, 1444, PostgreSqlParser.RULE_statementMove); try { this.enterOuterAlt(localContext, 1); { - this.state = 10575; + this.state = 10355; this.match(PostgreSqlParser.MOVE); - this.state = 10576; - this.opt_fetch_direction(); - this.state = 10577; - this.cursor_variable(); - this.state = 10578; + this.state = 10356; + this.optionalFetchDirection(); + this.state = 10357; + this.cursorVariable(); + this.state = 10358; this.match(PostgreSqlParser.SEMI); } } @@ -76699,17 +71242,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_close(): Stmt_closeContext { - let localContext = new Stmt_closeContext(this.context, this.state); - this.enterRule(localContext, 1572, PostgreSqlParser.RULE_stmt_close); + public statementClose(): StatementCloseContext { + let localContext = new StatementCloseContext(this.context, this.state); + this.enterRule(localContext, 1446, PostgreSqlParser.RULE_statementClose); try { this.enterOuterAlt(localContext, 1); { - this.state = 10580; + this.state = 10360; this.match(PostgreSqlParser.CLOSE); - this.state = 10581; - this.cursor_variable(); - this.state = 10582; + this.state = 10361; + this.cursorVariable(); + this.state = 10362; this.match(PostgreSqlParser.SEMI); } } @@ -76727,15 +71270,15 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_null(): Stmt_nullContext { - let localContext = new Stmt_nullContext(this.context, this.state); - this.enterRule(localContext, 1574, PostgreSqlParser.RULE_stmt_null); + public statementNull(): StatementNullContext { + let localContext = new StatementNullContext(this.context, this.state); + this.enterRule(localContext, 1448, PostgreSqlParser.RULE_statementNull); try { this.enterOuterAlt(localContext, 1); { - this.state = 10584; + this.state = 10364; this.match(PostgreSqlParser.NULL_P); - this.state = 10585; + this.state = 10365; this.match(PostgreSqlParser.SEMI); } } @@ -76753,17 +71296,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_commit(): Stmt_commitContext { - let localContext = new Stmt_commitContext(this.context, this.state); - this.enterRule(localContext, 1576, PostgreSqlParser.RULE_stmt_commit); + public statementCommit(): StatementCommitContext { + let localContext = new StatementCommitContext(this.context, this.state); + this.enterRule(localContext, 1450, PostgreSqlParser.RULE_statementCommit); try { this.enterOuterAlt(localContext, 1); { - this.state = 10587; + this.state = 10367; this.match(PostgreSqlParser.COMMIT); - this.state = 10588; - this.plsql_opt_transaction_chain(); - this.state = 10589; + this.state = 10368; + this.plsqlOptionalTransactionChain(); + this.state = 10369; this.match(PostgreSqlParser.SEMI); } } @@ -76781,17 +71324,17 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_rollback(): Stmt_rollbackContext { - let localContext = new Stmt_rollbackContext(this.context, this.state); - this.enterRule(localContext, 1578, PostgreSqlParser.RULE_stmt_rollback); + public statementRollback(): StatementRollbackContext { + let localContext = new StatementRollbackContext(this.context, this.state); + this.enterRule(localContext, 1452, PostgreSqlParser.RULE_statementRollback); try { this.enterOuterAlt(localContext, 1); { - this.state = 10591; + this.state = 10371; this.match(PostgreSqlParser.ROLLBACK); - this.state = 10592; - this.plsql_opt_transaction_chain(); - this.state = 10593; + this.state = 10372; + this.plsqlOptionalTransactionChain(); + this.state = 10373; this.match(PostgreSqlParser.SEMI); } } @@ -76809,30 +71352,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public plsql_opt_transaction_chain(): Plsql_opt_transaction_chainContext { - let localContext = new Plsql_opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 1580, PostgreSqlParser.RULE_plsql_opt_transaction_chain); + public plsqlOptionalTransactionChain(): PlsqlOptionalTransactionChainContext { + let localContext = new PlsqlOptionalTransactionChainContext(this.context, this.state); + this.enterRule(localContext, 1454, PostgreSqlParser.RULE_plsqlOptionalTransactionChain); let _la: number; try { - this.state = 10601; + this.state = 10381; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: this.enterOuterAlt(localContext, 1); { - this.state = 10595; + this.state = 10375; this.match(PostgreSqlParser.AND); - this.state = 10597; + this.state = 10377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 10596; + this.state = 10376; this.match(PostgreSqlParser.NO); } } - this.state = 10599; + this.state = 10379; this.match(PostgreSqlParser.CHAIN); } break; @@ -76860,34 +71403,34 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public stmt_set(): Stmt_setContext { - let localContext = new Stmt_setContext(this.context, this.state); - this.enterRule(localContext, 1582, PostgreSqlParser.RULE_stmt_set); + public statementSet(): StatementSetContext { + let localContext = new StatementSetContext(this.context, this.state); + this.enterRule(localContext, 1456, PostgreSqlParser.RULE_statementSet); try { - this.state = 10615; + this.state = 10395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.SET: this.enterOuterAlt(localContext, 1); { - this.state = 10603; + this.state = 10383; this.match(PostgreSqlParser.SET); - this.state = 10604; - this.any_name(); - this.state = 10605; + this.state = 10384; + this.anyName(); + this.state = 10385; this.match(PostgreSqlParser.TO); - this.state = 10606; + this.state = 10386; this.match(PostgreSqlParser.DEFAULT); - this.state = 10607; + this.state = 10387; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.RESET: this.enterOuterAlt(localContext, 2); { - this.state = 10609; + this.state = 10389; this.match(PostgreSqlParser.RESET); - this.state = 10612; + this.state = 10392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -77410,20 +71953,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLVARIABLENAME: case PostgreSqlParser.PLSQLIDENTIFIER: { - this.state = 10610; - this.any_name(); + this.state = 10390; + this.anyName(); } break; case PostgreSqlParser.ALL: { - this.state = 10611; + this.state = 10391; this.match(PostgreSqlParser.ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 10614; + this.state = 10394; this.match(PostgreSqlParser.SEMI); } break; @@ -77445,11 +71988,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public cursor_variable(): Cursor_variableContext { - let localContext = new Cursor_variableContext(this.context, this.state); - this.enterRule(localContext, 1584, PostgreSqlParser.RULE_cursor_variable); + public cursorVariable(): CursorVariableContext { + let localContext = new CursorVariableContext(this.context, this.state); + this.enterRule(localContext, 1458, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 10619; + this.state = 10399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.AND: @@ -77973,14 +72516,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 10617; - this.colid(); + this.state = 10397; + this.columnId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 10618; + this.state = 10398; this.match(PostgreSqlParser.PARAM); } break; @@ -78002,11 +72545,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public exception_sect(): Exception_sectContext { - let localContext = new Exception_sectContext(this.context, this.state); - this.enterRule(localContext, 1586, PostgreSqlParser.RULE_exception_sect); + public exceptionSection(): ExceptionSectionContext { + let localContext = new ExceptionSectionContext(this.context, this.state); + this.enterRule(localContext, 1460, PostgreSqlParser.RULE_exceptionSection); try { - this.state = 10624; + this.state = 10404; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.END_P: @@ -78018,10 +72561,10 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.EXCEPTION: this.enterOuterAlt(localContext, 2); { - this.state = 10622; + this.state = 10402; this.match(PostgreSqlParser.EXCEPTION); - this.state = 10623; - this.proc_exceptions(); + this.state = 10403; + this.procedureExceptions(); } break; default: @@ -78042,24 +72585,24 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_exceptions(): Proc_exceptionsContext { - let localContext = new Proc_exceptionsContext(this.context, this.state); - this.enterRule(localContext, 1588, PostgreSqlParser.RULE_proc_exceptions); + public procedureExceptions(): ProcedureExceptionsContext { + let localContext = new ProcedureExceptionsContext(this.context, this.state); + this.enterRule(localContext, 1462, PostgreSqlParser.RULE_procedureExceptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10627; + this.state = 10407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 10626; - this.proc_exception(); + this.state = 10406; + this.procedureException(); } } - this.state = 10629; + this.state = 10409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -78079,20 +72622,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_exception(): Proc_exceptionContext { - let localContext = new Proc_exceptionContext(this.context, this.state); - this.enterRule(localContext, 1590, PostgreSqlParser.RULE_proc_exception); + public procedureException(): ProcedureExceptionContext { + let localContext = new ProcedureExceptionContext(this.context, this.state); + this.enterRule(localContext, 1464, PostgreSqlParser.RULE_procedureException); try { this.enterOuterAlt(localContext, 1); { - this.state = 10631; + this.state = 10411; this.match(PostgreSqlParser.WHEN); - this.state = 10632; - this.proc_conditions(); - this.state = 10633; + this.state = 10412; + this.procedureConditions(); + this.state = 10413; this.match(PostgreSqlParser.THEN); - this.state = 10634; - this.proc_sect(); + this.state = 10414; + this.procedureSection(); } } catch (re) { @@ -78109,28 +72652,28 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_conditions(): Proc_conditionsContext { - let localContext = new Proc_conditionsContext(this.context, this.state); - this.enterRule(localContext, 1592, PostgreSqlParser.RULE_proc_conditions); + public procedureConditions(): ProcedureConditionsContext { + let localContext = new ProcedureConditionsContext(this.context, this.state); + this.enterRule(localContext, 1466, PostgreSqlParser.RULE_procedureConditions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10636; - this.proc_condition(); - this.state = 10641; + this.state = 10416; + this.procedureCondition(); + this.state = 10421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 10637; + this.state = 10417; this.match(PostgreSqlParser.OR); - this.state = 10638; - this.proc_condition(); + this.state = 10418; + this.procedureCondition(); } } - this.state = 10643; + this.state = 10423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -78150,26 +72693,26 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public proc_condition(): Proc_conditionContext { - let localContext = new Proc_conditionContext(this.context, this.state); - this.enterRule(localContext, 1594, PostgreSqlParser.RULE_proc_condition); + public procedureCondition(): ProcedureConditionContext { + let localContext = new ProcedureConditionContext(this.context, this.state); + this.enterRule(localContext, 1468, PostgreSqlParser.RULE_procedureCondition); try { - this.state = 10647; + this.state = 10427; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 753, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10644; - this.any_identifier(); + this.state = 10424; + this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10645; + this.state = 10425; this.match(PostgreSqlParser.SQLSTATE); - this.state = 10646; + this.state = 10426; this.sconst(); } break; @@ -78189,11 +72732,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_block_label(): Opt_block_labelContext { - let localContext = new Opt_block_labelContext(this.context, this.state); - this.enterRule(localContext, 1596, PostgreSqlParser.RULE_opt_block_label); + public optionalBlockLabel(): OptionalBlockLabelContext { + let localContext = new OptionalBlockLabelContext(this.context, this.state); + this.enterRule(localContext, 1470, PostgreSqlParser.RULE_optionalBlockLabel); try { - this.state = 10651; + this.state = 10431; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.BEGIN_P: @@ -78206,8 +72749,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 10650; - this.label_decl(); + this.state = 10430; + this.labelDeclaration(); } break; default: @@ -78228,11 +72771,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_loop_label(): Opt_loop_labelContext { - let localContext = new Opt_loop_labelContext(this.context, this.state); - this.enterRule(localContext, 1598, PostgreSqlParser.RULE_opt_loop_label); + public optionalLoopLabel(): OptionalLoopLabelContext { + let localContext = new OptionalLoopLabelContext(this.context, this.state); + this.enterRule(localContext, 1472, PostgreSqlParser.RULE_optionalLoopLabel); try { - this.state = 10655; + this.state = 10435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.FOR: @@ -78247,8 +72790,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 10654; - this.label_decl(); + this.state = 10434; + this.labelDeclaration(); } break; default: @@ -78269,11 +72812,11 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_label(): Opt_labelContext { - let localContext = new Opt_labelContext(this.context, this.state); - this.enterRule(localContext, 1600, PostgreSqlParser.RULE_opt_label); + public optionalLabel(): OptionalLabelContext { + let localContext = new OptionalLabelContext(this.context, this.state); + this.enterRule(localContext, 1474, PostgreSqlParser.RULE_optionalLabel); try { - this.state = 10659; + this.state = 10439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EOF: @@ -78805,8 +73348,8 @@ export class PostgreSqlParser extends PostgreSqlParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 10658; - this.any_identifier(); + this.state = 10438; + this.anyIdentifier(); } break; default: @@ -78827,20 +73370,20 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_exitcond(): Opt_exitcondContext { - let localContext = new Opt_exitcondContext(this.context, this.state); - this.enterRule(localContext, 1602, PostgreSqlParser.RULE_opt_exitcond); + public optionalExitCondition(): OptionalExitConditionContext { + let localContext = new OptionalExitConditionContext(this.context, this.state); + this.enterRule(localContext, 1476, PostgreSqlParser.RULE_optionalExitCondition); try { - this.state = 10664; + this.state = 10444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.WHEN: this.enterOuterAlt(localContext, 1); { - this.state = 10661; + this.state = 10441; this.match(PostgreSqlParser.WHEN); - this.state = 10662; - this.expr_until_semi(); + this.state = 10442; + this.expressionUntilSemi(); } break; case PostgreSqlParser.SEMI: @@ -78867,25 +73410,25 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public any_identifier(): Any_identifierContext { - let localContext = new Any_identifierContext(this.context, this.state); - this.enterRule(localContext, 1604, PostgreSqlParser.RULE_any_identifier); + public anyIdentifier(): AnyIdentifierContext { + let localContext = new AnyIdentifierContext(this.context, this.state); + this.enterRule(localContext, 1478, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 10668; + this.state = 10448; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10666; - this.colid(); + this.state = 10446; + this.columnId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10667; - this.plsql_unreserved_keyword(); + this.state = 10447; + this.plsqlUnreservedKeyword(); } break; } @@ -78904,14 +73447,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext { - let localContext = new Plsql_unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1606, PostgreSqlParser.RULE_plsql_unreserved_keyword); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext { + let localContext = new PlsqlUnreservedKeywordContext(this.context, this.state); + this.enterRule(localContext, 1480, PostgreSqlParser.RULE_plsqlUnreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10670; + this.state = 10450; _la = this.tokenStream.LA(1); if(!(((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || _la === 167 || _la === 172 || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 33554441) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 6553601) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 268451841) !== 0) || ((((_la - 306)) & ~0x1F) === 0 && ((1 << (_la - 306)) & 1051713) !== 0) || _la === 353 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3825197057) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3055) !== 0))) { this.errorHandler.recoverInline(this); @@ -78936,35 +73479,35 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public sql_expression(): Sql_expressionContext { - let localContext = new Sql_expressionContext(this.context, this.state); - this.enterRule(localContext, 1608, PostgreSqlParser.RULE_sql_expression); + public sqlExpression(): SqlExpressionContext { + let localContext = new SqlExpressionContext(this.context, this.state); + this.enterRule(localContext, 1482, PostgreSqlParser.RULE_sqlExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10672; - this.opt_target_list(); - this.state = 10674; + this.state = 10452; + this.optionalTargetList(); + this.state = 10454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 10673; - this.into_clause(); + this.state = 10453; + this.intoClause(); } } - this.state = 10676; - this.from_clause(); - this.state = 10677; - this.where_clause(); - this.state = 10678; - this.group_clause(); - this.state = 10679; - this.having_clause(); - this.state = 10680; - this.window_clause(); + this.state = 10456; + this.fromClause(); + this.state = 10457; + this.whereClause(); + this.state = 10458; + this.groupClause(); + this.state = 10459; + this.havingClause(); + this.state = 10460; + this.windowClause(); } } catch (re) { @@ -78981,14 +73524,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public expr_until_then(): Expr_until_thenContext { - let localContext = new Expr_until_thenContext(this.context, this.state); - this.enterRule(localContext, 1610, PostgreSqlParser.RULE_expr_until_then); + public expressionUntilThen(): ExpressionUntilThenContext { + let localContext = new ExpressionUntilThenContext(this.context, this.state); + this.enterRule(localContext, 1484, PostgreSqlParser.RULE_expressionUntilThen); try { this.enterOuterAlt(localContext, 1); { - this.state = 10682; - this.sql_expression(); + this.state = 10462; + this.sqlExpression(); } } catch (re) { @@ -79005,14 +73548,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public expr_until_semi(): Expr_until_semiContext { - let localContext = new Expr_until_semiContext(this.context, this.state); - this.enterRule(localContext, 1612, PostgreSqlParser.RULE_expr_until_semi); + public expressionUntilSemi(): ExpressionUntilSemiContext { + let localContext = new ExpressionUntilSemiContext(this.context, this.state); + this.enterRule(localContext, 1486, PostgreSqlParser.RULE_expressionUntilSemi); try { this.enterOuterAlt(localContext, 1); { - this.state = 10684; - this.sql_expression(); + this.state = 10464; + this.sqlExpression(); } } catch (re) { @@ -79029,14 +73572,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public expr_until_rightbracket(): Expr_until_rightbracketContext { - let localContext = new Expr_until_rightbracketContext(this.context, this.state); - this.enterRule(localContext, 1614, PostgreSqlParser.RULE_expr_until_rightbracket); + public expressionUntilRightbracket(): ExpressionUntilRightbracketContext { + let localContext = new ExpressionUntilRightbracketContext(this.context, this.state); + this.enterRule(localContext, 1488, PostgreSqlParser.RULE_expressionUntilRightbracket); try { this.enterOuterAlt(localContext, 1); { - this.state = 10686; - this.a_expr(); + this.state = 10466; + this.expression1(); } } catch (re) { @@ -79053,14 +73596,14 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public expr_until_loop(): Expr_until_loopContext { - let localContext = new Expr_until_loopContext(this.context, this.state); - this.enterRule(localContext, 1616, PostgreSqlParser.RULE_expr_until_loop); + public expressionUntilLoop(): ExpressionUntilLoopContext { + let localContext = new ExpressionUntilLoopContext(this.context, this.state); + this.enterRule(localContext, 1490, PostgreSqlParser.RULE_expressionUntilLoop); try { this.enterOuterAlt(localContext, 1); { - this.state = 10688; - this.a_expr(); + this.state = 10468; + this.expression1(); } } catch (re) { @@ -79077,16 +73620,16 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public make_execsql_stmt(): Make_execsql_stmtContext { - let localContext = new Make_execsql_stmtContext(this.context, this.state); - this.enterRule(localContext, 1618, PostgreSqlParser.RULE_make_execsql_stmt); + public makeExecuteSqlStatement(): MakeExecuteSqlStatementContext { + let localContext = new MakeExecuteSqlStatementContext(this.context, this.state); + this.enterRule(localContext, 1492, PostgreSqlParser.RULE_makeExecuteSqlStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 10690; - this.stmt(); - this.state = 10691; - this.opt_returning_clause_into(); + this.state = 10470; + this.statement(); + this.state = 10471; + this.optionalReturningClauseInto(); } } catch (re) { @@ -79103,22 +73646,30 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } return localContext; } - public opt_returning_clause_into(): Opt_returning_clause_intoContext { - let localContext = new Opt_returning_clause_intoContext(this.context, this.state); - this.enterRule(localContext, 1620, PostgreSqlParser.RULE_opt_returning_clause_into); + public optionalReturningClauseInto(): OptionalReturningClauseIntoContext { + let localContext = new OptionalReturningClauseIntoContext(this.context, this.state); + this.enterRule(localContext, 1494, PostgreSqlParser.RULE_optionalReturningClauseInto); try { - this.state = 10698; + this.state = 10479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.INTO: this.enterOuterAlt(localContext, 1); { - this.state = 10693; + this.state = 10473; this.match(PostgreSqlParser.INTO); - this.state = 10694; - this.opt_strict(); - this.state = 10695; - this.into_target(); + this.state = 10475; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { + case 1: + { + this.state = 10474; + this.match(PostgreSqlParser.STRICT_P); + } + break; + } + this.state = 10477; + this.intoTarget(); } break; case PostgreSqlParser.SEMI: @@ -79148,12 +73699,12 @@ export class PostgreSqlParser extends PostgreSqlParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 601: - return this.b_expr_sempred(localContext as B_exprContext, predIndex); + case 544: + return this.expression2_sempred(localContext as Expression2Context, predIndex); } return true; } - private b_expr_sempred(localContext: B_exprContext | null, predIndex: number): boolean { + private expression2_sempred(localContext: Expression2Context | null, predIndex: number): boolean { switch (predIndex) { case 0: return this.precpred(this.context, 8); @@ -79176,7 +73727,7 @@ export class PostgreSqlParser extends PostgreSqlParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,679,10701,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, + 4,1,679,10482,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, @@ -79309,4495 +73860,4418 @@ export class PostgreSqlParser extends PostgreSqlParserBase { 7,730,2,731,7,731,2,732,7,732,2,733,7,733,2,734,7,734,2,735,7,735, 2,736,7,736,2,737,7,737,2,738,7,738,2,739,7,739,2,740,7,740,2,741, 7,741,2,742,7,742,2,743,7,743,2,744,7,744,2,745,7,745,2,746,7,746, - 2,747,7,747,2,748,7,748,2,749,7,749,2,750,7,750,2,751,7,751,2,752, - 7,752,2,753,7,753,2,754,7,754,2,755,7,755,2,756,7,756,2,757,7,757, - 2,758,7,758,2,759,7,759,2,760,7,760,2,761,7,761,2,762,7,762,2,763, - 7,763,2,764,7,764,2,765,7,765,2,766,7,766,2,767,7,767,2,768,7,768, - 2,769,7,769,2,770,7,770,2,771,7,771,2,772,7,772,2,773,7,773,2,774, - 7,774,2,775,7,775,2,776,7,776,2,777,7,777,2,778,7,778,2,779,7,779, - 2,780,7,780,2,781,7,781,2,782,7,782,2,783,7,783,2,784,7,784,2,785, - 7,785,2,786,7,786,2,787,7,787,2,788,7,788,2,789,7,789,2,790,7,790, - 2,791,7,791,2,792,7,792,2,793,7,793,2,794,7,794,2,795,7,795,2,796, - 7,796,2,797,7,797,2,798,7,798,2,799,7,799,2,800,7,800,2,801,7,801, - 2,802,7,802,2,803,7,803,2,804,7,804,2,805,7,805,2,806,7,806,2,807, - 7,807,2,808,7,808,2,809,7,809,2,810,7,810,1,0,3,0,1624,8,0,1,0,1, - 0,1,1,1,1,1,2,1,2,3,2,1632,8,2,1,2,1,2,1,2,1,2,3,2,1638,8,2,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,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,1,3,1,3,1,3,3,3,1765,8,3,1,4, - 1,4,3,4,1769,8,4,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,3,7, - 1782,8,7,1,8,5,8,1785,8,8,10,8,12,8,1788,9,8,1,9,5,9,1791,8,9,10, - 9,12,9,1794,9,9,1,10,1,10,1,10,3,10,1799,8,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1814,8,10,1,11, - 1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1826,8,11,1,12, - 1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14, - 1,14,1,14,3,14,1844,8,14,1,15,1,15,1,15,3,15,1849,8,15,1,15,1,15, - 1,15,1,15,1,16,1,16,1,16,1,16,3,16,1859,8,16,1,16,1,16,1,17,1,17, - 1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19, - 1,20,1,20,1,20,1,20,1,20,3,20,1883,8,20,1,20,1,20,1,20,1,20,1,20, - 3,20,1890,8,20,1,20,1,20,1,21,1,21,3,21,1896,8,21,1,22,5,22,1899, - 8,22,10,22,12,22,1902,9,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1910, - 8,23,1,24,1,24,3,24,1914,8,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,1,25,3,25,1926,8,25,1,26,1,26,1,26,1,26,1,27,1,27,1,27, + 2,747,7,747,1,0,3,0,1498,8,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,1506,8, + 2,1,2,1,2,1,2,1,2,3,2,1512,8,2,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,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,1,3,1,3,1,3,3,3,1639,8,3,1,4,1,4,3,4,1643,8,4,1,5,1,5,1,5, + 1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,3,7,1656,8,7,1,8,5,8,1659,8,8,10, + 8,12,8,1662,9,8,1,9,5,9,1665,8,9,10,9,12,9,1668,9,9,1,10,1,10,1, + 10,3,10,1673,8,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1, + 10,1,10,1,10,1,10,3,10,1688,8,10,1,11,1,11,1,11,1,11,1,11,1,11,1, + 11,1,11,1,11,1,11,3,11,1700,8,11,1,12,1,12,1,12,1,12,1,12,1,12,1, + 13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14,3,14,1718,8,14,1, + 15,1,15,1,15,3,15,1723,8,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1, + 16,3,16,1733,8,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3, + 20,1757,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1764,8,20,1,20,1,20,1, + 21,1,21,3,21,1770,8,21,1,22,5,22,1773,8,22,10,22,12,22,1776,9,22, + 1,23,1,23,1,23,1,23,1,23,1,23,3,23,1784,8,23,1,24,1,24,3,24,1788, + 8,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,3,25,1800, + 8,25,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27, 1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27, - 1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,1957,8,27,1,28, - 1,28,1,28,5,28,1962,8,28,10,28,12,28,1965,9,28,1,29,1,29,1,29,5, - 29,1970,8,29,10,29,12,29,1973,9,29,1,30,1,30,3,30,1977,8,30,1,31, - 1,31,1,31,1,31,1,31,3,31,1984,8,31,1,32,1,32,1,32,1,32,3,32,1990, - 8,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,3,33,2007,8,33,1,34,1,34,1,34,3,34,2012,8,34,1,35, - 1,35,3,35,2016,8,35,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,3,37,2029,8,37,1,38,1,38,3,38,2033,8,38,1,39,1,39,1,39, - 3,39,2038,8,39,1,40,1,40,1,40,3,40,2043,8,40,1,41,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,1,41,1,41,3,41,2055,8,41,1,42,1,42,1,42,1,42, - 1,42,1,43,1,43,3,43,2064,8,43,1,44,1,44,1,45,1,45,1,46,1,46,1,46, - 1,47,1,47,1,47,1,47,3,47,2077,8,47,1,47,1,47,1,47,3,47,2082,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2093,8,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2104,8,47,1,47,1,47, - 1,47,3,47,2109,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 3,47,2120,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47, - 2131,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2140,8,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2150,8,47,1,47,1,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2165,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2177,8,47, - 1,47,1,47,1,47,3,47,2182,8,47,1,48,1,48,1,48,5,48,2187,8,48,10,48, - 12,48,2190,9,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,2200, - 8,49,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,3,51,2458,8,51, - 1,52,1,52,1,52,1,52,1,52,3,52,2465,8,52,1,53,1,53,1,53,3,53,2470, - 8,53,1,54,1,54,1,54,3,54,2475,8,54,1,55,1,55,1,55,3,55,2480,8,55, - 1,56,1,56,1,56,1,56,1,56,1,56,3,56,2488,8,56,1,57,1,57,1,57,1,57, - 1,58,1,58,1,58,3,58,2497,8,58,1,59,1,59,1,59,5,59,2502,8,59,10,59, - 12,59,2505,9,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2514,8,60, - 3,60,2516,8,60,1,61,4,61,2519,8,61,11,61,12,61,2520,1,62,1,62,1, - 62,1,62,3,62,2527,8,62,1,62,1,62,1,62,1,62,3,62,2533,8,62,3,62,2535, - 8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, + 1,27,1,27,1,27,1,27,3,27,1831,8,27,1,28,1,28,1,28,5,28,1836,8,28, + 10,28,12,28,1839,9,28,1,29,1,29,1,29,5,29,1844,8,29,10,29,12,29, + 1847,9,29,1,30,1,30,3,30,1851,8,30,1,31,1,31,1,31,1,31,1,31,3,31, + 1858,8,31,1,32,1,32,1,32,1,32,3,32,1864,8,32,1,33,1,33,1,33,1,33, + 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1881, + 8,33,1,34,1,34,1,34,3,34,1886,8,34,1,35,1,35,3,35,1890,8,35,1,36, + 1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,1903,8,37, + 1,38,1,38,3,38,1907,8,38,1,39,1,39,1,39,3,39,1912,8,39,1,40,1,40, + 1,40,3,40,1917,8,40,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, + 1,41,3,41,1929,8,41,1,42,1,42,1,42,1,42,1,42,1,43,1,43,3,43,1938, + 8,43,1,44,1,44,1,45,1,45,1,46,1,46,1,46,1,47,1,47,1,47,1,47,3,47, + 1951,8,47,1,47,1,47,1,47,3,47,1956,8,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,3,47,1967,8,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,3,47,1978,8,47,1,47,1,47,1,47,3,47,1983,8,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1994,8,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,2005,8,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,3,47,2014,8,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,3,47,2024,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,3,47,2039,8,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,3,47,2051,8,47,1,47,1,47,1,47,3,47,2056, + 8,47,1,48,1,48,1,48,5,48,2061,8,48,10,48,12,48,2064,9,48,1,49,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,2074,8,49,1,50,1,50,1,50,1, + 50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,3,51,2332,8,51,1,52,1,52,1,52,1,52,1, + 52,3,52,2339,8,52,1,53,1,53,1,53,3,53,2344,8,53,1,54,1,54,1,54,3, + 54,2349,8,54,1,55,1,55,1,55,3,55,2354,8,55,1,56,1,56,1,56,1,56,1, + 56,1,56,3,56,2362,8,56,1,57,1,57,1,57,1,57,1,58,1,58,1,58,3,58,2371, + 8,58,1,59,1,59,1,59,5,59,2376,8,59,10,59,12,59,2379,9,59,1,60,1, + 60,1,60,1,60,1,60,1,60,1,60,3,60,2388,8,60,3,60,2390,8,60,1,61,4, + 61,2393,8,61,11,61,12,61,2394,1,62,1,62,1,62,1,62,3,62,2401,8,62, + 1,62,1,62,1,62,1,62,3,62,2407,8,62,3,62,2409,8,62,1,63,1,63,1,63, 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,3,63,2563,8,63,1,64,1,64,1,64,1,65,1,65,1,65,5,65,2571,8,65, - 10,65,12,65,2574,9,65,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,5, - 67,2584,8,67,10,67,12,67,2587,9,67,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,3,68,2598,8,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,1,68,1,68,3,68,2612,8,68,1,69,1,69,1,69,3,69,2617, - 8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2641,8,70, - 1,71,1,71,1,72,1,72,3,72,2647,8,72,1,73,1,73,1,73,3,73,2652,8,73, - 1,74,1,74,1,74,1,74,1,74,3,74,2659,8,74,1,75,5,75,2662,8,75,10,75, - 12,75,2665,9,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,3,76, - 2702,8,76,1,77,1,77,3,77,2706,8,77,1,78,1,78,1,78,1,78,1,78,3,78, - 2713,8,78,1,79,1,79,3,79,2717,8,79,1,80,1,80,1,80,5,80,2722,8,80, - 10,80,12,80,2725,9,80,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1, - 82,1,82,1,82,3,82,2738,8,82,1,83,1,83,1,83,5,83,2743,8,83,10,83, - 12,83,2746,9,83,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,3,85,2756, - 8,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,1,85,1,85,3,85,2789,8,85,1,86,1,86,1,86,1,86, - 1,86,1,86,1,86,1,86,3,86,2799,8,86,1,87,1,87,3,87,2803,8,87,1,88, - 1,88,1,88,1,88,1,88,3,88,2810,8,88,1,89,1,89,1,89,5,89,2815,8,89, - 10,89,12,89,2818,9,89,1,90,1,90,1,90,5,90,2823,8,90,10,90,12,90, - 2826,9,90,1,91,1,91,1,91,3,91,2831,8,91,1,92,1,92,3,92,2835,8,92, - 1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,3,94,2845,8,94,1,94,1,94, - 1,95,5,95,2850,8,95,10,95,12,95,2853,9,95,1,96,1,96,1,96,1,96,1, - 96,1,96,1,96,1,96,3,96,2863,8,96,1,97,1,97,1,97,1,97,1,97,1,97,1, - 97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1, - 97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,2895,8, - 97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,2903,8,97,1,98,1,98,1,98,3, - 98,2908,8,98,1,99,1,99,1,99,1,99,1,99,3,99,2915,8,99,1,100,1,100, - 1,100,1,100,1,101,1,101,5,101,2923,8,101,10,101,12,101,2926,9,101, - 1,102,1,102,1,103,1,103,1,103,1,103,1,103,3,103,2935,8,103,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,2955,8,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 3,104,2970,8,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,3,104,2995,8,104,1,105,1,105,1,105,3,105, - 3000,8,105,1,106,1,106,1,106,1,106,1,106,3,106,3007,8,106,1,107, - 1,107,1,107,5,107,3012,8,107,10,107,12,107,3015,9,107,1,108,1,108, - 1,109,1,109,1,109,1,109,1,109,1,109,3,109,3025,8,109,1,110,1,110, - 1,110,3,110,3030,8,110,1,111,1,111,1,111,5,111,3035,8,111,10,111, - 12,111,3038,9,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 3,112,3048,8,112,1,113,1,113,1,113,1,113,1,113,1,113,3,113,3056, - 8,113,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,3,114, - 3067,8,114,1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,116,1,117, - 1,117,1,117,1,117,1,117,1,117,3,117,3083,8,117,1,118,1,118,1,118, - 1,118,1,118,1,118,3,118,3091,8,118,1,119,1,119,3,119,3095,8,119, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,5,121, - 3107,8,121,10,121,12,121,3110,9,121,1,122,1,122,1,122,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,3126, - 8,122,1,123,1,123,1,123,3,123,3131,8,123,1,124,1,124,1,124,1,124, - 1,124,3,124,3138,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 3,125,3147,8,125,1,125,3,125,3150,8,125,1,126,1,126,1,126,3,126, - 3155,8,126,1,127,1,127,1,127,1,127,1,127,3,127,3162,8,127,1,128, - 1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,3,129,3173,8,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130, - 3,130,3186,8,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131, - 1,131,1,131,1,131,3,131,3199,8,131,1,131,1,131,1,131,1,131,1,131, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133, - 3,133,3217,8,133,1,133,3,133,3220,8,133,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,3,134,3229,8,134,1,134,1,134,1,134,1,134,1,134, - 1,135,1,135,1,135,1,135,1,135,1,135,1,136,1,136,3,136,3244,8,136, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138, - 1,138,1,138,3,138,3259,8,138,1,138,1,138,1,138,1,139,1,139,1,139, - 1,139,3,139,3268,8,139,1,139,1,139,1,139,1,140,1,140,3,140,3275, - 8,140,1,141,1,141,1,141,1,141,1,141,3,141,3282,8,141,1,142,4,142, - 3285,8,142,11,142,12,142,3286,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 3,143,3317,8,143,3,143,3319,8,143,1,144,1,144,3,144,3323,8,144,1, - 145,1,145,1,145,1,145,1,145,1,145,3,145,3331,8,145,1,146,1,146,1, - 146,5,146,3336,8,146,10,146,12,146,3339,9,146,1,147,1,147,1,147, - 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147,3352,8,147, - 1,148,1,148,3,148,3356,8,148,1,149,1,149,3,149,3360,8,149,1,150, - 1,150,1,150,3,150,3365,8,150,1,151,1,151,1,151,1,151,3,151,3371, - 8,151,1,152,1,152,3,152,3375,8,152,1,153,1,153,3,153,3379,8,153, - 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155, - 3,155,3392,8,155,1,156,1,156,1,156,1,156,3,156,3398,8,156,1,156, - 1,156,1,157,1,157,1,157,1,157,1,157,3,157,3407,8,157,1,157,1,157, - 1,157,1,157,1,158,5,158,3414,8,158,10,158,12,158,3417,9,158,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,3,159,3426,8,159,1,160,1,160, - 1,160,1,160,1,160,1,160,1,161,5,161,3435,8,161,10,161,12,161,3438, - 9,161,1,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,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,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,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,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,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,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,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,3547, - 8,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165, - 1,165,1,165,1,165,1,165,1,165,1,165,3,165,3565,8,165,1,166,4,166, - 3568,8,166,11,166,12,166,3569,1,167,1,167,3,167,3574,8,167,1,168, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,3,168,3591,8,168,1,169,1,169,1,169,1,169,1,169, - 1,169,3,169,3599,8,169,1,170,1,170,1,170,5,170,3604,8,170,10,170, - 12,170,3607,9,170,1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172, - 5,172,3617,8,172,10,172,12,172,3620,9,172,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,3,173,3629,8,173,1,174,1,174,1,174,1,175,1,175, - 1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,3,177,3663,8,177,1,178,1,178,1,178, - 3,178,3668,8,178,1,179,1,179,1,179,3,179,3673,8,179,1,180,1,180, - 3,180,3677,8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3685, - 8,181,3,181,3687,8,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,3,182,3745,8,182,1,183,1,183,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,184,1,184, - 1,184,3,184,3762,8,184,1,185,1,185,1,185,1,185,1,185,1,185,3,185, - 3770,8,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,3,186,3793,8,186,1,187,1,187,3,187,3797,8,187,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,3,188,3817,8,188,1,189,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191, - 1,191,1,191,1,191,1,191,1,192,1,192,1,192,1,192,1,192,1,192,3,192, - 3854,8,192,1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3863, - 8,193,1,194,1,194,1,194,3,194,3868,8,194,1,195,1,195,1,195,3,195, - 3873,8,195,1,196,1,196,1,196,3,196,3878,8,196,1,197,1,197,1,197, - 3,197,3883,8,197,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,3,201, - 3936,8,201,1,202,1,202,1,202,1,202,3,202,3942,8,202,1,203,1,203, - 1,203,5,203,3947,8,203,10,203,12,203,3950,9,203,1,204,1,204,1,204, - 1,204,1,204,1,204,1,204,3,204,3959,8,204,1,205,1,205,1,205,3,205, - 3964,8,205,1,206,4,206,3967,8,206,11,206,12,206,3968,1,207,1,207, - 1,207,1,207,1,207,1,208,1,208,1,209,1,209,1,210,1,210,1,211,1,211, - 1,211,1,211,1,211,3,211,3987,8,211,1,212,1,212,3,212,3991,8,212, - 1,213,1,213,1,214,1,214,1,214,1,214,1,214,1,214,3,214,4001,8,214, - 1,215,1,215,1,216,1,216,3,216,4007,8,216,1,216,1,216,5,216,4011, - 8,216,10,216,12,216,4014,9,216,1,217,1,217,1,217,1,217,3,217,4020, - 8,217,1,218,1,218,1,218,3,218,4025,8,218,1,219,5,219,4028,8,219, - 10,219,12,219,4031,9,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,3,220,4044,8,220,1,221,1,221,1,221,1,221, - 1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, - 1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, - 3,221,4072,8,221,1,222,1,222,1,222,5,222,4077,8,222,10,222,12,222, - 4080,9,222,1,223,1,223,1,223,1,223,1,223,1,223,1,224,1,224,1,224, - 5,224,4091,8,224,10,224,12,224,4094,9,224,1,225,1,225,1,225,1,225, - 1,225,1,225,1,226,1,226,1,226,1,226,1,226,1,226,3,226,4108,8,226, - 1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,3,228,4225,8,228,1,229,1,229,1,229, - 1,229,1,230,1,230,1,230,5,230,4234,8,230,10,230,12,230,4237,9,230, - 1,231,1,231,1,231,3,231,4242,8,231,1,232,1,232,1,232,1,232,1,232, - 1,232,3,232,4250,8,232,1,233,1,233,1,233,1,233,1,234,1,234,1,234, - 5,234,4259,8,234,10,234,12,234,4262,9,234,1,235,1,235,1,235,1,235, - 1,236,1,236,3,236,4270,8,236,1,237,1,237,1,237,5,237,4275,8,237, - 10,237,12,237,4278,9,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238,4317,8,238, - 1,239,1,239,1,239,1,239,3,239,4323,8,239,1,240,1,240,1,240,1,240, - 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,241, - 1,241,1,241,5,241,4342,8,241,10,241,12,241,4345,9,241,1,242,1,242, - 1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242, - 1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242, - 1,242,3,242,4372,8,242,1,243,1,243,3,243,4376,8,243,1,244,1,244, - 1,244,3,244,4381,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245, - 3,245,4390,8,245,1,246,1,246,3,246,4394,8,246,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,248,1,248,1,248,1,248,1,248,1,248,1,248, - 1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248, - 3,248,4421,8,248,1,249,1,249,1,249,5,249,4426,8,249,10,249,12,249, - 4429,9,249,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,3,250,4443,8,250,1,251,1,251,1,251,1,251,1,251, - 1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251, - 1,251,1,251,3,251,4463,8,251,1,252,1,252,1,252,1,252,1,252,1,252, - 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252, - 1,252,3,252,4483,8,252,1,253,1,253,1,253,1,253,1,253,1,253,1,254, - 1,254,1,254,1,254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,4576,8,255,1,256, - 1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256, - 3,256,4601,8,256,1,257,1,257,1,257,1,257,1,257,3,257,4608,8,257, + 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2437,8,63, + 1,64,1,64,1,64,1,65,1,65,1,65,5,65,2445,8,65,10,65,12,65,2448,9, + 65,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,5,67,2458,8,67,10,67, + 12,67,2461,9,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68, + 2472,8,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68, + 1,68,3,68,2486,8,68,1,69,1,69,1,69,3,69,2491,8,69,1,70,1,70,3,70, + 2495,8,70,1,70,1,70,1,70,1,70,3,70,2501,8,70,1,70,1,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2515,8,70,1,70,1,70, + 1,70,1,70,3,70,2521,8,70,1,71,1,71,1,72,1,72,1,72,3,72,2528,8,72, + 1,73,5,73,2531,8,73,10,73,12,73,2534,9,73,1,73,1,73,1,73,1,73,3, + 73,2540,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2577, + 8,74,1,75,3,75,2580,8,75,1,75,1,75,1,75,3,75,2585,8,75,1,76,1,76, + 1,76,5,76,2590,8,76,10,76,12,76,2593,9,76,1,77,1,77,1,77,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,5,78,2605,8,78,10,78,12,78,2608,9,78, + 1,78,1,78,1,78,3,78,2613,8,78,1,79,1,79,1,79,1,79,1,79,1,79,3,79, + 2621,8,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, + 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, + 1,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2654,8,79,1,80,1,80,1,80, + 1,80,1,80,1,80,1,80,1,80,3,80,2664,8,80,1,81,1,81,3,81,2668,8,81, + 1,82,1,82,1,82,1,82,1,82,3,82,2675,8,82,1,83,1,83,1,83,5,83,2680, + 8,83,10,83,12,83,2683,9,83,1,84,1,84,1,84,5,84,2688,8,84,10,84,12, + 84,2691,9,84,1,85,1,85,1,85,3,85,2696,8,85,1,86,1,86,3,86,2700,8, + 86,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2710,8,88,1,88,1, + 88,1,89,5,89,2715,8,89,10,89,12,89,2718,9,89,1,90,1,90,1,90,1,90, + 1,90,1,90,1,90,1,90,3,90,2728,8,90,1,91,1,91,1,91,1,91,1,91,1,91, + 1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91, + 2748,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, + 1,91,3,91,2762,8,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91,2770,8,91, + 1,92,1,92,1,92,3,92,2775,8,92,1,93,1,93,1,93,1,93,1,93,3,93,2782, + 8,93,1,94,1,94,1,94,1,94,1,95,1,95,5,95,2790,8,95,10,95,12,95,2793, + 9,95,1,96,1,96,1,97,1,97,1,97,1,97,1,97,3,97,2802,8,97,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,3,98,2822,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,3,98,2837,8,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,3,98,2862,8,98,1,99,1,99,1,99,1,99, + 1,99,3,99,2869,8,99,1,100,1,100,1,100,5,100,2874,8,100,10,100,12, + 100,2877,9,100,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,102,3, + 102,2887,8,102,1,103,1,103,1,103,3,103,2892,8,103,1,104,1,104,1, + 104,5,104,2897,8,104,10,104,12,104,2900,9,104,1,105,1,105,1,105, + 1,105,1,105,1,105,1,105,1,105,3,105,2910,8,105,1,106,1,106,1,106, + 1,106,1,106,1,106,3,106,2918,8,106,1,107,1,107,1,107,1,107,1,107, + 1,107,1,107,1,107,1,107,3,107,2929,8,107,1,108,1,108,1,108,1,108, + 1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,3,110, + 2945,8,110,1,111,1,111,1,111,1,111,1,111,1,111,3,111,2953,8,111, + 1,112,1,112,3,112,2957,8,112,1,113,1,113,1,113,1,113,1,113,1,113, + 1,113,1,114,1,114,1,114,5,114,2969,8,114,10,114,12,114,2972,9,114, + 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,3,115,2988,8,115,1,116,1,116,1,116,3,116,2993, + 8,116,1,117,1,117,1,117,1,117,1,117,3,117,3000,8,117,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,3,118,3009,8,118,1,118,3,118,3012, + 8,118,1,119,1,119,1,119,3,119,3017,8,119,1,120,1,120,1,120,1,120, + 1,120,3,120,3024,8,120,1,121,1,121,1,121,1,121,1,122,1,122,1,122, + 1,122,1,122,3,122,3035,8,122,1,122,1,122,1,122,1,122,1,122,1,122, + 1,122,1,123,1,123,1,123,1,123,3,123,3048,8,123,1,123,1,123,1,123, + 1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124,3,124,3061,8,124, + 1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,125, + 1,125,1,126,1,126,1,126,1,126,3,126,3079,8,126,1,126,3,126,3082, + 8,126,1,127,1,127,3,127,3086,8,127,1,127,1,127,1,127,1,127,1,127, + 3,127,3093,8,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128, + 1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130, + 1,130,1,130,1,130,1,130,1,130,3,130,3119,8,130,1,130,1,130,3,130, + 3123,8,130,1,131,1,131,1,131,1,131,3,131,3129,8,131,1,131,1,131, + 1,131,1,132,1,132,1,132,1,132,1,132,3,132,3139,8,132,1,133,4,133, + 3142,8,133,11,133,12,133,3143,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,3,134,3153,8,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,3175,8,134,3,134,3177,8,134,1,135,1,135,1,135, + 1,135,1,135,1,135,3,135,3185,8,135,1,136,1,136,1,136,5,136,3190, + 8,136,10,136,12,136,3193,9,136,1,137,1,137,1,137,3,137,3198,8,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,3207,8,137,3,137, + 3209,8,137,1,138,1,138,3,138,3213,8,138,1,139,1,139,1,139,3,139, + 3218,8,139,1,140,1,140,1,140,1,140,3,140,3224,8,140,1,141,1,141, + 3,141,3228,8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,143,1,143,1,143,3,143,3241,8,143,1,144,1,144,1,144,1,144,3,144, + 3247,8,144,1,144,1,144,1,145,1,145,1,145,1,145,1,145,3,145,3256, + 8,145,1,145,1,145,1,145,5,145,3261,8,145,10,145,12,145,3264,9,145, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3273,8,146,1,147, + 1,147,1,147,1,147,1,147,5,147,3280,8,147,10,147,12,147,3283,9,147, + 1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,3392,8,149, + 1,150,1,150,1,150,1,150,1,150,1,150,3,150,3400,8,150,1,150,1,150, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3412,8,151, + 1,152,4,152,3415,8,152,11,152,12,152,3416,1,153,1,153,1,153,1,153, + 1,153,1,153,3,153,3425,8,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,153,1,153,1,153,3,153,3436,8,153,1,154,1,154,1,154,1,154,1,154, + 1,154,3,154,3444,8,154,1,155,1,155,1,155,5,155,3449,8,155,10,155, + 12,155,3452,9,155,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157, + 5,157,3462,8,157,10,157,12,157,3465,9,157,1,158,1,158,1,158,1,158, + 1,158,1,158,1,158,3,158,3474,8,158,1,159,1,159,1,159,1,160,1,160, + 1,161,1,161,1,162,1,162,1,162,1,162,1,162,3,162,3488,8,162,1,162, + 1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,3,162,3504,8,162,1,162,1,162,1,162,1,162,1,162,1,162, + 3,162,3512,8,162,1,163,1,163,1,163,3,163,3517,8,163,1,164,1,164, + 1,164,3,164,3522,8,164,1,165,1,165,1,165,1,165,1,165,1,165,3,165, + 3530,8,165,3,165,3532,8,165,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,3,166,3590,8,166,1,167,1,167, + 1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,168, + 1,168,1,168,3,168,3607,8,168,1,169,1,169,1,169,1,169,1,169,1,169, + 3,169,3615,8,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,3,170,3638,8,170,1,171,1,171,3,171,3642,8,171,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,3,172,3662,8,172,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176, + 3,176,3699,8,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177, + 3708,8,177,1,178,1,178,1,178,3,178,3713,8,178,1,179,1,179,1,179, + 3,179,3718,8,179,1,180,1,180,1,180,3,180,3723,8,180,1,181,1,181, + 1,181,3,181,3728,8,181,1,182,1,182,1,183,1,183,1,183,1,183,1,183, + 1,183,1,183,1,183,1,183,1,184,1,184,1,185,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 3,185,3781,8,185,1,186,1,186,1,186,1,186,3,186,3787,8,186,1,187, + 1,187,1,187,5,187,3792,8,187,10,187,12,187,3795,9,187,1,188,1,188, + 1,188,1,188,1,188,1,188,1,188,3,188,3804,8,188,1,189,1,189,1,189, + 3,189,3809,8,189,1,190,4,190,3812,8,190,11,190,12,190,3813,1,191, + 1,191,1,191,1,191,1,191,1,192,1,192,1,193,1,193,1,194,1,194,1,195, + 1,195,3,195,3829,8,195,1,195,1,195,3,195,3833,8,195,1,196,1,196, + 1,197,1,197,1,197,1,197,1,197,1,197,3,197,3843,8,197,1,198,1,198, + 1,199,1,199,3,199,3849,8,199,1,199,1,199,5,199,3853,8,199,10,199, + 12,199,3856,9,199,1,200,1,200,1,200,1,200,3,200,3862,8,200,1,201, + 1,201,1,201,3,201,3867,8,201,1,202,5,202,3870,8,202,10,202,12,202, + 3873,9,202,1,203,1,203,1,203,1,203,1,203,1,203,1,203,1,203,1,203, + 1,203,1,203,3,203,3886,8,203,1,204,1,204,1,204,1,204,1,204,1,204, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,3,204,3914, + 8,204,1,205,1,205,1,205,5,205,3919,8,205,10,205,12,205,3922,9,205, + 1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207,1,207,5,207,3933, + 8,207,10,207,12,207,3936,9,207,1,208,1,208,1,208,1,208,1,208,1,208, + 1,209,1,209,1,209,1,209,1,209,1,209,3,209,3950,8,209,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,3,211,4002,8,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, + 1,211,1,211,1,211,1,211,1,211,1,211,3,211,4069,8,211,1,212,1,212, + 1,212,1,212,5,212,4075,8,212,10,212,12,212,4078,9,212,1,212,1,212, + 1,213,1,213,1,213,3,213,4085,8,213,1,214,1,214,1,214,1,214,1,214, + 1,214,3,214,4093,8,214,1,215,1,215,1,215,1,215,5,215,4099,8,215, + 10,215,12,215,4102,9,215,1,215,1,215,1,216,1,216,1,216,1,216,1,217, + 1,217,1,217,5,217,4113,8,217,10,217,12,217,4116,9,217,1,218,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 1,218,1,218,3,218,4155,8,218,1,219,1,219,1,219,1,219,3,219,4161, + 8,219,1,220,1,220,1,220,1,220,1,220,3,220,4168,8,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,221,1,221,1,221,5,221, + 4182,8,221,10,221,12,221,4185,9,221,1,222,1,222,1,222,1,222,1,222, + 3,222,4192,8,222,1,222,1,222,1,222,1,222,1,222,3,222,4199,8,222, + 1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, + 1,222,1,222,3,222,4214,8,222,1,223,1,223,1,223,3,223,4219,8,223, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,4228,8,224,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226,1,226,1,226,1,226, + 1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226, + 1,226,1,226,3,226,4255,8,226,1,227,1,227,1,227,5,227,4260,8,227, + 10,227,12,227,4263,9,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228, + 1,228,1,228,1,228,1,228,1,228,3,228,4277,8,228,1,229,1,229,1,229, + 1,229,1,229,1,229,1,229,1,229,1,229,1,229,1,229,1,229,1,229,1,229, + 1,229,1,229,1,229,1,229,3,229,4297,8,229,1,230,1,230,1,230,1,230, + 1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,230,1,230, + 1,230,1,230,1,230,3,230,4317,8,230,1,231,1,231,1,231,1,231,1,231, + 1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,3,233,4410, + 8,233,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234, + 1,234,1,234,3,234,4435,8,234,1,235,1,235,1,235,1,235,1,235,3,235, + 4442,8,235,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236, + 1,236,1,236,1,236,1,236,1,236,3,236,4458,8,236,1,237,1,237,1,238, + 1,238,1,238,5,238,4465,8,238,10,238,12,238,4468,9,238,1,239,1,239, + 3,239,4472,8,239,1,240,1,240,4,240,4476,8,240,11,240,12,240,4477, + 1,241,1,241,1,241,5,241,4483,8,241,10,241,12,241,4486,9,241,1,242, + 1,242,1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,1,243,3,243, + 4499,8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,3,244,4648,8,244,1,245,1,245, + 3,245,4652,8,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,3,246,4745,8,246,1,247,1,247, + 1,247,3,247,4750,8,247,1,248,1,248,3,248,4754,8,248,1,249,1,249, + 1,249,1,249,3,249,4760,8,249,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, + 1,250,1,250,1,250,1,250,1,250,3,250,4828,8,250,1,251,1,251,1,252, + 1,252,3,252,4834,8,252,1,253,1,253,1,253,1,253,1,253,1,253,1,253, + 1,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254,4863, + 8,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,3,255,4880,8,255,1,256,1,256,1,256, + 5,256,4885,8,256,10,256,12,256,4888,9,256,1,257,1,257,1,257,1,257, + 1,257,1,257,1,257,1,257,1,257,3,257,4899,8,257,1,258,1,258,1,258, 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,3,258,4624,8,258,1,259,1,259,1,260,1,260,1,260, - 5,260,4631,8,260,10,260,12,260,4634,9,260,1,261,1,261,3,261,4638, - 8,261,1,262,1,262,4,262,4642,8,262,11,262,12,262,4643,1,263,1,263, - 1,263,5,263,4649,8,263,10,263,12,263,4652,9,263,1,264,1,264,1,264, - 1,264,1,264,1,264,1,265,1,265,1,265,1,265,1,265,3,265,4665,8,265, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,3,266,4814,8,266,1,267,1,267,3,267,4818, - 8,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 3,258,4959,8,258,1,259,1,259,1,259,5,259,4964,8,259,10,259,12,259, + 4967,9,259,1,260,1,260,1,260,3,260,4972,8,260,1,261,1,261,1,261, + 1,261,3,261,4978,8,261,1,262,1,262,1,262,1,262,1,262,1,262,1,262, + 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 1,263,1,263,1,263,1,263,1,263,1,263,3,263,5004,8,263,1,264,1,264, + 1,264,1,264,3,264,5010,8,264,1,265,1,265,1,265,1,265,3,265,5016, + 8,265,1,266,1,266,1,266,1,266,5,266,5022,8,266,10,266,12,266,5025, + 9,266,1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,3,267,5038,8,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268, 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,3,268,4911,8,268,1,269,1,269,1,269,3,269, - 4916,8,269,1,270,1,270,3,270,4920,8,270,1,271,1,271,1,271,1,271, - 3,271,4926,8,271,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,3,272,4994,8,272,1,273,1,273,1,274,1,274,3,274, - 5000,8,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,5029,8,276,1,277, - 1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, - 1,277,1,277,1,277,3,277,5046,8,277,1,278,1,278,1,278,5,278,5051, - 8,278,10,278,12,278,5054,9,278,1,279,1,279,1,279,1,279,1,279,1,279, - 1,279,1,279,1,279,3,279,5065,8,279,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,3,280,5125, - 8,280,1,281,1,281,1,281,5,281,5130,8,281,10,281,12,281,5133,9,281, - 1,282,1,282,1,282,3,282,5138,8,282,1,283,1,283,1,283,1,283,3,283, - 5144,8,283,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,285,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,3,285,5170,8,285,1,286,1,286,1,286,1,286, - 3,286,5176,8,286,1,287,1,287,1,287,1,287,3,287,5182,8,287,1,288, - 1,288,1,288,1,288,1,288,1,288,1,289,5,289,5191,8,289,10,289,12,289, - 5194,9,289,1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290, - 3,290,5205,8,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,3,291,5234,8,291, - 1,292,1,292,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,3,293,5273,8,293,1,294,1,294,3,294,5277, - 8,294,1,295,1,295,3,295,5281,8,295,1,296,1,296,3,296,5285,8,296, - 1,297,1,297,1,297,3,297,5290,8,297,1,298,1,298,1,298,5,298,5295, - 8,298,10,298,12,298,5298,9,298,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,3,299,5311,8,299,1,300,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,3,300,5324,8,300, - 1,301,1,301,1,301,1,301,1,301,1,301,3,301,5332,8,301,1,302,1,302, - 1,302,5,302,5337,8,302,10,302,12,302,5340,9,302,1,303,1,303,1,303, - 3,303,5345,8,303,1,304,1,304,3,304,5349,8,304,1,305,1,305,1,305, - 3,305,5354,8,305,1,306,1,306,1,306,1,306,1,306,3,306,5361,8,306, - 1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307, - 1,307,3,307,5375,8,307,3,307,5377,8,307,1,307,1,307,1,308,1,308, - 1,308,3,308,5384,8,308,1,309,1,309,3,309,5388,8,309,1,309,1,309, - 1,310,1,310,1,310,5,310,5395,8,310,10,310,12,310,5398,9,310,1,311, - 1,311,1,311,5,311,5403,8,311,10,311,12,311,5406,9,311,1,312,1,312, - 1,312,1,312,1,312,1,312,3,312,5414,8,312,3,312,5416,8,312,1,313, - 1,313,3,313,5420,8,313,1,313,1,313,1,314,1,314,1,314,5,314,5427, - 8,314,10,314,12,314,5430,9,314,1,315,1,315,3,315,5434,8,315,1,315, - 1,315,1,315,1,315,3,315,5440,8,315,1,315,1,315,1,315,3,315,5445, - 8,315,1,316,1,316,3,316,5449,8,316,1,316,1,316,1,316,3,316,5454, - 8,316,1,317,1,317,1,317,1,317,3,317,5460,8,317,1,318,1,318,1,319, - 1,319,3,319,5466,8,319,1,319,1,319,1,319,1,319,3,319,5472,8,319, - 1,319,1,319,1,319,1,319,3,319,5478,8,319,1,320,1,320,1,320,3,320, - 5483,8,320,1,321,1,321,1,322,1,322,1,322,1,322,1,322,1,322,1,322, - 1,322,1,322,1,322,1,322,3,322,5498,8,322,1,322,1,322,1,323,1,323, - 1,323,5,323,5505,8,323,10,323,12,323,5508,9,323,1,324,1,324,1,324, - 1,325,1,325,1,325,5,325,5516,8,325,10,325,12,325,5519,9,325,1,326, - 4,326,5522,8,326,11,326,12,326,5523,1,326,1,326,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327, - 5563,8,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,3,328, - 5573,8,328,1,329,1,329,1,329,1,329,1,329,3,329,5580,8,329,1,330, - 1,330,1,330,1,330,1,330,1,330,1,330,5,330,5589,8,330,10,330,12,330, - 5592,9,330,1,331,1,331,1,331,3,331,5597,8,331,1,332,1,332,1,332, - 1,333,1,333,1,333,5,333,5605,8,333,10,333,12,333,5608,9,333,1,334, - 1,334,1,334,1,334,1,334,1,334,1,335,4,335,5617,8,335,11,335,12,335, - 5618,1,336,1,336,3,336,5623,8,336,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337,5661, - 8,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,3,338,5675,8,338,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,3,339,5689,8,339,1,340,1,340, - 1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340, - 1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340,5713, - 8,340,1,341,1,341,1,341,5,341,5718,8,341,10,341,12,341,5721,9,341, - 1,341,1,341,1,342,1,342,1,342,5,342,5728,8,342,10,342,12,342,5731, - 9,342,1,343,1,343,1,343,1,344,1,344,1,344,1,345,4,345,5740,8,345, - 11,345,12,345,5741,1,346,1,346,1,346,3,346,5747,8,346,1,347,1,347, + 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,3,268,5067, + 8,268,1,269,1,269,1,270,1,270,3,270,5073,8,270,1,270,1,270,1,270, + 3,270,5078,8,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, + 1,270,1,270,1,270,1,270,1,270,3,270,5093,8,270,1,270,1,270,1,270, + 1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, + 1,270,1,270,1,270,3,270,5112,8,270,1,271,1,271,3,271,5116,8,271, + 1,272,1,272,1,272,3,272,5121,8,272,1,273,1,273,1,273,5,273,5126, + 8,273,10,273,12,273,5129,9,273,1,274,1,274,1,274,1,274,1,274,1,274, + 1,274,1,274,1,274,1,274,1,274,3,274,5142,8,274,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,3,275,5155,8,275, + 1,276,1,276,1,276,1,276,1,276,5,276,5162,8,276,10,276,12,276,5165, + 9,276,1,276,1,276,1,276,3,276,5170,8,276,1,277,1,277,1,277,3,277, + 5175,8,277,1,278,1,278,3,278,5179,8,278,1,279,1,279,1,279,3,279, + 5184,8,279,1,280,1,280,1,280,1,280,1,280,3,280,5191,8,280,1,281, + 1,281,1,281,1,281,1,281,1,281,3,281,5199,8,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,1,281,3,281,5209,8,281,3,281,5211,8,281, + 1,281,1,281,1,282,1,282,1,282,3,282,5218,8,282,1,283,1,283,1,283, + 5,283,5223,8,283,10,283,12,283,5226,9,283,1,284,1,284,1,284,5,284, + 5231,8,284,10,284,12,284,5234,9,284,1,285,1,285,1,285,3,285,5239, + 8,285,1,285,1,285,1,285,1,285,1,285,3,285,5246,8,285,3,285,5248, + 8,285,1,286,1,286,1,286,5,286,5253,8,286,10,286,12,286,5256,9,286, + 1,287,1,287,1,287,3,287,5261,8,287,1,288,1,288,3,288,5265,8,288, + 1,288,1,288,1,288,1,288,3,288,5271,8,288,1,288,1,288,1,288,3,288, + 5276,8,288,1,289,1,289,3,289,5280,8,289,1,289,1,289,1,289,3,289, + 5285,8,289,1,290,1,290,1,290,1,290,3,290,5291,8,290,1,291,1,291, + 1,292,1,292,3,292,5297,8,292,1,292,1,292,1,292,1,292,3,292,5303, + 8,292,1,292,1,292,1,292,1,292,3,292,5309,8,292,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,5322,8,293, + 1,293,1,293,1,294,1,294,1,294,5,294,5329,8,294,10,294,12,294,5332, + 9,294,1,295,1,295,1,295,1,296,1,296,1,296,5,296,5340,8,296,10,296, + 12,296,5343,9,296,1,297,4,297,5346,8,297,11,297,12,297,5347,1,297, + 1,297,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298, + 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298, + 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298, + 1,298,1,298,1,298,3,298,5387,8,298,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,3,299,5397,8,299,1,300,1,300,1,300,1,300,1,300, + 3,300,5404,8,300,1,301,1,301,1,301,1,301,1,301,1,301,1,301,5,301, + 5413,8,301,10,301,12,301,5416,9,301,1,302,1,302,1,302,3,302,5421, + 8,302,1,303,1,303,1,303,1,304,1,304,1,304,5,304,5429,8,304,10,304, + 12,304,5432,9,304,1,305,1,305,1,305,1,305,4,305,5438,8,305,11,305, + 12,305,5439,1,305,3,305,5443,8,305,1,306,1,306,1,306,1,306,1,306, + 1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306, + 1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306, + 1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,3,306,5481, + 8,306,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307, + 1,307,1,307,3,307,5495,8,307,1,308,1,308,1,308,1,308,1,308,1,308, + 1,308,1,308,1,308,1,308,1,308,1,308,3,308,5509,8,308,1,309,1,309, + 1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309, + 1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,3,309,5533, + 8,309,1,310,1,310,1,310,5,310,5538,8,310,10,310,12,310,5541,9,310, + 1,310,1,310,1,311,1,311,1,311,5,311,5548,8,311,10,311,12,311,5551, + 9,311,1,312,1,312,1,312,1,313,1,313,1,313,1,314,4,314,5560,8,314, + 11,314,12,314,5561,1,315,1,315,1,315,3,315,5567,8,315,1,316,1,316, + 1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316, + 1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316, + 1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,3,316, + 5603,8,316,1,317,1,317,1,317,1,317,1,317,3,317,5610,8,317,1,318, + 1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,319,1,319, + 1,319,3,319,5625,8,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320, + 1,320,1,320,1,320,1,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321, + 1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321, + 1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321, + 1,321,1,321,1,321,1,321,1,321,3,321,5672,8,321,1,322,1,322,1,322, + 1,322,1,322,1,322,1,322,1,322,1,322,1,323,1,323,1,323,1,323,1,323, + 1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323, + 1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,3,323, + 5709,8,323,1,324,1,324,1,325,1,325,1,326,1,326,1,326,5,326,5718, + 8,326,10,326,12,326,5721,9,326,1,327,1,327,1,328,1,328,1,328,1,328, + 1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,3,328,5737,8,328, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,329,1,329,1,329,3,329,6207,8,329,1,330,1,330, + 3,330,6211,8,330,1,331,1,331,1,331,3,331,6216,8,331,1,332,1,332, + 1,332,1,332,3,332,6222,8,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,3,332,6233,8,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,3,332,6244,8,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,6257,8,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,6269, + 8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332, + 6280,8,332,1,332,1,332,1,332,1,332,1,332,3,332,6287,8,332,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,6506,8,333,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335,1,335,5,335, + 6519,8,335,10,335,12,335,6522,9,335,1,336,1,336,1,336,1,336,1,336, + 1,336,1,336,1,336,3,336,6532,8,336,1,337,1,337,1,337,1,337,1,337, + 3,337,6539,8,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339,6732,8,339,1,340, + 1,340,1,340,1,340,1,340,1,340,1,341,1,341,3,341,6742,8,341,1,342, + 1,342,1,342,1,342,1,342,1,342,3,342,6750,8,342,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,3,343,6779,8,343,1,344,1,344,1,344,1,344,1,344,1,344, + 1,344,1,344,1,344,1,345,1,345,1,345,5,345,6793,8,345,10,345,12,345, + 6796,9,345,1,346,1,346,1,347,1,347,1,347,1,347,1,347,1,347,1,347, 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347, 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347, - 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,3,347, - 5783,8,347,1,348,1,348,1,348,1,348,1,348,3,348,5790,8,348,1,349, - 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350, - 1,350,3,350,5805,8,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,3,352,5852,8,352,1,353,1,353,1,353, - 1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,3,354, - 5889,8,354,1,355,1,355,1,356,1,356,1,357,1,357,1,357,5,357,5898, - 8,357,10,357,12,357,5901,9,357,1,358,1,358,1,359,1,359,1,359,1,359, - 1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,359,3,359,5917,8,359, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, + 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,3,347,6837,8,347, + 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348, + 1,348,3,348,6851,8,348,1,349,1,349,1,349,1,349,1,349,1,349,1,349, + 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350, + 1,350,1,350,3,350,6873,8,350,1,351,1,351,1,351,5,351,6878,8,351, + 10,351,12,351,6881,9,351,1,352,1,352,1,352,1,352,1,352,3,352,6888, + 8,352,1,353,1,353,3,353,6892,8,353,1,354,1,354,1,355,1,355,1,355, + 3,355,6899,8,355,1,356,1,356,1,356,1,356,1,357,1,357,1,357,3,357, + 6908,8,357,1,358,1,358,1,358,1,359,1,359,1,359,1,359,3,359,6917, + 8,359,1,360,1,360,1,360,1,360,1,360,1,360,1,360,3,360,6926,8,360, + 1,360,1,360,1,360,3,360,6931,8,360,1,360,1,360,1,360,1,360,1,360, 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,360,3,360,6387,8,360,1,361,1,361, - 3,361,6391,8,361,1,362,1,362,1,362,3,362,6396,8,362,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363, - 3,363,6455,8,363,1,364,1,364,3,364,6459,8,364,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, + 1,360,3,360,6972,8,360,1,361,1,361,1,361,3,361,6977,8,361,1,362, + 1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,3,362,6989, + 8,362,1,363,1,363,3,363,6993,8,363,1,363,5,363,6996,8,363,10,363, + 12,363,6999,9,363,1,364,1,364,3,364,7003,8,364,1,364,1,364,3,364, + 7007,8,364,1,365,1,365,1,365,3,365,7012,8,365,1,365,1,365,1,365, 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,3,365,6678,8,365,1,366,1,366,1,366, - 1,366,1,366,1,366,1,366,1,366,1,367,1,367,1,367,5,367,6691,8,367, - 10,367,12,367,6694,9,367,1,368,1,368,1,368,1,368,1,368,1,368,1,368, - 1,368,3,368,6704,8,368,1,369,1,369,1,369,1,369,1,369,3,369,6711, - 8,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,1,371,3,371,6904,8,371,1,372,1,372,1,372, - 1,372,1,372,1,372,1,373,1,373,3,373,6914,8,373,1,374,1,374,1,374, - 1,374,1,374,1,374,3,374,6922,8,374,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 3,375,6951,8,375,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, - 1,376,1,377,1,377,1,377,5,377,6965,8,377,10,377,12,377,6968,9,377, - 1,378,1,378,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, - 1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, - 1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, - 1,379,1,379,1,379,1,379,1,379,1,379,3,379,7009,8,379,1,380,1,380, - 1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,3,380, - 7023,8,380,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,382,1,382,1,382, - 3,382,7045,8,382,1,383,1,383,1,383,5,383,7050,8,383,10,383,12,383, - 7053,9,383,1,384,1,384,1,384,1,384,1,384,3,384,7060,8,384,1,385, - 1,385,3,385,7064,8,385,1,386,1,386,1,387,1,387,1,387,3,387,7071, - 8,387,1,388,1,388,1,388,1,388,1,389,1,389,1,389,3,389,7080,8,389, - 1,390,1,390,1,390,1,391,1,391,1,391,1,391,3,391,7089,8,391,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,3,392,7141,8,392,1,393,1,393,1,393, - 3,393,7146,8,393,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,3,394,7158,8,394,1,395,1,395,3,395,7162,8,395,1,395, - 5,395,7165,8,395,10,395,12,395,7168,9,395,1,396,1,396,3,396,7172, - 8,396,1,397,1,397,3,397,7176,8,397,1,397,1,397,3,397,7180,8,397, - 1,398,1,398,1,398,3,398,7185,8,398,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,3,398,7201, - 8,398,1,398,1,398,1,398,1,398,1,399,1,399,3,399,7209,8,399,1,399, - 1,399,1,399,3,399,7214,8,399,1,400,1,400,1,400,1,401,1,401,1,401, - 1,401,1,401,1,401,1,402,1,402,3,402,7227,8,402,1,403,4,403,7230, - 8,403,11,403,12,403,7231,1,404,1,404,1,404,1,404,1,404,3,404,7239, - 8,404,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,3,405,7249, - 8,405,1,406,1,406,3,406,7253,8,406,1,407,1,407,1,407,1,407,1,407, - 1,407,1,407,1,407,1,407,3,407,7264,8,407,1,408,1,408,1,408,1,408, - 1,408,1,409,1,409,1,409,1,409,3,409,7275,8,409,1,409,1,409,1,409, - 1,409,1,409,1,409,3,409,7283,8,409,1,410,1,410,1,410,5,410,7288, - 8,410,10,410,12,410,7291,9,410,1,411,1,411,1,412,1,412,1,412,1,412, - 1,412,1,412,1,413,1,413,1,413,1,413,1,413,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, - 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,3,415,7329,8,415, - 1,415,1,415,1,415,1,415,1,415,1,415,3,415,7337,8,415,1,416,1,416, - 3,416,7341,8,416,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,3,418,7422,8,418,1,419,1,419,1,420, - 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,421, - 1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,421, - 1,421,3,421,7450,8,421,1,422,1,422,1,422,3,422,7455,8,422,1,423, - 1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423, - 1,423,3,423,7470,8,423,1,424,1,424,1,424,1,424,1,424,1,424,1,424, - 1,424,1,424,1,424,3,424,7482,8,424,1,425,1,425,1,425,5,425,7487, - 8,425,10,425,12,425,7490,9,425,1,426,1,426,1,427,1,427,1,427,1,428, - 1,428,3,428,7499,8,428,1,429,1,429,1,429,3,429,7504,8,429,1,430, - 1,430,3,430,7508,8,430,1,431,1,431,3,431,7512,8,431,1,432,1,432, - 3,432,7516,8,432,1,433,1,433,3,433,7520,8,433,1,434,1,434,1,434, - 1,434,1,434,3,434,7527,8,434,1,435,1,435,1,435,1,436,1,436,1,436, - 5,436,7535,8,436,10,436,12,436,7538,9,436,1,437,1,437,3,437,7542, - 8,437,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, - 1,438,1,438,1,438,1,438,1,438,1,438,3,438,7560,8,438,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,1,439,3,439,7571,8,439,1,440, - 1,440,1,440,5,440,7576,8,440,10,440,12,440,7579,9,440,1,441,1,441, - 1,441,1,442,1,442,3,442,7586,8,442,1,443,1,443,1,443,3,443,7591, - 8,443,1,444,1,444,1,444,1,444,1,444,1,444,1,445,1,445,1,445,1,445, - 1,445,3,445,7604,8,445,1,446,1,446,1,446,1,446,3,446,7610,8,446, - 1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447, - 1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,447, - 1,447,1,447,1,447,1,447,1,447,3,447,7639,8,447,1,448,1,448,1,448, - 1,448,1,448,3,448,7646,8,448,1,449,1,449,1,449,1,449,1,449,1,449, - 1,449,1,449,1,449,1,449,3,449,7658,8,449,1,450,3,450,7661,8,450, - 1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,451,1,451,1,451,3,451, - 7673,8,451,1,452,1,452,1,452,1,452,1,452,1,452,1,452,1,452,1,452, - 1,452,1,452,1,452,1,452,3,452,7688,8,452,1,452,1,452,1,452,1,452, - 3,452,7694,8,452,1,453,1,453,1,454,1,454,1,454,5,454,7701,8,454, - 10,454,12,454,7704,9,454,1,455,1,455,1,455,1,456,1,456,1,456,1,456, - 1,456,1,456,1,456,1,456,1,456,1,456,3,456,7719,8,456,1,456,3,456, - 7722,8,456,1,457,1,457,1,457,1,457,1,457,1,457,1,457,1,457,1,457, - 3,457,7733,8,457,1,458,1,458,1,458,3,458,7738,8,458,1,459,1,459, - 3,459,7742,8,459,1,459,1,459,3,459,7746,8,459,1,459,1,459,1,459, - 3,459,7751,8,459,1,459,3,459,7754,8,459,1,459,1,459,1,459,1,459, - 3,459,7760,8,459,1,459,1,459,3,459,7764,8,459,3,459,7766,8,459,1, - 459,3,459,7769,8,459,1,460,1,460,1,460,1,460,1,460,3,460,7776,8, - 460,1,460,3,460,7779,8,460,1,460,1,460,1,460,1,460,1,460,3,460,7786, - 8,460,1,460,1,460,1,461,1,461,1,461,1,461,3,461,7794,8,461,1,461, - 3,461,7797,8,461,1,461,1,461,1,461,1,461,1,462,1,462,1,462,3,462, - 7806,8,462,1,462,1,462,1,463,3,463,7811,8,463,1,463,1,463,1,463, - 1,463,1,463,1,463,1,463,1,464,1,464,1,464,3,464,7823,8,464,1,465, - 1,465,1,465,1,465,1,465,1,465,1,466,1,466,1,466,1,466,1,466,3,466, - 7836,8,466,1,467,1,467,1,467,1,467,1,467,1,467,1,467,1,467,1,467, - 3,467,7847,8,467,1,467,3,467,7850,8,467,1,468,1,468,3,468,7854,8, - 468,1,469,1,469,1,469,1,469,3,469,7860,8,469,1,470,3,470,7863,8, - 470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,471,1,471, - 1,471,5,471,7876,8,471,10,471,12,471,7879,9,471,1,472,1,472,1,472, - 1,472,1,472,1,472,1,472,1,472,1,472,1,472,3,472,7891,8,472,1,473, - 1,473,1,473,1,474,1,474,1,474,5,474,7899,8,474,10,474,12,474,7902, - 9,474,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,476,1,476, - 1,477,1,477,1,477,1,477,1,477,5,477,7919,8,477,10,477,12,477,7922, - 9,477,1,478,1,478,1,478,1,478,1,478,3,478,7929,8,478,1,479,1,479, - 3,479,7933,8,479,1,480,1,480,1,480,1,480,1,480,1,480,1,480,1,480, - 3,480,7943,8,480,1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481, - 3,481,7953,8,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481,1,481, - 1,481,3,481,7964,8,481,3,481,7966,8,481,1,482,1,482,1,482,1,482, - 1,482,5,482,7973,8,482,10,482,12,482,7976,9,482,1,483,1,483,1,483, - 1,483,1,483,5,483,7983,8,483,10,483,12,483,7986,9,483,1,484,1,484, - 3,484,7990,8,484,1,484,1,484,1,484,3,484,7995,8,484,1,484,1,484, - 1,484,3,484,8000,8,484,1,484,3,484,8003,8,484,1,485,1,485,1,485, - 1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,3,485,8017, - 8,485,1,486,1,486,3,486,8021,8,486,1,486,1,486,1,487,1,487,1,487, - 5,487,8028,8,487,10,487,12,487,8031,9,487,1,488,1,488,1,488,1,488, - 1,488,1,488,1,488,1,488,1,489,1,489,1,489,1,489,3,489,8045,8,489, - 1,490,1,490,1,490,1,490,1,490,3,490,8052,8,490,1,491,1,491,3,491, - 8056,8,491,1,492,3,492,8059,8,492,1,492,1,492,1,492,1,492,1,492, - 1,492,1,492,1,492,1,492,1,492,1,492,3,492,8072,8,492,1,493,1,493, - 3,493,8076,8,493,1,494,1,494,1,494,3,494,8081,8,494,1,495,1,495, - 1,495,1,495,1,495,1,495,3,495,8089,8,495,1,496,1,496,1,497,1,497, - 3,497,8095,8,497,1,498,1,498,1,498,1,498,1,499,1,499,1,499,5,499, - 8104,8,499,10,499,12,499,8107,9,499,1,500,1,500,1,500,1,500,3,500, - 8113,8,500,1,500,1,500,1,501,1,501,3,501,8119,8,501,1,501,1,501, - 3,501,8123,8,501,3,501,8125,8,501,1,502,1,502,3,502,8129,8,502,1, - 503,1,503,1,503,1,503,3,503,8135,8,503,1,503,1,503,1,503,1,503,1, - 503,1,503,1,503,3,503,8144,8,503,1,503,1,503,1,503,1,503,3,503,8150, - 8,503,3,503,8152,8,503,3,503,8154,8,503,1,504,1,504,1,504,1,504, - 1,504,3,504,8161,8,504,1,505,1,505,3,505,8165,8,505,1,506,1,506, - 1,507,1,507,1,507,1,507,1,507,3,507,8174,8,507,1,508,1,508,3,508, - 8178,8,508,1,509,1,509,1,510,1,510,1,511,1,511,1,511,1,511,3,511, - 8188,8,511,1,512,1,512,1,512,5,512,8193,8,512,10,512,12,512,8196, - 9,512,1,513,1,513,1,513,1,513,1,513,3,513,8203,8,513,1,514,1,514, - 1,514,1,515,1,515,1,515,1,515,1,515,1,516,1,516,1,516,1,516,1,516, - 1,517,1,517,1,517,1,517,1,517,1,517,1,518,1,518,1,518,3,518,8227, - 8,518,1,519,1,519,1,519,1,519,3,519,8233,8,519,1,520,1,520,3,520, - 8237,8,520,1,521,4,521,8240,8,521,11,521,12,521,8241,1,522,1,522, - 1,522,1,522,1,523,1,523,1,523,3,523,8251,8,523,1,523,1,523,3,523, - 8255,8,523,1,523,3,523,8258,8,523,1,524,1,524,1,524,3,524,8263,8, - 524,1,525,1,525,1,525,1,525,1,525,1,525,1,525,1,525,1,525,5,525, - 8274,8,525,10,525,12,525,8277,9,525,1,526,1,526,1,526,3,526,8282, - 8,526,1,527,1,527,1,527,1,527,5,527,8288,8,527,10,527,12,527,8291, - 9,527,3,527,8293,8,527,1,528,1,528,1,528,4,528,8298,8,528,11,528, - 12,528,8299,1,529,1,529,1,529,3,529,8305,8,529,1,529,1,529,1,529, - 1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,529,1,529, - 1,529,1,529,1,529,1,529,1,529,3,529,8326,8,529,1,529,1,529,1,529, - 1,529,1,529,1,529,1,529,3,529,8335,8,529,1,529,1,529,1,529,3,529, - 8340,8,529,1,529,1,529,1,529,1,529,3,529,8346,8,529,1,529,1,529, - 1,529,3,529,8351,8,529,1,529,1,529,1,529,1,529,1,529,3,529,8358, - 8,529,1,529,1,529,1,529,3,529,8363,8,529,1,529,1,529,1,529,1,529, - 5,529,8369,8,529,10,529,12,529,8372,9,529,1,530,3,530,8375,8,530, - 1,530,1,530,1,530,1,530,1,530,3,530,8382,8,530,1,531,1,531,3,531, - 8386,8,531,1,532,3,532,8389,8,532,1,532,1,532,1,532,1,532,1,532, - 3,532,8396,8,532,1,533,1,533,1,533,3,533,8401,8,533,1,533,3,533, - 8404,8,533,1,533,1,533,1,533,1,533,1,533,3,533,8411,8,533,1,534, - 1,534,3,534,8415,8,534,1,535,1,535,1,535,1,535,1,535,1,535,1,535, - 3,535,8424,8,535,1,536,1,536,3,536,8428,8,536,1,536,1,536,1,536, - 1,536,1,536,1,536,3,536,8436,8,536,3,536,8438,8,536,1,537,1,537, - 1,537,5,537,8443,8,537,10,537,12,537,8446,9,537,1,538,1,538,3,538, - 8450,8,538,1,538,3,538,8453,8,538,1,539,1,539,1,539,1,539,1,539, - 1,539,1,539,1,540,1,540,1,540,1,540,1,540,1,540,3,540,8468,8,540, - 1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,1,541,3,541, - 8480,8,541,1,542,1,542,1,542,1,543,1,543,1,543,5,543,8488,8,543, - 10,543,12,543,8491,9,543,1,544,1,544,1,544,1,544,1,544,1,544,3,544, - 8499,8,544,1,545,1,545,1,545,3,545,8504,8,545,1,546,1,546,1,546, - 3,546,8509,8,546,1,547,1,547,1,547,1,547,1,547,3,547,8516,8,547, - 1,547,3,547,8519,8,547,1,548,1,548,3,548,8523,8,548,1,549,1,549, - 1,549,5,549,8528,8,549,10,549,12,549,8531,9,549,1,550,1,550,1,550, - 1,550,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551,1,551, - 1,551,1,551,1,551,1,551,1,551,1,551,1,551,3,551,8554,8,551,1,551, - 1,551,1,552,1,552,1,552,5,552,8561,8,552,10,552,12,552,8564,9,552, - 1,553,1,553,1,553,3,553,8569,8,553,1,553,1,553,3,553,8573,8,553, - 1,554,4,554,8576,8,554,11,554,12,554,8577,1,555,1,555,1,555,1,555, - 1,555,1,555,1,555,1,555,3,555,8588,8,555,1,556,1,556,1,556,5,556, - 8593,8,556,10,556,12,556,8596,9,556,1,557,1,557,1,557,1,557,1,557, - 1,557,3,557,8604,8,557,1,558,3,558,8607,8,558,1,558,1,558,1,558, - 1,558,1,558,1,558,1,558,3,558,8616,8,558,3,558,8618,8,558,1,558, - 1,558,1,558,1,558,3,558,8624,8,558,1,559,1,559,3,559,8628,8,559, - 1,559,5,559,8631,8,559,10,559,12,559,8634,9,559,1,560,1,560,1,560, - 1,560,1,560,1,560,1,560,1,560,1,560,1,560,1,560,3,560,8647,8,560, - 3,560,8649,8,560,1,561,1,561,1,561,1,561,3,561,8655,8,561,1,562, - 1,562,1,562,1,562,3,562,8661,8,562,1,562,3,562,8664,8,562,1,562, - 1,562,1,563,1,563,1,563,1,563,1,563,3,563,8673,8,563,1,564,1,564, - 1,564,1,564,1,564,1,564,1,564,1,564,1,564,1,564,1,564,1,564,1,564, - 1,564,1,564,1,564,3,564,8691,8,564,1,565,1,565,1,565,1,565,1,565, - 3,565,8698,8,565,1,566,1,566,3,566,8702,8,566,1,567,1,567,3,567, - 8706,8,567,1,568,1,568,1,568,1,568,1,568,1,568,1,569,1,569,1,569, - 1,570,1,570,1,570,1,570,1,570,3,570,8722,8,570,1,571,1,571,1,571, - 1,571,1,571,3,571,8729,8,571,1,572,1,572,1,572,1,572,1,572,1,572, - 3,572,8737,8,572,1,573,1,573,3,573,8741,8,573,1,574,1,574,1,574, - 1,574,1,574,3,574,8748,8,574,1,574,1,574,1,575,1,575,1,576,1,576, - 1,576,1,576,1,576,1,576,1,576,3,576,8761,8,576,1,577,1,577,1,577, - 1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577,1,577, - 3,577,8777,8,577,1,577,1,577,1,577,1,577,3,577,8783,8,577,1,577, - 1,577,1,577,1,577,3,577,8789,8,577,1,578,1,578,1,578,1,578,1,578, - 3,578,8796,8,578,1,579,1,579,1,579,3,579,8801,8,579,1,580,1,580, - 1,581,1,581,3,581,8807,8,581,1,582,1,582,1,582,5,582,8812,8,582, - 10,582,12,582,8815,9,582,1,583,1,583,1,583,5,583,8820,8,583,10,583, - 12,583,8823,9,583,1,584,1,584,1,584,5,584,8828,8,584,10,584,12,584, - 8831,9,584,1,585,1,585,3,585,8835,8,585,1,585,1,585,3,585,8839,8, - 585,1,585,1,585,1,585,1,585,3,585,8845,8,585,1,586,1,586,3,586,8849, - 8,586,1,586,1,586,3,586,8853,8,586,1,587,3,587,8856,8,587,1,587, - 1,587,1,588,1,588,3,588,8862,8,588,1,589,1,589,1,589,3,589,8867, - 8,589,1,589,1,589,1,589,1,589,1,589,1,589,1,589,1,589,1,589,1,589, - 1,589,1,589,1,589,1,589,3,589,8883,8,589,1,589,3,589,8886,8,589, - 3,589,8888,8,589,1,590,1,590,1,590,1,590,1,590,1,590,1,590,1,590, - 1,590,1,590,3,590,8900,8,590,3,590,8902,8,590,1,591,1,591,3,591, - 8906,8,591,1,591,1,591,1,591,1,591,3,591,8912,8,591,1,591,1,591, - 1,591,3,591,8917,8,591,1,592,1,592,1,592,1,592,5,592,8923,8,592, - 10,592,12,592,8926,9,592,1,593,3,593,8929,8,593,1,593,1,593,1,594, - 1,594,1,594,5,594,8936,8,594,10,594,12,594,8939,9,594,1,595,1,595, - 1,595,5,595,8944,8,595,10,595,12,595,8947,9,595,1,596,1,596,1,596, - 3,596,8952,8,596,1,597,3,597,8955,8,597,1,597,1,597,1,598,1,598, - 1,598,1,598,1,598,3,598,8964,8,598,1,599,1,599,1,599,3,599,8969, - 8,599,1,600,1,600,1,600,5,600,8974,8,600,10,600,12,600,8977,9,600, - 1,601,1,601,1,601,1,601,1,601,1,601,1,601,3,601,8986,8,601,1,601, - 1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601, - 1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601, - 1,601,3,601,9012,8,601,1,601,1,601,1,601,1,601,1,601,1,601,1,601, - 1,601,1,601,3,601,9023,8,601,5,601,9025,8,601,10,601,12,601,9028, - 9,601,1,602,1,602,1,602,1,602,1,602,3,602,9035,8,602,1,602,1,602, - 1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602, - 1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,3,602,9058,8,602, - 1,602,1,602,1,602,1,602,1,602,1,602,3,602,9066,8,602,1,603,1,603, - 1,604,1,604,1,604,1,604,1,604,1,604,3,604,9076,8,604,1,604,1,604, - 1,604,1,604,1,604,1,604,1,604,1,604,1,604,1,604,1,604,1,604,3,604, - 9090,8,604,1,604,1,604,1,605,1,605,1,605,1,605,1,605,1,605,3,605, - 9100,8,605,1,606,1,606,3,606,9104,8,606,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,3,607,9118,8,607, - 1,607,1,607,1,607,1,607,1,607,3,607,9125,8,607,1,607,1,607,1,607, - 1,607,1,607,3,607,9132,8,607,1,607,1,607,1,607,1,607,1,607,3,607, - 9139,8,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,3,607,9164,8,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 3,607,9193,8,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,3,607,9232,8,607,3,607, - 9234,8,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,3,607,9262,8,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607,1,607, - 1,607,1,607,1,607,1,607,1,607,1,607,3,607,9283,8,607,1,608,1,608, - 1,608,1,608,1,608,3,608,9290,8,608,1,609,1,609,1,609,1,609,1,609, - 1,609,1,609,1,609,1,609,1,609,1,609,3,609,9303,8,609,1,610,1,610, - 1,610,1,610,1,610,1,611,1,611,1,611,5,611,9313,8,611,10,611,12,611, - 9316,9,611,1,612,1,612,1,612,3,612,9321,8,612,1,613,1,613,1,614, - 1,614,1,614,1,614,1,614,3,614,9330,8,614,1,615,1,615,1,615,1,615, - 1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615, - 3,615,9347,8,615,1,616,1,616,1,616,1,617,1,617,1,617,1,617,1,617, - 1,617,1,617,3,617,9359,8,617,1,618,1,618,1,618,1,618,1,618,1,618, - 1,618,3,618,9368,8,618,1,619,1,619,1,619,3,619,9373,8,619,1,620, - 1,620,1,620,5,620,9378,8,620,10,620,12,620,9381,9,620,1,621,1,621, - 1,621,1,621,1,622,1,622,1,622,3,622,9390,8,622,1,622,3,622,9393, - 8,622,1,623,1,623,1,623,1,623,1,623,1,623,1,623,1,624,1,624,3,624, - 9404,8,624,1,625,1,625,1,625,1,625,3,625,9410,8,625,1,626,1,626, - 1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, - 3,626,9425,8,626,1,627,1,627,1,627,1,627,1,627,1,627,3,627,9433, - 8,627,1,628,1,628,1,628,1,628,1,628,1,628,1,628,3,628,9442,8,628, - 1,629,1,629,1,629,1,629,1,629,1,629,1,629,3,629,9451,8,629,1,629, - 3,629,9454,8,629,1,630,1,630,1,630,3,630,9459,8,630,1,630,1,630, - 1,630,1,630,1,630,1,630,1,630,3,630,9468,8,630,1,631,1,631,1,631, - 3,631,9473,8,631,1,631,1,631,1,632,1,632,1,632,1,632,1,632,1,632, - 1,633,1,633,1,634,1,634,3,634,9487,8,634,1,635,1,635,1,636,1,636, - 1,636,1,636,1,636,1,636,3,636,9497,8,636,1,637,1,637,1,637,1,637, - 1,637,1,637,3,637,9505,8,637,1,638,1,638,1,638,1,638,1,638,1,638, - 1,638,1,638,1,638,1,638,1,638,1,638,3,638,9519,8,638,1,639,1,639, - 1,639,5,639,9524,8,639,10,639,12,639,9527,9,639,1,640,1,640,1,640, - 5,640,9532,8,640,10,640,12,640,9535,9,640,1,641,1,641,1,641,1,641, - 1,641,3,641,9542,8,641,1,642,1,642,1,642,5,642,9547,8,642,10,642, - 12,642,9550,9,642,1,643,1,643,1,643,3,643,9555,8,643,1,643,1,643, - 1,644,1,644,1,644,5,644,9562,8,644,10,644,12,644,9565,9,644,1,645, - 1,645,1,645,1,645,1,645,3,645,9572,8,645,1,646,1,646,1,646,1,646, - 1,646,1,646,1,646,1,646,3,646,9582,8,646,1,647,1,647,1,648,1,648, - 1,648,1,648,1,648,1,648,1,648,3,648,9593,8,648,1,649,1,649,1,649, - 1,649,1,649,3,649,9600,8,649,1,650,1,650,1,650,1,650,1,650,1,650, - 1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650, - 1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,1,650,3,650, - 9629,8,650,1,651,1,651,1,651,1,651,1,651,1,651,1,651,3,651,9638, - 8,651,1,652,1,652,1,652,1,652,1,652,3,652,9645,8,652,1,653,1,653, - 1,653,1,653,1,653,1,653,1,654,4,654,9654,8,654,11,654,12,654,9655, - 1,655,1,655,1,655,1,655,1,655,1,656,1,656,1,656,3,656,9666,8,656, - 1,657,1,657,3,657,9670,8,657,1,658,1,658,3,658,9674,8,658,1,659, - 1,659,1,659,3,659,9679,8,659,1,659,1,659,1,659,1,659,1,659,1,659, - 3,659,9687,8,659,1,659,1,659,3,659,9691,8,659,1,660,1,660,3,660, - 9695,8,660,1,661,4,661,9698,8,661,11,661,12,661,9699,1,662,5,662, - 9703,8,662,10,662,12,662,9706,9,662,1,663,1,663,3,663,9710,8,663, - 1,664,1,664,1,664,5,664,9715,8,664,10,664,12,664,9718,9,664,1,665, - 1,665,1,665,1,665,1,665,1,665,3,665,9726,8,665,3,665,9728,8,665, - 1,666,1,666,1,666,5,666,9733,8,666,10,666,12,666,9736,9,666,1,667, - 1,667,3,667,9740,8,667,1,668,1,668,1,668,5,668,9745,8,668,10,668, - 12,668,9748,9,668,1,669,1,669,1,670,1,670,1,671,1,671,1,672,1,672, - 1,672,1,672,1,672,1,672,1,672,3,672,9763,8,672,1,673,1,673,1,673, - 1,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673,3,673, - 9778,8,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673,1,673, - 1,673,1,673,1,673,3,673,9792,8,673,1,673,1,673,1,673,3,673,9797, - 8,673,1,674,1,674,1,675,1,675,1,676,1,676,1,677,1,677,1,678,1,678, - 1,678,1,679,1,679,1,679,1,679,5,679,9814,8,679,10,679,12,679,9817, - 9,679,1,679,1,679,3,679,9821,8,679,1,680,1,680,1,680,3,680,9826, - 8,680,1,681,1,681,1,681,1,681,1,681,3,681,9833,8,681,1,682,1,682, - 1,683,1,683,1,683,3,683,9840,8,683,1,684,1,684,1,684,5,684,9845, - 8,684,10,684,12,684,9848,9,684,1,685,1,685,1,685,1,685,1,685,1,685, - 3,685,9856,8,685,1,686,1,686,1,686,1,686,3,686,9862,8,686,1,687, - 1,687,1,687,1,687,3,687,9868,8,687,1,688,1,688,1,688,1,688,3,688, - 9874,8,688,1,689,1,689,1,689,1,689,1,689,1,689,3,689,9882,8,689, - 1,690,1,690,1,690,1,690,1,690,1,690,1,690,3,690,9891,8,690,1,691, - 1,691,1,692,1,692,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693, - 1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693, - 1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693, - 1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693, - 1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693,1,693, - 3,693,9949,8,693,1,694,1,694,1,695,1,695,1,696,1,696,1,697,1,697, - 1,697,1,697,1,698,5,698,9962,8,698,10,698,12,698,9965,9,698,1,699, - 1,699,1,699,1,699,1,699,1,699,1,699,1,699,1,699,1,699,1,699,1,699, - 1,699,1,699,1,699,1,699,1,699,1,699,1,699,1,699,3,699,9987,8,699, - 1,700,1,700,1,701,1,701,1,701,1,701,3,701,9995,8,701,1,702,1,702, - 3,702,9999,8,702,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,704, - 1,704,1,704,3,704,10011,8,704,3,704,10013,8,704,1,705,1,705,1,706, - 4,706,10018,8,706,11,706,12,706,10019,1,707,1,707,1,707,1,707,1, - 708,1,708,1,708,3,708,10029,8,708,1,709,1,709,1,709,1,709,1,709, - 1,709,1,709,1,709,1,709,1,709,1,709,1,709,1,709,1,709,1,709,1,709, - 3,709,10047,8,709,1,709,1,709,1,710,1,710,1,710,1,710,3,710,10055, - 8,710,1,711,1,711,1,712,1,712,1,712,1,712,1,712,3,712,10064,8,712, - 1,713,1,713,1,713,5,713,10069,8,713,10,713,12,713,10072,9,713,1, - 714,1,714,1,714,1,715,1,715,1,716,1,716,3,716,10081,8,716,1,717, - 1,717,1,718,1,718,3,718,10087,8,718,1,719,1,719,1,720,1,720,1,720, - 3,720,10094,8,720,1,721,1,721,1,721,3,721,10099,8,721,1,722,1,722, - 1,722,1,722,3,722,10105,8,722,1,723,1,723,3,723,10109,8,723,1,724, - 1,724,1,725,5,725,10114,8,725,10,725,12,725,10117,9,725,1,726,1, - 726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726, - 1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726,1,726, - 1,726,1,726,1,726,1,726,3,726,10146,8,726,1,727,1,727,1,727,1,727, - 1,728,1,728,1,728,1,728,1,728,1,728,1,728,1,728,1,728,1,728,1,728, - 1,728,1,728,1,728,3,728,10166,8,728,1,729,1,729,3,729,10170,8,729, - 1,730,1,730,1,730,1,730,1,730,1,731,1,731,1,731,1,731,1,731,1,731, - 1,732,1,732,1,732,3,732,10186,8,732,1,733,1,733,1,733,5,733,10191, - 8,733,10,733,12,733,10194,9,733,1,734,1,734,1,734,1,734,1,735,1, - 735,1,736,1,736,1,737,1,737,3,737,10206,8,737,1,737,1,737,1,737, - 1,737,5,737,10212,8,737,10,737,12,737,10215,9,737,1,738,1,738,1, - 738,1,738,1,738,1,738,1,738,1,738,1,738,1,738,1,739,1,739,1,739, - 1,739,1,739,5,739,10232,8,739,10,739,12,739,10235,9,739,1,740,1, - 740,1,740,3,740,10240,8,740,1,741,1,741,1,741,1,741,1,741,1,741, - 1,741,1,741,1,742,1,742,3,742,10252,8,742,1,743,4,743,10255,8,743, - 11,743,12,743,10256,1,744,1,744,1,744,1,744,1,744,1,745,1,745,1, - 745,3,745,10267,8,745,1,746,1,746,1,746,1,747,1,747,1,747,1,747, - 1,747,1,748,1,748,1,748,1,748,1,748,1,749,1,749,1,749,1,749,1,749, - 1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749,1,749, - 1,749,3,749,10299,8,749,1,750,1,750,1,750,3,750,10304,8,750,1,751, - 1,751,1,751,1,751,1,751,5,751,10311,8,751,10,751,12,751,10314,9, - 751,1,751,1,751,3,751,10318,8,751,1,752,1,752,3,752,10322,8,752, - 1,753,1,753,1,753,3,753,10327,8,753,1,754,1,754,1,755,1,755,1,755, - 1,755,1,755,1,755,1,755,1,755,1,755,1,756,1,756,1,756,3,756,10343, - 8,756,1,757,1,757,1,757,1,757,1,757,1,758,1,758,1,759,1,759,1,759, - 1,759,1,759,1,759,1,759,1,759,1,759,3,759,10361,8,759,1,759,3,759, - 10364,8,759,1,759,1,759,1,760,1,760,3,760,10370,8,760,1,761,1,761, - 1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761, - 1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761,1,761, - 1,761,1,761,3,761,10398,8,761,1,762,1,762,1,762,1,762,1,762,1,762, - 1,762,1,762,3,762,10408,8,762,1,763,1,763,1,763,4,763,10413,8,763, - 11,763,12,763,10414,3,763,10417,8,763,1,764,1,764,1,764,3,764,10422, - 8,764,1,765,1,765,1,765,1,765,1,766,1,766,1,766,5,766,10431,8,766, - 10,766,12,766,10434,9,766,1,767,1,767,1,767,1,767,1,767,1,768,1, - 768,1,768,3,768,10444,8,768,1,769,1,769,1,769,1,769,1,769,1,769, - 1,769,1,770,1,770,1,770,1,771,1,771,1,771,1,771,1,771,1,771,1,771, - 1,771,1,771,3,771,10465,8,771,1,771,1,771,1,772,1,772,1,772,3,772, - 10472,8,772,1,773,1,773,1,773,5,773,10477,8,773,10,773,12,773,10480, - 9,773,1,774,1,774,1,774,3,774,10485,8,774,1,774,3,774,10488,8,774, - 1,775,1,775,1,775,1,775,1,775,1,775,1,775,1,775,1,775,3,775,10499, - 8,775,1,775,1,775,1,775,1,775,1,775,3,775,10506,8,775,3,775,10508, - 8,775,1,775,1,775,1,776,1,776,1,776,1,776,1,776,3,776,10517,8,776, - 1,777,1,777,1,777,5,777,10522,8,777,10,777,12,777,10525,9,777,1, - 778,1,778,1,778,3,778,10530,8,778,1,779,1,779,1,779,1,779,3,779, - 10536,8,779,1,780,1,780,3,780,10540,8,780,1,781,1,781,1,781,1,781, - 1,781,1,781,1,781,1,781,1,782,1,782,1,783,1,783,1,783,3,783,10555, - 8,783,1,784,1,784,1,784,1,784,1,784,1,784,1,784,1,784,1,784,1,784, - 1,784,1,784,1,784,1,784,1,784,3,784,10572,8,784,3,784,10574,8,784, - 1,785,1,785,1,785,1,785,1,785,1,786,1,786,1,786,1,786,1,787,1,787, - 1,787,1,788,1,788,1,788,1,788,1,789,1,789,1,789,1,789,1,790,1,790, - 3,790,10598,8,790,1,790,1,790,3,790,10602,8,790,1,791,1,791,1,791, - 1,791,1,791,1,791,1,791,1,791,1,791,3,791,10613,8,791,1,791,3,791, - 10616,8,791,1,792,1,792,3,792,10620,8,792,1,793,1,793,1,793,3,793, - 10625,8,793,1,794,4,794,10628,8,794,11,794,12,794,10629,1,795,1, - 795,1,795,1,795,1,795,1,796,1,796,1,796,5,796,10640,8,796,10,796, - 12,796,10643,9,796,1,797,1,797,1,797,3,797,10648,8,797,1,798,1,798, - 3,798,10652,8,798,1,799,1,799,3,799,10656,8,799,1,800,1,800,3,800, - 10660,8,800,1,801,1,801,1,801,3,801,10665,8,801,1,802,1,802,3,802, - 10669,8,802,1,803,1,803,1,804,1,804,3,804,10675,8,804,1,804,1,804, - 1,804,1,804,1,804,1,804,1,805,1,805,1,806,1,806,1,807,1,807,1,808, - 1,808,1,809,1,809,1,809,1,810,1,810,1,810,1,810,1,810,3,810,10699, - 8,810,1,810,0,1,1202,811,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28, - 30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72, - 74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112, - 114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144, - 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, - 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, - 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, - 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, - 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, - 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, - 338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368, - 370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400, - 402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432, - 434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464, - 466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496, - 498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528, - 530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560, - 562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592, - 594,596,598,600,602,604,606,608,610,612,614,616,618,620,622,624, - 626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656, - 658,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688, - 690,692,694,696,698,700,702,704,706,708,710,712,714,716,718,720, - 722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752, - 754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784, - 786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816, - 818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848, - 850,852,854,856,858,860,862,864,866,868,870,872,874,876,878,880, - 882,884,886,888,890,892,894,896,898,900,902,904,906,908,910,912, - 914,916,918,920,922,924,926,928,930,932,934,936,938,940,942,944, - 946,948,950,952,954,956,958,960,962,964,966,968,970,972,974,976, - 978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004,1006, - 1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032, - 1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058, - 1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084, - 1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110, - 1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136, - 1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162, - 1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188, - 1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214, - 1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240, - 1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266, - 1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292, - 1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318, - 1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344, - 1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370, - 1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396, - 1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422, - 1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448, - 1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474, - 1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500, - 1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526, - 1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552, - 1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578, - 1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604, - 1606,1608,1610,1612,1614,1616,1618,1620,0,69,2,0,195,195,357,357, - 2,0,66,66,311,311,2,0,99,99,311,311,3,0,66,66,99,99,311,311,2,0, - 133,133,191,191,2,0,245,245,325,325,2,0,10,10,94,94,2,0,162,162, - 356,356,2,0,180,180,221,221,5,0,30,30,281,281,322,322,345,345,347, - 347,2,0,64,64,94,94,2,0,345,345,347,347,2,0,200,200,224,224,9,0, - 30,30,160,160,165,165,179,179,219,219,227,227,335,335,338,338,438, - 438,3,0,113,113,277,277,329,329,2,0,53,53,78,78,3,0,173,173,252, - 252,255,255,5,0,30,30,88,88,182,182,232,232,362,362,2,0,92,92,226, - 226,1,0,448,449,2,0,92,92,407,407,2,0,334,334,407,407,2,0,211,211, - 289,289,3,0,314,314,350,350,445,445,2,0,64,64,68,68,5,0,212,212, - 322,322,343,343,354,354,455,456,2,0,10,10,53,53,3,0,211,211,289, - 289,442,442,5,0,92,92,175,175,226,226,316,316,342,342,3,0,175,175, - 316,316,342,342,3,0,109,109,128,128,344,344,4,0,88,88,182,182,232, - 232,362,362,2,0,151,151,245,245,2,0,306,306,326,326,1,0,31,32,2, - 0,99,99,342,342,2,0,201,201,327,327,2,0,59,59,97,97,2,0,213,213, - 245,245,2,0,313,313,407,407,2,0,207,207,261,261,4,0,113,113,115, - 115,119,119,126,126,2,0,353,353,477,477,2,0,384,385,399,399,1,0, - 384,385,1,0,411,412,1,0,18,19,2,0,117,117,122,122,5,0,10,10,16,17, - 21,21,23,23,25,25,1,0,12,13,3,0,9,9,14,14,27,27,2,0,30,30,56,56, - 3,0,39,39,73,73,95,95,2,0,166,166,188,188,2,0,297,297,450,450,2, - 0,208,208,282,282,3,0,30,30,34,34,90,90,6,0,9,10,12,17,21,21,23, - 23,25,25,27,27,2,0,20,20,22,22,1,0,483,486,11,0,124,124,129,249, - 251,252,254,303,305,379,433,452,455,469,471,471,473,473,475,475, - 478,488,5,0,106,118,120,123,125,125,127,128,472,472,4,0,30,52,54, - 70,72,105,454,454,5,0,304,304,418,424,504,504,513,513,521,635,2, - 0,62,62,116,116,2,0,10,10,20,20,2,0,167,167,507,507,2,0,144,144, - 210,210,36,0,33,33,35,35,43,45,53,53,57,57,61,61,92,92,116,116,123, - 123,130,130,144,144,153,153,157,157,161,161,167,167,172,172,207, - 207,210,210,232,232,240,240,258,258,261,262,272,272,286,286,300, - 300,306,306,312,312,316,317,326,326,353,353,433,434,477,477,490, - 502,506,512,514,518,520,520,11570,0,1623,1,0,0,0,2,1627,1,0,0,0, - 4,1637,1,0,0,0,6,1764,1,0,0,0,8,1766,1,0,0,0,10,1770,1,0,0,0,12, - 1773,1,0,0,0,14,1781,1,0,0,0,16,1786,1,0,0,0,18,1792,1,0,0,0,20, - 1813,1,0,0,0,22,1825,1,0,0,0,24,1827,1,0,0,0,26,1833,1,0,0,0,28, - 1843,1,0,0,0,30,1845,1,0,0,0,32,1854,1,0,0,0,34,1862,1,0,0,0,36, - 1868,1,0,0,0,38,1875,1,0,0,0,40,1877,1,0,0,0,42,1895,1,0,0,0,44, - 1900,1,0,0,0,46,1909,1,0,0,0,48,1911,1,0,0,0,50,1925,1,0,0,0,52, - 1927,1,0,0,0,54,1956,1,0,0,0,56,1958,1,0,0,0,58,1966,1,0,0,0,60, - 1976,1,0,0,0,62,1983,1,0,0,0,64,1989,1,0,0,0,66,2006,1,0,0,0,68, - 2011,1,0,0,0,70,2015,1,0,0,0,72,2017,1,0,0,0,74,2028,1,0,0,0,76, - 2032,1,0,0,0,78,2037,1,0,0,0,80,2042,1,0,0,0,82,2044,1,0,0,0,84, - 2056,1,0,0,0,86,2063,1,0,0,0,88,2065,1,0,0,0,90,2067,1,0,0,0,92, - 2069,1,0,0,0,94,2181,1,0,0,0,96,2183,1,0,0,0,98,2199,1,0,0,0,100, - 2201,1,0,0,0,102,2457,1,0,0,0,104,2464,1,0,0,0,106,2469,1,0,0,0, - 108,2474,1,0,0,0,110,2479,1,0,0,0,112,2487,1,0,0,0,114,2489,1,0, - 0,0,116,2496,1,0,0,0,118,2498,1,0,0,0,120,2506,1,0,0,0,122,2518, - 1,0,0,0,124,2534,1,0,0,0,126,2562,1,0,0,0,128,2564,1,0,0,0,130,2567, - 1,0,0,0,132,2575,1,0,0,0,134,2580,1,0,0,0,136,2611,1,0,0,0,138,2613, - 1,0,0,0,140,2640,1,0,0,0,142,2642,1,0,0,0,144,2646,1,0,0,0,146,2651, - 1,0,0,0,148,2658,1,0,0,0,150,2663,1,0,0,0,152,2701,1,0,0,0,154,2705, - 1,0,0,0,156,2712,1,0,0,0,158,2716,1,0,0,0,160,2718,1,0,0,0,162,2726, - 1,0,0,0,164,2737,1,0,0,0,166,2739,1,0,0,0,168,2747,1,0,0,0,170,2749, - 1,0,0,0,172,2798,1,0,0,0,174,2802,1,0,0,0,176,2809,1,0,0,0,178,2811, - 1,0,0,0,180,2819,1,0,0,0,182,2830,1,0,0,0,184,2834,1,0,0,0,186,2836, - 1,0,0,0,188,2841,1,0,0,0,190,2851,1,0,0,0,192,2862,1,0,0,0,194,2902, - 1,0,0,0,196,2907,1,0,0,0,198,2914,1,0,0,0,200,2916,1,0,0,0,202,2924, - 1,0,0,0,204,2927,1,0,0,0,206,2934,1,0,0,0,208,2994,1,0,0,0,210,2999, - 1,0,0,0,212,3006,1,0,0,0,214,3008,1,0,0,0,216,3016,1,0,0,0,218,3024, - 1,0,0,0,220,3029,1,0,0,0,222,3031,1,0,0,0,224,3039,1,0,0,0,226,3055, - 1,0,0,0,228,3066,1,0,0,0,230,3068,1,0,0,0,232,3072,1,0,0,0,234,3082, - 1,0,0,0,236,3090,1,0,0,0,238,3094,1,0,0,0,240,3096,1,0,0,0,242,3103, - 1,0,0,0,244,3125,1,0,0,0,246,3130,1,0,0,0,248,3137,1,0,0,0,250,3149, - 1,0,0,0,252,3154,1,0,0,0,254,3161,1,0,0,0,256,3163,1,0,0,0,258,3167, - 1,0,0,0,260,3181,1,0,0,0,262,3192,1,0,0,0,264,3205,1,0,0,0,266,3219, - 1,0,0,0,268,3221,1,0,0,0,270,3235,1,0,0,0,272,3243,1,0,0,0,274,3245, - 1,0,0,0,276,3252,1,0,0,0,278,3263,1,0,0,0,280,3274,1,0,0,0,282,3281, - 1,0,0,0,284,3284,1,0,0,0,286,3318,1,0,0,0,288,3322,1,0,0,0,290,3330, - 1,0,0,0,292,3332,1,0,0,0,294,3340,1,0,0,0,296,3355,1,0,0,0,298,3357, - 1,0,0,0,300,3364,1,0,0,0,302,3370,1,0,0,0,304,3374,1,0,0,0,306,3378, - 1,0,0,0,308,3380,1,0,0,0,310,3391,1,0,0,0,312,3393,1,0,0,0,314,3401, - 1,0,0,0,316,3415,1,0,0,0,318,3425,1,0,0,0,320,3427,1,0,0,0,322,3436, - 1,0,0,0,324,3439,1,0,0,0,326,3546,1,0,0,0,328,3548,1,0,0,0,330,3564, - 1,0,0,0,332,3567,1,0,0,0,334,3573,1,0,0,0,336,3590,1,0,0,0,338,3598, - 1,0,0,0,340,3600,1,0,0,0,342,3608,1,0,0,0,344,3613,1,0,0,0,346,3628, - 1,0,0,0,348,3630,1,0,0,0,350,3633,1,0,0,0,352,3635,1,0,0,0,354,3662, - 1,0,0,0,356,3667,1,0,0,0,358,3669,1,0,0,0,360,3676,1,0,0,0,362,3678, - 1,0,0,0,364,3744,1,0,0,0,366,3746,1,0,0,0,368,3761,1,0,0,0,370,3769, - 1,0,0,0,372,3792,1,0,0,0,374,3796,1,0,0,0,376,3816,1,0,0,0,378,3818, - 1,0,0,0,380,3827,1,0,0,0,382,3838,1,0,0,0,384,3853,1,0,0,0,386,3862, - 1,0,0,0,388,3867,1,0,0,0,390,3872,1,0,0,0,392,3877,1,0,0,0,394,3882, - 1,0,0,0,396,3884,1,0,0,0,398,3886,1,0,0,0,400,3895,1,0,0,0,402,3935, - 1,0,0,0,404,3941,1,0,0,0,406,3943,1,0,0,0,408,3958,1,0,0,0,410,3963, - 1,0,0,0,412,3966,1,0,0,0,414,3970,1,0,0,0,416,3975,1,0,0,0,418,3977, - 1,0,0,0,420,3979,1,0,0,0,422,3986,1,0,0,0,424,3990,1,0,0,0,426,3992, - 1,0,0,0,428,4000,1,0,0,0,430,4002,1,0,0,0,432,4006,1,0,0,0,434,4019, - 1,0,0,0,436,4024,1,0,0,0,438,4029,1,0,0,0,440,4043,1,0,0,0,442,4071, - 1,0,0,0,444,4073,1,0,0,0,446,4081,1,0,0,0,448,4087,1,0,0,0,450,4095, - 1,0,0,0,452,4107,1,0,0,0,454,4109,1,0,0,0,456,4224,1,0,0,0,458,4226, - 1,0,0,0,460,4230,1,0,0,0,462,4238,1,0,0,0,464,4249,1,0,0,0,466,4251, - 1,0,0,0,468,4255,1,0,0,0,470,4263,1,0,0,0,472,4269,1,0,0,0,474,4271, - 1,0,0,0,476,4316,1,0,0,0,478,4322,1,0,0,0,480,4324,1,0,0,0,482,4338, - 1,0,0,0,484,4371,1,0,0,0,486,4375,1,0,0,0,488,4380,1,0,0,0,490,4389, - 1,0,0,0,492,4393,1,0,0,0,494,4395,1,0,0,0,496,4420,1,0,0,0,498,4422, - 1,0,0,0,500,4442,1,0,0,0,502,4462,1,0,0,0,504,4482,1,0,0,0,506,4484, - 1,0,0,0,508,4490,1,0,0,0,510,4575,1,0,0,0,512,4600,1,0,0,0,514,4607, - 1,0,0,0,516,4623,1,0,0,0,518,4625,1,0,0,0,520,4627,1,0,0,0,522,4635, - 1,0,0,0,524,4641,1,0,0,0,526,4645,1,0,0,0,528,4653,1,0,0,0,530,4664, - 1,0,0,0,532,4813,1,0,0,0,534,4817,1,0,0,0,536,4910,1,0,0,0,538,4915, - 1,0,0,0,540,4919,1,0,0,0,542,4925,1,0,0,0,544,4993,1,0,0,0,546,4995, - 1,0,0,0,548,4999,1,0,0,0,550,5001,1,0,0,0,552,5028,1,0,0,0,554,5045, - 1,0,0,0,556,5047,1,0,0,0,558,5064,1,0,0,0,560,5124,1,0,0,0,562,5126, - 1,0,0,0,564,5137,1,0,0,0,566,5143,1,0,0,0,568,5145,1,0,0,0,570,5169, - 1,0,0,0,572,5175,1,0,0,0,574,5181,1,0,0,0,576,5183,1,0,0,0,578,5192, - 1,0,0,0,580,5204,1,0,0,0,582,5233,1,0,0,0,584,5235,1,0,0,0,586,5272, - 1,0,0,0,588,5276,1,0,0,0,590,5280,1,0,0,0,592,5284,1,0,0,0,594,5289, - 1,0,0,0,596,5291,1,0,0,0,598,5310,1,0,0,0,600,5323,1,0,0,0,602,5331, - 1,0,0,0,604,5333,1,0,0,0,606,5344,1,0,0,0,608,5348,1,0,0,0,610,5353, - 1,0,0,0,612,5360,1,0,0,0,614,5362,1,0,0,0,616,5383,1,0,0,0,618,5385, - 1,0,0,0,620,5391,1,0,0,0,622,5399,1,0,0,0,624,5415,1,0,0,0,626,5417, - 1,0,0,0,628,5423,1,0,0,0,630,5444,1,0,0,0,632,5453,1,0,0,0,634,5459, - 1,0,0,0,636,5461,1,0,0,0,638,5477,1,0,0,0,640,5479,1,0,0,0,642,5484, - 1,0,0,0,644,5486,1,0,0,0,646,5501,1,0,0,0,648,5509,1,0,0,0,650,5512, - 1,0,0,0,652,5521,1,0,0,0,654,5562,1,0,0,0,656,5572,1,0,0,0,658,5579, - 1,0,0,0,660,5581,1,0,0,0,662,5596,1,0,0,0,664,5598,1,0,0,0,666,5601, - 1,0,0,0,668,5609,1,0,0,0,670,5616,1,0,0,0,672,5622,1,0,0,0,674,5660, - 1,0,0,0,676,5674,1,0,0,0,678,5688,1,0,0,0,680,5712,1,0,0,0,682,5719, - 1,0,0,0,684,5724,1,0,0,0,686,5732,1,0,0,0,688,5735,1,0,0,0,690,5739, - 1,0,0,0,692,5746,1,0,0,0,694,5782,1,0,0,0,696,5789,1,0,0,0,698,5791, - 1,0,0,0,700,5804,1,0,0,0,702,5806,1,0,0,0,704,5851,1,0,0,0,706,5853, - 1,0,0,0,708,5888,1,0,0,0,710,5890,1,0,0,0,712,5892,1,0,0,0,714,5894, - 1,0,0,0,716,5902,1,0,0,0,718,5916,1,0,0,0,720,6386,1,0,0,0,722,6390, - 1,0,0,0,724,6395,1,0,0,0,726,6454,1,0,0,0,728,6458,1,0,0,0,730,6677, - 1,0,0,0,732,6679,1,0,0,0,734,6687,1,0,0,0,736,6703,1,0,0,0,738,6710, - 1,0,0,0,740,6712,1,0,0,0,742,6903,1,0,0,0,744,6905,1,0,0,0,746,6913, - 1,0,0,0,748,6921,1,0,0,0,750,6950,1,0,0,0,752,6952,1,0,0,0,754,6961, - 1,0,0,0,756,6969,1,0,0,0,758,7008,1,0,0,0,760,7022,1,0,0,0,762,7024, - 1,0,0,0,764,7044,1,0,0,0,766,7046,1,0,0,0,768,7059,1,0,0,0,770,7063, - 1,0,0,0,772,7065,1,0,0,0,774,7070,1,0,0,0,776,7072,1,0,0,0,778,7079, - 1,0,0,0,780,7081,1,0,0,0,782,7088,1,0,0,0,784,7140,1,0,0,0,786,7145, - 1,0,0,0,788,7157,1,0,0,0,790,7159,1,0,0,0,792,7171,1,0,0,0,794,7179, - 1,0,0,0,796,7181,1,0,0,0,798,7213,1,0,0,0,800,7215,1,0,0,0,802,7218, - 1,0,0,0,804,7226,1,0,0,0,806,7229,1,0,0,0,808,7233,1,0,0,0,810,7248, - 1,0,0,0,812,7252,1,0,0,0,814,7254,1,0,0,0,816,7265,1,0,0,0,818,7270, - 1,0,0,0,820,7284,1,0,0,0,822,7292,1,0,0,0,824,7294,1,0,0,0,826,7300, - 1,0,0,0,828,7305,1,0,0,0,830,7312,1,0,0,0,832,7340,1,0,0,0,834,7342, - 1,0,0,0,836,7421,1,0,0,0,838,7423,1,0,0,0,840,7425,1,0,0,0,842,7449, - 1,0,0,0,844,7454,1,0,0,0,846,7469,1,0,0,0,848,7481,1,0,0,0,850,7483, - 1,0,0,0,852,7491,1,0,0,0,854,7493,1,0,0,0,856,7498,1,0,0,0,858,7503, - 1,0,0,0,860,7507,1,0,0,0,862,7511,1,0,0,0,864,7515,1,0,0,0,866,7519, - 1,0,0,0,868,7526,1,0,0,0,870,7528,1,0,0,0,872,7531,1,0,0,0,874,7541, - 1,0,0,0,876,7559,1,0,0,0,878,7570,1,0,0,0,880,7572,1,0,0,0,882,7580, - 1,0,0,0,884,7585,1,0,0,0,886,7590,1,0,0,0,888,7592,1,0,0,0,890,7603, - 1,0,0,0,892,7609,1,0,0,0,894,7638,1,0,0,0,896,7645,1,0,0,0,898,7657, - 1,0,0,0,900,7660,1,0,0,0,902,7669,1,0,0,0,904,7693,1,0,0,0,906,7695, - 1,0,0,0,908,7697,1,0,0,0,910,7705,1,0,0,0,912,7721,1,0,0,0,914,7732, - 1,0,0,0,916,7737,1,0,0,0,918,7739,1,0,0,0,920,7770,1,0,0,0,922,7789, - 1,0,0,0,924,7802,1,0,0,0,926,7810,1,0,0,0,928,7822,1,0,0,0,930,7824, - 1,0,0,0,932,7835,1,0,0,0,934,7849,1,0,0,0,936,7853,1,0,0,0,938,7859, - 1,0,0,0,940,7862,1,0,0,0,942,7872,1,0,0,0,944,7890,1,0,0,0,946,7892, - 1,0,0,0,948,7895,1,0,0,0,950,7903,1,0,0,0,952,7911,1,0,0,0,954,7920, - 1,0,0,0,956,7928,1,0,0,0,958,7932,1,0,0,0,960,7942,1,0,0,0,962,7965, - 1,0,0,0,964,7967,1,0,0,0,966,7977,1,0,0,0,968,8002,1,0,0,0,970,8016, - 1,0,0,0,972,8018,1,0,0,0,974,8024,1,0,0,0,976,8032,1,0,0,0,978,8044, - 1,0,0,0,980,8046,1,0,0,0,982,8055,1,0,0,0,984,8071,1,0,0,0,986,8075, - 1,0,0,0,988,8080,1,0,0,0,990,8082,1,0,0,0,992,8090,1,0,0,0,994,8094, - 1,0,0,0,996,8096,1,0,0,0,998,8100,1,0,0,0,1000,8108,1,0,0,0,1002, - 8124,1,0,0,0,1004,8128,1,0,0,0,1006,8153,1,0,0,0,1008,8155,1,0,0, - 0,1010,8164,1,0,0,0,1012,8166,1,0,0,0,1014,8173,1,0,0,0,1016,8177, - 1,0,0,0,1018,8179,1,0,0,0,1020,8181,1,0,0,0,1022,8187,1,0,0,0,1024, - 8189,1,0,0,0,1026,8202,1,0,0,0,1028,8204,1,0,0,0,1030,8207,1,0,0, - 0,1032,8212,1,0,0,0,1034,8217,1,0,0,0,1036,8226,1,0,0,0,1038,8232, - 1,0,0,0,1040,8236,1,0,0,0,1042,8239,1,0,0,0,1044,8243,1,0,0,0,1046, - 8247,1,0,0,0,1048,8262,1,0,0,0,1050,8264,1,0,0,0,1052,8281,1,0,0, - 0,1054,8292,1,0,0,0,1056,8294,1,0,0,0,1058,8350,1,0,0,0,1060,8374, - 1,0,0,0,1062,8385,1,0,0,0,1064,8388,1,0,0,0,1066,8410,1,0,0,0,1068, - 8412,1,0,0,0,1070,8423,1,0,0,0,1072,8437,1,0,0,0,1074,8439,1,0,0, - 0,1076,8447,1,0,0,0,1078,8454,1,0,0,0,1080,8467,1,0,0,0,1082,8479, - 1,0,0,0,1084,8481,1,0,0,0,1086,8484,1,0,0,0,1088,8498,1,0,0,0,1090, - 8503,1,0,0,0,1092,8508,1,0,0,0,1094,8518,1,0,0,0,1096,8522,1,0,0, - 0,1098,8524,1,0,0,0,1100,8532,1,0,0,0,1102,8536,1,0,0,0,1104,8557, - 1,0,0,0,1106,8565,1,0,0,0,1108,8575,1,0,0,0,1110,8587,1,0,0,0,1112, - 8589,1,0,0,0,1114,8603,1,0,0,0,1116,8623,1,0,0,0,1118,8632,1,0,0, - 0,1120,8648,1,0,0,0,1122,8654,1,0,0,0,1124,8660,1,0,0,0,1126,8672, - 1,0,0,0,1128,8690,1,0,0,0,1130,8697,1,0,0,0,1132,8701,1,0,0,0,1134, - 8705,1,0,0,0,1136,8707,1,0,0,0,1138,8713,1,0,0,0,1140,8716,1,0,0, - 0,1142,8723,1,0,0,0,1144,8736,1,0,0,0,1146,8740,1,0,0,0,1148,8742, - 1,0,0,0,1150,8751,1,0,0,0,1152,8760,1,0,0,0,1154,8788,1,0,0,0,1156, - 8790,1,0,0,0,1158,8800,1,0,0,0,1160,8802,1,0,0,0,1162,8804,1,0,0, - 0,1164,8808,1,0,0,0,1166,8816,1,0,0,0,1168,8824,1,0,0,0,1170,8832, - 1,0,0,0,1172,8846,1,0,0,0,1174,8855,1,0,0,0,1176,8859,1,0,0,0,1178, - 8863,1,0,0,0,1180,8889,1,0,0,0,1182,8903,1,0,0,0,1184,8918,1,0,0, - 0,1186,8928,1,0,0,0,1188,8932,1,0,0,0,1190,8940,1,0,0,0,1192,8948, - 1,0,0,0,1194,8954,1,0,0,0,1196,8958,1,0,0,0,1198,8965,1,0,0,0,1200, - 8970,1,0,0,0,1202,8985,1,0,0,0,1204,9065,1,0,0,0,1206,9067,1,0,0, - 0,1208,9069,1,0,0,0,1210,9099,1,0,0,0,1212,9103,1,0,0,0,1214,9282, - 1,0,0,0,1216,9289,1,0,0,0,1218,9302,1,0,0,0,1220,9304,1,0,0,0,1222, - 9309,1,0,0,0,1224,9317,1,0,0,0,1226,9322,1,0,0,0,1228,9329,1,0,0, - 0,1230,9346,1,0,0,0,1232,9348,1,0,0,0,1234,9358,1,0,0,0,1236,9367, - 1,0,0,0,1238,9372,1,0,0,0,1240,9374,1,0,0,0,1242,9382,1,0,0,0,1244, - 9392,1,0,0,0,1246,9394,1,0,0,0,1248,9403,1,0,0,0,1250,9409,1,0,0, - 0,1252,9424,1,0,0,0,1254,9432,1,0,0,0,1256,9441,1,0,0,0,1258,9453, - 1,0,0,0,1260,9467,1,0,0,0,1262,9469,1,0,0,0,1264,9476,1,0,0,0,1266, - 9482,1,0,0,0,1268,9486,1,0,0,0,1270,9488,1,0,0,0,1272,9496,1,0,0, - 0,1274,9504,1,0,0,0,1276,9518,1,0,0,0,1278,9520,1,0,0,0,1280,9528, - 1,0,0,0,1282,9541,1,0,0,0,1284,9543,1,0,0,0,1286,9551,1,0,0,0,1288, - 9558,1,0,0,0,1290,9571,1,0,0,0,1292,9581,1,0,0,0,1294,9583,1,0,0, - 0,1296,9585,1,0,0,0,1298,9599,1,0,0,0,1300,9628,1,0,0,0,1302,9637, - 1,0,0,0,1304,9644,1,0,0,0,1306,9646,1,0,0,0,1308,9653,1,0,0,0,1310, - 9657,1,0,0,0,1312,9665,1,0,0,0,1314,9669,1,0,0,0,1316,9671,1,0,0, - 0,1318,9690,1,0,0,0,1320,9694,1,0,0,0,1322,9697,1,0,0,0,1324,9704, - 1,0,0,0,1326,9709,1,0,0,0,1328,9711,1,0,0,0,1330,9727,1,0,0,0,1332, - 9729,1,0,0,0,1334,9737,1,0,0,0,1336,9741,1,0,0,0,1338,9749,1,0,0, - 0,1340,9751,1,0,0,0,1342,9753,1,0,0,0,1344,9762,1,0,0,0,1346,9796, - 1,0,0,0,1348,9798,1,0,0,0,1350,9800,1,0,0,0,1352,9802,1,0,0,0,1354, - 9804,1,0,0,0,1356,9806,1,0,0,0,1358,9820,1,0,0,0,1360,9825,1,0,0, - 0,1362,9832,1,0,0,0,1364,9834,1,0,0,0,1366,9839,1,0,0,0,1368,9841, - 1,0,0,0,1370,9855,1,0,0,0,1372,9861,1,0,0,0,1374,9867,1,0,0,0,1376, - 9873,1,0,0,0,1378,9881,1,0,0,0,1380,9890,1,0,0,0,1382,9892,1,0,0, - 0,1384,9894,1,0,0,0,1386,9948,1,0,0,0,1388,9950,1,0,0,0,1390,9952, - 1,0,0,0,1392,9954,1,0,0,0,1394,9956,1,0,0,0,1396,9963,1,0,0,0,1398, - 9986,1,0,0,0,1400,9988,1,0,0,0,1402,9994,1,0,0,0,1404,9998,1,0,0, - 0,1406,10000,1,0,0,0,1408,10007,1,0,0,0,1410,10014,1,0,0,0,1412, - 10017,1,0,0,0,1414,10021,1,0,0,0,1416,10028,1,0,0,0,1418,10030,1, - 0,0,0,1420,10054,1,0,0,0,1422,10056,1,0,0,0,1424,10063,1,0,0,0,1426, - 10065,1,0,0,0,1428,10073,1,0,0,0,1430,10076,1,0,0,0,1432,10080,1, - 0,0,0,1434,10082,1,0,0,0,1436,10086,1,0,0,0,1438,10088,1,0,0,0,1440, - 10093,1,0,0,0,1442,10098,1,0,0,0,1444,10104,1,0,0,0,1446,10108,1, - 0,0,0,1448,10110,1,0,0,0,1450,10115,1,0,0,0,1452,10145,1,0,0,0,1454, - 10147,1,0,0,0,1456,10165,1,0,0,0,1458,10169,1,0,0,0,1460,10171,1, - 0,0,0,1462,10176,1,0,0,0,1464,10185,1,0,0,0,1466,10187,1,0,0,0,1468, - 10195,1,0,0,0,1470,10199,1,0,0,0,1472,10201,1,0,0,0,1474,10205,1, - 0,0,0,1476,10216,1,0,0,0,1478,10233,1,0,0,0,1480,10239,1,0,0,0,1482, - 10241,1,0,0,0,1484,10251,1,0,0,0,1486,10254,1,0,0,0,1488,10258,1, - 0,0,0,1490,10266,1,0,0,0,1492,10268,1,0,0,0,1494,10271,1,0,0,0,1496, - 10276,1,0,0,0,1498,10281,1,0,0,0,1500,10303,1,0,0,0,1502,10317,1, - 0,0,0,1504,10321,1,0,0,0,1506,10326,1,0,0,0,1508,10328,1,0,0,0,1510, - 10330,1,0,0,0,1512,10342,1,0,0,0,1514,10344,1,0,0,0,1516,10349,1, - 0,0,0,1518,10351,1,0,0,0,1520,10369,1,0,0,0,1522,10397,1,0,0,0,1524, - 10407,1,0,0,0,1526,10416,1,0,0,0,1528,10421,1,0,0,0,1530,10423,1, - 0,0,0,1532,10427,1,0,0,0,1534,10435,1,0,0,0,1536,10443,1,0,0,0,1538, - 10445,1,0,0,0,1540,10452,1,0,0,0,1542,10455,1,0,0,0,1544,10471,1, - 0,0,0,1546,10473,1,0,0,0,1548,10487,1,0,0,0,1550,10489,1,0,0,0,1552, - 10516,1,0,0,0,1554,10518,1,0,0,0,1556,10529,1,0,0,0,1558,10535,1, - 0,0,0,1560,10539,1,0,0,0,1562,10541,1,0,0,0,1564,10549,1,0,0,0,1566, - 10554,1,0,0,0,1568,10573,1,0,0,0,1570,10575,1,0,0,0,1572,10580,1, - 0,0,0,1574,10584,1,0,0,0,1576,10587,1,0,0,0,1578,10591,1,0,0,0,1580, - 10601,1,0,0,0,1582,10615,1,0,0,0,1584,10619,1,0,0,0,1586,10624,1, - 0,0,0,1588,10627,1,0,0,0,1590,10631,1,0,0,0,1592,10636,1,0,0,0,1594, - 10647,1,0,0,0,1596,10651,1,0,0,0,1598,10655,1,0,0,0,1600,10659,1, - 0,0,0,1602,10664,1,0,0,0,1604,10668,1,0,0,0,1606,10670,1,0,0,0,1608, - 10672,1,0,0,0,1610,10682,1,0,0,0,1612,10684,1,0,0,0,1614,10686,1, - 0,0,0,1616,10688,1,0,0,0,1618,10690,1,0,0,0,1620,10698,1,0,0,0,1622, - 1624,3,4,2,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624,1625,1,0,0, - 0,1625,1626,5,0,0,1,1626,1,1,0,0,0,1627,1628,3,1394,697,0,1628,3, - 1,0,0,0,1629,1631,3,6,3,0,1630,1632,5,7,0,0,1631,1630,1,0,0,0,1631, - 1632,1,0,0,0,1632,1638,1,0,0,0,1633,1634,3,6,3,0,1634,1635,5,7,0, - 0,1635,1636,3,4,2,0,1636,1638,1,0,0,0,1637,1629,1,0,0,0,1637,1633, - 1,0,0,0,1638,5,1,0,0,0,1639,1765,3,450,225,0,1640,1765,3,824,412, - 0,1641,1765,3,814,407,0,1642,1765,3,816,408,0,1643,1765,3,576,288, - 0,1644,1765,3,830,415,0,1645,1765,3,476,238,0,1646,1765,3,320,160, - 0,1647,1765,3,326,163,0,1648,1765,3,336,168,0,1649,1765,3,362,181, - 0,1650,1765,3,668,334,0,1651,1765,3,36,18,0,1652,1765,3,726,363, - 0,1653,1765,3,730,365,0,1654,1765,3,742,371,0,1655,1765,3,732,366, - 0,1656,1765,3,740,370,0,1657,1765,3,382,191,0,1658,1765,3,278,139, - 0,1659,1765,3,826,413,0,1660,1765,3,94,47,0,1661,1765,3,718,359, - 0,1662,1765,3,132,66,0,1663,1765,3,750,375,0,1664,1765,3,30,15,0, - 1665,1765,3,26,13,0,1666,1765,3,758,379,0,1667,1765,3,260,130,0, - 1668,1765,3,836,418,0,1669,1765,3,834,417,0,1670,1765,3,378,189, - 0,1671,1765,3,848,424,0,1672,1765,3,10,5,0,1673,1765,3,90,45,0,1674, - 1765,3,138,69,0,1675,1765,3,842,421,0,1676,1765,3,532,266,0,1677, - 1765,3,84,42,0,1678,1765,3,140,70,0,1679,1765,3,398,199,0,1680,1765, - 3,262,131,0,1681,1765,3,454,227,0,1682,1765,3,694,347,0,1683,1765, - 3,840,420,0,1684,1765,3,828,414,0,1685,1765,3,314,157,0,1686,1765, - 3,328,164,0,1687,1765,3,354,177,0,1688,1765,3,364,182,0,1689,1765, - 3,614,307,0,1690,1765,3,34,17,0,1691,1765,3,268,134,0,1692,1765, - 3,480,240,0,1693,1765,3,494,247,0,1694,1765,3,744,372,0,1695,1765, - 3,496,248,0,1696,1765,3,380,190,0,1697,1765,3,294,147,0,1698,1765, - 3,40,20,0,1699,1765,3,276,138,0,1700,1765,3,170,85,0,1701,1765,3, - 752,376,0,1702,1765,3,258,129,0,1703,1765,3,308,154,0,1704,1765, - 3,702,351,0,1705,1765,3,402,201,0,1706,1765,3,442,221,0,1707,1765, - 3,12,6,0,1708,1765,3,24,12,0,1709,1765,3,372,186,0,1710,1765,3,802, - 401,0,1711,1765,3,898,449,0,1712,1765,3,950,475,0,1713,1765,3,456, - 228,0,1714,1765,3,926,463,0,1715,1765,3,92,46,0,1716,1765,3,688, - 344,0,1717,1765,3,698,349,0,1718,1765,3,502,251,0,1719,1765,3,504, - 252,0,1720,1765,3,506,253,0,1721,1765,3,510,255,0,1722,1765,3,760, - 380,0,1723,1765,3,312,156,0,1724,1765,3,706,353,0,1725,1765,3,32, - 16,0,1726,1765,3,376,188,0,1727,1765,3,818,409,0,1728,1765,3,894, - 447,0,1729,1765,3,876,438,0,1730,1765,3,542,271,0,1731,1765,3,550, - 275,0,1732,1765,3,568,284,0,1733,1765,3,366,183,0,1734,1765,3,586, - 293,0,1735,1765,3,900,450,0,1736,1765,3,918,459,0,1737,1765,3,780, - 390,0,1738,1765,3,274,137,0,1739,1765,3,800,400,0,1740,1765,3,930, - 465,0,1741,1765,3,776,388,0,1742,1765,3,888,444,0,1743,1765,3,508, - 254,0,1744,1765,3,708,354,0,1745,1765,3,676,338,0,1746,1765,3,674, - 337,0,1747,1765,3,678,339,0,1748,1765,3,720,360,0,1749,1765,3,552, - 276,0,1750,1765,3,570,285,0,1751,1765,3,762,381,0,1752,1765,3,536, - 268,0,1753,1765,3,958,479,0,1754,1765,3,784,392,0,1755,1765,3,528, - 264,0,1756,1765,3,782,391,0,1757,1765,3,940,470,0,1758,1765,3,846, - 423,0,1759,1765,3,72,36,0,1760,1765,3,48,24,0,1761,1765,3,82,41, - 0,1762,1765,3,796,398,0,1763,1765,3,8,4,0,1764,1639,1,0,0,0,1764, - 1640,1,0,0,0,1764,1641,1,0,0,0,1764,1642,1,0,0,0,1764,1643,1,0,0, - 0,1764,1644,1,0,0,0,1764,1645,1,0,0,0,1764,1646,1,0,0,0,1764,1647, - 1,0,0,0,1764,1648,1,0,0,0,1764,1649,1,0,0,0,1764,1650,1,0,0,0,1764, - 1651,1,0,0,0,1764,1652,1,0,0,0,1764,1653,1,0,0,0,1764,1654,1,0,0, - 0,1764,1655,1,0,0,0,1764,1656,1,0,0,0,1764,1657,1,0,0,0,1764,1658, - 1,0,0,0,1764,1659,1,0,0,0,1764,1660,1,0,0,0,1764,1661,1,0,0,0,1764, - 1662,1,0,0,0,1764,1663,1,0,0,0,1764,1664,1,0,0,0,1764,1665,1,0,0, - 0,1764,1666,1,0,0,0,1764,1667,1,0,0,0,1764,1668,1,0,0,0,1764,1669, - 1,0,0,0,1764,1670,1,0,0,0,1764,1671,1,0,0,0,1764,1672,1,0,0,0,1764, - 1673,1,0,0,0,1764,1674,1,0,0,0,1764,1675,1,0,0,0,1764,1676,1,0,0, - 0,1764,1677,1,0,0,0,1764,1678,1,0,0,0,1764,1679,1,0,0,0,1764,1680, - 1,0,0,0,1764,1681,1,0,0,0,1764,1682,1,0,0,0,1764,1683,1,0,0,0,1764, - 1684,1,0,0,0,1764,1685,1,0,0,0,1764,1686,1,0,0,0,1764,1687,1,0,0, - 0,1764,1688,1,0,0,0,1764,1689,1,0,0,0,1764,1690,1,0,0,0,1764,1691, - 1,0,0,0,1764,1692,1,0,0,0,1764,1693,1,0,0,0,1764,1694,1,0,0,0,1764, - 1695,1,0,0,0,1764,1696,1,0,0,0,1764,1697,1,0,0,0,1764,1698,1,0,0, - 0,1764,1699,1,0,0,0,1764,1700,1,0,0,0,1764,1701,1,0,0,0,1764,1702, - 1,0,0,0,1764,1703,1,0,0,0,1764,1704,1,0,0,0,1764,1705,1,0,0,0,1764, - 1706,1,0,0,0,1764,1707,1,0,0,0,1764,1708,1,0,0,0,1764,1709,1,0,0, - 0,1764,1710,1,0,0,0,1764,1711,1,0,0,0,1764,1712,1,0,0,0,1764,1713, - 1,0,0,0,1764,1714,1,0,0,0,1764,1715,1,0,0,0,1764,1716,1,0,0,0,1764, - 1717,1,0,0,0,1764,1718,1,0,0,0,1764,1719,1,0,0,0,1764,1720,1,0,0, - 0,1764,1721,1,0,0,0,1764,1722,1,0,0,0,1764,1723,1,0,0,0,1764,1724, - 1,0,0,0,1764,1725,1,0,0,0,1764,1726,1,0,0,0,1764,1727,1,0,0,0,1764, - 1728,1,0,0,0,1764,1729,1,0,0,0,1764,1730,1,0,0,0,1764,1731,1,0,0, - 0,1764,1732,1,0,0,0,1764,1733,1,0,0,0,1764,1734,1,0,0,0,1764,1735, - 1,0,0,0,1764,1736,1,0,0,0,1764,1737,1,0,0,0,1764,1738,1,0,0,0,1764, - 1739,1,0,0,0,1764,1740,1,0,0,0,1764,1741,1,0,0,0,1764,1742,1,0,0, - 0,1764,1743,1,0,0,0,1764,1744,1,0,0,0,1764,1745,1,0,0,0,1764,1746, - 1,0,0,0,1764,1747,1,0,0,0,1764,1748,1,0,0,0,1764,1749,1,0,0,0,1764, - 1750,1,0,0,0,1764,1751,1,0,0,0,1764,1752,1,0,0,0,1764,1753,1,0,0, - 0,1764,1754,1,0,0,0,1764,1755,1,0,0,0,1764,1756,1,0,0,0,1764,1757, - 1,0,0,0,1764,1758,1,0,0,0,1764,1759,1,0,0,0,1764,1760,1,0,0,0,1764, - 1761,1,0,0,0,1764,1762,1,0,0,0,1764,1763,1,0,0,0,1765,7,1,0,0,0, - 1766,1768,5,668,0,0,1767,1769,5,669,0,0,1768,1767,1,0,0,0,1768,1769, - 1,0,0,0,1769,9,1,0,0,0,1770,1771,5,433,0,0,1771,1772,3,1208,604, - 0,1772,11,1,0,0,0,1773,1774,5,46,0,0,1774,1775,5,311,0,0,1775,1776, - 3,1364,682,0,1776,1777,3,14,7,0,1777,1778,3,16,8,0,1778,13,1,0,0, - 0,1779,1782,5,105,0,0,1780,1782,1,0,0,0,1781,1779,1,0,0,0,1781,1780, - 1,0,0,0,1782,15,1,0,0,0,1783,1785,3,22,11,0,1784,1783,1,0,0,0,1785, - 1788,1,0,0,0,1786,1784,1,0,0,0,1786,1787,1,0,0,0,1787,17,1,0,0,0, - 1788,1786,1,0,0,0,1789,1791,3,20,10,0,1790,1789,1,0,0,0,1791,1794, - 1,0,0,0,1792,1790,1,0,0,0,1792,1793,1,0,0,0,1793,19,1,0,0,0,1794, - 1792,1,0,0,0,1795,1798,5,280,0,0,1796,1799,3,1356,678,0,1797,1799, - 5,78,0,0,1798,1796,1,0,0,0,1798,1797,1,0,0,0,1799,1814,1,0,0,0,1800, - 1801,7,0,0,0,1801,1802,5,280,0,0,1802,1814,3,1356,678,0,1803,1814, - 5,228,0,0,1804,1805,5,164,0,0,1805,1806,5,74,0,0,1806,1814,3,1362, - 681,0,1807,1808,5,364,0,0,1808,1809,5,361,0,0,1809,1814,3,1356,678, - 0,1810,1811,5,99,0,0,1811,1814,3,1368,684,0,1812,1814,3,1380,690, - 0,1813,1795,1,0,0,0,1813,1800,1,0,0,0,1813,1803,1,0,0,0,1813,1804, - 1,0,0,0,1813,1807,1,0,0,0,1813,1810,1,0,0,0,1813,1812,1,0,0,0,1814, - 21,1,0,0,0,1815,1826,3,20,10,0,1816,1817,5,341,0,0,1817,1826,3,1354, - 677,0,1818,1819,5,134,0,0,1819,1826,3,1368,684,0,1820,1821,5,311, - 0,0,1821,1826,3,1368,684,0,1822,1823,5,68,0,0,1823,1824,7,1,0,0, - 1824,1826,3,1368,684,0,1825,1815,1,0,0,0,1825,1816,1,0,0,0,1825, - 1818,1,0,0,0,1825,1820,1,0,0,0,1825,1822,1,0,0,0,1826,23,1,0,0,0, - 1827,1828,5,46,0,0,1828,1829,5,99,0,0,1829,1830,3,1364,682,0,1830, - 1831,3,14,7,0,1831,1832,3,16,8,0,1832,25,1,0,0,0,1833,1834,5,138, - 0,0,1834,1835,7,2,0,0,1835,1836,3,1366,683,0,1836,1837,3,14,7,0, - 1837,1838,3,18,9,0,1838,27,1,0,0,0,1839,1844,1,0,0,0,1840,1841,5, - 68,0,0,1841,1842,5,175,0,0,1842,1844,3,1338,669,0,1843,1839,1,0, - 0,0,1843,1840,1,0,0,0,1844,29,1,0,0,0,1845,1846,5,138,0,0,1846,1848, - 7,2,0,0,1847,1849,5,30,0,0,1848,1847,1,0,0,0,1848,1849,1,0,0,0,1849, - 1850,1,0,0,0,1850,1851,3,1366,683,0,1851,1852,3,28,14,0,1852,1853, - 3,78,39,0,1853,31,1,0,0,0,1854,1855,5,191,0,0,1855,1858,7,3,0,0, - 1856,1857,5,220,0,0,1857,1859,5,389,0,0,1858,1856,1,0,0,0,1858,1859, - 1,0,0,0,1859,1860,1,0,0,0,1860,1861,3,1368,684,0,1861,33,1,0,0,0, - 1862,1863,5,46,0,0,1863,1864,5,66,0,0,1864,1865,3,1364,682,0,1865, - 1866,3,14,7,0,1866,1867,3,16,8,0,1867,35,1,0,0,0,1868,1869,5,138, - 0,0,1869,1870,5,66,0,0,1870,1871,3,1366,683,0,1871,1872,3,38,19, - 0,1872,1873,5,99,0,0,1873,1874,3,1368,684,0,1874,37,1,0,0,0,1875, - 1876,7,4,0,0,1876,39,1,0,0,0,1877,1878,5,46,0,0,1878,1882,5,316, - 0,0,1879,1880,5,220,0,0,1880,1881,5,77,0,0,1881,1883,5,389,0,0,1882, - 1879,1,0,0,0,1882,1883,1,0,0,0,1883,1889,1,0,0,0,1884,1885,3,42, - 21,0,1885,1886,5,106,0,0,1886,1887,3,1366,683,0,1887,1890,1,0,0, - 0,1888,1890,3,1370,685,0,1889,1884,1,0,0,0,1889,1888,1,0,0,0,1890, - 1891,1,0,0,0,1891,1892,3,44,22,0,1892,41,1,0,0,0,1893,1896,3,1370, - 685,0,1894,1896,1,0,0,0,1895,1893,1,0,0,0,1895,1894,1,0,0,0,1896, - 43,1,0,0,0,1897,1899,3,46,23,0,1898,1897,1,0,0,0,1899,1902,1,0,0, - 0,1900,1898,1,0,0,0,1900,1901,1,0,0,0,1901,45,1,0,0,0,1902,1900, - 1,0,0,0,1903,1910,3,170,85,0,1904,1910,3,586,293,0,1905,1910,3,276, - 138,0,1906,1910,3,402,201,0,1907,1910,3,550,275,0,1908,1910,3,796, - 398,0,1909,1903,1,0,0,0,1909,1904,1,0,0,0,1909,1905,1,0,0,0,1909, - 1906,1,0,0,0,1909,1907,1,0,0,0,1909,1908,1,0,0,0,1910,47,1,0,0,0, - 1911,1913,5,326,0,0,1912,1914,7,5,0,0,1913,1912,1,0,0,0,1913,1914, - 1,0,0,0,1914,1915,1,0,0,0,1915,1916,3,50,25,0,1916,49,1,0,0,0,1917, - 1918,5,349,0,0,1918,1926,3,790,395,0,1919,1920,5,325,0,0,1920,1921, - 5,154,0,0,1921,1922,5,36,0,0,1922,1923,5,349,0,0,1923,1926,3,790, - 395,0,1924,1926,3,54,27,0,1925,1917,1,0,0,0,1925,1919,1,0,0,0,1925, - 1924,1,0,0,0,1926,51,1,0,0,0,1927,1928,3,56,28,0,1928,1929,7,6,0, - 0,1929,1930,3,58,29,0,1930,53,1,0,0,0,1931,1957,3,52,26,0,1932,1933, - 3,56,28,0,1933,1934,5,64,0,0,1934,1935,5,434,0,0,1935,1957,1,0,0, - 0,1936,1937,5,411,0,0,1937,1938,5,379,0,0,1938,1957,3,66,33,0,1939, - 1940,5,152,0,0,1940,1957,3,1356,678,0,1941,1942,5,316,0,0,1942,1957, - 3,1356,678,0,1943,1944,5,260,0,0,1944,1957,3,68,34,0,1945,1946,5, - 311,0,0,1946,1957,3,70,35,0,1947,1948,5,325,0,0,1948,1949,5,106, - 0,0,1949,1957,3,70,35,0,1950,1951,5,376,0,0,1951,1952,5,272,0,0, - 1952,1957,3,1226,613,0,1953,1954,5,349,0,0,1954,1955,5,330,0,0,1955, - 1957,3,1356,678,0,1956,1931,1,0,0,0,1956,1932,1,0,0,0,1956,1936, - 1,0,0,0,1956,1939,1,0,0,0,1956,1941,1,0,0,0,1956,1943,1,0,0,0,1956, - 1945,1,0,0,0,1956,1947,1,0,0,0,1956,1950,1,0,0,0,1956,1953,1,0,0, - 0,1957,55,1,0,0,0,1958,1963,3,1370,685,0,1959,1960,5,11,0,0,1960, - 1962,3,1370,685,0,1961,1959,1,0,0,0,1962,1965,1,0,0,0,1963,1961, - 1,0,0,0,1963,1964,1,0,0,0,1964,57,1,0,0,0,1965,1963,1,0,0,0,1966, - 1971,3,60,30,0,1967,1968,5,6,0,0,1968,1970,3,60,30,0,1969,1967,1, - 0,0,0,1970,1973,1,0,0,0,1971,1969,1,0,0,0,1971,1972,1,0,0,0,1972, - 59,1,0,0,0,1973,1971,1,0,0,0,1974,1977,3,64,32,0,1975,1977,3,290, - 145,0,1976,1974,1,0,0,0,1976,1975,1,0,0,0,1977,61,1,0,0,0,1978,1979, - 5,293,0,0,1979,1984,7,7,0,0,1980,1981,5,303,0,0,1981,1984,5,293, - 0,0,1982,1984,5,323,0,0,1983,1978,1,0,0,0,1983,1980,1,0,0,0,1983, - 1982,1,0,0,0,1984,63,1,0,0,0,1985,1990,5,96,0,0,1986,1990,5,60,0, - 0,1987,1990,5,80,0,0,1988,1990,3,70,35,0,1989,1985,1,0,0,0,1989, - 1986,1,0,0,0,1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,65,1,0,0,0, - 1991,2007,3,1356,678,0,1992,2007,3,1380,690,0,1993,1994,3,1150,575, - 0,1994,1995,3,1356,678,0,1995,1996,3,1154,577,0,1996,2007,1,0,0, - 0,1997,1998,3,1150,575,0,1998,1999,5,2,0,0,1999,2000,3,1354,677, - 0,2000,2001,5,3,0,0,2001,2002,3,1356,678,0,2002,2007,1,0,0,0,2003, - 2007,3,290,145,0,2004,2007,5,53,0,0,2005,2007,5,245,0,0,2006,1991, - 1,0,0,0,2006,1992,1,0,0,0,2006,1993,1,0,0,0,2006,1997,1,0,0,0,2006, - 2003,1,0,0,0,2006,2004,1,0,0,0,2006,2005,1,0,0,0,2007,67,1,0,0,0, - 2008,2012,3,1356,678,0,2009,2012,5,53,0,0,2010,2012,1,0,0,0,2011, - 2008,1,0,0,0,2011,2009,1,0,0,0,2011,2010,1,0,0,0,2012,69,1,0,0,0, - 2013,2016,3,1376,688,0,2014,2016,3,1356,678,0,2015,2013,1,0,0,0, - 2015,2014,1,0,0,0,2016,71,1,0,0,0,2017,2018,5,306,0,0,2018,2019, - 3,74,37,0,2019,73,1,0,0,0,2020,2029,3,76,38,0,2021,2022,5,411,0, - 0,2022,2029,5,379,0,0,2023,2024,5,349,0,0,2024,2025,5,235,0,0,2025, - 2029,5,242,0,0,2026,2027,5,325,0,0,2027,2029,5,106,0,0,2028,2020, - 1,0,0,0,2028,2021,1,0,0,0,2028,2023,1,0,0,0,2028,2026,1,0,0,0,2029, - 75,1,0,0,0,2030,2033,3,56,28,0,2031,2033,5,30,0,0,2032,2030,1,0, - 0,0,2032,2031,1,0,0,0,2033,77,1,0,0,0,2034,2035,5,326,0,0,2035,2038, - 3,50,25,0,2036,2038,3,72,36,0,2037,2034,1,0,0,0,2037,2036,1,0,0, - 0,2038,79,1,0,0,0,2039,2040,5,326,0,0,2040,2043,3,54,27,0,2041,2043, - 3,72,36,0,2042,2039,1,0,0,0,2042,2041,1,0,0,0,2043,81,1,0,0,0,2044, - 2054,5,328,0,0,2045,2055,3,56,28,0,2046,2047,5,411,0,0,2047,2055, - 5,379,0,0,2048,2049,5,349,0,0,2049,2050,5,235,0,0,2050,2055,5,242, - 0,0,2051,2052,5,325,0,0,2052,2055,5,106,0,0,2053,2055,5,30,0,0,2054, - 2045,1,0,0,0,2054,2046,1,0,0,0,2054,2048,1,0,0,0,2054,2051,1,0,0, - 0,2054,2053,1,0,0,0,2055,83,1,0,0,0,2056,2057,5,326,0,0,2057,2058, - 5,165,0,0,2058,2059,3,86,43,0,2059,2060,3,88,44,0,2060,85,1,0,0, - 0,2061,2064,5,30,0,0,2062,2064,3,1332,666,0,2063,2061,1,0,0,0,2063, - 2062,1,0,0,0,2064,87,1,0,0,0,2065,2066,7,8,0,0,2066,89,1,0,0,0,2067, - 2068,5,155,0,0,2068,91,1,0,0,0,2069,2070,5,187,0,0,2070,2071,7,9, - 0,0,2071,93,1,0,0,0,2072,2073,5,138,0,0,2073,2076,5,92,0,0,2074, - 2075,5,220,0,0,2075,2077,5,389,0,0,2076,2074,1,0,0,0,2076,2077,1, - 0,0,0,2077,2078,1,0,0,0,2078,2081,3,1072,536,0,2079,2082,3,96,48, - 0,2080,2082,3,98,49,0,2081,2079,1,0,0,0,2081,2080,1,0,0,0,2082,2182, - 1,0,0,0,2083,2084,5,138,0,0,2084,2085,5,92,0,0,2085,2086,5,30,0, - 0,2086,2087,5,68,0,0,2087,2088,5,344,0,0,2088,2092,3,1338,669,0, - 2089,2090,5,274,0,0,2090,2091,5,147,0,0,2091,2093,3,1368,684,0,2092, - 2089,1,0,0,0,2092,2093,1,0,0,0,2093,2094,1,0,0,0,2094,2095,5,326, - 0,0,2095,2096,5,344,0,0,2096,2097,3,1338,669,0,2097,2098,3,936,468, - 0,2098,2182,1,0,0,0,2099,2100,5,138,0,0,2100,2103,5,226,0,0,2101, - 2102,5,220,0,0,2102,2104,5,389,0,0,2103,2101,1,0,0,0,2103,2104,1, - 0,0,0,2104,2105,1,0,0,0,2105,2108,3,1334,667,0,2106,2109,3,96,48, - 0,2107,2109,3,100,50,0,2108,2106,1,0,0,0,2108,2107,1,0,0,0,2109, - 2182,1,0,0,0,2110,2111,5,138,0,0,2111,2112,5,226,0,0,2112,2113,5, - 30,0,0,2113,2114,5,68,0,0,2114,2115,5,344,0,0,2115,2119,3,1338,669, - 0,2116,2117,5,274,0,0,2117,2118,5,147,0,0,2118,2120,3,1368,684,0, - 2119,2116,1,0,0,0,2119,2120,1,0,0,0,2120,2121,1,0,0,0,2121,2122, - 5,326,0,0,2122,2123,5,344,0,0,2123,2124,3,1338,669,0,2124,2125,3, - 936,468,0,2125,2182,1,0,0,0,2126,2127,5,138,0,0,2127,2130,5,321, - 0,0,2128,2129,5,220,0,0,2129,2131,5,389,0,0,2130,2128,1,0,0,0,2130, - 2131,1,0,0,0,2131,2132,1,0,0,0,2132,2133,3,1334,667,0,2133,2134, - 3,96,48,0,2134,2182,1,0,0,0,2135,2136,5,138,0,0,2136,2139,5,369, - 0,0,2137,2138,5,220,0,0,2138,2140,5,389,0,0,2139,2137,1,0,0,0,2139, - 2140,1,0,0,0,2140,2141,1,0,0,0,2141,2142,3,1334,667,0,2142,2143, - 3,96,48,0,2143,2182,1,0,0,0,2144,2145,5,138,0,0,2145,2146,5,251, - 0,0,2146,2149,5,369,0,0,2147,2148,5,220,0,0,2148,2150,5,389,0,0, - 2149,2147,1,0,0,0,2149,2150,1,0,0,0,2150,2151,1,0,0,0,2151,2152, - 3,1334,667,0,2152,2153,3,96,48,0,2153,2182,1,0,0,0,2154,2155,5,138, - 0,0,2155,2156,5,251,0,0,2156,2157,5,369,0,0,2157,2158,5,30,0,0,2158, - 2159,5,68,0,0,2159,2160,5,344,0,0,2160,2164,3,1338,669,0,2161,2162, - 5,274,0,0,2162,2163,5,147,0,0,2163,2165,3,1368,684,0,2164,2161,1, - 0,0,0,2164,2165,1,0,0,0,2165,2166,1,0,0,0,2166,2167,5,326,0,0,2167, - 2168,5,344,0,0,2168,2169,3,1338,669,0,2169,2170,3,936,468,0,2170, - 2182,1,0,0,0,2171,2172,5,138,0,0,2172,2173,5,63,0,0,2173,2176,5, - 92,0,0,2174,2175,5,220,0,0,2175,2177,5,389,0,0,2176,2174,1,0,0,0, - 2176,2177,1,0,0,0,2177,2178,1,0,0,0,2178,2179,3,1072,536,0,2179, - 2180,3,96,48,0,2180,2182,1,0,0,0,2181,2072,1,0,0,0,2181,2083,1,0, - 0,0,2181,2099,1,0,0,0,2181,2110,1,0,0,0,2181,2126,1,0,0,0,2181,2135, - 1,0,0,0,2181,2144,1,0,0,0,2181,2154,1,0,0,0,2181,2171,1,0,0,0,2182, - 95,1,0,0,0,2183,2188,3,102,51,0,2184,2185,5,6,0,0,2185,2187,3,102, - 51,0,2186,2184,1,0,0,0,2187,2190,1,0,0,0,2188,2186,1,0,0,0,2188, - 2189,1,0,0,0,2189,97,1,0,0,0,2190,2188,1,0,0,0,2191,2192,5,435,0, - 0,2192,2193,5,278,0,0,2193,2194,3,1334,667,0,2194,2195,3,126,63, - 0,2195,2200,1,0,0,0,2196,2197,5,436,0,0,2197,2198,5,278,0,0,2198, - 2200,3,1334,667,0,2199,2191,1,0,0,0,2199,2196,1,0,0,0,2200,99,1, - 0,0,0,2201,2202,5,435,0,0,2202,2203,5,278,0,0,2203,2204,3,1334,667, - 0,2204,101,1,0,0,0,2205,2206,5,133,0,0,2206,2458,3,186,93,0,2207, - 2208,5,133,0,0,2208,2209,5,220,0,0,2209,2210,5,77,0,0,2210,2211, - 5,389,0,0,2211,2458,3,186,93,0,2212,2213,5,133,0,0,2213,2214,5,44, - 0,0,2214,2458,3,186,93,0,2215,2216,5,133,0,0,2216,2217,5,44,0,0, - 2217,2218,5,220,0,0,2218,2219,5,77,0,0,2219,2220,5,389,0,0,2220, - 2458,3,186,93,0,2221,2222,5,138,0,0,2222,2223,3,722,361,0,2223,2224, - 3,1370,685,0,2224,2225,3,104,52,0,2225,2458,1,0,0,0,2226,2227,5, - 138,0,0,2227,2228,3,722,361,0,2228,2229,3,1370,685,0,2229,2230,5, - 191,0,0,2230,2231,5,77,0,0,2231,2232,5,78,0,0,2232,2458,1,0,0,0, - 2233,2234,5,138,0,0,2234,2235,3,722,361,0,2235,2236,3,1370,685,0, - 2236,2237,5,326,0,0,2237,2238,5,77,0,0,2238,2239,5,78,0,0,2239,2458, - 1,0,0,0,2240,2241,5,138,0,0,2241,2242,3,722,361,0,2242,2243,3,1370, - 685,0,2243,2244,5,191,0,0,2244,2245,5,437,0,0,2245,2458,1,0,0,0, - 2246,2247,5,138,0,0,2247,2248,3,722,361,0,2248,2249,3,1370,685,0, - 2249,2250,5,191,0,0,2250,2251,5,437,0,0,2251,2252,5,220,0,0,2252, - 2253,5,389,0,0,2253,2458,1,0,0,0,2254,2255,5,138,0,0,2255,2256,3, - 722,361,0,2256,2257,3,1370,685,0,2257,2258,5,326,0,0,2258,2259,5, - 335,0,0,2259,2260,3,1362,681,0,2260,2458,1,0,0,0,2261,2262,5,138, - 0,0,2262,2263,3,722,361,0,2263,2264,3,1354,677,0,2264,2265,5,326, - 0,0,2265,2266,5,335,0,0,2266,2267,3,1362,681,0,2267,2458,1,0,0,0, - 2268,2269,5,138,0,0,2269,2270,3,722,361,0,2270,2271,3,1370,685,0, - 2271,2272,5,326,0,0,2272,2273,3,114,57,0,2273,2458,1,0,0,0,2274, - 2275,5,138,0,0,2275,2276,3,722,361,0,2276,2277,3,1370,685,0,2277, - 2278,5,306,0,0,2278,2279,3,114,57,0,2279,2458,1,0,0,0,2280,2281, - 5,138,0,0,2281,2282,3,722,361,0,2282,2283,3,1370,685,0,2283,2284, - 5,326,0,0,2284,2285,5,338,0,0,2285,2286,3,1370,685,0,2286,2458,1, - 0,0,0,2287,2288,5,138,0,0,2288,2289,3,722,361,0,2289,2290,3,1370, - 685,0,2290,2291,5,133,0,0,2291,2292,5,438,0,0,2292,2293,3,196,98, - 0,2293,2294,5,36,0,0,2294,2295,5,219,0,0,2295,2296,3,282,141,0,2296, - 2458,1,0,0,0,2297,2298,5,138,0,0,2298,2299,3,722,361,0,2299,2300, - 3,1370,685,0,2300,2301,3,122,61,0,2301,2458,1,0,0,0,2302,2303,5, - 138,0,0,2303,2304,3,722,361,0,2304,2305,3,1370,685,0,2305,2306,5, - 191,0,0,2306,2307,5,219,0,0,2307,2458,1,0,0,0,2308,2309,5,138,0, - 0,2309,2310,3,722,361,0,2310,2311,3,1370,685,0,2311,2312,5,191,0, - 0,2312,2313,5,219,0,0,2313,2314,5,220,0,0,2314,2315,5,389,0,0,2315, - 2458,1,0,0,0,2316,2317,5,191,0,0,2317,2318,3,722,361,0,2318,2319, - 5,220,0,0,2319,2320,5,389,0,0,2320,2321,3,1370,685,0,2321,2322,3, - 106,53,0,2322,2458,1,0,0,0,2323,2324,5,191,0,0,2324,2325,3,722,361, - 0,2325,2326,3,1370,685,0,2326,2327,3,106,53,0,2327,2458,1,0,0,0, - 2328,2329,5,138,0,0,2329,2330,3,722,361,0,2330,2331,3,1370,685,0, - 2331,2332,3,724,362,0,2332,2333,5,353,0,0,2333,2334,3,1116,558,0, - 2334,2335,3,108,54,0,2335,2336,3,110,55,0,2336,2458,1,0,0,0,2337, - 2338,5,138,0,0,2338,2339,3,722,361,0,2339,2340,3,1370,685,0,2340, - 2341,3,342,171,0,2341,2458,1,0,0,0,2342,2343,5,133,0,0,2343,2458, - 3,206,103,0,2344,2345,5,138,0,0,2345,2346,5,45,0,0,2346,2347,3,1338, - 669,0,2347,2348,3,438,219,0,2348,2458,1,0,0,0,2349,2350,5,365,0, - 0,2350,2351,5,45,0,0,2351,2458,3,1338,669,0,2352,2353,5,191,0,0, - 2353,2354,5,45,0,0,2354,2355,5,220,0,0,2355,2356,5,389,0,0,2356, - 2357,3,1338,669,0,2357,2358,3,106,53,0,2358,2458,1,0,0,0,2359,2360, - 5,191,0,0,2360,2361,5,45,0,0,2361,2362,3,1338,669,0,2362,2363,3, - 106,53,0,2363,2458,1,0,0,0,2364,2365,5,326,0,0,2365,2366,5,372,0, - 0,2366,2458,5,270,0,0,2367,2368,5,158,0,0,2368,2369,5,80,0,0,2369, - 2458,3,1338,669,0,2370,2371,5,326,0,0,2371,2372,5,372,0,0,2372,2458, - 5,158,0,0,2373,2374,5,326,0,0,2374,2458,5,439,0,0,2375,2376,5,326, - 0,0,2376,2458,5,360,0,0,2377,2378,5,193,0,0,2378,2379,5,350,0,0, - 2379,2458,3,1338,669,0,2380,2381,5,193,0,0,2381,2382,5,139,0,0,2382, - 2383,5,350,0,0,2383,2458,3,1338,669,0,2384,2385,5,193,0,0,2385,2386, - 5,305,0,0,2386,2387,5,350,0,0,2387,2458,3,1338,669,0,2388,2389,5, - 193,0,0,2389,2390,5,350,0,0,2390,2458,5,30,0,0,2391,2392,5,193,0, - 0,2392,2393,5,350,0,0,2393,2458,5,99,0,0,2394,2395,5,186,0,0,2395, - 2396,5,350,0,0,2396,2458,3,1338,669,0,2397,2398,5,186,0,0,2398,2399, - 5,350,0,0,2399,2458,5,30,0,0,2400,2401,5,186,0,0,2401,2402,5,350, - 0,0,2402,2458,5,99,0,0,2403,2404,5,193,0,0,2404,2405,5,314,0,0,2405, - 2458,3,1338,669,0,2406,2407,5,193,0,0,2407,2408,5,139,0,0,2408,2409, - 5,314,0,0,2409,2458,3,1338,669,0,2410,2411,5,193,0,0,2411,2412,5, - 305,0,0,2412,2413,5,314,0,0,2413,2458,3,1338,669,0,2414,2415,5,186, - 0,0,2415,2416,5,314,0,0,2416,2458,3,1338,669,0,2417,2418,5,228,0, - 0,2418,2458,3,1334,667,0,2419,2420,5,262,0,0,2420,2421,5,228,0,0, - 2421,2458,3,1334,667,0,2422,2423,5,268,0,0,2423,2458,3,522,261,0, - 2424,2425,5,77,0,0,2425,2458,5,268,0,0,2426,2427,5,275,0,0,2427, - 2428,5,94,0,0,2428,2458,3,1366,683,0,2429,2430,5,326,0,0,2430,2431, - 5,344,0,0,2431,2458,3,1338,669,0,2432,2433,5,326,0,0,2433,2458,3, - 114,57,0,2434,2435,5,306,0,0,2435,2458,3,114,57,0,2436,2437,5,305, - 0,0,2437,2438,5,219,0,0,2438,2458,3,112,56,0,2439,2440,5,193,0,0, - 2440,2441,5,407,0,0,2441,2442,5,242,0,0,2442,2458,5,320,0,0,2443, - 2444,5,186,0,0,2444,2445,5,407,0,0,2445,2446,5,242,0,0,2446,2458, - 5,320,0,0,2447,2448,5,209,0,0,2448,2449,5,407,0,0,2449,2450,5,242, - 0,0,2450,2458,5,320,0,0,2451,2452,5,262,0,0,2452,2453,5,209,0,0, - 2453,2454,5,407,0,0,2454,2455,5,242,0,0,2455,2458,5,320,0,0,2456, - 2458,3,342,171,0,2457,2205,1,0,0,0,2457,2207,1,0,0,0,2457,2212,1, - 0,0,0,2457,2215,1,0,0,0,2457,2221,1,0,0,0,2457,2226,1,0,0,0,2457, - 2233,1,0,0,0,2457,2240,1,0,0,0,2457,2246,1,0,0,0,2457,2254,1,0,0, - 0,2457,2261,1,0,0,0,2457,2268,1,0,0,0,2457,2274,1,0,0,0,2457,2280, - 1,0,0,0,2457,2287,1,0,0,0,2457,2297,1,0,0,0,2457,2302,1,0,0,0,2457, - 2308,1,0,0,0,2457,2316,1,0,0,0,2457,2323,1,0,0,0,2457,2328,1,0,0, - 0,2457,2337,1,0,0,0,2457,2342,1,0,0,0,2457,2344,1,0,0,0,2457,2349, - 1,0,0,0,2457,2352,1,0,0,0,2457,2359,1,0,0,0,2457,2364,1,0,0,0,2457, - 2367,1,0,0,0,2457,2370,1,0,0,0,2457,2373,1,0,0,0,2457,2375,1,0,0, - 0,2457,2377,1,0,0,0,2457,2380,1,0,0,0,2457,2384,1,0,0,0,2457,2388, - 1,0,0,0,2457,2391,1,0,0,0,2457,2394,1,0,0,0,2457,2397,1,0,0,0,2457, - 2400,1,0,0,0,2457,2403,1,0,0,0,2457,2406,1,0,0,0,2457,2410,1,0,0, - 0,2457,2414,1,0,0,0,2457,2417,1,0,0,0,2457,2419,1,0,0,0,2457,2422, - 1,0,0,0,2457,2424,1,0,0,0,2457,2426,1,0,0,0,2457,2429,1,0,0,0,2457, - 2432,1,0,0,0,2457,2434,1,0,0,0,2457,2436,1,0,0,0,2457,2439,1,0,0, - 0,2457,2443,1,0,0,0,2457,2447,1,0,0,0,2457,2451,1,0,0,0,2457,2456, - 1,0,0,0,2458,103,1,0,0,0,2459,2460,5,326,0,0,2460,2461,5,53,0,0, - 2461,2465,3,1160,580,0,2462,2463,5,191,0,0,2463,2465,5,53,0,0,2464, - 2459,1,0,0,0,2464,2462,1,0,0,0,2465,105,1,0,0,0,2466,2470,5,150, - 0,0,2467,2470,5,308,0,0,2468,2470,1,0,0,0,2469,2466,1,0,0,0,2469, - 2467,1,0,0,0,2469,2468,1,0,0,0,2470,107,1,0,0,0,2471,2472,5,43,0, - 0,2472,2475,3,522,261,0,2473,2475,1,0,0,0,2474,2471,1,0,0,0,2474, - 2473,1,0,0,0,2475,109,1,0,0,0,2476,2477,5,100,0,0,2477,2480,3,1160, - 580,0,2478,2480,1,0,0,0,2479,2476,1,0,0,0,2479,2478,1,0,0,0,2480, - 111,1,0,0,0,2481,2488,5,263,0,0,2482,2488,5,113,0,0,2483,2488,5, - 53,0,0,2484,2485,5,100,0,0,2485,2486,5,226,0,0,2486,2488,3,1338, - 669,0,2487,2481,1,0,0,0,2487,2482,1,0,0,0,2487,2483,1,0,0,0,2487, - 2484,1,0,0,0,2488,113,1,0,0,0,2489,2490,5,2,0,0,2490,2491,3,118, - 59,0,2491,2492,5,3,0,0,2492,115,1,0,0,0,2493,2494,5,105,0,0,2494, - 2497,3,114,57,0,2495,2497,1,0,0,0,2496,2493,1,0,0,0,2496,2495,1, - 0,0,0,2497,117,1,0,0,0,2498,2503,3,120,60,0,2499,2500,5,6,0,0,2500, - 2502,3,120,60,0,2501,2499,1,0,0,0,2502,2505,1,0,0,0,2503,2501,1, - 0,0,0,2503,2504,1,0,0,0,2504,119,1,0,0,0,2505,2503,1,0,0,0,2506, - 2515,3,1378,689,0,2507,2508,5,10,0,0,2508,2516,3,464,232,0,2509, - 2510,5,11,0,0,2510,2513,3,1378,689,0,2511,2512,5,10,0,0,2512,2514, - 3,464,232,0,2513,2511,1,0,0,0,2513,2514,1,0,0,0,2514,2516,1,0,0, - 0,2515,2507,1,0,0,0,2515,2509,1,0,0,0,2515,2516,1,0,0,0,2516,121, - 1,0,0,0,2517,2519,3,124,62,0,2518,2517,1,0,0,0,2519,2520,1,0,0,0, - 2520,2518,1,0,0,0,2520,2521,1,0,0,0,2521,123,1,0,0,0,2522,2526,5, - 307,0,0,2523,2524,3,14,7,0,2524,2525,3,290,145,0,2525,2527,1,0,0, - 0,2526,2523,1,0,0,0,2526,2527,1,0,0,0,2527,2535,1,0,0,0,2528,2532, - 5,326,0,0,2529,2533,3,286,143,0,2530,2531,5,438,0,0,2531,2533,3, - 196,98,0,2532,2529,1,0,0,0,2532,2530,1,0,0,0,2533,2535,1,0,0,0,2534, - 2522,1,0,0,0,2534,2528,1,0,0,0,2535,125,1,0,0,0,2536,2537,5,62,0, - 0,2537,2538,5,415,0,0,2538,2539,5,105,0,0,2539,2540,5,2,0,0,2540, - 2541,3,130,65,0,2541,2542,5,3,0,0,2542,2563,1,0,0,0,2543,2544,5, - 62,0,0,2544,2545,5,415,0,0,2545,2546,5,68,0,0,2546,2547,5,2,0,0, - 2547,2548,3,1278,639,0,2548,2549,5,3,0,0,2549,2563,1,0,0,0,2550, - 2551,5,62,0,0,2551,2552,5,415,0,0,2552,2553,5,64,0,0,2553,2554,5, - 2,0,0,2554,2555,3,1278,639,0,2555,2556,5,3,0,0,2556,2557,5,94,0, - 0,2557,2558,5,2,0,0,2558,2559,3,1278,639,0,2559,2560,5,3,0,0,2560, - 2563,1,0,0,0,2561,2563,5,53,0,0,2562,2536,1,0,0,0,2562,2543,1,0, - 0,0,2562,2550,1,0,0,0,2562,2561,1,0,0,0,2563,127,1,0,0,0,2564,2565, - 3,1376,688,0,2565,2566,3,1354,677,0,2566,129,1,0,0,0,2567,2572,3, - 128,64,0,2568,2569,5,6,0,0,2569,2571,3,128,64,0,2570,2568,1,0,0, - 0,2571,2574,1,0,0,0,2572,2570,1,0,0,0,2572,2573,1,0,0,0,2573,131, - 1,0,0,0,2574,2572,1,0,0,0,2575,2576,5,138,0,0,2576,2577,5,353,0, - 0,2577,2578,3,522,261,0,2578,2579,3,134,67,0,2579,133,1,0,0,0,2580, - 2585,3,136,68,0,2581,2582,5,6,0,0,2582,2584,3,136,68,0,2583,2581, - 1,0,0,0,2584,2587,1,0,0,0,2585,2583,1,0,0,0,2585,2586,1,0,0,0,2586, - 135,1,0,0,0,2587,2585,1,0,0,0,2588,2589,5,133,0,0,2589,2590,5,143, - 0,0,2590,2591,3,1100,550,0,2591,2592,3,106,53,0,2592,2612,1,0,0, - 0,2593,2594,5,191,0,0,2594,2597,5,143,0,0,2595,2596,5,220,0,0,2596, - 2598,5,389,0,0,2597,2595,1,0,0,0,2597,2598,1,0,0,0,2598,2599,1,0, - 0,0,2599,2600,3,1370,685,0,2600,2601,3,106,53,0,2601,2612,1,0,0, - 0,2602,2603,5,138,0,0,2603,2604,5,143,0,0,2604,2605,3,1370,685,0, - 2605,2606,3,724,362,0,2606,2607,5,353,0,0,2607,2608,3,1116,558,0, - 2608,2609,3,108,54,0,2609,2610,3,106,53,0,2610,2612,1,0,0,0,2611, - 2588,1,0,0,0,2611,2593,1,0,0,0,2611,2602,1,0,0,0,2612,137,1,0,0, - 0,2613,2616,5,157,0,0,2614,2617,3,952,476,0,2615,2617,5,30,0,0,2616, - 2614,1,0,0,0,2616,2615,1,0,0,0,2617,139,1,0,0,0,2618,2619,5,169, - 0,0,2619,2620,3,154,77,0,2620,2621,3,1334,667,0,2621,2622,3,212, - 106,0,2622,2623,3,142,71,0,2623,2624,3,144,72,0,2624,2625,3,146, - 73,0,2625,2626,3,156,78,0,2626,2627,3,14,7,0,2627,2628,3,148,74, - 0,2628,2629,3,1092,546,0,2629,2641,1,0,0,0,2630,2631,5,169,0,0,2631, - 2632,5,2,0,0,2632,2633,3,892,446,0,2633,2634,5,3,0,0,2634,2635,5, - 94,0,0,2635,2636,3,144,72,0,2636,2637,3,146,73,0,2637,2638,3,14, - 7,0,2638,2639,3,148,74,0,2639,2641,1,0,0,0,2640,2618,1,0,0,0,2640, - 2630,1,0,0,0,2641,141,1,0,0,0,2642,2643,7,10,0,0,2643,143,1,0,0, - 0,2644,2647,5,290,0,0,2645,2647,1,0,0,0,2646,2644,1,0,0,0,2646,2645, - 1,0,0,0,2647,145,1,0,0,0,2648,2652,3,1356,678,0,2649,2652,5,336, - 0,0,2650,2652,5,337,0,0,2651,2648,1,0,0,0,2651,2649,1,0,0,0,2651, - 2650,1,0,0,0,2652,147,1,0,0,0,2653,2659,3,150,75,0,2654,2655,5,2, - 0,0,2655,2656,3,160,80,0,2656,2657,5,3,0,0,2657,2659,1,0,0,0,2658, - 2653,1,0,0,0,2658,2654,1,0,0,0,2659,149,1,0,0,0,2660,2662,3,152, - 76,0,2661,2660,1,0,0,0,2662,2665,1,0,0,0,2663,2661,1,0,0,0,2663, - 2664,1,0,0,0,2664,151,1,0,0,0,2665,2663,1,0,0,0,2666,2702,5,107, - 0,0,2667,2702,5,112,0,0,2668,2669,5,183,0,0,2669,2670,3,832,416, - 0,2670,2671,3,1356,678,0,2671,2702,1,0,0,0,2672,2673,5,78,0,0,2673, - 2674,3,832,416,0,2674,2675,3,1356,678,0,2675,2702,1,0,0,0,2676,2702, - 5,171,0,0,2677,2702,5,216,0,0,2678,2679,5,291,0,0,2679,2680,3,832, - 416,0,2680,2681,3,1356,678,0,2681,2702,1,0,0,0,2682,2683,5,197,0, - 0,2683,2684,3,832,416,0,2684,2685,3,1356,678,0,2685,2702,1,0,0,0, - 2686,2687,5,209,0,0,2687,2688,5,291,0,0,2688,2702,3,214,107,0,2689, - 2690,5,209,0,0,2690,2691,5,291,0,0,2691,2702,5,9,0,0,2692,2693,5, - 209,0,0,2693,2694,5,77,0,0,2694,2695,5,78,0,0,2695,2702,3,214,107, - 0,2696,2697,5,209,0,0,2697,2698,5,78,0,0,2698,2702,3,214,107,0,2699, - 2700,5,194,0,0,2700,2702,3,1356,678,0,2701,2666,1,0,0,0,2701,2667, - 1,0,0,0,2701,2668,1,0,0,0,2701,2672,1,0,0,0,2701,2676,1,0,0,0,2701, - 2677,1,0,0,0,2701,2678,1,0,0,0,2701,2682,1,0,0,0,2701,2686,1,0,0, - 0,2701,2689,1,0,0,0,2701,2692,1,0,0,0,2701,2696,1,0,0,0,2701,2699, - 1,0,0,0,2702,153,1,0,0,0,2703,2706,5,107,0,0,2704,2706,1,0,0,0,2705, - 2703,1,0,0,0,2705,2704,1,0,0,0,2706,155,1,0,0,0,2707,2708,3,158, - 79,0,2708,2709,5,184,0,0,2709,2710,3,1356,678,0,2710,2713,1,0,0, - 0,2711,2713,1,0,0,0,2712,2707,1,0,0,0,2712,2711,1,0,0,0,2713,157, - 1,0,0,0,2714,2717,5,100,0,0,2715,2717,1,0,0,0,2716,2714,1,0,0,0, - 2716,2715,1,0,0,0,2717,159,1,0,0,0,2718,2723,3,162,81,0,2719,2720, - 5,6,0,0,2720,2722,3,162,81,0,2721,2719,1,0,0,0,2722,2725,1,0,0,0, - 2723,2721,1,0,0,0,2723,2724,1,0,0,0,2724,161,1,0,0,0,2725,2723,1, - 0,0,0,2726,2727,3,1378,689,0,2727,2728,3,164,82,0,2728,163,1,0,0, - 0,2729,2738,3,64,32,0,2730,2738,3,290,145,0,2731,2738,5,9,0,0,2732, - 2733,5,2,0,0,2733,2734,3,166,83,0,2734,2735,5,3,0,0,2735,2738,1, - 0,0,0,2736,2738,1,0,0,0,2737,2729,1,0,0,0,2737,2730,1,0,0,0,2737, - 2731,1,0,0,0,2737,2732,1,0,0,0,2737,2736,1,0,0,0,2738,165,1,0,0, - 0,2739,2744,3,168,84,0,2740,2741,5,6,0,0,2741,2743,3,168,84,0,2742, - 2740,1,0,0,0,2743,2746,1,0,0,0,2744,2742,1,0,0,0,2744,2745,1,0,0, - 0,2745,167,1,0,0,0,2746,2744,1,0,0,0,2747,2748,3,64,32,0,2748,169, - 1,0,0,0,2749,2750,5,46,0,0,2750,2751,3,172,86,0,2751,2755,5,92,0, - 0,2752,2753,5,220,0,0,2753,2754,5,77,0,0,2754,2756,5,389,0,0,2755, - 2752,1,0,0,0,2755,2756,1,0,0,0,2756,2757,1,0,0,0,2757,2788,3,1334, - 667,0,2758,2759,5,2,0,0,2759,2760,3,174,87,0,2760,2761,5,3,0,0,2761, - 2762,3,236,118,0,2762,2763,3,238,119,0,2763,2764,3,246,123,0,2764, - 2765,3,248,124,0,2765,2766,3,250,125,0,2766,2767,3,252,126,0,2767, - 2789,1,0,0,0,2768,2769,5,268,0,0,2769,2770,3,522,261,0,2770,2771, - 3,176,88,0,2771,2772,3,238,119,0,2772,2773,3,246,123,0,2773,2774, - 3,248,124,0,2774,2775,3,250,125,0,2775,2776,3,252,126,0,2776,2789, - 1,0,0,0,2777,2778,5,278,0,0,2778,2779,5,268,0,0,2779,2780,3,1334, - 667,0,2780,2781,3,176,88,0,2781,2782,3,126,63,0,2782,2783,3,238, - 119,0,2783,2784,3,246,123,0,2784,2785,3,248,124,0,2785,2786,3,250, - 125,0,2786,2787,3,252,126,0,2787,2789,1,0,0,0,2788,2758,1,0,0,0, - 2788,2768,1,0,0,0,2788,2777,1,0,0,0,2789,171,1,0,0,0,2790,2799,5, - 347,0,0,2791,2799,5,345,0,0,2792,2793,5,245,0,0,2793,2799,7,11,0, - 0,2794,2795,5,213,0,0,2795,2799,7,11,0,0,2796,2799,5,360,0,0,2797, - 2799,1,0,0,0,2798,2790,1,0,0,0,2798,2791,1,0,0,0,2798,2792,1,0,0, - 0,2798,2794,1,0,0,0,2798,2796,1,0,0,0,2798,2797,1,0,0,0,2799,173, - 1,0,0,0,2800,2803,3,178,89,0,2801,2803,1,0,0,0,2802,2800,1,0,0,0, - 2802,2801,1,0,0,0,2803,175,1,0,0,0,2804,2805,5,2,0,0,2805,2806,3, - 180,90,0,2806,2807,5,3,0,0,2807,2810,1,0,0,0,2808,2810,1,0,0,0,2809, - 2804,1,0,0,0,2809,2808,1,0,0,0,2810,177,1,0,0,0,2811,2816,3,182, - 91,0,2812,2813,5,6,0,0,2813,2815,3,182,91,0,2814,2812,1,0,0,0,2815, - 2818,1,0,0,0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,179,1,0,0, - 0,2818,2816,1,0,0,0,2819,2824,3,184,92,0,2820,2821,5,6,0,0,2821, - 2823,3,184,92,0,2822,2820,1,0,0,0,2823,2826,1,0,0,0,2824,2822,1, - 0,0,0,2824,2825,1,0,0,0,2825,181,1,0,0,0,2826,2824,1,0,0,0,2827, - 2831,3,206,103,0,2828,2831,3,200,100,0,2829,2831,3,186,93,0,2830, - 2827,1,0,0,0,2830,2828,1,0,0,0,2830,2829,1,0,0,0,2831,183,1,0,0, - 0,2832,2835,3,188,94,0,2833,2835,3,206,103,0,2834,2832,1,0,0,0,2834, - 2833,1,0,0,0,2835,185,1,0,0,0,2836,2837,3,1370,685,0,2837,2838,3, - 1116,558,0,2838,2839,3,338,169,0,2839,2840,3,190,95,0,2840,187,1, - 0,0,0,2841,2844,3,1370,685,0,2842,2843,5,105,0,0,2843,2845,5,273, - 0,0,2844,2842,1,0,0,0,2844,2845,1,0,0,0,2845,2846,1,0,0,0,2846,2847, - 3,190,95,0,2847,189,1,0,0,0,2848,2850,3,192,96,0,2849,2848,1,0,0, - 0,2850,2853,1,0,0,0,2851,2849,1,0,0,0,2851,2852,1,0,0,0,2852,191, - 1,0,0,0,2853,2851,1,0,0,0,2854,2855,5,45,0,0,2855,2856,3,1338,669, - 0,2856,2857,3,194,97,0,2857,2863,1,0,0,0,2858,2863,3,194,97,0,2859, - 2863,3,198,99,0,2860,2861,5,43,0,0,2861,2863,3,522,261,0,2862,2854, - 1,0,0,0,2862,2858,1,0,0,0,2862,2859,1,0,0,0,2862,2860,1,0,0,0,2863, - 193,1,0,0,0,2864,2865,5,77,0,0,2865,2903,5,78,0,0,2866,2903,5,78, - 0,0,2867,2868,5,98,0,0,2868,2869,3,662,331,0,2869,2870,3,254,127, - 0,2870,2903,1,0,0,0,2871,2872,5,85,0,0,2872,2873,5,236,0,0,2873, - 2874,3,662,331,0,2874,2875,3,254,127,0,2875,2903,1,0,0,0,2876,2877, - 5,42,0,0,2877,2878,5,2,0,0,2878,2879,3,1160,580,0,2879,2880,5,3, - 0,0,2880,2881,3,210,105,0,2881,2903,1,0,0,0,2882,2883,5,53,0,0,2883, - 2903,3,1202,601,0,2884,2885,5,438,0,0,2885,2886,3,196,98,0,2886, - 2894,5,36,0,0,2887,2888,5,219,0,0,2888,2895,3,282,141,0,2889,2890, - 5,2,0,0,2890,2891,3,1160,580,0,2891,2892,5,3,0,0,2892,2893,5,440, - 0,0,2893,2895,1,0,0,0,2894,2887,1,0,0,0,2894,2889,1,0,0,0,2895,2903, - 1,0,0,0,2896,2897,5,86,0,0,2897,2898,3,1334,667,0,2898,2899,3,212, - 106,0,2899,2900,3,220,110,0,2900,2901,3,228,114,0,2901,2903,1,0, - 0,0,2902,2864,1,0,0,0,2902,2866,1,0,0,0,2902,2867,1,0,0,0,2902,2871, - 1,0,0,0,2902,2876,1,0,0,0,2902,2882,1,0,0,0,2902,2884,1,0,0,0,2902, - 2896,1,0,0,0,2903,195,1,0,0,0,2904,2908,5,139,0,0,2905,2906,5,147, - 0,0,2906,2908,5,53,0,0,2907,2904,1,0,0,0,2907,2905,1,0,0,0,2908, - 197,1,0,0,0,2909,2915,5,54,0,0,2910,2911,5,77,0,0,2911,2915,5,54, - 0,0,2912,2913,5,69,0,0,2913,2915,7,8,0,0,2914,2909,1,0,0,0,2914, - 2910,1,0,0,0,2914,2912,1,0,0,0,2915,199,1,0,0,0,2916,2917,5,120, - 0,0,2917,2918,3,1334,667,0,2918,2919,3,202,101,0,2919,201,1,0,0, - 0,2920,2921,7,12,0,0,2921,2923,3,204,102,0,2922,2920,1,0,0,0,2923, - 2926,1,0,0,0,2924,2922,1,0,0,0,2924,2925,1,0,0,0,2925,203,1,0,0, - 0,2926,2924,1,0,0,0,2927,2928,7,13,0,0,2928,205,1,0,0,0,2929,2930, - 5,45,0,0,2930,2931,3,1338,669,0,2931,2932,3,208,104,0,2932,2935, - 1,0,0,0,2933,2935,3,208,104,0,2934,2929,1,0,0,0,2934,2933,1,0,0, - 0,2935,207,1,0,0,0,2936,2937,5,42,0,0,2937,2938,5,2,0,0,2938,2939, - 3,1160,580,0,2939,2940,5,3,0,0,2940,2941,3,438,219,0,2941,2995,1, - 0,0,0,2942,2954,5,98,0,0,2943,2944,5,2,0,0,2944,2945,3,214,107,0, - 2945,2946,5,3,0,0,2946,2947,3,218,109,0,2947,2948,3,662,331,0,2948, - 2949,3,254,127,0,2949,2950,3,438,219,0,2950,2955,1,0,0,0,2951,2952, - 3,256,128,0,2952,2953,3,438,219,0,2953,2955,1,0,0,0,2954,2943,1, - 0,0,0,2954,2951,1,0,0,0,2955,2995,1,0,0,0,2956,2957,5,85,0,0,2957, - 2969,5,236,0,0,2958,2959,5,2,0,0,2959,2960,3,214,107,0,2960,2961, - 5,3,0,0,2961,2962,3,218,109,0,2962,2963,3,662,331,0,2963,2964,3, - 254,127,0,2964,2965,3,438,219,0,2965,2970,1,0,0,0,2966,2967,3,256, - 128,0,2967,2968,3,438,219,0,2968,2970,1,0,0,0,2969,2958,1,0,0,0, - 2969,2966,1,0,0,0,2970,2995,1,0,0,0,2971,2972,5,199,0,0,2972,2973, - 3,594,297,0,2973,2974,5,2,0,0,2974,2975,3,222,111,0,2975,2976,5, - 3,0,0,2976,2977,3,218,109,0,2977,2978,3,662,331,0,2978,2979,3,254, - 127,0,2979,2980,3,226,113,0,2980,2981,3,438,219,0,2981,2995,1,0, - 0,0,2982,2983,5,63,0,0,2983,2984,5,236,0,0,2984,2985,5,2,0,0,2985, - 2986,3,214,107,0,2986,2987,5,3,0,0,2987,2988,5,86,0,0,2988,2989, - 3,1334,667,0,2989,2990,3,212,106,0,2990,2991,3,220,110,0,2991,2992, - 3,228,114,0,2992,2993,3,438,219,0,2993,2995,1,0,0,0,2994,2936,1, - 0,0,0,2994,2942,1,0,0,0,2994,2956,1,0,0,0,2994,2971,1,0,0,0,2994, - 2982,1,0,0,0,2995,209,1,0,0,0,2996,2997,5,262,0,0,2997,3000,5,228, - 0,0,2998,3000,1,0,0,0,2999,2996,1,0,0,0,2999,2998,1,0,0,0,3000,211, - 1,0,0,0,3001,3002,5,2,0,0,3002,3003,3,214,107,0,3003,3004,5,3,0, - 0,3004,3007,1,0,0,0,3005,3007,1,0,0,0,3006,3001,1,0,0,0,3006,3005, - 1,0,0,0,3007,213,1,0,0,0,3008,3013,3,216,108,0,3009,3010,5,6,0,0, - 3010,3012,3,216,108,0,3011,3009,1,0,0,0,3012,3015,1,0,0,0,3013,3011, - 1,0,0,0,3013,3014,1,0,0,0,3014,215,1,0,0,0,3015,3013,1,0,0,0,3016, - 3017,3,1370,685,0,3017,217,1,0,0,0,3018,3019,5,441,0,0,3019,3020, - 5,2,0,0,3020,3021,3,214,107,0,3021,3022,5,3,0,0,3022,3025,1,0,0, - 0,3023,3025,1,0,0,0,3024,3018,1,0,0,0,3024,3023,1,0,0,0,3025,219, - 1,0,0,0,3026,3027,5,249,0,0,3027,3030,7,14,0,0,3028,3030,1,0,0,0, - 3029,3026,1,0,0,0,3029,3028,1,0,0,0,3030,221,1,0,0,0,3031,3036,3, - 224,112,0,3032,3033,5,6,0,0,3033,3035,3,224,112,0,3034,3032,1,0, - 0,0,3035,3038,1,0,0,0,3036,3034,1,0,0,0,3036,3037,1,0,0,0,3037,223, - 1,0,0,0,3038,3036,1,0,0,0,3039,3040,3,600,300,0,3040,3047,5,105, - 0,0,3041,3048,3,682,341,0,3042,3043,5,271,0,0,3043,3044,5,2,0,0, - 3044,3045,3,682,341,0,3045,3046,5,3,0,0,3046,3048,1,0,0,0,3047,3041, - 1,0,0,0,3047,3042,1,0,0,0,3048,225,1,0,0,0,3049,3050,5,103,0,0,3050, - 3051,5,2,0,0,3051,3052,3,1160,580,0,3052,3053,5,3,0,0,3053,3056, - 1,0,0,0,3054,3056,1,0,0,0,3055,3049,1,0,0,0,3055,3054,1,0,0,0,3056, - 227,1,0,0,0,3057,3067,3,230,115,0,3058,3067,3,232,116,0,3059,3060, - 3,230,115,0,3060,3061,3,232,116,0,3061,3067,1,0,0,0,3062,3063,3, - 232,116,0,3063,3064,3,230,115,0,3064,3067,1,0,0,0,3065,3067,1,0, - 0,0,3066,3057,1,0,0,0,3066,3058,1,0,0,0,3066,3059,1,0,0,0,3066,3062, - 1,0,0,0,3066,3065,1,0,0,0,3067,229,1,0,0,0,3068,3069,5,80,0,0,3069, - 3070,5,362,0,0,3070,3071,3,234,117,0,3071,231,1,0,0,0,3072,3073, - 5,80,0,0,3073,3074,5,182,0,0,3074,3075,3,234,117,0,3075,233,1,0, - 0,0,3076,3077,5,262,0,0,3077,3083,5,132,0,0,3078,3083,5,308,0,0, - 3079,3083,5,150,0,0,3080,3081,5,326,0,0,3081,3083,7,15,0,0,3082, - 3076,1,0,0,0,3082,3078,1,0,0,0,3082,3079,1,0,0,0,3082,3080,1,0,0, - 0,3083,235,1,0,0,0,3084,3085,5,229,0,0,3085,3086,5,2,0,0,3086,3087, - 3,1332,666,0,3087,3088,5,3,0,0,3088,3091,1,0,0,0,3089,3091,1,0,0, - 0,3090,3084,1,0,0,0,3090,3089,1,0,0,0,3091,237,1,0,0,0,3092,3095, - 3,240,120,0,3093,3095,1,0,0,0,3094,3092,1,0,0,0,3094,3093,1,0,0, - 0,3095,239,1,0,0,0,3096,3097,5,278,0,0,3097,3098,5,147,0,0,3098, - 3099,3,1370,685,0,3099,3100,5,2,0,0,3100,3101,3,242,121,0,3101,3102, - 5,3,0,0,3102,241,1,0,0,0,3103,3108,3,244,122,0,3104,3105,5,6,0,0, - 3105,3107,3,244,122,0,3106,3104,1,0,0,0,3107,3110,1,0,0,0,3108,3106, - 1,0,0,0,3108,3109,1,0,0,0,3109,243,1,0,0,0,3110,3108,1,0,0,0,3111, - 3112,3,1370,685,0,3112,3113,3,606,303,0,3113,3114,3,608,304,0,3114, - 3126,1,0,0,0,3115,3116,3,1212,606,0,3116,3117,3,606,303,0,3117,3118, - 3,608,304,0,3118,3126,1,0,0,0,3119,3120,5,2,0,0,3120,3121,3,1160, - 580,0,3121,3122,5,3,0,0,3122,3123,3,606,303,0,3123,3124,3,608,304, - 0,3124,3126,1,0,0,0,3125,3111,1,0,0,0,3125,3115,1,0,0,0,3125,3119, - 1,0,0,0,3126,245,1,0,0,0,3127,3128,5,100,0,0,3128,3131,3,1338,669, - 0,3129,3131,1,0,0,0,3130,3127,1,0,0,0,3130,3129,1,0,0,0,3131,247, - 1,0,0,0,3132,3133,5,105,0,0,3133,3138,3,114,57,0,3134,3135,5,372, - 0,0,3135,3138,5,270,0,0,3136,3138,1,0,0,0,3137,3132,1,0,0,0,3137, - 3134,1,0,0,0,3137,3136,1,0,0,0,3138,249,1,0,0,0,3139,3140,5,80,0, - 0,3140,3146,5,161,0,0,3141,3147,5,191,0,0,3142,3143,5,182,0,0,3143, - 3147,5,313,0,0,3144,3145,5,285,0,0,3145,3147,5,313,0,0,3146,3141, - 1,0,0,0,3146,3142,1,0,0,0,3146,3144,1,0,0,0,3147,3150,1,0,0,0,3148, - 3150,1,0,0,0,3149,3139,1,0,0,0,3149,3148,1,0,0,0,3150,251,1,0,0, - 0,3151,3152,5,344,0,0,3152,3155,3,1338,669,0,3153,3155,1,0,0,0,3154, - 3151,1,0,0,0,3154,3153,1,0,0,0,3155,253,1,0,0,0,3156,3157,5,100, - 0,0,3157,3158,5,226,0,0,3158,3159,5,344,0,0,3159,3162,3,1338,669, - 0,3160,3162,1,0,0,0,3161,3156,1,0,0,0,3161,3160,1,0,0,0,3162,255, - 1,0,0,0,3163,3164,5,100,0,0,3164,3165,5,226,0,0,3165,3166,3,1338, - 669,0,3166,257,1,0,0,0,3167,3168,5,46,0,0,3168,3172,5,335,0,0,3169, - 3170,5,220,0,0,3170,3171,5,77,0,0,3171,3173,5,389,0,0,3172,3169, - 1,0,0,0,3172,3173,1,0,0,0,3173,3174,1,0,0,0,3174,3175,3,522,261, - 0,3175,3176,3,868,434,0,3176,3177,5,80,0,0,3177,3178,3,1278,639, - 0,3178,3179,5,64,0,0,3179,3180,3,1054,527,0,3180,259,1,0,0,0,3181, - 3182,5,138,0,0,3182,3185,5,335,0,0,3183,3184,5,220,0,0,3184,3186, - 5,389,0,0,3185,3183,1,0,0,0,3185,3186,1,0,0,0,3186,3187,1,0,0,0, - 3187,3188,3,522,261,0,3188,3189,5,326,0,0,3189,3190,5,335,0,0,3190, - 3191,3,1362,681,0,3191,261,1,0,0,0,3192,3193,5,46,0,0,3193,3194, - 3,172,86,0,3194,3198,5,92,0,0,3195,3196,5,220,0,0,3196,3197,5,77, - 0,0,3197,3199,5,389,0,0,3198,3195,1,0,0,0,3198,3199,1,0,0,0,3199, - 3200,1,0,0,0,3200,3201,3,264,132,0,3201,3202,5,36,0,0,3202,3203, - 3,958,479,0,3203,3204,3,266,133,0,3204,263,1,0,0,0,3205,3206,3,1334, - 667,0,3206,3207,3,212,106,0,3207,3208,3,246,123,0,3208,3209,3,248, - 124,0,3209,3210,3,250,125,0,3210,3211,3,252,126,0,3211,265,1,0,0, - 0,3212,3216,5,105,0,0,3213,3217,5,174,0,0,3214,3215,5,262,0,0,3215, - 3217,5,174,0,0,3216,3213,1,0,0,0,3216,3214,1,0,0,0,3217,3220,1,0, - 0,0,3218,3220,1,0,0,0,3219,3212,1,0,0,0,3219,3218,1,0,0,0,3220,267, - 1,0,0,0,3221,3222,5,46,0,0,3222,3223,3,272,136,0,3223,3224,5,251, - 0,0,3224,3228,5,369,0,0,3225,3226,5,220,0,0,3226,3227,5,77,0,0,3227, - 3229,5,389,0,0,3228,3225,1,0,0,0,3228,3229,1,0,0,0,3229,3230,1,0, - 0,0,3230,3231,3,270,135,0,3231,3232,5,36,0,0,3232,3233,3,958,479, - 0,3233,3234,3,266,133,0,3234,269,1,0,0,0,3235,3236,3,1334,667,0, - 3236,3237,3,212,106,0,3237,3238,3,246,123,0,3238,3239,3,116,58,0, - 3239,3240,3,252,126,0,3240,271,1,0,0,0,3241,3244,5,360,0,0,3242, - 3244,1,0,0,0,3243,3241,1,0,0,0,3243,3242,1,0,0,0,3244,273,1,0,0, - 0,3245,3246,5,298,0,0,3246,3247,5,251,0,0,3247,3248,5,369,0,0,3248, - 3249,3,590,295,0,3249,3250,3,1334,667,0,3250,3251,3,266,133,0,3251, - 275,1,0,0,0,3252,3253,5,46,0,0,3253,3254,3,172,86,0,3254,3258,5, - 321,0,0,3255,3256,5,220,0,0,3256,3257,5,77,0,0,3257,3259,5,389,0, - 0,3258,3255,1,0,0,0,3258,3259,1,0,0,0,3259,3260,1,0,0,0,3260,3261, - 3,1334,667,0,3261,3262,3,280,140,0,3262,277,1,0,0,0,3263,3264,5, - 138,0,0,3264,3267,5,321,0,0,3265,3266,5,220,0,0,3266,3268,5,389, - 0,0,3267,3265,1,0,0,0,3267,3268,1,0,0,0,3268,3269,1,0,0,0,3269,3270, - 3,1334,667,0,3270,3271,3,284,142,0,3271,279,1,0,0,0,3272,3275,3, - 284,142,0,3273,3275,1,0,0,0,3274,3272,1,0,0,0,3274,3273,1,0,0,0, - 3275,281,1,0,0,0,3276,3277,5,2,0,0,3277,3278,3,284,142,0,3278,3279, - 5,3,0,0,3279,3282,1,0,0,0,3280,3282,1,0,0,0,3281,3276,1,0,0,0,3281, - 3280,1,0,0,0,3282,283,1,0,0,0,3283,3285,3,286,143,0,3284,3283,1, - 0,0,0,3285,3286,1,0,0,0,3286,3284,1,0,0,0,3286,3287,1,0,0,0,3287, - 285,1,0,0,0,3288,3289,5,36,0,0,3289,3319,3,1120,560,0,3290,3291, - 5,148,0,0,3291,3319,3,290,145,0,3292,3319,5,173,0,0,3293,3294,5, - 225,0,0,3294,3295,3,288,144,0,3295,3296,3,290,145,0,3296,3319,1, - 0,0,0,3297,3298,5,252,0,0,3298,3319,3,290,145,0,3299,3300,5,255, - 0,0,3300,3319,3,290,145,0,3301,3302,5,262,0,0,3302,3319,7,16,0,0, - 3303,3304,5,274,0,0,3304,3305,5,147,0,0,3305,3319,3,522,261,0,3306, - 3307,5,321,0,0,3307,3308,5,259,0,0,3308,3319,3,522,261,0,3309,3310, - 5,333,0,0,3310,3311,3,14,7,0,3311,3312,3,290,145,0,3312,3319,1,0, - 0,0,3313,3314,5,307,0,0,3314,3316,3,14,7,0,3315,3317,3,290,145,0, - 3316,3315,1,0,0,0,3316,3317,1,0,0,0,3317,3319,1,0,0,0,3318,3288, - 1,0,0,0,3318,3290,1,0,0,0,3318,3292,1,0,0,0,3318,3293,1,0,0,0,3318, - 3297,1,0,0,0,3318,3299,1,0,0,0,3318,3301,1,0,0,0,3318,3303,1,0,0, - 0,3318,3306,1,0,0,0,3318,3309,1,0,0,0,3318,3313,1,0,0,0,3319,287, - 1,0,0,0,3320,3323,5,147,0,0,3321,3323,1,0,0,0,3322,3320,1,0,0,0, - 3322,3321,1,0,0,0,3323,289,1,0,0,0,3324,3331,3,1352,676,0,3325,3326, - 5,12,0,0,3326,3331,3,1352,676,0,3327,3328,5,13,0,0,3328,3331,3,1352, - 676,0,3329,3331,3,1362,681,0,3330,3324,1,0,0,0,3330,3325,1,0,0,0, - 3330,3327,1,0,0,0,3330,3329,1,0,0,0,3331,291,1,0,0,0,3332,3337,3, - 290,145,0,3333,3334,5,6,0,0,3334,3336,3,290,145,0,3335,3333,1,0, - 0,0,3336,3339,1,0,0,0,3337,3335,1,0,0,0,3337,3338,1,0,0,0,3338,293, - 1,0,0,0,3339,3337,1,0,0,0,3340,3341,5,46,0,0,3341,3342,3,616,308, - 0,3342,3343,3,296,148,0,3343,3344,3,306,153,0,3344,3345,5,238,0, - 0,3345,3351,3,1338,669,0,3346,3347,5,215,0,0,3347,3348,3,298,149, - 0,3348,3349,3,300,150,0,3349,3350,3,304,152,0,3350,3352,1,0,0,0, - 3351,3346,1,0,0,0,3351,3352,1,0,0,0,3352,295,1,0,0,0,3353,3356,5, - 352,0,0,3354,3356,1,0,0,0,3355,3353,1,0,0,0,3355,3354,1,0,0,0,3356, - 297,1,0,0,0,3357,3359,3,1338,669,0,3358,3360,3,524,262,0,3359,3358, - 1,0,0,0,3359,3360,1,0,0,0,3360,299,1,0,0,0,3361,3362,5,230,0,0,3362, - 3365,3,298,149,0,3363,3365,1,0,0,0,3364,3361,1,0,0,0,3364,3363,1, - 0,0,0,3365,301,1,0,0,0,3366,3367,5,366,0,0,3367,3371,3,298,149,0, - 3368,3369,5,262,0,0,3369,3371,5,366,0,0,3370,3366,1,0,0,0,3370,3368, - 1,0,0,0,3371,303,1,0,0,0,3372,3375,3,302,151,0,3373,3375,1,0,0,0, - 3374,3372,1,0,0,0,3374,3373,1,0,0,0,3375,305,1,0,0,0,3376,3379,5, - 288,0,0,3377,3379,1,0,0,0,3378,3376,1,0,0,0,3378,3377,1,0,0,0,3379, - 307,1,0,0,0,3380,3381,5,46,0,0,3381,3382,5,344,0,0,3382,3383,3,1338, - 669,0,3383,3384,3,310,155,0,3384,3385,5,246,0,0,3385,3386,3,1356, - 678,0,3386,3387,3,116,58,0,3387,309,1,0,0,0,3388,3389,5,275,0,0, - 3389,3392,3,1366,683,0,3390,3392,1,0,0,0,3391,3388,1,0,0,0,3391, - 3390,1,0,0,0,3392,311,1,0,0,0,3393,3394,5,191,0,0,3394,3397,5,344, - 0,0,3395,3396,5,220,0,0,3396,3398,5,389,0,0,3397,3395,1,0,0,0,3397, - 3398,1,0,0,0,3398,3399,1,0,0,0,3399,3400,3,1338,669,0,3400,313,1, - 0,0,0,3401,3402,5,46,0,0,3402,3406,5,204,0,0,3403,3404,5,220,0,0, - 3404,3405,5,77,0,0,3405,3407,5,389,0,0,3406,3403,1,0,0,0,3406,3407, - 1,0,0,0,3407,3408,1,0,0,0,3408,3409,3,1338,669,0,3409,3410,3,14, - 7,0,3410,3411,3,316,158,0,3411,315,1,0,0,0,3412,3414,3,318,159,0, - 3413,3412,1,0,0,0,3414,3417,1,0,0,0,3415,3413,1,0,0,0,3415,3416, - 1,0,0,0,3416,317,1,0,0,0,3417,3415,1,0,0,0,3418,3419,5,316,0,0,3419, - 3426,3,1338,669,0,3420,3421,5,368,0,0,3421,3426,3,70,35,0,3422,3423, - 5,64,0,0,3423,3426,3,70,35,0,3424,3426,5,150,0,0,3425,3418,1,0,0, - 0,3425,3420,1,0,0,0,3425,3422,1,0,0,0,3425,3424,1,0,0,0,3426,319, - 1,0,0,0,3427,3428,5,138,0,0,3428,3429,5,204,0,0,3429,3430,3,1338, - 669,0,3430,3431,5,362,0,0,3431,3432,3,322,161,0,3432,321,1,0,0,0, - 3433,3435,3,324,162,0,3434,3433,1,0,0,0,3435,3438,1,0,0,0,3436,3434, - 1,0,0,0,3436,3437,1,0,0,0,3437,323,1,0,0,0,3438,3436,1,0,0,0,3439, - 3440,5,94,0,0,3440,3441,3,70,35,0,3441,325,1,0,0,0,3442,3443,5,138, - 0,0,3443,3444,5,204,0,0,3444,3445,3,1338,669,0,3445,3446,3,38,19, - 0,3446,3447,3,514,257,0,3447,3448,3,1338,669,0,3448,3547,1,0,0,0, - 3449,3450,5,138,0,0,3450,3451,5,204,0,0,3451,3452,3,1338,669,0,3452, - 3453,3,38,19,0,3453,3454,3,512,256,0,3454,3455,3,522,261,0,3455, - 3547,1,0,0,0,3456,3457,5,138,0,0,3457,3458,5,204,0,0,3458,3459,3, - 1338,669,0,3459,3460,3,38,19,0,3460,3461,5,136,0,0,3461,3462,3,648, - 324,0,3462,3547,1,0,0,0,3463,3464,5,138,0,0,3464,3465,5,204,0,0, - 3465,3466,3,1338,669,0,3466,3467,3,38,19,0,3467,3468,5,41,0,0,3468, - 3469,5,2,0,0,3469,3470,3,1116,558,0,3470,3471,5,36,0,0,3471,3472, - 3,1116,558,0,3472,3473,5,3,0,0,3473,3547,1,0,0,0,3474,3475,5,138, - 0,0,3475,3476,5,204,0,0,3476,3477,3,1338,669,0,3477,3478,3,38,19, - 0,3478,3479,5,189,0,0,3479,3480,3,1116,558,0,3480,3547,1,0,0,0,3481, - 3482,5,138,0,0,3482,3483,5,204,0,0,3483,3484,3,1338,669,0,3484,3485, - 3,38,19,0,3485,3486,5,211,0,0,3486,3487,3,624,312,0,3487,3547,1, - 0,0,0,3488,3489,5,138,0,0,3489,3490,5,204,0,0,3490,3491,3,1338,669, - 0,3491,3492,3,38,19,0,3492,3493,5,271,0,0,3493,3494,3,686,343,0, - 3494,3547,1,0,0,0,3495,3496,5,138,0,0,3496,3497,5,204,0,0,3497,3498, - 3,1338,669,0,3498,3499,3,38,19,0,3499,3500,5,271,0,0,3500,3501,5, - 156,0,0,3501,3502,3,522,261,0,3502,3503,5,100,0,0,3503,3504,3,1338, - 669,0,3504,3547,1,0,0,0,3505,3506,5,138,0,0,3506,3507,5,204,0,0, - 3507,3508,3,1338,669,0,3508,3509,3,38,19,0,3509,3510,5,271,0,0,3510, - 3511,5,206,0,0,3511,3512,3,522,261,0,3512,3513,5,100,0,0,3513,3514, - 3,1338,669,0,3514,3547,1,0,0,0,3515,3516,5,138,0,0,3516,3517,5,204, - 0,0,3517,3518,3,1338,669,0,3518,3519,3,38,19,0,3519,3520,5,289,0, - 0,3520,3521,3,624,312,0,3521,3547,1,0,0,0,3522,3523,5,138,0,0,3523, - 3524,5,204,0,0,3524,3525,3,1338,669,0,3525,3526,3,38,19,0,3526,3527, - 5,442,0,0,3527,3528,3,624,312,0,3528,3547,1,0,0,0,3529,3530,5,138, - 0,0,3530,3531,5,204,0,0,3531,3532,3,1338,669,0,3532,3533,3,38,19, - 0,3533,3534,5,443,0,0,3534,3535,5,62,0,0,3535,3536,3,1116,558,0, - 3536,3537,5,238,0,0,3537,3538,3,1338,669,0,3538,3547,1,0,0,0,3539, - 3540,5,138,0,0,3540,3541,5,204,0,0,3541,3542,3,1338,669,0,3542,3543, - 3,38,19,0,3543,3544,5,353,0,0,3544,3545,3,1116,558,0,3545,3547,1, - 0,0,0,3546,3442,1,0,0,0,3546,3449,1,0,0,0,3546,3456,1,0,0,0,3546, - 3463,1,0,0,0,3546,3474,1,0,0,0,3546,3481,1,0,0,0,3546,3488,1,0,0, - 0,3546,3495,1,0,0,0,3546,3505,1,0,0,0,3546,3515,1,0,0,0,3546,3522, - 1,0,0,0,3546,3529,1,0,0,0,3546,3539,1,0,0,0,3547,327,1,0,0,0,3548, - 3549,5,46,0,0,3549,3550,5,63,0,0,3550,3551,5,174,0,0,3551,3552,5, - 374,0,0,3552,3553,3,1338,669,0,3553,3554,3,334,167,0,3554,3555,3, - 338,169,0,3555,329,1,0,0,0,3556,3557,5,215,0,0,3557,3565,3,298,149, - 0,3558,3559,5,262,0,0,3559,3565,5,215,0,0,3560,3561,5,366,0,0,3561, - 3565,3,298,149,0,3562,3563,5,262,0,0,3563,3565,5,366,0,0,3564,3556, - 1,0,0,0,3564,3558,1,0,0,0,3564,3560,1,0,0,0,3564,3562,1,0,0,0,3565, - 331,1,0,0,0,3566,3568,3,330,165,0,3567,3566,1,0,0,0,3568,3569,1, - 0,0,0,3569,3567,1,0,0,0,3569,3570,1,0,0,0,3570,333,1,0,0,0,3571, - 3574,3,332,166,0,3572,3574,1,0,0,0,3573,3571,1,0,0,0,3573,3572,1, - 0,0,0,3574,335,1,0,0,0,3575,3576,5,138,0,0,3576,3577,5,63,0,0,3577, - 3578,5,174,0,0,3578,3579,5,374,0,0,3579,3580,3,1338,669,0,3580,3581, - 3,334,167,0,3581,3582,3,342,171,0,3582,3591,1,0,0,0,3583,3584,5, - 138,0,0,3584,3585,5,63,0,0,3585,3586,5,174,0,0,3586,3587,5,374,0, - 0,3587,3588,3,1338,669,0,3588,3589,3,332,166,0,3589,3591,1,0,0,0, - 3590,3575,1,0,0,0,3590,3583,1,0,0,0,3591,337,1,0,0,0,3592,3593,5, - 273,0,0,3593,3594,5,2,0,0,3594,3595,3,340,170,0,3595,3596,5,3,0, - 0,3596,3599,1,0,0,0,3597,3599,1,0,0,0,3598,3592,1,0,0,0,3598,3597, - 1,0,0,0,3599,339,1,0,0,0,3600,3605,3,348,174,0,3601,3602,5,6,0,0, - 3602,3604,3,348,174,0,3603,3601,1,0,0,0,3604,3607,1,0,0,0,3605,3603, - 1,0,0,0,3605,3606,1,0,0,0,3606,341,1,0,0,0,3607,3605,1,0,0,0,3608, - 3609,5,273,0,0,3609,3610,5,2,0,0,3610,3611,3,344,172,0,3611,3612, - 5,3,0,0,3612,343,1,0,0,0,3613,3618,3,346,173,0,3614,3615,5,6,0,0, - 3615,3617,3,346,173,0,3616,3614,1,0,0,0,3617,3620,1,0,0,0,3618,3616, - 1,0,0,0,3618,3619,1,0,0,0,3619,345,1,0,0,0,3620,3618,1,0,0,0,3621, - 3629,3,348,174,0,3622,3623,5,326,0,0,3623,3629,3,348,174,0,3624, - 3625,5,133,0,0,3625,3629,3,348,174,0,3626,3627,5,191,0,0,3627,3629, - 3,350,175,0,3628,3621,1,0,0,0,3628,3622,1,0,0,0,3628,3624,1,0,0, - 0,3628,3626,1,0,0,0,3629,347,1,0,0,0,3630,3631,3,350,175,0,3631, - 3632,3,352,176,0,3632,349,1,0,0,0,3633,3634,3,1378,689,0,3634,351, - 1,0,0,0,3635,3636,3,1356,678,0,3636,353,1,0,0,0,3637,3638,5,46,0, - 0,3638,3639,5,324,0,0,3639,3640,3,1338,669,0,3640,3641,3,356,178, - 0,3641,3642,3,360,180,0,3642,3643,5,63,0,0,3643,3644,5,174,0,0,3644, - 3645,5,374,0,0,3645,3646,3,1338,669,0,3646,3647,3,338,169,0,3647, - 3663,1,0,0,0,3648,3649,5,46,0,0,3649,3650,5,324,0,0,3650,3651,5, - 220,0,0,3651,3652,5,77,0,0,3652,3653,5,389,0,0,3653,3654,3,1338, - 669,0,3654,3655,3,356,178,0,3655,3656,3,360,180,0,3656,3657,5,63, - 0,0,3657,3658,5,174,0,0,3658,3659,5,374,0,0,3659,3660,3,1338,669, - 0,3660,3661,3,338,169,0,3661,3663,1,0,0,0,3662,3637,1,0,0,0,3662, - 3648,1,0,0,0,3663,355,1,0,0,0,3664,3665,5,353,0,0,3665,3668,3,1356, - 678,0,3666,3668,1,0,0,0,3667,3664,1,0,0,0,3667,3666,1,0,0,0,3668, - 357,1,0,0,0,3669,3672,5,368,0,0,3670,3673,3,1356,678,0,3671,3673, - 5,78,0,0,3672,3670,1,0,0,0,3672,3671,1,0,0,0,3673,359,1,0,0,0,3674, - 3677,3,358,179,0,3675,3677,1,0,0,0,3676,3674,1,0,0,0,3676,3675,1, - 0,0,0,3677,361,1,0,0,0,3678,3679,5,138,0,0,3679,3680,5,324,0,0,3680, - 3686,3,1338,669,0,3681,3687,3,342,171,0,3682,3684,3,358,179,0,3683, - 3685,3,342,171,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3687,1, - 0,0,0,3686,3681,1,0,0,0,3686,3682,1,0,0,0,3687,363,1,0,0,0,3688, - 3689,5,46,0,0,3689,3690,5,63,0,0,3690,3691,5,92,0,0,3691,3692,3, - 1334,667,0,3692,3693,5,2,0,0,3693,3694,3,174,87,0,3694,3695,5,3, - 0,0,3695,3696,3,236,118,0,3696,3697,5,324,0,0,3697,3698,3,1338,669, - 0,3698,3699,3,338,169,0,3699,3745,1,0,0,0,3700,3701,5,46,0,0,3701, - 3702,5,63,0,0,3702,3703,5,92,0,0,3703,3704,5,220,0,0,3704,3705,5, - 77,0,0,3705,3706,5,389,0,0,3706,3707,3,1334,667,0,3707,3708,5,2, - 0,0,3708,3709,3,174,87,0,3709,3710,5,3,0,0,3710,3711,3,236,118,0, - 3711,3712,5,324,0,0,3712,3713,3,1338,669,0,3713,3714,3,338,169,0, - 3714,3745,1,0,0,0,3715,3716,5,46,0,0,3716,3717,5,63,0,0,3717,3718, - 5,92,0,0,3718,3719,3,1334,667,0,3719,3720,5,278,0,0,3720,3721,5, - 268,0,0,3721,3722,3,1334,667,0,3722,3723,3,176,88,0,3723,3724,3, - 126,63,0,3724,3725,5,324,0,0,3725,3726,3,1338,669,0,3726,3727,3, - 338,169,0,3727,3745,1,0,0,0,3728,3729,5,46,0,0,3729,3730,5,63,0, - 0,3730,3731,5,92,0,0,3731,3732,5,220,0,0,3732,3733,5,77,0,0,3733, - 3734,5,389,0,0,3734,3735,3,1334,667,0,3735,3736,5,278,0,0,3736,3737, - 5,268,0,0,3737,3738,3,1334,667,0,3738,3739,3,176,88,0,3739,3740, - 3,126,63,0,3740,3741,5,324,0,0,3741,3742,3,1338,669,0,3742,3743, - 3,338,169,0,3743,3745,1,0,0,0,3744,3688,1,0,0,0,3744,3700,1,0,0, - 0,3744,3715,1,0,0,0,3744,3728,1,0,0,0,3745,365,1,0,0,0,3746,3747, - 5,444,0,0,3747,3748,5,63,0,0,3748,3749,5,316,0,0,3749,3750,3,1338, - 669,0,3750,3751,3,370,185,0,3751,3752,5,64,0,0,3752,3753,5,324,0, - 0,3753,3754,3,1338,669,0,3754,3755,5,71,0,0,3755,3756,3,1338,669, - 0,3756,3757,3,338,169,0,3757,367,1,0,0,0,3758,3759,5,74,0,0,3759, - 3762,5,94,0,0,3760,3762,5,59,0,0,3761,3758,1,0,0,0,3761,3760,1,0, - 0,0,3762,369,1,0,0,0,3763,3764,3,368,184,0,3764,3765,5,2,0,0,3765, - 3766,3,1074,537,0,3766,3767,5,3,0,0,3767,3770,1,0,0,0,3768,3770, - 1,0,0,0,3769,3763,1,0,0,0,3769,3768,1,0,0,0,3770,371,1,0,0,0,3771, - 3772,5,46,0,0,3772,3773,5,99,0,0,3773,3774,5,248,0,0,3774,3775,5, - 62,0,0,3775,3776,3,374,187,0,3776,3777,5,324,0,0,3777,3778,3,1338, - 669,0,3778,3779,3,338,169,0,3779,3793,1,0,0,0,3780,3781,5,46,0,0, - 3781,3782,5,99,0,0,3782,3783,5,248,0,0,3783,3784,5,220,0,0,3784, - 3785,5,77,0,0,3785,3786,5,389,0,0,3786,3787,5,62,0,0,3787,3788,3, - 374,187,0,3788,3789,5,324,0,0,3789,3790,3,1338,669,0,3790,3791,3, - 338,169,0,3791,3793,1,0,0,0,3792,3771,1,0,0,0,3792,3780,1,0,0,0, - 3793,373,1,0,0,0,3794,3797,3,1366,683,0,3795,3797,5,99,0,0,3796, - 3794,1,0,0,0,3796,3795,1,0,0,0,3797,375,1,0,0,0,3798,3799,5,191, - 0,0,3799,3800,5,99,0,0,3800,3801,5,248,0,0,3801,3802,5,62,0,0,3802, - 3803,3,374,187,0,3803,3804,5,324,0,0,3804,3805,3,1338,669,0,3805, - 3817,1,0,0,0,3806,3807,5,191,0,0,3807,3808,5,99,0,0,3808,3809,5, - 248,0,0,3809,3810,5,220,0,0,3810,3811,5,389,0,0,3811,3812,5,62,0, - 0,3812,3813,3,374,187,0,3813,3814,5,324,0,0,3814,3815,3,1338,669, - 0,3815,3817,1,0,0,0,3816,3798,1,0,0,0,3816,3806,1,0,0,0,3817,377, - 1,0,0,0,3818,3819,5,138,0,0,3819,3820,5,99,0,0,3820,3821,5,248,0, - 0,3821,3822,5,62,0,0,3822,3823,3,374,187,0,3823,3824,5,324,0,0,3824, - 3825,3,1338,669,0,3825,3826,3,342,171,0,3826,379,1,0,0,0,3827,3828, - 5,46,0,0,3828,3829,5,445,0,0,3829,3830,3,1338,669,0,3830,3831,5, - 80,0,0,3831,3832,3,1334,667,0,3832,3833,3,392,196,0,3833,3834,3, - 394,197,0,3834,3835,3,388,194,0,3835,3836,3,384,192,0,3836,3837, - 3,386,193,0,3837,381,1,0,0,0,3838,3839,5,138,0,0,3839,3840,5,445, - 0,0,3840,3841,3,1338,669,0,3841,3842,5,80,0,0,3842,3843,3,1334,667, - 0,3843,3844,3,390,195,0,3844,3845,3,384,192,0,3845,3846,3,386,193, - 0,3846,383,1,0,0,0,3847,3848,5,100,0,0,3848,3849,5,2,0,0,3849,3850, - 3,1160,580,0,3850,3851,5,3,0,0,3851,3854,1,0,0,0,3852,3854,1,0,0, - 0,3853,3847,1,0,0,0,3853,3852,1,0,0,0,3854,385,1,0,0,0,3855,3856, - 5,105,0,0,3856,3857,5,42,0,0,3857,3858,5,2,0,0,3858,3859,3,1160, - 580,0,3859,3860,5,3,0,0,3860,3863,1,0,0,0,3861,3863,1,0,0,0,3862, - 3855,1,0,0,0,3862,3861,1,0,0,0,3863,387,1,0,0,0,3864,3865,5,94,0, - 0,3865,3868,3,1368,684,0,3866,3868,1,0,0,0,3867,3864,1,0,0,0,3867, - 3866,1,0,0,0,3868,389,1,0,0,0,3869,3870,5,94,0,0,3870,3873,3,1368, - 684,0,3871,3873,1,0,0,0,3872,3869,1,0,0,0,3872,3871,1,0,0,0,3873, - 391,1,0,0,0,3874,3875,5,36,0,0,3875,3878,3,1380,690,0,3876,3878, - 1,0,0,0,3877,3874,1,0,0,0,3877,3876,1,0,0,0,3878,393,1,0,0,0,3879, - 3880,5,62,0,0,3880,3883,3,396,198,0,3881,3883,1,0,0,0,3882,3879, - 1,0,0,0,3882,3881,1,0,0,0,3883,395,1,0,0,0,3884,3885,7,17,0,0,3885, - 397,1,0,0,0,3886,3887,5,46,0,0,3887,3888,5,131,0,0,3888,3889,5,446, - 0,0,3889,3890,3,1338,669,0,3890,3891,5,353,0,0,3891,3892,3,400,200, - 0,3892,3893,5,215,0,0,3893,3894,3,298,149,0,3894,399,1,0,0,0,3895, - 3896,7,18,0,0,3896,401,1,0,0,0,3897,3898,5,46,0,0,3898,3899,5,350, - 0,0,3899,3900,3,1338,669,0,3900,3901,3,404,202,0,3901,3902,3,406, - 203,0,3902,3903,5,80,0,0,3903,3904,3,1334,667,0,3904,3905,3,410, - 205,0,3905,3906,3,422,211,0,3906,3907,3,428,214,0,3907,3908,5,202, - 0,0,3908,3909,3,430,215,0,3909,3910,3,1344,672,0,3910,3911,5,2,0, - 0,3911,3912,3,432,216,0,3912,3913,5,3,0,0,3913,3936,1,0,0,0,3914, - 3915,5,46,0,0,3915,3916,5,45,0,0,3916,3917,5,350,0,0,3917,3918,3, - 1338,669,0,3918,3919,5,135,0,0,3919,3920,3,406,203,0,3920,3921,5, - 80,0,0,3921,3922,3,1334,667,0,3922,3923,3,436,218,0,3923,3924,3, - 438,219,0,3924,3925,5,62,0,0,3925,3926,5,192,0,0,3926,3927,5,407, - 0,0,3927,3928,3,428,214,0,3928,3929,5,202,0,0,3929,3930,3,430,215, - 0,3930,3931,3,1344,672,0,3931,3932,5,2,0,0,3932,3933,3,432,216,0, - 3933,3934,5,3,0,0,3934,3936,1,0,0,0,3935,3897,1,0,0,0,3935,3914, - 1,0,0,0,3936,403,1,0,0,0,3937,3942,5,145,0,0,3938,3942,5,135,0,0, - 3939,3940,5,233,0,0,3940,3942,5,268,0,0,3941,3937,1,0,0,0,3941,3938, - 1,0,0,0,3941,3939,1,0,0,0,3942,405,1,0,0,0,3943,3948,3,408,204,0, - 3944,3945,5,82,0,0,3945,3947,3,408,204,0,3946,3944,1,0,0,0,3947, - 3950,1,0,0,0,3948,3946,1,0,0,0,3948,3949,1,0,0,0,3949,407,1,0,0, - 0,3950,3948,1,0,0,0,3951,3959,5,232,0,0,3952,3959,5,182,0,0,3953, - 3959,5,362,0,0,3954,3955,5,362,0,0,3955,3956,5,268,0,0,3956,3959, - 3,214,107,0,3957,3959,5,351,0,0,3958,3951,1,0,0,0,3958,3952,1,0, - 0,0,3958,3953,1,0,0,0,3958,3954,1,0,0,0,3958,3957,1,0,0,0,3959,409, - 1,0,0,0,3960,3961,5,447,0,0,3961,3964,3,412,206,0,3962,3964,1,0, - 0,0,3963,3960,1,0,0,0,3963,3962,1,0,0,0,3964,411,1,0,0,0,3965,3967, - 3,414,207,0,3966,3965,1,0,0,0,3967,3968,1,0,0,0,3968,3966,1,0,0, - 0,3968,3969,1,0,0,0,3969,413,1,0,0,0,3970,3971,3,416,208,0,3971, - 3972,3,418,209,0,3972,3973,3,832,416,0,3973,3974,3,420,210,0,3974, - 415,1,0,0,0,3975,3976,7,19,0,0,3976,417,1,0,0,0,3977,3978,7,20,0, - 0,3978,419,1,0,0,0,3979,3980,3,1370,685,0,3980,421,1,0,0,0,3981, - 3982,5,62,0,0,3982,3983,3,424,212,0,3983,3984,3,426,213,0,3984,3987, - 1,0,0,0,3985,3987,1,0,0,0,3986,3981,1,0,0,0,3986,3985,1,0,0,0,3987, - 423,1,0,0,0,3988,3991,5,192,0,0,3989,3991,1,0,0,0,3990,3988,1,0, - 0,0,3990,3989,1,0,0,0,3991,425,1,0,0,0,3992,3993,7,21,0,0,3993,427, - 1,0,0,0,3994,3995,5,102,0,0,3995,3996,5,2,0,0,3996,3997,3,1160,580, - 0,3997,3998,5,3,0,0,3998,4001,1,0,0,0,3999,4001,1,0,0,0,4000,3994, - 1,0,0,0,4000,3999,1,0,0,0,4001,429,1,0,0,0,4002,4003,7,22,0,0,4003, - 431,1,0,0,0,4004,4007,3,434,217,0,4005,4007,1,0,0,0,4006,4004,1, - 0,0,0,4006,4005,1,0,0,0,4007,4012,1,0,0,0,4008,4009,5,6,0,0,4009, - 4011,3,434,217,0,4010,4008,1,0,0,0,4011,4014,1,0,0,0,4012,4010,1, - 0,0,0,4012,4013,1,0,0,0,4013,433,1,0,0,0,4014,4012,1,0,0,0,4015, - 4020,3,1354,677,0,4016,4020,3,1352,676,0,4017,4020,3,1356,678,0, - 4018,4020,3,1378,689,0,4019,4015,1,0,0,0,4019,4016,1,0,0,0,4019, - 4017,1,0,0,0,4019,4018,1,0,0,0,4020,435,1,0,0,0,4021,4022,5,64,0, - 0,4022,4025,3,1334,667,0,4023,4025,1,0,0,0,4024,4021,1,0,0,0,4024, - 4023,1,0,0,0,4025,437,1,0,0,0,4026,4028,3,440,220,0,4027,4026,1, - 0,0,0,4028,4031,1,0,0,0,4029,4027,1,0,0,0,4029,4030,1,0,0,0,4030, - 439,1,0,0,0,4031,4029,1,0,0,0,4032,4033,5,77,0,0,4033,4044,5,54, - 0,0,4034,4044,5,54,0,0,4035,4036,5,69,0,0,4036,4044,5,221,0,0,4037, - 4038,5,69,0,0,4038,4044,5,180,0,0,4039,4040,5,77,0,0,4040,4044,5, - 364,0,0,4041,4042,5,262,0,0,4042,4044,5,228,0,0,4043,4032,1,0,0, - 0,4043,4034,1,0,0,0,4043,4035,1,0,0,0,4043,4037,1,0,0,0,4043,4039, - 1,0,0,0,4043,4041,1,0,0,0,4044,441,1,0,0,0,4045,4046,5,46,0,0,4046, - 4047,5,198,0,0,4047,4048,5,350,0,0,4048,4049,3,1338,669,0,4049,4050, - 5,80,0,0,4050,4051,3,1378,689,0,4051,4052,5,202,0,0,4052,4053,3, - 430,215,0,4053,4054,3,1344,672,0,4054,4055,5,2,0,0,4055,4056,5,3, - 0,0,4056,4072,1,0,0,0,4057,4058,5,46,0,0,4058,4059,5,198,0,0,4059, - 4060,5,350,0,0,4060,4061,3,1338,669,0,4061,4062,5,80,0,0,4062,4063, - 3,1378,689,0,4063,4064,5,102,0,0,4064,4065,3,444,222,0,4065,4066, - 5,202,0,0,4066,4067,3,430,215,0,4067,4068,3,1344,672,0,4068,4069, - 5,2,0,0,4069,4070,5,3,0,0,4070,4072,1,0,0,0,4071,4045,1,0,0,0,4071, - 4057,1,0,0,0,4072,443,1,0,0,0,4073,4078,3,446,223,0,4074,4075,5, - 33,0,0,4075,4077,3,446,223,0,4076,4074,1,0,0,0,4077,4080,1,0,0,0, - 4078,4076,1,0,0,0,4078,4079,1,0,0,0,4079,445,1,0,0,0,4080,4078,1, - 0,0,0,4081,4082,3,1370,685,0,4082,4083,5,68,0,0,4083,4084,5,2,0, - 0,4084,4085,3,448,224,0,4085,4086,5,3,0,0,4086,447,1,0,0,0,4087, - 4092,3,1356,678,0,4088,4089,5,6,0,0,4089,4091,3,1356,678,0,4090, - 4088,1,0,0,0,4091,4094,1,0,0,0,4092,4090,1,0,0,0,4092,4093,1,0,0, - 0,4093,449,1,0,0,0,4094,4092,1,0,0,0,4095,4096,5,138,0,0,4096,4097, - 5,198,0,0,4097,4098,5,350,0,0,4098,4099,3,1338,669,0,4099,4100,3, - 452,226,0,4100,451,1,0,0,0,4101,4108,5,193,0,0,4102,4103,5,193,0, - 0,4103,4108,5,305,0,0,4104,4105,5,193,0,0,4105,4108,5,139,0,0,4106, - 4108,5,186,0,0,4107,4101,1,0,0,0,4107,4102,1,0,0,0,4107,4104,1,0, - 0,0,4107,4106,1,0,0,0,4108,453,1,0,0,0,4109,4110,5,46,0,0,4110,4111, - 5,140,0,0,4111,4112,3,522,261,0,4112,4113,5,42,0,0,4113,4114,5,2, - 0,0,4114,4115,3,1160,580,0,4115,4116,5,3,0,0,4116,4117,3,438,219, - 0,4117,455,1,0,0,0,4118,4119,5,46,0,0,4119,4120,3,616,308,0,4120, - 4121,5,136,0,0,4121,4122,3,1344,672,0,4122,4123,3,644,322,0,4123, - 4124,3,458,229,0,4124,4225,1,0,0,0,4125,4126,5,46,0,0,4126,4127, - 3,616,308,0,4127,4128,5,136,0,0,4128,4129,3,1344,672,0,4129,4130, - 3,466,233,0,4130,4225,1,0,0,0,4131,4132,5,46,0,0,4132,4133,5,271, - 0,0,4133,4134,3,682,341,0,4134,4135,3,458,229,0,4135,4225,1,0,0, - 0,4136,4137,5,46,0,0,4137,4138,5,353,0,0,4138,4139,3,522,261,0,4139, - 4140,3,458,229,0,4140,4225,1,0,0,0,4141,4142,5,46,0,0,4142,4143, - 5,353,0,0,4143,4225,3,522,261,0,4144,4145,5,46,0,0,4145,4146,5,353, - 0,0,4146,4147,3,522,261,0,4147,4148,5,36,0,0,4148,4149,5,2,0,0,4149, - 4150,3,1096,548,0,4150,4151,5,3,0,0,4151,4225,1,0,0,0,4152,4153, - 5,46,0,0,4153,4154,5,353,0,0,4154,4155,3,522,261,0,4155,4156,5,36, - 0,0,4156,4157,5,196,0,0,4157,4158,5,2,0,0,4158,4159,3,472,236,0, - 4159,4160,5,3,0,0,4160,4225,1,0,0,0,4161,4162,5,46,0,0,4162,4163, - 5,353,0,0,4163,4164,3,522,261,0,4164,4165,5,36,0,0,4165,4166,5,292, - 0,0,4166,4167,3,458,229,0,4167,4225,1,0,0,0,4168,4169,5,46,0,0,4169, - 4170,5,348,0,0,4170,4171,5,318,0,0,4171,4172,5,276,0,0,4172,4173, - 3,522,261,0,4173,4174,3,458,229,0,4174,4225,1,0,0,0,4175,4176,5, - 46,0,0,4176,4177,5,348,0,0,4177,4178,5,318,0,0,4178,4179,5,185,0, - 0,4179,4180,3,522,261,0,4180,4181,3,458,229,0,4181,4225,1,0,0,0, - 4182,4183,5,46,0,0,4183,4184,5,348,0,0,4184,4185,5,318,0,0,4185, - 4186,5,346,0,0,4186,4187,3,522,261,0,4187,4188,3,458,229,0,4188, - 4225,1,0,0,0,4189,4190,5,46,0,0,4190,4191,5,348,0,0,4191,4192,5, - 318,0,0,4192,4193,5,163,0,0,4193,4194,3,522,261,0,4194,4195,3,458, - 229,0,4195,4225,1,0,0,0,4196,4197,5,46,0,0,4197,4198,5,108,0,0,4198, - 4199,3,522,261,0,4199,4200,3,458,229,0,4200,4225,1,0,0,0,4201,4202, - 5,46,0,0,4202,4203,5,108,0,0,4203,4204,5,220,0,0,4204,4205,5,77, - 0,0,4205,4206,5,389,0,0,4206,4207,3,522,261,0,4207,4208,3,458,229, - 0,4208,4225,1,0,0,0,4209,4210,5,46,0,0,4210,4211,5,108,0,0,4211, - 4212,3,522,261,0,4212,4213,5,64,0,0,4213,4214,3,522,261,0,4214,4225, - 1,0,0,0,4215,4216,5,46,0,0,4216,4217,5,108,0,0,4217,4218,5,220,0, - 0,4218,4219,5,77,0,0,4219,4220,5,389,0,0,4220,4221,3,522,261,0,4221, - 4222,5,64,0,0,4222,4223,3,522,261,0,4223,4225,1,0,0,0,4224,4118, - 1,0,0,0,4224,4125,1,0,0,0,4224,4131,1,0,0,0,4224,4136,1,0,0,0,4224, - 4141,1,0,0,0,4224,4144,1,0,0,0,4224,4152,1,0,0,0,4224,4161,1,0,0, - 0,4224,4168,1,0,0,0,4224,4175,1,0,0,0,4224,4182,1,0,0,0,4224,4189, - 1,0,0,0,4224,4196,1,0,0,0,4224,4201,1,0,0,0,4224,4209,1,0,0,0,4224, - 4215,1,0,0,0,4225,457,1,0,0,0,4226,4227,5,2,0,0,4227,4228,3,460, - 230,0,4228,4229,5,3,0,0,4229,459,1,0,0,0,4230,4235,3,462,231,0,4231, - 4232,5,6,0,0,4232,4234,3,462,231,0,4233,4231,1,0,0,0,4234,4237,1, - 0,0,0,4235,4233,1,0,0,0,4235,4236,1,0,0,0,4236,461,1,0,0,0,4237, - 4235,1,0,0,0,4238,4241,3,1378,689,0,4239,4240,5,10,0,0,4240,4242, - 3,464,232,0,4241,4239,1,0,0,0,4241,4242,1,0,0,0,4242,463,1,0,0,0, - 4243,4250,3,638,319,0,4244,4250,3,1390,695,0,4245,4250,3,1274,637, - 0,4246,4250,3,290,145,0,4247,4250,3,1356,678,0,4248,4250,5,400,0, - 0,4249,4243,1,0,0,0,4249,4244,1,0,0,0,4249,4245,1,0,0,0,4249,4246, - 1,0,0,0,4249,4247,1,0,0,0,4249,4248,1,0,0,0,4250,465,1,0,0,0,4251, - 4252,5,2,0,0,4252,4253,3,468,234,0,4253,4254,5,3,0,0,4254,467,1, - 0,0,0,4255,4260,3,470,235,0,4256,4257,5,6,0,0,4257,4259,3,470,235, - 0,4258,4256,1,0,0,0,4259,4262,1,0,0,0,4260,4258,1,0,0,0,4260,4261, - 1,0,0,0,4261,469,1,0,0,0,4262,4260,1,0,0,0,4263,4264,3,1380,690, - 0,4264,4265,5,10,0,0,4265,4266,3,464,232,0,4266,471,1,0,0,0,4267, - 4270,3,474,237,0,4268,4270,1,0,0,0,4269,4267,1,0,0,0,4269,4268,1, - 0,0,0,4270,473,1,0,0,0,4271,4276,3,1356,678,0,4272,4273,5,6,0,0, - 4273,4275,3,1356,678,0,4274,4272,1,0,0,0,4275,4278,1,0,0,0,4276, - 4274,1,0,0,0,4276,4277,1,0,0,0,4277,475,1,0,0,0,4278,4276,1,0,0, - 0,4279,4280,5,138,0,0,4280,4281,5,353,0,0,4281,4282,3,522,261,0, - 4282,4283,5,133,0,0,4283,4284,5,450,0,0,4284,4285,3,478,239,0,4285, - 4286,3,1356,678,0,4286,4317,1,0,0,0,4287,4288,5,138,0,0,4288,4289, - 5,353,0,0,4289,4290,3,522,261,0,4290,4291,5,133,0,0,4291,4292,5, - 450,0,0,4292,4293,3,478,239,0,4293,4294,3,1356,678,0,4294,4295,5, - 145,0,0,4295,4296,3,1356,678,0,4296,4317,1,0,0,0,4297,4298,5,138, - 0,0,4298,4299,5,353,0,0,4299,4300,3,522,261,0,4300,4301,5,133,0, - 0,4301,4302,5,450,0,0,4302,4303,3,478,239,0,4303,4304,3,1356,678, - 0,4304,4305,5,135,0,0,4305,4306,3,1356,678,0,4306,4317,1,0,0,0,4307, - 4308,5,138,0,0,4308,4309,5,353,0,0,4309,4310,3,522,261,0,4310,4311, - 5,302,0,0,4311,4312,5,450,0,0,4312,4313,3,1356,678,0,4313,4314,5, - 94,0,0,4314,4315,3,1356,678,0,4315,4317,1,0,0,0,4316,4279,1,0,0, - 0,4316,4287,1,0,0,0,4316,4297,1,0,0,0,4316,4307,1,0,0,0,4317,477, - 1,0,0,0,4318,4319,5,220,0,0,4319,4320,5,77,0,0,4320,4323,5,389,0, - 0,4321,4323,1,0,0,0,4322,4318,1,0,0,0,4322,4321,1,0,0,0,4323,479, - 1,0,0,0,4324,4325,5,46,0,0,4325,4326,5,271,0,0,4326,4327,5,156,0, - 0,4327,4328,3,522,261,0,4328,4329,3,486,243,0,4329,4330,5,62,0,0, - 4330,4331,5,353,0,0,4331,4332,3,1116,558,0,4332,4333,5,100,0,0,4333, - 4334,3,1338,669,0,4334,4335,3,488,244,0,4335,4336,5,36,0,0,4336, - 4337,3,482,241,0,4337,481,1,0,0,0,4338,4343,3,484,242,0,4339,4340, - 5,6,0,0,4340,4342,3,484,242,0,4341,4339,1,0,0,0,4342,4345,1,0,0, - 0,4343,4341,1,0,0,0,4343,4344,1,0,0,0,4344,483,1,0,0,0,4345,4343, - 1,0,0,0,4346,4347,5,271,0,0,4347,4348,3,1354,677,0,4348,4349,3,682, - 341,0,4349,4350,3,490,245,0,4350,4351,3,492,246,0,4351,4372,1,0, - 0,0,4352,4353,5,271,0,0,4353,4354,3,1354,677,0,4354,4355,3,686,343, - 0,4355,4356,3,490,245,0,4356,4357,3,492,246,0,4357,4372,1,0,0,0, - 4358,4359,5,211,0,0,4359,4360,3,1354,677,0,4360,4361,3,624,312,0, - 4361,4372,1,0,0,0,4362,4363,5,211,0,0,4363,4364,3,1354,677,0,4364, - 4365,5,2,0,0,4365,4366,3,1284,642,0,4366,4367,5,3,0,0,4367,4368, - 3,624,312,0,4368,4372,1,0,0,0,4369,4370,5,338,0,0,4370,4372,3,1116, - 558,0,4371,4346,1,0,0,0,4371,4352,1,0,0,0,4371,4358,1,0,0,0,4371, - 4362,1,0,0,0,4371,4369,1,0,0,0,4372,485,1,0,0,0,4373,4376,5,53,0, - 0,4374,4376,1,0,0,0,4375,4373,1,0,0,0,4375,4374,1,0,0,0,4376,487, - 1,0,0,0,4377,4378,5,206,0,0,4378,4381,3,522,261,0,4379,4381,1,0, - 0,0,4380,4377,1,0,0,0,4380,4379,1,0,0,0,4381,489,1,0,0,0,4382,4383, - 5,62,0,0,4383,4390,5,318,0,0,4384,4385,5,62,0,0,4385,4386,5,83,0, - 0,4386,4387,5,147,0,0,4387,4390,3,522,261,0,4388,4390,1,0,0,0,4389, - 4382,1,0,0,0,4389,4384,1,0,0,0,4389,4388,1,0,0,0,4390,491,1,0,0, - 0,4391,4394,5,295,0,0,4392,4394,1,0,0,0,4393,4391,1,0,0,0,4393,4392, - 1,0,0,0,4394,493,1,0,0,0,4395,4396,5,46,0,0,4396,4397,5,271,0,0, - 4397,4398,5,206,0,0,4398,4399,3,522,261,0,4399,4400,5,100,0,0,4400, - 4401,3,1338,669,0,4401,495,1,0,0,0,4402,4403,5,138,0,0,4403,4404, - 5,271,0,0,4404,4405,5,206,0,0,4405,4406,3,522,261,0,4406,4407,5, - 100,0,0,4407,4408,3,1338,669,0,4408,4409,5,133,0,0,4409,4410,3,482, - 241,0,4410,4421,1,0,0,0,4411,4412,5,138,0,0,4412,4413,5,271,0,0, - 4413,4414,5,206,0,0,4414,4415,3,522,261,0,4415,4416,5,100,0,0,4416, - 4417,3,1338,669,0,4417,4418,5,191,0,0,4418,4419,3,498,249,0,4419, - 4421,1,0,0,0,4420,4402,1,0,0,0,4420,4411,1,0,0,0,4421,497,1,0,0, - 0,4422,4427,3,500,250,0,4423,4424,5,6,0,0,4424,4426,3,500,250,0, - 4425,4423,1,0,0,0,4426,4429,1,0,0,0,4427,4425,1,0,0,0,4427,4428, - 1,0,0,0,4428,499,1,0,0,0,4429,4427,1,0,0,0,4430,4431,5,271,0,0,4431, - 4432,3,1354,677,0,4432,4433,5,2,0,0,4433,4434,3,1284,642,0,4434, - 4435,5,3,0,0,4435,4443,1,0,0,0,4436,4437,5,211,0,0,4437,4438,3,1354, - 677,0,4438,4439,5,2,0,0,4439,4440,3,1284,642,0,4440,4441,5,3,0,0, - 4441,4443,1,0,0,0,4442,4430,1,0,0,0,4442,4436,1,0,0,0,4443,501,1, - 0,0,0,4444,4445,5,191,0,0,4445,4446,5,271,0,0,4446,4447,5,156,0, - 0,4447,4448,3,522,261,0,4448,4449,5,100,0,0,4449,4450,3,1338,669, - 0,4450,4451,3,106,53,0,4451,4463,1,0,0,0,4452,4453,5,191,0,0,4453, - 4454,5,271,0,0,4454,4455,5,156,0,0,4455,4456,5,220,0,0,4456,4457, - 5,389,0,0,4457,4458,3,522,261,0,4458,4459,5,100,0,0,4459,4460,3, - 1338,669,0,4460,4461,3,106,53,0,4461,4463,1,0,0,0,4462,4444,1,0, - 0,0,4462,4452,1,0,0,0,4463,503,1,0,0,0,4464,4465,5,191,0,0,4465, - 4466,5,271,0,0,4466,4467,5,206,0,0,4467,4468,3,522,261,0,4468,4469, - 5,100,0,0,4469,4470,3,1338,669,0,4470,4471,3,106,53,0,4471,4483, - 1,0,0,0,4472,4473,5,191,0,0,4473,4474,5,271,0,0,4474,4475,5,206, - 0,0,4475,4476,5,220,0,0,4476,4477,5,389,0,0,4477,4478,3,522,261, - 0,4478,4479,5,100,0,0,4479,4480,3,1338,669,0,4480,4481,3,106,53, - 0,4481,4483,1,0,0,0,4482,4464,1,0,0,0,4482,4472,1,0,0,0,4483,505, - 1,0,0,0,4484,4485,5,191,0,0,4485,4486,5,274,0,0,4486,4487,5,147, - 0,0,4487,4488,3,1368,684,0,4488,4489,3,106,53,0,4489,507,1,0,0,0, - 4490,4491,5,294,0,0,4491,4492,5,274,0,0,4492,4493,5,147,0,0,4493, - 4494,3,1368,684,0,4494,4495,5,94,0,0,4495,4496,3,1366,683,0,4496, - 509,1,0,0,0,4497,4498,5,191,0,0,4498,4499,3,512,256,0,4499,4500, - 5,220,0,0,4500,4501,5,389,0,0,4501,4502,3,520,260,0,4502,4503,3, - 106,53,0,4503,4576,1,0,0,0,4504,4505,5,191,0,0,4505,4506,3,512,256, - 0,4506,4507,3,520,260,0,4507,4508,3,106,53,0,4508,4576,1,0,0,0,4509, - 4510,5,191,0,0,4510,4511,3,516,258,0,4511,4512,5,220,0,0,4512,4513, - 5,389,0,0,4513,4514,3,1336,668,0,4514,4515,3,106,53,0,4515,4576, - 1,0,0,0,4516,4517,5,191,0,0,4517,4518,3,516,258,0,4518,4519,3,1336, - 668,0,4519,4520,3,106,53,0,4520,4576,1,0,0,0,4521,4522,5,191,0,0, - 4522,4523,3,518,259,0,4523,4524,3,1338,669,0,4524,4525,5,80,0,0, - 4525,4526,3,522,261,0,4526,4527,3,106,53,0,4527,4576,1,0,0,0,4528, - 4529,5,191,0,0,4529,4530,3,518,259,0,4530,4531,5,220,0,0,4531,4532, - 5,389,0,0,4532,4533,3,1338,669,0,4533,4534,5,80,0,0,4534,4535,3, - 522,261,0,4535,4536,3,106,53,0,4536,4576,1,0,0,0,4537,4538,5,191, - 0,0,4538,4539,5,353,0,0,4539,4540,3,526,263,0,4540,4541,3,106,53, - 0,4541,4576,1,0,0,0,4542,4543,5,191,0,0,4543,4544,5,353,0,0,4544, - 4545,5,220,0,0,4545,4546,5,389,0,0,4546,4547,3,526,263,0,4547,4548, - 3,106,53,0,4548,4576,1,0,0,0,4549,4550,5,191,0,0,4550,4551,5,189, - 0,0,4551,4552,3,526,263,0,4552,4553,3,106,53,0,4553,4576,1,0,0,0, - 4554,4555,5,191,0,0,4555,4556,5,189,0,0,4556,4557,5,220,0,0,4557, - 4558,5,389,0,0,4558,4559,3,526,263,0,4559,4560,3,106,53,0,4560,4576, - 1,0,0,0,4561,4562,5,191,0,0,4562,4563,5,226,0,0,4563,4564,5,109, - 0,0,4564,4565,3,520,260,0,4565,4566,3,106,53,0,4566,4576,1,0,0,0, - 4567,4568,5,191,0,0,4568,4569,5,226,0,0,4569,4570,5,109,0,0,4570, - 4571,5,220,0,0,4571,4572,5,389,0,0,4572,4573,3,520,260,0,4573,4574, - 3,106,53,0,4574,4576,1,0,0,0,4575,4497,1,0,0,0,4575,4504,1,0,0,0, - 4575,4509,1,0,0,0,4575,4516,1,0,0,0,4575,4521,1,0,0,0,4575,4528, - 1,0,0,0,4575,4537,1,0,0,0,4575,4542,1,0,0,0,4575,4549,1,0,0,0,4575, - 4554,1,0,0,0,4575,4561,1,0,0,0,4575,4567,1,0,0,0,4576,511,1,0,0, - 0,4577,4601,5,92,0,0,4578,4601,5,321,0,0,4579,4601,5,369,0,0,4580, - 4581,5,251,0,0,4581,4601,5,369,0,0,4582,4601,5,226,0,0,4583,4584, - 5,63,0,0,4584,4601,5,92,0,0,4585,4601,5,108,0,0,4586,4601,5,168, - 0,0,4587,4601,5,335,0,0,4588,4589,5,348,0,0,4589,4590,5,318,0,0, - 4590,4601,5,276,0,0,4591,4592,5,348,0,0,4592,4593,5,318,0,0,4593, - 4601,5,185,0,0,4594,4595,5,348,0,0,4595,4596,5,318,0,0,4596,4601, - 5,346,0,0,4597,4598,5,348,0,0,4598,4599,5,318,0,0,4599,4601,5,163, - 0,0,4600,4577,1,0,0,0,4600,4578,1,0,0,0,4600,4579,1,0,0,0,4600,4580, - 1,0,0,0,4600,4582,1,0,0,0,4600,4583,1,0,0,0,4600,4585,1,0,0,0,4600, - 4586,1,0,0,0,4600,4587,1,0,0,0,4600,4588,1,0,0,0,4600,4591,1,0,0, - 0,4600,4594,1,0,0,0,4600,4597,1,0,0,0,4601,513,1,0,0,0,4602,4608, - 3,516,258,0,4603,4608,5,175,0,0,4604,4608,5,311,0,0,4605,4608,5, - 451,0,0,4606,4608,5,344,0,0,4607,4602,1,0,0,0,4607,4603,1,0,0,0, - 4607,4604,1,0,0,0,4607,4605,1,0,0,0,4607,4606,1,0,0,0,4608,515,1, - 0,0,0,4609,4610,5,131,0,0,4610,4624,5,446,0,0,4611,4612,5,198,0, - 0,4612,4624,5,350,0,0,4613,4624,5,204,0,0,4614,4615,5,63,0,0,4615, - 4616,5,174,0,0,4616,4624,5,374,0,0,4617,4618,3,306,153,0,4618,4619, - 5,238,0,0,4619,4624,1,0,0,0,4620,4624,5,452,0,0,4621,4624,5,316, - 0,0,4622,4624,5,324,0,0,4623,4609,1,0,0,0,4623,4611,1,0,0,0,4623, - 4613,1,0,0,0,4623,4614,1,0,0,0,4623,4617,1,0,0,0,4623,4620,1,0,0, - 0,4623,4621,1,0,0,0,4623,4622,1,0,0,0,4624,517,1,0,0,0,4625,4626, - 7,23,0,0,4626,519,1,0,0,0,4627,4632,3,522,261,0,4628,4629,5,6,0, - 0,4629,4631,3,522,261,0,4630,4628,1,0,0,0,4631,4634,1,0,0,0,4632, - 4630,1,0,0,0,4632,4633,1,0,0,0,4633,521,1,0,0,0,4634,4632,1,0,0, - 0,4635,4637,3,1370,685,0,4636,4638,3,524,262,0,4637,4636,1,0,0,0, - 4637,4638,1,0,0,0,4638,523,1,0,0,0,4639,4640,5,11,0,0,4640,4642, - 3,1340,670,0,4641,4639,1,0,0,0,4642,4643,1,0,0,0,4643,4641,1,0,0, - 0,4643,4644,1,0,0,0,4644,525,1,0,0,0,4645,4650,3,1116,558,0,4646, - 4647,5,6,0,0,4647,4649,3,1116,558,0,4648,4646,1,0,0,0,4649,4652, - 1,0,0,0,4650,4648,1,0,0,0,4650,4651,1,0,0,0,4651,527,1,0,0,0,4652, - 4650,1,0,0,0,4653,4654,5,351,0,0,4654,4655,3,986,493,0,4655,4656, - 3,1074,537,0,4656,4657,3,530,265,0,4657,4658,3,106,53,0,4658,529, - 1,0,0,0,4659,4660,5,167,0,0,4660,4665,5,219,0,0,4661,4662,5,307, - 0,0,4662,4665,5,219,0,0,4663,4665,1,0,0,0,4664,4659,1,0,0,0,4664, - 4661,1,0,0,0,4664,4663,1,0,0,0,4665,531,1,0,0,0,4666,4667,5,159, - 0,0,4667,4668,5,80,0,0,4668,4669,3,512,256,0,4669,4670,3,522,261, - 0,4670,4671,5,116,0,0,4671,4672,3,534,267,0,4672,4814,1,0,0,0,4673, - 4674,5,159,0,0,4674,4675,5,80,0,0,4675,4676,5,44,0,0,4676,4677,3, - 522,261,0,4677,4678,5,116,0,0,4678,4679,3,534,267,0,4679,4814,1, - 0,0,0,4680,4681,5,159,0,0,4681,4682,5,80,0,0,4682,4683,3,514,257, - 0,4683,4684,3,1338,669,0,4684,4685,5,116,0,0,4685,4686,3,534,267, - 0,4686,4814,1,0,0,0,4687,4688,5,159,0,0,4688,4689,5,80,0,0,4689, - 4690,5,353,0,0,4690,4691,3,1116,558,0,4691,4692,5,116,0,0,4692,4693, - 3,534,267,0,4693,4814,1,0,0,0,4694,4695,5,159,0,0,4695,4696,5,80, - 0,0,4696,4697,5,189,0,0,4697,4698,3,1116,558,0,4698,4699,5,116,0, - 0,4699,4700,3,534,267,0,4700,4814,1,0,0,0,4701,4702,5,159,0,0,4702, - 4703,5,80,0,0,4703,4704,5,136,0,0,4704,4705,3,648,324,0,4705,4706, - 5,116,0,0,4706,4707,3,534,267,0,4707,4814,1,0,0,0,4708,4709,5,159, - 0,0,4709,4710,5,80,0,0,4710,4711,5,211,0,0,4711,4712,3,624,312,0, - 4712,4713,5,116,0,0,4713,4714,3,534,267,0,4714,4814,1,0,0,0,4715, - 4716,5,159,0,0,4716,4717,5,80,0,0,4717,4718,5,271,0,0,4718,4719, - 3,686,343,0,4719,4720,5,116,0,0,4720,4721,3,534,267,0,4721,4814, - 1,0,0,0,4722,4723,5,159,0,0,4723,4724,5,80,0,0,4724,4725,5,45,0, - 0,4725,4726,3,1338,669,0,4726,4727,5,80,0,0,4727,4728,3,522,261, - 0,4728,4729,5,116,0,0,4729,4730,3,534,267,0,4730,4814,1,0,0,0,4731, - 4732,5,159,0,0,4732,4733,5,80,0,0,4733,4734,5,45,0,0,4734,4735,3, - 1338,669,0,4735,4736,5,80,0,0,4736,4737,5,189,0,0,4737,4738,3,522, - 261,0,4738,4739,5,116,0,0,4739,4740,3,534,267,0,4740,4814,1,0,0, - 0,4741,4742,5,159,0,0,4742,4743,5,80,0,0,4743,4744,3,518,259,0,4744, - 4745,3,1338,669,0,4745,4746,5,80,0,0,4746,4747,3,522,261,0,4747, - 4748,5,116,0,0,4748,4749,3,534,267,0,4749,4814,1,0,0,0,4750,4751, - 5,159,0,0,4751,4752,5,80,0,0,4752,4753,5,289,0,0,4753,4754,3,624, - 312,0,4754,4755,5,116,0,0,4755,4756,3,534,267,0,4756,4814,1,0,0, - 0,4757,4758,5,159,0,0,4758,4759,5,80,0,0,4759,4760,5,442,0,0,4760, - 4761,3,624,312,0,4761,4762,5,116,0,0,4762,4763,3,534,267,0,4763, - 4814,1,0,0,0,4764,4765,5,159,0,0,4765,4766,5,80,0,0,4766,4767,5, - 443,0,0,4767,4768,5,62,0,0,4768,4769,3,1116,558,0,4769,4770,5,238, - 0,0,4770,4771,3,1338,669,0,4771,4772,5,116,0,0,4772,4773,3,534,267, - 0,4773,4814,1,0,0,0,4774,4775,5,159,0,0,4775,4776,5,80,0,0,4776, - 4777,5,271,0,0,4777,4778,5,156,0,0,4778,4779,3,522,261,0,4779,4780, - 5,100,0,0,4780,4781,3,1338,669,0,4781,4782,5,116,0,0,4782,4783,3, - 534,267,0,4783,4814,1,0,0,0,4784,4785,5,159,0,0,4785,4786,5,80,0, - 0,4786,4787,5,271,0,0,4787,4788,5,206,0,0,4788,4789,3,522,261,0, - 4789,4790,5,100,0,0,4790,4791,3,1338,669,0,4791,4792,5,116,0,0,4792, - 4793,3,534,267,0,4793,4814,1,0,0,0,4794,4795,5,159,0,0,4795,4796, - 5,80,0,0,4796,4797,5,239,0,0,4797,4798,5,267,0,0,4798,4799,3,290, - 145,0,4799,4800,5,116,0,0,4800,4801,3,534,267,0,4801,4814,1,0,0, - 0,4802,4803,5,159,0,0,4803,4804,5,80,0,0,4804,4805,5,41,0,0,4805, - 4806,5,2,0,0,4806,4807,3,1116,558,0,4807,4808,5,36,0,0,4808,4809, - 3,1116,558,0,4809,4810,5,3,0,0,4810,4811,5,116,0,0,4811,4812,3,534, - 267,0,4812,4814,1,0,0,0,4813,4666,1,0,0,0,4813,4673,1,0,0,0,4813, - 4680,1,0,0,0,4813,4687,1,0,0,0,4813,4694,1,0,0,0,4813,4701,1,0,0, - 0,4813,4708,1,0,0,0,4813,4715,1,0,0,0,4813,4722,1,0,0,0,4813,4731, - 1,0,0,0,4813,4741,1,0,0,0,4813,4750,1,0,0,0,4813,4757,1,0,0,0,4813, - 4764,1,0,0,0,4813,4774,1,0,0,0,4813,4784,1,0,0,0,4813,4794,1,0,0, - 0,4813,4802,1,0,0,0,4814,533,1,0,0,0,4815,4818,3,1356,678,0,4816, - 4818,5,78,0,0,4817,4815,1,0,0,0,4817,4816,1,0,0,0,4818,535,1,0,0, - 0,4819,4820,5,320,0,0,4820,4821,5,237,0,0,4821,4822,3,538,269,0, - 4822,4823,5,80,0,0,4823,4824,3,512,256,0,4824,4825,3,522,261,0,4825, - 4826,5,116,0,0,4826,4827,3,540,270,0,4827,4911,1,0,0,0,4828,4829, - 5,320,0,0,4829,4830,5,237,0,0,4830,4831,3,538,269,0,4831,4832,5, - 80,0,0,4832,4833,5,44,0,0,4833,4834,3,522,261,0,4834,4835,5,116, - 0,0,4835,4836,3,540,270,0,4836,4911,1,0,0,0,4837,4838,5,320,0,0, - 4838,4839,5,237,0,0,4839,4840,3,538,269,0,4840,4841,5,80,0,0,4841, - 4842,3,514,257,0,4842,4843,3,1338,669,0,4843,4844,5,116,0,0,4844, - 4845,3,540,270,0,4845,4911,1,0,0,0,4846,4847,5,320,0,0,4847,4848, - 5,237,0,0,4848,4849,3,538,269,0,4849,4850,5,80,0,0,4850,4851,5,353, - 0,0,4851,4852,3,1116,558,0,4852,4853,5,116,0,0,4853,4854,3,540,270, - 0,4854,4911,1,0,0,0,4855,4856,5,320,0,0,4856,4857,5,237,0,0,4857, - 4858,3,538,269,0,4858,4859,5,80,0,0,4859,4860,5,189,0,0,4860,4861, - 3,1116,558,0,4861,4862,5,116,0,0,4862,4863,3,540,270,0,4863,4911, - 1,0,0,0,4864,4865,5,320,0,0,4865,4866,5,237,0,0,4866,4867,3,538, - 269,0,4867,4868,5,80,0,0,4868,4869,5,136,0,0,4869,4870,3,648,324, - 0,4870,4871,5,116,0,0,4871,4872,3,540,270,0,4872,4911,1,0,0,0,4873, - 4874,5,320,0,0,4874,4875,5,237,0,0,4875,4876,3,538,269,0,4876,4877, - 5,80,0,0,4877,4878,5,211,0,0,4878,4879,3,624,312,0,4879,4880,5,116, - 0,0,4880,4881,3,540,270,0,4881,4911,1,0,0,0,4882,4883,5,320,0,0, - 4883,4884,5,237,0,0,4884,4885,3,538,269,0,4885,4886,5,80,0,0,4886, - 4887,5,239,0,0,4887,4888,5,267,0,0,4888,4889,3,290,145,0,4889,4890, - 5,116,0,0,4890,4891,3,540,270,0,4891,4911,1,0,0,0,4892,4893,5,320, - 0,0,4893,4894,5,237,0,0,4894,4895,3,538,269,0,4895,4896,5,80,0,0, - 4896,4897,5,289,0,0,4897,4898,3,624,312,0,4898,4899,5,116,0,0,4899, - 4900,3,540,270,0,4900,4911,1,0,0,0,4901,4902,5,320,0,0,4902,4903, - 5,237,0,0,4903,4904,3,538,269,0,4904,4905,5,80,0,0,4905,4906,5,442, - 0,0,4906,4907,3,624,312,0,4907,4908,5,116,0,0,4908,4909,3,540,270, - 0,4909,4911,1,0,0,0,4910,4819,1,0,0,0,4910,4828,1,0,0,0,4910,4837, - 1,0,0,0,4910,4846,1,0,0,0,4910,4855,1,0,0,0,4910,4864,1,0,0,0,4910, - 4873,1,0,0,0,4910,4882,1,0,0,0,4910,4892,1,0,0,0,4910,4901,1,0,0, - 0,4911,537,1,0,0,0,4912,4913,5,62,0,0,4913,4916,3,70,35,0,4914,4916, - 1,0,0,0,4915,4912,1,0,0,0,4915,4914,1,0,0,0,4916,539,1,0,0,0,4917, - 4920,3,1356,678,0,4918,4920,5,78,0,0,4919,4917,1,0,0,0,4919,4918, - 1,0,0,0,4920,541,1,0,0,0,4921,4922,5,61,0,0,4922,4926,3,544,272, - 0,4923,4924,5,258,0,0,4924,4926,3,544,272,0,4925,4921,1,0,0,0,4925, - 4923,1,0,0,0,4926,543,1,0,0,0,4927,4994,3,952,476,0,4928,4929,3, - 546,273,0,4929,4930,3,952,476,0,4930,4994,1,0,0,0,4931,4932,5,261, - 0,0,4932,4933,3,548,274,0,4933,4934,3,952,476,0,4934,4994,1,0,0, - 0,4935,4936,5,286,0,0,4936,4937,3,548,274,0,4937,4938,3,952,476, - 0,4938,4994,1,0,0,0,4939,4940,5,207,0,0,4940,4941,3,548,274,0,4941, - 4942,3,952,476,0,4942,4994,1,0,0,0,4943,4944,5,240,0,0,4944,4945, - 3,548,274,0,4945,4946,3,952,476,0,4946,4994,1,0,0,0,4947,4948,5, - 130,0,0,4948,4949,3,1362,681,0,4949,4950,3,548,274,0,4950,4951,3, - 952,476,0,4951,4994,1,0,0,0,4952,4953,5,300,0,0,4953,4954,3,1362, - 681,0,4954,4955,3,548,274,0,4955,4956,3,952,476,0,4956,4994,1,0, - 0,0,4957,4958,3,1362,681,0,4958,4959,3,548,274,0,4959,4960,3,952, - 476,0,4960,4994,1,0,0,0,4961,4962,5,30,0,0,4962,4963,3,548,274,0, - 4963,4964,3,952,476,0,4964,4994,1,0,0,0,4965,4966,5,210,0,0,4966, - 4967,3,548,274,0,4967,4968,3,952,476,0,4968,4994,1,0,0,0,4969,4970, - 5,210,0,0,4970,4971,3,1362,681,0,4971,4972,3,548,274,0,4972,4973, - 3,952,476,0,4973,4994,1,0,0,0,4974,4975,5,210,0,0,4975,4976,5,30, - 0,0,4976,4977,3,548,274,0,4977,4978,3,952,476,0,4978,4994,1,0,0, - 0,4979,4980,5,144,0,0,4980,4981,3,548,274,0,4981,4982,3,952,476, - 0,4982,4994,1,0,0,0,4983,4984,5,144,0,0,4984,4985,3,1362,681,0,4985, - 4986,3,548,274,0,4986,4987,3,952,476,0,4987,4994,1,0,0,0,4988,4989, - 5,144,0,0,4989,4990,5,30,0,0,4990,4991,3,548,274,0,4991,4992,3,952, - 476,0,4992,4994,1,0,0,0,4993,4927,1,0,0,0,4993,4928,1,0,0,0,4993, - 4931,1,0,0,0,4993,4935,1,0,0,0,4993,4939,1,0,0,0,4993,4943,1,0,0, - 0,4993,4947,1,0,0,0,4993,4952,1,0,0,0,4993,4957,1,0,0,0,4993,4961, - 1,0,0,0,4993,4965,1,0,0,0,4993,4969,1,0,0,0,4993,4974,1,0,0,0,4993, - 4979,1,0,0,0,4993,4983,1,0,0,0,4993,4988,1,0,0,0,4994,545,1,0,0, - 0,4995,4996,7,24,0,0,4996,547,1,0,0,0,4997,5000,3,546,273,0,4998, - 5000,1,0,0,0,4999,4997,1,0,0,0,4999,4998,1,0,0,0,5000,549,1,0,0, - 0,5001,5002,5,65,0,0,5002,5003,3,554,277,0,5003,5004,5,80,0,0,5004, - 5005,3,560,280,0,5005,5006,5,94,0,0,5006,5007,3,562,281,0,5007,5008, - 3,566,283,0,5008,551,1,0,0,0,5009,5010,5,310,0,0,5010,5011,3,554, - 277,0,5011,5012,5,80,0,0,5012,5013,3,560,280,0,5013,5014,5,64,0, - 0,5014,5015,3,562,281,0,5015,5016,3,106,53,0,5016,5029,1,0,0,0,5017, - 5018,5,310,0,0,5018,5019,5,65,0,0,5019,5020,5,272,0,0,5020,5021, - 5,62,0,0,5021,5022,3,554,277,0,5022,5023,5,80,0,0,5023,5024,3,560, - 280,0,5024,5025,5,64,0,0,5025,5026,3,562,281,0,5026,5027,3,106,53, - 0,5027,5029,1,0,0,0,5028,5009,1,0,0,0,5028,5017,1,0,0,0,5029,553, - 1,0,0,0,5030,5046,3,556,278,0,5031,5046,5,30,0,0,5032,5033,5,30, - 0,0,5033,5046,5,287,0,0,5034,5035,5,30,0,0,5035,5036,5,2,0,0,5036, - 5037,3,214,107,0,5037,5038,5,3,0,0,5038,5046,1,0,0,0,5039,5040,5, - 30,0,0,5040,5041,5,287,0,0,5041,5042,5,2,0,0,5042,5043,3,214,107, - 0,5043,5044,5,3,0,0,5044,5046,1,0,0,0,5045,5030,1,0,0,0,5045,5031, - 1,0,0,0,5045,5032,1,0,0,0,5045,5034,1,0,0,0,5045,5039,1,0,0,0,5046, - 555,1,0,0,0,5047,5052,3,558,279,0,5048,5049,5,6,0,0,5049,5051,3, - 558,279,0,5050,5048,1,0,0,0,5051,5054,1,0,0,0,5052,5050,1,0,0,0, - 5052,5053,1,0,0,0,5053,557,1,0,0,0,5054,5052,1,0,0,0,5055,5056,5, - 88,0,0,5056,5065,3,212,106,0,5057,5058,5,86,0,0,5058,5065,3,212, - 106,0,5059,5060,5,46,0,0,5060,5065,3,212,106,0,5061,5062,3,1370, - 685,0,5062,5063,3,212,106,0,5063,5065,1,0,0,0,5064,5055,1,0,0,0, - 5064,5057,1,0,0,0,5064,5059,1,0,0,0,5064,5061,1,0,0,0,5065,559,1, - 0,0,0,5066,5125,3,1332,666,0,5067,5068,5,92,0,0,5068,5125,3,1332, - 666,0,5069,5070,5,321,0,0,5070,5125,3,1332,666,0,5071,5072,5,63, - 0,0,5072,5073,5,174,0,0,5073,5074,5,374,0,0,5074,5125,3,1336,668, - 0,5075,5076,5,63,0,0,5076,5077,5,324,0,0,5077,5125,3,1336,668,0, - 5078,5079,5,211,0,0,5079,5125,3,622,311,0,5080,5081,5,289,0,0,5081, - 5125,3,622,311,0,5082,5083,5,442,0,0,5083,5125,3,622,311,0,5084, - 5085,5,175,0,0,5085,5125,3,1336,668,0,5086,5087,5,189,0,0,5087,5125, - 3,520,260,0,5088,5089,5,238,0,0,5089,5125,3,1336,668,0,5090,5091, - 5,239,0,0,5091,5092,5,267,0,0,5092,5125,3,292,146,0,5093,5094,5, - 316,0,0,5094,5125,3,1336,668,0,5095,5096,5,344,0,0,5096,5125,3,1336, - 668,0,5097,5098,5,353,0,0,5098,5125,3,520,260,0,5099,5100,5,30,0, - 0,5100,5101,5,343,0,0,5101,5102,5,68,0,0,5102,5103,5,316,0,0,5103, - 5125,3,1336,668,0,5104,5105,5,30,0,0,5105,5106,5,322,0,0,5106,5107, - 5,68,0,0,5107,5108,5,316,0,0,5108,5125,3,1336,668,0,5109,5110,5, - 30,0,0,5110,5111,5,212,0,0,5111,5112,5,68,0,0,5112,5113,5,316,0, - 0,5113,5125,3,1336,668,0,5114,5115,5,30,0,0,5115,5116,5,457,0,0, - 5116,5117,5,68,0,0,5117,5118,5,316,0,0,5118,5125,3,1336,668,0,5119, - 5120,5,30,0,0,5120,5121,5,455,0,0,5121,5122,5,68,0,0,5122,5123,5, - 316,0,0,5123,5125,3,1336,668,0,5124,5066,1,0,0,0,5124,5067,1,0,0, - 0,5124,5069,1,0,0,0,5124,5071,1,0,0,0,5124,5075,1,0,0,0,5124,5078, - 1,0,0,0,5124,5080,1,0,0,0,5124,5082,1,0,0,0,5124,5084,1,0,0,0,5124, - 5086,1,0,0,0,5124,5088,1,0,0,0,5124,5090,1,0,0,0,5124,5093,1,0,0, - 0,5124,5095,1,0,0,0,5124,5097,1,0,0,0,5124,5099,1,0,0,0,5124,5104, - 1,0,0,0,5124,5109,1,0,0,0,5124,5114,1,0,0,0,5124,5119,1,0,0,0,5125, - 561,1,0,0,0,5126,5131,3,564,282,0,5127,5128,5,6,0,0,5128,5130,3, - 564,282,0,5129,5127,1,0,0,0,5130,5133,1,0,0,0,5131,5129,1,0,0,0, - 5131,5132,1,0,0,0,5132,563,1,0,0,0,5133,5131,1,0,0,0,5134,5138,3, - 1366,683,0,5135,5136,5,66,0,0,5136,5138,3,1366,683,0,5137,5134,1, - 0,0,0,5137,5135,1,0,0,0,5138,565,1,0,0,0,5139,5140,5,105,0,0,5140, - 5141,5,65,0,0,5141,5144,5,272,0,0,5142,5144,1,0,0,0,5143,5139,1, - 0,0,0,5143,5142,1,0,0,0,5144,567,1,0,0,0,5145,5146,5,65,0,0,5146, - 5147,3,556,278,0,5147,5148,5,94,0,0,5148,5149,3,1368,684,0,5149, - 5150,3,572,286,0,5150,5151,3,574,287,0,5151,569,1,0,0,0,5152,5153, - 5,310,0,0,5153,5154,3,556,278,0,5154,5155,5,64,0,0,5155,5156,3,1368, - 684,0,5156,5157,3,574,287,0,5157,5158,3,106,53,0,5158,5170,1,0,0, - 0,5159,5160,5,310,0,0,5160,5161,5,134,0,0,5161,5162,5,272,0,0,5162, - 5163,5,62,0,0,5163,5164,3,556,278,0,5164,5165,5,64,0,0,5165,5166, - 3,1368,684,0,5166,5167,3,574,287,0,5167,5168,3,106,53,0,5168,5170, - 1,0,0,0,5169,5152,1,0,0,0,5169,5159,1,0,0,0,5170,571,1,0,0,0,5171, - 5172,5,105,0,0,5172,5173,5,134,0,0,5173,5176,5,272,0,0,5174,5176, - 1,0,0,0,5175,5171,1,0,0,0,5175,5174,1,0,0,0,5176,573,1,0,0,0,5177, - 5178,5,214,0,0,5178,5179,5,147,0,0,5179,5182,3,1366,683,0,5180,5182, - 1,0,0,0,5181,5177,1,0,0,0,5181,5180,1,0,0,0,5182,575,1,0,0,0,5183, - 5184,5,138,0,0,5184,5185,5,53,0,0,5185,5186,5,287,0,0,5186,5187, - 3,578,289,0,5187,5188,3,582,291,0,5188,577,1,0,0,0,5189,5191,3,580, - 290,0,5190,5189,1,0,0,0,5191,5194,1,0,0,0,5192,5190,1,0,0,0,5192, - 5193,1,0,0,0,5193,579,1,0,0,0,5194,5192,1,0,0,0,5195,5196,5,68,0, - 0,5196,5197,5,316,0,0,5197,5205,3,1336,668,0,5198,5199,5,62,0,0, - 5199,5200,5,311,0,0,5200,5205,3,1368,684,0,5201,5202,5,62,0,0,5202, - 5203,5,99,0,0,5203,5205,3,1368,684,0,5204,5195,1,0,0,0,5204,5198, - 1,0,0,0,5204,5201,1,0,0,0,5205,581,1,0,0,0,5206,5207,5,65,0,0,5207, - 5208,3,554,277,0,5208,5209,5,80,0,0,5209,5210,3,584,292,0,5210,5211, - 5,94,0,0,5211,5212,3,562,281,0,5212,5213,3,566,283,0,5213,5234,1, - 0,0,0,5214,5215,5,310,0,0,5215,5216,3,554,277,0,5216,5217,5,80,0, - 0,5217,5218,3,584,292,0,5218,5219,5,64,0,0,5219,5220,3,562,281,0, - 5220,5221,3,106,53,0,5221,5234,1,0,0,0,5222,5223,5,310,0,0,5223, - 5224,5,65,0,0,5224,5225,5,272,0,0,5225,5226,5,62,0,0,5226,5227,3, - 554,277,0,5227,5228,5,80,0,0,5228,5229,3,584,292,0,5229,5230,5,64, - 0,0,5230,5231,3,562,281,0,5231,5232,3,106,53,0,5232,5234,1,0,0,0, - 5233,5206,1,0,0,0,5233,5214,1,0,0,0,5233,5222,1,0,0,0,5234,583,1, - 0,0,0,5235,5236,7,25,0,0,5236,585,1,0,0,0,5237,5238,5,46,0,0,5238, - 5239,3,588,294,0,5239,5240,5,226,0,0,5240,5241,3,590,295,0,5241, - 5242,3,592,296,0,5242,5243,5,80,0,0,5243,5244,3,1072,536,0,5244, - 5245,3,594,297,0,5245,5246,5,2,0,0,5246,5247,3,596,298,0,5247,5248, - 5,3,0,0,5248,5249,3,602,301,0,5249,5250,3,116,58,0,5250,5251,3,252, - 126,0,5251,5252,3,1092,546,0,5252,5273,1,0,0,0,5253,5254,5,46,0, - 0,5254,5255,3,588,294,0,5255,5256,5,226,0,0,5256,5257,3,590,295, - 0,5257,5258,5,220,0,0,5258,5259,5,77,0,0,5259,5260,5,389,0,0,5260, - 5261,3,1338,669,0,5261,5262,5,80,0,0,5262,5263,3,1072,536,0,5263, - 5264,3,594,297,0,5264,5265,5,2,0,0,5265,5266,3,596,298,0,5266,5267, - 5,3,0,0,5267,5268,3,602,301,0,5268,5269,3,116,58,0,5269,5270,3,252, - 126,0,5270,5271,3,1092,546,0,5271,5273,1,0,0,0,5272,5237,1,0,0,0, - 5272,5253,1,0,0,0,5273,587,1,0,0,0,5274,5277,5,98,0,0,5275,5277, - 1,0,0,0,5276,5274,1,0,0,0,5276,5275,1,0,0,0,5277,589,1,0,0,0,5278, - 5281,5,109,0,0,5279,5281,1,0,0,0,5280,5278,1,0,0,0,5280,5279,1,0, - 0,0,5281,591,1,0,0,0,5282,5285,3,1338,669,0,5283,5285,1,0,0,0,5284, - 5282,1,0,0,0,5284,5283,1,0,0,0,5285,593,1,0,0,0,5286,5287,5,100, - 0,0,5287,5290,3,1338,669,0,5288,5290,1,0,0,0,5289,5286,1,0,0,0,5289, - 5288,1,0,0,0,5290,595,1,0,0,0,5291,5296,3,600,300,0,5292,5293,5, - 6,0,0,5293,5295,3,600,300,0,5294,5292,1,0,0,0,5295,5298,1,0,0,0, - 5296,5294,1,0,0,0,5296,5297,1,0,0,0,5297,597,1,0,0,0,5298,5296,1, - 0,0,0,5299,5300,3,606,303,0,5300,5301,3,608,304,0,5301,5302,3,610, - 305,0,5302,5303,3,612,306,0,5303,5311,1,0,0,0,5304,5305,3,606,303, - 0,5305,5306,3,522,261,0,5306,5307,3,114,57,0,5307,5308,3,610,305, - 0,5308,5309,3,612,306,0,5309,5311,1,0,0,0,5310,5299,1,0,0,0,5310, - 5304,1,0,0,0,5311,599,1,0,0,0,5312,5313,3,1370,685,0,5313,5314,3, - 598,299,0,5314,5324,1,0,0,0,5315,5316,3,1212,606,0,5316,5317,3,598, - 299,0,5317,5324,1,0,0,0,5318,5319,5,2,0,0,5319,5320,3,1160,580,0, - 5320,5321,5,3,0,0,5321,5322,3,598,299,0,5322,5324,1,0,0,0,5323,5312, - 1,0,0,0,5323,5315,1,0,0,0,5323,5318,1,0,0,0,5324,601,1,0,0,0,5325, - 5326,5,441,0,0,5326,5327,5,2,0,0,5327,5328,3,604,302,0,5328,5329, - 5,3,0,0,5329,5332,1,0,0,0,5330,5332,1,0,0,0,5331,5325,1,0,0,0,5331, - 5330,1,0,0,0,5332,603,1,0,0,0,5333,5338,3,600,300,0,5334,5335,5, - 6,0,0,5335,5337,3,600,300,0,5336,5334,1,0,0,0,5337,5340,1,0,0,0, - 5338,5336,1,0,0,0,5338,5339,1,0,0,0,5339,605,1,0,0,0,5340,5338,1, - 0,0,0,5341,5342,5,43,0,0,5342,5345,3,522,261,0,5343,5345,1,0,0,0, - 5344,5341,1,0,0,0,5344,5343,1,0,0,0,5345,607,1,0,0,0,5346,5349,3, - 522,261,0,5347,5349,1,0,0,0,5348,5346,1,0,0,0,5348,5347,1,0,0,0, - 5349,609,1,0,0,0,5350,5354,5,37,0,0,5351,5354,5,55,0,0,5352,5354, - 1,0,0,0,5353,5350,1,0,0,0,5353,5351,1,0,0,0,5353,5352,1,0,0,0,5354, - 611,1,0,0,0,5355,5356,5,266,0,0,5356,5361,5,207,0,0,5357,5358,5, - 266,0,0,5358,5361,5,240,0,0,5359,5361,1,0,0,0,5360,5355,1,0,0,0, - 5360,5357,1,0,0,0,5360,5359,1,0,0,0,5361,613,1,0,0,0,5362,5363,5, - 46,0,0,5363,5364,3,616,308,0,5364,5365,7,22,0,0,5365,5366,3,1344, - 672,0,5366,5376,3,626,313,0,5367,5374,5,309,0,0,5368,5375,3,636, - 318,0,5369,5370,5,92,0,0,5370,5371,5,2,0,0,5371,5372,3,666,333,0, - 5372,5373,5,3,0,0,5373,5375,1,0,0,0,5374,5368,1,0,0,0,5374,5369, - 1,0,0,0,5375,5377,1,0,0,0,5376,5367,1,0,0,0,5376,5377,1,0,0,0,5377, - 5378,1,0,0,0,5378,5379,3,652,326,0,5379,615,1,0,0,0,5380,5381,5, - 82,0,0,5381,5384,5,304,0,0,5382,5384,1,0,0,0,5383,5380,1,0,0,0,5383, - 5382,1,0,0,0,5384,617,1,0,0,0,5385,5387,5,2,0,0,5386,5388,3,620, - 310,0,5387,5386,1,0,0,0,5387,5388,1,0,0,0,5388,5389,1,0,0,0,5389, - 5390,5,3,0,0,5390,619,1,0,0,0,5391,5396,3,630,315,0,5392,5393,5, - 6,0,0,5393,5395,3,630,315,0,5394,5392,1,0,0,0,5395,5398,1,0,0,0, - 5396,5394,1,0,0,0,5396,5397,1,0,0,0,5397,621,1,0,0,0,5398,5396,1, - 0,0,0,5399,5404,3,624,312,0,5400,5401,5,6,0,0,5401,5403,3,624,312, - 0,5402,5400,1,0,0,0,5403,5406,1,0,0,0,5404,5402,1,0,0,0,5404,5405, - 1,0,0,0,5405,623,1,0,0,0,5406,5404,1,0,0,0,5407,5408,3,1344,672, - 0,5408,5409,3,618,309,0,5409,5416,1,0,0,0,5410,5416,3,1388,694,0, - 5411,5413,3,1370,685,0,5412,5414,3,1322,661,0,5413,5412,1,0,0,0, - 5413,5414,1,0,0,0,5414,5416,1,0,0,0,5415,5407,1,0,0,0,5415,5410, - 1,0,0,0,5415,5411,1,0,0,0,5416,625,1,0,0,0,5417,5419,5,2,0,0,5418, - 5420,3,628,314,0,5419,5418,1,0,0,0,5419,5420,1,0,0,0,5420,5421,1, - 0,0,0,5421,5422,5,3,0,0,5422,627,1,0,0,0,5423,5428,3,640,320,0,5424, - 5425,5,6,0,0,5425,5427,3,640,320,0,5426,5424,1,0,0,0,5427,5430,1, - 0,0,0,5428,5426,1,0,0,0,5428,5429,1,0,0,0,5429,629,1,0,0,0,5430, - 5428,1,0,0,0,5431,5433,3,632,316,0,5432,5434,3,634,317,0,5433,5432, - 1,0,0,0,5433,5434,1,0,0,0,5434,5435,1,0,0,0,5435,5436,3,638,319, - 0,5436,5445,1,0,0,0,5437,5439,3,634,317,0,5438,5440,3,632,316,0, - 5439,5438,1,0,0,0,5439,5440,1,0,0,0,5440,5441,1,0,0,0,5441,5442, - 3,638,319,0,5442,5445,1,0,0,0,5443,5445,3,638,319,0,5444,5431,1, - 0,0,0,5444,5437,1,0,0,0,5444,5443,1,0,0,0,5445,631,1,0,0,0,5446, - 5448,5,68,0,0,5447,5449,5,453,0,0,5448,5447,1,0,0,0,5448,5449,1, - 0,0,0,5449,5454,1,0,0,0,5450,5454,5,453,0,0,5451,5454,5,393,0,0, - 5452,5454,5,101,0,0,5453,5446,1,0,0,0,5453,5450,1,0,0,0,5453,5451, - 1,0,0,0,5453,5452,1,0,0,0,5454,633,1,0,0,0,5455,5460,3,1374,687, - 0,5456,5460,3,1392,696,0,5457,5460,5,119,0,0,5458,5460,5,126,0,0, - 5459,5455,1,0,0,0,5459,5456,1,0,0,0,5459,5457,1,0,0,0,5459,5458, - 1,0,0,0,5460,635,1,0,0,0,5461,5462,3,638,319,0,5462,637,1,0,0,0, - 5463,5478,3,1116,558,0,5464,5466,5,408,0,0,5465,5464,1,0,0,0,5465, - 5466,1,0,0,0,5466,5471,1,0,0,0,5467,5472,3,1392,696,0,5468,5472, - 3,1374,687,0,5469,5472,5,119,0,0,5470,5472,5,126,0,0,5471,5467,1, - 0,0,0,5471,5468,1,0,0,0,5471,5469,1,0,0,0,5471,5470,1,0,0,0,5472, - 5473,1,0,0,0,5473,5474,3,524,262,0,5474,5475,5,27,0,0,5475,5476, - 5,353,0,0,5476,5478,1,0,0,0,5477,5463,1,0,0,0,5477,5465,1,0,0,0, - 5478,639,1,0,0,0,5479,5482,3,630,315,0,5480,5481,7,26,0,0,5481,5483, - 3,1160,580,0,5482,5480,1,0,0,0,5482,5483,1,0,0,0,5483,641,1,0,0, - 0,5484,5485,3,630,315,0,5485,643,1,0,0,0,5486,5497,5,2,0,0,5487, - 5498,5,9,0,0,5488,5498,3,646,323,0,5489,5490,5,83,0,0,5490,5491, - 5,147,0,0,5491,5498,3,646,323,0,5492,5493,3,646,323,0,5493,5494, - 5,83,0,0,5494,5495,5,147,0,0,5495,5496,3,646,323,0,5496,5498,1,0, - 0,0,5497,5487,1,0,0,0,5497,5488,1,0,0,0,5497,5489,1,0,0,0,5497,5492, - 1,0,0,0,5498,5499,1,0,0,0,5499,5500,5,3,0,0,5500,645,1,0,0,0,5501, - 5506,3,642,321,0,5502,5503,5,6,0,0,5503,5505,3,642,321,0,5504,5502, - 1,0,0,0,5505,5508,1,0,0,0,5506,5504,1,0,0,0,5506,5507,1,0,0,0,5507, - 647,1,0,0,0,5508,5506,1,0,0,0,5509,5510,3,1344,672,0,5510,5511,3, - 644,322,0,5511,649,1,0,0,0,5512,5517,3,648,324,0,5513,5514,5,6,0, - 0,5514,5516,3,648,324,0,5515,5513,1,0,0,0,5516,5519,1,0,0,0,5517, - 5515,1,0,0,0,5517,5518,1,0,0,0,5518,651,1,0,0,0,5519,5517,1,0,0, - 0,5520,5522,3,656,328,0,5521,5520,1,0,0,0,5522,5523,1,0,0,0,5523, - 5521,1,0,0,0,5523,5524,1,0,0,0,5524,5525,1,0,0,0,5525,5526,6,326, - -1,0,5526,653,1,0,0,0,5527,5528,5,149,0,0,5528,5529,5,80,0,0,5529, - 5530,5,78,0,0,5530,5563,5,458,0,0,5531,5532,5,309,0,0,5532,5533, - 5,78,0,0,5533,5534,5,80,0,0,5534,5535,5,78,0,0,5535,5563,5,458,0, - 0,5536,5563,5,339,0,0,5537,5563,5,222,0,0,5538,5563,5,331,0,0,5539, - 5563,5,370,0,0,5540,5541,5,205,0,0,5541,5542,5,320,0,0,5542,5563, - 5,181,0,0,5543,5544,5,205,0,0,5544,5545,5,320,0,0,5545,5563,5,234, - 0,0,5546,5547,5,320,0,0,5547,5563,5,181,0,0,5548,5549,5,320,0,0, - 5549,5563,5,234,0,0,5550,5563,5,241,0,0,5551,5552,5,77,0,0,5552, - 5563,5,241,0,0,5553,5554,5,170,0,0,5554,5563,3,290,145,0,5555,5556, - 5,313,0,0,5556,5563,3,290,145,0,5557,5558,5,459,0,0,5558,5563,3, - 522,261,0,5559,5563,3,80,40,0,5560,5561,5,460,0,0,5561,5563,3,1370, - 685,0,5562,5527,1,0,0,0,5562,5531,1,0,0,0,5562,5536,1,0,0,0,5562, - 5537,1,0,0,0,5562,5538,1,0,0,0,5562,5539,1,0,0,0,5562,5540,1,0,0, - 0,5562,5543,1,0,0,0,5562,5546,1,0,0,0,5562,5548,1,0,0,0,5562,5550, - 1,0,0,0,5562,5551,1,0,0,0,5562,5553,1,0,0,0,5562,5555,1,0,0,0,5562, - 5557,1,0,0,0,5562,5559,1,0,0,0,5562,5560,1,0,0,0,5563,655,1,0,0, - 0,5564,5565,5,36,0,0,5565,5573,3,658,329,0,5566,5567,5,238,0,0,5567, - 5573,3,70,35,0,5568,5569,5,443,0,0,5569,5573,3,660,330,0,5570,5573, - 5,104,0,0,5571,5573,3,654,327,0,5572,5564,1,0,0,0,5572,5566,1,0, - 0,0,5572,5568,1,0,0,0,5572,5570,1,0,0,0,5572,5571,1,0,0,0,5573,657, - 1,0,0,0,5574,5580,3,1356,678,0,5575,5576,3,1356,678,0,5576,5577, - 5,6,0,0,5577,5578,3,1356,678,0,5578,5580,1,0,0,0,5579,5574,1,0,0, - 0,5579,5575,1,0,0,0,5580,659,1,0,0,0,5581,5582,5,62,0,0,5582,5583, - 5,353,0,0,5583,5590,3,1116,558,0,5584,5585,5,6,0,0,5585,5586,5,62, - 0,0,5586,5587,5,353,0,0,5587,5589,3,1116,558,0,5588,5584,1,0,0,0, - 5589,5592,1,0,0,0,5590,5588,1,0,0,0,5590,5591,1,0,0,0,5591,661,1, - 0,0,0,5592,5590,1,0,0,0,5593,5594,5,105,0,0,5594,5597,3,458,229, - 0,5595,5597,1,0,0,0,5596,5593,1,0,0,0,5596,5595,1,0,0,0,5597,663, - 1,0,0,0,5598,5599,3,634,317,0,5599,5600,3,638,319,0,5600,665,1,0, - 0,0,5601,5606,3,664,332,0,5602,5603,5,6,0,0,5603,5605,3,664,332, - 0,5604,5602,1,0,0,0,5605,5608,1,0,0,0,5606,5604,1,0,0,0,5606,5607, - 1,0,0,0,5607,667,1,0,0,0,5608,5606,1,0,0,0,5609,5610,5,138,0,0,5610, - 5611,7,27,0,0,5611,5612,3,624,312,0,5612,5613,3,670,335,0,5613,5614, - 3,672,336,0,5614,669,1,0,0,0,5615,5617,3,654,327,0,5616,5615,1,0, - 0,0,5617,5618,1,0,0,0,5618,5616,1,0,0,0,5618,5619,1,0,0,0,5619,671, - 1,0,0,0,5620,5623,5,308,0,0,5621,5623,1,0,0,0,5622,5620,1,0,0,0, - 5622,5621,1,0,0,0,5623,673,1,0,0,0,5624,5625,5,191,0,0,5625,5626, - 5,211,0,0,5626,5627,3,622,311,0,5627,5628,3,106,53,0,5628,5661,1, - 0,0,0,5629,5630,5,191,0,0,5630,5631,5,211,0,0,5631,5632,5,220,0, - 0,5632,5633,5,389,0,0,5633,5634,3,622,311,0,5634,5635,3,106,53,0, - 5635,5661,1,0,0,0,5636,5637,5,191,0,0,5637,5638,5,289,0,0,5638,5639, - 3,622,311,0,5639,5640,3,106,53,0,5640,5661,1,0,0,0,5641,5642,5,191, - 0,0,5642,5643,5,289,0,0,5643,5644,5,220,0,0,5644,5645,5,389,0,0, - 5645,5646,3,622,311,0,5646,5647,3,106,53,0,5647,5661,1,0,0,0,5648, - 5649,5,191,0,0,5649,5650,5,442,0,0,5650,5651,3,622,311,0,5651,5652, - 3,106,53,0,5652,5661,1,0,0,0,5653,5654,5,191,0,0,5654,5655,5,442, - 0,0,5655,5656,5,220,0,0,5656,5657,5,389,0,0,5657,5658,3,622,311, - 0,5658,5659,3,106,53,0,5659,5661,1,0,0,0,5660,5624,1,0,0,0,5660, - 5629,1,0,0,0,5660,5636,1,0,0,0,5660,5641,1,0,0,0,5660,5648,1,0,0, - 0,5660,5653,1,0,0,0,5661,675,1,0,0,0,5662,5663,5,191,0,0,5663,5664, - 5,136,0,0,5664,5665,3,650,325,0,5665,5666,3,106,53,0,5666,5675,1, - 0,0,0,5667,5668,5,191,0,0,5668,5669,5,136,0,0,5669,5670,5,220,0, - 0,5670,5671,5,389,0,0,5671,5672,3,650,325,0,5672,5673,3,106,53,0, - 5673,5675,1,0,0,0,5674,5662,1,0,0,0,5674,5667,1,0,0,0,5675,677,1, - 0,0,0,5676,5677,5,191,0,0,5677,5678,5,271,0,0,5678,5679,3,684,342, - 0,5679,5680,3,106,53,0,5680,5689,1,0,0,0,5681,5682,5,191,0,0,5682, - 5683,5,271,0,0,5683,5684,5,220,0,0,5684,5685,5,389,0,0,5685,5686, - 3,684,342,0,5686,5687,3,106,53,0,5687,5689,1,0,0,0,5688,5676,1,0, - 0,0,5688,5681,1,0,0,0,5689,679,1,0,0,0,5690,5691,5,2,0,0,5691,5692, - 3,1116,558,0,5692,5693,5,3,0,0,5693,5713,1,0,0,0,5694,5695,5,2,0, - 0,5695,5696,3,1116,558,0,5696,5697,5,6,0,0,5697,5698,3,1116,558, - 0,5698,5699,5,3,0,0,5699,5713,1,0,0,0,5700,5701,5,2,0,0,5701,5702, - 5,400,0,0,5702,5703,5,6,0,0,5703,5704,3,1116,558,0,5704,5705,5,3, - 0,0,5705,5713,1,0,0,0,5706,5707,5,2,0,0,5707,5708,3,1116,558,0,5708, - 5709,5,6,0,0,5709,5710,5,400,0,0,5710,5711,5,3,0,0,5711,5713,1,0, - 0,0,5712,5690,1,0,0,0,5712,5694,1,0,0,0,5712,5700,1,0,0,0,5712,5706, - 1,0,0,0,5713,681,1,0,0,0,5714,5715,3,1370,685,0,5715,5716,5,11,0, - 0,5716,5718,1,0,0,0,5717,5714,1,0,0,0,5718,5721,1,0,0,0,5719,5717, - 1,0,0,0,5719,5720,1,0,0,0,5720,5722,1,0,0,0,5721,5719,1,0,0,0,5722, - 5723,3,1268,634,0,5723,683,1,0,0,0,5724,5729,3,686,343,0,5725,5726, - 5,6,0,0,5726,5728,3,686,343,0,5727,5725,1,0,0,0,5728,5731,1,0,0, - 0,5729,5727,1,0,0,0,5729,5730,1,0,0,0,5730,685,1,0,0,0,5731,5729, - 1,0,0,0,5732,5733,3,682,341,0,5733,5734,3,680,340,0,5734,687,1,0, - 0,0,5735,5736,5,57,0,0,5736,5737,3,690,345,0,5737,689,1,0,0,0,5738, - 5740,3,692,346,0,5739,5738,1,0,0,0,5740,5741,1,0,0,0,5741,5739,1, - 0,0,0,5741,5742,1,0,0,0,5742,691,1,0,0,0,5743,5747,3,1356,678,0, - 5744,5745,5,238,0,0,5745,5747,3,70,35,0,5746,5743,1,0,0,0,5746,5744, - 1,0,0,0,5747,693,1,0,0,0,5748,5749,5,46,0,0,5749,5750,5,41,0,0,5750, - 5751,5,2,0,0,5751,5752,3,1116,558,0,5752,5753,5,36,0,0,5753,5754, - 3,1116,558,0,5754,5755,5,3,0,0,5755,5756,5,105,0,0,5756,5757,5,211, - 0,0,5757,5758,3,624,312,0,5758,5759,3,696,348,0,5759,5783,1,0,0, - 0,5760,5761,5,46,0,0,5761,5762,5,41,0,0,5762,5763,5,2,0,0,5763,5764, - 3,1116,558,0,5764,5765,5,36,0,0,5765,5766,3,1116,558,0,5766,5767, - 5,3,0,0,5767,5768,5,372,0,0,5768,5769,5,211,0,0,5769,5770,3,696, - 348,0,5770,5783,1,0,0,0,5771,5772,5,46,0,0,5772,5773,5,41,0,0,5773, - 5774,5,2,0,0,5774,5775,3,1116,558,0,5775,5776,5,36,0,0,5776,5777, - 3,1116,558,0,5777,5778,5,3,0,0,5778,5779,5,105,0,0,5779,5780,5,393, - 0,0,5780,5781,3,696,348,0,5781,5783,1,0,0,0,5782,5748,1,0,0,0,5782, - 5760,1,0,0,0,5782,5771,1,0,0,0,5783,695,1,0,0,0,5784,5785,5,36,0, - 0,5785,5790,5,223,0,0,5786,5787,5,36,0,0,5787,5790,5,141,0,0,5788, - 5790,1,0,0,0,5789,5784,1,0,0,0,5789,5786,1,0,0,0,5789,5788,1,0,0, - 0,5790,697,1,0,0,0,5791,5792,5,191,0,0,5792,5793,5,41,0,0,5793,5794, - 3,700,350,0,5794,5795,5,2,0,0,5795,5796,3,1116,558,0,5796,5797,5, - 36,0,0,5797,5798,3,1116,558,0,5798,5799,5,3,0,0,5799,5800,3,106, - 53,0,5800,699,1,0,0,0,5801,5802,5,220,0,0,5802,5805,5,389,0,0,5803, - 5805,1,0,0,0,5804,5801,1,0,0,0,5804,5803,1,0,0,0,5805,701,1,0,0, - 0,5806,5807,5,46,0,0,5807,5808,3,616,308,0,5808,5809,5,443,0,0,5809, - 5810,5,62,0,0,5810,5811,3,1116,558,0,5811,5812,5,238,0,0,5812,5813, - 3,1338,669,0,5813,5814,5,2,0,0,5814,5815,3,704,352,0,5815,5816,5, - 3,0,0,5816,703,1,0,0,0,5817,5818,5,64,0,0,5818,5819,5,461,0,0,5819, - 5820,5,105,0,0,5820,5821,5,211,0,0,5821,5822,3,624,312,0,5822,5823, - 5,6,0,0,5823,5824,5,94,0,0,5824,5825,5,461,0,0,5825,5826,5,105,0, - 0,5826,5827,5,211,0,0,5827,5828,3,624,312,0,5828,5852,1,0,0,0,5829, - 5830,5,94,0,0,5830,5831,5,461,0,0,5831,5832,5,105,0,0,5832,5833, - 5,211,0,0,5833,5834,3,624,312,0,5834,5835,5,6,0,0,5835,5836,5,64, - 0,0,5836,5837,5,461,0,0,5837,5838,5,105,0,0,5838,5839,5,211,0,0, - 5839,5840,3,624,312,0,5840,5852,1,0,0,0,5841,5842,5,64,0,0,5842, - 5843,5,461,0,0,5843,5844,5,105,0,0,5844,5845,5,211,0,0,5845,5852, - 3,624,312,0,5846,5847,5,94,0,0,5847,5848,5,461,0,0,5848,5849,5,105, - 0,0,5849,5850,5,211,0,0,5850,5852,3,624,312,0,5851,5817,1,0,0,0, - 5851,5829,1,0,0,0,5851,5841,1,0,0,0,5851,5846,1,0,0,0,5852,705,1, - 0,0,0,5853,5854,5,191,0,0,5854,5855,5,443,0,0,5855,5856,3,700,350, - 0,5856,5857,5,62,0,0,5857,5858,3,1116,558,0,5858,5859,5,238,0,0, - 5859,5860,3,1338,669,0,5860,5861,3,106,53,0,5861,707,1,0,0,0,5862, - 5863,5,299,0,0,5863,5864,3,710,355,0,5864,5865,3,590,295,0,5865, - 5866,3,1334,667,0,5866,5889,1,0,0,0,5867,5868,5,299,0,0,5868,5869, - 3,712,356,0,5869,5870,3,590,295,0,5870,5871,3,1338,669,0,5871,5889, - 1,0,0,0,5872,5873,5,299,0,0,5873,5874,5,2,0,0,5874,5875,3,714,357, - 0,5875,5876,5,3,0,0,5876,5877,3,710,355,0,5877,5878,3,590,295,0, - 5878,5879,3,1334,667,0,5879,5889,1,0,0,0,5880,5881,5,299,0,0,5881, - 5882,5,2,0,0,5882,5883,3,714,357,0,5883,5884,5,3,0,0,5884,5885,3, - 712,356,0,5885,5886,3,590,295,0,5886,5887,3,1338,669,0,5887,5889, - 1,0,0,0,5888,5862,1,0,0,0,5888,5867,1,0,0,0,5888,5872,1,0,0,0,5888, - 5880,1,0,0,0,5889,709,1,0,0,0,5890,5891,7,28,0,0,5891,711,1,0,0, - 0,5892,5893,7,29,0,0,5893,713,1,0,0,0,5894,5899,3,716,358,0,5895, - 5896,5,6,0,0,5896,5898,3,716,358,0,5897,5895,1,0,0,0,5898,5901,1, - 0,0,0,5899,5897,1,0,0,0,5899,5900,1,0,0,0,5900,715,1,0,0,0,5901, - 5899,1,0,0,0,5902,5903,7,30,0,0,5903,717,1,0,0,0,5904,5905,5,138, - 0,0,5905,5906,5,344,0,0,5906,5907,3,1338,669,0,5907,5908,5,326,0, - 0,5908,5909,3,114,57,0,5909,5917,1,0,0,0,5910,5911,5,138,0,0,5911, - 5912,5,344,0,0,5912,5913,3,1338,669,0,5913,5914,5,306,0,0,5914,5915, - 3,114,57,0,5915,5917,1,0,0,0,5916,5904,1,0,0,0,5916,5910,1,0,0,0, - 5917,719,1,0,0,0,5918,5919,5,138,0,0,5919,5920,5,136,0,0,5920,5921, - 3,648,324,0,5921,5922,5,302,0,0,5922,5923,5,94,0,0,5923,5924,3,1338, - 669,0,5924,6387,1,0,0,0,5925,5926,5,138,0,0,5926,5927,5,108,0,0, - 5927,5928,3,522,261,0,5928,5929,5,302,0,0,5929,5930,5,94,0,0,5930, - 5931,3,1338,669,0,5931,6387,1,0,0,0,5932,5933,5,138,0,0,5933,5934, - 5,168,0,0,5934,5935,3,522,261,0,5935,5936,5,302,0,0,5936,5937,5, - 94,0,0,5937,5938,3,1338,669,0,5938,6387,1,0,0,0,5939,5940,5,138, - 0,0,5940,5941,5,175,0,0,5941,5942,3,1338,669,0,5942,5943,5,302,0, - 0,5943,5944,5,94,0,0,5944,5945,3,1338,669,0,5945,6387,1,0,0,0,5946, - 5947,5,138,0,0,5947,5948,5,189,0,0,5948,5949,3,522,261,0,5949,5950, - 5,302,0,0,5950,5951,5,94,0,0,5951,5952,3,1338,669,0,5952,6387,1, - 0,0,0,5953,5954,5,138,0,0,5954,5955,5,189,0,0,5955,5956,3,522,261, - 0,5956,5957,5,302,0,0,5957,5958,5,45,0,0,5958,5959,3,1338,669,0, - 5959,5960,5,94,0,0,5960,5961,3,1338,669,0,5961,6387,1,0,0,0,5962, - 5963,5,138,0,0,5963,5964,5,63,0,0,5964,5965,5,174,0,0,5965,5966, - 5,374,0,0,5966,5967,3,1338,669,0,5967,5968,5,302,0,0,5968,5969,5, - 94,0,0,5969,5970,3,1338,669,0,5970,6387,1,0,0,0,5971,5972,5,138, - 0,0,5972,5973,5,211,0,0,5973,5974,3,624,312,0,5974,5975,5,302,0, - 0,5975,5976,5,94,0,0,5976,5977,3,1338,669,0,5977,6387,1,0,0,0,5978, - 5979,5,138,0,0,5979,5980,5,66,0,0,5980,5981,3,1364,682,0,5981,5982, - 5,302,0,0,5982,5983,5,94,0,0,5983,5984,3,1364,682,0,5984,6387,1, - 0,0,0,5985,5986,5,138,0,0,5986,5987,3,306,153,0,5987,5988,5,238, - 0,0,5988,5989,3,1338,669,0,5989,5990,5,302,0,0,5990,5991,5,94,0, - 0,5991,5992,3,1338,669,0,5992,6387,1,0,0,0,5993,5994,5,138,0,0,5994, - 5995,5,271,0,0,5995,5996,5,156,0,0,5996,5997,3,522,261,0,5997,5998, - 5,100,0,0,5998,5999,3,1338,669,0,5999,6000,5,302,0,0,6000,6001,5, - 94,0,0,6001,6002,3,1338,669,0,6002,6387,1,0,0,0,6003,6004,5,138, - 0,0,6004,6005,5,271,0,0,6005,6006,5,206,0,0,6006,6007,3,522,261, - 0,6007,6008,5,100,0,0,6008,6009,3,1338,669,0,6009,6010,5,302,0,0, - 6010,6011,5,94,0,0,6011,6012,3,1338,669,0,6012,6387,1,0,0,0,6013, - 6014,5,138,0,0,6014,6015,5,445,0,0,6015,6016,3,1338,669,0,6016,6017, - 5,80,0,0,6017,6018,3,1334,667,0,6018,6019,5,302,0,0,6019,6020,5, - 94,0,0,6020,6021,3,1338,669,0,6021,6387,1,0,0,0,6022,6023,5,138, - 0,0,6023,6024,5,445,0,0,6024,6025,5,220,0,0,6025,6026,5,389,0,0, - 6026,6027,3,1338,669,0,6027,6028,5,80,0,0,6028,6029,3,1334,667,0, - 6029,6030,5,302,0,0,6030,6031,5,94,0,0,6031,6032,3,1338,669,0,6032, - 6387,1,0,0,0,6033,6034,5,138,0,0,6034,6035,5,289,0,0,6035,6036,3, - 624,312,0,6036,6037,5,302,0,0,6037,6038,5,94,0,0,6038,6039,3,1338, - 669,0,6039,6387,1,0,0,0,6040,6041,5,138,0,0,6041,6042,5,452,0,0, - 6042,6043,3,1338,669,0,6043,6044,5,302,0,0,6044,6045,5,94,0,0,6045, - 6046,3,1338,669,0,6046,6387,1,0,0,0,6047,6048,5,138,0,0,6048,6049, - 5,442,0,0,6049,6050,3,624,312,0,6050,6051,5,302,0,0,6051,6052,5, - 94,0,0,6052,6053,3,1338,669,0,6053,6387,1,0,0,0,6054,6055,5,138, - 0,0,6055,6056,5,316,0,0,6056,6057,3,1338,669,0,6057,6058,5,302,0, - 0,6058,6059,5,94,0,0,6059,6060,3,1338,669,0,6060,6387,1,0,0,0,6061, - 6062,5,138,0,0,6062,6063,5,324,0,0,6063,6064,3,1338,669,0,6064,6065, - 5,302,0,0,6065,6066,5,94,0,0,6066,6067,3,1338,669,0,6067,6387,1, - 0,0,0,6068,6069,5,138,0,0,6069,6070,5,451,0,0,6070,6071,3,1338,669, - 0,6071,6072,5,302,0,0,6072,6073,5,94,0,0,6073,6074,3,1338,669,0, - 6074,6387,1,0,0,0,6075,6076,5,138,0,0,6076,6077,5,92,0,0,6077,6078, - 3,1072,536,0,6078,6079,5,302,0,0,6079,6080,5,94,0,0,6080,6081,3, - 1338,669,0,6081,6387,1,0,0,0,6082,6083,5,138,0,0,6083,6084,5,92, - 0,0,6084,6085,5,220,0,0,6085,6086,5,389,0,0,6086,6087,3,1072,536, - 0,6087,6088,5,302,0,0,6088,6089,5,94,0,0,6089,6090,3,1338,669,0, - 6090,6387,1,0,0,0,6091,6092,5,138,0,0,6092,6093,5,321,0,0,6093,6094, - 3,1334,667,0,6094,6095,5,302,0,0,6095,6096,5,94,0,0,6096,6097,3, - 1338,669,0,6097,6387,1,0,0,0,6098,6099,5,138,0,0,6099,6100,5,321, - 0,0,6100,6101,5,220,0,0,6101,6102,5,389,0,0,6102,6103,3,1334,667, - 0,6103,6104,5,302,0,0,6104,6105,5,94,0,0,6105,6106,3,1338,669,0, - 6106,6387,1,0,0,0,6107,6108,5,138,0,0,6108,6109,5,369,0,0,6109,6110, - 3,1334,667,0,6110,6111,5,302,0,0,6111,6112,5,94,0,0,6112,6113,3, - 1338,669,0,6113,6387,1,0,0,0,6114,6115,5,138,0,0,6115,6116,5,369, - 0,0,6116,6117,5,220,0,0,6117,6118,5,389,0,0,6118,6119,3,1334,667, - 0,6119,6120,5,302,0,0,6120,6121,5,94,0,0,6121,6122,3,1338,669,0, - 6122,6387,1,0,0,0,6123,6124,5,138,0,0,6124,6125,5,251,0,0,6125,6126, - 5,369,0,0,6126,6127,3,1334,667,0,6127,6128,5,302,0,0,6128,6129,5, - 94,0,0,6129,6130,3,1338,669,0,6130,6387,1,0,0,0,6131,6132,5,138, - 0,0,6132,6133,5,251,0,0,6133,6134,5,369,0,0,6134,6135,5,220,0,0, - 6135,6136,5,389,0,0,6136,6137,3,1334,667,0,6137,6138,5,302,0,0,6138, - 6139,5,94,0,0,6139,6140,3,1338,669,0,6140,6387,1,0,0,0,6141,6142, - 5,138,0,0,6142,6143,5,226,0,0,6143,6144,3,1334,667,0,6144,6145,5, - 302,0,0,6145,6146,5,94,0,0,6146,6147,3,1338,669,0,6147,6387,1,0, - 0,0,6148,6149,5,138,0,0,6149,6150,5,226,0,0,6150,6151,5,220,0,0, - 6151,6152,5,389,0,0,6152,6153,3,1334,667,0,6153,6154,5,302,0,0,6154, - 6155,5,94,0,0,6155,6156,3,1338,669,0,6156,6387,1,0,0,0,6157,6158, - 5,138,0,0,6158,6159,5,63,0,0,6159,6160,5,92,0,0,6160,6161,3,1072, - 536,0,6161,6162,5,302,0,0,6162,6163,5,94,0,0,6163,6164,3,1338,669, - 0,6164,6387,1,0,0,0,6165,6166,5,138,0,0,6166,6167,5,63,0,0,6167, - 6168,5,92,0,0,6168,6169,5,220,0,0,6169,6170,5,389,0,0,6170,6171, - 3,1072,536,0,6171,6172,5,302,0,0,6172,6173,5,94,0,0,6173,6174,3, - 1338,669,0,6174,6387,1,0,0,0,6175,6176,5,138,0,0,6176,6177,5,92, - 0,0,6177,6178,3,1072,536,0,6178,6179,5,302,0,0,6179,6180,3,722,361, - 0,6180,6181,3,1338,669,0,6181,6182,5,94,0,0,6182,6183,3,1338,669, - 0,6183,6387,1,0,0,0,6184,6185,5,138,0,0,6185,6186,5,92,0,0,6186, - 6187,5,220,0,0,6187,6188,5,389,0,0,6188,6189,3,1072,536,0,6189,6190, - 5,302,0,0,6190,6191,3,722,361,0,6191,6192,3,1338,669,0,6192,6193, - 5,94,0,0,6193,6194,3,1338,669,0,6194,6387,1,0,0,0,6195,6196,5,138, - 0,0,6196,6197,5,369,0,0,6197,6198,3,1334,667,0,6198,6199,5,302,0, - 0,6199,6200,3,722,361,0,6200,6201,3,1338,669,0,6201,6202,5,94,0, - 0,6202,6203,3,1338,669,0,6203,6387,1,0,0,0,6204,6205,5,138,0,0,6205, - 6206,5,369,0,0,6206,6207,5,220,0,0,6207,6208,5,389,0,0,6208,6209, - 3,1334,667,0,6209,6210,5,302,0,0,6210,6211,3,722,361,0,6211,6212, - 3,1338,669,0,6212,6213,5,94,0,0,6213,6214,3,1338,669,0,6214,6387, - 1,0,0,0,6215,6216,5,138,0,0,6216,6217,5,251,0,0,6217,6218,5,369, - 0,0,6218,6219,3,1334,667,0,6219,6220,5,302,0,0,6220,6221,3,722,361, - 0,6221,6222,3,1338,669,0,6222,6223,5,94,0,0,6223,6224,3,1338,669, - 0,6224,6387,1,0,0,0,6225,6226,5,138,0,0,6226,6227,5,251,0,0,6227, - 6228,5,369,0,0,6228,6229,5,220,0,0,6229,6230,5,389,0,0,6230,6231, - 3,1334,667,0,6231,6232,5,302,0,0,6232,6233,3,722,361,0,6233,6234, - 3,1338,669,0,6234,6235,5,94,0,0,6235,6236,3,1338,669,0,6236,6387, - 1,0,0,0,6237,6238,5,138,0,0,6238,6239,5,92,0,0,6239,6240,3,1072, - 536,0,6240,6241,5,302,0,0,6241,6242,5,45,0,0,6242,6243,3,1338,669, - 0,6243,6244,5,94,0,0,6244,6245,3,1338,669,0,6245,6387,1,0,0,0,6246, - 6247,5,138,0,0,6247,6248,5,92,0,0,6248,6249,5,220,0,0,6249,6250, - 5,389,0,0,6250,6251,3,1072,536,0,6251,6252,5,302,0,0,6252,6253,5, - 45,0,0,6253,6254,3,1338,669,0,6254,6255,5,94,0,0,6255,6256,3,1338, - 669,0,6256,6387,1,0,0,0,6257,6258,5,138,0,0,6258,6259,5,63,0,0,6259, - 6260,5,92,0,0,6260,6261,3,1072,536,0,6261,6262,5,302,0,0,6262,6263, - 3,722,361,0,6263,6264,3,1338,669,0,6264,6265,5,94,0,0,6265,6266, - 3,1338,669,0,6266,6387,1,0,0,0,6267,6268,5,138,0,0,6268,6269,5,63, - 0,0,6269,6270,5,92,0,0,6270,6271,5,220,0,0,6271,6272,5,389,0,0,6272, - 6273,3,1072,536,0,6273,6274,5,302,0,0,6274,6275,3,722,361,0,6275, - 6276,3,1338,669,0,6276,6277,5,94,0,0,6277,6278,3,1338,669,0,6278, - 6387,1,0,0,0,6279,6280,5,138,0,0,6280,6281,5,314,0,0,6281,6282,3, - 1338,669,0,6282,6283,5,80,0,0,6283,6284,3,1334,667,0,6284,6285,5, - 302,0,0,6285,6286,5,94,0,0,6286,6287,3,1338,669,0,6287,6387,1,0, - 0,0,6288,6289,5,138,0,0,6289,6290,5,350,0,0,6290,6291,3,1338,669, - 0,6291,6292,5,80,0,0,6292,6293,3,1334,667,0,6293,6294,5,302,0,0, - 6294,6295,5,94,0,0,6295,6296,3,1338,669,0,6296,6387,1,0,0,0,6297, - 6298,5,138,0,0,6298,6299,5,198,0,0,6299,6300,5,350,0,0,6300,6301, - 3,1338,669,0,6301,6302,5,302,0,0,6302,6303,5,94,0,0,6303,6304,3, - 1338,669,0,6304,6387,1,0,0,0,6305,6306,5,138,0,0,6306,6307,5,311, - 0,0,6307,6308,3,1364,682,0,6308,6309,5,302,0,0,6309,6310,5,94,0, - 0,6310,6311,3,1364,682,0,6311,6387,1,0,0,0,6312,6313,5,138,0,0,6313, - 6314,5,99,0,0,6314,6315,3,1364,682,0,6315,6316,5,302,0,0,6316,6317, - 5,94,0,0,6317,6318,3,1364,682,0,6318,6387,1,0,0,0,6319,6320,5,138, - 0,0,6320,6321,5,344,0,0,6321,6322,3,1338,669,0,6322,6323,5,302,0, - 0,6323,6324,5,94,0,0,6324,6325,3,1338,669,0,6325,6387,1,0,0,0,6326, - 6327,5,138,0,0,6327,6328,5,335,0,0,6328,6329,3,522,261,0,6329,6330, - 5,302,0,0,6330,6331,5,94,0,0,6331,6332,3,1338,669,0,6332,6387,1, - 0,0,0,6333,6334,5,138,0,0,6334,6335,5,348,0,0,6335,6336,5,318,0, - 0,6336,6337,5,276,0,0,6337,6338,3,522,261,0,6338,6339,5,302,0,0, - 6339,6340,5,94,0,0,6340,6341,3,1338,669,0,6341,6387,1,0,0,0,6342, - 6343,5,138,0,0,6343,6344,5,348,0,0,6344,6345,5,318,0,0,6345,6346, - 5,185,0,0,6346,6347,3,522,261,0,6347,6348,5,302,0,0,6348,6349,5, - 94,0,0,6349,6350,3,1338,669,0,6350,6387,1,0,0,0,6351,6352,5,138, - 0,0,6352,6353,5,348,0,0,6353,6354,5,318,0,0,6354,6355,5,346,0,0, - 6355,6356,3,522,261,0,6356,6357,5,302,0,0,6357,6358,5,94,0,0,6358, - 6359,3,1338,669,0,6359,6387,1,0,0,0,6360,6361,5,138,0,0,6361,6362, - 5,348,0,0,6362,6363,5,318,0,0,6363,6364,5,163,0,0,6364,6365,3,522, - 261,0,6365,6366,5,302,0,0,6366,6367,5,94,0,0,6367,6368,3,1338,669, - 0,6368,6387,1,0,0,0,6369,6370,5,138,0,0,6370,6371,5,353,0,0,6371, - 6372,3,522,261,0,6372,6373,5,302,0,0,6373,6374,5,94,0,0,6374,6375, - 3,1338,669,0,6375,6387,1,0,0,0,6376,6377,5,138,0,0,6377,6378,5,353, - 0,0,6378,6379,3,522,261,0,6379,6380,5,302,0,0,6380,6381,5,143,0, - 0,6381,6382,3,1338,669,0,6382,6383,5,94,0,0,6383,6384,3,1338,669, - 0,6384,6385,3,106,53,0,6385,6387,1,0,0,0,6386,5918,1,0,0,0,6386, - 5925,1,0,0,0,6386,5932,1,0,0,0,6386,5939,1,0,0,0,6386,5946,1,0,0, - 0,6386,5953,1,0,0,0,6386,5962,1,0,0,0,6386,5971,1,0,0,0,6386,5978, - 1,0,0,0,6386,5985,1,0,0,0,6386,5993,1,0,0,0,6386,6003,1,0,0,0,6386, - 6013,1,0,0,0,6386,6022,1,0,0,0,6386,6033,1,0,0,0,6386,6040,1,0,0, - 0,6386,6047,1,0,0,0,6386,6054,1,0,0,0,6386,6061,1,0,0,0,6386,6068, - 1,0,0,0,6386,6075,1,0,0,0,6386,6082,1,0,0,0,6386,6091,1,0,0,0,6386, - 6098,1,0,0,0,6386,6107,1,0,0,0,6386,6114,1,0,0,0,6386,6123,1,0,0, - 0,6386,6131,1,0,0,0,6386,6141,1,0,0,0,6386,6148,1,0,0,0,6386,6157, - 1,0,0,0,6386,6165,1,0,0,0,6386,6175,1,0,0,0,6386,6184,1,0,0,0,6386, - 6195,1,0,0,0,6386,6204,1,0,0,0,6386,6215,1,0,0,0,6386,6225,1,0,0, - 0,6386,6237,1,0,0,0,6386,6246,1,0,0,0,6386,6257,1,0,0,0,6386,6267, - 1,0,0,0,6386,6279,1,0,0,0,6386,6288,1,0,0,0,6386,6297,1,0,0,0,6386, - 6305,1,0,0,0,6386,6312,1,0,0,0,6386,6319,1,0,0,0,6386,6326,1,0,0, - 0,6386,6333,1,0,0,0,6386,6342,1,0,0,0,6386,6351,1,0,0,0,6386,6360, - 1,0,0,0,6386,6369,1,0,0,0,6386,6376,1,0,0,0,6387,721,1,0,0,0,6388, - 6391,5,44,0,0,6389,6391,1,0,0,0,6390,6388,1,0,0,0,6390,6389,1,0, - 0,0,6391,723,1,0,0,0,6392,6393,5,326,0,0,6393,6396,5,174,0,0,6394, - 6396,1,0,0,0,6395,6392,1,0,0,0,6395,6394,1,0,0,0,6396,725,1,0,0, - 0,6397,6398,5,138,0,0,6398,6399,5,211,0,0,6399,6400,3,624,312,0, - 6400,6401,3,728,364,0,6401,6402,5,462,0,0,6402,6403,5,80,0,0,6403, - 6404,5,204,0,0,6404,6405,3,1338,669,0,6405,6455,1,0,0,0,6406,6407, - 5,138,0,0,6407,6408,5,289,0,0,6408,6409,3,624,312,0,6409,6410,3, - 728,364,0,6410,6411,5,462,0,0,6411,6412,5,80,0,0,6412,6413,5,204, - 0,0,6413,6414,3,1338,669,0,6414,6455,1,0,0,0,6415,6416,5,138,0,0, - 6416,6417,5,442,0,0,6417,6418,3,624,312,0,6418,6419,3,728,364,0, - 6419,6420,5,462,0,0,6420,6421,5,80,0,0,6421,6422,5,204,0,0,6422, - 6423,3,1338,669,0,6423,6455,1,0,0,0,6424,6425,5,138,0,0,6425,6426, - 5,350,0,0,6426,6427,3,1338,669,0,6427,6428,5,80,0,0,6428,6429,3, - 1334,667,0,6429,6430,3,728,364,0,6430,6431,5,462,0,0,6431,6432,5, - 80,0,0,6432,6433,5,204,0,0,6433,6434,3,1338,669,0,6434,6455,1,0, - 0,0,6435,6436,5,138,0,0,6436,6437,5,251,0,0,6437,6438,5,369,0,0, - 6438,6439,3,1334,667,0,6439,6440,3,728,364,0,6440,6441,5,462,0,0, - 6441,6442,5,80,0,0,6442,6443,5,204,0,0,6443,6444,3,1338,669,0,6444, - 6455,1,0,0,0,6445,6446,5,138,0,0,6446,6447,5,226,0,0,6447,6448,3, - 1334,667,0,6448,6449,3,728,364,0,6449,6450,5,462,0,0,6450,6451,5, - 80,0,0,6451,6452,5,204,0,0,6452,6453,3,1338,669,0,6453,6455,1,0, - 0,0,6454,6397,1,0,0,0,6454,6406,1,0,0,0,6454,6415,1,0,0,0,6454,6424, - 1,0,0,0,6454,6435,1,0,0,0,6454,6445,1,0,0,0,6455,727,1,0,0,0,6456, - 6459,5,262,0,0,6457,6459,1,0,0,0,6458,6456,1,0,0,0,6458,6457,1,0, - 0,0,6459,729,1,0,0,0,6460,6461,5,138,0,0,6461,6462,5,136,0,0,6462, - 6463,3,648,324,0,6463,6464,5,326,0,0,6464,6465,5,316,0,0,6465,6466, - 3,1338,669,0,6466,6678,1,0,0,0,6467,6468,5,138,0,0,6468,6469,5,108, - 0,0,6469,6470,3,522,261,0,6470,6471,5,326,0,0,6471,6472,5,316,0, - 0,6472,6473,3,1338,669,0,6473,6678,1,0,0,0,6474,6475,5,138,0,0,6475, - 6476,5,168,0,0,6476,6477,3,522,261,0,6477,6478,5,326,0,0,6478,6479, - 5,316,0,0,6479,6480,3,1338,669,0,6480,6678,1,0,0,0,6481,6482,5,138, - 0,0,6482,6483,5,189,0,0,6483,6484,3,522,261,0,6484,6485,5,326,0, - 0,6485,6486,5,316,0,0,6486,6487,3,1338,669,0,6487,6678,1,0,0,0,6488, - 6489,5,138,0,0,6489,6490,5,204,0,0,6490,6491,3,1338,669,0,6491,6492, - 5,326,0,0,6492,6493,5,316,0,0,6493,6494,3,1338,669,0,6494,6678,1, - 0,0,0,6495,6496,5,138,0,0,6496,6497,5,211,0,0,6497,6498,3,624,312, - 0,6498,6499,5,326,0,0,6499,6500,5,316,0,0,6500,6501,3,1338,669,0, - 6501,6678,1,0,0,0,6502,6503,5,138,0,0,6503,6504,5,271,0,0,6504,6505, - 3,686,343,0,6505,6506,5,326,0,0,6506,6507,5,316,0,0,6507,6508,3, - 1338,669,0,6508,6678,1,0,0,0,6509,6510,5,138,0,0,6510,6511,5,271, - 0,0,6511,6512,5,156,0,0,6512,6513,3,522,261,0,6513,6514,5,100,0, - 0,6514,6515,3,1338,669,0,6515,6516,5,326,0,0,6516,6517,5,316,0,0, - 6517,6518,3,1338,669,0,6518,6678,1,0,0,0,6519,6520,5,138,0,0,6520, - 6521,5,271,0,0,6521,6522,5,206,0,0,6522,6523,3,522,261,0,6523,6524, - 5,100,0,0,6524,6525,3,1338,669,0,6525,6526,5,326,0,0,6526,6527,5, - 316,0,0,6527,6528,3,1338,669,0,6528,6678,1,0,0,0,6529,6530,5,138, - 0,0,6530,6531,5,289,0,0,6531,6532,3,624,312,0,6532,6533,5,326,0, - 0,6533,6534,5,316,0,0,6534,6535,3,1338,669,0,6535,6678,1,0,0,0,6536, - 6537,5,138,0,0,6537,6538,5,442,0,0,6538,6539,3,624,312,0,6539,6540, - 5,326,0,0,6540,6541,5,316,0,0,6541,6542,3,1338,669,0,6542,6678,1, - 0,0,0,6543,6544,5,138,0,0,6544,6545,5,92,0,0,6545,6546,3,1072,536, - 0,6546,6547,5,326,0,0,6547,6548,5,316,0,0,6548,6549,3,1338,669,0, - 6549,6678,1,0,0,0,6550,6551,5,138,0,0,6551,6552,5,92,0,0,6552,6553, - 5,220,0,0,6553,6554,5,389,0,0,6554,6555,3,1072,536,0,6555,6556,5, - 326,0,0,6556,6557,5,316,0,0,6557,6558,3,1338,669,0,6558,6678,1,0, - 0,0,6559,6560,5,138,0,0,6560,6561,5,335,0,0,6561,6562,3,522,261, - 0,6562,6563,5,326,0,0,6563,6564,5,316,0,0,6564,6565,3,1338,669,0, - 6565,6678,1,0,0,0,6566,6567,5,138,0,0,6567,6568,5,348,0,0,6568,6569, - 5,318,0,0,6569,6570,5,276,0,0,6570,6571,3,522,261,0,6571,6572,5, - 326,0,0,6572,6573,5,316,0,0,6573,6574,3,1338,669,0,6574,6678,1,0, - 0,0,6575,6576,5,138,0,0,6576,6577,5,348,0,0,6577,6578,5,318,0,0, - 6578,6579,5,185,0,0,6579,6580,3,522,261,0,6580,6581,5,326,0,0,6581, - 6582,5,316,0,0,6582,6583,3,1338,669,0,6583,6678,1,0,0,0,6584,6585, - 5,138,0,0,6585,6586,5,348,0,0,6586,6587,5,318,0,0,6587,6588,5,346, - 0,0,6588,6589,3,522,261,0,6589,6590,5,326,0,0,6590,6591,5,316,0, - 0,6591,6592,3,1338,669,0,6592,6678,1,0,0,0,6593,6594,5,138,0,0,6594, - 6595,5,348,0,0,6595,6596,5,318,0,0,6596,6597,5,163,0,0,6597,6598, - 3,522,261,0,6598,6599,5,326,0,0,6599,6600,5,316,0,0,6600,6601,3, - 1338,669,0,6601,6678,1,0,0,0,6602,6603,5,138,0,0,6603,6604,5,321, - 0,0,6604,6605,3,1334,667,0,6605,6606,5,326,0,0,6606,6607,5,316,0, - 0,6607,6608,3,1338,669,0,6608,6678,1,0,0,0,6609,6610,5,138,0,0,6610, - 6611,5,321,0,0,6611,6612,5,220,0,0,6612,6613,5,389,0,0,6613,6614, - 3,1334,667,0,6614,6615,5,326,0,0,6615,6616,5,316,0,0,6616,6617,3, - 1338,669,0,6617,6678,1,0,0,0,6618,6619,5,138,0,0,6619,6620,5,369, - 0,0,6620,6621,3,1334,667,0,6621,6622,5,326,0,0,6622,6623,5,316,0, - 0,6623,6624,3,1338,669,0,6624,6678,1,0,0,0,6625,6626,5,138,0,0,6626, - 6627,5,369,0,0,6627,6628,5,220,0,0,6628,6629,5,389,0,0,6629,6630, - 3,1334,667,0,6630,6631,5,326,0,0,6631,6632,5,316,0,0,6632,6633,3, - 1338,669,0,6633,6678,1,0,0,0,6634,6635,5,138,0,0,6635,6636,5,251, - 0,0,6636,6637,5,369,0,0,6637,6638,3,1334,667,0,6638,6639,5,326,0, - 0,6639,6640,5,316,0,0,6640,6641,3,1338,669,0,6641,6678,1,0,0,0,6642, - 6643,5,138,0,0,6643,6644,5,251,0,0,6644,6645,5,369,0,0,6645,6646, - 5,220,0,0,6646,6647,5,389,0,0,6647,6648,3,1334,667,0,6648,6649,5, - 326,0,0,6649,6650,5,316,0,0,6650,6651,3,1338,669,0,6651,6678,1,0, - 0,0,6652,6653,5,138,0,0,6653,6654,5,63,0,0,6654,6655,5,92,0,0,6655, - 6656,3,1072,536,0,6656,6657,5,326,0,0,6657,6658,5,316,0,0,6658,6659, - 3,1338,669,0,6659,6678,1,0,0,0,6660,6661,5,138,0,0,6661,6662,5,63, - 0,0,6662,6663,5,92,0,0,6663,6664,5,220,0,0,6664,6665,5,389,0,0,6665, - 6666,3,1072,536,0,6666,6667,5,326,0,0,6667,6668,5,316,0,0,6668,6669, - 3,1338,669,0,6669,6678,1,0,0,0,6670,6671,5,138,0,0,6671,6672,5,353, - 0,0,6672,6673,3,522,261,0,6673,6674,5,326,0,0,6674,6675,5,316,0, - 0,6675,6676,3,1338,669,0,6676,6678,1,0,0,0,6677,6460,1,0,0,0,6677, - 6467,1,0,0,0,6677,6474,1,0,0,0,6677,6481,1,0,0,0,6677,6488,1,0,0, - 0,6677,6495,1,0,0,0,6677,6502,1,0,0,0,6677,6509,1,0,0,0,6677,6519, - 1,0,0,0,6677,6529,1,0,0,0,6677,6536,1,0,0,0,6677,6543,1,0,0,0,6677, - 6550,1,0,0,0,6677,6559,1,0,0,0,6677,6566,1,0,0,0,6677,6575,1,0,0, - 0,6677,6584,1,0,0,0,6677,6593,1,0,0,0,6677,6602,1,0,0,0,6677,6609, - 1,0,0,0,6677,6618,1,0,0,0,6677,6625,1,0,0,0,6677,6634,1,0,0,0,6677, - 6642,1,0,0,0,6677,6652,1,0,0,0,6677,6660,1,0,0,0,6677,6670,1,0,0, - 0,6678,731,1,0,0,0,6679,6680,5,138,0,0,6680,6681,5,271,0,0,6681, - 6682,3,686,343,0,6682,6683,5,326,0,0,6683,6684,5,2,0,0,6684,6685, - 3,734,367,0,6685,6686,5,3,0,0,6686,733,1,0,0,0,6687,6692,3,736,368, - 0,6688,6689,5,6,0,0,6689,6691,3,736,368,0,6690,6688,1,0,0,0,6691, - 6694,1,0,0,0,6692,6690,1,0,0,0,6692,6693,1,0,0,0,6693,735,1,0,0, - 0,6694,6692,1,0,0,0,6695,6696,3,1378,689,0,6696,6697,5,10,0,0,6697, - 6698,5,400,0,0,6698,6704,1,0,0,0,6699,6700,3,1378,689,0,6700,6701, - 5,10,0,0,6701,6702,3,738,369,0,6702,6704,1,0,0,0,6703,6695,1,0,0, - 0,6703,6699,1,0,0,0,6704,737,1,0,0,0,6705,6711,3,638,319,0,6706, - 6711,3,1390,695,0,6707,6711,3,1274,637,0,6708,6711,3,290,145,0,6709, - 6711,3,1356,678,0,6710,6705,1,0,0,0,6710,6706,1,0,0,0,6710,6707, - 1,0,0,0,6710,6708,1,0,0,0,6710,6709,1,0,0,0,6711,739,1,0,0,0,6712, - 6713,5,138,0,0,6713,6714,5,353,0,0,6714,6715,3,522,261,0,6715,6716, - 5,326,0,0,6716,6717,5,2,0,0,6717,6718,3,734,367,0,6718,6719,5,3, - 0,0,6719,741,1,0,0,0,6720,6721,5,138,0,0,6721,6722,5,136,0,0,6722, - 6723,3,648,324,0,6723,6724,5,275,0,0,6724,6725,5,94,0,0,6725,6726, - 3,1366,683,0,6726,6904,1,0,0,0,6727,6728,5,138,0,0,6728,6729,5,108, - 0,0,6729,6730,3,522,261,0,6730,6731,5,275,0,0,6731,6732,5,94,0,0, - 6732,6733,3,1366,683,0,6733,6904,1,0,0,0,6734,6735,5,138,0,0,6735, - 6736,5,168,0,0,6736,6737,3,522,261,0,6737,6738,5,275,0,0,6738,6739, - 5,94,0,0,6739,6740,3,1366,683,0,6740,6904,1,0,0,0,6741,6742,5,138, - 0,0,6742,6743,5,175,0,0,6743,6744,3,1338,669,0,6744,6745,5,275,0, - 0,6745,6746,5,94,0,0,6746,6747,3,1366,683,0,6747,6904,1,0,0,0,6748, - 6749,5,138,0,0,6749,6750,5,189,0,0,6750,6751,3,522,261,0,6751,6752, - 5,275,0,0,6752,6753,5,94,0,0,6753,6754,3,1366,683,0,6754,6904,1, - 0,0,0,6755,6756,5,138,0,0,6756,6757,5,211,0,0,6757,6758,3,624,312, - 0,6758,6759,5,275,0,0,6759,6760,5,94,0,0,6760,6761,3,1366,683,0, - 6761,6904,1,0,0,0,6762,6763,5,138,0,0,6763,6764,3,306,153,0,6764, - 6765,5,238,0,0,6765,6766,3,1338,669,0,6766,6767,5,275,0,0,6767,6768, - 5,94,0,0,6768,6769,3,1366,683,0,6769,6904,1,0,0,0,6770,6771,5,138, - 0,0,6771,6772,5,239,0,0,6772,6773,5,267,0,0,6773,6774,3,290,145, - 0,6774,6775,5,275,0,0,6775,6776,5,94,0,0,6776,6777,3,1366,683,0, - 6777,6904,1,0,0,0,6778,6779,5,138,0,0,6779,6780,5,271,0,0,6780,6781, - 3,686,343,0,6781,6782,5,275,0,0,6782,6783,5,94,0,0,6783,6784,3,1366, - 683,0,6784,6904,1,0,0,0,6785,6786,5,138,0,0,6786,6787,5,271,0,0, - 6787,6788,5,156,0,0,6788,6789,3,522,261,0,6789,6790,5,100,0,0,6790, - 6791,3,1338,669,0,6791,6792,5,275,0,0,6792,6793,5,94,0,0,6793,6794, - 3,1366,683,0,6794,6904,1,0,0,0,6795,6796,5,138,0,0,6796,6797,5,271, - 0,0,6797,6798,5,206,0,0,6798,6799,3,522,261,0,6799,6800,5,100,0, - 0,6800,6801,3,1338,669,0,6801,6802,5,275,0,0,6802,6803,5,94,0,0, - 6803,6804,3,1366,683,0,6804,6904,1,0,0,0,6805,6806,5,138,0,0,6806, - 6807,5,289,0,0,6807,6808,3,624,312,0,6808,6809,5,275,0,0,6809,6810, - 5,94,0,0,6810,6811,3,1366,683,0,6811,6904,1,0,0,0,6812,6813,5,138, - 0,0,6813,6814,5,442,0,0,6814,6815,3,624,312,0,6815,6816,5,275,0, - 0,6816,6817,5,94,0,0,6817,6818,3,1366,683,0,6818,6904,1,0,0,0,6819, - 6820,5,138,0,0,6820,6821,5,316,0,0,6821,6822,3,1338,669,0,6822,6823, - 5,275,0,0,6823,6824,5,94,0,0,6824,6825,3,1366,683,0,6825,6904,1, - 0,0,0,6826,6827,5,138,0,0,6827,6828,5,353,0,0,6828,6829,3,522,261, - 0,6829,6830,5,275,0,0,6830,6831,5,94,0,0,6831,6832,3,1366,683,0, - 6832,6904,1,0,0,0,6833,6834,5,138,0,0,6834,6835,5,344,0,0,6835,6836, - 3,1338,669,0,6836,6837,5,275,0,0,6837,6838,5,94,0,0,6838,6839,3, - 1366,683,0,6839,6904,1,0,0,0,6840,6841,5,138,0,0,6841,6842,5,335, - 0,0,6842,6843,3,522,261,0,6843,6844,5,275,0,0,6844,6845,5,94,0,0, - 6845,6846,3,1366,683,0,6846,6904,1,0,0,0,6847,6848,5,138,0,0,6848, - 6849,5,348,0,0,6849,6850,5,318,0,0,6850,6851,5,185,0,0,6851,6852, - 3,522,261,0,6852,6853,5,275,0,0,6853,6854,5,94,0,0,6854,6855,3,1366, - 683,0,6855,6904,1,0,0,0,6856,6857,5,138,0,0,6857,6858,5,348,0,0, - 6858,6859,5,318,0,0,6859,6860,5,163,0,0,6860,6861,3,522,261,0,6861, - 6862,5,275,0,0,6862,6863,5,94,0,0,6863,6864,3,1366,683,0,6864,6904, - 1,0,0,0,6865,6866,5,138,0,0,6866,6867,5,63,0,0,6867,6868,5,174,0, - 0,6868,6869,5,374,0,0,6869,6870,3,1338,669,0,6870,6871,5,275,0,0, - 6871,6872,5,94,0,0,6872,6873,3,1366,683,0,6873,6904,1,0,0,0,6874, - 6875,5,138,0,0,6875,6876,5,324,0,0,6876,6877,3,1338,669,0,6877,6878, - 5,275,0,0,6878,6879,5,94,0,0,6879,6880,3,1366,683,0,6880,6904,1, - 0,0,0,6881,6882,5,138,0,0,6882,6883,5,198,0,0,6883,6884,5,350,0, - 0,6884,6885,3,1338,669,0,6885,6886,5,275,0,0,6886,6887,5,94,0,0, - 6887,6888,3,1366,683,0,6888,6904,1,0,0,0,6889,6890,5,138,0,0,6890, - 6891,5,452,0,0,6891,6892,3,1338,669,0,6892,6893,5,275,0,0,6893,6894, - 5,94,0,0,6894,6895,3,1366,683,0,6895,6904,1,0,0,0,6896,6897,5,138, - 0,0,6897,6898,5,451,0,0,6898,6899,3,1338,669,0,6899,6900,5,275,0, - 0,6900,6901,5,94,0,0,6901,6902,3,1366,683,0,6902,6904,1,0,0,0,6903, - 6720,1,0,0,0,6903,6727,1,0,0,0,6903,6734,1,0,0,0,6903,6741,1,0,0, - 0,6903,6748,1,0,0,0,6903,6755,1,0,0,0,6903,6762,1,0,0,0,6903,6770, - 1,0,0,0,6903,6778,1,0,0,0,6903,6785,1,0,0,0,6903,6795,1,0,0,0,6903, - 6805,1,0,0,0,6903,6812,1,0,0,0,6903,6819,1,0,0,0,6903,6826,1,0,0, - 0,6903,6833,1,0,0,0,6903,6840,1,0,0,0,6903,6847,1,0,0,0,6903,6856, - 1,0,0,0,6903,6865,1,0,0,0,6903,6874,1,0,0,0,6903,6881,1,0,0,0,6903, - 6889,1,0,0,0,6903,6896,1,0,0,0,6904,743,1,0,0,0,6905,6906,5,46,0, - 0,6906,6907,5,452,0,0,6907,6908,3,1338,669,0,6908,6909,3,746,373, - 0,6909,6910,3,662,331,0,6910,745,1,0,0,0,6911,6914,3,748,374,0,6912, - 6914,1,0,0,0,6913,6911,1,0,0,0,6913,6912,1,0,0,0,6914,747,1,0,0, - 0,6915,6916,5,62,0,0,6916,6917,5,92,0,0,6917,6922,3,1074,537,0,6918, - 6919,5,62,0,0,6919,6920,5,30,0,0,6920,6922,5,343,0,0,6921,6915,1, - 0,0,0,6921,6918,1,0,0,0,6922,749,1,0,0,0,6923,6924,5,138,0,0,6924, - 6925,5,452,0,0,6925,6926,3,1338,669,0,6926,6927,5,326,0,0,6927,6928, - 3,458,229,0,6928,6951,1,0,0,0,6929,6930,5,138,0,0,6930,6931,5,452, - 0,0,6931,6932,3,1338,669,0,6932,6933,5,133,0,0,6933,6934,5,92,0, - 0,6934,6935,3,1074,537,0,6935,6951,1,0,0,0,6936,6937,5,138,0,0,6937, - 6938,5,452,0,0,6938,6939,3,1338,669,0,6939,6940,5,326,0,0,6940,6941, - 5,92,0,0,6941,6942,3,1074,537,0,6942,6951,1,0,0,0,6943,6944,5,138, - 0,0,6944,6945,5,452,0,0,6945,6946,3,1338,669,0,6946,6947,5,191,0, - 0,6947,6948,5,92,0,0,6948,6949,3,1074,537,0,6949,6951,1,0,0,0,6950, - 6923,1,0,0,0,6950,6929,1,0,0,0,6950,6936,1,0,0,0,6950,6943,1,0,0, - 0,6951,751,1,0,0,0,6952,6953,5,46,0,0,6953,6954,5,451,0,0,6954,6955, - 3,1338,669,0,6955,6956,5,164,0,0,6956,6957,3,1356,678,0,6957,6958, - 5,452,0,0,6958,6959,3,754,377,0,6959,6960,3,662,331,0,6960,753,1, - 0,0,0,6961,6966,3,756,378,0,6962,6963,5,6,0,0,6963,6965,3,756,378, - 0,6964,6962,1,0,0,0,6965,6968,1,0,0,0,6966,6964,1,0,0,0,6966,6967, - 1,0,0,0,6967,755,1,0,0,0,6968,6966,1,0,0,0,6969,6970,3,1378,689, - 0,6970,757,1,0,0,0,6971,6972,5,138,0,0,6972,6973,5,451,0,0,6973, - 6974,3,1338,669,0,6974,6975,5,326,0,0,6975,6976,3,458,229,0,6976, - 7009,1,0,0,0,6977,6978,5,138,0,0,6978,6979,5,451,0,0,6979,6980,3, - 1338,669,0,6980,6981,5,164,0,0,6981,6982,3,1356,678,0,6982,7009, - 1,0,0,0,6983,6984,5,138,0,0,6984,6985,5,451,0,0,6985,6986,3,1338, - 669,0,6986,6987,5,298,0,0,6987,6988,5,452,0,0,6988,6989,3,662,331, - 0,6989,7009,1,0,0,0,6990,6991,5,138,0,0,6991,6992,5,451,0,0,6992, - 6993,3,1338,669,0,6993,6994,5,326,0,0,6994,6995,5,452,0,0,6995,6996, - 3,754,377,0,6996,6997,3,662,331,0,6997,7009,1,0,0,0,6998,6999,5, - 138,0,0,6999,7000,5,451,0,0,7000,7001,3,1338,669,0,7001,7002,5,193, - 0,0,7002,7009,1,0,0,0,7003,7004,5,138,0,0,7004,7005,5,451,0,0,7005, - 7006,3,1338,669,0,7006,7007,5,186,0,0,7007,7009,1,0,0,0,7008,6971, - 1,0,0,0,7008,6977,1,0,0,0,7008,6983,1,0,0,0,7008,6990,1,0,0,0,7008, - 6998,1,0,0,0,7008,7003,1,0,0,0,7009,759,1,0,0,0,7010,7011,5,191, - 0,0,7011,7012,5,451,0,0,7012,7013,3,1338,669,0,7013,7014,3,106,53, - 0,7014,7023,1,0,0,0,7015,7016,5,191,0,0,7016,7017,5,451,0,0,7017, - 7018,5,220,0,0,7018,7019,5,389,0,0,7019,7020,3,1338,669,0,7020,7021, - 3,106,53,0,7021,7023,1,0,0,0,7022,7010,1,0,0,0,7022,7015,1,0,0,0, - 7023,761,1,0,0,0,7024,7025,5,46,0,0,7025,7026,3,616,308,0,7026,7027, - 5,314,0,0,7027,7028,3,1338,669,0,7028,7029,5,36,0,0,7029,7030,5, - 80,0,0,7030,7031,3,772,386,0,7031,7032,5,94,0,0,7032,7033,3,1334, - 667,0,7033,7034,3,1092,546,0,7034,7035,5,57,0,0,7035,7036,3,774, - 387,0,7036,7037,3,764,382,0,7037,763,1,0,0,0,7038,7045,5,263,0,0, - 7039,7045,3,768,384,0,7040,7041,5,2,0,0,7041,7042,3,766,383,0,7042, - 7043,5,3,0,0,7043,7045,1,0,0,0,7044,7038,1,0,0,0,7044,7039,1,0,0, - 0,7044,7040,1,0,0,0,7045,765,1,0,0,0,7046,7051,3,770,385,0,7047, - 7048,5,7,0,0,7048,7050,3,770,385,0,7049,7047,1,0,0,0,7050,7053,1, - 0,0,0,7051,7049,1,0,0,0,7051,7052,1,0,0,0,7052,767,1,0,0,0,7053, - 7051,1,0,0,0,7054,7060,3,958,479,0,7055,7060,3,900,450,0,7056,7060, - 3,940,470,0,7057,7060,3,926,463,0,7058,7060,3,776,388,0,7059,7054, - 1,0,0,0,7059,7055,1,0,0,0,7059,7056,1,0,0,0,7059,7057,1,0,0,0,7059, - 7058,1,0,0,0,7060,769,1,0,0,0,7061,7064,3,768,384,0,7062,7064,1, - 0,0,0,7063,7061,1,0,0,0,7063,7062,1,0,0,0,7064,771,1,0,0,0,7065, - 7066,7,31,0,0,7066,773,1,0,0,0,7067,7071,5,233,0,0,7068,7071,5,137, - 0,0,7069,7071,1,0,0,0,7070,7067,1,0,0,0,7070,7068,1,0,0,0,7070,7069, - 1,0,0,0,7071,775,1,0,0,0,7072,7073,5,264,0,0,7073,7074,3,1370,685, - 0,7074,7075,3,778,389,0,7075,777,1,0,0,0,7076,7077,5,6,0,0,7077, - 7080,3,1356,678,0,7078,7080,1,0,0,0,7079,7076,1,0,0,0,7079,7078, - 1,0,0,0,7080,779,1,0,0,0,7081,7082,5,243,0,0,7082,7083,3,1370,685, - 0,7083,781,1,0,0,0,7084,7085,5,359,0,0,7085,7089,3,1370,685,0,7086, - 7087,5,359,0,0,7087,7089,5,9,0,0,7088,7084,1,0,0,0,7088,7086,1,0, - 0,0,7089,783,1,0,0,0,7090,7091,5,129,0,0,7091,7092,3,786,393,0,7092, - 7093,3,794,397,0,7093,7141,1,0,0,0,7094,7095,5,146,0,0,7095,7096, - 3,786,393,0,7096,7097,3,792,396,0,7097,7141,1,0,0,0,7098,7099,5, - 333,0,0,7099,7100,5,349,0,0,7100,7141,3,792,396,0,7101,7102,5,161, - 0,0,7102,7103,3,786,393,0,7103,7104,3,794,397,0,7104,7141,1,0,0, - 0,7105,7106,5,454,0,0,7106,7107,3,786,393,0,7107,7108,3,794,397, - 0,7108,7141,1,0,0,0,7109,7110,5,312,0,0,7110,7111,3,786,393,0,7111, - 7112,3,794,397,0,7112,7141,1,0,0,0,7113,7114,5,315,0,0,7114,7141, - 3,1370,685,0,7115,7116,5,301,0,0,7116,7117,5,315,0,0,7117,7141,3, - 1370,685,0,7118,7119,5,301,0,0,7119,7141,3,1370,685,0,7120,7121, - 5,312,0,0,7121,7122,3,786,393,0,7122,7123,5,94,0,0,7123,7124,5,315, - 0,0,7124,7125,3,1370,685,0,7125,7141,1,0,0,0,7126,7127,5,312,0,0, - 7127,7128,3,786,393,0,7128,7129,5,94,0,0,7129,7130,3,1370,685,0, - 7130,7141,1,0,0,0,7131,7132,5,283,0,0,7132,7133,5,349,0,0,7133,7141, - 3,1356,678,0,7134,7135,5,161,0,0,7135,7136,5,284,0,0,7136,7141,3, - 1356,678,0,7137,7138,5,312,0,0,7138,7139,5,284,0,0,7139,7141,3,1356, - 678,0,7140,7090,1,0,0,0,7140,7094,1,0,0,0,7140,7098,1,0,0,0,7140, - 7101,1,0,0,0,7140,7105,1,0,0,0,7140,7109,1,0,0,0,7140,7113,1,0,0, - 0,7140,7115,1,0,0,0,7140,7118,1,0,0,0,7140,7120,1,0,0,0,7140,7126, - 1,0,0,0,7140,7131,1,0,0,0,7140,7134,1,0,0,0,7140,7137,1,0,0,0,7141, - 785,1,0,0,0,7142,7146,5,373,0,0,7143,7146,5,349,0,0,7144,7146,1, - 0,0,0,7145,7142,1,0,0,0,7145,7143,1,0,0,0,7145,7144,1,0,0,0,7146, - 787,1,0,0,0,7147,7148,5,235,0,0,7148,7149,5,242,0,0,7149,7158,3, - 62,31,0,7150,7151,5,293,0,0,7151,7158,5,81,0,0,7152,7153,5,293,0, - 0,7153,7158,5,375,0,0,7154,7158,5,54,0,0,7155,7156,5,77,0,0,7156, - 7158,5,54,0,0,7157,7147,1,0,0,0,7157,7150,1,0,0,0,7157,7152,1,0, - 0,0,7157,7154,1,0,0,0,7157,7155,1,0,0,0,7158,789,1,0,0,0,7159,7166, - 3,788,394,0,7160,7162,5,6,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0, - 0,7162,7163,1,0,0,0,7163,7165,3,788,394,0,7164,7161,1,0,0,0,7165, - 7168,1,0,0,0,7166,7164,1,0,0,0,7166,7167,1,0,0,0,7167,791,1,0,0, - 0,7168,7166,1,0,0,0,7169,7172,3,790,395,0,7170,7172,1,0,0,0,7171, - 7169,1,0,0,0,7171,7170,1,0,0,0,7172,793,1,0,0,0,7173,7175,5,33,0, - 0,7174,7176,5,262,0,0,7175,7174,1,0,0,0,7175,7176,1,0,0,0,7176,7177, - 1,0,0,0,7177,7180,5,153,0,0,7178,7180,1,0,0,0,7179,7173,1,0,0,0, - 7179,7178,1,0,0,0,7180,795,1,0,0,0,7181,7184,5,46,0,0,7182,7183, - 5,82,0,0,7183,7185,5,304,0,0,7184,7182,1,0,0,0,7184,7185,1,0,0,0, - 7185,7186,1,0,0,0,7186,7200,3,172,86,0,7187,7188,5,369,0,0,7188, - 7189,3,1334,667,0,7189,7190,3,212,106,0,7190,7191,3,116,58,0,7191, - 7201,1,0,0,0,7192,7193,5,296,0,0,7193,7194,5,369,0,0,7194,7195,3, - 1334,667,0,7195,7196,5,2,0,0,7196,7197,3,214,107,0,7197,7198,5,3, - 0,0,7198,7199,3,116,58,0,7199,7201,1,0,0,0,7200,7187,1,0,0,0,7200, - 7192,1,0,0,0,7201,7202,1,0,0,0,7202,7203,5,36,0,0,7203,7204,3,958, - 479,0,7204,7205,3,798,399,0,7205,797,1,0,0,0,7206,7208,5,105,0,0, - 7207,7209,7,32,0,0,7208,7207,1,0,0,0,7208,7209,1,0,0,0,7209,7210, - 1,0,0,0,7210,7211,5,42,0,0,7211,7214,5,272,0,0,7212,7214,1,0,0,0, - 7213,7206,1,0,0,0,7213,7212,1,0,0,0,7214,799,1,0,0,0,7215,7216,5, - 244,0,0,7216,7217,3,1342,671,0,7217,801,1,0,0,0,7218,7219,5,46,0, - 0,7219,7220,5,175,0,0,7220,7221,3,1338,669,0,7221,7222,3,14,7,0, - 7222,7223,3,804,402,0,7223,803,1,0,0,0,7224,7227,3,806,403,0,7225, - 7227,1,0,0,0,7226,7224,1,0,0,0,7226,7225,1,0,0,0,7227,805,1,0,0, - 0,7228,7230,3,808,404,0,7229,7228,1,0,0,0,7230,7231,1,0,0,0,7231, - 7229,1,0,0,0,7231,7232,1,0,0,0,7232,807,1,0,0,0,7233,7234,3,810, - 405,0,7234,7238,3,812,406,0,7235,7239,3,1362,681,0,7236,7239,3,64, - 32,0,7237,7239,5,53,0,0,7238,7235,1,0,0,0,7238,7236,1,0,0,0,7238, - 7237,1,0,0,0,7239,809,1,0,0,0,7240,7249,3,1380,690,0,7241,7242,5, - 164,0,0,7242,7249,5,74,0,0,7243,7249,5,194,0,0,7244,7249,5,246,0, - 0,7245,7249,5,275,0,0,7246,7249,5,344,0,0,7247,7249,5,346,0,0,7248, - 7240,1,0,0,0,7248,7241,1,0,0,0,7248,7243,1,0,0,0,7248,7244,1,0,0, - 0,7248,7245,1,0,0,0,7248,7246,1,0,0,0,7248,7247,1,0,0,0,7249,811, - 1,0,0,0,7250,7253,5,10,0,0,7251,7253,1,0,0,0,7252,7250,1,0,0,0,7252, - 7251,1,0,0,0,7253,813,1,0,0,0,7254,7255,5,138,0,0,7255,7256,5,175, - 0,0,7256,7263,3,1338,669,0,7257,7258,5,105,0,0,7258,7264,3,804,402, - 0,7259,7264,3,804,402,0,7260,7261,5,326,0,0,7261,7262,5,344,0,0, - 7262,7264,3,1338,669,0,7263,7257,1,0,0,0,7263,7259,1,0,0,0,7263, - 7260,1,0,0,0,7264,815,1,0,0,0,7265,7266,5,138,0,0,7266,7267,5,175, - 0,0,7267,7268,3,1338,669,0,7268,7269,3,78,39,0,7269,817,1,0,0,0, - 7270,7271,5,191,0,0,7271,7274,5,175,0,0,7272,7273,5,220,0,0,7273, - 7275,5,389,0,0,7274,7272,1,0,0,0,7274,7275,1,0,0,0,7275,7276,1,0, - 0,0,7276,7282,3,1338,669,0,7277,7278,3,14,7,0,7278,7279,5,2,0,0, - 7279,7280,3,820,410,0,7280,7281,5,3,0,0,7281,7283,1,0,0,0,7282,7277, - 1,0,0,0,7282,7283,1,0,0,0,7283,819,1,0,0,0,7284,7289,3,822,411,0, - 7285,7286,5,6,0,0,7286,7288,3,822,411,0,7287,7285,1,0,0,0,7288,7291, - 1,0,0,0,7289,7287,1,0,0,0,7289,7290,1,0,0,0,7290,821,1,0,0,0,7291, - 7289,1,0,0,0,7292,7293,5,209,0,0,7293,823,1,0,0,0,7294,7295,5,138, - 0,0,7295,7296,5,108,0,0,7296,7297,3,522,261,0,7297,7298,5,298,0, - 0,7298,7299,5,368,0,0,7299,825,1,0,0,0,7300,7301,5,138,0,0,7301, - 7302,5,342,0,0,7302,7303,7,33,0,0,7303,7304,3,52,26,0,7304,827,1, - 0,0,0,7305,7306,5,46,0,0,7306,7307,5,189,0,0,7307,7308,3,522,261, - 0,7308,7309,3,832,416,0,7309,7310,3,1116,558,0,7310,7311,3,190,95, - 0,7311,829,1,0,0,0,7312,7313,5,138,0,0,7313,7314,5,189,0,0,7314, - 7336,3,522,261,0,7315,7337,3,104,52,0,7316,7317,5,191,0,0,7317,7318, - 5,77,0,0,7318,7337,5,78,0,0,7319,7320,5,326,0,0,7320,7321,5,77,0, - 0,7321,7337,5,78,0,0,7322,7323,5,133,0,0,7323,7337,3,206,103,0,7324, - 7325,5,191,0,0,7325,7328,5,45,0,0,7326,7327,5,220,0,0,7327,7329, - 5,389,0,0,7328,7326,1,0,0,0,7328,7329,1,0,0,0,7329,7330,1,0,0,0, - 7330,7331,3,1338,669,0,7331,7332,3,106,53,0,7332,7337,1,0,0,0,7333, - 7334,5,365,0,0,7334,7335,5,45,0,0,7335,7337,3,1338,669,0,7336,7315, - 1,0,0,0,7336,7316,1,0,0,0,7336,7319,1,0,0,0,7336,7322,1,0,0,0,7336, - 7324,1,0,0,0,7336,7333,1,0,0,0,7337,831,1,0,0,0,7338,7341,5,36,0, - 0,7339,7341,1,0,0,0,7340,7338,1,0,0,0,7340,7339,1,0,0,0,7341,833, - 1,0,0,0,7342,7343,5,138,0,0,7343,7344,5,348,0,0,7344,7345,5,318, - 0,0,7345,7346,5,185,0,0,7346,7347,3,522,261,0,7347,7348,3,458,229, - 0,7348,835,1,0,0,0,7349,7350,5,138,0,0,7350,7351,5,348,0,0,7351, - 7352,5,318,0,0,7352,7353,5,163,0,0,7353,7354,3,522,261,0,7354,7355, - 5,133,0,0,7355,7356,5,248,0,0,7356,7357,5,62,0,0,7357,7358,3,1336, - 668,0,7358,7359,3,838,419,0,7359,7360,3,520,260,0,7360,7422,1,0, - 0,0,7361,7362,5,138,0,0,7362,7363,5,348,0,0,7363,7364,5,318,0,0, - 7364,7365,5,163,0,0,7365,7366,3,522,261,0,7366,7367,5,138,0,0,7367, - 7368,5,248,0,0,7368,7369,5,62,0,0,7369,7370,3,1336,668,0,7370,7371, - 3,838,419,0,7371,7372,3,520,260,0,7372,7422,1,0,0,0,7373,7374,5, - 138,0,0,7374,7375,5,348,0,0,7375,7376,5,318,0,0,7376,7377,5,163, - 0,0,7377,7378,3,522,261,0,7378,7379,5,138,0,0,7379,7380,5,248,0, - 0,7380,7381,5,304,0,0,7381,7382,3,522,261,0,7382,7383,3,838,419, - 0,7383,7384,3,522,261,0,7384,7422,1,0,0,0,7385,7386,5,138,0,0,7386, - 7387,5,348,0,0,7387,7388,5,318,0,0,7388,7389,5,163,0,0,7389,7390, - 3,522,261,0,7390,7391,5,138,0,0,7391,7392,5,248,0,0,7392,7393,5, - 62,0,0,7393,7394,3,1336,668,0,7394,7395,5,304,0,0,7395,7396,3,522, - 261,0,7396,7397,3,838,419,0,7397,7398,3,522,261,0,7398,7422,1,0, - 0,0,7399,7400,5,138,0,0,7400,7401,5,348,0,0,7401,7402,5,318,0,0, - 7402,7403,5,163,0,0,7403,7404,3,522,261,0,7404,7405,5,191,0,0,7405, - 7406,5,248,0,0,7406,7407,5,62,0,0,7407,7408,3,1336,668,0,7408,7422, - 1,0,0,0,7409,7410,5,138,0,0,7410,7411,5,348,0,0,7411,7412,5,318, - 0,0,7412,7413,5,163,0,0,7413,7414,3,522,261,0,7414,7415,5,191,0, - 0,7415,7416,5,248,0,0,7416,7417,5,220,0,0,7417,7418,5,389,0,0,7418, - 7419,5,62,0,0,7419,7420,3,1336,668,0,7420,7422,1,0,0,0,7421,7349, - 1,0,0,0,7421,7361,1,0,0,0,7421,7373,1,0,0,0,7421,7385,1,0,0,0,7421, - 7399,1,0,0,0,7421,7409,1,0,0,0,7422,837,1,0,0,0,7423,7424,5,105, - 0,0,7424,839,1,0,0,0,7425,7426,5,46,0,0,7426,7427,3,486,243,0,7427, - 7428,5,168,0,0,7428,7429,3,522,261,0,7429,7430,5,62,0,0,7430,7431, - 3,1356,678,0,7431,7432,5,94,0,0,7432,7433,3,1356,678,0,7433,7434, - 5,64,0,0,7434,7435,3,522,261,0,7435,841,1,0,0,0,7436,7437,5,158, - 0,0,7437,7438,3,862,431,0,7438,7439,3,1334,667,0,7439,7440,3,844, - 422,0,7440,7450,1,0,0,0,7441,7442,5,158,0,0,7442,7450,3,862,431, - 0,7443,7444,5,158,0,0,7444,7445,3,862,431,0,7445,7446,3,1338,669, - 0,7446,7447,5,80,0,0,7447,7448,3,1334,667,0,7448,7450,1,0,0,0,7449, - 7436,1,0,0,0,7449,7441,1,0,0,0,7449,7443,1,0,0,0,7450,843,1,0,0, - 0,7451,7452,5,100,0,0,7452,7455,3,1338,669,0,7453,7455,1,0,0,0,7454, - 7451,1,0,0,0,7454,7453,1,0,0,0,7455,845,1,0,0,0,7456,7457,5,363, - 0,0,7457,7458,3,864,432,0,7458,7459,3,866,433,0,7459,7460,3,862, - 431,0,7460,7461,3,860,430,0,7461,7462,3,874,437,0,7462,7470,1,0, - 0,0,7463,7464,5,363,0,0,7464,7465,5,2,0,0,7465,7466,3,850,425,0, - 7466,7467,5,3,0,0,7467,7468,3,874,437,0,7468,7470,1,0,0,0,7469,7456, - 1,0,0,0,7469,7463,1,0,0,0,7470,847,1,0,0,0,7471,7472,3,852,426,0, - 7472,7473,3,862,431,0,7473,7474,3,874,437,0,7474,7482,1,0,0,0,7475, - 7476,3,852,426,0,7476,7477,5,2,0,0,7477,7478,3,850,425,0,7478,7479, - 5,3,0,0,7479,7480,3,874,437,0,7480,7482,1,0,0,0,7481,7471,1,0,0, - 0,7481,7475,1,0,0,0,7482,849,1,0,0,0,7483,7488,3,854,427,0,7484, - 7485,5,6,0,0,7485,7487,3,854,427,0,7486,7484,1,0,0,0,7487,7490,1, - 0,0,0,7488,7486,1,0,0,0,7488,7489,1,0,0,0,7489,851,1,0,0,0,7490, - 7488,1,0,0,0,7491,7492,7,34,0,0,7492,853,1,0,0,0,7493,7494,3,856, - 428,0,7494,7495,3,858,429,0,7495,855,1,0,0,0,7496,7499,3,1376,688, - 0,7497,7499,3,852,426,0,7498,7496,1,0,0,0,7498,7497,1,0,0,0,7499, - 857,1,0,0,0,7500,7504,3,64,32,0,7501,7504,3,290,145,0,7502,7504, - 1,0,0,0,7503,7500,1,0,0,0,7503,7501,1,0,0,0,7503,7502,1,0,0,0,7504, - 859,1,0,0,0,7505,7508,3,852,426,0,7506,7508,1,0,0,0,7507,7505,1, - 0,0,0,7507,7506,1,0,0,0,7508,861,1,0,0,0,7509,7512,5,128,0,0,7510, - 7512,1,0,0,0,7511,7509,1,0,0,0,7511,7510,1,0,0,0,7512,863,1,0,0, - 0,7513,7516,5,113,0,0,7514,7516,1,0,0,0,7515,7513,1,0,0,0,7515,7514, - 1,0,0,0,7516,865,1,0,0,0,7517,7520,5,112,0,0,7518,7520,1,0,0,0,7519, - 7517,1,0,0,0,7519,7518,1,0,0,0,7520,867,1,0,0,0,7521,7522,5,2,0, - 0,7522,7523,3,1336,668,0,7523,7524,5,3,0,0,7524,7527,1,0,0,0,7525, - 7527,1,0,0,0,7526,7521,1,0,0,0,7526,7525,1,0,0,0,7527,869,1,0,0, - 0,7528,7529,3,1334,667,0,7529,7530,3,868,434,0,7530,871,1,0,0,0, - 7531,7536,3,870,435,0,7532,7533,5,6,0,0,7533,7535,3,870,435,0,7534, - 7532,1,0,0,0,7535,7538,1,0,0,0,7536,7534,1,0,0,0,7536,7537,1,0,0, - 0,7537,873,1,0,0,0,7538,7536,1,0,0,0,7539,7542,3,872,436,0,7540, - 7542,1,0,0,0,7541,7539,1,0,0,0,7541,7540,1,0,0,0,7542,875,1,0,0, - 0,7543,7544,5,203,0,0,7544,7560,3,878,439,0,7545,7546,5,203,0,0, - 7546,7547,3,852,426,0,7547,7548,3,862,431,0,7548,7549,3,878,439, - 0,7549,7560,1,0,0,0,7550,7551,5,203,0,0,7551,7552,5,128,0,0,7552, - 7560,3,878,439,0,7553,7554,5,203,0,0,7554,7555,5,2,0,0,7555,7556, - 3,880,440,0,7556,7557,5,3,0,0,7557,7558,3,878,439,0,7558,7560,1, - 0,0,0,7559,7543,1,0,0,0,7559,7545,1,0,0,0,7559,7550,1,0,0,0,7559, - 7553,1,0,0,0,7560,877,1,0,0,0,7561,7571,3,958,479,0,7562,7571,3, - 900,450,0,7563,7571,3,940,470,0,7564,7571,3,926,463,0,7565,7571, - 3,950,475,0,7566,7571,3,262,131,0,7567,7571,3,268,134,0,7568,7571, - 3,274,137,0,7569,7571,3,894,447,0,7570,7561,1,0,0,0,7570,7562,1, - 0,0,0,7570,7563,1,0,0,0,7570,7564,1,0,0,0,7570,7565,1,0,0,0,7570, - 7566,1,0,0,0,7570,7567,1,0,0,0,7570,7568,1,0,0,0,7570,7569,1,0,0, - 0,7571,879,1,0,0,0,7572,7577,3,882,441,0,7573,7574,5,6,0,0,7574, - 7576,3,882,441,0,7575,7573,1,0,0,0,7576,7579,1,0,0,0,7577,7575,1, - 0,0,0,7577,7578,1,0,0,0,7578,881,1,0,0,0,7579,7577,1,0,0,0,7580, - 7581,3,884,442,0,7581,7582,3,886,443,0,7582,883,1,0,0,0,7583,7586, - 3,1376,688,0,7584,7586,3,852,426,0,7585,7583,1,0,0,0,7585,7584,1, - 0,0,0,7586,885,1,0,0,0,7587,7591,3,64,32,0,7588,7591,3,290,145,0, - 7589,7591,1,0,0,0,7590,7587,1,0,0,0,7590,7588,1,0,0,0,7590,7589, - 1,0,0,0,7591,887,1,0,0,0,7592,7593,5,283,0,0,7593,7594,3,1338,669, - 0,7594,7595,3,890,445,0,7595,7596,5,36,0,0,7596,7597,3,892,446,0, - 7597,889,1,0,0,0,7598,7599,5,2,0,0,7599,7600,3,1284,642,0,7600,7601, - 5,3,0,0,7601,7604,1,0,0,0,7602,7604,1,0,0,0,7603,7598,1,0,0,0,7603, - 7602,1,0,0,0,7604,891,1,0,0,0,7605,7610,3,958,479,0,7606,7610,3, - 900,450,0,7607,7610,3,940,470,0,7608,7610,3,926,463,0,7609,7605, - 1,0,0,0,7609,7606,1,0,0,0,7609,7607,1,0,0,0,7609,7608,1,0,0,0,7610, - 893,1,0,0,0,7611,7612,5,202,0,0,7612,7613,3,1338,669,0,7613,7614, - 3,896,448,0,7614,7639,1,0,0,0,7615,7616,5,46,0,0,7616,7617,3,172, - 86,0,7617,7618,5,92,0,0,7618,7619,3,264,132,0,7619,7620,5,36,0,0, - 7620,7621,5,202,0,0,7621,7622,3,1338,669,0,7622,7623,3,896,448,0, - 7623,7624,3,266,133,0,7624,7639,1,0,0,0,7625,7626,5,46,0,0,7626, - 7627,3,172,86,0,7627,7628,5,92,0,0,7628,7629,5,220,0,0,7629,7630, - 5,77,0,0,7630,7631,5,389,0,0,7631,7632,3,264,132,0,7632,7633,5,36, - 0,0,7633,7634,5,202,0,0,7634,7635,3,1338,669,0,7635,7636,3,896,448, - 0,7636,7637,3,266,133,0,7637,7639,1,0,0,0,7638,7611,1,0,0,0,7638, - 7615,1,0,0,0,7638,7625,1,0,0,0,7639,895,1,0,0,0,7640,7641,5,2,0, - 0,7641,7642,3,1278,639,0,7642,7643,5,3,0,0,7643,7646,1,0,0,0,7644, - 7646,1,0,0,0,7645,7640,1,0,0,0,7645,7644,1,0,0,0,7646,897,1,0,0, - 0,7647,7648,5,177,0,0,7648,7658,3,1338,669,0,7649,7650,5,177,0,0, - 7650,7651,5,283,0,0,7651,7658,3,1338,669,0,7652,7653,5,177,0,0,7653, - 7658,5,30,0,0,7654,7655,5,177,0,0,7655,7656,5,283,0,0,7656,7658, - 5,30,0,0,7657,7647,1,0,0,0,7657,7649,1,0,0,0,7657,7652,1,0,0,0,7657, - 7654,1,0,0,0,7658,899,1,0,0,0,7659,7661,3,972,486,0,7660,7659,1, - 0,0,0,7660,7661,1,0,0,0,7661,7662,1,0,0,0,7662,7663,5,232,0,0,7663, - 7664,5,71,0,0,7664,7665,3,902,451,0,7665,7666,3,904,452,0,7666,7667, - 3,912,456,0,7667,7668,3,916,458,0,7668,901,1,0,0,0,7669,7672,3,1334, - 667,0,7670,7671,5,36,0,0,7671,7673,3,1370,685,0,7672,7670,1,0,0, - 0,7672,7673,1,0,0,0,7673,903,1,0,0,0,7674,7694,3,958,479,0,7675, - 7676,5,463,0,0,7676,7677,3,906,453,0,7677,7678,5,450,0,0,7678,7679, - 3,958,479,0,7679,7694,1,0,0,0,7680,7681,5,2,0,0,7681,7682,3,908, - 454,0,7682,7687,5,3,0,0,7683,7684,5,463,0,0,7684,7685,3,906,453, - 0,7685,7686,5,450,0,0,7686,7688,1,0,0,0,7687,7683,1,0,0,0,7687,7688, - 1,0,0,0,7688,7689,1,0,0,0,7689,7690,3,958,479,0,7690,7694,1,0,0, - 0,7691,7692,5,53,0,0,7692,7694,5,415,0,0,7693,7674,1,0,0,0,7693, - 7675,1,0,0,0,7693,7680,1,0,0,0,7693,7691,1,0,0,0,7694,905,1,0,0, - 0,7695,7696,7,35,0,0,7696,907,1,0,0,0,7697,7702,3,910,455,0,7698, - 7699,5,6,0,0,7699,7701,3,910,455,0,7700,7698,1,0,0,0,7701,7704,1, - 0,0,0,7702,7700,1,0,0,0,7702,7703,1,0,0,0,7703,909,1,0,0,0,7704, - 7702,1,0,0,0,7705,7706,3,1370,685,0,7706,7707,3,1324,662,0,7707, - 911,1,0,0,0,7708,7709,5,80,0,0,7709,7710,5,464,0,0,7710,7711,3,914, - 457,0,7711,7718,5,57,0,0,7712,7713,5,362,0,0,7713,7714,5,326,0,0, - 7714,7715,3,942,471,0,7715,7716,3,1092,546,0,7716,7719,1,0,0,0,7717, - 7719,5,263,0,0,7718,7712,1,0,0,0,7718,7717,1,0,0,0,7719,7722,1,0, - 0,0,7720,7722,1,0,0,0,7721,7708,1,0,0,0,7721,7720,1,0,0,0,7722,913, - 1,0,0,0,7723,7724,5,2,0,0,7724,7725,3,596,298,0,7725,7726,5,3,0, - 0,7726,7727,3,1092,546,0,7727,7733,1,0,0,0,7728,7729,5,80,0,0,7729, - 7730,5,45,0,0,7730,7733,3,1338,669,0,7731,7733,1,0,0,0,7732,7723, - 1,0,0,0,7732,7728,1,0,0,0,7732,7731,1,0,0,0,7733,915,1,0,0,0,7734, - 7735,5,87,0,0,7735,7738,3,1328,664,0,7736,7738,1,0,0,0,7737,7734, - 1,0,0,0,7737,7736,1,0,0,0,7738,917,1,0,0,0,7739,7741,5,253,0,0,7740, - 7742,5,71,0,0,7741,7740,1,0,0,0,7741,7742,1,0,0,0,7742,7743,1,0, - 0,0,7743,7745,3,1334,667,0,7744,7746,3,1060,530,0,7745,7744,1,0, - 0,0,7745,7746,1,0,0,0,7746,7747,1,0,0,0,7747,7750,5,100,0,0,7748, - 7751,3,960,480,0,7749,7751,3,1334,667,0,7750,7748,1,0,0,0,7750,7749, - 1,0,0,0,7751,7753,1,0,0,0,7752,7754,3,1060,530,0,7753,7752,1,0,0, - 0,7753,7754,1,0,0,0,7754,7755,1,0,0,0,7755,7756,5,80,0,0,7756,7765, - 3,1160,580,0,7757,7759,3,920,460,0,7758,7760,3,922,461,0,7759,7758, - 1,0,0,0,7759,7760,1,0,0,0,7760,7766,1,0,0,0,7761,7763,3,922,461, - 0,7762,7764,3,920,460,0,7763,7762,1,0,0,0,7763,7764,1,0,0,0,7764, - 7766,1,0,0,0,7765,7757,1,0,0,0,7765,7761,1,0,0,0,7766,7768,1,0,0, - 0,7767,7769,3,924,462,0,7768,7767,1,0,0,0,7768,7769,1,0,0,0,7769, - 919,1,0,0,0,7770,7771,5,102,0,0,7771,7772,5,77,0,0,7772,7775,5,250, - 0,0,7773,7774,5,33,0,0,7774,7776,3,1160,580,0,7775,7773,1,0,0,0, - 7775,7776,1,0,0,0,7776,7778,1,0,0,0,7777,7779,5,93,0,0,7778,7777, - 1,0,0,0,7778,7779,1,0,0,0,7779,7780,1,0,0,0,7780,7785,5,232,0,0, - 7781,7782,5,2,0,0,7782,7783,3,908,454,0,7783,7784,5,3,0,0,7784,7786, - 1,0,0,0,7785,7781,1,0,0,0,7785,7786,1,0,0,0,7786,7787,1,0,0,0,7787, - 7788,3,1050,525,0,7788,921,1,0,0,0,7789,7790,5,102,0,0,7790,7793, - 5,250,0,0,7791,7792,5,33,0,0,7792,7794,3,1160,580,0,7793,7791,1, - 0,0,0,7793,7794,1,0,0,0,7794,7796,1,0,0,0,7795,7797,5,93,0,0,7796, - 7795,1,0,0,0,7796,7797,1,0,0,0,7797,7798,1,0,0,0,7798,7799,5,362, - 0,0,7799,7800,5,326,0,0,7800,7801,3,942,471,0,7801,923,1,0,0,0,7802, - 7803,5,102,0,0,7803,7805,5,250,0,0,7804,7806,5,93,0,0,7805,7804, - 1,0,0,0,7805,7806,1,0,0,0,7806,7807,1,0,0,0,7807,7808,5,182,0,0, - 7808,925,1,0,0,0,7809,7811,3,972,486,0,7810,7809,1,0,0,0,7810,7811, - 1,0,0,0,7811,7812,1,0,0,0,7812,7813,5,182,0,0,7813,7814,5,64,0,0, - 7814,7815,3,1076,538,0,7815,7816,3,928,464,0,7816,7817,3,1094,547, - 0,7817,7818,3,916,458,0,7818,927,1,0,0,0,7819,7820,5,100,0,0,7820, - 7823,3,1054,527,0,7821,7823,1,0,0,0,7822,7819,1,0,0,0,7822,7821, - 1,0,0,0,7823,929,1,0,0,0,7824,7825,5,247,0,0,7825,7826,3,986,493, - 0,7826,7827,3,1074,537,0,7827,7828,3,932,466,0,7828,7829,3,936,468, - 0,7829,931,1,0,0,0,7830,7831,5,68,0,0,7831,7832,3,934,467,0,7832, - 7833,5,256,0,0,7833,7836,1,0,0,0,7834,7836,1,0,0,0,7835,7830,1,0, - 0,0,7835,7834,1,0,0,0,7836,933,1,0,0,0,7837,7838,5,131,0,0,7838, - 7850,7,36,0,0,7839,7840,5,407,0,0,7840,7850,7,36,0,0,7841,7846,5, - 327,0,0,7842,7843,5,362,0,0,7843,7847,5,201,0,0,7844,7845,5,407, - 0,0,7845,7847,5,201,0,0,7846,7842,1,0,0,0,7846,7844,1,0,0,0,7846, - 7847,1,0,0,0,7847,7850,1,0,0,0,7848,7850,5,201,0,0,7849,7837,1,0, - 0,0,7849,7839,1,0,0,0,7849,7841,1,0,0,0,7849,7848,1,0,0,0,7850,935, - 1,0,0,0,7851,7854,5,265,0,0,7852,7854,1,0,0,0,7853,7851,1,0,0,0, - 7853,7852,1,0,0,0,7854,937,1,0,0,0,7855,7860,5,265,0,0,7856,7857, - 5,465,0,0,7857,7860,5,466,0,0,7858,7860,1,0,0,0,7859,7855,1,0,0, - 0,7859,7856,1,0,0,0,7859,7858,1,0,0,0,7860,939,1,0,0,0,7861,7863, - 3,972,486,0,7862,7861,1,0,0,0,7862,7863,1,0,0,0,7863,7864,1,0,0, - 0,7864,7865,5,362,0,0,7865,7866,3,1076,538,0,7866,7867,5,326,0,0, - 7867,7868,3,942,471,0,7868,7869,3,1052,526,0,7869,7870,3,1094,547, - 0,7870,7871,3,916,458,0,7871,941,1,0,0,0,7872,7877,3,944,472,0,7873, - 7874,5,6,0,0,7874,7876,3,944,472,0,7875,7873,1,0,0,0,7876,7879,1, - 0,0,0,7877,7875,1,0,0,0,7877,7878,1,0,0,0,7878,943,1,0,0,0,7879, - 7877,1,0,0,0,7880,7881,3,946,473,0,7881,7882,5,10,0,0,7882,7883, - 3,1160,580,0,7883,7891,1,0,0,0,7884,7885,5,2,0,0,7885,7886,3,948, - 474,0,7886,7887,5,3,0,0,7887,7888,5,10,0,0,7888,7889,3,1160,580, - 0,7889,7891,1,0,0,0,7890,7880,1,0,0,0,7890,7884,1,0,0,0,7891,945, - 1,0,0,0,7892,7893,3,1370,685,0,7893,7894,3,1324,662,0,7894,947,1, - 0,0,0,7895,7900,3,946,473,0,7896,7897,5,6,0,0,7897,7899,3,946,473, - 0,7898,7896,1,0,0,0,7899,7902,1,0,0,0,7900,7898,1,0,0,0,7900,7901, - 1,0,0,0,7901,949,1,0,0,0,7902,7900,1,0,0,0,7903,7904,5,178,0,0,7904, - 7905,3,952,476,0,7905,7906,3,954,477,0,7906,7907,5,172,0,0,7907, - 7908,3,956,478,0,7908,7909,5,62,0,0,7909,7910,3,958,479,0,7910,951, - 1,0,0,0,7911,7912,3,1338,669,0,7912,953,1,0,0,0,7913,7914,5,262, - 0,0,7914,7919,5,317,0,0,7915,7919,5,317,0,0,7916,7919,5,107,0,0, - 7917,7919,5,231,0,0,7918,7913,1,0,0,0,7918,7915,1,0,0,0,7918,7916, - 1,0,0,0,7918,7917,1,0,0,0,7919,7922,1,0,0,0,7920,7918,1,0,0,0,7920, - 7921,1,0,0,0,7921,955,1,0,0,0,7922,7920,1,0,0,0,7923,7929,1,0,0, - 0,7924,7925,5,105,0,0,7925,7929,5,217,0,0,7926,7927,5,372,0,0,7927, - 7929,5,217,0,0,7928,7923,1,0,0,0,7928,7924,1,0,0,0,7928,7926,1,0, - 0,0,7929,957,1,0,0,0,7930,7933,3,962,481,0,7931,7933,3,960,480,0, - 7932,7930,1,0,0,0,7932,7931,1,0,0,0,7933,959,1,0,0,0,7934,7935,5, - 2,0,0,7935,7936,3,962,481,0,7936,7937,5,3,0,0,7937,7943,1,0,0,0, - 7938,7939,5,2,0,0,7939,7940,3,960,480,0,7940,7941,5,3,0,0,7941,7943, - 1,0,0,0,7942,7934,1,0,0,0,7942,7938,1,0,0,0,7943,961,1,0,0,0,7944, - 7945,3,964,482,0,7945,7952,3,994,497,0,7946,7947,3,1038,519,0,7947, - 7948,3,1004,502,0,7948,7953,1,0,0,0,7949,7950,3,1002,501,0,7950, - 7951,3,1040,520,0,7951,7953,1,0,0,0,7952,7946,1,0,0,0,7952,7949, - 1,0,0,0,7952,7953,1,0,0,0,7953,7966,1,0,0,0,7954,7955,3,972,486, - 0,7955,7956,3,964,482,0,7956,7963,3,994,497,0,7957,7958,3,1038,519, - 0,7958,7959,3,1004,502,0,7959,7964,1,0,0,0,7960,7961,3,1002,501, - 0,7961,7962,3,1040,520,0,7962,7964,1,0,0,0,7963,7957,1,0,0,0,7963, - 7960,1,0,0,0,7963,7964,1,0,0,0,7964,7966,1,0,0,0,7965,7944,1,0,0, - 0,7965,7954,1,0,0,0,7966,963,1,0,0,0,7967,7974,3,966,483,0,7968, - 7969,7,37,0,0,7969,7970,3,988,494,0,7970,7971,3,966,483,0,7971,7973, - 1,0,0,0,7972,7968,1,0,0,0,7973,7976,1,0,0,0,7974,7972,1,0,0,0,7974, - 7975,1,0,0,0,7975,965,1,0,0,0,7976,7974,1,0,0,0,7977,7984,3,970, - 485,0,7978,7979,5,70,0,0,7979,7980,3,988,494,0,7980,7981,3,970,485, - 0,7981,7983,1,0,0,0,7982,7978,1,0,0,0,7983,7986,1,0,0,0,7984,7982, - 1,0,0,0,7984,7985,1,0,0,0,7985,967,1,0,0,0,7986,7984,1,0,0,0,7987, - 7989,3,1328,664,0,7988,7990,3,980,490,0,7989,7988,1,0,0,0,7989,7990, - 1,0,0,0,7990,8003,1,0,0,0,7991,7992,3,992,496,0,7992,7994,3,1326, - 663,0,7993,7995,3,980,490,0,7994,7993,1,0,0,0,7994,7995,1,0,0,0, - 7995,8003,1,0,0,0,7996,7997,3,990,495,0,7997,7999,3,1328,664,0,7998, - 8000,3,980,490,0,7999,7998,1,0,0,0,7999,8000,1,0,0,0,8000,8003,1, - 0,0,0,8001,8003,3,980,490,0,8002,7987,1,0,0,0,8002,7991,1,0,0,0, - 8002,7996,1,0,0,0,8002,8001,1,0,0,0,8003,969,1,0,0,0,8004,8005,5, - 88,0,0,8005,8006,3,968,484,0,8006,8007,3,1052,526,0,8007,8008,3, - 1092,546,0,8008,8009,3,1022,511,0,8009,8010,3,1036,518,0,8010,8011, - 3,1238,619,0,8011,8017,1,0,0,0,8012,8017,3,1050,525,0,8013,8014, - 5,92,0,0,8014,8017,3,1072,536,0,8015,8017,3,960,480,0,8016,8004, - 1,0,0,0,8016,8012,1,0,0,0,8016,8013,1,0,0,0,8016,8015,1,0,0,0,8017, - 971,1,0,0,0,8018,8020,5,105,0,0,8019,8021,5,296,0,0,8020,8019,1, - 0,0,0,8020,8021,1,0,0,0,8021,8022,1,0,0,0,8022,8023,3,974,487,0, - 8023,973,1,0,0,0,8024,8029,3,976,488,0,8025,8026,5,6,0,0,8026,8028, - 3,976,488,0,8027,8025,1,0,0,0,8028,8031,1,0,0,0,8029,8027,1,0,0, - 0,8029,8030,1,0,0,0,8030,975,1,0,0,0,8031,8029,1,0,0,0,8032,8033, - 3,1338,669,0,8033,8034,3,868,434,0,8034,8035,5,36,0,0,8035,8036, - 3,978,489,0,8036,8037,5,2,0,0,8037,8038,3,892,446,0,8038,8039,5, - 3,0,0,8039,977,1,0,0,0,8040,8045,5,251,0,0,8041,8042,5,77,0,0,8042, - 8045,5,251,0,0,8043,8045,1,0,0,0,8044,8040,1,0,0,0,8044,8041,1,0, - 0,0,8044,8043,1,0,0,0,8045,979,1,0,0,0,8046,8051,5,71,0,0,8047,8048, - 3,982,491,0,8048,8049,3,984,492,0,8049,8052,1,0,0,0,8050,8052,3, - 1564,782,0,8051,8047,1,0,0,0,8051,8050,1,0,0,0,8052,981,1,0,0,0, - 8053,8056,1,0,0,0,8054,8056,5,339,0,0,8055,8053,1,0,0,0,8055,8054, - 1,0,0,0,8056,983,1,0,0,0,8057,8059,7,38,0,0,8058,8057,1,0,0,0,8058, - 8059,1,0,0,0,8059,8060,1,0,0,0,8060,8061,7,11,0,0,8061,8062,3,986, - 493,0,8062,8063,3,1334,667,0,8063,8072,1,0,0,0,8064,8065,5,360,0, - 0,8065,8066,3,986,493,0,8066,8067,3,1334,667,0,8067,8072,1,0,0,0, - 8068,8069,5,92,0,0,8069,8072,3,1334,667,0,8070,8072,3,1334,667,0, - 8071,8058,1,0,0,0,8071,8064,1,0,0,0,8071,8068,1,0,0,0,8071,8070, - 1,0,0,0,8072,985,1,0,0,0,8073,8076,5,92,0,0,8074,8076,1,0,0,0,8075, - 8073,1,0,0,0,8075,8074,1,0,0,0,8076,987,1,0,0,0,8077,8081,5,30,0, - 0,8078,8081,5,56,0,0,8079,8081,1,0,0,0,8080,8077,1,0,0,0,8080,8078, - 1,0,0,0,8080,8079,1,0,0,0,8081,989,1,0,0,0,8082,8088,5,56,0,0,8083, - 8084,5,80,0,0,8084,8085,5,2,0,0,8085,8086,3,1278,639,0,8086,8087, - 5,3,0,0,8087,8089,1,0,0,0,8088,8083,1,0,0,0,8088,8089,1,0,0,0,8089, - 991,1,0,0,0,8090,8091,5,30,0,0,8091,993,1,0,0,0,8092,8095,3,996, - 498,0,8093,8095,1,0,0,0,8094,8092,1,0,0,0,8094,8093,1,0,0,0,8095, - 995,1,0,0,0,8096,8097,5,83,0,0,8097,8098,5,147,0,0,8098,8099,3,998, - 499,0,8099,997,1,0,0,0,8100,8105,3,1000,500,0,8101,8102,5,6,0,0, - 8102,8104,3,1000,500,0,8103,8101,1,0,0,0,8104,8107,1,0,0,0,8105, - 8103,1,0,0,0,8105,8106,1,0,0,0,8106,999,1,0,0,0,8107,8105,1,0,0, - 0,8108,8112,3,1160,580,0,8109,8110,5,100,0,0,8110,8113,3,1274,637, - 0,8111,8113,3,610,305,0,8112,8109,1,0,0,0,8112,8111,1,0,0,0,8113, - 8114,1,0,0,0,8114,8115,3,612,306,0,8115,1001,1,0,0,0,8116,8118,3, - 1006,503,0,8117,8119,3,1008,504,0,8118,8117,1,0,0,0,8118,8119,1, - 0,0,0,8119,8125,1,0,0,0,8120,8122,3,1008,504,0,8121,8123,3,1006, - 503,0,8122,8121,1,0,0,0,8122,8123,1,0,0,0,8123,8125,1,0,0,0,8124, - 8116,1,0,0,0,8124,8120,1,0,0,0,8125,1003,1,0,0,0,8126,8129,3,1002, - 501,0,8127,8129,1,0,0,0,8128,8126,1,0,0,0,8128,8127,1,0,0,0,8129, - 1005,1,0,0,0,8130,8131,5,74,0,0,8131,8134,3,1010,505,0,8132,8133, - 5,6,0,0,8133,8135,3,1012,506,0,8134,8132,1,0,0,0,8134,8135,1,0,0, - 0,8135,8154,1,0,0,0,8136,8137,5,61,0,0,8137,8151,3,1020,510,0,8138, - 8139,3,1014,507,0,8139,8143,3,1018,509,0,8140,8144,5,81,0,0,8141, - 8142,5,105,0,0,8142,8144,5,467,0,0,8143,8140,1,0,0,0,8143,8141,1, - 0,0,0,8144,8152,1,0,0,0,8145,8149,3,1018,509,0,8146,8150,5,81,0, - 0,8147,8148,5,105,0,0,8148,8150,5,467,0,0,8149,8146,1,0,0,0,8149, - 8147,1,0,0,0,8150,8152,1,0,0,0,8151,8138,1,0,0,0,8151,8145,1,0,0, - 0,8152,8154,1,0,0,0,8153,8130,1,0,0,0,8153,8136,1,0,0,0,8154,1007, - 1,0,0,0,8155,8160,5,79,0,0,8156,8161,3,1012,506,0,8157,8158,3,1014, - 507,0,8158,8159,3,1018,509,0,8159,8161,1,0,0,0,8160,8156,1,0,0,0, - 8160,8157,1,0,0,0,8161,1009,1,0,0,0,8162,8165,3,1160,580,0,8163, - 8165,5,30,0,0,8164,8162,1,0,0,0,8164,8163,1,0,0,0,8165,1011,1,0, - 0,0,8166,8167,3,1160,580,0,8167,1013,1,0,0,0,8168,8174,3,1204,602, - 0,8169,8170,5,12,0,0,8170,8174,3,1016,508,0,8171,8172,5,13,0,0,8172, - 8174,3,1016,508,0,8173,8168,1,0,0,0,8173,8169,1,0,0,0,8173,8171, - 1,0,0,0,8174,1015,1,0,0,0,8175,8178,3,1354,677,0,8176,8178,3,1352, - 676,0,8177,8175,1,0,0,0,8177,8176,1,0,0,0,8178,1017,1,0,0,0,8179, - 8180,7,39,0,0,8180,1019,1,0,0,0,8181,8182,7,40,0,0,8182,1021,1,0, - 0,0,8183,8184,5,66,0,0,8184,8185,5,147,0,0,8185,8188,3,1024,512, - 0,8186,8188,1,0,0,0,8187,8183,1,0,0,0,8187,8186,1,0,0,0,8188,1023, - 1,0,0,0,8189,8194,3,1026,513,0,8190,8191,5,6,0,0,8191,8193,3,1026, - 513,0,8192,8190,1,0,0,0,8193,8196,1,0,0,0,8194,8192,1,0,0,0,8194, - 8195,1,0,0,0,8195,1025,1,0,0,0,8196,8194,1,0,0,0,8197,8203,3,1160, - 580,0,8198,8203,3,1028,514,0,8199,8203,3,1032,516,0,8200,8203,3, - 1030,515,0,8201,8203,3,1034,517,0,8202,8197,1,0,0,0,8202,8198,1, - 0,0,0,8202,8199,1,0,0,0,8202,8200,1,0,0,0,8202,8201,1,0,0,0,8203, - 1027,1,0,0,0,8204,8205,5,2,0,0,8205,8206,5,3,0,0,8206,1029,1,0,0, - 0,8207,8208,5,468,0,0,8208,8209,5,2,0,0,8209,8210,3,1278,639,0,8210, - 8211,5,3,0,0,8211,1031,1,0,0,0,8212,8213,5,469,0,0,8213,8214,5,2, - 0,0,8214,8215,3,1278,639,0,8215,8216,5,3,0,0,8216,1033,1,0,0,0,8217, - 8218,5,470,0,0,8218,8219,5,471,0,0,8219,8220,5,2,0,0,8220,8221,3, - 1024,512,0,8221,8222,5,3,0,0,8222,1035,1,0,0,0,8223,8224,5,67,0, - 0,8224,8227,3,1160,580,0,8225,8227,1,0,0,0,8226,8223,1,0,0,0,8226, - 8225,1,0,0,0,8227,1037,1,0,0,0,8228,8233,3,1042,521,0,8229,8230, - 5,62,0,0,8230,8231,5,293,0,0,8231,8233,5,81,0,0,8232,8228,1,0,0, - 0,8232,8229,1,0,0,0,8233,1039,1,0,0,0,8234,8237,3,1038,519,0,8235, - 8237,1,0,0,0,8236,8234,1,0,0,0,8236,8235,1,0,0,0,8237,1041,1,0,0, - 0,8238,8240,3,1044,522,0,8239,8238,1,0,0,0,8240,8241,1,0,0,0,8241, - 8239,1,0,0,0,8241,8242,1,0,0,0,8242,1043,1,0,0,0,8243,8244,3,1046, - 523,0,8244,8245,3,1048,524,0,8245,8246,3,938,469,0,8246,1045,1,0, - 0,0,8247,8257,5,62,0,0,8248,8249,5,262,0,0,8249,8251,5,236,0,0,8250, - 8248,1,0,0,0,8250,8251,1,0,0,0,8251,8252,1,0,0,0,8252,8258,5,362, - 0,0,8253,8255,5,236,0,0,8254,8253,1,0,0,0,8254,8255,1,0,0,0,8255, - 8256,1,0,0,0,8256,8258,5,327,0,0,8257,8250,1,0,0,0,8257,8254,1,0, - 0,0,8258,1047,1,0,0,0,8259,8260,5,268,0,0,8260,8263,3,1332,666,0, - 8261,8263,1,0,0,0,8262,8259,1,0,0,0,8262,8261,1,0,0,0,8263,1049, - 1,0,0,0,8264,8265,5,415,0,0,8265,8266,5,2,0,0,8266,8267,3,1278,639, - 0,8267,8275,5,3,0,0,8268,8269,5,6,0,0,8269,8270,5,2,0,0,8270,8271, - 3,1278,639,0,8271,8272,5,3,0,0,8272,8274,1,0,0,0,8273,8268,1,0,0, - 0,8274,8277,1,0,0,0,8275,8273,1,0,0,0,8275,8276,1,0,0,0,8276,1051, - 1,0,0,0,8277,8275,1,0,0,0,8278,8279,5,64,0,0,8279,8282,3,1054,527, - 0,8280,8282,1,0,0,0,8281,8278,1,0,0,0,8281,8280,1,0,0,0,8282,1053, - 1,0,0,0,8283,8293,3,1056,528,0,8284,8289,3,1058,529,0,8285,8286, - 5,6,0,0,8286,8288,3,1058,529,0,8287,8285,1,0,0,0,8288,8291,1,0,0, - 0,8289,8287,1,0,0,0,8289,8290,1,0,0,0,8290,8293,1,0,0,0,8291,8289, - 1,0,0,0,8292,8283,1,0,0,0,8292,8284,1,0,0,0,8293,1055,1,0,0,0,8294, - 8297,3,1058,529,0,8295,8296,5,6,0,0,8296,8298,3,1058,529,0,8297, - 8295,1,0,0,0,8298,8299,1,0,0,0,8299,8297,1,0,0,0,8299,8300,1,0,0, - 0,8300,1057,1,0,0,0,8301,8302,3,1072,536,0,8302,8304,3,1062,531, - 0,8303,8305,3,1078,539,0,8304,8303,1,0,0,0,8304,8305,1,0,0,0,8305, - 8351,1,0,0,0,8306,8307,3,1082,541,0,8307,8308,3,1066,533,0,8308, - 8351,1,0,0,0,8309,8310,3,1102,551,0,8310,8311,3,1062,531,0,8311, - 8351,1,0,0,0,8312,8313,3,960,480,0,8313,8314,3,1062,531,0,8314,8351, - 1,0,0,0,8315,8325,5,72,0,0,8316,8317,3,1102,551,0,8317,8318,3,1062, - 531,0,8318,8326,1,0,0,0,8319,8320,3,1082,541,0,8320,8321,3,1066, - 533,0,8321,8326,1,0,0,0,8322,8323,3,960,480,0,8323,8324,3,1062,531, - 0,8324,8326,1,0,0,0,8325,8316,1,0,0,0,8325,8319,1,0,0,0,8325,8322, - 1,0,0,0,8326,8351,1,0,0,0,8327,8328,5,2,0,0,8328,8345,3,1058,529, - 0,8329,8330,5,110,0,0,8330,8331,5,118,0,0,8331,8346,3,1058,529,0, - 8332,8334,5,121,0,0,8333,8335,3,1068,534,0,8334,8333,1,0,0,0,8334, - 8335,1,0,0,0,8335,8336,1,0,0,0,8336,8337,5,118,0,0,8337,8346,3,1058, - 529,0,8338,8340,3,1068,534,0,8339,8338,1,0,0,0,8339,8340,1,0,0,0, - 8340,8341,1,0,0,0,8341,8342,5,118,0,0,8342,8343,3,1058,529,0,8343, - 8344,3,1070,535,0,8344,8346,1,0,0,0,8345,8329,1,0,0,0,8345,8332, - 1,0,0,0,8345,8339,1,0,0,0,8345,8346,1,0,0,0,8346,8347,1,0,0,0,8347, - 8348,5,3,0,0,8348,8349,3,1062,531,0,8349,8351,1,0,0,0,8350,8301, - 1,0,0,0,8350,8306,1,0,0,0,8350,8309,1,0,0,0,8350,8312,1,0,0,0,8350, - 8315,1,0,0,0,8350,8327,1,0,0,0,8351,8370,1,0,0,0,8352,8353,5,110, - 0,0,8353,8354,5,118,0,0,8354,8369,3,1058,529,0,8355,8357,5,121,0, - 0,8356,8358,3,1068,534,0,8357,8356,1,0,0,0,8357,8358,1,0,0,0,8358, - 8359,1,0,0,0,8359,8360,5,118,0,0,8360,8369,3,1058,529,0,8361,8363, - 3,1068,534,0,8362,8361,1,0,0,0,8362,8363,1,0,0,0,8363,8364,1,0,0, - 0,8364,8365,5,118,0,0,8365,8366,3,1058,529,0,8366,8367,3,1070,535, - 0,8367,8369,1,0,0,0,8368,8352,1,0,0,0,8368,8355,1,0,0,0,8368,8362, - 1,0,0,0,8369,8372,1,0,0,0,8370,8368,1,0,0,0,8370,8371,1,0,0,0,8371, - 1059,1,0,0,0,8372,8370,1,0,0,0,8373,8375,5,36,0,0,8374,8373,1,0, - 0,0,8374,8375,1,0,0,0,8375,8376,1,0,0,0,8376,8381,3,1370,685,0,8377, - 8378,5,2,0,0,8378,8379,3,1336,668,0,8379,8380,5,3,0,0,8380,8382, - 1,0,0,0,8381,8377,1,0,0,0,8381,8382,1,0,0,0,8382,1061,1,0,0,0,8383, - 8386,3,1064,532,0,8384,8386,1,0,0,0,8385,8383,1,0,0,0,8385,8384, - 1,0,0,0,8386,1063,1,0,0,0,8387,8389,5,36,0,0,8388,8387,1,0,0,0,8388, - 8389,1,0,0,0,8389,8390,1,0,0,0,8390,8395,3,1372,686,0,8391,8392, - 5,2,0,0,8392,8393,3,1336,668,0,8393,8394,5,3,0,0,8394,8396,1,0,0, - 0,8395,8391,1,0,0,0,8395,8396,1,0,0,0,8396,1065,1,0,0,0,8397,8411, - 3,1060,530,0,8398,8400,5,36,0,0,8399,8401,3,1370,685,0,8400,8399, - 1,0,0,0,8400,8401,1,0,0,0,8401,8404,1,0,0,0,8402,8404,3,1370,685, - 0,8403,8398,1,0,0,0,8403,8402,1,0,0,0,8404,8405,1,0,0,0,8405,8406, - 5,2,0,0,8406,8407,3,1098,549,0,8407,8408,5,3,0,0,8408,8411,1,0,0, - 0,8409,8411,1,0,0,0,8410,8397,1,0,0,0,8410,8403,1,0,0,0,8410,8409, - 1,0,0,0,8411,1067,1,0,0,0,8412,8414,7,41,0,0,8413,8415,5,123,0,0, - 8414,8413,1,0,0,0,8414,8415,1,0,0,0,8415,1069,1,0,0,0,8416,8417, - 5,100,0,0,8417,8418,5,2,0,0,8418,8419,3,1336,668,0,8419,8420,5,3, - 0,0,8420,8424,1,0,0,0,8421,8422,5,80,0,0,8422,8424,3,1160,580,0, - 8423,8416,1,0,0,0,8423,8421,1,0,0,0,8424,1071,1,0,0,0,8425,8427, - 3,1334,667,0,8426,8428,5,9,0,0,8427,8426,1,0,0,0,8427,8428,1,0,0, - 0,8428,8438,1,0,0,0,8429,8435,5,81,0,0,8430,8436,3,1334,667,0,8431, - 8432,5,2,0,0,8432,8433,3,1334,667,0,8433,8434,5,3,0,0,8434,8436, - 1,0,0,0,8435,8430,1,0,0,0,8435,8431,1,0,0,0,8436,8438,1,0,0,0,8437, - 8425,1,0,0,0,8437,8429,1,0,0,0,8438,1073,1,0,0,0,8439,8444,3,1072, - 536,0,8440,8441,5,6,0,0,8441,8443,3,1072,536,0,8442,8440,1,0,0,0, - 8443,8446,1,0,0,0,8444,8442,1,0,0,0,8444,8445,1,0,0,0,8445,1075, - 1,0,0,0,8446,8444,1,0,0,0,8447,8452,3,1072,536,0,8448,8450,5,36, - 0,0,8449,8448,1,0,0,0,8449,8450,1,0,0,0,8450,8451,1,0,0,0,8451,8453, - 3,1370,685,0,8452,8449,1,0,0,0,8452,8453,1,0,0,0,8453,1077,1,0,0, - 0,8454,8455,5,472,0,0,8455,8456,3,1344,672,0,8456,8457,5,2,0,0,8457, - 8458,3,1278,639,0,8458,8459,5,3,0,0,8459,8460,3,1080,540,0,8460, - 1079,1,0,0,0,8461,8462,5,303,0,0,8462,8463,5,2,0,0,8463,8464,3,1160, - 580,0,8464,8465,5,3,0,0,8465,8468,1,0,0,0,8466,8468,1,0,0,0,8467, - 8461,1,0,0,0,8467,8466,1,0,0,0,8468,1081,1,0,0,0,8469,8470,3,1212, - 606,0,8470,8471,3,1090,545,0,8471,8480,1,0,0,0,8472,8473,5,313,0, - 0,8473,8474,5,64,0,0,8474,8475,5,2,0,0,8475,8476,3,1086,543,0,8476, - 8477,5,3,0,0,8477,8478,3,1090,545,0,8478,8480,1,0,0,0,8479,8469, - 1,0,0,0,8479,8472,1,0,0,0,8480,1083,1,0,0,0,8481,8482,3,1212,606, - 0,8482,8483,3,1088,544,0,8483,1085,1,0,0,0,8484,8489,3,1084,542, - 0,8485,8486,5,6,0,0,8486,8488,3,1084,542,0,8487,8485,1,0,0,0,8488, - 8491,1,0,0,0,8489,8487,1,0,0,0,8489,8490,1,0,0,0,8490,1087,1,0,0, - 0,8491,8489,1,0,0,0,8492,8493,5,36,0,0,8493,8494,5,2,0,0,8494,8495, - 3,1098,549,0,8495,8496,5,3,0,0,8496,8499,1,0,0,0,8497,8499,1,0,0, - 0,8498,8492,1,0,0,0,8498,8497,1,0,0,0,8499,1089,1,0,0,0,8500,8501, - 5,105,0,0,8501,8504,5,473,0,0,8502,8504,1,0,0,0,8503,8500,1,0,0, - 0,8503,8502,1,0,0,0,8504,1091,1,0,0,0,8505,8506,5,103,0,0,8506,8509, - 3,1160,580,0,8507,8509,1,0,0,0,8508,8505,1,0,0,0,8508,8507,1,0,0, - 0,8509,1093,1,0,0,0,8510,8515,5,103,0,0,8511,8512,5,434,0,0,8512, - 8513,5,268,0,0,8513,8516,3,952,476,0,8514,8516,3,1160,580,0,8515, - 8511,1,0,0,0,8515,8514,1,0,0,0,8516,8519,1,0,0,0,8517,8519,1,0,0, - 0,8518,8510,1,0,0,0,8518,8517,1,0,0,0,8519,1095,1,0,0,0,8520,8523, - 3,1098,549,0,8521,8523,1,0,0,0,8522,8520,1,0,0,0,8522,8521,1,0,0, - 0,8523,1097,1,0,0,0,8524,8529,3,1100,550,0,8525,8526,5,6,0,0,8526, - 8528,3,1100,550,0,8527,8525,1,0,0,0,8528,8531,1,0,0,0,8529,8527, - 1,0,0,0,8529,8530,1,0,0,0,8530,1099,1,0,0,0,8531,8529,1,0,0,0,8532, - 8533,3,1370,685,0,8533,8534,3,1116,558,0,8534,8535,3,108,54,0,8535, - 1101,1,0,0,0,8536,8537,5,474,0,0,8537,8553,5,2,0,0,8538,8539,3,1204, - 602,0,8539,8540,3,1230,615,0,8540,8541,5,475,0,0,8541,8542,3,1104, - 552,0,8542,8554,1,0,0,0,8543,8544,5,476,0,0,8544,8545,5,2,0,0,8545, - 8546,3,1112,556,0,8546,8547,5,3,0,0,8547,8548,5,6,0,0,8548,8549, - 3,1204,602,0,8549,8550,3,1230,615,0,8550,8551,5,475,0,0,8551,8552, - 3,1104,552,0,8552,8554,1,0,0,0,8553,8538,1,0,0,0,8553,8543,1,0,0, - 0,8554,8555,1,0,0,0,8555,8556,5,3,0,0,8556,1103,1,0,0,0,8557,8562, - 3,1106,553,0,8558,8559,5,6,0,0,8559,8561,3,1106,553,0,8560,8558, - 1,0,0,0,8561,8564,1,0,0,0,8562,8560,1,0,0,0,8562,8563,1,0,0,0,8563, - 1105,1,0,0,0,8564,8562,1,0,0,0,8565,8572,3,1370,685,0,8566,8568, - 3,1116,558,0,8567,8569,3,1108,554,0,8568,8567,1,0,0,0,8568,8569, - 1,0,0,0,8569,8573,1,0,0,0,8570,8571,5,62,0,0,8571,8573,5,473,0,0, - 8572,8566,1,0,0,0,8572,8570,1,0,0,0,8573,1107,1,0,0,0,8574,8576, - 3,1110,555,0,8575,8574,1,0,0,0,8576,8577,1,0,0,0,8577,8575,1,0,0, - 0,8577,8578,1,0,0,0,8578,1109,1,0,0,0,8579,8580,5,53,0,0,8580,8588, - 3,1160,580,0,8581,8582,3,1380,690,0,8582,8583,3,1160,580,0,8583, - 8588,1,0,0,0,8584,8585,5,77,0,0,8585,8588,5,78,0,0,8586,8588,5,78, - 0,0,8587,8579,1,0,0,0,8587,8581,1,0,0,0,8587,8584,1,0,0,0,8587,8586, - 1,0,0,0,8588,1111,1,0,0,0,8589,8594,3,1114,557,0,8590,8591,5,6,0, - 0,8591,8593,3,1114,557,0,8592,8590,1,0,0,0,8593,8596,1,0,0,0,8594, - 8592,1,0,0,0,8594,8595,1,0,0,0,8595,1113,1,0,0,0,8596,8594,1,0,0, - 0,8597,8598,3,1202,601,0,8598,8599,5,36,0,0,8599,8600,3,1378,689, - 0,8600,8604,1,0,0,0,8601,8602,5,53,0,0,8602,8604,3,1202,601,0,8603, - 8597,1,0,0,0,8603,8601,1,0,0,0,8604,1115,1,0,0,0,8605,8607,5,408, - 0,0,8606,8605,1,0,0,0,8606,8607,1,0,0,0,8607,8608,1,0,0,0,8608,8617, - 3,1120,560,0,8609,8618,3,1118,559,0,8610,8615,5,35,0,0,8611,8612, - 5,4,0,0,8612,8613,3,1354,677,0,8613,8614,5,5,0,0,8614,8616,1,0,0, - 0,8615,8611,1,0,0,0,8615,8616,1,0,0,0,8616,8618,1,0,0,0,8617,8609, - 1,0,0,0,8617,8610,1,0,0,0,8618,8624,1,0,0,0,8619,8620,3,1334,667, - 0,8620,8621,5,27,0,0,8621,8622,7,42,0,0,8622,8624,1,0,0,0,8623,8606, - 1,0,0,0,8623,8619,1,0,0,0,8624,1117,1,0,0,0,8625,8627,5,4,0,0,8626, - 8628,3,1354,677,0,8627,8626,1,0,0,0,8627,8628,1,0,0,0,8628,8629, - 1,0,0,0,8629,8631,5,5,0,0,8630,8625,1,0,0,0,8631,8634,1,0,0,0,8632, - 8630,1,0,0,0,8632,8633,1,0,0,0,8633,1119,1,0,0,0,8634,8632,1,0,0, - 0,8635,8649,3,1124,562,0,8636,8649,3,1128,564,0,8637,8649,3,1132, - 566,0,8638,8649,3,1140,570,0,8639,8649,3,1148,574,0,8640,8646,3, - 1150,575,0,8641,8647,3,1154,577,0,8642,8643,5,2,0,0,8643,8644,3, - 1354,677,0,8644,8645,5,3,0,0,8645,8647,1,0,0,0,8646,8641,1,0,0,0, - 8646,8642,1,0,0,0,8647,8649,1,0,0,0,8648,8635,1,0,0,0,8648,8636, - 1,0,0,0,8648,8637,1,0,0,0,8648,8638,1,0,0,0,8648,8639,1,0,0,0,8648, - 8640,1,0,0,0,8649,1121,1,0,0,0,8650,8655,3,1128,564,0,8651,8655, - 3,1134,567,0,8652,8655,3,1142,571,0,8653,8655,3,1148,574,0,8654, - 8650,1,0,0,0,8654,8651,1,0,0,0,8654,8652,1,0,0,0,8654,8653,1,0,0, - 0,8655,1123,1,0,0,0,8656,8661,3,1392,696,0,8657,8661,3,1374,687, - 0,8658,8661,5,119,0,0,8659,8661,5,126,0,0,8660,8656,1,0,0,0,8660, - 8657,1,0,0,0,8660,8658,1,0,0,0,8660,8659,1,0,0,0,8661,8663,1,0,0, - 0,8662,8664,3,524,262,0,8663,8662,1,0,0,0,8663,8664,1,0,0,0,8664, - 8665,1,0,0,0,8665,8666,3,1126,563,0,8666,1125,1,0,0,0,8667,8668, - 5,2,0,0,8668,8669,3,1278,639,0,8669,8670,5,3,0,0,8670,8673,1,0,0, - 0,8671,8673,1,0,0,0,8672,8667,1,0,0,0,8672,8671,1,0,0,0,8673,1127, - 1,0,0,0,8674,8691,5,394,0,0,8675,8691,5,395,0,0,8676,8691,5,409, - 0,0,8677,8691,5,381,0,0,8678,8691,5,406,0,0,8679,8680,5,391,0,0, - 8680,8691,3,1130,565,0,8681,8682,5,190,0,0,8682,8691,5,405,0,0,8683, - 8684,5,388,0,0,8684,8691,3,1126,563,0,8685,8686,5,387,0,0,8686,8691, - 3,1126,563,0,8687,8688,5,402,0,0,8688,8691,3,1126,563,0,8689,8691, - 5,383,0,0,8690,8674,1,0,0,0,8690,8675,1,0,0,0,8690,8676,1,0,0,0, - 8690,8677,1,0,0,0,8690,8678,1,0,0,0,8690,8679,1,0,0,0,8690,8681, - 1,0,0,0,8690,8683,1,0,0,0,8690,8685,1,0,0,0,8690,8687,1,0,0,0,8690, - 8689,1,0,0,0,8691,1129,1,0,0,0,8692,8693,5,2,0,0,8693,8694,3,1354, - 677,0,8694,8695,5,3,0,0,8695,8698,1,0,0,0,8696,8698,1,0,0,0,8697, - 8692,1,0,0,0,8697,8696,1,0,0,0,8698,1131,1,0,0,0,8699,8702,3,1136, - 568,0,8700,8702,3,1138,569,0,8701,8699,1,0,0,0,8701,8700,1,0,0,0, - 8702,1133,1,0,0,0,8703,8706,3,1136,568,0,8704,8706,3,1138,569,0, - 8705,8703,1,0,0,0,8705,8704,1,0,0,0,8706,1135,1,0,0,0,8707,8708, - 5,382,0,0,8708,8709,3,1146,573,0,8709,8710,5,2,0,0,8710,8711,3,1278, - 639,0,8711,8712,5,3,0,0,8712,1137,1,0,0,0,8713,8714,5,382,0,0,8714, - 8715,3,1146,573,0,8715,1139,1,0,0,0,8716,8721,3,1144,572,0,8717, - 8718,5,2,0,0,8718,8719,3,1354,677,0,8719,8720,5,3,0,0,8720,8722, - 1,0,0,0,8721,8717,1,0,0,0,8721,8722,1,0,0,0,8722,1141,1,0,0,0,8723, - 8728,3,1144,572,0,8724,8725,5,2,0,0,8725,8726,3,1354,677,0,8726, - 8727,5,3,0,0,8727,8729,1,0,0,0,8728,8724,1,0,0,0,8728,8729,1,0,0, - 0,8729,1143,1,0,0,0,8730,8731,7,43,0,0,8731,8737,3,1146,573,0,8732, - 8737,5,416,0,0,8733,8734,5,398,0,0,8734,8735,7,44,0,0,8735,8737, - 3,1146,573,0,8736,8730,1,0,0,0,8736,8732,1,0,0,0,8736,8733,1,0,0, - 0,8737,1145,1,0,0,0,8738,8741,5,367,0,0,8739,8741,1,0,0,0,8740,8738, - 1,0,0,0,8740,8739,1,0,0,0,8741,1147,1,0,0,0,8742,8747,7,45,0,0,8743, - 8744,5,2,0,0,8744,8745,3,1354,677,0,8745,8746,5,3,0,0,8746,8748, - 1,0,0,0,8747,8743,1,0,0,0,8747,8748,1,0,0,0,8748,8749,1,0,0,0,8749, - 8750,3,1152,576,0,8750,1149,1,0,0,0,8751,8752,5,396,0,0,8752,1151, - 1,0,0,0,8753,8754,5,105,0,0,8754,8755,5,411,0,0,8755,8761,5,379, - 0,0,8756,8757,5,372,0,0,8757,8758,5,411,0,0,8758,8761,5,379,0,0, - 8759,8761,1,0,0,0,8760,8753,1,0,0,0,8760,8756,1,0,0,0,8760,8759, - 1,0,0,0,8761,1153,1,0,0,0,8762,8789,5,377,0,0,8763,8789,5,257,0, - 0,8764,8789,5,176,0,0,8765,8789,5,218,0,0,8766,8789,5,254,0,0,8767, - 8789,3,1156,578,0,8768,8769,5,377,0,0,8769,8770,5,94,0,0,8770,8789, - 5,257,0,0,8771,8772,5,176,0,0,8772,8776,5,94,0,0,8773,8777,5,218, - 0,0,8774,8777,5,254,0,0,8775,8777,3,1156,578,0,8776,8773,1,0,0,0, - 8776,8774,1,0,0,0,8776,8775,1,0,0,0,8777,8789,1,0,0,0,8778,8779, - 5,218,0,0,8779,8782,5,94,0,0,8780,8783,5,254,0,0,8781,8783,3,1156, - 578,0,8782,8780,1,0,0,0,8782,8781,1,0,0,0,8783,8789,1,0,0,0,8784, - 8785,5,254,0,0,8785,8786,5,94,0,0,8786,8789,3,1156,578,0,8787,8789, - 1,0,0,0,8788,8762,1,0,0,0,8788,8763,1,0,0,0,8788,8764,1,0,0,0,8788, - 8765,1,0,0,0,8788,8766,1,0,0,0,8788,8767,1,0,0,0,8788,8768,1,0,0, - 0,8788,8771,1,0,0,0,8788,8778,1,0,0,0,8788,8784,1,0,0,0,8788,8787, - 1,0,0,0,8789,1155,1,0,0,0,8790,8795,5,319,0,0,8791,8792,5,2,0,0, - 8792,8793,3,1354,677,0,8793,8794,5,3,0,0,8794,8796,1,0,0,0,8795, - 8791,1,0,0,0,8795,8796,1,0,0,0,8796,1157,1,0,0,0,8797,8798,5,197, - 0,0,8798,8801,3,1160,580,0,8799,8801,1,0,0,0,8800,8797,1,0,0,0,8800, - 8799,1,0,0,0,8801,1159,1,0,0,0,8802,8803,3,1162,581,0,8803,1161, - 1,0,0,0,8804,8806,3,1164,582,0,8805,8807,3,1272,636,0,8806,8805, - 1,0,0,0,8806,8807,1,0,0,0,8807,1163,1,0,0,0,8808,8813,3,1166,583, - 0,8809,8810,7,46,0,0,8810,8812,3,1166,583,0,8811,8809,1,0,0,0,8812, - 8815,1,0,0,0,8813,8811,1,0,0,0,8813,8814,1,0,0,0,8814,1165,1,0,0, - 0,8815,8813,1,0,0,0,8816,8821,3,1168,584,0,8817,8818,5,82,0,0,8818, - 8820,3,1168,584,0,8819,8817,1,0,0,0,8820,8823,1,0,0,0,8821,8819, - 1,0,0,0,8821,8822,1,0,0,0,8822,1167,1,0,0,0,8823,8821,1,0,0,0,8824, - 8829,3,1170,585,0,8825,8826,5,33,0,0,8826,8828,3,1170,585,0,8827, - 8825,1,0,0,0,8828,8831,1,0,0,0,8829,8827,1,0,0,0,8829,8830,1,0,0, - 0,8830,1169,1,0,0,0,8831,8829,1,0,0,0,8832,8844,3,1172,586,0,8833, - 8835,5,77,0,0,8834,8833,1,0,0,0,8834,8835,1,0,0,0,8835,8836,1,0, - 0,0,8836,8838,5,380,0,0,8837,8839,5,91,0,0,8838,8837,1,0,0,0,8838, - 8839,1,0,0,0,8839,8840,1,0,0,0,8840,8841,3,1172,586,0,8841,8842, - 5,33,0,0,8842,8843,3,1172,586,0,8843,8845,1,0,0,0,8844,8834,1,0, - 0,0,8844,8845,1,0,0,0,8845,1171,1,0,0,0,8846,8852,3,1174,587,0,8847, - 8849,5,77,0,0,8848,8847,1,0,0,0,8848,8849,1,0,0,0,8849,8850,1,0, - 0,0,8850,8851,5,68,0,0,8851,8853,3,1304,652,0,8852,8848,1,0,0,0, - 8852,8853,1,0,0,0,8853,1173,1,0,0,0,8854,8856,5,77,0,0,8855,8854, - 1,0,0,0,8855,8856,1,0,0,0,8856,8857,1,0,0,0,8857,8858,3,1176,588, - 0,8858,1175,1,0,0,0,8859,8861,3,1178,589,0,8860,8862,7,47,0,0,8861, - 8860,1,0,0,0,8861,8862,1,0,0,0,8862,1177,1,0,0,0,8863,8887,3,1180, - 590,0,8864,8866,5,116,0,0,8865,8867,5,77,0,0,8866,8865,1,0,0,0,8866, - 8867,1,0,0,0,8867,8885,1,0,0,0,8868,8886,5,78,0,0,8869,8886,5,96, - 0,0,8870,8886,5,60,0,0,8871,8886,5,358,0,0,8872,8873,5,56,0,0,8873, - 8874,5,64,0,0,8874,8886,3,1160,580,0,8875,8876,5,268,0,0,8876,8877, - 5,2,0,0,8877,8878,3,1284,642,0,8878,8879,5,3,0,0,8879,8886,1,0,0, - 0,8880,8886,5,188,0,0,8881,8883,3,1294,647,0,8882,8881,1,0,0,0,8882, - 8883,1,0,0,0,8883,8884,1,0,0,0,8884,8886,5,478,0,0,8885,8868,1,0, - 0,0,8885,8869,1,0,0,0,8885,8870,1,0,0,0,8885,8871,1,0,0,0,8885,8872, - 1,0,0,0,8885,8875,1,0,0,0,8885,8880,1,0,0,0,8885,8882,1,0,0,0,8886, - 8888,1,0,0,0,8887,8864,1,0,0,0,8887,8888,1,0,0,0,8888,1179,1,0,0, - 0,8889,8901,3,1182,591,0,8890,8891,7,48,0,0,8891,8902,3,1182,591, - 0,8892,8893,3,1276,638,0,8893,8899,3,1266,633,0,8894,8900,3,960, - 480,0,8895,8896,5,2,0,0,8896,8897,3,1160,580,0,8897,8898,5,3,0,0, - 8898,8900,1,0,0,0,8899,8894,1,0,0,0,8899,8895,1,0,0,0,8900,8902, - 1,0,0,0,8901,8890,1,0,0,0,8901,8892,1,0,0,0,8901,8902,1,0,0,0,8902, - 1181,1,0,0,0,8903,8916,3,1184,592,0,8904,8906,5,77,0,0,8905,8904, - 1,0,0,0,8905,8906,1,0,0,0,8906,8911,1,0,0,0,8907,8912,5,120,0,0, - 8908,8912,5,114,0,0,8909,8910,5,127,0,0,8910,8912,5,94,0,0,8911, - 8907,1,0,0,0,8911,8908,1,0,0,0,8911,8909,1,0,0,0,8912,8913,1,0,0, - 0,8913,8914,3,1184,592,0,8914,8915,3,1158,579,0,8915,8917,1,0,0, - 0,8916,8905,1,0,0,0,8916,8917,1,0,0,0,8917,1183,1,0,0,0,8918,8924, - 3,1186,593,0,8919,8920,3,1272,636,0,8920,8921,3,1186,593,0,8921, - 8923,1,0,0,0,8922,8919,1,0,0,0,8923,8926,1,0,0,0,8924,8922,1,0,0, - 0,8924,8925,1,0,0,0,8925,1185,1,0,0,0,8926,8924,1,0,0,0,8927,8929, - 3,1272,636,0,8928,8927,1,0,0,0,8928,8929,1,0,0,0,8929,8930,1,0,0, - 0,8930,8931,3,1188,594,0,8931,1187,1,0,0,0,8932,8937,3,1190,595, - 0,8933,8934,7,49,0,0,8934,8936,3,1190,595,0,8935,8933,1,0,0,0,8936, - 8939,1,0,0,0,8937,8935,1,0,0,0,8937,8938,1,0,0,0,8938,1189,1,0,0, - 0,8939,8937,1,0,0,0,8940,8945,3,1192,596,0,8941,8942,7,50,0,0,8942, - 8944,3,1192,596,0,8943,8941,1,0,0,0,8944,8947,1,0,0,0,8945,8943, - 1,0,0,0,8945,8946,1,0,0,0,8946,1191,1,0,0,0,8947,8945,1,0,0,0,8948, - 8951,3,1194,597,0,8949,8950,5,15,0,0,8950,8952,3,1160,580,0,8951, - 8949,1,0,0,0,8951,8952,1,0,0,0,8952,1193,1,0,0,0,8953,8955,7,49, - 0,0,8954,8953,1,0,0,0,8954,8955,1,0,0,0,8955,8956,1,0,0,0,8956,8957, - 3,1196,598,0,8957,1195,1,0,0,0,8958,8963,3,1198,599,0,8959,8960, - 5,142,0,0,8960,8961,5,411,0,0,8961,8962,5,379,0,0,8962,8964,3,1160, - 580,0,8963,8959,1,0,0,0,8963,8964,1,0,0,0,8964,1197,1,0,0,0,8965, - 8968,3,1200,600,0,8966,8967,5,43,0,0,8967,8969,3,522,261,0,8968, - 8966,1,0,0,0,8968,8969,1,0,0,0,8969,1199,1,0,0,0,8970,8975,3,1204, - 602,0,8971,8972,5,26,0,0,8972,8974,3,1116,558,0,8973,8971,1,0,0, - 0,8974,8977,1,0,0,0,8975,8973,1,0,0,0,8975,8976,1,0,0,0,8976,1201, - 1,0,0,0,8977,8975,1,0,0,0,8978,8979,6,601,-1,0,8979,8986,3,1204, - 602,0,8980,8981,7,49,0,0,8981,8986,3,1202,601,9,8982,8983,3,1272, - 636,0,8983,8984,3,1202,601,3,8984,8986,1,0,0,0,8985,8978,1,0,0,0, - 8985,8980,1,0,0,0,8985,8982,1,0,0,0,8986,9026,1,0,0,0,8987,8988, - 10,8,0,0,8988,8989,5,15,0,0,8989,9025,3,1202,601,9,8990,8991,10, - 7,0,0,8991,8992,7,50,0,0,8992,9025,3,1202,601,8,8993,8994,10,6,0, - 0,8994,8995,7,49,0,0,8995,9025,3,1202,601,7,8996,8997,10,5,0,0,8997, - 8998,3,1272,636,0,8998,8999,3,1202,601,6,8999,9025,1,0,0,0,9000, - 9001,10,4,0,0,9001,9002,7,48,0,0,9002,9025,3,1202,601,5,9003,9004, - 10,10,0,0,9004,9005,5,26,0,0,9005,9025,3,1116,558,0,9006,9007,10, - 2,0,0,9007,9025,3,1272,636,0,9008,9009,10,1,0,0,9009,9011,5,116, - 0,0,9010,9012,5,77,0,0,9011,9010,1,0,0,0,9011,9012,1,0,0,0,9012, - 9022,1,0,0,0,9013,9014,5,56,0,0,9014,9015,5,64,0,0,9015,9023,3,1202, - 601,0,9016,9017,5,268,0,0,9017,9018,5,2,0,0,9018,9019,3,1284,642, - 0,9019,9020,5,3,0,0,9020,9023,1,0,0,0,9021,9023,5,188,0,0,9022,9013, - 1,0,0,0,9022,9016,1,0,0,0,9022,9021,1,0,0,0,9023,9025,1,0,0,0,9024, - 8987,1,0,0,0,9024,8990,1,0,0,0,9024,8993,1,0,0,0,9024,8996,1,0,0, - 0,9024,9000,1,0,0,0,9024,9003,1,0,0,0,9024,9006,1,0,0,0,9024,9008, - 1,0,0,0,9025,9028,1,0,0,0,9026,9024,1,0,0,0,9026,9027,1,0,0,0,9027, - 1203,1,0,0,0,9028,9026,1,0,0,0,9029,9030,5,389,0,0,9030,9066,3,960, - 480,0,9031,9034,5,35,0,0,9032,9035,3,960,480,0,9033,9035,3,1286, - 643,0,9034,9032,1,0,0,0,9034,9033,1,0,0,0,9035,9066,1,0,0,0,9036, - 9037,5,28,0,0,9037,9066,3,1324,662,0,9038,9039,5,470,0,0,9039,9040, - 5,2,0,0,9040,9041,3,1278,639,0,9041,9042,5,3,0,0,9042,9066,1,0,0, - 0,9043,9044,5,98,0,0,9044,9066,3,960,480,0,9045,9066,3,1316,658, - 0,9046,9066,3,1346,673,0,9047,9066,3,1206,603,0,9048,9049,5,2,0, - 0,9049,9050,3,1160,580,0,9050,9051,5,3,0,0,9051,9052,3,1324,662, - 0,9052,9066,1,0,0,0,9053,9066,3,1306,653,0,9054,9066,3,1210,605, - 0,9055,9057,3,960,480,0,9056,9058,3,1322,661,0,9057,9056,1,0,0,0, - 9057,9058,1,0,0,0,9058,9066,1,0,0,0,9059,9066,3,1262,631,0,9060, - 9066,3,1264,632,0,9061,9062,3,1260,630,0,9062,9063,5,125,0,0,9063, - 9064,3,1260,630,0,9064,9066,1,0,0,0,9065,9029,1,0,0,0,9065,9031, - 1,0,0,0,9065,9036,1,0,0,0,9065,9038,1,0,0,0,9065,9043,1,0,0,0,9065, - 9045,1,0,0,0,9065,9046,1,0,0,0,9065,9047,1,0,0,0,9065,9048,1,0,0, - 0,9065,9053,1,0,0,0,9065,9054,1,0,0,0,9065,9055,1,0,0,0,9065,9059, - 1,0,0,0,9065,9060,1,0,0,0,9065,9061,1,0,0,0,9066,1205,1,0,0,0,9067, - 9068,5,661,0,0,9068,1207,1,0,0,0,9069,9070,3,1344,672,0,9070,9089, - 5,2,0,0,9071,9075,3,1280,640,0,9072,9073,5,6,0,0,9073,9074,5,101, - 0,0,9074,9076,3,1282,641,0,9075,9072,1,0,0,0,9075,9076,1,0,0,0,9076, - 9077,1,0,0,0,9077,9078,3,994,497,0,9078,9090,1,0,0,0,9079,9080,5, - 101,0,0,9080,9081,3,1282,641,0,9081,9082,3,994,497,0,9082,9090,1, - 0,0,0,9083,9084,7,51,0,0,9084,9085,3,1280,640,0,9085,9086,3,994, - 497,0,9086,9090,1,0,0,0,9087,9090,5,9,0,0,9088,9090,1,0,0,0,9089, - 9071,1,0,0,0,9089,9079,1,0,0,0,9089,9083,1,0,0,0,9089,9087,1,0,0, - 0,9089,9088,1,0,0,0,9090,9091,1,0,0,0,9091,9092,5,3,0,0,9092,1209, - 1,0,0,0,9093,9094,3,1208,604,0,9094,9095,3,1234,617,0,9095,9096, - 3,1236,618,0,9096,9097,3,1244,622,0,9097,9100,1,0,0,0,9098,9100, - 3,1214,607,0,9099,9093,1,0,0,0,9099,9098,1,0,0,0,9100,1211,1,0,0, - 0,9101,9104,3,1208,604,0,9102,9104,3,1214,607,0,9103,9101,1,0,0, - 0,9103,9102,1,0,0,0,9104,1213,1,0,0,0,9105,9106,5,108,0,0,9106,9107, - 5,62,0,0,9107,9108,5,2,0,0,9108,9109,3,1160,580,0,9109,9110,5,3, - 0,0,9110,9283,1,0,0,0,9111,9283,5,48,0,0,9112,9117,5,50,0,0,9113, - 9114,5,2,0,0,9114,9115,3,1354,677,0,9115,9116,5,3,0,0,9116,9118, - 1,0,0,0,9117,9113,1,0,0,0,9117,9118,1,0,0,0,9118,9283,1,0,0,0,9119, - 9124,5,51,0,0,9120,9121,5,2,0,0,9121,9122,3,1354,677,0,9122,9123, - 5,3,0,0,9123,9125,1,0,0,0,9124,9120,1,0,0,0,9124,9125,1,0,0,0,9125, - 9283,1,0,0,0,9126,9131,5,75,0,0,9127,9128,5,2,0,0,9128,9129,3,1354, - 677,0,9129,9130,5,3,0,0,9130,9132,1,0,0,0,9131,9127,1,0,0,0,9131, - 9132,1,0,0,0,9132,9283,1,0,0,0,9133,9138,5,76,0,0,9134,9135,5,2, - 0,0,9135,9136,3,1354,677,0,9136,9137,5,3,0,0,9137,9139,1,0,0,0,9138, - 9134,1,0,0,0,9138,9139,1,0,0,0,9139,9283,1,0,0,0,9140,9283,5,49, - 0,0,9141,9283,5,52,0,0,9142,9283,5,89,0,0,9143,9283,5,99,0,0,9144, - 9283,5,47,0,0,9145,9283,5,111,0,0,9146,9147,5,41,0,0,9147,9148,5, - 2,0,0,9148,9149,3,1160,580,0,9149,9150,5,36,0,0,9150,9151,3,1116, - 558,0,9151,9152,5,3,0,0,9152,9283,1,0,0,0,9153,9154,5,390,0,0,9154, - 9155,5,2,0,0,9155,9156,3,1290,645,0,9156,9157,5,3,0,0,9157,9283, - 1,0,0,0,9158,9159,5,489,0,0,9159,9160,5,2,0,0,9160,9163,3,1160,580, - 0,9161,9162,5,6,0,0,9162,9164,3,1294,647,0,9163,9161,1,0,0,0,9163, - 9164,1,0,0,0,9164,9165,1,0,0,0,9165,9166,5,3,0,0,9166,9283,1,0,0, - 0,9167,9168,5,403,0,0,9168,9169,5,2,0,0,9169,9170,3,1296,648,0,9170, - 9171,5,3,0,0,9171,9283,1,0,0,0,9172,9173,5,404,0,0,9173,9174,5,2, - 0,0,9174,9175,3,1298,649,0,9175,9176,5,3,0,0,9176,9283,1,0,0,0,9177, - 9178,5,410,0,0,9178,9179,5,2,0,0,9179,9180,3,1300,650,0,9180,9181, - 5,3,0,0,9181,9283,1,0,0,0,9182,9183,5,413,0,0,9183,9184,5,2,0,0, - 9184,9185,3,1160,580,0,9185,9186,5,36,0,0,9186,9187,3,1116,558,0, - 9187,9188,5,3,0,0,9188,9283,1,0,0,0,9189,9190,5,414,0,0,9190,9192, - 5,2,0,0,9191,9193,7,52,0,0,9192,9191,1,0,0,0,9192,9193,1,0,0,0,9193, - 9194,1,0,0,0,9194,9195,3,1302,651,0,9195,9196,5,3,0,0,9196,9283, - 1,0,0,0,9197,9198,5,401,0,0,9198,9199,5,2,0,0,9199,9200,3,1160,580, - 0,9200,9201,5,6,0,0,9201,9202,3,1160,580,0,9202,9203,5,3,0,0,9203, - 9283,1,0,0,0,9204,9205,5,386,0,0,9205,9206,5,2,0,0,9206,9207,3,1278, - 639,0,9207,9208,5,3,0,0,9208,9283,1,0,0,0,9209,9210,5,392,0,0,9210, - 9211,5,2,0,0,9211,9212,3,1278,639,0,9212,9213,5,3,0,0,9213,9283, - 1,0,0,0,9214,9215,5,397,0,0,9215,9216,5,2,0,0,9216,9217,3,1278,639, - 0,9217,9218,5,3,0,0,9218,9283,1,0,0,0,9219,9220,5,425,0,0,9220,9221, - 5,2,0,0,9221,9222,3,1278,639,0,9222,9223,5,3,0,0,9223,9283,1,0,0, - 0,9224,9225,5,426,0,0,9225,9226,5,2,0,0,9226,9227,5,259,0,0,9227, - 9233,3,1378,689,0,9228,9231,5,6,0,0,9229,9232,3,1220,610,0,9230, - 9232,3,1278,639,0,9231,9229,1,0,0,0,9231,9230,1,0,0,0,9232,9234, - 1,0,0,0,9233,9228,1,0,0,0,9233,9234,1,0,0,0,9234,9235,1,0,0,0,9235, - 9236,5,3,0,0,9236,9283,1,0,0,0,9237,9238,5,427,0,0,9238,9239,5,2, - 0,0,9239,9240,3,1204,602,0,9240,9241,3,1230,615,0,9241,9242,5,3, - 0,0,9242,9283,1,0,0,0,9243,9244,5,428,0,0,9244,9245,5,2,0,0,9245, - 9246,3,1222,611,0,9246,9247,5,3,0,0,9247,9283,1,0,0,0,9248,9249, - 5,429,0,0,9249,9250,5,2,0,0,9250,9251,3,1226,613,0,9251,9252,3,1160, - 580,0,9252,9253,3,1228,614,0,9253,9254,5,3,0,0,9254,9283,1,0,0,0, - 9255,9256,5,430,0,0,9256,9257,5,2,0,0,9257,9258,5,259,0,0,9258,9261, - 3,1378,689,0,9259,9260,5,6,0,0,9260,9262,3,1160,580,0,9261,9259, - 1,0,0,0,9261,9262,1,0,0,0,9262,9263,1,0,0,0,9263,9264,5,3,0,0,9264, - 9283,1,0,0,0,9265,9266,5,431,0,0,9266,9267,5,2,0,0,9267,9268,5,376, - 0,0,9268,9269,3,1160,580,0,9269,9270,5,6,0,0,9270,9271,3,1216,608, - 0,9271,9272,3,1218,609,0,9272,9273,5,3,0,0,9273,9283,1,0,0,0,9274, - 9275,5,432,0,0,9275,9276,5,2,0,0,9276,9277,3,1226,613,0,9277,9278, - 3,1160,580,0,9278,9279,5,36,0,0,9279,9280,3,1120,560,0,9280,9281, - 5,3,0,0,9281,9283,1,0,0,0,9282,9105,1,0,0,0,9282,9111,1,0,0,0,9282, - 9112,1,0,0,0,9282,9119,1,0,0,0,9282,9126,1,0,0,0,9282,9133,1,0,0, - 0,9282,9140,1,0,0,0,9282,9141,1,0,0,0,9282,9142,1,0,0,0,9282,9143, - 1,0,0,0,9282,9144,1,0,0,0,9282,9145,1,0,0,0,9282,9146,1,0,0,0,9282, - 9153,1,0,0,0,9282,9158,1,0,0,0,9282,9167,1,0,0,0,9282,9172,1,0,0, - 0,9282,9177,1,0,0,0,9282,9182,1,0,0,0,9282,9189,1,0,0,0,9282,9197, - 1,0,0,0,9282,9204,1,0,0,0,9282,9209,1,0,0,0,9282,9214,1,0,0,0,9282, - 9219,1,0,0,0,9282,9224,1,0,0,0,9282,9237,1,0,0,0,9282,9243,1,0,0, - 0,9282,9248,1,0,0,0,9282,9255,1,0,0,0,9282,9265,1,0,0,0,9282,9274, - 1,0,0,0,9283,1215,1,0,0,0,9284,9285,5,368,0,0,9285,9290,3,1160,580, - 0,9286,9287,5,368,0,0,9287,9288,5,262,0,0,9288,9290,5,450,0,0,9289, - 9284,1,0,0,0,9289,9286,1,0,0,0,9290,1217,1,0,0,0,9291,9292,5,6,0, - 0,9292,9293,5,332,0,0,9293,9303,5,378,0,0,9294,9295,5,6,0,0,9295, - 9296,5,332,0,0,9296,9303,5,262,0,0,9297,9298,5,6,0,0,9298,9299,5, - 332,0,0,9299,9300,5,262,0,0,9300,9303,5,450,0,0,9301,9303,1,0,0, - 0,9302,9291,1,0,0,0,9302,9294,1,0,0,0,9302,9297,1,0,0,0,9302,9301, - 1,0,0,0,9303,1219,1,0,0,0,9304,9305,5,417,0,0,9305,9306,5,2,0,0, - 9306,9307,3,1222,611,0,9307,9308,5,3,0,0,9308,1221,1,0,0,0,9309, - 9314,3,1224,612,0,9310,9311,5,6,0,0,9311,9313,3,1224,612,0,9312, - 9310,1,0,0,0,9313,9316,1,0,0,0,9314,9312,1,0,0,0,9314,9315,1,0,0, - 0,9315,1223,1,0,0,0,9316,9314,1,0,0,0,9317,9320,3,1160,580,0,9318, - 9319,5,36,0,0,9319,9321,3,1378,689,0,9320,9318,1,0,0,0,9320,9321, - 1,0,0,0,9321,1225,1,0,0,0,9322,9323,7,53,0,0,9323,1227,1,0,0,0,9324, - 9325,5,285,0,0,9325,9330,5,371,0,0,9326,9327,5,340,0,0,9327,9330, - 5,371,0,0,9328,9330,1,0,0,0,9329,9324,1,0,0,0,9329,9326,1,0,0,0, - 9329,9328,1,0,0,0,9330,1229,1,0,0,0,9331,9332,5,279,0,0,9332,9347, - 3,1204,602,0,9333,9334,5,279,0,0,9334,9335,3,1204,602,0,9335,9336, - 3,1232,616,0,9336,9347,1,0,0,0,9337,9338,5,279,0,0,9338,9339,3,1232, - 616,0,9339,9340,3,1204,602,0,9340,9347,1,0,0,0,9341,9342,5,279,0, - 0,9342,9343,3,1232,616,0,9343,9344,3,1204,602,0,9344,9345,3,1232, - 616,0,9345,9347,1,0,0,0,9346,9331,1,0,0,0,9346,9333,1,0,0,0,9346, - 9337,1,0,0,0,9346,9341,1,0,0,0,9347,1231,1,0,0,0,9348,9349,5,147, - 0,0,9349,9350,7,54,0,0,9350,1233,1,0,0,0,9351,9352,5,479,0,0,9352, - 9353,5,66,0,0,9353,9354,5,2,0,0,9354,9355,3,996,498,0,9355,9356, - 5,3,0,0,9356,9359,1,0,0,0,9357,9359,1,0,0,0,9358,9351,1,0,0,0,9358, - 9357,1,0,0,0,9359,1235,1,0,0,0,9360,9361,5,480,0,0,9361,9362,5,2, - 0,0,9362,9363,5,103,0,0,9363,9364,3,1160,580,0,9364,9365,5,3,0,0, - 9365,9368,1,0,0,0,9366,9368,1,0,0,0,9367,9360,1,0,0,0,9367,9366, - 1,0,0,0,9368,1237,1,0,0,0,9369,9370,5,104,0,0,9370,9373,3,1240,620, - 0,9371,9373,1,0,0,0,9372,9369,1,0,0,0,9372,9371,1,0,0,0,9373,1239, - 1,0,0,0,9374,9379,3,1242,621,0,9375,9376,5,6,0,0,9376,9378,3,1242, - 621,0,9377,9375,1,0,0,0,9378,9381,1,0,0,0,9379,9377,1,0,0,0,9379, - 9380,1,0,0,0,9380,1241,1,0,0,0,9381,9379,1,0,0,0,9382,9383,3,1370, - 685,0,9383,9384,5,36,0,0,9384,9385,3,1246,623,0,9385,1243,1,0,0, - 0,9386,9389,5,124,0,0,9387,9390,3,1246,623,0,9388,9390,3,1370,685, - 0,9389,9387,1,0,0,0,9389,9388,1,0,0,0,9390,9393,1,0,0,0,9391,9393, - 1,0,0,0,9392,9386,1,0,0,0,9392,9391,1,0,0,0,9393,1245,1,0,0,0,9394, - 9395,5,2,0,0,9395,9396,3,1248,624,0,9396,9397,3,1250,625,0,9397, - 9398,3,994,497,0,9398,9399,3,1252,626,0,9399,9400,5,3,0,0,9400,1247, - 1,0,0,0,9401,9404,3,1370,685,0,9402,9404,1,0,0,0,9403,9401,1,0,0, - 0,9403,9402,1,0,0,0,9404,1249,1,0,0,0,9405,9406,5,278,0,0,9406,9407, - 5,147,0,0,9407,9410,3,1278,639,0,9408,9410,1,0,0,0,9409,9405,1,0, - 0,0,9409,9408,1,0,0,0,9410,1251,1,0,0,0,9411,9412,5,292,0,0,9412, - 9413,3,1254,627,0,9413,9414,3,1258,629,0,9414,9425,1,0,0,0,9415, - 9416,5,313,0,0,9416,9417,3,1254,627,0,9417,9418,3,1258,629,0,9418, - 9425,1,0,0,0,9419,9420,5,481,0,0,9420,9421,3,1254,627,0,9421,9422, - 3,1258,629,0,9422,9425,1,0,0,0,9423,9425,1,0,0,0,9424,9411,1,0,0, - 0,9424,9415,1,0,0,0,9424,9419,1,0,0,0,9424,9423,1,0,0,0,9425,1253, - 1,0,0,0,9426,9433,3,1256,628,0,9427,9428,5,380,0,0,9428,9429,3,1256, - 628,0,9429,9430,5,33,0,0,9430,9431,3,1256,628,0,9431,9433,1,0,0, - 0,9432,9426,1,0,0,0,9432,9427,1,0,0,0,9433,1255,1,0,0,0,9434,9435, - 5,355,0,0,9435,9442,7,55,0,0,9436,9437,5,434,0,0,9437,9442,5,407, - 0,0,9438,9439,3,1160,580,0,9439,9440,7,55,0,0,9440,9442,1,0,0,0, - 9441,9434,1,0,0,0,9441,9436,1,0,0,0,9441,9438,1,0,0,0,9442,1257, - 1,0,0,0,9443,9450,5,199,0,0,9444,9445,5,434,0,0,9445,9451,5,407, - 0,0,9446,9451,5,66,0,0,9447,9451,5,467,0,0,9448,9449,5,262,0,0,9449, - 9451,5,482,0,0,9450,9444,1,0,0,0,9450,9446,1,0,0,0,9450,9447,1,0, - 0,0,9450,9448,1,0,0,0,9451,9454,1,0,0,0,9452,9454,1,0,0,0,9453,9443, - 1,0,0,0,9453,9452,1,0,0,0,9454,1259,1,0,0,0,9455,9456,5,407,0,0, - 9456,9458,5,2,0,0,9457,9459,3,1278,639,0,9458,9457,1,0,0,0,9458, - 9459,1,0,0,0,9459,9460,1,0,0,0,9460,9468,5,3,0,0,9461,9462,5,2,0, - 0,9462,9463,3,1278,639,0,9463,9464,5,6,0,0,9464,9465,3,1160,580, - 0,9465,9466,5,3,0,0,9466,9468,1,0,0,0,9467,9455,1,0,0,0,9467,9461, - 1,0,0,0,9468,1261,1,0,0,0,9469,9470,5,407,0,0,9470,9472,5,2,0,0, - 9471,9473,3,1278,639,0,9472,9471,1,0,0,0,9472,9473,1,0,0,0,9473, - 9474,1,0,0,0,9474,9475,5,3,0,0,9475,1263,1,0,0,0,9476,9477,5,2,0, - 0,9477,9478,3,1278,639,0,9478,9479,5,6,0,0,9479,9480,3,1160,580, - 0,9480,9481,5,3,0,0,9481,1265,1,0,0,0,9482,9483,7,56,0,0,9483,1267, - 1,0,0,0,9484,9487,5,29,0,0,9485,9487,3,1270,635,0,9486,9484,1,0, - 0,0,9486,9485,1,0,0,0,9487,1269,1,0,0,0,9488,9489,7,57,0,0,9489, - 1271,1,0,0,0,9490,9497,5,29,0,0,9491,9492,5,271,0,0,9492,9493,5, - 2,0,0,9493,9494,3,682,341,0,9494,9495,5,3,0,0,9495,9497,1,0,0,0, - 9496,9490,1,0,0,0,9496,9491,1,0,0,0,9497,1273,1,0,0,0,9498,9505, - 3,1268,634,0,9499,9500,5,271,0,0,9500,9501,5,2,0,0,9501,9502,3,682, - 341,0,9502,9503,5,3,0,0,9503,9505,1,0,0,0,9504,9498,1,0,0,0,9504, - 9499,1,0,0,0,9505,1275,1,0,0,0,9506,9519,3,1268,634,0,9507,9508, - 5,271,0,0,9508,9509,5,2,0,0,9509,9510,3,682,341,0,9510,9511,5,3, - 0,0,9511,9519,1,0,0,0,9512,9519,5,120,0,0,9513,9514,5,77,0,0,9514, - 9519,5,120,0,0,9515,9519,5,114,0,0,9516,9517,5,77,0,0,9517,9519, - 5,114,0,0,9518,9506,1,0,0,0,9518,9507,1,0,0,0,9518,9512,1,0,0,0, - 9518,9513,1,0,0,0,9518,9515,1,0,0,0,9518,9516,1,0,0,0,9519,1277, - 1,0,0,0,9520,9525,3,1160,580,0,9521,9522,5,6,0,0,9522,9524,3,1160, - 580,0,9523,9521,1,0,0,0,9524,9527,1,0,0,0,9525,9523,1,0,0,0,9525, - 9526,1,0,0,0,9526,1279,1,0,0,0,9527,9525,1,0,0,0,9528,9533,3,1282, - 641,0,9529,9530,5,6,0,0,9530,9532,3,1282,641,0,9531,9529,1,0,0,0, - 9532,9535,1,0,0,0,9533,9531,1,0,0,0,9533,9534,1,0,0,0,9534,1281, - 1,0,0,0,9535,9533,1,0,0,0,9536,9542,3,1160,580,0,9537,9538,3,634, - 317,0,9538,9539,7,58,0,0,9539,9540,3,1160,580,0,9540,9542,1,0,0, - 0,9541,9536,1,0,0,0,9541,9537,1,0,0,0,9542,1283,1,0,0,0,9543,9548, - 3,1116,558,0,9544,9545,5,6,0,0,9545,9547,3,1116,558,0,9546,9544, - 1,0,0,0,9547,9550,1,0,0,0,9548,9546,1,0,0,0,9548,9549,1,0,0,0,9549, - 1285,1,0,0,0,9550,9548,1,0,0,0,9551,9554,5,4,0,0,9552,9555,3,1278, - 639,0,9553,9555,3,1288,644,0,9554,9552,1,0,0,0,9554,9553,1,0,0,0, - 9554,9555,1,0,0,0,9555,9556,1,0,0,0,9556,9557,5,5,0,0,9557,1287, - 1,0,0,0,9558,9563,3,1286,643,0,9559,9560,5,6,0,0,9560,9562,3,1286, - 643,0,9561,9559,1,0,0,0,9562,9565,1,0,0,0,9563,9561,1,0,0,0,9563, - 9564,1,0,0,0,9564,1289,1,0,0,0,9565,9563,1,0,0,0,9566,9567,3,1292, - 646,0,9567,9568,5,64,0,0,9568,9569,3,1160,580,0,9569,9572,1,0,0, - 0,9570,9572,1,0,0,0,9571,9566,1,0,0,0,9571,9570,1,0,0,0,9572,1291, - 1,0,0,0,9573,9582,3,1380,690,0,9574,9582,5,377,0,0,9575,9582,5,257, - 0,0,9576,9582,5,176,0,0,9577,9582,5,218,0,0,9578,9582,5,254,0,0, - 9579,9582,5,319,0,0,9580,9582,3,1356,678,0,9581,9573,1,0,0,0,9581, - 9574,1,0,0,0,9581,9575,1,0,0,0,9581,9576,1,0,0,0,9581,9577,1,0,0, - 0,9581,9578,1,0,0,0,9581,9579,1,0,0,0,9581,9580,1,0,0,0,9582,1293, - 1,0,0,0,9583,9584,7,59,0,0,9584,1295,1,0,0,0,9585,9586,3,1160,580, - 0,9586,9587,5,84,0,0,9587,9588,3,1160,580,0,9588,9589,5,64,0,0,9589, - 9592,3,1160,580,0,9590,9591,5,62,0,0,9591,9593,3,1160,580,0,9592, - 9590,1,0,0,0,9592,9593,1,0,0,0,9593,1297,1,0,0,0,9594,9595,3,1202, - 601,0,9595,9596,5,68,0,0,9596,9597,3,1202,601,0,9597,9600,1,0,0, - 0,9598,9600,1,0,0,0,9599,9594,1,0,0,0,9599,9598,1,0,0,0,9600,1299, - 1,0,0,0,9601,9602,3,1160,580,0,9602,9603,5,64,0,0,9603,9604,3,1160, - 580,0,9604,9605,5,62,0,0,9605,9606,3,1160,580,0,9606,9629,1,0,0, - 0,9607,9608,3,1160,580,0,9608,9609,5,62,0,0,9609,9610,3,1160,580, - 0,9610,9611,5,64,0,0,9611,9612,3,1160,580,0,9612,9629,1,0,0,0,9613, - 9614,3,1160,580,0,9614,9615,5,64,0,0,9615,9616,3,1160,580,0,9616, - 9629,1,0,0,0,9617,9618,3,1160,580,0,9618,9619,5,62,0,0,9619,9620, - 3,1160,580,0,9620,9629,1,0,0,0,9621,9622,3,1160,580,0,9622,9623, - 5,127,0,0,9623,9624,3,1160,580,0,9624,9625,5,197,0,0,9625,9626,3, - 1160,580,0,9626,9629,1,0,0,0,9627,9629,3,1278,639,0,9628,9601,1, - 0,0,0,9628,9607,1,0,0,0,9628,9613,1,0,0,0,9628,9617,1,0,0,0,9628, - 9621,1,0,0,0,9628,9627,1,0,0,0,9629,1301,1,0,0,0,9630,9631,3,1160, - 580,0,9631,9632,5,64,0,0,9632,9633,3,1278,639,0,9633,9638,1,0,0, - 0,9634,9635,5,64,0,0,9635,9638,3,1278,639,0,9636,9638,3,1278,639, - 0,9637,9630,1,0,0,0,9637,9634,1,0,0,0,9637,9636,1,0,0,0,9638,1303, - 1,0,0,0,9639,9645,3,960,480,0,9640,9641,5,2,0,0,9641,9642,3,1278, - 639,0,9642,9643,5,3,0,0,9643,9645,1,0,0,0,9644,9639,1,0,0,0,9644, - 9640,1,0,0,0,9645,1305,1,0,0,0,9646,9647,5,40,0,0,9647,9648,3,1314, - 657,0,9648,9649,3,1308,654,0,9649,9650,3,1312,656,0,9650,9651,5, - 454,0,0,9651,1307,1,0,0,0,9652,9654,3,1310,655,0,9653,9652,1,0,0, - 0,9654,9655,1,0,0,0,9655,9653,1,0,0,0,9655,9656,1,0,0,0,9656,1309, - 1,0,0,0,9657,9658,5,102,0,0,9658,9659,3,1160,580,0,9659,9660,5,93, - 0,0,9660,9661,3,1160,580,0,9661,1311,1,0,0,0,9662,9663,5,58,0,0, - 9663,9666,3,1160,580,0,9664,9666,1,0,0,0,9665,9662,1,0,0,0,9665, - 9664,1,0,0,0,9666,1313,1,0,0,0,9667,9670,3,1160,580,0,9668,9670, - 1,0,0,0,9669,9667,1,0,0,0,9669,9668,1,0,0,0,9670,1315,1,0,0,0,9671, - 9673,3,1370,685,0,9672,9674,3,1322,661,0,9673,9672,1,0,0,0,9673, - 9674,1,0,0,0,9674,1317,1,0,0,0,9675,9678,5,11,0,0,9676,9679,3,1340, - 670,0,9677,9679,5,9,0,0,9678,9676,1,0,0,0,9678,9677,1,0,0,0,9679, - 9691,1,0,0,0,9680,9686,5,4,0,0,9681,9687,3,1160,580,0,9682,9683, - 3,1320,660,0,9683,9684,5,8,0,0,9684,9685,3,1320,660,0,9685,9687, - 1,0,0,0,9686,9681,1,0,0,0,9686,9682,1,0,0,0,9687,9688,1,0,0,0,9688, - 9689,5,5,0,0,9689,9691,1,0,0,0,9690,9675,1,0,0,0,9690,9680,1,0,0, - 0,9691,1319,1,0,0,0,9692,9695,3,1160,580,0,9693,9695,1,0,0,0,9694, - 9692,1,0,0,0,9694,9693,1,0,0,0,9695,1321,1,0,0,0,9696,9698,3,1318, - 659,0,9697,9696,1,0,0,0,9698,9699,1,0,0,0,9699,9697,1,0,0,0,9699, - 9700,1,0,0,0,9700,1323,1,0,0,0,9701,9703,3,1318,659,0,9702,9701, - 1,0,0,0,9703,9706,1,0,0,0,9704,9702,1,0,0,0,9704,9705,1,0,0,0,9705, - 1325,1,0,0,0,9706,9704,1,0,0,0,9707,9710,3,1328,664,0,9708,9710, - 1,0,0,0,9709,9707,1,0,0,0,9709,9708,1,0,0,0,9710,1327,1,0,0,0,9711, - 9716,3,1330,665,0,9712,9713,5,6,0,0,9713,9715,3,1330,665,0,9714, - 9712,1,0,0,0,9715,9718,1,0,0,0,9716,9714,1,0,0,0,9716,9717,1,0,0, - 0,9717,1329,1,0,0,0,9718,9716,1,0,0,0,9719,9728,5,9,0,0,9720,9725, - 3,1160,580,0,9721,9722,5,36,0,0,9722,9726,3,1378,689,0,9723,9726, - 3,1380,690,0,9724,9726,1,0,0,0,9725,9721,1,0,0,0,9725,9723,1,0,0, - 0,9725,9724,1,0,0,0,9726,9728,1,0,0,0,9727,9719,1,0,0,0,9727,9720, - 1,0,0,0,9728,1331,1,0,0,0,9729,9734,3,1334,667,0,9730,9731,5,6,0, - 0,9731,9733,3,1334,667,0,9732,9730,1,0,0,0,9733,9736,1,0,0,0,9734, - 9732,1,0,0,0,9734,9735,1,0,0,0,9735,1333,1,0,0,0,9736,9734,1,0,0, - 0,9737,9739,3,1370,685,0,9738,9740,3,1322,661,0,9739,9738,1,0,0, - 0,9739,9740,1,0,0,0,9740,1335,1,0,0,0,9741,9746,3,1338,669,0,9742, - 9743,5,6,0,0,9743,9745,3,1338,669,0,9744,9742,1,0,0,0,9745,9748, - 1,0,0,0,9746,9744,1,0,0,0,9746,9747,1,0,0,0,9747,1337,1,0,0,0,9748, - 9746,1,0,0,0,9749,9750,3,1370,685,0,9750,1339,1,0,0,0,9751,9752, - 3,1378,689,0,9752,1341,1,0,0,0,9753,9754,3,1356,678,0,9754,1343, - 1,0,0,0,9755,9763,3,1392,696,0,9756,9763,3,1374,687,0,9757,9758, - 3,1370,685,0,9758,9759,3,1322,661,0,9759,9763,1,0,0,0,9760,9763, - 5,119,0,0,9761,9763,5,126,0,0,9762,9755,1,0,0,0,9762,9756,1,0,0, - 0,9762,9757,1,0,0,0,9762,9760,1,0,0,0,9762,9761,1,0,0,0,9763,1345, - 1,0,0,0,9764,9797,3,1354,677,0,9765,9797,3,1352,676,0,9766,9797, - 3,1356,678,0,9767,9797,3,1350,675,0,9768,9797,3,1348,674,0,9769, - 9777,3,1344,672,0,9770,9778,3,1356,678,0,9771,9772,5,2,0,0,9772, - 9773,3,1280,640,0,9773,9774,3,994,497,0,9774,9775,5,3,0,0,9775,9776, - 3,1356,678,0,9776,9778,1,0,0,0,9777,9770,1,0,0,0,9777,9771,1,0,0, - 0,9778,9797,1,0,0,0,9779,9780,3,1122,561,0,9780,9781,3,1356,678, - 0,9781,9797,1,0,0,0,9782,9791,3,1150,575,0,9783,9784,3,1356,678, - 0,9784,9785,3,1154,577,0,9785,9792,1,0,0,0,9786,9787,5,2,0,0,9787, - 9788,3,1354,677,0,9788,9789,5,3,0,0,9789,9790,3,1356,678,0,9790, - 9792,1,0,0,0,9791,9783,1,0,0,0,9791,9786,1,0,0,0,9792,9797,1,0,0, - 0,9793,9797,5,96,0,0,9794,9797,5,60,0,0,9795,9797,5,78,0,0,9796, - 9764,1,0,0,0,9796,9765,1,0,0,0,9796,9766,1,0,0,0,9796,9767,1,0,0, - 0,9796,9768,1,0,0,0,9796,9769,1,0,0,0,9796,9779,1,0,0,0,9796,9782, - 1,0,0,0,9796,9793,1,0,0,0,9796,9794,1,0,0,0,9796,9795,1,0,0,0,9797, - 1347,1,0,0,0,9798,9799,5,654,0,0,9799,1349,1,0,0,0,9800,9801,5,650, - 0,0,9801,1351,1,0,0,0,9802,9803,5,660,0,0,9803,1353,1,0,0,0,9804, - 9805,5,658,0,0,9805,1355,1,0,0,0,9806,9807,3,1358,679,0,9807,9808, - 3,1360,680,0,9808,1357,1,0,0,0,9809,9821,5,645,0,0,9810,9821,5,647, - 0,0,9811,9815,5,649,0,0,9812,9814,5,677,0,0,9813,9812,1,0,0,0,9814, - 9817,1,0,0,0,9815,9813,1,0,0,0,9815,9816,1,0,0,0,9816,9818,1,0,0, - 0,9817,9815,1,0,0,0,9818,9821,5,678,0,0,9819,9821,5,671,0,0,9820, - 9809,1,0,0,0,9820,9810,1,0,0,0,9820,9811,1,0,0,0,9820,9819,1,0,0, - 0,9821,1359,1,0,0,0,9822,9823,5,487,0,0,9823,9826,3,1358,679,0,9824, - 9826,1,0,0,0,9825,9822,1,0,0,0,9825,9824,1,0,0,0,9826,1361,1,0,0, - 0,9827,9833,3,1354,677,0,9828,9829,5,12,0,0,9829,9833,3,1354,677, - 0,9830,9831,5,13,0,0,9831,9833,3,1354,677,0,9832,9827,1,0,0,0,9832, - 9828,1,0,0,0,9832,9830,1,0,0,0,9833,1363,1,0,0,0,9834,9835,3,1366, - 683,0,9835,1365,1,0,0,0,9836,9840,3,1376,688,0,9837,9840,5,52,0, - 0,9838,9840,5,89,0,0,9839,9836,1,0,0,0,9839,9837,1,0,0,0,9839,9838, - 1,0,0,0,9840,1367,1,0,0,0,9841,9846,3,1366,683,0,9842,9843,5,6,0, - 0,9843,9845,3,1366,683,0,9844,9842,1,0,0,0,9845,9848,1,0,0,0,9846, - 9844,1,0,0,0,9846,9847,1,0,0,0,9847,1369,1,0,0,0,9848,9846,1,0,0, - 0,9849,9856,3,1380,690,0,9850,9856,3,1384,692,0,9851,9856,3,1386, - 693,0,9852,9856,3,1606,803,0,9853,9856,5,119,0,0,9854,9856,5,126, - 0,0,9855,9849,1,0,0,0,9855,9850,1,0,0,0,9855,9851,1,0,0,0,9855,9852, - 1,0,0,0,9855,9853,1,0,0,0,9855,9854,1,0,0,0,9856,1371,1,0,0,0,9857, - 9862,3,1380,690,0,9858,9862,3,1384,692,0,9859,9862,3,1386,693,0, - 9860,9862,3,1606,803,0,9861,9857,1,0,0,0,9861,9858,1,0,0,0,9861, - 9859,1,0,0,0,9861,9860,1,0,0,0,9862,1373,1,0,0,0,9863,9868,3,1380, - 690,0,9864,9868,3,1384,692,0,9865,9868,3,1606,803,0,9866,9868,3, - 1388,694,0,9867,9863,1,0,0,0,9867,9864,1,0,0,0,9867,9865,1,0,0,0, - 9867,9866,1,0,0,0,9868,1375,1,0,0,0,9869,9874,3,1380,690,0,9870, - 9874,3,1384,692,0,9871,9874,3,1386,693,0,9872,9874,3,1388,694,0, - 9873,9869,1,0,0,0,9873,9870,1,0,0,0,9873,9871,1,0,0,0,9873,9872, - 1,0,0,0,9874,1377,1,0,0,0,9875,9882,3,1380,690,0,9876,9882,3,1606, - 803,0,9877,9882,3,1384,692,0,9878,9882,3,1386,693,0,9879,9882,3, - 1388,694,0,9880,9882,3,1390,695,0,9881,9875,1,0,0,0,9881,9876,1, - 0,0,0,9881,9877,1,0,0,0,9881,9878,1,0,0,0,9881,9879,1,0,0,0,9881, - 9880,1,0,0,0,9882,1379,1,0,0,0,9883,9884,5,636,0,0,9884,9891,3,1360, - 680,0,9885,9891,5,637,0,0,9886,9891,5,641,0,0,9887,9891,3,1206,603, - 0,9888,9891,3,1382,691,0,9889,9891,3,1606,803,0,9890,9883,1,0,0, - 0,9890,9885,1,0,0,0,9890,9886,1,0,0,0,9890,9887,1,0,0,0,9890,9888, - 1,0,0,0,9890,9889,1,0,0,0,9891,1381,1,0,0,0,9892,9893,5,662,0,0, - 9893,1383,1,0,0,0,9894,9895,7,60,0,0,9895,1385,1,0,0,0,9896,9949, - 5,380,0,0,9897,9949,5,381,0,0,9898,9949,3,1132,566,0,9899,9949,5, - 383,0,0,9900,9949,5,384,0,0,9901,9949,3,1140,570,0,9902,9949,5,386, - 0,0,9903,9949,5,387,0,0,9904,9949,5,388,0,0,9905,9949,5,389,0,0, - 9906,9949,5,390,0,0,9907,9949,5,391,0,0,9908,9949,5,392,0,0,9909, - 9949,5,470,0,0,9910,9949,5,393,0,0,9911,9949,5,394,0,0,9912,9949, - 5,395,0,0,9913,9949,5,396,0,0,9914,9949,5,397,0,0,9915,9949,5,398, - 0,0,9916,9949,5,399,0,0,9917,9949,5,400,0,0,9918,9949,5,489,0,0, - 9919,9949,5,401,0,0,9920,9949,3,1128,564,0,9921,9949,5,453,0,0,9922, - 9949,5,403,0,0,9923,9949,5,404,0,0,9924,9949,5,405,0,0,9925,9949, - 5,406,0,0,9926,9949,5,407,0,0,9927,9949,5,408,0,0,9928,9949,5,409, - 0,0,9929,9949,5,410,0,0,9930,9949,5,411,0,0,9931,9949,5,412,0,0, - 9932,9949,5,413,0,0,9933,9949,5,414,0,0,9934,9949,5,415,0,0,9935, - 9949,5,416,0,0,9936,9949,5,417,0,0,9937,9949,5,425,0,0,9938,9949, - 5,426,0,0,9939,9949,5,427,0,0,9940,9949,5,428,0,0,9941,9949,5,476, - 0,0,9942,9949,5,429,0,0,9943,9949,5,430,0,0,9944,9949,5,431,0,0, - 9945,9949,5,432,0,0,9946,9949,5,474,0,0,9947,9949,3,1392,696,0,9948, - 9896,1,0,0,0,9948,9897,1,0,0,0,9948,9898,1,0,0,0,9948,9899,1,0,0, - 0,9948,9900,1,0,0,0,9948,9901,1,0,0,0,9948,9902,1,0,0,0,9948,9903, - 1,0,0,0,9948,9904,1,0,0,0,9948,9905,1,0,0,0,9948,9906,1,0,0,0,9948, - 9907,1,0,0,0,9948,9908,1,0,0,0,9948,9909,1,0,0,0,9948,9910,1,0,0, - 0,9948,9911,1,0,0,0,9948,9912,1,0,0,0,9948,9913,1,0,0,0,9948,9914, - 1,0,0,0,9948,9915,1,0,0,0,9948,9916,1,0,0,0,9948,9917,1,0,0,0,9948, - 9918,1,0,0,0,9948,9919,1,0,0,0,9948,9920,1,0,0,0,9948,9921,1,0,0, - 0,9948,9922,1,0,0,0,9948,9923,1,0,0,0,9948,9924,1,0,0,0,9948,9925, - 1,0,0,0,9948,9926,1,0,0,0,9948,9927,1,0,0,0,9948,9928,1,0,0,0,9948, - 9929,1,0,0,0,9948,9930,1,0,0,0,9948,9931,1,0,0,0,9948,9932,1,0,0, - 0,9948,9933,1,0,0,0,9948,9934,1,0,0,0,9948,9935,1,0,0,0,9948,9936, - 1,0,0,0,9948,9937,1,0,0,0,9948,9938,1,0,0,0,9948,9939,1,0,0,0,9948, - 9940,1,0,0,0,9948,9941,1,0,0,0,9948,9942,1,0,0,0,9948,9943,1,0,0, - 0,9948,9944,1,0,0,0,9948,9945,1,0,0,0,9948,9946,1,0,0,0,9948,9947, - 1,0,0,0,9949,1387,1,0,0,0,9950,9951,7,61,0,0,9951,1389,1,0,0,0,9952, - 9953,7,62,0,0,9953,1391,1,0,0,0,9954,9955,7,63,0,0,9955,1393,1,0, - 0,0,9956,9957,3,1396,698,0,9957,9958,3,1406,703,0,9958,9959,3,1404, - 702,0,9959,1395,1,0,0,0,9960,9962,3,1398,699,0,9961,9960,1,0,0,0, - 9962,9965,1,0,0,0,9963,9961,1,0,0,0,9963,9964,1,0,0,0,9964,1397, - 1,0,0,0,9965,9963,1,0,0,0,9966,9967,3,1400,700,0,9967,9968,5,272, - 0,0,9968,9969,5,490,0,0,9969,9987,1,0,0,0,9970,9971,3,1400,700,0, - 9971,9972,5,491,0,0,9972,9973,3,1402,701,0,9973,9987,1,0,0,0,9974, - 9975,3,1400,700,0,9975,9976,5,492,0,0,9976,9977,5,493,0,0,9977,9987, - 1,0,0,0,9978,9979,3,1400,700,0,9979,9980,5,492,0,0,9980,9981,5,494, - 0,0,9981,9987,1,0,0,0,9982,9983,3,1400,700,0,9983,9984,5,492,0,0, - 9984,9985,5,495,0,0,9985,9987,1,0,0,0,9986,9966,1,0,0,0,9986,9970, - 1,0,0,0,9986,9974,1,0,0,0,9986,9978,1,0,0,0,9986,9982,1,0,0,0,9987, - 1399,1,0,0,0,9988,9989,5,29,0,0,9989,1401,1,0,0,0,9990,9995,3,1356, - 678,0,9991,9995,3,1390,695,0,9992,9995,3,1606,803,0,9993,9995,3, - 1384,692,0,9994,9990,1,0,0,0,9994,9991,1,0,0,0,9994,9992,1,0,0,0, - 9994,9993,1,0,0,0,9995,1403,1,0,0,0,9996,9999,1,0,0,0,9997,9999, - 5,7,0,0,9998,9996,1,0,0,0,9998,9997,1,0,0,0,9999,1405,1,0,0,0,10000, - 10001,3,1408,704,0,10001,10002,5,146,0,0,10002,10003,3,1450,725, - 0,10003,10004,3,1586,793,0,10004,10005,5,454,0,0,10005,10006,3,1600, - 800,0,10006,1407,1,0,0,0,10007,10012,3,1596,798,0,10008,10010,3, - 1410,705,0,10009,10011,3,1412,706,0,10010,10009,1,0,0,0,10010,10011, - 1,0,0,0,10011,10013,1,0,0,0,10012,10008,1,0,0,0,10012,10013,1,0, - 0,0,10013,1409,1,0,0,0,10014,10015,5,178,0,0,10015,1411,1,0,0,0, - 10016,10018,3,1416,708,0,10017,10016,1,0,0,0,10018,10019,1,0,0,0, - 10019,10017,1,0,0,0,10019,10020,1,0,0,0,10020,1413,1,0,0,0,10021, - 10022,5,18,0,0,10022,10023,3,1604,802,0,10023,10024,5,19,0,0,10024, - 1415,1,0,0,0,10025,10029,3,1418,709,0,10026,10029,5,178,0,0,10027, - 10029,3,1414,707,0,10028,10025,1,0,0,0,10028,10026,1,0,0,0,10028, - 10027,1,0,0,0,10029,1417,1,0,0,0,10030,10046,3,1434,717,0,10031, - 10032,5,496,0,0,10032,10033,5,62,0,0,10033,10047,3,1432,716,0,10034, - 10035,3,1436,718,0,10035,10036,3,1438,719,0,10036,10037,3,1440,720, - 0,10037,10038,3,1442,721,0,10038,10039,3,1444,722,0,10039,10047, - 1,0,0,0,10040,10041,3,1420,710,0,10041,10042,5,172,0,0,10042,10043, - 3,1424,712,0,10043,10044,3,1430,715,0,10044,10045,3,1422,711,0,10045, - 10047,1,0,0,0,10046,10031,1,0,0,0,10046,10034,1,0,0,0,10046,10040, - 1,0,0,0,10047,10048,1,0,0,0,10048,10049,5,7,0,0,10049,1419,1,0,0, - 0,10050,10055,1,0,0,0,10051,10052,5,262,0,0,10052,10055,5,317,0, - 0,10053,10055,5,317,0,0,10054,10050,1,0,0,0,10054,10051,1,0,0,0, - 10054,10053,1,0,0,0,10055,1421,1,0,0,0,10056,10057,3,958,479,0,10057, - 1423,1,0,0,0,10058,10064,1,0,0,0,10059,10060,5,2,0,0,10060,10061, - 3,1426,713,0,10061,10062,5,3,0,0,10062,10064,1,0,0,0,10063,10058, - 1,0,0,0,10063,10059,1,0,0,0,10064,1425,1,0,0,0,10065,10070,3,1428, - 714,0,10066,10067,5,6,0,0,10067,10069,3,1428,714,0,10068,10066,1, - 0,0,0,10069,10072,1,0,0,0,10070,10068,1,0,0,0,10070,10071,1,0,0, - 0,10071,1427,1,0,0,0,10072,10070,1,0,0,0,10073,10074,3,1434,717, - 0,10074,10075,3,1438,719,0,10075,1429,1,0,0,0,10076,10077,7,64,0, - 0,10077,1431,1,0,0,0,10078,10081,5,28,0,0,10079,10081,3,1370,685, - 0,10080,10078,1,0,0,0,10080,10079,1,0,0,0,10081,1433,1,0,0,0,10082, - 10083,3,1604,802,0,10083,1435,1,0,0,0,10084,10087,1,0,0,0,10085, - 10087,5,497,0,0,10086,10084,1,0,0,0,10086,10085,1,0,0,0,10087,1437, - 1,0,0,0,10088,10089,3,1116,558,0,10089,1439,1,0,0,0,10090,10094, - 1,0,0,0,10091,10092,5,43,0,0,10092,10094,3,522,261,0,10093,10090, - 1,0,0,0,10093,10091,1,0,0,0,10094,1441,1,0,0,0,10095,10099,1,0,0, - 0,10096,10097,5,77,0,0,10097,10099,5,78,0,0,10098,10095,1,0,0,0, - 10098,10096,1,0,0,0,10099,1443,1,0,0,0,10100,10105,1,0,0,0,10101, - 10102,3,1446,723,0,10102,10103,3,1608,804,0,10103,10105,1,0,0,0, - 10104,10100,1,0,0,0,10104,10101,1,0,0,0,10105,1445,1,0,0,0,10106, - 10109,3,1448,724,0,10107,10109,5,53,0,0,10108,10106,1,0,0,0,10108, - 10107,1,0,0,0,10109,1447,1,0,0,0,10110,10111,7,65,0,0,10111,1449, - 1,0,0,0,10112,10114,3,1452,726,0,10113,10112,1,0,0,0,10114,10117, - 1,0,0,0,10115,10113,1,0,0,0,10115,10116,1,0,0,0,10116,1451,1,0,0, - 0,10117,10115,1,0,0,0,10118,10119,3,1406,703,0,10119,10120,5,7,0, - 0,10120,10146,1,0,0,0,10121,10146,3,1518,759,0,10122,10146,3,1522, - 761,0,10123,10146,3,1460,730,0,10124,10146,3,1476,738,0,10125,10146, - 3,1482,741,0,10126,10146,3,1492,746,0,10127,10146,3,1494,747,0,10128, - 10146,3,1496,748,0,10129,10146,3,1510,755,0,10130,10146,3,1514,757, - 0,10131,10146,3,1534,767,0,10132,10146,3,1540,770,0,10133,10146, - 3,1542,771,0,10134,10146,3,1454,727,0,10135,10146,3,1456,728,0,10136, - 10146,3,1462,731,0,10137,10146,3,1550,775,0,10138,10146,3,1562,781, - 0,10139,10146,3,1570,785,0,10140,10146,3,1572,786,0,10141,10146, - 3,1574,787,0,10142,10146,3,1576,788,0,10143,10146,3,1578,789,0,10144, - 10146,3,1582,791,0,10145,10118,1,0,0,0,10145,10121,1,0,0,0,10145, - 10122,1,0,0,0,10145,10123,1,0,0,0,10145,10124,1,0,0,0,10145,10125, - 1,0,0,0,10145,10126,1,0,0,0,10145,10127,1,0,0,0,10145,10128,1,0, - 0,0,10145,10129,1,0,0,0,10145,10130,1,0,0,0,10145,10131,1,0,0,0, - 10145,10132,1,0,0,0,10145,10133,1,0,0,0,10145,10134,1,0,0,0,10145, - 10135,1,0,0,0,10145,10136,1,0,0,0,10145,10137,1,0,0,0,10145,10138, - 1,0,0,0,10145,10139,1,0,0,0,10145,10140,1,0,0,0,10145,10141,1,0, - 0,0,10145,10142,1,0,0,0,10145,10143,1,0,0,0,10145,10144,1,0,0,0, - 10146,1453,1,0,0,0,10147,10148,5,498,0,0,10148,10149,3,1612,806, - 0,10149,10150,5,7,0,0,10150,1455,1,0,0,0,10151,10152,5,433,0,0,10152, - 10153,3,1604,802,0,10153,10154,5,2,0,0,10154,10155,3,1458,729,0, - 10155,10156,5,3,0,0,10156,10157,5,7,0,0,10157,10166,1,0,0,0,10158, - 10159,5,57,0,0,10159,10160,3,1604,802,0,10160,10161,5,2,0,0,10161, - 10162,3,1458,729,0,10162,10163,5,3,0,0,10163,10164,5,7,0,0,10164, - 10166,1,0,0,0,10165,10151,1,0,0,0,10165,10158,1,0,0,0,10166,1457, - 1,0,0,0,10167,10170,1,0,0,0,10168,10170,3,1278,639,0,10169,10167, - 1,0,0,0,10169,10168,1,0,0,0,10170,1459,1,0,0,0,10171,10172,3,1474, - 737,0,10172,10173,3,1448,724,0,10173,10174,3,1608,804,0,10174,10175, - 5,7,0,0,10175,1461,1,0,0,0,10176,10177,5,499,0,0,10177,10178,3,1464, - 732,0,10178,10179,5,500,0,0,10179,10180,3,1466,733,0,10180,10181, - 5,7,0,0,10181,1463,1,0,0,0,10182,10186,1,0,0,0,10183,10186,5,434, - 0,0,10184,10186,5,501,0,0,10185,10182,1,0,0,0,10185,10183,1,0,0, - 0,10185,10184,1,0,0,0,10186,1465,1,0,0,0,10187,10192,3,1468,734, - 0,10188,10189,5,6,0,0,10189,10191,3,1468,734,0,10190,10188,1,0,0, - 0,10191,10194,1,0,0,0,10192,10190,1,0,0,0,10192,10193,1,0,0,0,10193, - 1467,1,0,0,0,10194,10192,1,0,0,0,10195,10196,3,1472,736,0,10196, - 10197,3,1448,724,0,10197,10198,3,1470,735,0,10198,1469,1,0,0,0,10199, - 10200,3,1370,685,0,10200,1471,1,0,0,0,10201,10202,3,1474,737,0,10202, - 1473,1,0,0,0,10203,10206,3,522,261,0,10204,10206,5,28,0,0,10205, - 10203,1,0,0,0,10205,10204,1,0,0,0,10206,10213,1,0,0,0,10207,10208, - 5,4,0,0,10208,10209,3,1614,807,0,10209,10210,5,5,0,0,10210,10212, - 1,0,0,0,10211,10207,1,0,0,0,10212,10215,1,0,0,0,10213,10211,1,0, - 0,0,10213,10214,1,0,0,0,10214,1475,1,0,0,0,10215,10213,1,0,0,0,10216, - 10217,5,220,0,0,10217,10218,3,1610,805,0,10218,10219,5,93,0,0,10219, - 10220,3,1450,725,0,10220,10221,3,1478,739,0,10221,10222,3,1480,740, - 0,10222,10223,5,454,0,0,10223,10224,5,220,0,0,10224,10225,5,7,0, - 0,10225,1477,1,0,0,0,10226,10227,5,502,0,0,10227,10228,3,1160,580, - 0,10228,10229,5,93,0,0,10229,10230,3,1450,725,0,10230,10232,1,0, - 0,0,10231,10226,1,0,0,0,10232,10235,1,0,0,0,10233,10231,1,0,0,0, - 10233,10234,1,0,0,0,10234,1479,1,0,0,0,10235,10233,1,0,0,0,10236, - 10240,1,0,0,0,10237,10238,5,58,0,0,10238,10240,3,1450,725,0,10239, - 10236,1,0,0,0,10239,10237,1,0,0,0,10240,1481,1,0,0,0,10241,10242, - 5,40,0,0,10242,10243,3,1484,742,0,10243,10244,3,1486,743,0,10244, - 10245,3,1490,745,0,10245,10246,5,454,0,0,10246,10247,5,40,0,0,10247, - 10248,5,7,0,0,10248,1483,1,0,0,0,10249,10252,1,0,0,0,10250,10252, - 3,1608,804,0,10251,10249,1,0,0,0,10251,10250,1,0,0,0,10252,1485, - 1,0,0,0,10253,10255,3,1488,744,0,10254,10253,1,0,0,0,10255,10256, - 1,0,0,0,10256,10254,1,0,0,0,10256,10257,1,0,0,0,10257,1487,1,0,0, - 0,10258,10259,5,102,0,0,10259,10260,3,1278,639,0,10260,10261,5,93, - 0,0,10261,10262,3,1450,725,0,10262,1489,1,0,0,0,10263,10267,1,0, - 0,0,10264,10265,5,58,0,0,10265,10267,3,1450,725,0,10266,10263,1, - 0,0,0,10266,10264,1,0,0,0,10267,1491,1,0,0,0,10268,10269,3,1598, - 799,0,10269,10270,3,1538,769,0,10270,1493,1,0,0,0,10271,10272,3, - 1598,799,0,10272,10273,5,503,0,0,10273,10274,3,1616,808,0,10274, - 10275,3,1538,769,0,10275,1495,1,0,0,0,10276,10277,3,1598,799,0,10277, - 10278,5,62,0,0,10278,10279,3,1498,749,0,10279,10280,3,1538,769,0, - 10280,1497,1,0,0,0,10281,10282,3,1508,754,0,10282,10298,5,68,0,0, - 10283,10284,3,952,476,0,10284,10285,3,1502,751,0,10285,10299,1,0, - 0,0,10286,10299,3,958,479,0,10287,10299,3,876,438,0,10288,10289, - 5,202,0,0,10289,10290,3,1160,580,0,10290,10291,3,1500,750,0,10291, - 10299,1,0,0,0,10292,10293,3,1504,752,0,10293,10294,3,1160,580,0, - 10294,10295,5,24,0,0,10295,10296,3,1160,580,0,10296,10297,3,1506, - 753,0,10297,10299,1,0,0,0,10298,10283,1,0,0,0,10298,10286,1,0,0, - 0,10298,10287,1,0,0,0,10298,10288,1,0,0,0,10298,10292,1,0,0,0,10299, - 1499,1,0,0,0,10300,10304,1,0,0,0,10301,10302,5,100,0,0,10302,10304, - 3,1278,639,0,10303,10300,1,0,0,0,10303,10301,1,0,0,0,10304,1501, - 1,0,0,0,10305,10318,1,0,0,0,10306,10307,5,2,0,0,10307,10312,3,1160, - 580,0,10308,10309,5,6,0,0,10309,10311,3,1160,580,0,10310,10308,1, - 0,0,0,10311,10314,1,0,0,0,10312,10310,1,0,0,0,10312,10313,1,0,0, - 0,10313,10315,1,0,0,0,10314,10312,1,0,0,0,10315,10316,5,3,0,0,10316, - 10318,1,0,0,0,10317,10305,1,0,0,0,10317,10306,1,0,0,0,10318,1503, - 1,0,0,0,10319,10322,1,0,0,0,10320,10322,5,504,0,0,10321,10319,1, - 0,0,0,10321,10320,1,0,0,0,10322,1505,1,0,0,0,10323,10327,1,0,0,0, - 10324,10325,5,147,0,0,10325,10327,3,1160,580,0,10326,10323,1,0,0, - 0,10326,10324,1,0,0,0,10327,1507,1,0,0,0,10328,10329,3,520,260,0, - 10329,1509,1,0,0,0,10330,10331,3,1598,799,0,10331,10332,5,505,0, - 0,10332,10333,3,1508,754,0,10333,10334,3,1512,756,0,10334,10335, - 5,68,0,0,10335,10336,5,35,0,0,10336,10337,3,1160,580,0,10337,10338, - 3,1538,769,0,10338,1511,1,0,0,0,10339,10343,1,0,0,0,10340,10341, - 5,506,0,0,10341,10343,3,1354,677,0,10342,10339,1,0,0,0,10342,10340, - 1,0,0,0,10343,1513,1,0,0,0,10344,10345,3,1516,758,0,10345,10346, - 3,1600,800,0,10346,10347,3,1602,801,0,10347,10348,5,7,0,0,10348, - 1515,1,0,0,0,10349,10350,7,66,0,0,10350,1517,1,0,0,0,10351,10363, - 5,508,0,0,10352,10353,5,261,0,0,10353,10364,3,1608,804,0,10354,10360, - 5,509,0,0,10355,10356,5,202,0,0,10356,10357,3,1160,580,0,10357,10358, - 3,1500,750,0,10358,10361,1,0,0,0,10359,10361,3,958,479,0,10360,10355, - 1,0,0,0,10360,10359,1,0,0,0,10361,10364,1,0,0,0,10362,10364,3,1520, - 760,0,10363,10352,1,0,0,0,10363,10354,1,0,0,0,10363,10362,1,0,0, - 0,10364,10365,1,0,0,0,10365,10366,5,7,0,0,10366,1519,1,0,0,0,10367, - 10370,1,0,0,0,10368,10370,3,1608,804,0,10369,10367,1,0,0,0,10369, - 10368,1,0,0,0,10370,1521,1,0,0,0,10371,10372,5,510,0,0,10372,10373, - 3,1524,762,0,10373,10374,3,1356,678,0,10374,10375,3,1526,763,0,10375, - 10376,3,1528,764,0,10376,10377,5,7,0,0,10377,10398,1,0,0,0,10378, - 10379,5,510,0,0,10379,10380,3,1524,762,0,10380,10381,3,1380,690, - 0,10381,10382,3,1528,764,0,10382,10383,5,7,0,0,10383,10398,1,0,0, - 0,10384,10385,5,510,0,0,10385,10386,3,1524,762,0,10386,10387,5,511, - 0,0,10387,10388,3,1356,678,0,10388,10389,3,1528,764,0,10389,10390, - 5,7,0,0,10390,10398,1,0,0,0,10391,10392,5,510,0,0,10392,10393,3, - 1524,762,0,10393,10394,3,1528,764,0,10394,10395,5,7,0,0,10395,10398, - 1,0,0,0,10396,10398,5,510,0,0,10397,10371,1,0,0,0,10397,10378,1, - 0,0,0,10397,10384,1,0,0,0,10397,10391,1,0,0,0,10397,10396,1,0,0, - 0,10398,1523,1,0,0,0,10399,10408,1,0,0,0,10400,10408,1,0,0,0,10401, - 10408,5,512,0,0,10402,10408,5,513,0,0,10403,10408,5,514,0,0,10404, - 10408,5,515,0,0,10405,10408,5,516,0,0,10406,10408,5,517,0,0,10407, - 10399,1,0,0,0,10407,10400,1,0,0,0,10407,10401,1,0,0,0,10407,10402, - 1,0,0,0,10407,10403,1,0,0,0,10407,10404,1,0,0,0,10407,10405,1,0, - 0,0,10407,10406,1,0,0,0,10408,1525,1,0,0,0,10409,10417,1,0,0,0,10410, - 10411,5,6,0,0,10411,10413,3,1160,580,0,10412,10410,1,0,0,0,10413, - 10414,1,0,0,0,10414,10412,1,0,0,0,10414,10415,1,0,0,0,10415,10417, - 1,0,0,0,10416,10409,1,0,0,0,10416,10412,1,0,0,0,10417,1527,1,0,0, - 0,10418,10422,1,0,0,0,10419,10420,5,100,0,0,10420,10422,3,1532,766, - 0,10421,10418,1,0,0,0,10421,10419,1,0,0,0,10422,1529,1,0,0,0,10423, - 10424,3,1380,690,0,10424,10425,5,10,0,0,10425,10426,3,1160,580,0, - 10426,1531,1,0,0,0,10427,10432,3,1530,765,0,10428,10429,5,6,0,0, - 10429,10431,3,1530,765,0,10430,10428,1,0,0,0,10431,10434,1,0,0,0, - 10432,10430,1,0,0,0,10432,10433,1,0,0,0,10433,1533,1,0,0,0,10434, - 10432,1,0,0,0,10435,10436,5,518,0,0,10436,10437,3,1608,804,0,10437, - 10438,3,1536,768,0,10438,10439,5,7,0,0,10439,1535,1,0,0,0,10440, - 10444,1,0,0,0,10441,10442,5,6,0,0,10442,10444,3,1608,804,0,10443, - 10440,1,0,0,0,10443,10441,1,0,0,0,10444,1537,1,0,0,0,10445,10446, - 5,519,0,0,10446,10447,3,1450,725,0,10447,10448,5,454,0,0,10448,10449, - 5,519,0,0,10449,10450,3,1600,800,0,10450,10451,5,7,0,0,10451,1539, - 1,0,0,0,10452,10453,3,1618,809,0,10453,10454,5,7,0,0,10454,1541, - 1,0,0,0,10455,10456,5,202,0,0,10456,10464,3,1160,580,0,10457,10458, - 3,1548,774,0,10458,10459,3,1544,772,0,10459,10465,1,0,0,0,10460, - 10461,3,1544,772,0,10461,10462,3,1548,774,0,10462,10465,1,0,0,0, - 10463,10465,1,0,0,0,10464,10457,1,0,0,0,10464,10460,1,0,0,0,10464, - 10463,1,0,0,0,10465,10466,1,0,0,0,10466,10467,5,7,0,0,10467,1543, - 1,0,0,0,10468,10472,1,0,0,0,10469,10470,5,100,0,0,10470,10472,3, - 1546,773,0,10471,10468,1,0,0,0,10471,10469,1,0,0,0,10472,1545,1, - 0,0,0,10473,10478,3,1160,580,0,10474,10475,5,6,0,0,10475,10477,3, - 1160,580,0,10476,10474,1,0,0,0,10477,10480,1,0,0,0,10478,10476,1, - 0,0,0,10478,10479,1,0,0,0,10479,1547,1,0,0,0,10480,10478,1,0,0,0, - 10481,10488,1,0,0,0,10482,10484,5,71,0,0,10483,10485,5,339,0,0,10484, - 10483,1,0,0,0,10484,10485,1,0,0,0,10485,10486,1,0,0,0,10486,10488, - 3,1564,782,0,10487,10481,1,0,0,0,10487,10482,1,0,0,0,10488,1549, - 1,0,0,0,10489,10507,5,520,0,0,10490,10491,3,1584,792,0,10491,10492, - 3,1558,779,0,10492,10498,5,62,0,0,10493,10499,3,958,479,0,10494, - 10495,5,202,0,0,10495,10496,3,1608,804,0,10496,10497,3,1556,778, - 0,10497,10499,1,0,0,0,10498,10493,1,0,0,0,10498,10494,1,0,0,0,10499, - 10508,1,0,0,0,10500,10505,3,1370,685,0,10501,10502,5,2,0,0,10502, - 10503,3,1554,777,0,10503,10504,5,3,0,0,10504,10506,1,0,0,0,10505, - 10501,1,0,0,0,10505,10506,1,0,0,0,10506,10508,1,0,0,0,10507,10490, - 1,0,0,0,10507,10500,1,0,0,0,10508,10509,1,0,0,0,10509,10510,5,7, - 0,0,10510,1551,1,0,0,0,10511,10512,3,1370,685,0,10512,10513,5,20, - 0,0,10513,10514,3,1160,580,0,10514,10517,1,0,0,0,10515,10517,3,1160, - 580,0,10516,10511,1,0,0,0,10516,10515,1,0,0,0,10517,1553,1,0,0,0, - 10518,10523,3,1552,776,0,10519,10520,5,6,0,0,10520,10522,3,1552, - 776,0,10521,10519,1,0,0,0,10522,10525,1,0,0,0,10523,10521,1,0,0, - 0,10523,10524,1,0,0,0,10524,1555,1,0,0,0,10525,10523,1,0,0,0,10526, - 10530,1,0,0,0,10527,10528,5,100,0,0,10528,10530,3,1278,639,0,10529, - 10526,1,0,0,0,10529,10527,1,0,0,0,10530,1557,1,0,0,0,10531,10536, - 1,0,0,0,10532,10533,3,1560,780,0,10533,10534,5,317,0,0,10534,10536, - 1,0,0,0,10535,10531,1,0,0,0,10535,10532,1,0,0,0,10536,1559,1,0,0, - 0,10537,10540,1,0,0,0,10538,10540,5,262,0,0,10539,10537,1,0,0,0, - 10539,10538,1,0,0,0,10540,1561,1,0,0,0,10541,10542,5,61,0,0,10542, - 10543,3,1568,784,0,10543,10544,3,1566,783,0,10544,10545,3,1584,792, - 0,10545,10546,5,71,0,0,10546,10547,3,1564,782,0,10547,10548,5,7, - 0,0,10548,1563,1,0,0,0,10549,10550,3,1278,639,0,10550,1565,1,0,0, - 0,10551,10555,1,0,0,0,10552,10555,5,64,0,0,10553,10555,5,68,0,0, - 10554,10551,1,0,0,0,10554,10552,1,0,0,0,10554,10553,1,0,0,0,10555, - 1567,1,0,0,0,10556,10574,1,0,0,0,10557,10574,1,0,0,0,10558,10574, - 5,261,0,0,10559,10574,5,286,0,0,10560,10574,5,207,0,0,10561,10574, - 5,240,0,0,10562,10563,5,130,0,0,10563,10574,3,1160,580,0,10564,10565, - 5,300,0,0,10565,10574,3,1160,580,0,10566,10574,3,1160,580,0,10567, - 10574,5,30,0,0,10568,10571,7,67,0,0,10569,10572,3,1160,580,0,10570, - 10572,5,30,0,0,10571,10569,1,0,0,0,10571,10570,1,0,0,0,10571,10572, - 1,0,0,0,10572,10574,1,0,0,0,10573,10556,1,0,0,0,10573,10557,1,0, - 0,0,10573,10558,1,0,0,0,10573,10559,1,0,0,0,10573,10560,1,0,0,0, - 10573,10561,1,0,0,0,10573,10562,1,0,0,0,10573,10564,1,0,0,0,10573, - 10566,1,0,0,0,10573,10567,1,0,0,0,10573,10568,1,0,0,0,10574,1569, - 1,0,0,0,10575,10576,5,258,0,0,10576,10577,3,1568,784,0,10577,10578, - 3,1584,792,0,10578,10579,5,7,0,0,10579,1571,1,0,0,0,10580,10581, - 5,157,0,0,10581,10582,3,1584,792,0,10582,10583,5,7,0,0,10583,1573, - 1,0,0,0,10584,10585,5,78,0,0,10585,10586,5,7,0,0,10586,1575,1,0, - 0,0,10587,10588,5,161,0,0,10588,10589,3,1580,790,0,10589,10590,5, - 7,0,0,10590,1577,1,0,0,0,10591,10592,5,312,0,0,10592,10593,3,1580, - 790,0,10593,10594,5,7,0,0,10594,1579,1,0,0,0,10595,10597,5,33,0, - 0,10596,10598,5,262,0,0,10597,10596,1,0,0,0,10597,10598,1,0,0,0, - 10598,10599,1,0,0,0,10599,10602,5,153,0,0,10600,10602,1,0,0,0,10601, - 10595,1,0,0,0,10601,10600,1,0,0,0,10602,1581,1,0,0,0,10603,10604, - 5,326,0,0,10604,10605,3,522,261,0,10605,10606,5,94,0,0,10606,10607, - 5,53,0,0,10607,10608,5,7,0,0,10608,10616,1,0,0,0,10609,10612,5,306, - 0,0,10610,10613,3,522,261,0,10611,10613,5,30,0,0,10612,10610,1,0, - 0,0,10612,10611,1,0,0,0,10613,10614,1,0,0,0,10614,10616,5,7,0,0, - 10615,10603,1,0,0,0,10615,10609,1,0,0,0,10616,1583,1,0,0,0,10617, - 10620,3,1370,685,0,10618,10620,5,28,0,0,10619,10617,1,0,0,0,10619, - 10618,1,0,0,0,10620,1585,1,0,0,0,10621,10625,1,0,0,0,10622,10623, - 5,517,0,0,10623,10625,3,1588,794,0,10624,10621,1,0,0,0,10624,10622, - 1,0,0,0,10625,1587,1,0,0,0,10626,10628,3,1590,795,0,10627,10626, - 1,0,0,0,10628,10629,1,0,0,0,10629,10627,1,0,0,0,10629,10630,1,0, - 0,0,10630,1589,1,0,0,0,10631,10632,5,102,0,0,10632,10633,3,1592, - 796,0,10633,10634,5,93,0,0,10634,10635,3,1450,725,0,10635,1591,1, - 0,0,0,10636,10641,3,1594,797,0,10637,10638,5,82,0,0,10638,10640, - 3,1594,797,0,10639,10637,1,0,0,0,10640,10643,1,0,0,0,10641,10639, - 1,0,0,0,10641,10642,1,0,0,0,10642,1593,1,0,0,0,10643,10641,1,0,0, - 0,10644,10648,3,1604,802,0,10645,10646,5,511,0,0,10646,10648,3,1356, - 678,0,10647,10644,1,0,0,0,10647,10645,1,0,0,0,10648,1595,1,0,0,0, - 10649,10652,1,0,0,0,10650,10652,3,1414,707,0,10651,10649,1,0,0,0, - 10651,10650,1,0,0,0,10652,1597,1,0,0,0,10653,10656,1,0,0,0,10654, - 10656,3,1414,707,0,10655,10653,1,0,0,0,10655,10654,1,0,0,0,10656, - 1599,1,0,0,0,10657,10660,1,0,0,0,10658,10660,3,1604,802,0,10659, - 10657,1,0,0,0,10659,10658,1,0,0,0,10660,1601,1,0,0,0,10661,10662, - 5,102,0,0,10662,10665,3,1612,806,0,10663,10665,1,0,0,0,10664,10661, - 1,0,0,0,10664,10663,1,0,0,0,10665,1603,1,0,0,0,10666,10669,3,1370, - 685,0,10667,10669,3,1606,803,0,10668,10666,1,0,0,0,10668,10667,1, - 0,0,0,10669,1605,1,0,0,0,10670,10671,7,68,0,0,10671,1607,1,0,0,0, - 10672,10674,3,1326,663,0,10673,10675,3,980,490,0,10674,10673,1,0, - 0,0,10674,10675,1,0,0,0,10675,10676,1,0,0,0,10676,10677,3,1052,526, - 0,10677,10678,3,1092,546,0,10678,10679,3,1022,511,0,10679,10680, - 3,1036,518,0,10680,10681,3,1238,619,0,10681,1609,1,0,0,0,10682,10683, - 3,1608,804,0,10683,1611,1,0,0,0,10684,10685,3,1608,804,0,10685,1613, - 1,0,0,0,10686,10687,3,1160,580,0,10687,1615,1,0,0,0,10688,10689, - 3,1160,580,0,10689,1617,1,0,0,0,10690,10691,3,6,3,0,10691,10692, - 3,1620,810,0,10692,1619,1,0,0,0,10693,10694,5,71,0,0,10694,10695, - 3,982,491,0,10695,10696,3,1564,782,0,10696,10699,1,0,0,0,10697,10699, - 1,0,0,0,10698,10693,1,0,0,0,10698,10697,1,0,0,0,10699,1621,1,0,0, - 0,749,1623,1631,1637,1764,1768,1781,1786,1792,1798,1813,1825,1843, - 1848,1858,1882,1889,1895,1900,1909,1913,1925,1956,1963,1971,1976, - 1983,1989,2006,2011,2015,2028,2032,2037,2042,2054,2063,2076,2081, - 2092,2103,2108,2119,2130,2139,2149,2164,2176,2181,2188,2199,2457, - 2464,2469,2474,2479,2487,2496,2503,2513,2515,2520,2526,2532,2534, - 2562,2572,2585,2597,2611,2616,2640,2646,2651,2658,2663,2701,2705, - 2712,2716,2723,2737,2744,2755,2788,2798,2802,2809,2816,2824,2830, - 2834,2844,2851,2862,2894,2902,2907,2914,2924,2934,2954,2969,2994, - 2999,3006,3013,3024,3029,3036,3047,3055,3066,3082,3090,3094,3108, - 3125,3130,3137,3146,3149,3154,3161,3172,3185,3198,3216,3219,3228, - 3243,3258,3267,3274,3281,3286,3316,3318,3322,3330,3337,3351,3355, - 3359,3364,3370,3374,3378,3391,3397,3406,3415,3425,3436,3546,3564, - 3569,3573,3590,3598,3605,3618,3628,3662,3667,3672,3676,3684,3686, - 3744,3761,3769,3792,3796,3816,3853,3862,3867,3872,3877,3882,3935, - 3941,3948,3958,3963,3968,3986,3990,4000,4006,4012,4019,4024,4029, - 4043,4071,4078,4092,4107,4224,4235,4241,4249,4260,4269,4276,4316, - 4322,4343,4371,4375,4380,4389,4393,4420,4427,4442,4462,4482,4575, - 4600,4607,4623,4632,4637,4643,4650,4664,4813,4817,4910,4915,4919, - 4925,4993,4999,5028,5045,5052,5064,5124,5131,5137,5143,5169,5175, - 5181,5192,5204,5233,5272,5276,5280,5284,5289,5296,5310,5323,5331, - 5338,5344,5348,5353,5360,5374,5376,5383,5387,5396,5404,5413,5415, - 5419,5428,5433,5439,5444,5448,5453,5459,5465,5471,5477,5482,5497, - 5506,5517,5523,5562,5572,5579,5590,5596,5606,5618,5622,5660,5674, - 5688,5712,5719,5729,5741,5746,5782,5789,5804,5851,5888,5899,5916, - 6386,6390,6395,6454,6458,6677,6692,6703,6710,6903,6913,6921,6950, - 6966,7008,7022,7044,7051,7059,7063,7070,7079,7088,7140,7145,7157, - 7161,7166,7171,7175,7179,7184,7200,7208,7213,7226,7231,7238,7248, - 7252,7263,7274,7282,7289,7328,7336,7340,7421,7449,7454,7469,7481, - 7488,7498,7503,7507,7511,7515,7519,7526,7536,7541,7559,7570,7577, - 7585,7590,7603,7609,7638,7645,7657,7660,7672,7687,7693,7702,7718, - 7721,7732,7737,7741,7745,7750,7753,7759,7763,7765,7768,7775,7778, - 7785,7793,7796,7805,7810,7822,7835,7846,7849,7853,7859,7862,7877, - 7890,7900,7918,7920,7928,7932,7942,7952,7963,7965,7974,7984,7989, - 7994,7999,8002,8016,8020,8029,8044,8051,8055,8058,8071,8075,8080, - 8088,8094,8105,8112,8118,8122,8124,8128,8134,8143,8149,8151,8153, - 8160,8164,8173,8177,8187,8194,8202,8226,8232,8236,8241,8250,8254, - 8257,8262,8275,8281,8289,8292,8299,8304,8325,8334,8339,8345,8350, - 8357,8362,8368,8370,8374,8381,8385,8388,8395,8400,8403,8410,8414, - 8423,8427,8435,8437,8444,8449,8452,8467,8479,8489,8498,8503,8508, - 8515,8518,8522,8529,8553,8562,8568,8572,8577,8587,8594,8603,8606, - 8615,8617,8623,8627,8632,8646,8648,8654,8660,8663,8672,8690,8697, - 8701,8705,8721,8728,8736,8740,8747,8760,8776,8782,8788,8795,8800, - 8806,8813,8821,8829,8834,8838,8844,8848,8852,8855,8861,8866,8882, - 8885,8887,8899,8901,8905,8911,8916,8924,8928,8937,8945,8951,8954, - 8963,8968,8975,8985,9011,9022,9024,9026,9034,9057,9065,9075,9089, - 9099,9103,9117,9124,9131,9138,9163,9192,9231,9233,9261,9282,9289, - 9302,9314,9320,9329,9346,9358,9367,9372,9379,9389,9392,9403,9409, - 9424,9432,9441,9450,9453,9458,9467,9472,9486,9496,9504,9518,9525, - 9533,9541,9548,9554,9563,9571,9581,9592,9599,9628,9637,9644,9655, - 9665,9669,9673,9678,9686,9690,9694,9699,9704,9709,9716,9725,9727, - 9734,9739,9746,9762,9777,9791,9796,9815,9820,9825,9832,9839,9846, - 9855,9861,9867,9873,9881,9890,9948,9963,9986,9994,9998,10010,10012, - 10019,10028,10046,10054,10063,10070,10080,10086,10093,10098,10104, - 10108,10115,10145,10165,10169,10185,10192,10205,10213,10233,10239, - 10251,10256,10266,10298,10303,10312,10317,10321,10326,10342,10360, - 10363,10369,10397,10407,10414,10416,10421,10432,10443,10464,10471, - 10478,10484,10487,10498,10505,10507,10516,10523,10529,10535,10539, - 10554,10571,10573,10597,10601,10612,10615,10619,10624,10629,10641, - 10647,10651,10655,10659,10664,10668,10674,10698 + 3,365,7028,8,365,1,365,1,365,1,365,1,365,1,366,1,366,3,366,7036, + 8,366,1,366,1,366,1,366,3,366,7041,8,366,1,367,1,367,1,367,1,368, + 1,368,1,368,1,368,1,368,1,368,1,369,4,369,7053,8,369,11,369,12,369, + 7054,1,369,3,369,7058,8,369,1,370,1,370,3,370,7062,8,370,1,370,1, + 370,1,370,3,370,7067,8,370,1,371,1,371,1,371,1,371,1,371,1,371,1, + 371,1,371,3,371,7077,8,371,1,372,1,372,1,372,1,372,1,372,1,372,1, + 372,1,372,1,372,3,372,7088,8,372,1,373,1,373,1,373,1,373,1,373,1, + 374,1,374,1,374,1,374,3,374,7099,8,374,1,374,1,374,1,374,1,374,1, + 374,1,374,5,374,7107,8,374,10,374,12,374,7110,9,374,1,374,1,374, + 3,374,7114,8,374,1,375,1,375,1,375,1,375,1,375,1,375,1,376,1,376, + 1,376,1,376,1,376,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,378, + 1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378, + 1,378,1,378,1,378,1,378,3,378,7150,8,378,1,378,1,378,1,378,1,378, + 1,378,1,378,3,378,7158,8,378,1,379,1,379,3,379,7162,8,379,1,380, + 1,380,1,380,1,380,1,380,1,380,1,380,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,3,381,7243,8,381,1,382,1,382,3,382,7247,8,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7271, + 8,383,1,384,1,384,1,384,3,384,7276,8,384,1,385,1,385,3,385,7280, + 8,385,1,385,3,385,7283,8,385,1,385,1,385,3,385,7287,8,385,1,385, + 1,385,1,385,1,385,1,385,1,385,1,385,1,385,3,385,7297,8,385,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7309, + 8,386,1,387,1,387,1,387,5,387,7314,8,387,10,387,12,387,7317,9,387, + 1,388,1,388,1,389,1,389,1,389,1,390,1,390,3,390,7326,8,390,1,391, + 1,391,1,391,3,391,7331,8,391,1,392,1,392,3,392,7335,8,392,1,393, + 1,393,1,393,1,393,1,393,3,393,7342,8,393,1,394,1,394,1,394,1,395, + 1,395,1,395,5,395,7350,8,395,10,395,12,395,7353,9,395,1,395,3,395, + 7356,8,395,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,5,396,7373,8,396,10,396,12,396, + 7376,9,396,1,396,1,396,1,396,3,396,7381,8,396,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,3,397,7392,8,397,1,398,1,398, + 1,398,1,399,1,399,3,399,7399,8,399,1,400,1,400,1,400,3,400,7404, + 8,400,1,401,1,401,1,401,1,401,1,401,1,401,1,402,1,402,1,402,1,402, + 1,402,3,402,7417,8,402,1,403,1,403,1,403,1,403,3,403,7423,8,403, + 1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,1,404,3,404,7452,8,404,1,405,1,405,1,405, + 1,405,1,405,3,405,7459,8,405,1,406,1,406,1,406,1,406,1,406,1,406, + 1,406,1,406,1,406,1,406,3,406,7471,8,406,1,407,3,407,7474,8,407, + 1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,408,1,408,1,408,3,408, + 7486,8,408,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,1,409,3,409,7501,8,409,1,409,1,409,1,409,1,409, + 3,409,7507,8,409,1,410,1,410,1,411,1,411,1,411,5,411,7514,8,411, + 10,411,12,411,7517,9,411,1,412,1,412,1,412,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,1,413,1,413,1,413,3,413,7532,8,413,1,413,3,413, + 7535,8,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 3,414,7546,8,414,1,415,1,415,1,415,3,415,7551,8,415,1,416,1,416, + 3,416,7555,8,416,1,416,1,416,3,416,7559,8,416,1,416,1,416,1,416, + 3,416,7564,8,416,1,416,3,416,7567,8,416,1,416,1,416,1,416,1,416, + 3,416,7573,8,416,1,416,1,416,3,416,7577,8,416,3,416,7579,8,416,1, + 416,3,416,7582,8,416,1,417,1,417,1,417,1,417,1,417,3,417,7589,8, + 417,1,417,3,417,7592,8,417,1,417,1,417,1,417,1,417,1,417,3,417,7599, + 8,417,1,417,1,417,1,418,1,418,1,418,1,418,3,418,7607,8,418,1,418, + 3,418,7610,8,418,1,418,1,418,1,418,1,418,1,419,1,419,1,419,3,419, + 7619,8,419,1,419,1,419,1,420,3,420,7624,8,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,421,1,421,1,421,3,421,7636,8,421,1,422, + 1,422,1,422,1,422,1,422,1,422,1,423,1,423,1,423,1,423,1,423,3,423, + 7649,8,423,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424, + 3,424,7660,8,424,1,424,3,424,7663,8,424,1,425,1,425,3,425,7667,8, + 425,1,426,1,426,1,426,1,426,3,426,7673,8,426,1,427,3,427,7676,8, + 427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,428,1,428, + 1,428,5,428,7689,8,428,10,428,12,428,7692,9,428,1,429,1,429,1,429, + 1,429,1,429,1,429,1,429,1,429,5,429,7702,8,429,10,429,12,429,7705, + 9,429,1,429,1,429,1,429,1,429,3,429,7711,8,429,1,430,1,430,1,430, + 1,431,1,431,1,431,1,431,1,431,1,431,1,431,5,431,7723,8,431,10,431, + 12,431,7726,9,431,1,431,1,431,1,431,1,431,1,431,1,432,1,432,1,433, + 1,433,1,433,1,433,1,433,3,433,7740,8,433,1,434,1,434,3,434,7744, + 8,434,1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,435,3,435,7754, + 8,435,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,7763,8,436, + 3,436,7765,8,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436, + 3,436,7775,8,436,3,436,7777,8,436,3,436,7779,8,436,1,437,1,437,1, + 437,1,437,1,437,5,437,7786,8,437,10,437,12,437,7789,9,437,1,438, + 1,438,1,438,1,438,1,438,5,438,7796,8,438,10,438,12,438,7799,9,438, + 1,439,1,439,3,439,7803,8,439,1,439,1,439,1,439,3,439,7808,8,439, + 1,439,1,439,1,439,3,439,7813,8,439,1,439,3,439,7816,8,439,1,440, + 1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440, + 3,440,7830,8,440,1,441,1,441,3,441,7834,8,441,1,441,1,441,1,441, + 5,441,7839,8,441,10,441,12,441,7842,9,441,1,442,1,442,1,442,1,442, + 1,442,1,442,1,442,1,442,1,443,1,443,1,443,1,443,3,443,7856,8,443, + 1,444,1,444,3,444,7860,8,444,1,444,1,444,3,444,7864,8,444,1,445, + 3,445,7867,8,445,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,445, + 1,445,1,445,1,445,3,445,7880,8,445,1,446,1,446,3,446,7884,8,446, + 1,447,1,447,1,447,3,447,7889,8,447,1,448,1,448,1,448,1,448,1,448, + 1,448,3,448,7897,8,448,1,449,1,449,1,450,1,450,3,450,7903,8,450, + 1,451,1,451,1,451,1,451,1,452,1,452,1,452,5,452,7912,8,452,10,452, + 12,452,7915,9,452,1,453,1,453,1,453,1,453,3,453,7921,8,453,1,453, + 1,453,1,454,1,454,3,454,7927,8,454,1,454,1,454,3,454,7931,8,454, + 3,454,7933,8,454,1,455,1,455,3,455,7937,8,455,1,456,1,456,1,456, + 1,456,3,456,7943,8,456,1,456,1,456,1,456,1,456,1,456,1,456,1,456, + 3,456,7952,8,456,1,456,1,456,1,456,1,456,3,456,7958,8,456,3,456, + 7960,8,456,3,456,7962,8,456,1,457,1,457,1,457,1,457,1,457,3,457, + 7969,8,457,1,458,1,458,3,458,7973,8,458,1,459,1,459,1,460,1,460, + 1,460,1,460,1,460,3,460,7982,8,460,1,461,1,461,3,461,7986,8,461, + 1,462,1,462,1,463,1,463,1,464,1,464,1,464,1,464,3,464,7996,8,464, + 1,465,1,465,1,465,5,465,8001,8,465,10,465,12,465,8004,9,465,1,466, + 1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466,1,466, + 1,466,1,466,1,466,1,466,1,466,1,466,1,466,3,466,8025,8,466,1,467, + 1,467,1,467,3,467,8030,8,467,1,468,4,468,8033,8,468,11,468,12,468, + 8034,1,468,1,468,1,468,3,468,8040,8,468,1,469,1,469,1,469,1,469, + 1,470,1,470,1,470,3,470,8049,8,470,1,470,1,470,3,470,8053,8,470, + 1,470,3,470,8056,8,470,1,471,1,471,1,471,3,471,8061,8,471,1,472, + 1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,5,472,8072,8,472, + 10,472,12,472,8075,9,472,1,473,1,473,1,473,3,473,8080,8,473,1,474, + 1,474,1,474,1,474,5,474,8086,8,474,10,474,12,474,8089,9,474,3,474, + 8091,8,474,1,475,1,475,1,475,4,475,8096,8,475,11,475,12,475,8097, + 1,476,1,476,1,476,3,476,8103,8,476,1,476,1,476,1,476,1,476,1,476, + 1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476, + 1,476,1,476,1,476,3,476,8124,8,476,1,476,1,476,1,476,1,476,1,476, + 1,476,1,476,3,476,8133,8,476,1,476,1,476,1,476,3,476,8138,8,476, + 1,476,1,476,1,476,1,476,3,476,8144,8,476,1,476,1,476,1,476,3,476, + 8149,8,476,1,476,1,476,1,476,1,476,1,476,3,476,8156,8,476,1,476, + 1,476,1,476,3,476,8161,8,476,1,476,1,476,1,476,1,476,5,476,8167, + 8,476,10,476,12,476,8170,9,476,1,477,3,477,8173,8,477,1,477,1,477, + 1,477,1,477,1,477,3,477,8180,8,477,1,478,1,478,3,478,8184,8,478, + 1,479,3,479,8187,8,479,1,479,1,479,1,479,1,479,1,479,3,479,8194, + 8,479,1,480,1,480,1,480,3,480,8199,8,480,1,480,3,480,8202,8,480, + 1,480,1,480,1,480,1,480,1,480,3,480,8209,8,480,1,481,1,481,3,481, + 8213,8,481,1,482,1,482,1,482,1,482,1,482,1,482,1,482,3,482,8222, + 8,482,1,483,1,483,3,483,8226,8,483,1,483,1,483,1,483,1,483,1,483, + 1,483,3,483,8234,8,483,3,483,8236,8,483,1,484,1,484,1,484,5,484, + 8241,8,484,10,484,12,484,8244,9,484,1,485,1,485,3,485,8248,8,485, + 1,485,3,485,8251,8,485,1,486,1,486,1,486,1,486,1,486,1,486,1,486, + 1,486,1,486,1,486,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487, + 1,487,5,487,8272,8,487,10,487,12,487,8275,9,487,1,487,1,487,1,487, + 3,487,8280,8,487,1,488,1,488,1,488,1,489,1,489,1,489,1,489,1,489, + 1,489,3,489,8291,8,489,1,490,1,490,1,490,3,490,8296,8,490,1,491, + 1,491,1,491,3,491,8301,8,491,1,492,1,492,1,492,1,492,1,492,3,492, + 8308,8,492,1,492,3,492,8311,8,492,1,493,1,493,3,493,8315,8,493,1, + 494,1,494,1,494,5,494,8320,8,494,10,494,12,494,8323,9,494,1,495, + 1,495,1,495,1,495,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496, + 5,496,8337,8,496,10,496,12,496,8340,9,496,1,496,1,496,1,496,1,496, + 1,496,1,496,1,496,1,496,1,496,1,496,1,496,5,496,8353,8,496,10,496, + 12,496,8356,9,496,3,496,8358,8,496,1,496,1,496,1,497,1,497,1,497, + 3,497,8365,8,497,1,497,1,497,3,497,8369,8,497,1,498,4,498,8372,8, + 498,11,498,12,498,8373,1,499,1,499,1,499,1,499,1,499,1,499,1,499, + 1,499,3,499,8384,8,499,1,500,1,500,1,500,5,500,8389,8,500,10,500, + 12,500,8392,9,500,1,501,1,501,1,501,1,501,1,501,1,501,3,501,8400, + 8,501,1,502,3,502,8403,8,502,1,502,1,502,1,502,3,502,8408,8,502, + 1,502,5,502,8411,8,502,10,502,12,502,8414,9,502,1,502,1,502,1,502, + 1,502,1,502,3,502,8421,8,502,3,502,8423,8,502,1,502,1,502,1,502, + 1,502,3,502,8429,8,502,1,503,1,503,1,503,1,503,1,503,1,503,1,503, + 1,503,1,503,1,503,1,503,3,503,8442,8,503,3,503,8444,8,503,1,504, + 1,504,1,504,1,504,3,504,8450,8,504,1,505,1,505,1,505,1,505,3,505, + 8456,8,505,1,505,3,505,8459,8,505,1,505,1,505,1,506,1,506,1,506, + 1,506,1,506,3,506,8468,8,506,1,507,1,507,1,507,1,507,1,507,1,507, + 1,507,1,507,1,507,1,507,1,507,1,507,1,507,1,507,1,507,1,507,3,507, + 8486,8,507,1,508,1,508,1,508,1,508,1,508,3,508,8493,8,508,1,509, + 1,509,3,509,8497,8,509,1,510,1,510,3,510,8501,8,510,1,511,1,511, + 1,511,1,511,1,511,1,511,1,512,1,512,1,512,1,513,1,513,1,513,1,513, + 1,513,3,513,8517,8,513,1,514,1,514,1,514,1,514,1,514,3,514,8524, + 8,514,1,515,1,515,1,515,1,515,1,515,1,515,3,515,8532,8,515,1,516, + 1,516,3,516,8536,8,516,1,517,1,517,1,517,1,517,1,517,3,517,8543, + 8,517,1,517,1,517,1,518,1,518,1,519,1,519,1,519,1,519,1,519,1,519, + 1,519,3,519,8556,8,519,1,520,1,520,1,520,1,520,1,520,1,520,1,520, + 1,520,1,520,1,520,1,520,1,520,1,520,1,520,3,520,8572,8,520,1,520, + 1,520,1,520,1,520,3,520,8578,8,520,1,520,1,520,1,520,1,520,3,520, + 8584,8,520,1,521,1,521,1,521,1,521,1,521,3,521,8591,8,521,1,522, + 1,522,1,522,3,522,8596,8,522,1,523,1,523,1,524,1,524,3,524,8602, + 8,524,1,525,1,525,1,525,5,525,8607,8,525,10,525,12,525,8610,9,525, + 1,526,1,526,1,526,5,526,8615,8,526,10,526,12,526,8618,9,526,1,527, + 1,527,1,527,5,527,8623,8,527,10,527,12,527,8626,9,527,1,528,1,528, + 3,528,8630,8,528,1,528,1,528,3,528,8634,8,528,1,528,1,528,1,528, + 1,528,3,528,8640,8,528,1,529,1,529,3,529,8644,8,529,1,529,1,529, + 3,529,8648,8,529,1,530,3,530,8651,8,530,1,530,1,530,1,531,1,531, + 3,531,8657,8,531,1,532,1,532,1,532,3,532,8662,8,532,1,532,1,532, + 1,532,1,532,1,532,1,532,1,532,1,532,1,532,1,532,1,532,1,532,1,532, + 1,532,3,532,8678,8,532,1,532,3,532,8681,8,532,3,532,8683,8,532,1, + 533,1,533,1,533,1,533,1,533,1,533,1,533,1,533,1,533,1,533,3,533, + 8695,8,533,3,533,8697,8,533,1,534,1,534,3,534,8701,8,534,1,534,1, + 534,1,534,1,534,3,534,8707,8,534,1,534,1,534,1,534,3,534,8712,8, + 534,1,535,1,535,1,535,1,535,5,535,8718,8,535,10,535,12,535,8721, + 9,535,1,536,3,536,8724,8,536,1,536,1,536,1,537,1,537,1,537,5,537, + 8731,8,537,10,537,12,537,8734,9,537,1,538,1,538,1,538,5,538,8739, + 8,538,10,538,12,538,8742,9,538,1,539,1,539,1,539,3,539,8747,8,539, + 1,540,3,540,8750,8,540,1,540,1,540,1,541,1,541,1,541,1,541,1,541, + 3,541,8759,8,541,1,542,1,542,1,542,3,542,8764,8,542,1,543,1,543, + 1,543,5,543,8769,8,543,10,543,12,543,8772,9,543,1,544,1,544,1,544, + 1,544,1,544,1,544,1,544,3,544,8781,8,544,1,544,1,544,1,544,1,544, + 1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544, + 1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,3,544,8807, + 8,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,1,544,3,544, + 8818,8,544,5,544,8820,8,544,10,544,12,544,8823,9,544,1,545,1,545, + 1,545,1,545,1,545,3,545,8830,8,545,1,545,1,545,1,545,1,545,1,545, + 1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545,1,545, + 1,545,1,545,1,545,1,545,1,545,3,545,8853,8,545,1,545,1,545,1,545, + 1,545,1,545,1,545,3,545,8861,8,545,1,546,1,546,1,547,1,547,1,547, + 1,547,1,547,1,547,3,547,8871,8,547,1,547,1,547,1,547,1,547,1,547, + 1,547,1,547,1,547,1,547,1,547,1,547,1,547,3,547,8885,8,547,1,547, + 1,547,1,548,1,548,1,548,1,548,1,548,1,548,3,548,8895,8,548,1,549, + 1,549,3,549,8899,8,549,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,3,550,8913,8,550,1,550,1,550,1,550, + 1,550,1,550,3,550,8920,8,550,1,550,1,550,1,550,1,550,1,550,3,550, + 8927,8,550,1,550,1,550,1,550,1,550,1,550,3,550,8934,8,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 3,550,8959,8,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,3,550,8988,8,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,3,550,9027,8,550,3,550,9029,8,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,3,550,9057,8,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550,1,550, + 1,550,1,550,1,550,3,550,9078,8,550,1,551,1,551,1,551,1,551,1,551, + 3,551,9085,8,551,1,552,1,552,1,552,1,552,1,552,1,552,1,552,1,552, + 1,552,1,552,1,552,3,552,9098,8,552,1,553,1,553,1,553,1,553,1,553, + 1,554,1,554,1,554,5,554,9108,8,554,10,554,12,554,9111,9,554,1,555, + 1,555,1,555,3,555,9116,8,555,1,556,1,556,1,557,1,557,1,557,1,557, + 1,557,3,557,9125,8,557,1,558,1,558,1,558,1,558,1,558,1,558,1,558, + 1,558,1,558,1,558,1,558,1,558,1,558,1,558,1,558,3,558,9142,8,558, + 1,559,1,559,1,559,1,560,1,560,1,560,1,560,1,560,1,560,1,560,3,560, + 9154,8,560,1,561,1,561,1,561,1,561,1,561,1,561,1,561,3,561,9163, + 8,561,1,562,1,562,1,562,3,562,9168,8,562,1,563,1,563,1,563,5,563, + 9173,8,563,10,563,12,563,9176,9,563,1,564,1,564,1,564,1,564,1,565, + 1,565,1,565,3,565,9185,8,565,1,565,3,565,9188,8,565,1,566,1,566, + 1,566,1,566,1,566,1,566,1,566,1,567,1,567,3,567,9199,8,567,1,568, + 1,568,1,568,1,568,3,568,9205,8,568,1,569,1,569,1,569,1,569,1,569, + 1,569,1,569,1,569,1,569,1,569,1,569,1,569,1,569,3,569,9220,8,569, + 1,570,1,570,1,570,1,570,1,570,1,570,3,570,9228,8,570,1,571,1,571, + 1,571,1,571,1,571,1,571,1,571,3,571,9237,8,571,1,572,1,572,1,572, + 1,572,1,572,1,572,1,572,3,572,9246,8,572,1,572,3,572,9249,8,572, + 1,573,1,573,1,573,3,573,9254,8,573,1,573,1,573,1,573,1,573,1,573, + 1,573,1,573,3,573,9263,8,573,1,574,1,574,1,574,3,574,9268,8,574, + 1,574,1,574,1,575,1,575,1,575,1,575,1,575,1,575,1,576,1,576,1,577, + 1,577,3,577,9282,8,577,1,578,1,578,1,579,1,579,1,579,1,579,1,579, + 1,579,3,579,9292,8,579,1,580,1,580,1,580,1,580,1,580,1,580,3,580, + 9300,8,580,1,581,1,581,1,581,1,581,1,581,1,581,1,581,1,581,1,581, + 1,581,1,581,1,581,3,581,9314,8,581,1,582,1,582,1,582,5,582,9319, + 8,582,10,582,12,582,9322,9,582,1,583,1,583,1,583,5,583,9327,8,583, + 10,583,12,583,9330,9,583,1,584,1,584,1,584,1,584,1,584,3,584,9337, + 8,584,1,585,1,585,1,585,5,585,9342,8,585,10,585,12,585,9345,9,585, + 1,586,1,586,1,586,3,586,9350,8,586,1,586,1,586,1,587,1,587,1,587, + 5,587,9357,8,587,10,587,12,587,9360,9,587,1,588,1,588,1,588,1,588, + 1,588,3,588,9367,8,588,1,589,1,589,1,589,1,589,1,589,1,589,1,589, + 1,589,3,589,9377,8,589,1,590,1,590,1,591,1,591,1,591,1,591,1,591, + 1,591,1,591,3,591,9388,8,591,1,592,1,592,1,592,1,592,1,592,3,592, + 9395,8,592,1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593, + 1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593,1,593, + 1,593,1,593,1,593,1,593,1,593,1,593,1,593,3,593,9424,8,593,1,594, + 1,594,1,594,1,594,1,594,1,594,1,594,3,594,9433,8,594,1,595,1,595, + 1,595,1,595,1,595,3,595,9440,8,595,1,596,1,596,1,596,1,596,1,596, + 1,596,1,597,4,597,9449,8,597,11,597,12,597,9450,1,598,1,598,1,598, + 1,598,1,598,1,599,1,599,1,599,3,599,9461,8,599,1,600,1,600,3,600, + 9465,8,600,1,601,1,601,3,601,9469,8,601,1,602,1,602,1,602,3,602, + 9474,8,602,1,602,1,602,1,602,3,602,9479,8,602,1,602,1,602,3,602, + 9483,8,602,3,602,9485,8,602,1,602,3,602,9488,8,602,1,603,4,603,9491, + 8,603,11,603,12,603,9492,1,604,5,604,9496,8,604,10,604,12,604,9499, + 9,604,1,605,1,605,3,605,9503,8,605,1,606,1,606,1,606,5,606,9508, + 8,606,10,606,12,606,9511,9,606,1,607,1,607,1,607,1,607,1,607,1,607, + 3,607,9519,8,607,3,607,9521,8,607,1,608,1,608,1,608,5,608,9526,8, + 608,10,608,12,608,9529,9,608,1,609,1,609,3,609,9533,8,609,1,610, + 1,610,1,610,5,610,9538,8,610,10,610,12,610,9541,9,610,1,611,1,611, + 1,612,1,612,1,613,1,613,1,614,1,614,1,614,1,614,1,614,1,614,1,614, + 3,614,9556,8,614,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615, + 1,615,1,615,1,615,1,615,1,615,3,615,9571,8,615,1,615,1,615,1,615, + 1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,3,615,9585, + 8,615,1,615,1,615,1,615,3,615,9590,8,615,1,616,1,616,1,617,1,617, + 1,618,1,618,1,619,1,619,1,620,1,620,1,620,1,621,1,621,1,621,1,621, + 5,621,9607,8,621,10,621,12,621,9610,9,621,1,621,1,621,3,621,9614, + 8,621,1,622,1,622,1,622,3,622,9619,8,622,1,623,1,623,1,623,1,623, + 1,623,3,623,9626,8,623,1,624,1,624,1,625,1,625,1,625,3,625,9633, + 8,625,1,626,1,626,1,626,5,626,9638,8,626,10,626,12,626,9641,9,626, + 1,627,1,627,1,627,1,627,1,627,1,627,3,627,9649,8,627,1,628,1,628, + 1,628,1,628,3,628,9655,8,628,1,629,1,629,1,629,1,629,3,629,9661, + 8,629,1,630,1,630,1,630,1,630,3,630,9667,8,630,1,631,1,631,1,631, + 1,631,1,631,1,631,3,631,9675,8,631,1,632,1,632,1,632,1,632,1,632, + 1,632,1,632,3,632,9684,8,632,1,633,1,633,1,634,1,634,1,635,1,635, + 1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635, + 1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635, + 1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635, + 1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635,1,635, + 1,635,1,635,1,635,1,635,1,635,1,635,3,635,9742,8,635,1,636,1,636, + 1,637,1,637,1,638,1,638,1,639,1,639,1,639,1,639,1,640,5,640,9755, + 8,640,10,640,12,640,9758,9,640,1,641,1,641,1,641,1,641,1,641,1,641, + 1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641, + 1,641,1,641,1,641,3,641,9780,8,641,1,642,1,642,1,643,1,643,1,643, + 1,643,3,643,9788,8,643,1,644,1,644,3,644,9792,8,644,1,645,1,645, + 1,645,1,645,1,645,1,645,1,645,1,646,1,646,1,646,3,646,9804,8,646, + 3,646,9806,8,646,1,647,1,647,1,648,4,648,9811,8,648,11,648,12,648, + 9812,1,649,1,649,1,649,1,649,1,650,1,650,1,650,3,650,9822,8,650, + 1,651,1,651,1,651,1,651,1,651,1,651,1,651,1,651,1,651,1,651,1,651, + 1,651,1,651,1,651,1,651,1,651,3,651,9840,8,651,1,651,1,651,1,652, + 1,652,1,652,1,652,3,652,9848,8,652,1,653,1,653,1,654,1,654,1,654, + 1,654,1,654,3,654,9857,8,654,1,655,1,655,1,655,5,655,9862,8,655, + 10,655,12,655,9865,9,655,1,656,1,656,1,656,1,657,1,657,1,658,1,658, + 3,658,9874,8,658,1,659,1,659,1,660,1,660,3,660,9880,8,660,1,661, + 1,661,1,662,1,662,1,662,3,662,9887,8,662,1,663,1,663,1,663,3,663, + 9892,8,663,1,664,1,664,1,664,1,664,3,664,9898,8,664,1,665,1,665, + 3,665,9902,8,665,1,666,1,666,1,667,5,667,9907,8,667,10,667,12,667, + 9910,9,667,1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668, + 1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668,1,668, + 1,668,1,668,1,668,1,668,1,668,1,668,1,668,3,668,9939,8,668,1,669, + 1,669,1,669,1,669,1,670,1,670,1,670,1,670,1,670,1,670,1,670,1,670, + 1,670,1,670,1,670,1,670,1,670,1,670,3,670,9959,8,670,1,671,1,671, + 3,671,9963,8,671,1,672,1,672,1,672,1,672,1,672,1,673,1,673,1,673, + 1,673,1,673,1,673,1,674,1,674,1,674,3,674,9979,8,674,1,675,1,675, + 1,675,5,675,9984,8,675,10,675,12,675,9987,9,675,1,676,1,676,1,676, + 1,676,1,677,1,677,1,678,1,678,1,679,1,679,3,679,9999,8,679,1,679, + 1,679,1,679,1,679,5,679,10005,8,679,10,679,12,679,10008,9,679,1, + 680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,681, + 1,681,1,681,1,681,1,681,5,681,10025,8,681,10,681,12,681,10028,9, + 681,1,682,1,682,1,682,3,682,10033,8,682,1,683,1,683,1,683,1,683, + 1,683,1,683,1,683,1,683,1,684,1,684,3,684,10045,8,684,1,685,4,685, + 10048,8,685,11,685,12,685,10049,1,686,1,686,1,686,1,686,1,686,1, + 687,1,687,1,687,3,687,10060,8,687,1,688,1,688,1,688,1,689,1,689, + 1,689,1,689,1,689,1,690,1,690,1,690,1,690,1,690,1,691,1,691,1,691, + 1,691,1,691,1,691,1,691,1,691,1,691,1,691,1,691,1,691,1,691,1,691, + 1,691,1,691,1,691,3,691,10092,8,691,1,692,1,692,1,692,3,692,10097, + 8,692,1,693,1,693,1,693,1,693,1,693,5,693,10104,8,693,10,693,12, + 693,10107,9,693,1,693,1,693,3,693,10111,8,693,1,694,1,694,3,694, + 10115,8,694,1,695,1,695,1,695,3,695,10120,8,695,1,696,1,696,1,697, + 1,697,1,697,1,697,1,697,1,697,1,697,1,697,1,697,1,698,1,698,1,698, + 3,698,10136,8,698,1,699,1,699,1,699,1,699,1,699,1,700,1,700,1,701, + 1,701,1,701,1,701,1,701,1,701,1,701,1,701,1,701,3,701,10154,8,701, + 1,701,3,701,10157,8,701,1,701,1,701,1,702,1,702,3,702,10163,8,702, + 1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703, + 1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703,1,703, + 1,703,1,703,1,703,1,703,3,703,10191,8,703,1,704,1,704,1,704,1,704, + 1,704,1,704,1,704,1,704,3,704,10201,8,704,1,705,1,705,1,705,4,705, + 10206,8,705,11,705,12,705,10207,3,705,10210,8,705,1,706,1,706,1, + 706,1,706,1,706,5,706,10217,8,706,10,706,12,706,10220,9,706,3,706, + 10222,8,706,1,707,1,707,1,707,1,707,1,708,1,708,1,708,1,708,1,708, + 1,709,1,709,1,709,3,709,10236,8,709,1,710,1,710,1,710,1,710,1,710, + 1,710,1,710,1,711,1,711,1,711,1,712,1,712,1,712,1,712,1,712,1,712, + 1,712,1,712,1,712,3,712,10257,8,712,1,712,1,712,1,713,1,713,1,713, + 3,713,10264,8,713,1,714,1,714,1,714,5,714,10269,8,714,10,714,12, + 714,10272,9,714,1,715,1,715,1,715,3,715,10277,8,715,1,715,3,715, + 10280,8,715,1,716,1,716,1,716,3,716,10285,8,716,1,716,1,716,1,716, + 1,716,1,716,1,716,1,716,1,716,3,716,10295,8,716,1,716,1,716,1,716, + 1,716,1,716,5,716,10302,8,716,10,716,12,716,10305,9,716,1,716,1, + 716,3,716,10309,8,716,3,716,10311,8,716,1,716,1,716,1,717,1,717, + 1,717,1,717,1,717,3,717,10320,8,717,1,718,1,718,1,718,1,718,1,718, + 1,718,1,718,1,718,1,719,1,719,1,720,1,720,1,720,3,720,10335,8,720, + 1,721,1,721,1,721,1,721,1,721,1,721,1,721,1,721,1,721,1,721,1,721, + 1,721,1,721,1,721,1,721,3,721,10352,8,721,3,721,10354,8,721,1,722, + 1,722,1,722,1,722,1,722,1,723,1,723,1,723,1,723,1,724,1,724,1,724, + 1,725,1,725,1,725,1,725,1,726,1,726,1,726,1,726,1,727,1,727,3,727, + 10378,8,727,1,727,1,727,3,727,10382,8,727,1,728,1,728,1,728,1,728, + 1,728,1,728,1,728,1,728,1,728,3,728,10393,8,728,1,728,3,728,10396, + 8,728,1,729,1,729,3,729,10400,8,729,1,730,1,730,1,730,3,730,10405, + 8,730,1,731,4,731,10408,8,731,11,731,12,731,10409,1,732,1,732,1, + 732,1,732,1,732,1,733,1,733,1,733,5,733,10420,8,733,10,733,12,733, + 10423,9,733,1,734,1,734,1,734,3,734,10428,8,734,1,735,1,735,3,735, + 10432,8,735,1,736,1,736,3,736,10436,8,736,1,737,1,737,3,737,10440, + 8,737,1,738,1,738,1,738,3,738,10445,8,738,1,739,1,739,3,739,10449, + 8,739,1,740,1,740,1,741,1,741,3,741,10455,8,741,1,741,1,741,1,741, + 1,741,1,741,1,741,1,742,1,742,1,743,1,743,1,744,1,744,1,745,1,745, + 1,746,1,746,1,746,1,747,1,747,3,747,10476,8,747,1,747,1,747,3,747, + 10480,8,747,1,747,0,1,1088,748,0,2,4,6,8,10,12,14,16,18,20,22,24, + 26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68, + 70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108, + 110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140, + 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, + 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, + 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, + 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, + 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, + 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, + 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, + 366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396, + 398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428, + 430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460, + 462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492, + 494,496,498,500,502,504,506,508,510,512,514,516,518,520,522,524, + 526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556, + 558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588, + 590,592,594,596,598,600,602,604,606,608,610,612,614,616,618,620, + 622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652, + 654,656,658,660,662,664,666,668,670,672,674,676,678,680,682,684, + 686,688,690,692,694,696,698,700,702,704,706,708,710,712,714,716, + 718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748, + 750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780, + 782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812, + 814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844, + 846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876, + 878,880,882,884,886,888,890,892,894,896,898,900,902,904,906,908, + 910,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940, + 942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972, + 974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004, + 1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030, + 1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056, + 1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082, + 1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108, + 1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134, + 1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160, + 1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186, + 1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212, + 1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238, + 1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264, + 1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290, + 1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316, + 1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342, + 1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368, + 1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394, + 1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420, + 1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446, + 1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472, + 1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,0,69,2,0, + 195,195,357,357,2,0,66,66,311,311,2,0,99,99,311,311,3,0,66,66,99, + 99,311,311,2,0,133,133,191,191,2,0,245,245,325,325,2,0,10,10,94, + 94,2,0,162,162,356,356,2,0,180,180,221,221,5,0,30,30,281,281,322, + 322,345,345,347,347,2,0,64,64,94,94,2,0,345,345,347,347,2,0,200, + 200,224,224,9,0,30,30,160,160,165,165,179,179,219,219,227,227,335, + 335,338,338,438,438,3,0,113,113,277,277,329,329,2,0,53,53,78,78, + 3,0,173,173,252,252,255,255,5,0,30,30,88,88,182,182,232,232,362, + 362,2,0,92,92,226,226,1,0,448,449,2,0,92,92,407,407,2,0,334,334, + 407,407,2,0,211,211,289,289,3,0,314,314,350,350,445,445,2,0,64,64, + 68,68,5,0,212,212,322,322,343,343,354,354,455,456,2,0,10,10,53,53, + 3,0,211,211,289,289,442,442,5,0,92,92,175,175,226,226,316,316,342, + 342,3,0,175,175,316,316,342,342,3,0,109,109,128,128,344,344,4,0, + 88,88,182,182,232,232,362,362,2,0,151,151,245,245,2,0,306,306,326, + 326,1,0,31,32,2,0,99,99,342,342,2,0,201,201,327,327,2,0,59,59,97, + 97,2,0,213,213,245,245,2,0,313,313,407,407,2,0,207,207,261,261,4, + 0,113,113,115,115,119,119,126,126,2,0,353,353,477,477,2,0,384,385, + 399,399,1,0,384,385,1,0,411,412,1,0,18,19,2,0,117,117,122,122,5, + 0,10,10,16,17,21,21,23,23,25,25,1,0,12,13,3,0,9,9,14,14,27,27,2, + 0,30,30,56,56,3,0,39,39,73,73,95,95,2,0,166,166,188,188,2,0,297, + 297,450,450,2,0,208,208,282,282,3,0,30,30,34,34,90,90,6,0,9,10,12, + 17,21,21,23,23,25,25,27,27,2,0,20,20,22,22,1,0,483,486,11,0,124, + 124,129,249,251,252,254,303,305,379,433,452,455,469,471,471,473, + 473,475,475,478,488,5,0,106,118,120,123,125,125,127,128,472,472, + 4,0,30,52,54,70,72,105,454,454,5,0,304,304,418,424,504,504,513,513, + 521,635,2,0,62,62,116,116,2,0,10,10,20,20,2,0,167,167,507,507,2, + 0,144,144,210,210,36,0,33,33,35,35,43,45,53,53,57,57,61,61,92,92, + 116,116,123,123,130,130,144,144,153,153,157,157,161,161,167,167, + 172,172,207,207,210,210,232,232,240,240,258,258,261,262,272,272, + 286,286,300,300,306,306,312,312,316,317,326,326,353,353,433,434, + 477,477,490,502,506,512,514,518,520,520,11427,0,1497,1,0,0,0,2,1501, + 1,0,0,0,4,1511,1,0,0,0,6,1638,1,0,0,0,8,1640,1,0,0,0,10,1644,1,0, + 0,0,12,1647,1,0,0,0,14,1655,1,0,0,0,16,1660,1,0,0,0,18,1666,1,0, + 0,0,20,1687,1,0,0,0,22,1699,1,0,0,0,24,1701,1,0,0,0,26,1707,1,0, + 0,0,28,1717,1,0,0,0,30,1719,1,0,0,0,32,1728,1,0,0,0,34,1736,1,0, + 0,0,36,1742,1,0,0,0,38,1749,1,0,0,0,40,1751,1,0,0,0,42,1769,1,0, + 0,0,44,1774,1,0,0,0,46,1783,1,0,0,0,48,1785,1,0,0,0,50,1799,1,0, + 0,0,52,1801,1,0,0,0,54,1830,1,0,0,0,56,1832,1,0,0,0,58,1840,1,0, + 0,0,60,1850,1,0,0,0,62,1857,1,0,0,0,64,1863,1,0,0,0,66,1880,1,0, + 0,0,68,1885,1,0,0,0,70,1889,1,0,0,0,72,1891,1,0,0,0,74,1902,1,0, + 0,0,76,1906,1,0,0,0,78,1911,1,0,0,0,80,1916,1,0,0,0,82,1918,1,0, + 0,0,84,1930,1,0,0,0,86,1937,1,0,0,0,88,1939,1,0,0,0,90,1941,1,0, + 0,0,92,1943,1,0,0,0,94,2055,1,0,0,0,96,2057,1,0,0,0,98,2073,1,0, + 0,0,100,2075,1,0,0,0,102,2331,1,0,0,0,104,2338,1,0,0,0,106,2343, + 1,0,0,0,108,2348,1,0,0,0,110,2353,1,0,0,0,112,2361,1,0,0,0,114,2363, + 1,0,0,0,116,2370,1,0,0,0,118,2372,1,0,0,0,120,2380,1,0,0,0,122,2392, + 1,0,0,0,124,2408,1,0,0,0,126,2436,1,0,0,0,128,2438,1,0,0,0,130,2441, + 1,0,0,0,132,2449,1,0,0,0,134,2454,1,0,0,0,136,2485,1,0,0,0,138,2487, + 1,0,0,0,140,2520,1,0,0,0,142,2522,1,0,0,0,144,2527,1,0,0,0,146,2539, + 1,0,0,0,148,2576,1,0,0,0,150,2584,1,0,0,0,152,2586,1,0,0,0,154,2594, + 1,0,0,0,156,2612,1,0,0,0,158,2614,1,0,0,0,160,2663,1,0,0,0,162,2667, + 1,0,0,0,164,2674,1,0,0,0,166,2676,1,0,0,0,168,2684,1,0,0,0,170,2695, + 1,0,0,0,172,2699,1,0,0,0,174,2701,1,0,0,0,176,2706,1,0,0,0,178,2716, + 1,0,0,0,180,2727,1,0,0,0,182,2769,1,0,0,0,184,2774,1,0,0,0,186,2781, + 1,0,0,0,188,2783,1,0,0,0,190,2791,1,0,0,0,192,2794,1,0,0,0,194,2801, + 1,0,0,0,196,2861,1,0,0,0,198,2868,1,0,0,0,200,2870,1,0,0,0,202,2878, + 1,0,0,0,204,2886,1,0,0,0,206,2891,1,0,0,0,208,2893,1,0,0,0,210,2901, + 1,0,0,0,212,2917,1,0,0,0,214,2928,1,0,0,0,216,2930,1,0,0,0,218,2934, + 1,0,0,0,220,2944,1,0,0,0,222,2952,1,0,0,0,224,2956,1,0,0,0,226,2958, + 1,0,0,0,228,2965,1,0,0,0,230,2987,1,0,0,0,232,2992,1,0,0,0,234,2999, + 1,0,0,0,236,3011,1,0,0,0,238,3016,1,0,0,0,240,3023,1,0,0,0,242,3025, + 1,0,0,0,244,3029,1,0,0,0,246,3043,1,0,0,0,248,3054,1,0,0,0,250,3067, + 1,0,0,0,252,3081,1,0,0,0,254,3083,1,0,0,0,256,3099,1,0,0,0,258,3105, + 1,0,0,0,260,3112,1,0,0,0,262,3124,1,0,0,0,264,3138,1,0,0,0,266,3141, + 1,0,0,0,268,3176,1,0,0,0,270,3184,1,0,0,0,272,3186,1,0,0,0,274,3194, + 1,0,0,0,276,3210,1,0,0,0,278,3217,1,0,0,0,280,3223,1,0,0,0,282,3227, + 1,0,0,0,284,3229,1,0,0,0,286,3240,1,0,0,0,288,3242,1,0,0,0,290,3250, + 1,0,0,0,292,3272,1,0,0,0,294,3274,1,0,0,0,296,3284,1,0,0,0,298,3391, + 1,0,0,0,300,3393,1,0,0,0,302,3411,1,0,0,0,304,3414,1,0,0,0,306,3435, + 1,0,0,0,308,3443,1,0,0,0,310,3445,1,0,0,0,312,3453,1,0,0,0,314,3458, + 1,0,0,0,316,3473,1,0,0,0,318,3475,1,0,0,0,320,3478,1,0,0,0,322,3480, + 1,0,0,0,324,3511,1,0,0,0,326,3516,1,0,0,0,328,3518,1,0,0,0,330,3523, + 1,0,0,0,332,3589,1,0,0,0,334,3591,1,0,0,0,336,3606,1,0,0,0,338,3614, + 1,0,0,0,340,3637,1,0,0,0,342,3641,1,0,0,0,344,3661,1,0,0,0,346,3663, + 1,0,0,0,348,3672,1,0,0,0,350,3683,1,0,0,0,352,3698,1,0,0,0,354,3707, + 1,0,0,0,356,3712,1,0,0,0,358,3717,1,0,0,0,360,3722,1,0,0,0,362,3727, + 1,0,0,0,364,3729,1,0,0,0,366,3731,1,0,0,0,368,3740,1,0,0,0,370,3780, + 1,0,0,0,372,3786,1,0,0,0,374,3788,1,0,0,0,376,3803,1,0,0,0,378,3808, + 1,0,0,0,380,3811,1,0,0,0,382,3815,1,0,0,0,384,3820,1,0,0,0,386,3822, + 1,0,0,0,388,3824,1,0,0,0,390,3832,1,0,0,0,392,3834,1,0,0,0,394,3842, + 1,0,0,0,396,3844,1,0,0,0,398,3848,1,0,0,0,400,3861,1,0,0,0,402,3866, + 1,0,0,0,404,3871,1,0,0,0,406,3885,1,0,0,0,408,3913,1,0,0,0,410,3915, + 1,0,0,0,412,3923,1,0,0,0,414,3929,1,0,0,0,416,3937,1,0,0,0,418,3949, + 1,0,0,0,420,3951,1,0,0,0,422,4068,1,0,0,0,424,4070,1,0,0,0,426,4081, + 1,0,0,0,428,4092,1,0,0,0,430,4094,1,0,0,0,432,4105,1,0,0,0,434,4109, + 1,0,0,0,436,4154,1,0,0,0,438,4160,1,0,0,0,440,4162,1,0,0,0,442,4178, + 1,0,0,0,444,4213,1,0,0,0,446,4218,1,0,0,0,448,4227,1,0,0,0,450,4229, + 1,0,0,0,452,4254,1,0,0,0,454,4256,1,0,0,0,456,4276,1,0,0,0,458,4296, + 1,0,0,0,460,4316,1,0,0,0,462,4318,1,0,0,0,464,4324,1,0,0,0,466,4409, + 1,0,0,0,468,4434,1,0,0,0,470,4441,1,0,0,0,472,4457,1,0,0,0,474,4459, + 1,0,0,0,476,4461,1,0,0,0,478,4469,1,0,0,0,480,4475,1,0,0,0,482,4479, + 1,0,0,0,484,4487,1,0,0,0,486,4498,1,0,0,0,488,4647,1,0,0,0,490,4651, + 1,0,0,0,492,4744,1,0,0,0,494,4749,1,0,0,0,496,4753,1,0,0,0,498,4759, + 1,0,0,0,500,4827,1,0,0,0,502,4829,1,0,0,0,504,4833,1,0,0,0,506,4835, + 1,0,0,0,508,4862,1,0,0,0,510,4879,1,0,0,0,512,4881,1,0,0,0,514,4898, + 1,0,0,0,516,4958,1,0,0,0,518,4960,1,0,0,0,520,4971,1,0,0,0,522,4977, + 1,0,0,0,524,4979,1,0,0,0,526,5003,1,0,0,0,528,5009,1,0,0,0,530,5015, + 1,0,0,0,532,5017,1,0,0,0,534,5037,1,0,0,0,536,5066,1,0,0,0,538,5068, + 1,0,0,0,540,5111,1,0,0,0,542,5115,1,0,0,0,544,5120,1,0,0,0,546,5122, + 1,0,0,0,548,5141,1,0,0,0,550,5154,1,0,0,0,552,5169,1,0,0,0,554,5174, + 1,0,0,0,556,5178,1,0,0,0,558,5183,1,0,0,0,560,5190,1,0,0,0,562,5192, + 1,0,0,0,564,5217,1,0,0,0,566,5219,1,0,0,0,568,5227,1,0,0,0,570,5247, + 1,0,0,0,572,5249,1,0,0,0,574,5257,1,0,0,0,576,5275,1,0,0,0,578,5284, + 1,0,0,0,580,5290,1,0,0,0,582,5292,1,0,0,0,584,5308,1,0,0,0,586,5310, + 1,0,0,0,588,5325,1,0,0,0,590,5333,1,0,0,0,592,5336,1,0,0,0,594,5345, + 1,0,0,0,596,5386,1,0,0,0,598,5396,1,0,0,0,600,5403,1,0,0,0,602,5405, + 1,0,0,0,604,5420,1,0,0,0,606,5422,1,0,0,0,608,5425,1,0,0,0,610,5433, + 1,0,0,0,612,5480,1,0,0,0,614,5494,1,0,0,0,616,5508,1,0,0,0,618,5532, + 1,0,0,0,620,5539,1,0,0,0,622,5544,1,0,0,0,624,5552,1,0,0,0,626,5555, + 1,0,0,0,628,5559,1,0,0,0,630,5566,1,0,0,0,632,5602,1,0,0,0,634,5609, + 1,0,0,0,636,5611,1,0,0,0,638,5624,1,0,0,0,640,5626,1,0,0,0,642,5671, + 1,0,0,0,644,5673,1,0,0,0,646,5708,1,0,0,0,648,5710,1,0,0,0,650,5712, + 1,0,0,0,652,5714,1,0,0,0,654,5722,1,0,0,0,656,5736,1,0,0,0,658,6206, + 1,0,0,0,660,6210,1,0,0,0,662,6215,1,0,0,0,664,6286,1,0,0,0,666,6505, + 1,0,0,0,668,6507,1,0,0,0,670,6515,1,0,0,0,672,6531,1,0,0,0,674,6538, + 1,0,0,0,676,6540,1,0,0,0,678,6731,1,0,0,0,680,6733,1,0,0,0,682,6741, + 1,0,0,0,684,6749,1,0,0,0,686,6778,1,0,0,0,688,6780,1,0,0,0,690,6789, + 1,0,0,0,692,6797,1,0,0,0,694,6836,1,0,0,0,696,6850,1,0,0,0,698,6852, + 1,0,0,0,700,6872,1,0,0,0,702,6874,1,0,0,0,704,6887,1,0,0,0,706,6891, + 1,0,0,0,708,6893,1,0,0,0,710,6898,1,0,0,0,712,6900,1,0,0,0,714,6907, + 1,0,0,0,716,6909,1,0,0,0,718,6916,1,0,0,0,720,6971,1,0,0,0,722,6976, + 1,0,0,0,724,6988,1,0,0,0,726,6990,1,0,0,0,728,7006,1,0,0,0,730,7008, + 1,0,0,0,732,7040,1,0,0,0,734,7042,1,0,0,0,736,7045,1,0,0,0,738,7057, + 1,0,0,0,740,7059,1,0,0,0,742,7076,1,0,0,0,744,7078,1,0,0,0,746,7089, + 1,0,0,0,748,7094,1,0,0,0,750,7115,1,0,0,0,752,7121,1,0,0,0,754,7126, + 1,0,0,0,756,7133,1,0,0,0,758,7161,1,0,0,0,760,7163,1,0,0,0,762,7242, + 1,0,0,0,764,7244,1,0,0,0,766,7270,1,0,0,0,768,7275,1,0,0,0,770,7296, + 1,0,0,0,772,7308,1,0,0,0,774,7310,1,0,0,0,776,7318,1,0,0,0,778,7320, + 1,0,0,0,780,7325,1,0,0,0,782,7330,1,0,0,0,784,7334,1,0,0,0,786,7341, + 1,0,0,0,788,7343,1,0,0,0,790,7355,1,0,0,0,792,7380,1,0,0,0,794,7391, + 1,0,0,0,796,7393,1,0,0,0,798,7398,1,0,0,0,800,7403,1,0,0,0,802,7405, + 1,0,0,0,804,7416,1,0,0,0,806,7422,1,0,0,0,808,7451,1,0,0,0,810,7458, + 1,0,0,0,812,7470,1,0,0,0,814,7473,1,0,0,0,816,7482,1,0,0,0,818,7506, + 1,0,0,0,820,7508,1,0,0,0,822,7510,1,0,0,0,824,7518,1,0,0,0,826,7534, + 1,0,0,0,828,7545,1,0,0,0,830,7550,1,0,0,0,832,7552,1,0,0,0,834,7583, + 1,0,0,0,836,7602,1,0,0,0,838,7615,1,0,0,0,840,7623,1,0,0,0,842,7635, + 1,0,0,0,844,7637,1,0,0,0,846,7648,1,0,0,0,848,7662,1,0,0,0,850,7666, + 1,0,0,0,852,7672,1,0,0,0,854,7675,1,0,0,0,856,7685,1,0,0,0,858,7710, + 1,0,0,0,860,7712,1,0,0,0,862,7715,1,0,0,0,864,7732,1,0,0,0,866,7739, + 1,0,0,0,868,7743,1,0,0,0,870,7753,1,0,0,0,872,7778,1,0,0,0,874,7780, + 1,0,0,0,876,7790,1,0,0,0,878,7815,1,0,0,0,880,7829,1,0,0,0,882,7831, + 1,0,0,0,884,7843,1,0,0,0,886,7855,1,0,0,0,888,7857,1,0,0,0,890,7879, + 1,0,0,0,892,7883,1,0,0,0,894,7888,1,0,0,0,896,7890,1,0,0,0,898,7898, + 1,0,0,0,900,7902,1,0,0,0,902,7904,1,0,0,0,904,7908,1,0,0,0,906,7916, + 1,0,0,0,908,7932,1,0,0,0,910,7936,1,0,0,0,912,7961,1,0,0,0,914,7963, + 1,0,0,0,916,7972,1,0,0,0,918,7974,1,0,0,0,920,7981,1,0,0,0,922,7985, + 1,0,0,0,924,7987,1,0,0,0,926,7989,1,0,0,0,928,7995,1,0,0,0,930,7997, + 1,0,0,0,932,8024,1,0,0,0,934,8029,1,0,0,0,936,8039,1,0,0,0,938,8041, + 1,0,0,0,940,8045,1,0,0,0,942,8060,1,0,0,0,944,8062,1,0,0,0,946,8079, + 1,0,0,0,948,8090,1,0,0,0,950,8092,1,0,0,0,952,8148,1,0,0,0,954,8172, + 1,0,0,0,956,8183,1,0,0,0,958,8186,1,0,0,0,960,8208,1,0,0,0,962,8210, + 1,0,0,0,964,8221,1,0,0,0,966,8235,1,0,0,0,968,8237,1,0,0,0,970,8245, + 1,0,0,0,972,8252,1,0,0,0,974,8279,1,0,0,0,976,8281,1,0,0,0,978,8290, + 1,0,0,0,980,8295,1,0,0,0,982,8300,1,0,0,0,984,8310,1,0,0,0,986,8314, + 1,0,0,0,988,8316,1,0,0,0,990,8324,1,0,0,0,992,8328,1,0,0,0,994,8361, + 1,0,0,0,996,8371,1,0,0,0,998,8383,1,0,0,0,1000,8385,1,0,0,0,1002, + 8399,1,0,0,0,1004,8428,1,0,0,0,1006,8443,1,0,0,0,1008,8449,1,0,0, + 0,1010,8455,1,0,0,0,1012,8467,1,0,0,0,1014,8485,1,0,0,0,1016,8492, + 1,0,0,0,1018,8496,1,0,0,0,1020,8500,1,0,0,0,1022,8502,1,0,0,0,1024, + 8508,1,0,0,0,1026,8511,1,0,0,0,1028,8518,1,0,0,0,1030,8531,1,0,0, + 0,1032,8535,1,0,0,0,1034,8537,1,0,0,0,1036,8546,1,0,0,0,1038,8555, + 1,0,0,0,1040,8583,1,0,0,0,1042,8585,1,0,0,0,1044,8595,1,0,0,0,1046, + 8597,1,0,0,0,1048,8599,1,0,0,0,1050,8603,1,0,0,0,1052,8611,1,0,0, + 0,1054,8619,1,0,0,0,1056,8627,1,0,0,0,1058,8641,1,0,0,0,1060,8650, + 1,0,0,0,1062,8654,1,0,0,0,1064,8658,1,0,0,0,1066,8684,1,0,0,0,1068, + 8698,1,0,0,0,1070,8713,1,0,0,0,1072,8723,1,0,0,0,1074,8727,1,0,0, + 0,1076,8735,1,0,0,0,1078,8743,1,0,0,0,1080,8749,1,0,0,0,1082,8753, + 1,0,0,0,1084,8760,1,0,0,0,1086,8765,1,0,0,0,1088,8780,1,0,0,0,1090, + 8860,1,0,0,0,1092,8862,1,0,0,0,1094,8864,1,0,0,0,1096,8894,1,0,0, + 0,1098,8898,1,0,0,0,1100,9077,1,0,0,0,1102,9084,1,0,0,0,1104,9097, + 1,0,0,0,1106,9099,1,0,0,0,1108,9104,1,0,0,0,1110,9112,1,0,0,0,1112, + 9117,1,0,0,0,1114,9124,1,0,0,0,1116,9141,1,0,0,0,1118,9143,1,0,0, + 0,1120,9153,1,0,0,0,1122,9162,1,0,0,0,1124,9167,1,0,0,0,1126,9169, + 1,0,0,0,1128,9177,1,0,0,0,1130,9187,1,0,0,0,1132,9189,1,0,0,0,1134, + 9198,1,0,0,0,1136,9204,1,0,0,0,1138,9219,1,0,0,0,1140,9227,1,0,0, + 0,1142,9236,1,0,0,0,1144,9248,1,0,0,0,1146,9262,1,0,0,0,1148,9264, + 1,0,0,0,1150,9271,1,0,0,0,1152,9277,1,0,0,0,1154,9281,1,0,0,0,1156, + 9283,1,0,0,0,1158,9291,1,0,0,0,1160,9299,1,0,0,0,1162,9313,1,0,0, + 0,1164,9315,1,0,0,0,1166,9323,1,0,0,0,1168,9336,1,0,0,0,1170,9338, + 1,0,0,0,1172,9346,1,0,0,0,1174,9353,1,0,0,0,1176,9366,1,0,0,0,1178, + 9376,1,0,0,0,1180,9378,1,0,0,0,1182,9380,1,0,0,0,1184,9394,1,0,0, + 0,1186,9423,1,0,0,0,1188,9432,1,0,0,0,1190,9439,1,0,0,0,1192,9441, + 1,0,0,0,1194,9448,1,0,0,0,1196,9452,1,0,0,0,1198,9460,1,0,0,0,1200, + 9464,1,0,0,0,1202,9466,1,0,0,0,1204,9487,1,0,0,0,1206,9490,1,0,0, + 0,1208,9497,1,0,0,0,1210,9502,1,0,0,0,1212,9504,1,0,0,0,1214,9520, + 1,0,0,0,1216,9522,1,0,0,0,1218,9530,1,0,0,0,1220,9534,1,0,0,0,1222, + 9542,1,0,0,0,1224,9544,1,0,0,0,1226,9546,1,0,0,0,1228,9555,1,0,0, + 0,1230,9589,1,0,0,0,1232,9591,1,0,0,0,1234,9593,1,0,0,0,1236,9595, + 1,0,0,0,1238,9597,1,0,0,0,1240,9599,1,0,0,0,1242,9613,1,0,0,0,1244, + 9618,1,0,0,0,1246,9625,1,0,0,0,1248,9627,1,0,0,0,1250,9632,1,0,0, + 0,1252,9634,1,0,0,0,1254,9648,1,0,0,0,1256,9654,1,0,0,0,1258,9660, + 1,0,0,0,1260,9666,1,0,0,0,1262,9674,1,0,0,0,1264,9683,1,0,0,0,1266, + 9685,1,0,0,0,1268,9687,1,0,0,0,1270,9741,1,0,0,0,1272,9743,1,0,0, + 0,1274,9745,1,0,0,0,1276,9747,1,0,0,0,1278,9749,1,0,0,0,1280,9756, + 1,0,0,0,1282,9779,1,0,0,0,1284,9781,1,0,0,0,1286,9787,1,0,0,0,1288, + 9791,1,0,0,0,1290,9793,1,0,0,0,1292,9800,1,0,0,0,1294,9807,1,0,0, + 0,1296,9810,1,0,0,0,1298,9814,1,0,0,0,1300,9821,1,0,0,0,1302,9823, + 1,0,0,0,1304,9847,1,0,0,0,1306,9849,1,0,0,0,1308,9856,1,0,0,0,1310, + 9858,1,0,0,0,1312,9866,1,0,0,0,1314,9869,1,0,0,0,1316,9873,1,0,0, + 0,1318,9875,1,0,0,0,1320,9879,1,0,0,0,1322,9881,1,0,0,0,1324,9886, + 1,0,0,0,1326,9891,1,0,0,0,1328,9897,1,0,0,0,1330,9901,1,0,0,0,1332, + 9903,1,0,0,0,1334,9908,1,0,0,0,1336,9938,1,0,0,0,1338,9940,1,0,0, + 0,1340,9958,1,0,0,0,1342,9962,1,0,0,0,1344,9964,1,0,0,0,1346,9969, + 1,0,0,0,1348,9978,1,0,0,0,1350,9980,1,0,0,0,1352,9988,1,0,0,0,1354, + 9992,1,0,0,0,1356,9994,1,0,0,0,1358,9998,1,0,0,0,1360,10009,1,0, + 0,0,1362,10026,1,0,0,0,1364,10032,1,0,0,0,1366,10034,1,0,0,0,1368, + 10044,1,0,0,0,1370,10047,1,0,0,0,1372,10051,1,0,0,0,1374,10059,1, + 0,0,0,1376,10061,1,0,0,0,1378,10064,1,0,0,0,1380,10069,1,0,0,0,1382, + 10074,1,0,0,0,1384,10096,1,0,0,0,1386,10110,1,0,0,0,1388,10114,1, + 0,0,0,1390,10119,1,0,0,0,1392,10121,1,0,0,0,1394,10123,1,0,0,0,1396, + 10135,1,0,0,0,1398,10137,1,0,0,0,1400,10142,1,0,0,0,1402,10144,1, + 0,0,0,1404,10162,1,0,0,0,1406,10190,1,0,0,0,1408,10200,1,0,0,0,1410, + 10209,1,0,0,0,1412,10221,1,0,0,0,1414,10223,1,0,0,0,1416,10227,1, + 0,0,0,1418,10235,1,0,0,0,1420,10237,1,0,0,0,1422,10244,1,0,0,0,1424, + 10247,1,0,0,0,1426,10263,1,0,0,0,1428,10265,1,0,0,0,1430,10279,1, + 0,0,0,1432,10281,1,0,0,0,1434,10319,1,0,0,0,1436,10321,1,0,0,0,1438, + 10329,1,0,0,0,1440,10334,1,0,0,0,1442,10353,1,0,0,0,1444,10355,1, + 0,0,0,1446,10360,1,0,0,0,1448,10364,1,0,0,0,1450,10367,1,0,0,0,1452, + 10371,1,0,0,0,1454,10381,1,0,0,0,1456,10395,1,0,0,0,1458,10399,1, + 0,0,0,1460,10404,1,0,0,0,1462,10407,1,0,0,0,1464,10411,1,0,0,0,1466, + 10416,1,0,0,0,1468,10427,1,0,0,0,1470,10431,1,0,0,0,1472,10435,1, + 0,0,0,1474,10439,1,0,0,0,1476,10444,1,0,0,0,1478,10448,1,0,0,0,1480, + 10450,1,0,0,0,1482,10452,1,0,0,0,1484,10462,1,0,0,0,1486,10464,1, + 0,0,0,1488,10466,1,0,0,0,1490,10468,1,0,0,0,1492,10470,1,0,0,0,1494, + 10479,1,0,0,0,1496,1498,3,4,2,0,1497,1496,1,0,0,0,1497,1498,1,0, + 0,0,1498,1499,1,0,0,0,1499,1500,5,0,0,1,1500,1,1,0,0,0,1501,1502, + 3,1278,639,0,1502,3,1,0,0,0,1503,1505,3,6,3,0,1504,1506,5,7,0,0, + 1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1512,1,0,0,0,1507,1508, + 3,6,3,0,1508,1509,5,7,0,0,1509,1510,3,4,2,0,1510,1512,1,0,0,0,1511, + 1503,1,0,0,0,1511,1507,1,0,0,0,1512,5,1,0,0,0,1513,1639,3,416,208, + 0,1514,1639,3,750,375,0,1515,1639,3,744,372,0,1516,1639,3,746,373, + 0,1517,1639,3,532,266,0,1518,1639,3,756,378,0,1519,1639,3,436,218, + 0,1520,1639,3,294,147,0,1521,1639,3,298,149,0,1522,1639,3,306,153, + 0,1523,1639,3,330,165,0,1524,1639,3,610,305,0,1525,1639,3,36,18, + 0,1526,1639,3,664,332,0,1527,1639,3,666,333,0,1528,1639,3,678,339, + 0,1529,1639,3,668,334,0,1530,1639,3,676,338,0,1531,1639,3,350,175, + 0,1532,1639,3,262,131,0,1533,1639,3,752,376,0,1534,1639,3,94,47, + 0,1535,1639,3,656,328,0,1536,1639,3,132,66,0,1537,1639,3,686,343, + 0,1538,1639,3,30,15,0,1539,1639,3,26,13,0,1540,1639,3,694,347,0, + 1541,1639,3,246,123,0,1542,1639,3,762,381,0,1543,1639,3,760,380, + 0,1544,1639,3,346,173,0,1545,1639,3,772,386,0,1546,1639,3,10,5,0, + 1547,1639,3,90,45,0,1548,1639,3,138,69,0,1549,1639,3,766,383,0,1550, + 1639,3,488,244,0,1551,1639,3,84,42,0,1552,1639,3,140,70,0,1553,1639, + 3,366,183,0,1554,1639,3,248,124,0,1555,1639,3,420,210,0,1556,1639, + 3,632,316,0,1557,1639,3,764,382,0,1558,1639,3,754,377,0,1559,1639, + 3,290,145,0,1560,1639,3,300,150,0,1561,1639,3,324,162,0,1562,1639, + 3,332,166,0,1563,1639,3,562,281,0,1564,1639,3,34,17,0,1565,1639, + 3,254,127,0,1566,1639,3,440,220,0,1567,1639,3,450,225,0,1568,1639, + 3,680,340,0,1569,1639,3,452,226,0,1570,1639,3,348,174,0,1571,1639, + 3,274,137,0,1572,1639,3,40,20,0,1573,1639,3,260,130,0,1574,1639, + 3,158,79,0,1575,1639,3,688,344,0,1576,1639,3,244,122,0,1577,1639, + 3,284,142,0,1578,1639,3,640,320,0,1579,1639,3,370,185,0,1580,1639, + 3,408,204,0,1581,1639,3,12,6,0,1582,1639,3,24,12,0,1583,1639,3,340, + 170,0,1584,1639,3,736,368,0,1585,1639,3,812,406,0,1586,1639,3,862, + 431,0,1587,1639,3,422,211,0,1588,1639,3,840,420,0,1589,1639,3,92, + 46,0,1590,1639,3,626,313,0,1591,1639,3,636,318,0,1592,1639,3,458, + 229,0,1593,1639,3,460,230,0,1594,1639,3,462,231,0,1595,1639,3,466, + 233,0,1596,1639,3,696,348,0,1597,1639,3,288,144,0,1598,1639,3,644, + 322,0,1599,1639,3,32,16,0,1600,1639,3,344,172,0,1601,1639,3,748, + 374,0,1602,1639,3,808,404,0,1603,1639,3,792,396,0,1604,1639,3,498, + 249,0,1605,1639,3,506,253,0,1606,1639,3,524,262,0,1607,1639,3,334, + 167,0,1608,1639,3,540,270,0,1609,1639,3,814,407,0,1610,1639,3,832, + 416,0,1611,1639,3,716,358,0,1612,1639,3,258,129,0,1613,1639,3,734, + 367,0,1614,1639,3,844,422,0,1615,1639,3,712,356,0,1616,1639,3,802, + 401,0,1617,1639,3,464,232,0,1618,1639,3,646,323,0,1619,1639,3,614, + 307,0,1620,1639,3,612,306,0,1621,1639,3,616,308,0,1622,1639,3,658, + 329,0,1623,1639,3,508,254,0,1624,1639,3,526,263,0,1625,1639,3,698, + 349,0,1626,1639,3,492,246,0,1627,1639,3,868,434,0,1628,1639,3,720, + 360,0,1629,1639,3,484,242,0,1630,1639,3,718,359,0,1631,1639,3,854, + 427,0,1632,1639,3,770,385,0,1633,1639,3,72,36,0,1634,1639,3,48,24, + 0,1635,1639,3,82,41,0,1636,1639,3,730,365,0,1637,1639,3,8,4,0,1638, + 1513,1,0,0,0,1638,1514,1,0,0,0,1638,1515,1,0,0,0,1638,1516,1,0,0, + 0,1638,1517,1,0,0,0,1638,1518,1,0,0,0,1638,1519,1,0,0,0,1638,1520, + 1,0,0,0,1638,1521,1,0,0,0,1638,1522,1,0,0,0,1638,1523,1,0,0,0,1638, + 1524,1,0,0,0,1638,1525,1,0,0,0,1638,1526,1,0,0,0,1638,1527,1,0,0, + 0,1638,1528,1,0,0,0,1638,1529,1,0,0,0,1638,1530,1,0,0,0,1638,1531, + 1,0,0,0,1638,1532,1,0,0,0,1638,1533,1,0,0,0,1638,1534,1,0,0,0,1638, + 1535,1,0,0,0,1638,1536,1,0,0,0,1638,1537,1,0,0,0,1638,1538,1,0,0, + 0,1638,1539,1,0,0,0,1638,1540,1,0,0,0,1638,1541,1,0,0,0,1638,1542, + 1,0,0,0,1638,1543,1,0,0,0,1638,1544,1,0,0,0,1638,1545,1,0,0,0,1638, + 1546,1,0,0,0,1638,1547,1,0,0,0,1638,1548,1,0,0,0,1638,1549,1,0,0, + 0,1638,1550,1,0,0,0,1638,1551,1,0,0,0,1638,1552,1,0,0,0,1638,1553, + 1,0,0,0,1638,1554,1,0,0,0,1638,1555,1,0,0,0,1638,1556,1,0,0,0,1638, + 1557,1,0,0,0,1638,1558,1,0,0,0,1638,1559,1,0,0,0,1638,1560,1,0,0, + 0,1638,1561,1,0,0,0,1638,1562,1,0,0,0,1638,1563,1,0,0,0,1638,1564, + 1,0,0,0,1638,1565,1,0,0,0,1638,1566,1,0,0,0,1638,1567,1,0,0,0,1638, + 1568,1,0,0,0,1638,1569,1,0,0,0,1638,1570,1,0,0,0,1638,1571,1,0,0, + 0,1638,1572,1,0,0,0,1638,1573,1,0,0,0,1638,1574,1,0,0,0,1638,1575, + 1,0,0,0,1638,1576,1,0,0,0,1638,1577,1,0,0,0,1638,1578,1,0,0,0,1638, + 1579,1,0,0,0,1638,1580,1,0,0,0,1638,1581,1,0,0,0,1638,1582,1,0,0, + 0,1638,1583,1,0,0,0,1638,1584,1,0,0,0,1638,1585,1,0,0,0,1638,1586, + 1,0,0,0,1638,1587,1,0,0,0,1638,1588,1,0,0,0,1638,1589,1,0,0,0,1638, + 1590,1,0,0,0,1638,1591,1,0,0,0,1638,1592,1,0,0,0,1638,1593,1,0,0, + 0,1638,1594,1,0,0,0,1638,1595,1,0,0,0,1638,1596,1,0,0,0,1638,1597, + 1,0,0,0,1638,1598,1,0,0,0,1638,1599,1,0,0,0,1638,1600,1,0,0,0,1638, + 1601,1,0,0,0,1638,1602,1,0,0,0,1638,1603,1,0,0,0,1638,1604,1,0,0, + 0,1638,1605,1,0,0,0,1638,1606,1,0,0,0,1638,1607,1,0,0,0,1638,1608, + 1,0,0,0,1638,1609,1,0,0,0,1638,1610,1,0,0,0,1638,1611,1,0,0,0,1638, + 1612,1,0,0,0,1638,1613,1,0,0,0,1638,1614,1,0,0,0,1638,1615,1,0,0, + 0,1638,1616,1,0,0,0,1638,1617,1,0,0,0,1638,1618,1,0,0,0,1638,1619, + 1,0,0,0,1638,1620,1,0,0,0,1638,1621,1,0,0,0,1638,1622,1,0,0,0,1638, + 1623,1,0,0,0,1638,1624,1,0,0,0,1638,1625,1,0,0,0,1638,1626,1,0,0, + 0,1638,1627,1,0,0,0,1638,1628,1,0,0,0,1638,1629,1,0,0,0,1638,1630, + 1,0,0,0,1638,1631,1,0,0,0,1638,1632,1,0,0,0,1638,1633,1,0,0,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,7,1,0,0,0,1640,1642,5,668,0,0,1641,1643,5,669,0,0,1642,1641, + 1,0,0,0,1642,1643,1,0,0,0,1643,9,1,0,0,0,1644,1645,5,433,0,0,1645, + 1646,3,1094,547,0,1646,11,1,0,0,0,1647,1648,5,46,0,0,1648,1649,5, + 311,0,0,1649,1650,3,1248,624,0,1650,1651,3,14,7,0,1651,1652,3,16, + 8,0,1652,13,1,0,0,0,1653,1656,5,105,0,0,1654,1656,1,0,0,0,1655,1653, + 1,0,0,0,1655,1654,1,0,0,0,1656,15,1,0,0,0,1657,1659,3,22,11,0,1658, + 1657,1,0,0,0,1659,1662,1,0,0,0,1660,1658,1,0,0,0,1660,1661,1,0,0, + 0,1661,17,1,0,0,0,1662,1660,1,0,0,0,1663,1665,3,20,10,0,1664,1663, + 1,0,0,0,1665,1668,1,0,0,0,1666,1664,1,0,0,0,1666,1667,1,0,0,0,1667, + 19,1,0,0,0,1668,1666,1,0,0,0,1669,1672,5,280,0,0,1670,1673,3,1240, + 620,0,1671,1673,5,78,0,0,1672,1670,1,0,0,0,1672,1671,1,0,0,0,1673, + 1688,1,0,0,0,1674,1675,7,0,0,0,1675,1676,5,280,0,0,1676,1688,3,1240, + 620,0,1677,1688,5,228,0,0,1678,1679,5,164,0,0,1679,1680,5,74,0,0, + 1680,1688,3,1246,623,0,1681,1682,5,364,0,0,1682,1683,5,361,0,0,1683, + 1688,3,1240,620,0,1684,1685,5,99,0,0,1685,1688,3,1252,626,0,1686, + 1688,3,1264,632,0,1687,1669,1,0,0,0,1687,1674,1,0,0,0,1687,1677, + 1,0,0,0,1687,1678,1,0,0,0,1687,1681,1,0,0,0,1687,1684,1,0,0,0,1687, + 1686,1,0,0,0,1688,21,1,0,0,0,1689,1700,3,20,10,0,1690,1691,5,341, + 0,0,1691,1700,3,1238,619,0,1692,1693,5,134,0,0,1693,1700,3,1252, + 626,0,1694,1695,5,311,0,0,1695,1700,3,1252,626,0,1696,1697,5,68, + 0,0,1697,1698,7,1,0,0,1698,1700,3,1252,626,0,1699,1689,1,0,0,0,1699, + 1690,1,0,0,0,1699,1692,1,0,0,0,1699,1694,1,0,0,0,1699,1696,1,0,0, + 0,1700,23,1,0,0,0,1701,1702,5,46,0,0,1702,1703,5,99,0,0,1703,1704, + 3,1248,624,0,1704,1705,3,14,7,0,1705,1706,3,16,8,0,1706,25,1,0,0, + 0,1707,1708,5,138,0,0,1708,1709,7,2,0,0,1709,1710,3,1250,625,0,1710, + 1711,3,14,7,0,1711,1712,3,18,9,0,1712,27,1,0,0,0,1713,1718,1,0,0, + 0,1714,1715,5,68,0,0,1715,1716,5,175,0,0,1716,1718,3,1222,611,0, + 1717,1713,1,0,0,0,1717,1714,1,0,0,0,1718,29,1,0,0,0,1719,1720,5, + 138,0,0,1720,1722,7,2,0,0,1721,1723,5,30,0,0,1722,1721,1,0,0,0,1722, + 1723,1,0,0,0,1723,1724,1,0,0,0,1724,1725,3,1250,625,0,1725,1726, + 3,28,14,0,1726,1727,3,78,39,0,1727,31,1,0,0,0,1728,1729,5,191,0, + 0,1729,1732,7,3,0,0,1730,1731,5,220,0,0,1731,1733,5,389,0,0,1732, + 1730,1,0,0,0,1732,1733,1,0,0,0,1733,1734,1,0,0,0,1734,1735,3,1252, + 626,0,1735,33,1,0,0,0,1736,1737,5,46,0,0,1737,1738,5,66,0,0,1738, + 1739,3,1248,624,0,1739,1740,3,14,7,0,1740,1741,3,16,8,0,1741,35, + 1,0,0,0,1742,1743,5,138,0,0,1743,1744,5,66,0,0,1744,1745,3,1250, + 625,0,1745,1746,3,38,19,0,1746,1747,5,99,0,0,1747,1748,3,1252,626, + 0,1748,37,1,0,0,0,1749,1750,7,4,0,0,1750,39,1,0,0,0,1751,1752,5, + 46,0,0,1752,1756,5,316,0,0,1753,1754,5,220,0,0,1754,1755,5,77,0, + 0,1755,1757,5,389,0,0,1756,1753,1,0,0,0,1756,1757,1,0,0,0,1757,1763, + 1,0,0,0,1758,1759,3,42,21,0,1759,1760,5,106,0,0,1760,1761,3,1250, + 625,0,1761,1764,1,0,0,0,1762,1764,3,1254,627,0,1763,1758,1,0,0,0, + 1763,1762,1,0,0,0,1764,1765,1,0,0,0,1765,1766,3,44,22,0,1766,41, + 1,0,0,0,1767,1770,3,1254,627,0,1768,1770,1,0,0,0,1769,1767,1,0,0, + 0,1769,1768,1,0,0,0,1770,43,1,0,0,0,1771,1773,3,46,23,0,1772,1771, + 1,0,0,0,1773,1776,1,0,0,0,1774,1772,1,0,0,0,1774,1775,1,0,0,0,1775, + 45,1,0,0,0,1776,1774,1,0,0,0,1777,1784,3,158,79,0,1778,1784,3,540, + 270,0,1779,1784,3,260,130,0,1780,1784,3,370,185,0,1781,1784,3,506, + 253,0,1782,1784,3,730,365,0,1783,1777,1,0,0,0,1783,1778,1,0,0,0, + 1783,1779,1,0,0,0,1783,1780,1,0,0,0,1783,1781,1,0,0,0,1783,1782, + 1,0,0,0,1784,47,1,0,0,0,1785,1787,5,326,0,0,1786,1788,7,5,0,0,1787, + 1786,1,0,0,0,1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1790,3,50, + 25,0,1790,49,1,0,0,0,1791,1792,5,349,0,0,1792,1800,3,726,363,0,1793, + 1794,5,325,0,0,1794,1795,5,154,0,0,1795,1796,5,36,0,0,1796,1797, + 5,349,0,0,1797,1800,3,726,363,0,1798,1800,3,54,27,0,1799,1791,1, + 0,0,0,1799,1793,1,0,0,0,1799,1798,1,0,0,0,1800,51,1,0,0,0,1801,1802, + 3,56,28,0,1802,1803,7,6,0,0,1803,1804,3,58,29,0,1804,53,1,0,0,0, + 1805,1831,3,52,26,0,1806,1807,3,56,28,0,1807,1808,5,64,0,0,1808, + 1809,5,434,0,0,1809,1831,1,0,0,0,1810,1811,5,411,0,0,1811,1812,5, + 379,0,0,1812,1831,3,66,33,0,1813,1814,5,152,0,0,1814,1831,3,1240, + 620,0,1815,1816,5,316,0,0,1816,1831,3,1240,620,0,1817,1818,5,260, + 0,0,1818,1831,3,68,34,0,1819,1820,5,311,0,0,1820,1831,3,70,35,0, + 1821,1822,5,325,0,0,1822,1823,5,106,0,0,1823,1831,3,70,35,0,1824, + 1825,5,376,0,0,1825,1826,5,272,0,0,1826,1831,3,1112,556,0,1827,1828, + 5,349,0,0,1828,1829,5,330,0,0,1829,1831,3,1240,620,0,1830,1805,1, + 0,0,0,1830,1806,1,0,0,0,1830,1810,1,0,0,0,1830,1813,1,0,0,0,1830, + 1815,1,0,0,0,1830,1817,1,0,0,0,1830,1819,1,0,0,0,1830,1821,1,0,0, + 0,1830,1824,1,0,0,0,1830,1827,1,0,0,0,1831,55,1,0,0,0,1832,1837, + 3,1254,627,0,1833,1834,5,11,0,0,1834,1836,3,1254,627,0,1835,1833, + 1,0,0,0,1836,1839,1,0,0,0,1837,1835,1,0,0,0,1837,1838,1,0,0,0,1838, + 57,1,0,0,0,1839,1837,1,0,0,0,1840,1845,3,60,30,0,1841,1842,5,6,0, + 0,1842,1844,3,60,30,0,1843,1841,1,0,0,0,1844,1847,1,0,0,0,1845,1843, + 1,0,0,0,1845,1846,1,0,0,0,1846,59,1,0,0,0,1847,1845,1,0,0,0,1848, + 1851,3,64,32,0,1849,1851,3,270,135,0,1850,1848,1,0,0,0,1850,1849, + 1,0,0,0,1851,61,1,0,0,0,1852,1853,5,293,0,0,1853,1858,7,7,0,0,1854, + 1855,5,303,0,0,1855,1858,5,293,0,0,1856,1858,5,323,0,0,1857,1852, + 1,0,0,0,1857,1854,1,0,0,0,1857,1856,1,0,0,0,1858,63,1,0,0,0,1859, + 1864,5,96,0,0,1860,1864,5,60,0,0,1861,1864,5,80,0,0,1862,1864,3, + 70,35,0,1863,1859,1,0,0,0,1863,1860,1,0,0,0,1863,1861,1,0,0,0,1863, + 1862,1,0,0,0,1864,65,1,0,0,0,1865,1881,3,1240,620,0,1866,1881,3, + 1264,632,0,1867,1868,3,1036,518,0,1868,1869,3,1240,620,0,1869,1870, + 3,1040,520,0,1870,1881,1,0,0,0,1871,1872,3,1036,518,0,1872,1873, + 5,2,0,0,1873,1874,3,1238,619,0,1874,1875,5,3,0,0,1875,1876,3,1240, + 620,0,1876,1881,1,0,0,0,1877,1881,3,270,135,0,1878,1881,5,53,0,0, + 1879,1881,5,245,0,0,1880,1865,1,0,0,0,1880,1866,1,0,0,0,1880,1867, + 1,0,0,0,1880,1871,1,0,0,0,1880,1877,1,0,0,0,1880,1878,1,0,0,0,1880, + 1879,1,0,0,0,1881,67,1,0,0,0,1882,1886,3,1240,620,0,1883,1886,5, + 53,0,0,1884,1886,1,0,0,0,1885,1882,1,0,0,0,1885,1883,1,0,0,0,1885, + 1884,1,0,0,0,1886,69,1,0,0,0,1887,1890,3,1260,630,0,1888,1890,3, + 1240,620,0,1889,1887,1,0,0,0,1889,1888,1,0,0,0,1890,71,1,0,0,0,1891, + 1892,5,306,0,0,1892,1893,3,74,37,0,1893,73,1,0,0,0,1894,1903,3,76, + 38,0,1895,1896,5,411,0,0,1896,1903,5,379,0,0,1897,1898,5,349,0,0, + 1898,1899,5,235,0,0,1899,1903,5,242,0,0,1900,1901,5,325,0,0,1901, + 1903,5,106,0,0,1902,1894,1,0,0,0,1902,1895,1,0,0,0,1902,1897,1,0, + 0,0,1902,1900,1,0,0,0,1903,75,1,0,0,0,1904,1907,3,56,28,0,1905,1907, + 5,30,0,0,1906,1904,1,0,0,0,1906,1905,1,0,0,0,1907,77,1,0,0,0,1908, + 1909,5,326,0,0,1909,1912,3,50,25,0,1910,1912,3,72,36,0,1911,1908, + 1,0,0,0,1911,1910,1,0,0,0,1912,79,1,0,0,0,1913,1914,5,326,0,0,1914, + 1917,3,54,27,0,1915,1917,3,72,36,0,1916,1913,1,0,0,0,1916,1915,1, + 0,0,0,1917,81,1,0,0,0,1918,1928,5,328,0,0,1919,1929,3,56,28,0,1920, + 1921,5,411,0,0,1921,1929,5,379,0,0,1922,1923,5,349,0,0,1923,1924, + 5,235,0,0,1924,1929,5,242,0,0,1925,1926,5,325,0,0,1926,1929,5,106, + 0,0,1927,1929,5,30,0,0,1928,1919,1,0,0,0,1928,1920,1,0,0,0,1928, + 1922,1,0,0,0,1928,1925,1,0,0,0,1928,1927,1,0,0,0,1929,83,1,0,0,0, + 1930,1931,5,326,0,0,1931,1932,5,165,0,0,1932,1933,3,86,43,0,1933, + 1934,3,88,44,0,1934,85,1,0,0,0,1935,1938,5,30,0,0,1936,1938,3,1216, + 608,0,1937,1935,1,0,0,0,1937,1936,1,0,0,0,1938,87,1,0,0,0,1939,1940, + 7,8,0,0,1940,89,1,0,0,0,1941,1942,5,155,0,0,1942,91,1,0,0,0,1943, + 1944,5,187,0,0,1944,1945,7,9,0,0,1945,93,1,0,0,0,1946,1947,5,138, + 0,0,1947,1950,5,92,0,0,1948,1949,5,220,0,0,1949,1951,5,389,0,0,1950, + 1948,1,0,0,0,1950,1951,1,0,0,0,1951,1952,1,0,0,0,1952,1955,3,966, + 483,0,1953,1956,3,96,48,0,1954,1956,3,98,49,0,1955,1953,1,0,0,0, + 1955,1954,1,0,0,0,1956,2056,1,0,0,0,1957,1958,5,138,0,0,1958,1959, + 5,92,0,0,1959,1960,5,30,0,0,1960,1961,5,68,0,0,1961,1962,5,344,0, + 0,1962,1966,3,1222,611,0,1963,1964,5,274,0,0,1964,1965,5,147,0,0, + 1965,1967,3,1252,626,0,1966,1963,1,0,0,0,1966,1967,1,0,0,0,1967, + 1968,1,0,0,0,1968,1969,5,326,0,0,1969,1970,5,344,0,0,1970,1971,3, + 1222,611,0,1971,1972,3,850,425,0,1972,2056,1,0,0,0,1973,1974,5,138, + 0,0,1974,1977,5,226,0,0,1975,1976,5,220,0,0,1976,1978,5,389,0,0, + 1977,1975,1,0,0,0,1977,1978,1,0,0,0,1978,1979,1,0,0,0,1979,1982, + 3,1218,609,0,1980,1983,3,96,48,0,1981,1983,3,100,50,0,1982,1980, + 1,0,0,0,1982,1981,1,0,0,0,1983,2056,1,0,0,0,1984,1985,5,138,0,0, + 1985,1986,5,226,0,0,1986,1987,5,30,0,0,1987,1988,5,68,0,0,1988,1989, + 5,344,0,0,1989,1993,3,1222,611,0,1990,1991,5,274,0,0,1991,1992,5, + 147,0,0,1992,1994,3,1252,626,0,1993,1990,1,0,0,0,1993,1994,1,0,0, + 0,1994,1995,1,0,0,0,1995,1996,5,326,0,0,1996,1997,5,344,0,0,1997, + 1998,3,1222,611,0,1998,1999,3,850,425,0,1999,2056,1,0,0,0,2000,2001, + 5,138,0,0,2001,2004,5,321,0,0,2002,2003,5,220,0,0,2003,2005,5,389, + 0,0,2004,2002,1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006,2007, + 3,1218,609,0,2007,2008,3,96,48,0,2008,2056,1,0,0,0,2009,2010,5,138, + 0,0,2010,2013,5,369,0,0,2011,2012,5,220,0,0,2012,2014,5,389,0,0, + 2013,2011,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0,2015,2016, + 3,1218,609,0,2016,2017,3,96,48,0,2017,2056,1,0,0,0,2018,2019,5,138, + 0,0,2019,2020,5,251,0,0,2020,2023,5,369,0,0,2021,2022,5,220,0,0, + 2022,2024,5,389,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0,0,2024,2025, + 1,0,0,0,2025,2026,3,1218,609,0,2026,2027,3,96,48,0,2027,2056,1,0, + 0,0,2028,2029,5,138,0,0,2029,2030,5,251,0,0,2030,2031,5,369,0,0, + 2031,2032,5,30,0,0,2032,2033,5,68,0,0,2033,2034,5,344,0,0,2034,2038, + 3,1222,611,0,2035,2036,5,274,0,0,2036,2037,5,147,0,0,2037,2039,3, + 1252,626,0,2038,2035,1,0,0,0,2038,2039,1,0,0,0,2039,2040,1,0,0,0, + 2040,2041,5,326,0,0,2041,2042,5,344,0,0,2042,2043,3,1222,611,0,2043, + 2044,3,850,425,0,2044,2056,1,0,0,0,2045,2046,5,138,0,0,2046,2047, + 5,63,0,0,2047,2050,5,92,0,0,2048,2049,5,220,0,0,2049,2051,5,389, + 0,0,2050,2048,1,0,0,0,2050,2051,1,0,0,0,2051,2052,1,0,0,0,2052,2053, + 3,966,483,0,2053,2054,3,96,48,0,2054,2056,1,0,0,0,2055,1946,1,0, + 0,0,2055,1957,1,0,0,0,2055,1973,1,0,0,0,2055,1984,1,0,0,0,2055,2000, + 1,0,0,0,2055,2009,1,0,0,0,2055,2018,1,0,0,0,2055,2028,1,0,0,0,2055, + 2045,1,0,0,0,2056,95,1,0,0,0,2057,2062,3,102,51,0,2058,2059,5,6, + 0,0,2059,2061,3,102,51,0,2060,2058,1,0,0,0,2061,2064,1,0,0,0,2062, + 2060,1,0,0,0,2062,2063,1,0,0,0,2063,97,1,0,0,0,2064,2062,1,0,0,0, + 2065,2066,5,435,0,0,2066,2067,5,278,0,0,2067,2068,3,1218,609,0,2068, + 2069,3,126,63,0,2069,2074,1,0,0,0,2070,2071,5,436,0,0,2071,2072, + 5,278,0,0,2072,2074,3,1218,609,0,2073,2065,1,0,0,0,2073,2070,1,0, + 0,0,2074,99,1,0,0,0,2075,2076,5,435,0,0,2076,2077,5,278,0,0,2077, + 2078,3,1218,609,0,2078,101,1,0,0,0,2079,2080,5,133,0,0,2080,2332, + 3,174,87,0,2081,2082,5,133,0,0,2082,2083,5,220,0,0,2083,2084,5,77, + 0,0,2084,2085,5,389,0,0,2085,2332,3,174,87,0,2086,2087,5,133,0,0, + 2087,2088,5,44,0,0,2088,2332,3,174,87,0,2089,2090,5,133,0,0,2090, + 2091,5,44,0,0,2091,2092,5,220,0,0,2092,2093,5,77,0,0,2093,2094,5, + 389,0,0,2094,2332,3,174,87,0,2095,2096,5,138,0,0,2096,2097,3,660, + 330,0,2097,2098,3,1254,627,0,2098,2099,3,104,52,0,2099,2332,1,0, + 0,0,2100,2101,5,138,0,0,2101,2102,3,660,330,0,2102,2103,3,1254,627, + 0,2103,2104,5,191,0,0,2104,2105,5,77,0,0,2105,2106,5,78,0,0,2106, + 2332,1,0,0,0,2107,2108,5,138,0,0,2108,2109,3,660,330,0,2109,2110, + 3,1254,627,0,2110,2111,5,326,0,0,2111,2112,5,77,0,0,2112,2113,5, + 78,0,0,2113,2332,1,0,0,0,2114,2115,5,138,0,0,2115,2116,3,660,330, + 0,2116,2117,3,1254,627,0,2117,2118,5,191,0,0,2118,2119,5,437,0,0, + 2119,2332,1,0,0,0,2120,2121,5,138,0,0,2121,2122,3,660,330,0,2122, + 2123,3,1254,627,0,2123,2124,5,191,0,0,2124,2125,5,437,0,0,2125,2126, + 5,220,0,0,2126,2127,5,389,0,0,2127,2332,1,0,0,0,2128,2129,5,138, + 0,0,2129,2130,3,660,330,0,2130,2131,3,1254,627,0,2131,2132,5,326, + 0,0,2132,2133,5,335,0,0,2133,2134,3,1246,623,0,2134,2332,1,0,0,0, + 2135,2136,5,138,0,0,2136,2137,3,660,330,0,2137,2138,3,1238,619,0, + 2138,2139,5,326,0,0,2139,2140,5,335,0,0,2140,2141,3,1246,623,0,2141, + 2332,1,0,0,0,2142,2143,5,138,0,0,2143,2144,3,660,330,0,2144,2145, + 3,1254,627,0,2145,2146,5,326,0,0,2146,2147,3,114,57,0,2147,2332, + 1,0,0,0,2148,2149,5,138,0,0,2149,2150,3,660,330,0,2150,2151,3,1254, + 627,0,2151,2152,5,306,0,0,2152,2153,3,114,57,0,2153,2332,1,0,0,0, + 2154,2155,5,138,0,0,2155,2156,3,660,330,0,2156,2157,3,1254,627,0, + 2157,2158,5,326,0,0,2158,2159,5,338,0,0,2159,2160,3,1254,627,0,2160, + 2332,1,0,0,0,2161,2162,5,138,0,0,2162,2163,3,660,330,0,2163,2164, + 3,1254,627,0,2164,2165,5,133,0,0,2165,2166,5,438,0,0,2166,2167,3, + 184,92,0,2167,2168,5,36,0,0,2168,2169,5,219,0,0,2169,2170,3,264, + 132,0,2170,2332,1,0,0,0,2171,2172,5,138,0,0,2172,2173,3,660,330, + 0,2173,2174,3,1254,627,0,2174,2175,3,122,61,0,2175,2332,1,0,0,0, + 2176,2177,5,138,0,0,2177,2178,3,660,330,0,2178,2179,3,1254,627,0, + 2179,2180,5,191,0,0,2180,2181,5,219,0,0,2181,2332,1,0,0,0,2182,2183, + 5,138,0,0,2183,2184,3,660,330,0,2184,2185,3,1254,627,0,2185,2186, + 5,191,0,0,2186,2187,5,219,0,0,2187,2188,5,220,0,0,2188,2189,5,389, + 0,0,2189,2332,1,0,0,0,2190,2191,5,191,0,0,2191,2192,3,660,330,0, + 2192,2193,5,220,0,0,2193,2194,5,389,0,0,2194,2195,3,1254,627,0,2195, + 2196,3,106,53,0,2196,2332,1,0,0,0,2197,2198,5,191,0,0,2198,2199, + 3,660,330,0,2199,2200,3,1254,627,0,2200,2201,3,106,53,0,2201,2332, + 1,0,0,0,2202,2203,5,138,0,0,2203,2204,3,660,330,0,2204,2205,3,1254, + 627,0,2205,2206,3,662,331,0,2206,2207,5,353,0,0,2207,2208,3,1004, + 502,0,2208,2209,3,108,54,0,2209,2210,3,110,55,0,2210,2332,1,0,0, + 0,2211,2212,5,138,0,0,2212,2213,3,660,330,0,2213,2214,3,1254,627, + 0,2214,2215,3,312,156,0,2215,2332,1,0,0,0,2216,2217,5,133,0,0,2217, + 2332,3,194,97,0,2218,2219,5,138,0,0,2219,2220,5,45,0,0,2220,2221, + 3,1222,611,0,2221,2222,3,404,202,0,2222,2332,1,0,0,0,2223,2224,5, + 365,0,0,2224,2225,5,45,0,0,2225,2332,3,1222,611,0,2226,2227,5,191, + 0,0,2227,2228,5,45,0,0,2228,2229,5,220,0,0,2229,2230,5,389,0,0,2230, + 2231,3,1222,611,0,2231,2232,3,106,53,0,2232,2332,1,0,0,0,2233,2234, + 5,191,0,0,2234,2235,5,45,0,0,2235,2236,3,1222,611,0,2236,2237,3, + 106,53,0,2237,2332,1,0,0,0,2238,2239,5,326,0,0,2239,2240,5,372,0, + 0,2240,2332,5,270,0,0,2241,2242,5,158,0,0,2242,2243,5,80,0,0,2243, + 2332,3,1222,611,0,2244,2245,5,326,0,0,2245,2246,5,372,0,0,2246,2332, + 5,158,0,0,2247,2248,5,326,0,0,2248,2332,5,439,0,0,2249,2250,5,326, + 0,0,2250,2332,5,360,0,0,2251,2252,5,193,0,0,2252,2253,5,350,0,0, + 2253,2332,3,1222,611,0,2254,2255,5,193,0,0,2255,2256,5,139,0,0,2256, + 2257,5,350,0,0,2257,2332,3,1222,611,0,2258,2259,5,193,0,0,2259,2260, + 5,305,0,0,2260,2261,5,350,0,0,2261,2332,3,1222,611,0,2262,2263,5, + 193,0,0,2263,2264,5,350,0,0,2264,2332,5,30,0,0,2265,2266,5,193,0, + 0,2266,2267,5,350,0,0,2267,2332,5,99,0,0,2268,2269,5,186,0,0,2269, + 2270,5,350,0,0,2270,2332,3,1222,611,0,2271,2272,5,186,0,0,2272,2273, + 5,350,0,0,2273,2332,5,30,0,0,2274,2275,5,186,0,0,2275,2276,5,350, + 0,0,2276,2332,5,99,0,0,2277,2278,5,193,0,0,2278,2279,5,314,0,0,2279, + 2332,3,1222,611,0,2280,2281,5,193,0,0,2281,2282,5,139,0,0,2282,2283, + 5,314,0,0,2283,2332,3,1222,611,0,2284,2285,5,193,0,0,2285,2286,5, + 305,0,0,2286,2287,5,314,0,0,2287,2332,3,1222,611,0,2288,2289,5,186, + 0,0,2289,2290,5,314,0,0,2290,2332,3,1222,611,0,2291,2292,5,228,0, + 0,2292,2332,3,1218,609,0,2293,2294,5,262,0,0,2294,2295,5,228,0,0, + 2295,2332,3,1218,609,0,2296,2297,5,268,0,0,2297,2332,3,478,239,0, + 2298,2299,5,77,0,0,2299,2332,5,268,0,0,2300,2301,5,275,0,0,2301, + 2302,5,94,0,0,2302,2332,3,1250,625,0,2303,2304,5,326,0,0,2304,2305, + 5,344,0,0,2305,2332,3,1222,611,0,2306,2307,5,326,0,0,2307,2332,3, + 114,57,0,2308,2309,5,306,0,0,2309,2332,3,114,57,0,2310,2311,5,305, + 0,0,2311,2312,5,219,0,0,2312,2332,3,112,56,0,2313,2314,5,193,0,0, + 2314,2315,5,407,0,0,2315,2316,5,242,0,0,2316,2332,5,320,0,0,2317, + 2318,5,186,0,0,2318,2319,5,407,0,0,2319,2320,5,242,0,0,2320,2332, + 5,320,0,0,2321,2322,5,209,0,0,2322,2323,5,407,0,0,2323,2324,5,242, + 0,0,2324,2332,5,320,0,0,2325,2326,5,262,0,0,2326,2327,5,209,0,0, + 2327,2328,5,407,0,0,2328,2329,5,242,0,0,2329,2332,5,320,0,0,2330, + 2332,3,312,156,0,2331,2079,1,0,0,0,2331,2081,1,0,0,0,2331,2086,1, + 0,0,0,2331,2089,1,0,0,0,2331,2095,1,0,0,0,2331,2100,1,0,0,0,2331, + 2107,1,0,0,0,2331,2114,1,0,0,0,2331,2120,1,0,0,0,2331,2128,1,0,0, + 0,2331,2135,1,0,0,0,2331,2142,1,0,0,0,2331,2148,1,0,0,0,2331,2154, + 1,0,0,0,2331,2161,1,0,0,0,2331,2171,1,0,0,0,2331,2176,1,0,0,0,2331, + 2182,1,0,0,0,2331,2190,1,0,0,0,2331,2197,1,0,0,0,2331,2202,1,0,0, + 0,2331,2211,1,0,0,0,2331,2216,1,0,0,0,2331,2218,1,0,0,0,2331,2223, + 1,0,0,0,2331,2226,1,0,0,0,2331,2233,1,0,0,0,2331,2238,1,0,0,0,2331, + 2241,1,0,0,0,2331,2244,1,0,0,0,2331,2247,1,0,0,0,2331,2249,1,0,0, + 0,2331,2251,1,0,0,0,2331,2254,1,0,0,0,2331,2258,1,0,0,0,2331,2262, + 1,0,0,0,2331,2265,1,0,0,0,2331,2268,1,0,0,0,2331,2271,1,0,0,0,2331, + 2274,1,0,0,0,2331,2277,1,0,0,0,2331,2280,1,0,0,0,2331,2284,1,0,0, + 0,2331,2288,1,0,0,0,2331,2291,1,0,0,0,2331,2293,1,0,0,0,2331,2296, + 1,0,0,0,2331,2298,1,0,0,0,2331,2300,1,0,0,0,2331,2303,1,0,0,0,2331, + 2306,1,0,0,0,2331,2308,1,0,0,0,2331,2310,1,0,0,0,2331,2313,1,0,0, + 0,2331,2317,1,0,0,0,2331,2321,1,0,0,0,2331,2325,1,0,0,0,2331,2330, + 1,0,0,0,2332,103,1,0,0,0,2333,2334,5,326,0,0,2334,2335,5,53,0,0, + 2335,2339,3,1046,523,0,2336,2337,5,191,0,0,2337,2339,5,53,0,0,2338, + 2333,1,0,0,0,2338,2336,1,0,0,0,2339,105,1,0,0,0,2340,2344,5,150, + 0,0,2341,2344,5,308,0,0,2342,2344,1,0,0,0,2343,2340,1,0,0,0,2343, + 2341,1,0,0,0,2343,2342,1,0,0,0,2344,107,1,0,0,0,2345,2346,5,43,0, + 0,2346,2349,3,478,239,0,2347,2349,1,0,0,0,2348,2345,1,0,0,0,2348, + 2347,1,0,0,0,2349,109,1,0,0,0,2350,2351,5,100,0,0,2351,2354,3,1046, + 523,0,2352,2354,1,0,0,0,2353,2350,1,0,0,0,2353,2352,1,0,0,0,2354, + 111,1,0,0,0,2355,2362,5,263,0,0,2356,2362,5,113,0,0,2357,2362,5, + 53,0,0,2358,2359,5,100,0,0,2359,2360,5,226,0,0,2360,2362,3,1222, + 611,0,2361,2355,1,0,0,0,2361,2356,1,0,0,0,2361,2357,1,0,0,0,2361, + 2358,1,0,0,0,2362,113,1,0,0,0,2363,2364,5,2,0,0,2364,2365,3,118, + 59,0,2365,2366,5,3,0,0,2366,115,1,0,0,0,2367,2368,5,105,0,0,2368, + 2371,3,114,57,0,2369,2371,1,0,0,0,2370,2367,1,0,0,0,2370,2369,1, + 0,0,0,2371,117,1,0,0,0,2372,2377,3,120,60,0,2373,2374,5,6,0,0,2374, + 2376,3,120,60,0,2375,2373,1,0,0,0,2376,2379,1,0,0,0,2377,2375,1, + 0,0,0,2377,2378,1,0,0,0,2378,119,1,0,0,0,2379,2377,1,0,0,0,2380, + 2389,3,1262,631,0,2381,2382,5,10,0,0,2382,2390,3,428,214,0,2383, + 2384,5,11,0,0,2384,2387,3,1262,631,0,2385,2386,5,10,0,0,2386,2388, + 3,428,214,0,2387,2385,1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0, + 0,2389,2381,1,0,0,0,2389,2383,1,0,0,0,2389,2390,1,0,0,0,2390,121, + 1,0,0,0,2391,2393,3,124,62,0,2392,2391,1,0,0,0,2393,2394,1,0,0,0, + 2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395,123,1,0,0,0,2396,2400,5, + 307,0,0,2397,2398,3,14,7,0,2398,2399,3,270,135,0,2399,2401,1,0,0, + 0,2400,2397,1,0,0,0,2400,2401,1,0,0,0,2401,2409,1,0,0,0,2402,2406, + 5,326,0,0,2403,2407,3,268,134,0,2404,2405,5,438,0,0,2405,2407,3, + 184,92,0,2406,2403,1,0,0,0,2406,2404,1,0,0,0,2407,2409,1,0,0,0,2408, + 2396,1,0,0,0,2408,2402,1,0,0,0,2409,125,1,0,0,0,2410,2411,5,62,0, + 0,2411,2412,5,415,0,0,2412,2413,5,105,0,0,2413,2414,5,2,0,0,2414, + 2415,3,130,65,0,2415,2416,5,3,0,0,2416,2437,1,0,0,0,2417,2418,5, + 62,0,0,2418,2419,5,415,0,0,2419,2420,5,68,0,0,2420,2421,5,2,0,0, + 2421,2422,3,1164,582,0,2422,2423,5,3,0,0,2423,2437,1,0,0,0,2424, + 2425,5,62,0,0,2425,2426,5,415,0,0,2426,2427,5,64,0,0,2427,2428,5, + 2,0,0,2428,2429,3,1164,582,0,2429,2430,5,3,0,0,2430,2431,5,94,0, + 0,2431,2432,5,2,0,0,2432,2433,3,1164,582,0,2433,2434,5,3,0,0,2434, + 2437,1,0,0,0,2435,2437,5,53,0,0,2436,2410,1,0,0,0,2436,2417,1,0, + 0,0,2436,2424,1,0,0,0,2436,2435,1,0,0,0,2437,127,1,0,0,0,2438,2439, + 3,1260,630,0,2439,2440,3,1238,619,0,2440,129,1,0,0,0,2441,2446,3, + 128,64,0,2442,2443,5,6,0,0,2443,2445,3,128,64,0,2444,2442,1,0,0, + 0,2445,2448,1,0,0,0,2446,2444,1,0,0,0,2446,2447,1,0,0,0,2447,131, + 1,0,0,0,2448,2446,1,0,0,0,2449,2450,5,138,0,0,2450,2451,5,353,0, + 0,2451,2452,3,478,239,0,2452,2453,3,134,67,0,2453,133,1,0,0,0,2454, + 2459,3,136,68,0,2455,2456,5,6,0,0,2456,2458,3,136,68,0,2457,2455, + 1,0,0,0,2458,2461,1,0,0,0,2459,2457,1,0,0,0,2459,2460,1,0,0,0,2460, + 135,1,0,0,0,2461,2459,1,0,0,0,2462,2463,5,133,0,0,2463,2464,5,143, + 0,0,2464,2465,3,990,495,0,2465,2466,3,106,53,0,2466,2486,1,0,0,0, + 2467,2468,5,191,0,0,2468,2471,5,143,0,0,2469,2470,5,220,0,0,2470, + 2472,5,389,0,0,2471,2469,1,0,0,0,2471,2472,1,0,0,0,2472,2473,1,0, + 0,0,2473,2474,3,1254,627,0,2474,2475,3,106,53,0,2475,2486,1,0,0, + 0,2476,2477,5,138,0,0,2477,2478,5,143,0,0,2478,2479,3,1254,627,0, + 2479,2480,3,662,331,0,2480,2481,5,353,0,0,2481,2482,3,1004,502,0, + 2482,2483,3,108,54,0,2483,2484,3,106,53,0,2484,2486,1,0,0,0,2485, + 2462,1,0,0,0,2485,2467,1,0,0,0,2485,2476,1,0,0,0,2486,137,1,0,0, + 0,2487,2490,5,157,0,0,2488,2491,3,864,432,0,2489,2491,5,30,0,0,2490, + 2488,1,0,0,0,2490,2489,1,0,0,0,2491,139,1,0,0,0,2492,2494,5,169, + 0,0,2493,2495,5,107,0,0,2494,2493,1,0,0,0,2494,2495,1,0,0,0,2495, + 2496,1,0,0,0,2496,2497,3,1218,609,0,2497,2498,3,198,99,0,2498,2500, + 3,142,71,0,2499,2501,5,290,0,0,2500,2499,1,0,0,0,2500,2501,1,0,0, + 0,2501,2502,1,0,0,0,2502,2503,3,144,72,0,2503,2504,3,150,75,0,2504, + 2505,3,14,7,0,2505,2506,3,146,73,0,2506,2507,3,982,491,0,2507,2521, + 1,0,0,0,2508,2509,5,169,0,0,2509,2510,5,2,0,0,2510,2511,3,806,403, + 0,2511,2512,5,3,0,0,2512,2514,5,94,0,0,2513,2515,5,290,0,0,2514, + 2513,1,0,0,0,2514,2515,1,0,0,0,2515,2516,1,0,0,0,2516,2517,3,144, + 72,0,2517,2518,3,14,7,0,2518,2519,3,146,73,0,2519,2521,1,0,0,0,2520, + 2492,1,0,0,0,2520,2508,1,0,0,0,2521,141,1,0,0,0,2522,2523,7,10,0, + 0,2523,143,1,0,0,0,2524,2528,3,1240,620,0,2525,2528,5,336,0,0,2526, + 2528,5,337,0,0,2527,2524,1,0,0,0,2527,2525,1,0,0,0,2527,2526,1,0, + 0,0,2528,145,1,0,0,0,2529,2531,3,148,74,0,2530,2529,1,0,0,0,2531, + 2534,1,0,0,0,2532,2530,1,0,0,0,2532,2533,1,0,0,0,2533,2540,1,0,0, + 0,2534,2532,1,0,0,0,2535,2536,5,2,0,0,2536,2537,3,152,76,0,2537, + 2538,5,3,0,0,2538,2540,1,0,0,0,2539,2532,1,0,0,0,2539,2535,1,0,0, + 0,2540,147,1,0,0,0,2541,2577,5,107,0,0,2542,2577,5,112,0,0,2543, + 2544,5,183,0,0,2544,2545,3,758,379,0,2545,2546,3,1240,620,0,2546, + 2577,1,0,0,0,2547,2548,5,78,0,0,2548,2549,3,758,379,0,2549,2550, + 3,1240,620,0,2550,2577,1,0,0,0,2551,2577,5,171,0,0,2552,2577,5,216, + 0,0,2553,2554,5,291,0,0,2554,2555,3,758,379,0,2555,2556,3,1240,620, + 0,2556,2577,1,0,0,0,2557,2558,5,197,0,0,2558,2559,3,758,379,0,2559, + 2560,3,1240,620,0,2560,2577,1,0,0,0,2561,2562,5,209,0,0,2562,2563, + 5,291,0,0,2563,2577,3,200,100,0,2564,2565,5,209,0,0,2565,2566,5, + 291,0,0,2566,2577,5,9,0,0,2567,2568,5,209,0,0,2568,2569,5,77,0,0, + 2569,2570,5,78,0,0,2570,2577,3,200,100,0,2571,2572,5,209,0,0,2572, + 2573,5,78,0,0,2573,2577,3,200,100,0,2574,2575,5,194,0,0,2575,2577, + 3,1240,620,0,2576,2541,1,0,0,0,2576,2542,1,0,0,0,2576,2543,1,0,0, + 0,2576,2547,1,0,0,0,2576,2551,1,0,0,0,2576,2552,1,0,0,0,2576,2553, + 1,0,0,0,2576,2557,1,0,0,0,2576,2561,1,0,0,0,2576,2564,1,0,0,0,2576, + 2567,1,0,0,0,2576,2571,1,0,0,0,2576,2574,1,0,0,0,2577,149,1,0,0, + 0,2578,2580,5,100,0,0,2579,2578,1,0,0,0,2579,2580,1,0,0,0,2580,2581, + 1,0,0,0,2581,2582,5,184,0,0,2582,2585,3,1240,620,0,2583,2585,1,0, + 0,0,2584,2579,1,0,0,0,2584,2583,1,0,0,0,2585,151,1,0,0,0,2586,2591, + 3,154,77,0,2587,2588,5,6,0,0,2588,2590,3,154,77,0,2589,2587,1,0, + 0,0,2590,2593,1,0,0,0,2591,2589,1,0,0,0,2591,2592,1,0,0,0,2592,153, + 1,0,0,0,2593,2591,1,0,0,0,2594,2595,3,1262,631,0,2595,2596,3,156, + 78,0,2596,155,1,0,0,0,2597,2613,3,64,32,0,2598,2613,3,270,135,0, + 2599,2613,5,9,0,0,2600,2601,5,2,0,0,2601,2606,3,64,32,0,2602,2603, + 5,6,0,0,2603,2605,3,64,32,0,2604,2602,1,0,0,0,2605,2608,1,0,0,0, + 2606,2604,1,0,0,0,2606,2607,1,0,0,0,2607,2609,1,0,0,0,2608,2606, + 1,0,0,0,2609,2610,5,3,0,0,2610,2613,1,0,0,0,2611,2613,1,0,0,0,2612, + 2597,1,0,0,0,2612,2598,1,0,0,0,2612,2599,1,0,0,0,2612,2600,1,0,0, + 0,2612,2611,1,0,0,0,2613,157,1,0,0,0,2614,2615,5,46,0,0,2615,2616, + 3,160,80,0,2616,2620,5,92,0,0,2617,2618,5,220,0,0,2618,2619,5,77, + 0,0,2619,2621,5,389,0,0,2620,2617,1,0,0,0,2620,2621,1,0,0,0,2621, + 2622,1,0,0,0,2622,2653,3,1218,609,0,2623,2624,5,2,0,0,2624,2625, + 3,162,81,0,2625,2626,5,3,0,0,2626,2627,3,222,111,0,2627,2628,3,224, + 112,0,2628,2629,3,232,116,0,2629,2630,3,234,117,0,2630,2631,3,236, + 118,0,2631,2632,3,238,119,0,2632,2654,1,0,0,0,2633,2634,5,268,0, + 0,2634,2635,3,478,239,0,2635,2636,3,164,82,0,2636,2637,3,224,112, + 0,2637,2638,3,232,116,0,2638,2639,3,234,117,0,2639,2640,3,236,118, + 0,2640,2641,3,238,119,0,2641,2654,1,0,0,0,2642,2643,5,278,0,0,2643, + 2644,5,268,0,0,2644,2645,3,1218,609,0,2645,2646,3,164,82,0,2646, + 2647,3,126,63,0,2647,2648,3,224,112,0,2648,2649,3,232,116,0,2649, + 2650,3,234,117,0,2650,2651,3,236,118,0,2651,2652,3,238,119,0,2652, + 2654,1,0,0,0,2653,2623,1,0,0,0,2653,2633,1,0,0,0,2653,2642,1,0,0, + 0,2654,159,1,0,0,0,2655,2664,5,347,0,0,2656,2664,5,345,0,0,2657, + 2658,5,245,0,0,2658,2664,7,11,0,0,2659,2660,5,213,0,0,2660,2664, + 7,11,0,0,2661,2664,5,360,0,0,2662,2664,1,0,0,0,2663,2655,1,0,0,0, + 2663,2656,1,0,0,0,2663,2657,1,0,0,0,2663,2659,1,0,0,0,2663,2661, + 1,0,0,0,2663,2662,1,0,0,0,2664,161,1,0,0,0,2665,2668,3,166,83,0, + 2666,2668,1,0,0,0,2667,2665,1,0,0,0,2667,2666,1,0,0,0,2668,163,1, + 0,0,0,2669,2670,5,2,0,0,2670,2671,3,168,84,0,2671,2672,5,3,0,0,2672, + 2675,1,0,0,0,2673,2675,1,0,0,0,2674,2669,1,0,0,0,2674,2673,1,0,0, + 0,2675,165,1,0,0,0,2676,2681,3,170,85,0,2677,2678,5,6,0,0,2678,2680, + 3,170,85,0,2679,2677,1,0,0,0,2680,2683,1,0,0,0,2681,2679,1,0,0,0, + 2681,2682,1,0,0,0,2682,167,1,0,0,0,2683,2681,1,0,0,0,2684,2689,3, + 172,86,0,2685,2686,5,6,0,0,2686,2688,3,172,86,0,2687,2685,1,0,0, + 0,2688,2691,1,0,0,0,2689,2687,1,0,0,0,2689,2690,1,0,0,0,2690,169, + 1,0,0,0,2691,2689,1,0,0,0,2692,2696,3,194,97,0,2693,2696,3,188,94, + 0,2694,2696,3,174,87,0,2695,2692,1,0,0,0,2695,2693,1,0,0,0,2695, + 2694,1,0,0,0,2696,171,1,0,0,0,2697,2700,3,176,88,0,2698,2700,3,194, + 97,0,2699,2697,1,0,0,0,2699,2698,1,0,0,0,2700,173,1,0,0,0,2701,2702, + 3,1254,627,0,2702,2703,3,1004,502,0,2703,2704,3,308,154,0,2704,2705, + 3,178,89,0,2705,175,1,0,0,0,2706,2709,3,1254,627,0,2707,2708,5,105, + 0,0,2708,2710,5,273,0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710, + 2711,1,0,0,0,2711,2712,3,178,89,0,2712,177,1,0,0,0,2713,2715,3,180, + 90,0,2714,2713,1,0,0,0,2715,2718,1,0,0,0,2716,2714,1,0,0,0,2716, + 2717,1,0,0,0,2717,179,1,0,0,0,2718,2716,1,0,0,0,2719,2720,5,45,0, + 0,2720,2721,3,1222,611,0,2721,2722,3,182,91,0,2722,2728,1,0,0,0, + 2723,2728,3,182,91,0,2724,2728,3,186,93,0,2725,2726,5,43,0,0,2726, + 2728,3,478,239,0,2727,2719,1,0,0,0,2727,2723,1,0,0,0,2727,2724,1, + 0,0,0,2727,2725,1,0,0,0,2728,181,1,0,0,0,2729,2730,5,77,0,0,2730, + 2770,5,78,0,0,2731,2770,5,78,0,0,2732,2733,5,98,0,0,2733,2734,3, + 604,302,0,2734,2735,3,240,120,0,2735,2770,1,0,0,0,2736,2737,5,85, + 0,0,2737,2738,5,236,0,0,2738,2739,3,604,302,0,2739,2740,3,240,120, + 0,2740,2770,1,0,0,0,2741,2742,5,42,0,0,2742,2743,5,2,0,0,2743,2744, + 3,1046,523,0,2744,2747,5,3,0,0,2745,2746,5,262,0,0,2746,2748,5,228, + 0,0,2747,2745,1,0,0,0,2747,2748,1,0,0,0,2748,2770,1,0,0,0,2749,2750, + 5,53,0,0,2750,2770,3,1088,544,0,2751,2752,5,438,0,0,2752,2753,3, + 184,92,0,2753,2761,5,36,0,0,2754,2755,5,219,0,0,2755,2762,3,264, + 132,0,2756,2757,5,2,0,0,2757,2758,3,1046,523,0,2758,2759,5,3,0,0, + 2759,2760,5,440,0,0,2760,2762,1,0,0,0,2761,2754,1,0,0,0,2761,2756, + 1,0,0,0,2762,2770,1,0,0,0,2763,2764,5,86,0,0,2764,2765,3,1218,609, + 0,2765,2766,3,198,99,0,2766,2767,3,206,103,0,2767,2768,3,214,107, + 0,2768,2770,1,0,0,0,2769,2729,1,0,0,0,2769,2731,1,0,0,0,2769,2732, + 1,0,0,0,2769,2736,1,0,0,0,2769,2741,1,0,0,0,2769,2749,1,0,0,0,2769, + 2751,1,0,0,0,2769,2763,1,0,0,0,2770,183,1,0,0,0,2771,2775,5,139, + 0,0,2772,2773,5,147,0,0,2773,2775,5,53,0,0,2774,2771,1,0,0,0,2774, + 2772,1,0,0,0,2775,185,1,0,0,0,2776,2782,5,54,0,0,2777,2778,5,77, + 0,0,2778,2782,5,54,0,0,2779,2780,5,69,0,0,2780,2782,7,8,0,0,2781, + 2776,1,0,0,0,2781,2777,1,0,0,0,2781,2779,1,0,0,0,2782,187,1,0,0, + 0,2783,2784,5,120,0,0,2784,2785,3,1218,609,0,2785,2786,3,190,95, + 0,2786,189,1,0,0,0,2787,2788,7,12,0,0,2788,2790,3,192,96,0,2789, + 2787,1,0,0,0,2790,2793,1,0,0,0,2791,2789,1,0,0,0,2791,2792,1,0,0, + 0,2792,191,1,0,0,0,2793,2791,1,0,0,0,2794,2795,7,13,0,0,2795,193, + 1,0,0,0,2796,2797,5,45,0,0,2797,2798,3,1222,611,0,2798,2799,3,196, + 98,0,2799,2802,1,0,0,0,2800,2802,3,196,98,0,2801,2796,1,0,0,0,2801, + 2800,1,0,0,0,2802,195,1,0,0,0,2803,2804,5,42,0,0,2804,2805,5,2,0, + 0,2805,2806,3,1046,523,0,2806,2807,5,3,0,0,2807,2808,3,404,202,0, + 2808,2862,1,0,0,0,2809,2821,5,98,0,0,2810,2811,5,2,0,0,2811,2812, + 3,200,100,0,2812,2813,5,3,0,0,2813,2814,3,204,102,0,2814,2815,3, + 604,302,0,2815,2816,3,240,120,0,2816,2817,3,404,202,0,2817,2822, + 1,0,0,0,2818,2819,3,242,121,0,2819,2820,3,404,202,0,2820,2822,1, + 0,0,0,2821,2810,1,0,0,0,2821,2818,1,0,0,0,2822,2862,1,0,0,0,2823, + 2824,5,85,0,0,2824,2836,5,236,0,0,2825,2826,5,2,0,0,2826,2827,3, + 200,100,0,2827,2828,5,3,0,0,2828,2829,3,204,102,0,2829,2830,3,604, + 302,0,2830,2831,3,240,120,0,2831,2832,3,404,202,0,2832,2837,1,0, + 0,0,2833,2834,3,242,121,0,2834,2835,3,404,202,0,2835,2837,1,0,0, + 0,2836,2825,1,0,0,0,2836,2833,1,0,0,0,2837,2862,1,0,0,0,2838,2839, + 5,199,0,0,2839,2840,3,544,272,0,2840,2841,5,2,0,0,2841,2842,3,208, + 104,0,2842,2843,5,3,0,0,2843,2844,3,204,102,0,2844,2845,3,604,302, + 0,2845,2846,3,240,120,0,2846,2847,3,212,106,0,2847,2848,3,404,202, + 0,2848,2862,1,0,0,0,2849,2850,5,63,0,0,2850,2851,5,236,0,0,2851, + 2852,5,2,0,0,2852,2853,3,200,100,0,2853,2854,5,3,0,0,2854,2855,5, + 86,0,0,2855,2856,3,1218,609,0,2856,2857,3,198,99,0,2857,2858,3,206, + 103,0,2858,2859,3,214,107,0,2859,2860,3,404,202,0,2860,2862,1,0, + 0,0,2861,2803,1,0,0,0,2861,2809,1,0,0,0,2861,2823,1,0,0,0,2861,2838, + 1,0,0,0,2861,2849,1,0,0,0,2862,197,1,0,0,0,2863,2864,5,2,0,0,2864, + 2865,3,200,100,0,2865,2866,5,3,0,0,2866,2869,1,0,0,0,2867,2869,1, + 0,0,0,2868,2863,1,0,0,0,2868,2867,1,0,0,0,2869,199,1,0,0,0,2870, + 2875,3,202,101,0,2871,2872,5,6,0,0,2872,2874,3,202,101,0,2873,2871, + 1,0,0,0,2874,2877,1,0,0,0,2875,2873,1,0,0,0,2875,2876,1,0,0,0,2876, + 201,1,0,0,0,2877,2875,1,0,0,0,2878,2879,3,1254,627,0,2879,203,1, + 0,0,0,2880,2881,5,441,0,0,2881,2882,5,2,0,0,2882,2883,3,200,100, + 0,2883,2884,5,3,0,0,2884,2887,1,0,0,0,2885,2887,1,0,0,0,2886,2880, + 1,0,0,0,2886,2885,1,0,0,0,2887,205,1,0,0,0,2888,2889,5,249,0,0,2889, + 2892,7,14,0,0,2890,2892,1,0,0,0,2891,2888,1,0,0,0,2891,2890,1,0, + 0,0,2892,207,1,0,0,0,2893,2898,3,210,105,0,2894,2895,5,6,0,0,2895, + 2897,3,210,105,0,2896,2894,1,0,0,0,2897,2900,1,0,0,0,2898,2896,1, + 0,0,0,2898,2899,1,0,0,0,2899,209,1,0,0,0,2900,2898,1,0,0,0,2901, + 2902,3,550,275,0,2902,2909,5,105,0,0,2903,2910,3,620,310,0,2904, + 2905,5,271,0,0,2905,2906,5,2,0,0,2906,2907,3,620,310,0,2907,2908, + 5,3,0,0,2908,2910,1,0,0,0,2909,2903,1,0,0,0,2909,2904,1,0,0,0,2910, + 211,1,0,0,0,2911,2912,5,103,0,0,2912,2913,5,2,0,0,2913,2914,3,1046, + 523,0,2914,2915,5,3,0,0,2915,2918,1,0,0,0,2916,2918,1,0,0,0,2917, + 2911,1,0,0,0,2917,2916,1,0,0,0,2918,213,1,0,0,0,2919,2929,3,216, + 108,0,2920,2929,3,218,109,0,2921,2922,3,216,108,0,2922,2923,3,218, + 109,0,2923,2929,1,0,0,0,2924,2925,3,218,109,0,2925,2926,3,216,108, + 0,2926,2929,1,0,0,0,2927,2929,1,0,0,0,2928,2919,1,0,0,0,2928,2920, + 1,0,0,0,2928,2921,1,0,0,0,2928,2924,1,0,0,0,2928,2927,1,0,0,0,2929, + 215,1,0,0,0,2930,2931,5,80,0,0,2931,2932,5,362,0,0,2932,2933,3,220, + 110,0,2933,217,1,0,0,0,2934,2935,5,80,0,0,2935,2936,5,182,0,0,2936, + 2937,3,220,110,0,2937,219,1,0,0,0,2938,2939,5,262,0,0,2939,2945, + 5,132,0,0,2940,2945,5,308,0,0,2941,2945,5,150,0,0,2942,2943,5,326, + 0,0,2943,2945,7,15,0,0,2944,2938,1,0,0,0,2944,2940,1,0,0,0,2944, + 2941,1,0,0,0,2944,2942,1,0,0,0,2945,221,1,0,0,0,2946,2947,5,229, + 0,0,2947,2948,5,2,0,0,2948,2949,3,1216,608,0,2949,2950,5,3,0,0,2950, + 2953,1,0,0,0,2951,2953,1,0,0,0,2952,2946,1,0,0,0,2952,2951,1,0,0, + 0,2953,223,1,0,0,0,2954,2957,3,226,113,0,2955,2957,1,0,0,0,2956, + 2954,1,0,0,0,2956,2955,1,0,0,0,2957,225,1,0,0,0,2958,2959,5,278, + 0,0,2959,2960,5,147,0,0,2960,2961,3,1254,627,0,2961,2962,5,2,0,0, + 2962,2963,3,228,114,0,2963,2964,5,3,0,0,2964,227,1,0,0,0,2965,2970, + 3,230,115,0,2966,2967,5,6,0,0,2967,2969,3,230,115,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, + 229,1,0,0,0,2972,2970,1,0,0,0,2973,2974,3,1254,627,0,2974,2975,3, + 554,277,0,2975,2976,3,556,278,0,2976,2988,1,0,0,0,2977,2978,3,1098, + 549,0,2978,2979,3,554,277,0,2979,2980,3,556,278,0,2980,2988,1,0, + 0,0,2981,2982,5,2,0,0,2982,2983,3,1046,523,0,2983,2984,5,3,0,0,2984, + 2985,3,554,277,0,2985,2986,3,556,278,0,2986,2988,1,0,0,0,2987,2973, + 1,0,0,0,2987,2977,1,0,0,0,2987,2981,1,0,0,0,2988,231,1,0,0,0,2989, + 2990,5,100,0,0,2990,2993,3,1222,611,0,2991,2993,1,0,0,0,2992,2989, + 1,0,0,0,2992,2991,1,0,0,0,2993,233,1,0,0,0,2994,2995,5,105,0,0,2995, + 3000,3,114,57,0,2996,2997,5,372,0,0,2997,3000,5,270,0,0,2998,3000, + 1,0,0,0,2999,2994,1,0,0,0,2999,2996,1,0,0,0,2999,2998,1,0,0,0,3000, + 235,1,0,0,0,3001,3002,5,80,0,0,3002,3008,5,161,0,0,3003,3009,5,191, + 0,0,3004,3005,5,182,0,0,3005,3009,5,313,0,0,3006,3007,5,285,0,0, + 3007,3009,5,313,0,0,3008,3003,1,0,0,0,3008,3004,1,0,0,0,3008,3006, + 1,0,0,0,3009,3012,1,0,0,0,3010,3012,1,0,0,0,3011,3001,1,0,0,0,3011, + 3010,1,0,0,0,3012,237,1,0,0,0,3013,3014,5,344,0,0,3014,3017,3,1222, + 611,0,3015,3017,1,0,0,0,3016,3013,1,0,0,0,3016,3015,1,0,0,0,3017, + 239,1,0,0,0,3018,3019,5,100,0,0,3019,3020,5,226,0,0,3020,3021,5, + 344,0,0,3021,3024,3,1222,611,0,3022,3024,1,0,0,0,3023,3018,1,0,0, + 0,3023,3022,1,0,0,0,3024,241,1,0,0,0,3025,3026,5,100,0,0,3026,3027, + 5,226,0,0,3027,3028,3,1222,611,0,3028,243,1,0,0,0,3029,3030,5,46, + 0,0,3030,3034,5,335,0,0,3031,3032,5,220,0,0,3032,3033,5,77,0,0,3033, + 3035,5,389,0,0,3034,3031,1,0,0,0,3034,3035,1,0,0,0,3035,3036,1,0, + 0,0,3036,3037,3,478,239,0,3037,3038,3,786,393,0,3038,3039,5,80,0, + 0,3039,3040,3,1164,582,0,3040,3041,5,64,0,0,3041,3042,3,948,474, + 0,3042,245,1,0,0,0,3043,3044,5,138,0,0,3044,3047,5,335,0,0,3045, + 3046,5,220,0,0,3046,3048,5,389,0,0,3047,3045,1,0,0,0,3047,3048,1, + 0,0,0,3048,3049,1,0,0,0,3049,3050,3,478,239,0,3050,3051,5,326,0, + 0,3051,3052,5,335,0,0,3052,3053,3,1246,623,0,3053,247,1,0,0,0,3054, + 3055,5,46,0,0,3055,3056,3,160,80,0,3056,3060,5,92,0,0,3057,3058, + 5,220,0,0,3058,3059,5,77,0,0,3059,3061,5,389,0,0,3060,3057,1,0,0, + 0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3063,3,250,125,0,3063, + 3064,5,36,0,0,3064,3065,3,868,434,0,3065,3066,3,252,126,0,3066,249, + 1,0,0,0,3067,3068,3,1218,609,0,3068,3069,3,198,99,0,3069,3070,3, + 232,116,0,3070,3071,3,234,117,0,3071,3072,3,236,118,0,3072,3073, + 3,238,119,0,3073,251,1,0,0,0,3074,3078,5,105,0,0,3075,3079,5,174, + 0,0,3076,3077,5,262,0,0,3077,3079,5,174,0,0,3078,3075,1,0,0,0,3078, + 3076,1,0,0,0,3079,3082,1,0,0,0,3080,3082,1,0,0,0,3081,3074,1,0,0, + 0,3081,3080,1,0,0,0,3082,253,1,0,0,0,3083,3085,5,46,0,0,3084,3086, + 5,360,0,0,3085,3084,1,0,0,0,3085,3086,1,0,0,0,3086,3087,1,0,0,0, + 3087,3088,5,251,0,0,3088,3092,5,369,0,0,3089,3090,5,220,0,0,3090, + 3091,5,77,0,0,3091,3093,5,389,0,0,3092,3089,1,0,0,0,3092,3093,1, + 0,0,0,3093,3094,1,0,0,0,3094,3095,3,256,128,0,3095,3096,5,36,0,0, + 3096,3097,3,868,434,0,3097,3098,3,252,126,0,3098,255,1,0,0,0,3099, + 3100,3,1218,609,0,3100,3101,3,198,99,0,3101,3102,3,232,116,0,3102, + 3103,3,116,58,0,3103,3104,3,238,119,0,3104,257,1,0,0,0,3105,3106, + 5,298,0,0,3106,3107,5,251,0,0,3107,3108,5,369,0,0,3108,3109,3,542, + 271,0,3109,3110,3,1218,609,0,3110,3111,3,252,126,0,3111,259,1,0, + 0,0,3112,3113,5,46,0,0,3113,3114,3,160,80,0,3114,3118,5,321,0,0, + 3115,3116,5,220,0,0,3116,3117,5,77,0,0,3117,3119,5,389,0,0,3118, + 3115,1,0,0,0,3118,3119,1,0,0,0,3119,3120,1,0,0,0,3120,3122,3,1218, + 609,0,3121,3123,3,266,133,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, + 3123,261,1,0,0,0,3124,3125,5,138,0,0,3125,3128,5,321,0,0,3126,3127, + 5,220,0,0,3127,3129,5,389,0,0,3128,3126,1,0,0,0,3128,3129,1,0,0, + 0,3129,3130,1,0,0,0,3130,3131,3,1218,609,0,3131,3132,3,266,133,0, + 3132,263,1,0,0,0,3133,3134,5,2,0,0,3134,3135,3,266,133,0,3135,3136, + 5,3,0,0,3136,3139,1,0,0,0,3137,3139,1,0,0,0,3138,3133,1,0,0,0,3138, + 3137,1,0,0,0,3139,265,1,0,0,0,3140,3142,3,268,134,0,3141,3140,1, + 0,0,0,3142,3143,1,0,0,0,3143,3141,1,0,0,0,3143,3144,1,0,0,0,3144, + 267,1,0,0,0,3145,3146,5,36,0,0,3146,3177,3,1006,503,0,3147,3148, + 5,148,0,0,3148,3177,3,270,135,0,3149,3177,5,173,0,0,3150,3152,5, + 225,0,0,3151,3153,5,147,0,0,3152,3151,1,0,0,0,3152,3153,1,0,0,0, + 3153,3154,1,0,0,0,3154,3177,3,270,135,0,3155,3156,5,252,0,0,3156, + 3177,3,270,135,0,3157,3158,5,255,0,0,3158,3177,3,270,135,0,3159, + 3160,5,262,0,0,3160,3177,7,16,0,0,3161,3162,5,274,0,0,3162,3163, + 5,147,0,0,3163,3177,3,478,239,0,3164,3165,5,321,0,0,3165,3166,5, + 259,0,0,3166,3177,3,478,239,0,3167,3168,5,333,0,0,3168,3169,3,14, + 7,0,3169,3170,3,270,135,0,3170,3177,1,0,0,0,3171,3172,5,307,0,0, + 3172,3174,3,14,7,0,3173,3175,3,270,135,0,3174,3173,1,0,0,0,3174, + 3175,1,0,0,0,3175,3177,1,0,0,0,3176,3145,1,0,0,0,3176,3147,1,0,0, + 0,3176,3149,1,0,0,0,3176,3150,1,0,0,0,3176,3155,1,0,0,0,3176,3157, + 1,0,0,0,3176,3159,1,0,0,0,3176,3161,1,0,0,0,3176,3164,1,0,0,0,3176, + 3167,1,0,0,0,3176,3171,1,0,0,0,3177,269,1,0,0,0,3178,3185,3,1236, + 618,0,3179,3180,5,12,0,0,3180,3185,3,1236,618,0,3181,3182,5,13,0, + 0,3182,3185,3,1236,618,0,3183,3185,3,1246,623,0,3184,3178,1,0,0, + 0,3184,3179,1,0,0,0,3184,3181,1,0,0,0,3184,3183,1,0,0,0,3185,271, + 1,0,0,0,3186,3191,3,270,135,0,3187,3188,5,6,0,0,3188,3190,3,270, + 135,0,3189,3187,1,0,0,0,3190,3193,1,0,0,0,3191,3189,1,0,0,0,3191, + 3192,1,0,0,0,3192,273,1,0,0,0,3193,3191,1,0,0,0,3194,3195,5,46,0, + 0,3195,3197,3,564,282,0,3196,3198,5,352,0,0,3197,3196,1,0,0,0,3197, + 3198,1,0,0,0,3198,3199,1,0,0,0,3199,3200,3,282,141,0,3200,3201,5, + 238,0,0,3201,3208,3,1222,611,0,3202,3203,5,215,0,0,3203,3204,3,276, + 138,0,3204,3206,3,278,139,0,3205,3207,3,280,140,0,3206,3205,1,0, + 0,0,3206,3207,1,0,0,0,3207,3209,1,0,0,0,3208,3202,1,0,0,0,3208,3209, + 1,0,0,0,3209,275,1,0,0,0,3210,3212,3,1222,611,0,3211,3213,3,480, + 240,0,3212,3211,1,0,0,0,3212,3213,1,0,0,0,3213,277,1,0,0,0,3214, + 3215,5,230,0,0,3215,3218,3,276,138,0,3216,3218,1,0,0,0,3217,3214, + 1,0,0,0,3217,3216,1,0,0,0,3218,279,1,0,0,0,3219,3220,5,366,0,0,3220, + 3224,3,276,138,0,3221,3222,5,262,0,0,3222,3224,5,366,0,0,3223,3219, + 1,0,0,0,3223,3221,1,0,0,0,3224,281,1,0,0,0,3225,3228,5,288,0,0,3226, + 3228,1,0,0,0,3227,3225,1,0,0,0,3227,3226,1,0,0,0,3228,283,1,0,0, + 0,3229,3230,5,46,0,0,3230,3231,5,344,0,0,3231,3232,3,1222,611,0, + 3232,3233,3,286,143,0,3233,3234,5,246,0,0,3234,3235,3,1240,620,0, + 3235,3236,3,116,58,0,3236,285,1,0,0,0,3237,3238,5,275,0,0,3238,3241, + 3,1250,625,0,3239,3241,1,0,0,0,3240,3237,1,0,0,0,3240,3239,1,0,0, + 0,3241,287,1,0,0,0,3242,3243,5,191,0,0,3243,3246,5,344,0,0,3244, + 3245,5,220,0,0,3245,3247,5,389,0,0,3246,3244,1,0,0,0,3246,3247,1, + 0,0,0,3247,3248,1,0,0,0,3248,3249,3,1222,611,0,3249,289,1,0,0,0, + 3250,3251,5,46,0,0,3251,3255,5,204,0,0,3252,3253,5,220,0,0,3253, + 3254,5,77,0,0,3254,3256,5,389,0,0,3255,3252,1,0,0,0,3255,3256,1, + 0,0,0,3256,3257,1,0,0,0,3257,3258,3,1222,611,0,3258,3262,3,14,7, + 0,3259,3261,3,292,146,0,3260,3259,1,0,0,0,3261,3264,1,0,0,0,3262, + 3260,1,0,0,0,3262,3263,1,0,0,0,3263,291,1,0,0,0,3264,3262,1,0,0, + 0,3265,3266,5,316,0,0,3266,3273,3,1222,611,0,3267,3268,5,368,0,0, + 3268,3273,3,70,35,0,3269,3270,5,64,0,0,3270,3273,3,70,35,0,3271, + 3273,5,150,0,0,3272,3265,1,0,0,0,3272,3267,1,0,0,0,3272,3269,1,0, + 0,0,3272,3271,1,0,0,0,3273,293,1,0,0,0,3274,3275,5,138,0,0,3275, + 3276,5,204,0,0,3276,3277,3,1222,611,0,3277,3281,5,362,0,0,3278,3280, + 3,296,148,0,3279,3278,1,0,0,0,3280,3283,1,0,0,0,3281,3279,1,0,0, + 0,3281,3282,1,0,0,0,3282,295,1,0,0,0,3283,3281,1,0,0,0,3284,3285, + 5,94,0,0,3285,3286,3,70,35,0,3286,297,1,0,0,0,3287,3288,5,138,0, + 0,3288,3289,5,204,0,0,3289,3290,3,1222,611,0,3290,3291,3,38,19,0, + 3291,3292,3,470,235,0,3292,3293,3,1222,611,0,3293,3392,1,0,0,0,3294, + 3295,5,138,0,0,3295,3296,5,204,0,0,3296,3297,3,1222,611,0,3297,3298, + 3,38,19,0,3298,3299,3,468,234,0,3299,3300,3,478,239,0,3300,3392, + 1,0,0,0,3301,3302,5,138,0,0,3302,3303,5,204,0,0,3303,3304,3,1222, + 611,0,3304,3305,3,38,19,0,3305,3306,5,136,0,0,3306,3307,3,590,295, + 0,3307,3392,1,0,0,0,3308,3309,5,138,0,0,3309,3310,5,204,0,0,3310, + 3311,3,1222,611,0,3311,3312,3,38,19,0,3312,3313,5,41,0,0,3313,3314, + 5,2,0,0,3314,3315,3,1004,502,0,3315,3316,5,36,0,0,3316,3317,3,1004, + 502,0,3317,3318,5,3,0,0,3318,3392,1,0,0,0,3319,3320,5,138,0,0,3320, + 3321,5,204,0,0,3321,3322,3,1222,611,0,3322,3323,3,38,19,0,3323,3324, + 5,189,0,0,3324,3325,3,1004,502,0,3325,3392,1,0,0,0,3326,3327,5,138, + 0,0,3327,3328,5,204,0,0,3328,3329,3,1222,611,0,3329,3330,3,38,19, + 0,3330,3331,5,211,0,0,3331,3332,3,570,285,0,3332,3392,1,0,0,0,3333, + 3334,5,138,0,0,3334,3335,5,204,0,0,3335,3336,3,1222,611,0,3336,3337, + 3,38,19,0,3337,3338,5,271,0,0,3338,3339,3,624,312,0,3339,3392,1, + 0,0,0,3340,3341,5,138,0,0,3341,3342,5,204,0,0,3342,3343,3,1222,611, + 0,3343,3344,3,38,19,0,3344,3345,5,271,0,0,3345,3346,5,156,0,0,3346, + 3347,3,478,239,0,3347,3348,5,100,0,0,3348,3349,3,1222,611,0,3349, + 3392,1,0,0,0,3350,3351,5,138,0,0,3351,3352,5,204,0,0,3352,3353,3, + 1222,611,0,3353,3354,3,38,19,0,3354,3355,5,271,0,0,3355,3356,5,206, + 0,0,3356,3357,3,478,239,0,3357,3358,5,100,0,0,3358,3359,3,1222,611, + 0,3359,3392,1,0,0,0,3360,3361,5,138,0,0,3361,3362,5,204,0,0,3362, + 3363,3,1222,611,0,3363,3364,3,38,19,0,3364,3365,5,289,0,0,3365,3366, + 3,570,285,0,3366,3392,1,0,0,0,3367,3368,5,138,0,0,3368,3369,5,204, + 0,0,3369,3370,3,1222,611,0,3370,3371,3,38,19,0,3371,3372,5,442,0, + 0,3372,3373,3,570,285,0,3373,3392,1,0,0,0,3374,3375,5,138,0,0,3375, + 3376,5,204,0,0,3376,3377,3,1222,611,0,3377,3378,3,38,19,0,3378,3379, + 5,443,0,0,3379,3380,5,62,0,0,3380,3381,3,1004,502,0,3381,3382,5, + 238,0,0,3382,3383,3,1222,611,0,3383,3392,1,0,0,0,3384,3385,5,138, + 0,0,3385,3386,5,204,0,0,3386,3387,3,1222,611,0,3387,3388,3,38,19, + 0,3388,3389,5,353,0,0,3389,3390,3,1004,502,0,3390,3392,1,0,0,0,3391, + 3287,1,0,0,0,3391,3294,1,0,0,0,3391,3301,1,0,0,0,3391,3308,1,0,0, + 0,3391,3319,1,0,0,0,3391,3326,1,0,0,0,3391,3333,1,0,0,0,3391,3340, + 1,0,0,0,3391,3350,1,0,0,0,3391,3360,1,0,0,0,3391,3367,1,0,0,0,3391, + 3374,1,0,0,0,3391,3384,1,0,0,0,3392,299,1,0,0,0,3393,3394,5,46,0, + 0,3394,3395,5,63,0,0,3395,3396,5,174,0,0,3396,3397,5,374,0,0,3397, + 3399,3,1222,611,0,3398,3400,3,304,152,0,3399,3398,1,0,0,0,3399,3400, + 1,0,0,0,3400,3401,1,0,0,0,3401,3402,3,308,154,0,3402,301,1,0,0,0, + 3403,3404,5,215,0,0,3404,3412,3,276,138,0,3405,3406,5,262,0,0,3406, + 3412,5,215,0,0,3407,3408,5,366,0,0,3408,3412,3,276,138,0,3409,3410, + 5,262,0,0,3410,3412,5,366,0,0,3411,3403,1,0,0,0,3411,3405,1,0,0, + 0,3411,3407,1,0,0,0,3411,3409,1,0,0,0,3412,303,1,0,0,0,3413,3415, + 3,302,151,0,3414,3413,1,0,0,0,3415,3416,1,0,0,0,3416,3414,1,0,0, + 0,3416,3417,1,0,0,0,3417,305,1,0,0,0,3418,3419,5,138,0,0,3419,3420, + 5,63,0,0,3420,3421,5,174,0,0,3421,3422,5,374,0,0,3422,3424,3,1222, + 611,0,3423,3425,3,304,152,0,3424,3423,1,0,0,0,3424,3425,1,0,0,0, + 3425,3426,1,0,0,0,3426,3427,3,312,156,0,3427,3436,1,0,0,0,3428,3429, + 5,138,0,0,3429,3430,5,63,0,0,3430,3431,5,174,0,0,3431,3432,5,374, + 0,0,3432,3433,3,1222,611,0,3433,3434,3,304,152,0,3434,3436,1,0,0, + 0,3435,3418,1,0,0,0,3435,3428,1,0,0,0,3436,307,1,0,0,0,3437,3438, + 5,273,0,0,3438,3439,5,2,0,0,3439,3440,3,310,155,0,3440,3441,5,3, + 0,0,3441,3444,1,0,0,0,3442,3444,1,0,0,0,3443,3437,1,0,0,0,3443,3442, + 1,0,0,0,3444,309,1,0,0,0,3445,3450,3,318,159,0,3446,3447,5,6,0,0, + 3447,3449,3,318,159,0,3448,3446,1,0,0,0,3449,3452,1,0,0,0,3450,3448, + 1,0,0,0,3450,3451,1,0,0,0,3451,311,1,0,0,0,3452,3450,1,0,0,0,3453, + 3454,5,273,0,0,3454,3455,5,2,0,0,3455,3456,3,314,157,0,3456,3457, + 5,3,0,0,3457,313,1,0,0,0,3458,3463,3,316,158,0,3459,3460,5,6,0,0, + 3460,3462,3,316,158,0,3461,3459,1,0,0,0,3462,3465,1,0,0,0,3463,3461, + 1,0,0,0,3463,3464,1,0,0,0,3464,315,1,0,0,0,3465,3463,1,0,0,0,3466, + 3474,3,318,159,0,3467,3468,5,326,0,0,3468,3474,3,318,159,0,3469, + 3470,5,133,0,0,3470,3474,3,318,159,0,3471,3472,5,191,0,0,3472,3474, + 3,320,160,0,3473,3466,1,0,0,0,3473,3467,1,0,0,0,3473,3469,1,0,0, + 0,3473,3471,1,0,0,0,3474,317,1,0,0,0,3475,3476,3,320,160,0,3476, + 3477,3,322,161,0,3477,319,1,0,0,0,3478,3479,3,1262,631,0,3479,321, + 1,0,0,0,3480,3481,3,1240,620,0,3481,323,1,0,0,0,3482,3483,5,46,0, + 0,3483,3484,5,324,0,0,3484,3485,3,1222,611,0,3485,3487,3,326,163, + 0,3486,3488,3,328,164,0,3487,3486,1,0,0,0,3487,3488,1,0,0,0,3488, + 3489,1,0,0,0,3489,3490,5,63,0,0,3490,3491,5,174,0,0,3491,3492,5, + 374,0,0,3492,3493,3,1222,611,0,3493,3494,3,308,154,0,3494,3512,1, + 0,0,0,3495,3496,5,46,0,0,3496,3497,5,324,0,0,3497,3498,5,220,0,0, + 3498,3499,5,77,0,0,3499,3500,5,389,0,0,3500,3501,3,1222,611,0,3501, + 3503,3,326,163,0,3502,3504,3,328,164,0,3503,3502,1,0,0,0,3503,3504, + 1,0,0,0,3504,3505,1,0,0,0,3505,3506,5,63,0,0,3506,3507,5,174,0,0, + 3507,3508,5,374,0,0,3508,3509,3,1222,611,0,3509,3510,3,308,154,0, + 3510,3512,1,0,0,0,3511,3482,1,0,0,0,3511,3495,1,0,0,0,3512,325,1, + 0,0,0,3513,3514,5,353,0,0,3514,3517,3,1240,620,0,3515,3517,1,0,0, + 0,3516,3513,1,0,0,0,3516,3515,1,0,0,0,3517,327,1,0,0,0,3518,3521, + 5,368,0,0,3519,3522,3,1240,620,0,3520,3522,5,78,0,0,3521,3519,1, + 0,0,0,3521,3520,1,0,0,0,3522,329,1,0,0,0,3523,3524,5,138,0,0,3524, + 3525,5,324,0,0,3525,3531,3,1222,611,0,3526,3532,3,312,156,0,3527, + 3529,3,328,164,0,3528,3530,3,312,156,0,3529,3528,1,0,0,0,3529,3530, + 1,0,0,0,3530,3532,1,0,0,0,3531,3526,1,0,0,0,3531,3527,1,0,0,0,3532, + 331,1,0,0,0,3533,3534,5,46,0,0,3534,3535,5,63,0,0,3535,3536,5,92, + 0,0,3536,3537,3,1218,609,0,3537,3538,5,2,0,0,3538,3539,3,162,81, + 0,3539,3540,5,3,0,0,3540,3541,3,222,111,0,3541,3542,5,324,0,0,3542, + 3543,3,1222,611,0,3543,3544,3,308,154,0,3544,3590,1,0,0,0,3545,3546, + 5,46,0,0,3546,3547,5,63,0,0,3547,3548,5,92,0,0,3548,3549,5,220,0, + 0,3549,3550,5,77,0,0,3550,3551,5,389,0,0,3551,3552,3,1218,609,0, + 3552,3553,5,2,0,0,3553,3554,3,162,81,0,3554,3555,5,3,0,0,3555,3556, + 3,222,111,0,3556,3557,5,324,0,0,3557,3558,3,1222,611,0,3558,3559, + 3,308,154,0,3559,3590,1,0,0,0,3560,3561,5,46,0,0,3561,3562,5,63, + 0,0,3562,3563,5,92,0,0,3563,3564,3,1218,609,0,3564,3565,5,278,0, + 0,3565,3566,5,268,0,0,3566,3567,3,1218,609,0,3567,3568,3,164,82, + 0,3568,3569,3,126,63,0,3569,3570,5,324,0,0,3570,3571,3,1222,611, + 0,3571,3572,3,308,154,0,3572,3590,1,0,0,0,3573,3574,5,46,0,0,3574, + 3575,5,63,0,0,3575,3576,5,92,0,0,3576,3577,5,220,0,0,3577,3578,5, + 77,0,0,3578,3579,5,389,0,0,3579,3580,3,1218,609,0,3580,3581,5,278, + 0,0,3581,3582,5,268,0,0,3582,3583,3,1218,609,0,3583,3584,3,164,82, + 0,3584,3585,3,126,63,0,3585,3586,5,324,0,0,3586,3587,3,1222,611, + 0,3587,3588,3,308,154,0,3588,3590,1,0,0,0,3589,3533,1,0,0,0,3589, + 3545,1,0,0,0,3589,3560,1,0,0,0,3589,3573,1,0,0,0,3590,333,1,0,0, + 0,3591,3592,5,444,0,0,3592,3593,5,63,0,0,3593,3594,5,316,0,0,3594, + 3595,3,1222,611,0,3595,3596,3,338,169,0,3596,3597,5,64,0,0,3597, + 3598,5,324,0,0,3598,3599,3,1222,611,0,3599,3600,5,71,0,0,3600,3601, + 3,1222,611,0,3601,3602,3,308,154,0,3602,335,1,0,0,0,3603,3604,5, + 74,0,0,3604,3607,5,94,0,0,3605,3607,5,59,0,0,3606,3603,1,0,0,0,3606, + 3605,1,0,0,0,3607,337,1,0,0,0,3608,3609,3,336,168,0,3609,3610,5, + 2,0,0,3610,3611,3,968,484,0,3611,3612,5,3,0,0,3612,3615,1,0,0,0, + 3613,3615,1,0,0,0,3614,3608,1,0,0,0,3614,3613,1,0,0,0,3615,339,1, + 0,0,0,3616,3617,5,46,0,0,3617,3618,5,99,0,0,3618,3619,5,248,0,0, + 3619,3620,5,62,0,0,3620,3621,3,342,171,0,3621,3622,5,324,0,0,3622, + 3623,3,1222,611,0,3623,3624,3,308,154,0,3624,3638,1,0,0,0,3625,3626, + 5,46,0,0,3626,3627,5,99,0,0,3627,3628,5,248,0,0,3628,3629,5,220, + 0,0,3629,3630,5,77,0,0,3630,3631,5,389,0,0,3631,3632,5,62,0,0,3632, + 3633,3,342,171,0,3633,3634,5,324,0,0,3634,3635,3,1222,611,0,3635, + 3636,3,308,154,0,3636,3638,1,0,0,0,3637,3616,1,0,0,0,3637,3625,1, + 0,0,0,3638,341,1,0,0,0,3639,3642,3,1250,625,0,3640,3642,5,99,0,0, + 3641,3639,1,0,0,0,3641,3640,1,0,0,0,3642,343,1,0,0,0,3643,3644,5, + 191,0,0,3644,3645,5,99,0,0,3645,3646,5,248,0,0,3646,3647,5,62,0, + 0,3647,3648,3,342,171,0,3648,3649,5,324,0,0,3649,3650,3,1222,611, + 0,3650,3662,1,0,0,0,3651,3652,5,191,0,0,3652,3653,5,99,0,0,3653, + 3654,5,248,0,0,3654,3655,5,220,0,0,3655,3656,5,389,0,0,3656,3657, + 5,62,0,0,3657,3658,3,342,171,0,3658,3659,5,324,0,0,3659,3660,3,1222, + 611,0,3660,3662,1,0,0,0,3661,3643,1,0,0,0,3661,3651,1,0,0,0,3662, + 345,1,0,0,0,3663,3664,5,138,0,0,3664,3665,5,99,0,0,3665,3666,5,248, + 0,0,3666,3667,5,62,0,0,3667,3668,3,342,171,0,3668,3669,5,324,0,0, + 3669,3670,3,1222,611,0,3670,3671,3,312,156,0,3671,347,1,0,0,0,3672, + 3673,5,46,0,0,3673,3674,5,445,0,0,3674,3675,3,1222,611,0,3675,3676, + 5,80,0,0,3676,3677,3,1218,609,0,3677,3678,3,360,180,0,3678,3679, + 3,362,181,0,3679,3680,3,356,178,0,3680,3681,3,352,176,0,3681,3682, + 3,354,177,0,3682,349,1,0,0,0,3683,3684,5,138,0,0,3684,3685,5,445, + 0,0,3685,3686,3,1222,611,0,3686,3687,5,80,0,0,3687,3688,3,1218,609, + 0,3688,3689,3,358,179,0,3689,3690,3,352,176,0,3690,3691,3,354,177, + 0,3691,351,1,0,0,0,3692,3693,5,100,0,0,3693,3694,5,2,0,0,3694,3695, + 3,1046,523,0,3695,3696,5,3,0,0,3696,3699,1,0,0,0,3697,3699,1,0,0, + 0,3698,3692,1,0,0,0,3698,3697,1,0,0,0,3699,353,1,0,0,0,3700,3701, + 5,105,0,0,3701,3702,5,42,0,0,3702,3703,5,2,0,0,3703,3704,3,1046, + 523,0,3704,3705,5,3,0,0,3705,3708,1,0,0,0,3706,3708,1,0,0,0,3707, + 3700,1,0,0,0,3707,3706,1,0,0,0,3708,355,1,0,0,0,3709,3710,5,94,0, + 0,3710,3713,3,1252,626,0,3711,3713,1,0,0,0,3712,3709,1,0,0,0,3712, + 3711,1,0,0,0,3713,357,1,0,0,0,3714,3715,5,94,0,0,3715,3718,3,1252, + 626,0,3716,3718,1,0,0,0,3717,3714,1,0,0,0,3717,3716,1,0,0,0,3718, + 359,1,0,0,0,3719,3720,5,36,0,0,3720,3723,3,1264,632,0,3721,3723, + 1,0,0,0,3722,3719,1,0,0,0,3722,3721,1,0,0,0,3723,361,1,0,0,0,3724, + 3725,5,62,0,0,3725,3728,3,364,182,0,3726,3728,1,0,0,0,3727,3724, + 1,0,0,0,3727,3726,1,0,0,0,3728,363,1,0,0,0,3729,3730,7,17,0,0,3730, + 365,1,0,0,0,3731,3732,5,46,0,0,3732,3733,5,131,0,0,3733,3734,5,446, + 0,0,3734,3735,3,1222,611,0,3735,3736,5,353,0,0,3736,3737,3,368,184, + 0,3737,3738,5,215,0,0,3738,3739,3,276,138,0,3739,367,1,0,0,0,3740, + 3741,7,18,0,0,3741,369,1,0,0,0,3742,3743,5,46,0,0,3743,3744,5,350, + 0,0,3744,3745,3,1222,611,0,3745,3746,3,372,186,0,3746,3747,3,374, + 187,0,3747,3748,5,80,0,0,3748,3749,3,1218,609,0,3749,3750,3,378, + 189,0,3750,3751,3,390,195,0,3751,3752,3,394,197,0,3752,3753,5,202, + 0,0,3753,3754,3,396,198,0,3754,3755,3,1228,614,0,3755,3756,5,2,0, + 0,3756,3757,3,398,199,0,3757,3758,5,3,0,0,3758,3781,1,0,0,0,3759, + 3760,5,46,0,0,3760,3761,5,45,0,0,3761,3762,5,350,0,0,3762,3763,3, + 1222,611,0,3763,3764,5,135,0,0,3764,3765,3,374,187,0,3765,3766,5, + 80,0,0,3766,3767,3,1218,609,0,3767,3768,3,402,201,0,3768,3769,3, + 404,202,0,3769,3770,5,62,0,0,3770,3771,5,192,0,0,3771,3772,5,407, + 0,0,3772,3773,3,394,197,0,3773,3774,5,202,0,0,3774,3775,3,396,198, + 0,3775,3776,3,1228,614,0,3776,3777,5,2,0,0,3777,3778,3,398,199,0, + 3778,3779,5,3,0,0,3779,3781,1,0,0,0,3780,3742,1,0,0,0,3780,3759, + 1,0,0,0,3781,371,1,0,0,0,3782,3787,5,145,0,0,3783,3787,5,135,0,0, + 3784,3785,5,233,0,0,3785,3787,5,268,0,0,3786,3782,1,0,0,0,3786,3783, + 1,0,0,0,3786,3784,1,0,0,0,3787,373,1,0,0,0,3788,3793,3,376,188,0, + 3789,3790,5,82,0,0,3790,3792,3,376,188,0,3791,3789,1,0,0,0,3792, + 3795,1,0,0,0,3793,3791,1,0,0,0,3793,3794,1,0,0,0,3794,375,1,0,0, + 0,3795,3793,1,0,0,0,3796,3804,5,232,0,0,3797,3804,5,182,0,0,3798, + 3804,5,362,0,0,3799,3800,5,362,0,0,3800,3801,5,268,0,0,3801,3804, + 3,200,100,0,3802,3804,5,351,0,0,3803,3796,1,0,0,0,3803,3797,1,0, + 0,0,3803,3798,1,0,0,0,3803,3799,1,0,0,0,3803,3802,1,0,0,0,3804,377, + 1,0,0,0,3805,3806,5,447,0,0,3806,3809,3,380,190,0,3807,3809,1,0, + 0,0,3808,3805,1,0,0,0,3808,3807,1,0,0,0,3809,379,1,0,0,0,3810,3812, + 3,382,191,0,3811,3810,1,0,0,0,3812,3813,1,0,0,0,3813,3811,1,0,0, + 0,3813,3814,1,0,0,0,3814,381,1,0,0,0,3815,3816,3,384,192,0,3816, + 3817,3,386,193,0,3817,3818,3,758,379,0,3818,3819,3,388,194,0,3819, + 383,1,0,0,0,3820,3821,7,19,0,0,3821,385,1,0,0,0,3822,3823,7,20,0, + 0,3823,387,1,0,0,0,3824,3825,3,1254,627,0,3825,389,1,0,0,0,3826, + 3828,5,62,0,0,3827,3829,5,192,0,0,3828,3827,1,0,0,0,3828,3829,1, + 0,0,0,3829,3830,1,0,0,0,3830,3833,3,392,196,0,3831,3833,1,0,0,0, + 3832,3826,1,0,0,0,3832,3831,1,0,0,0,3833,391,1,0,0,0,3834,3835,7, + 21,0,0,3835,393,1,0,0,0,3836,3837,5,102,0,0,3837,3838,5,2,0,0,3838, + 3839,3,1046,523,0,3839,3840,5,3,0,0,3840,3843,1,0,0,0,3841,3843, + 1,0,0,0,3842,3836,1,0,0,0,3842,3841,1,0,0,0,3843,395,1,0,0,0,3844, + 3845,7,22,0,0,3845,397,1,0,0,0,3846,3849,3,400,200,0,3847,3849,1, + 0,0,0,3848,3846,1,0,0,0,3848,3847,1,0,0,0,3849,3854,1,0,0,0,3850, + 3851,5,6,0,0,3851,3853,3,400,200,0,3852,3850,1,0,0,0,3853,3856,1, + 0,0,0,3854,3852,1,0,0,0,3854,3855,1,0,0,0,3855,399,1,0,0,0,3856, + 3854,1,0,0,0,3857,3862,3,1238,619,0,3858,3862,3,1236,618,0,3859, + 3862,3,1240,620,0,3860,3862,3,1262,631,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,401,1,0,0, + 0,3863,3864,5,64,0,0,3864,3867,3,1218,609,0,3865,3867,1,0,0,0,3866, + 3863,1,0,0,0,3866,3865,1,0,0,0,3867,403,1,0,0,0,3868,3870,3,406, + 203,0,3869,3868,1,0,0,0,3870,3873,1,0,0,0,3871,3869,1,0,0,0,3871, + 3872,1,0,0,0,3872,405,1,0,0,0,3873,3871,1,0,0,0,3874,3875,5,77,0, + 0,3875,3886,5,54,0,0,3876,3886,5,54,0,0,3877,3878,5,69,0,0,3878, + 3886,5,221,0,0,3879,3880,5,69,0,0,3880,3886,5,180,0,0,3881,3882, + 5,77,0,0,3882,3886,5,364,0,0,3883,3884,5,262,0,0,3884,3886,5,228, + 0,0,3885,3874,1,0,0,0,3885,3876,1,0,0,0,3885,3877,1,0,0,0,3885,3879, + 1,0,0,0,3885,3881,1,0,0,0,3885,3883,1,0,0,0,3886,407,1,0,0,0,3887, + 3888,5,46,0,0,3888,3889,5,198,0,0,3889,3890,5,350,0,0,3890,3891, + 3,1222,611,0,3891,3892,5,80,0,0,3892,3893,3,1262,631,0,3893,3894, + 5,202,0,0,3894,3895,3,396,198,0,3895,3896,3,1228,614,0,3896,3897, + 5,2,0,0,3897,3898,5,3,0,0,3898,3914,1,0,0,0,3899,3900,5,46,0,0,3900, + 3901,5,198,0,0,3901,3902,5,350,0,0,3902,3903,3,1222,611,0,3903,3904, + 5,80,0,0,3904,3905,3,1262,631,0,3905,3906,5,102,0,0,3906,3907,3, + 410,205,0,3907,3908,5,202,0,0,3908,3909,3,396,198,0,3909,3910,3, + 1228,614,0,3910,3911,5,2,0,0,3911,3912,5,3,0,0,3912,3914,1,0,0,0, + 3913,3887,1,0,0,0,3913,3899,1,0,0,0,3914,409,1,0,0,0,3915,3920,3, + 412,206,0,3916,3917,5,33,0,0,3917,3919,3,412,206,0,3918,3916,1,0, + 0,0,3919,3922,1,0,0,0,3920,3918,1,0,0,0,3920,3921,1,0,0,0,3921,411, + 1,0,0,0,3922,3920,1,0,0,0,3923,3924,3,1254,627,0,3924,3925,5,68, + 0,0,3925,3926,5,2,0,0,3926,3927,3,414,207,0,3927,3928,5,3,0,0,3928, + 413,1,0,0,0,3929,3934,3,1240,620,0,3930,3931,5,6,0,0,3931,3933,3, + 1240,620,0,3932,3930,1,0,0,0,3933,3936,1,0,0,0,3934,3932,1,0,0,0, + 3934,3935,1,0,0,0,3935,415,1,0,0,0,3936,3934,1,0,0,0,3937,3938,5, + 138,0,0,3938,3939,5,198,0,0,3939,3940,5,350,0,0,3940,3941,3,1222, + 611,0,3941,3942,3,418,209,0,3942,417,1,0,0,0,3943,3950,5,193,0,0, + 3944,3945,5,193,0,0,3945,3950,5,305,0,0,3946,3947,5,193,0,0,3947, + 3950,5,139,0,0,3948,3950,5,186,0,0,3949,3943,1,0,0,0,3949,3944,1, + 0,0,0,3949,3946,1,0,0,0,3949,3948,1,0,0,0,3950,419,1,0,0,0,3951, + 3952,5,46,0,0,3952,3953,5,140,0,0,3953,3954,3,478,239,0,3954,3955, + 5,42,0,0,3955,3956,5,2,0,0,3956,3957,3,1046,523,0,3957,3958,5,3, + 0,0,3958,3959,3,404,202,0,3959,421,1,0,0,0,3960,3961,5,46,0,0,3961, + 3962,3,564,282,0,3962,3963,5,136,0,0,3963,3964,3,1228,614,0,3964, + 3965,3,586,293,0,3965,3966,3,424,212,0,3966,4069,1,0,0,0,3967,3968, + 5,46,0,0,3968,3969,3,564,282,0,3969,3970,5,136,0,0,3970,3971,3,1228, + 614,0,3971,3972,3,430,215,0,3972,4069,1,0,0,0,3973,3974,5,46,0,0, + 3974,3975,5,271,0,0,3975,3976,3,620,310,0,3976,3977,3,424,212,0, + 3977,4069,1,0,0,0,3978,3979,5,46,0,0,3979,3980,5,353,0,0,3980,3981, + 3,478,239,0,3981,3982,3,424,212,0,3982,4069,1,0,0,0,3983,3984,5, + 46,0,0,3984,3985,5,353,0,0,3985,4069,3,478,239,0,3986,3987,5,46, + 0,0,3987,3988,5,353,0,0,3988,3989,3,478,239,0,3989,3990,5,36,0,0, + 3990,3991,5,2,0,0,3991,3992,3,986,493,0,3992,3993,5,3,0,0,3993,4069, + 1,0,0,0,3994,3995,5,46,0,0,3995,3996,5,353,0,0,3996,3997,3,478,239, + 0,3997,3998,5,36,0,0,3998,3999,5,196,0,0,3999,4001,5,2,0,0,4000, + 4002,3,434,217,0,4001,4000,1,0,0,0,4001,4002,1,0,0,0,4002,4003,1, + 0,0,0,4003,4004,5,3,0,0,4004,4069,1,0,0,0,4005,4006,5,46,0,0,4006, + 4007,5,353,0,0,4007,4008,3,478,239,0,4008,4009,5,36,0,0,4009,4010, + 5,292,0,0,4010,4011,3,424,212,0,4011,4069,1,0,0,0,4012,4013,5,46, + 0,0,4013,4014,5,348,0,0,4014,4015,5,318,0,0,4015,4016,5,276,0,0, + 4016,4017,3,478,239,0,4017,4018,3,424,212,0,4018,4069,1,0,0,0,4019, + 4020,5,46,0,0,4020,4021,5,348,0,0,4021,4022,5,318,0,0,4022,4023, + 5,185,0,0,4023,4024,3,478,239,0,4024,4025,3,424,212,0,4025,4069, + 1,0,0,0,4026,4027,5,46,0,0,4027,4028,5,348,0,0,4028,4029,5,318,0, + 0,4029,4030,5,346,0,0,4030,4031,3,478,239,0,4031,4032,3,424,212, + 0,4032,4069,1,0,0,0,4033,4034,5,46,0,0,4034,4035,5,348,0,0,4035, + 4036,5,318,0,0,4036,4037,5,163,0,0,4037,4038,3,478,239,0,4038,4039, + 3,424,212,0,4039,4069,1,0,0,0,4040,4041,5,46,0,0,4041,4042,5,108, + 0,0,4042,4043,3,478,239,0,4043,4044,3,424,212,0,4044,4069,1,0,0, + 0,4045,4046,5,46,0,0,4046,4047,5,108,0,0,4047,4048,5,220,0,0,4048, + 4049,5,77,0,0,4049,4050,5,389,0,0,4050,4051,3,478,239,0,4051,4052, + 3,424,212,0,4052,4069,1,0,0,0,4053,4054,5,46,0,0,4054,4055,5,108, + 0,0,4055,4056,3,478,239,0,4056,4057,5,64,0,0,4057,4058,3,478,239, + 0,4058,4069,1,0,0,0,4059,4060,5,46,0,0,4060,4061,5,108,0,0,4061, + 4062,5,220,0,0,4062,4063,5,77,0,0,4063,4064,5,389,0,0,4064,4065, + 3,478,239,0,4065,4066,5,64,0,0,4066,4067,3,478,239,0,4067,4069,1, + 0,0,0,4068,3960,1,0,0,0,4068,3967,1,0,0,0,4068,3973,1,0,0,0,4068, + 3978,1,0,0,0,4068,3983,1,0,0,0,4068,3986,1,0,0,0,4068,3994,1,0,0, + 0,4068,4005,1,0,0,0,4068,4012,1,0,0,0,4068,4019,1,0,0,0,4068,4026, + 1,0,0,0,4068,4033,1,0,0,0,4068,4040,1,0,0,0,4068,4045,1,0,0,0,4068, + 4053,1,0,0,0,4068,4059,1,0,0,0,4069,423,1,0,0,0,4070,4071,5,2,0, + 0,4071,4076,3,426,213,0,4072,4073,5,6,0,0,4073,4075,3,426,213,0, + 4074,4072,1,0,0,0,4075,4078,1,0,0,0,4076,4074,1,0,0,0,4076,4077, + 1,0,0,0,4077,4079,1,0,0,0,4078,4076,1,0,0,0,4079,4080,5,3,0,0,4080, + 425,1,0,0,0,4081,4084,3,1262,631,0,4082,4083,5,10,0,0,4083,4085, + 3,428,214,0,4084,4082,1,0,0,0,4084,4085,1,0,0,0,4085,427,1,0,0,0, + 4086,4093,3,584,292,0,4087,4093,3,1274,637,0,4088,4093,3,1160,580, + 0,4089,4093,3,270,135,0,4090,4093,3,1240,620,0,4091,4093,5,400,0, + 0,4092,4086,1,0,0,0,4092,4087,1,0,0,0,4092,4088,1,0,0,0,4092,4089, + 1,0,0,0,4092,4090,1,0,0,0,4092,4091,1,0,0,0,4093,429,1,0,0,0,4094, + 4095,5,2,0,0,4095,4100,3,432,216,0,4096,4097,5,6,0,0,4097,4099,3, + 432,216,0,4098,4096,1,0,0,0,4099,4102,1,0,0,0,4100,4098,1,0,0,0, + 4100,4101,1,0,0,0,4101,4103,1,0,0,0,4102,4100,1,0,0,0,4103,4104, + 5,3,0,0,4104,431,1,0,0,0,4105,4106,3,1264,632,0,4106,4107,5,10,0, + 0,4107,4108,3,428,214,0,4108,433,1,0,0,0,4109,4114,3,1240,620,0, + 4110,4111,5,6,0,0,4111,4113,3,1240,620,0,4112,4110,1,0,0,0,4113, + 4116,1,0,0,0,4114,4112,1,0,0,0,4114,4115,1,0,0,0,4115,435,1,0,0, + 0,4116,4114,1,0,0,0,4117,4118,5,138,0,0,4118,4119,5,353,0,0,4119, + 4120,3,478,239,0,4120,4121,5,133,0,0,4121,4122,5,450,0,0,4122,4123, + 3,438,219,0,4123,4124,3,1240,620,0,4124,4155,1,0,0,0,4125,4126,5, + 138,0,0,4126,4127,5,353,0,0,4127,4128,3,478,239,0,4128,4129,5,133, + 0,0,4129,4130,5,450,0,0,4130,4131,3,438,219,0,4131,4132,3,1240,620, + 0,4132,4133,5,145,0,0,4133,4134,3,1240,620,0,4134,4155,1,0,0,0,4135, + 4136,5,138,0,0,4136,4137,5,353,0,0,4137,4138,3,478,239,0,4138,4139, + 5,133,0,0,4139,4140,5,450,0,0,4140,4141,3,438,219,0,4141,4142,3, + 1240,620,0,4142,4143,5,135,0,0,4143,4144,3,1240,620,0,4144,4155, + 1,0,0,0,4145,4146,5,138,0,0,4146,4147,5,353,0,0,4147,4148,3,478, + 239,0,4148,4149,5,302,0,0,4149,4150,5,450,0,0,4150,4151,3,1240,620, + 0,4151,4152,5,94,0,0,4152,4153,3,1240,620,0,4153,4155,1,0,0,0,4154, + 4117,1,0,0,0,4154,4125,1,0,0,0,4154,4135,1,0,0,0,4154,4145,1,0,0, + 0,4155,437,1,0,0,0,4156,4157,5,220,0,0,4157,4158,5,77,0,0,4158,4161, + 5,389,0,0,4159,4161,1,0,0,0,4160,4156,1,0,0,0,4160,4159,1,0,0,0, + 4161,439,1,0,0,0,4162,4163,5,46,0,0,4163,4164,5,271,0,0,4164,4165, + 5,156,0,0,4165,4167,3,478,239,0,4166,4168,5,53,0,0,4167,4166,1,0, + 0,0,4167,4168,1,0,0,0,4168,4169,1,0,0,0,4169,4170,5,62,0,0,4170, + 4171,5,353,0,0,4171,4172,3,1004,502,0,4172,4173,5,100,0,0,4173,4174, + 3,1222,611,0,4174,4175,3,446,223,0,4175,4176,5,36,0,0,4176,4177, + 3,442,221,0,4177,441,1,0,0,0,4178,4183,3,444,222,0,4179,4180,5,6, + 0,0,4180,4182,3,444,222,0,4181,4179,1,0,0,0,4182,4185,1,0,0,0,4183, + 4181,1,0,0,0,4183,4184,1,0,0,0,4184,443,1,0,0,0,4185,4183,1,0,0, + 0,4186,4187,5,271,0,0,4187,4188,3,1238,619,0,4188,4189,3,620,310, + 0,4189,4191,3,448,224,0,4190,4192,5,295,0,0,4191,4190,1,0,0,0,4191, + 4192,1,0,0,0,4192,4214,1,0,0,0,4193,4194,5,271,0,0,4194,4195,3,1238, + 619,0,4195,4196,3,624,312,0,4196,4198,3,448,224,0,4197,4199,5,295, + 0,0,4198,4197,1,0,0,0,4198,4199,1,0,0,0,4199,4214,1,0,0,0,4200,4201, + 5,211,0,0,4201,4202,3,1238,619,0,4202,4203,3,570,285,0,4203,4214, + 1,0,0,0,4204,4205,5,211,0,0,4205,4206,3,1238,619,0,4206,4207,5,2, + 0,0,4207,4208,3,1170,585,0,4208,4209,5,3,0,0,4209,4210,3,570,285, + 0,4210,4214,1,0,0,0,4211,4212,5,338,0,0,4212,4214,3,1004,502,0,4213, + 4186,1,0,0,0,4213,4193,1,0,0,0,4213,4200,1,0,0,0,4213,4204,1,0,0, + 0,4213,4211,1,0,0,0,4214,445,1,0,0,0,4215,4216,5,206,0,0,4216,4219, + 3,478,239,0,4217,4219,1,0,0,0,4218,4215,1,0,0,0,4218,4217,1,0,0, + 0,4219,447,1,0,0,0,4220,4221,5,62,0,0,4221,4228,5,318,0,0,4222,4223, + 5,62,0,0,4223,4224,5,83,0,0,4224,4225,5,147,0,0,4225,4228,3,478, + 239,0,4226,4228,1,0,0,0,4227,4220,1,0,0,0,4227,4222,1,0,0,0,4227, + 4226,1,0,0,0,4228,449,1,0,0,0,4229,4230,5,46,0,0,4230,4231,5,271, + 0,0,4231,4232,5,206,0,0,4232,4233,3,478,239,0,4233,4234,5,100,0, + 0,4234,4235,3,1222,611,0,4235,451,1,0,0,0,4236,4237,5,138,0,0,4237, + 4238,5,271,0,0,4238,4239,5,206,0,0,4239,4240,3,478,239,0,4240,4241, + 5,100,0,0,4241,4242,3,1222,611,0,4242,4243,5,133,0,0,4243,4244,3, + 442,221,0,4244,4255,1,0,0,0,4245,4246,5,138,0,0,4246,4247,5,271, + 0,0,4247,4248,5,206,0,0,4248,4249,3,478,239,0,4249,4250,5,100,0, + 0,4250,4251,3,1222,611,0,4251,4252,5,191,0,0,4252,4253,3,454,227, + 0,4253,4255,1,0,0,0,4254,4236,1,0,0,0,4254,4245,1,0,0,0,4255,453, + 1,0,0,0,4256,4261,3,456,228,0,4257,4258,5,6,0,0,4258,4260,3,456, + 228,0,4259,4257,1,0,0,0,4260,4263,1,0,0,0,4261,4259,1,0,0,0,4261, + 4262,1,0,0,0,4262,455,1,0,0,0,4263,4261,1,0,0,0,4264,4265,5,271, + 0,0,4265,4266,3,1238,619,0,4266,4267,5,2,0,0,4267,4268,3,1170,585, + 0,4268,4269,5,3,0,0,4269,4277,1,0,0,0,4270,4271,5,211,0,0,4271,4272, + 3,1238,619,0,4272,4273,5,2,0,0,4273,4274,3,1170,585,0,4274,4275, + 5,3,0,0,4275,4277,1,0,0,0,4276,4264,1,0,0,0,4276,4270,1,0,0,0,4277, + 457,1,0,0,0,4278,4279,5,191,0,0,4279,4280,5,271,0,0,4280,4281,5, + 156,0,0,4281,4282,3,478,239,0,4282,4283,5,100,0,0,4283,4284,3,1222, + 611,0,4284,4285,3,106,53,0,4285,4297,1,0,0,0,4286,4287,5,191,0,0, + 4287,4288,5,271,0,0,4288,4289,5,156,0,0,4289,4290,5,220,0,0,4290, + 4291,5,389,0,0,4291,4292,3,478,239,0,4292,4293,5,100,0,0,4293,4294, + 3,1222,611,0,4294,4295,3,106,53,0,4295,4297,1,0,0,0,4296,4278,1, + 0,0,0,4296,4286,1,0,0,0,4297,459,1,0,0,0,4298,4299,5,191,0,0,4299, + 4300,5,271,0,0,4300,4301,5,206,0,0,4301,4302,3,478,239,0,4302,4303, + 5,100,0,0,4303,4304,3,1222,611,0,4304,4305,3,106,53,0,4305,4317, + 1,0,0,0,4306,4307,5,191,0,0,4307,4308,5,271,0,0,4308,4309,5,206, + 0,0,4309,4310,5,220,0,0,4310,4311,5,389,0,0,4311,4312,3,478,239, + 0,4312,4313,5,100,0,0,4313,4314,3,1222,611,0,4314,4315,3,106,53, + 0,4315,4317,1,0,0,0,4316,4298,1,0,0,0,4316,4306,1,0,0,0,4317,461, + 1,0,0,0,4318,4319,5,191,0,0,4319,4320,5,274,0,0,4320,4321,5,147, + 0,0,4321,4322,3,1252,626,0,4322,4323,3,106,53,0,4323,463,1,0,0,0, + 4324,4325,5,294,0,0,4325,4326,5,274,0,0,4326,4327,5,147,0,0,4327, + 4328,3,1252,626,0,4328,4329,5,94,0,0,4329,4330,3,1250,625,0,4330, + 465,1,0,0,0,4331,4332,5,191,0,0,4332,4333,3,468,234,0,4333,4334, + 5,220,0,0,4334,4335,5,389,0,0,4335,4336,3,476,238,0,4336,4337,3, + 106,53,0,4337,4410,1,0,0,0,4338,4339,5,191,0,0,4339,4340,3,468,234, + 0,4340,4341,3,476,238,0,4341,4342,3,106,53,0,4342,4410,1,0,0,0,4343, + 4344,5,191,0,0,4344,4345,3,472,236,0,4345,4346,5,220,0,0,4346,4347, + 5,389,0,0,4347,4348,3,1220,610,0,4348,4349,3,106,53,0,4349,4410, + 1,0,0,0,4350,4351,5,191,0,0,4351,4352,3,472,236,0,4352,4353,3,1220, + 610,0,4353,4354,3,106,53,0,4354,4410,1,0,0,0,4355,4356,5,191,0,0, + 4356,4357,3,474,237,0,4357,4358,3,1222,611,0,4358,4359,5,80,0,0, + 4359,4360,3,478,239,0,4360,4361,3,106,53,0,4361,4410,1,0,0,0,4362, + 4363,5,191,0,0,4363,4364,3,474,237,0,4364,4365,5,220,0,0,4365,4366, + 5,389,0,0,4366,4367,3,1222,611,0,4367,4368,5,80,0,0,4368,4369,3, + 478,239,0,4369,4370,3,106,53,0,4370,4410,1,0,0,0,4371,4372,5,191, + 0,0,4372,4373,5,353,0,0,4373,4374,3,482,241,0,4374,4375,3,106,53, + 0,4375,4410,1,0,0,0,4376,4377,5,191,0,0,4377,4378,5,353,0,0,4378, + 4379,5,220,0,0,4379,4380,5,389,0,0,4380,4381,3,482,241,0,4381,4382, + 3,106,53,0,4382,4410,1,0,0,0,4383,4384,5,191,0,0,4384,4385,5,189, + 0,0,4385,4386,3,482,241,0,4386,4387,3,106,53,0,4387,4410,1,0,0,0, + 4388,4389,5,191,0,0,4389,4390,5,189,0,0,4390,4391,5,220,0,0,4391, + 4392,5,389,0,0,4392,4393,3,482,241,0,4393,4394,3,106,53,0,4394,4410, + 1,0,0,0,4395,4396,5,191,0,0,4396,4397,5,226,0,0,4397,4398,5,109, + 0,0,4398,4399,3,476,238,0,4399,4400,3,106,53,0,4400,4410,1,0,0,0, + 4401,4402,5,191,0,0,4402,4403,5,226,0,0,4403,4404,5,109,0,0,4404, + 4405,5,220,0,0,4405,4406,5,389,0,0,4406,4407,3,476,238,0,4407,4408, + 3,106,53,0,4408,4410,1,0,0,0,4409,4331,1,0,0,0,4409,4338,1,0,0,0, + 4409,4343,1,0,0,0,4409,4350,1,0,0,0,4409,4355,1,0,0,0,4409,4362, + 1,0,0,0,4409,4371,1,0,0,0,4409,4376,1,0,0,0,4409,4383,1,0,0,0,4409, + 4388,1,0,0,0,4409,4395,1,0,0,0,4409,4401,1,0,0,0,4410,467,1,0,0, + 0,4411,4435,5,92,0,0,4412,4435,5,321,0,0,4413,4435,5,369,0,0,4414, + 4415,5,251,0,0,4415,4435,5,369,0,0,4416,4435,5,226,0,0,4417,4418, + 5,63,0,0,4418,4435,5,92,0,0,4419,4435,5,108,0,0,4420,4435,5,168, + 0,0,4421,4435,5,335,0,0,4422,4423,5,348,0,0,4423,4424,5,318,0,0, + 4424,4435,5,276,0,0,4425,4426,5,348,0,0,4426,4427,5,318,0,0,4427, + 4435,5,185,0,0,4428,4429,5,348,0,0,4429,4430,5,318,0,0,4430,4435, + 5,346,0,0,4431,4432,5,348,0,0,4432,4433,5,318,0,0,4433,4435,5,163, + 0,0,4434,4411,1,0,0,0,4434,4412,1,0,0,0,4434,4413,1,0,0,0,4434,4414, + 1,0,0,0,4434,4416,1,0,0,0,4434,4417,1,0,0,0,4434,4419,1,0,0,0,4434, + 4420,1,0,0,0,4434,4421,1,0,0,0,4434,4422,1,0,0,0,4434,4425,1,0,0, + 0,4434,4428,1,0,0,0,4434,4431,1,0,0,0,4435,469,1,0,0,0,4436,4442, + 3,472,236,0,4437,4442,5,175,0,0,4438,4442,5,311,0,0,4439,4442,5, + 451,0,0,4440,4442,5,344,0,0,4441,4436,1,0,0,0,4441,4437,1,0,0,0, + 4441,4438,1,0,0,0,4441,4439,1,0,0,0,4441,4440,1,0,0,0,4442,471,1, + 0,0,0,4443,4444,5,131,0,0,4444,4458,5,446,0,0,4445,4446,5,198,0, + 0,4446,4458,5,350,0,0,4447,4458,5,204,0,0,4448,4449,5,63,0,0,4449, + 4450,5,174,0,0,4450,4458,5,374,0,0,4451,4452,3,282,141,0,4452,4453, + 5,238,0,0,4453,4458,1,0,0,0,4454,4458,5,452,0,0,4455,4458,5,316, + 0,0,4456,4458,5,324,0,0,4457,4443,1,0,0,0,4457,4445,1,0,0,0,4457, + 4447,1,0,0,0,4457,4448,1,0,0,0,4457,4451,1,0,0,0,4457,4454,1,0,0, + 0,4457,4455,1,0,0,0,4457,4456,1,0,0,0,4458,473,1,0,0,0,4459,4460, + 7,23,0,0,4460,475,1,0,0,0,4461,4466,3,478,239,0,4462,4463,5,6,0, + 0,4463,4465,3,478,239,0,4464,4462,1,0,0,0,4465,4468,1,0,0,0,4466, + 4464,1,0,0,0,4466,4467,1,0,0,0,4467,477,1,0,0,0,4468,4466,1,0,0, + 0,4469,4471,3,1254,627,0,4470,4472,3,480,240,0,4471,4470,1,0,0,0, + 4471,4472,1,0,0,0,4472,479,1,0,0,0,4473,4474,5,11,0,0,4474,4476, + 3,1224,612,0,4475,4473,1,0,0,0,4476,4477,1,0,0,0,4477,4475,1,0,0, + 0,4477,4478,1,0,0,0,4478,481,1,0,0,0,4479,4484,3,1004,502,0,4480, + 4481,5,6,0,0,4481,4483,3,1004,502,0,4482,4480,1,0,0,0,4483,4486, + 1,0,0,0,4484,4482,1,0,0,0,4484,4485,1,0,0,0,4485,483,1,0,0,0,4486, + 4484,1,0,0,0,4487,4488,5,351,0,0,4488,4489,3,892,446,0,4489,4490, + 3,968,484,0,4490,4491,3,486,243,0,4491,4492,3,106,53,0,4492,485, + 1,0,0,0,4493,4494,5,167,0,0,4494,4499,5,219,0,0,4495,4496,5,307, + 0,0,4496,4499,5,219,0,0,4497,4499,1,0,0,0,4498,4493,1,0,0,0,4498, + 4495,1,0,0,0,4498,4497,1,0,0,0,4499,487,1,0,0,0,4500,4501,5,159, + 0,0,4501,4502,5,80,0,0,4502,4503,3,468,234,0,4503,4504,3,478,239, + 0,4504,4505,5,116,0,0,4505,4506,3,490,245,0,4506,4648,1,0,0,0,4507, + 4508,5,159,0,0,4508,4509,5,80,0,0,4509,4510,5,44,0,0,4510,4511,3, + 478,239,0,4511,4512,5,116,0,0,4512,4513,3,490,245,0,4513,4648,1, + 0,0,0,4514,4515,5,159,0,0,4515,4516,5,80,0,0,4516,4517,3,470,235, + 0,4517,4518,3,1222,611,0,4518,4519,5,116,0,0,4519,4520,3,490,245, + 0,4520,4648,1,0,0,0,4521,4522,5,159,0,0,4522,4523,5,80,0,0,4523, + 4524,5,353,0,0,4524,4525,3,1004,502,0,4525,4526,5,116,0,0,4526,4527, + 3,490,245,0,4527,4648,1,0,0,0,4528,4529,5,159,0,0,4529,4530,5,80, + 0,0,4530,4531,5,189,0,0,4531,4532,3,1004,502,0,4532,4533,5,116,0, + 0,4533,4534,3,490,245,0,4534,4648,1,0,0,0,4535,4536,5,159,0,0,4536, + 4537,5,80,0,0,4537,4538,5,136,0,0,4538,4539,3,590,295,0,4539,4540, + 5,116,0,0,4540,4541,3,490,245,0,4541,4648,1,0,0,0,4542,4543,5,159, + 0,0,4543,4544,5,80,0,0,4544,4545,5,211,0,0,4545,4546,3,570,285,0, + 4546,4547,5,116,0,0,4547,4548,3,490,245,0,4548,4648,1,0,0,0,4549, + 4550,5,159,0,0,4550,4551,5,80,0,0,4551,4552,5,271,0,0,4552,4553, + 3,624,312,0,4553,4554,5,116,0,0,4554,4555,3,490,245,0,4555,4648, + 1,0,0,0,4556,4557,5,159,0,0,4557,4558,5,80,0,0,4558,4559,5,45,0, + 0,4559,4560,3,1222,611,0,4560,4561,5,80,0,0,4561,4562,3,478,239, + 0,4562,4563,5,116,0,0,4563,4564,3,490,245,0,4564,4648,1,0,0,0,4565, + 4566,5,159,0,0,4566,4567,5,80,0,0,4567,4568,5,45,0,0,4568,4569,3, + 1222,611,0,4569,4570,5,80,0,0,4570,4571,5,189,0,0,4571,4572,3,478, + 239,0,4572,4573,5,116,0,0,4573,4574,3,490,245,0,4574,4648,1,0,0, + 0,4575,4576,5,159,0,0,4576,4577,5,80,0,0,4577,4578,3,474,237,0,4578, + 4579,3,1222,611,0,4579,4580,5,80,0,0,4580,4581,3,478,239,0,4581, + 4582,5,116,0,0,4582,4583,3,490,245,0,4583,4648,1,0,0,0,4584,4585, + 5,159,0,0,4585,4586,5,80,0,0,4586,4587,5,289,0,0,4587,4588,3,570, + 285,0,4588,4589,5,116,0,0,4589,4590,3,490,245,0,4590,4648,1,0,0, + 0,4591,4592,5,159,0,0,4592,4593,5,80,0,0,4593,4594,5,442,0,0,4594, + 4595,3,570,285,0,4595,4596,5,116,0,0,4596,4597,3,490,245,0,4597, + 4648,1,0,0,0,4598,4599,5,159,0,0,4599,4600,5,80,0,0,4600,4601,5, + 443,0,0,4601,4602,5,62,0,0,4602,4603,3,1004,502,0,4603,4604,5,238, + 0,0,4604,4605,3,1222,611,0,4605,4606,5,116,0,0,4606,4607,3,490,245, + 0,4607,4648,1,0,0,0,4608,4609,5,159,0,0,4609,4610,5,80,0,0,4610, + 4611,5,271,0,0,4611,4612,5,156,0,0,4612,4613,3,478,239,0,4613,4614, + 5,100,0,0,4614,4615,3,1222,611,0,4615,4616,5,116,0,0,4616,4617,3, + 490,245,0,4617,4648,1,0,0,0,4618,4619,5,159,0,0,4619,4620,5,80,0, + 0,4620,4621,5,271,0,0,4621,4622,5,206,0,0,4622,4623,3,478,239,0, + 4623,4624,5,100,0,0,4624,4625,3,1222,611,0,4625,4626,5,116,0,0,4626, + 4627,3,490,245,0,4627,4648,1,0,0,0,4628,4629,5,159,0,0,4629,4630, + 5,80,0,0,4630,4631,5,239,0,0,4631,4632,5,267,0,0,4632,4633,3,270, + 135,0,4633,4634,5,116,0,0,4634,4635,3,490,245,0,4635,4648,1,0,0, + 0,4636,4637,5,159,0,0,4637,4638,5,80,0,0,4638,4639,5,41,0,0,4639, + 4640,5,2,0,0,4640,4641,3,1004,502,0,4641,4642,5,36,0,0,4642,4643, + 3,1004,502,0,4643,4644,5,3,0,0,4644,4645,5,116,0,0,4645,4646,3,490, + 245,0,4646,4648,1,0,0,0,4647,4500,1,0,0,0,4647,4507,1,0,0,0,4647, + 4514,1,0,0,0,4647,4521,1,0,0,0,4647,4528,1,0,0,0,4647,4535,1,0,0, + 0,4647,4542,1,0,0,0,4647,4549,1,0,0,0,4647,4556,1,0,0,0,4647,4565, + 1,0,0,0,4647,4575,1,0,0,0,4647,4584,1,0,0,0,4647,4591,1,0,0,0,4647, + 4598,1,0,0,0,4647,4608,1,0,0,0,4647,4618,1,0,0,0,4647,4628,1,0,0, + 0,4647,4636,1,0,0,0,4648,489,1,0,0,0,4649,4652,3,1240,620,0,4650, + 4652,5,78,0,0,4651,4649,1,0,0,0,4651,4650,1,0,0,0,4652,491,1,0,0, + 0,4653,4654,5,320,0,0,4654,4655,5,237,0,0,4655,4656,3,494,247,0, + 4656,4657,5,80,0,0,4657,4658,3,468,234,0,4658,4659,3,478,239,0,4659, + 4660,5,116,0,0,4660,4661,3,496,248,0,4661,4745,1,0,0,0,4662,4663, + 5,320,0,0,4663,4664,5,237,0,0,4664,4665,3,494,247,0,4665,4666,5, + 80,0,0,4666,4667,5,44,0,0,4667,4668,3,478,239,0,4668,4669,5,116, + 0,0,4669,4670,3,496,248,0,4670,4745,1,0,0,0,4671,4672,5,320,0,0, + 4672,4673,5,237,0,0,4673,4674,3,494,247,0,4674,4675,5,80,0,0,4675, + 4676,3,470,235,0,4676,4677,3,1222,611,0,4677,4678,5,116,0,0,4678, + 4679,3,496,248,0,4679,4745,1,0,0,0,4680,4681,5,320,0,0,4681,4682, + 5,237,0,0,4682,4683,3,494,247,0,4683,4684,5,80,0,0,4684,4685,5,353, + 0,0,4685,4686,3,1004,502,0,4686,4687,5,116,0,0,4687,4688,3,496,248, + 0,4688,4745,1,0,0,0,4689,4690,5,320,0,0,4690,4691,5,237,0,0,4691, + 4692,3,494,247,0,4692,4693,5,80,0,0,4693,4694,5,189,0,0,4694,4695, + 3,1004,502,0,4695,4696,5,116,0,0,4696,4697,3,496,248,0,4697,4745, + 1,0,0,0,4698,4699,5,320,0,0,4699,4700,5,237,0,0,4700,4701,3,494, + 247,0,4701,4702,5,80,0,0,4702,4703,5,136,0,0,4703,4704,3,590,295, + 0,4704,4705,5,116,0,0,4705,4706,3,496,248,0,4706,4745,1,0,0,0,4707, + 4708,5,320,0,0,4708,4709,5,237,0,0,4709,4710,3,494,247,0,4710,4711, + 5,80,0,0,4711,4712,5,211,0,0,4712,4713,3,570,285,0,4713,4714,5,116, + 0,0,4714,4715,3,496,248,0,4715,4745,1,0,0,0,4716,4717,5,320,0,0, + 4717,4718,5,237,0,0,4718,4719,3,494,247,0,4719,4720,5,80,0,0,4720, + 4721,5,239,0,0,4721,4722,5,267,0,0,4722,4723,3,270,135,0,4723,4724, + 5,116,0,0,4724,4725,3,496,248,0,4725,4745,1,0,0,0,4726,4727,5,320, + 0,0,4727,4728,5,237,0,0,4728,4729,3,494,247,0,4729,4730,5,80,0,0, + 4730,4731,5,289,0,0,4731,4732,3,570,285,0,4732,4733,5,116,0,0,4733, + 4734,3,496,248,0,4734,4745,1,0,0,0,4735,4736,5,320,0,0,4736,4737, + 5,237,0,0,4737,4738,3,494,247,0,4738,4739,5,80,0,0,4739,4740,5,442, + 0,0,4740,4741,3,570,285,0,4741,4742,5,116,0,0,4742,4743,3,496,248, + 0,4743,4745,1,0,0,0,4744,4653,1,0,0,0,4744,4662,1,0,0,0,4744,4671, + 1,0,0,0,4744,4680,1,0,0,0,4744,4689,1,0,0,0,4744,4698,1,0,0,0,4744, + 4707,1,0,0,0,4744,4716,1,0,0,0,4744,4726,1,0,0,0,4744,4735,1,0,0, + 0,4745,493,1,0,0,0,4746,4747,5,62,0,0,4747,4750,3,70,35,0,4748,4750, + 1,0,0,0,4749,4746,1,0,0,0,4749,4748,1,0,0,0,4750,495,1,0,0,0,4751, + 4754,3,1240,620,0,4752,4754,5,78,0,0,4753,4751,1,0,0,0,4753,4752, + 1,0,0,0,4754,497,1,0,0,0,4755,4756,5,61,0,0,4756,4760,3,500,250, + 0,4757,4758,5,258,0,0,4758,4760,3,500,250,0,4759,4755,1,0,0,0,4759, + 4757,1,0,0,0,4760,499,1,0,0,0,4761,4828,3,864,432,0,4762,4763,3, + 502,251,0,4763,4764,3,864,432,0,4764,4828,1,0,0,0,4765,4766,5,261, + 0,0,4766,4767,3,504,252,0,4767,4768,3,864,432,0,4768,4828,1,0,0, + 0,4769,4770,5,286,0,0,4770,4771,3,504,252,0,4771,4772,3,864,432, + 0,4772,4828,1,0,0,0,4773,4774,5,207,0,0,4774,4775,3,504,252,0,4775, + 4776,3,864,432,0,4776,4828,1,0,0,0,4777,4778,5,240,0,0,4778,4779, + 3,504,252,0,4779,4780,3,864,432,0,4780,4828,1,0,0,0,4781,4782,5, + 130,0,0,4782,4783,3,1246,623,0,4783,4784,3,504,252,0,4784,4785,3, + 864,432,0,4785,4828,1,0,0,0,4786,4787,5,300,0,0,4787,4788,3,1246, + 623,0,4788,4789,3,504,252,0,4789,4790,3,864,432,0,4790,4828,1,0, + 0,0,4791,4792,3,1246,623,0,4792,4793,3,504,252,0,4793,4794,3,864, + 432,0,4794,4828,1,0,0,0,4795,4796,5,30,0,0,4796,4797,3,504,252,0, + 4797,4798,3,864,432,0,4798,4828,1,0,0,0,4799,4800,5,210,0,0,4800, + 4801,3,504,252,0,4801,4802,3,864,432,0,4802,4828,1,0,0,0,4803,4804, + 5,210,0,0,4804,4805,3,1246,623,0,4805,4806,3,504,252,0,4806,4807, + 3,864,432,0,4807,4828,1,0,0,0,4808,4809,5,210,0,0,4809,4810,5,30, + 0,0,4810,4811,3,504,252,0,4811,4812,3,864,432,0,4812,4828,1,0,0, + 0,4813,4814,5,144,0,0,4814,4815,3,504,252,0,4815,4816,3,864,432, + 0,4816,4828,1,0,0,0,4817,4818,5,144,0,0,4818,4819,3,1246,623,0,4819, + 4820,3,504,252,0,4820,4821,3,864,432,0,4821,4828,1,0,0,0,4822,4823, + 5,144,0,0,4823,4824,5,30,0,0,4824,4825,3,504,252,0,4825,4826,3,864, + 432,0,4826,4828,1,0,0,0,4827,4761,1,0,0,0,4827,4762,1,0,0,0,4827, + 4765,1,0,0,0,4827,4769,1,0,0,0,4827,4773,1,0,0,0,4827,4777,1,0,0, + 0,4827,4781,1,0,0,0,4827,4786,1,0,0,0,4827,4791,1,0,0,0,4827,4795, + 1,0,0,0,4827,4799,1,0,0,0,4827,4803,1,0,0,0,4827,4808,1,0,0,0,4827, + 4813,1,0,0,0,4827,4817,1,0,0,0,4827,4822,1,0,0,0,4828,501,1,0,0, + 0,4829,4830,7,24,0,0,4830,503,1,0,0,0,4831,4834,3,502,251,0,4832, + 4834,1,0,0,0,4833,4831,1,0,0,0,4833,4832,1,0,0,0,4834,505,1,0,0, + 0,4835,4836,5,65,0,0,4836,4837,3,510,255,0,4837,4838,5,80,0,0,4838, + 4839,3,516,258,0,4839,4840,5,94,0,0,4840,4841,3,518,259,0,4841,4842, + 3,522,261,0,4842,507,1,0,0,0,4843,4844,5,310,0,0,4844,4845,3,510, + 255,0,4845,4846,5,80,0,0,4846,4847,3,516,258,0,4847,4848,5,64,0, + 0,4848,4849,3,518,259,0,4849,4850,3,106,53,0,4850,4863,1,0,0,0,4851, + 4852,5,310,0,0,4852,4853,5,65,0,0,4853,4854,5,272,0,0,4854,4855, + 5,62,0,0,4855,4856,3,510,255,0,4856,4857,5,80,0,0,4857,4858,3,516, + 258,0,4858,4859,5,64,0,0,4859,4860,3,518,259,0,4860,4861,3,106,53, + 0,4861,4863,1,0,0,0,4862,4843,1,0,0,0,4862,4851,1,0,0,0,4863,509, + 1,0,0,0,4864,4880,3,512,256,0,4865,4880,5,30,0,0,4866,4867,5,30, + 0,0,4867,4880,5,287,0,0,4868,4869,5,30,0,0,4869,4870,5,2,0,0,4870, + 4871,3,200,100,0,4871,4872,5,3,0,0,4872,4880,1,0,0,0,4873,4874,5, + 30,0,0,4874,4875,5,287,0,0,4875,4876,5,2,0,0,4876,4877,3,200,100, + 0,4877,4878,5,3,0,0,4878,4880,1,0,0,0,4879,4864,1,0,0,0,4879,4865, + 1,0,0,0,4879,4866,1,0,0,0,4879,4868,1,0,0,0,4879,4873,1,0,0,0,4880, + 511,1,0,0,0,4881,4886,3,514,257,0,4882,4883,5,6,0,0,4883,4885,3, + 514,257,0,4884,4882,1,0,0,0,4885,4888,1,0,0,0,4886,4884,1,0,0,0, + 4886,4887,1,0,0,0,4887,513,1,0,0,0,4888,4886,1,0,0,0,4889,4890,5, + 88,0,0,4890,4899,3,198,99,0,4891,4892,5,86,0,0,4892,4899,3,198,99, + 0,4893,4894,5,46,0,0,4894,4899,3,198,99,0,4895,4896,3,1254,627,0, + 4896,4897,3,198,99,0,4897,4899,1,0,0,0,4898,4889,1,0,0,0,4898,4891, + 1,0,0,0,4898,4893,1,0,0,0,4898,4895,1,0,0,0,4899,515,1,0,0,0,4900, + 4959,3,1216,608,0,4901,4902,5,92,0,0,4902,4959,3,1216,608,0,4903, + 4904,5,321,0,0,4904,4959,3,1216,608,0,4905,4906,5,63,0,0,4906,4907, + 5,174,0,0,4907,4908,5,374,0,0,4908,4959,3,1220,610,0,4909,4910,5, + 63,0,0,4910,4911,5,324,0,0,4911,4959,3,1220,610,0,4912,4913,5,211, + 0,0,4913,4959,3,568,284,0,4914,4915,5,289,0,0,4915,4959,3,568,284, + 0,4916,4917,5,442,0,0,4917,4959,3,568,284,0,4918,4919,5,175,0,0, + 4919,4959,3,1220,610,0,4920,4921,5,189,0,0,4921,4959,3,476,238,0, + 4922,4923,5,238,0,0,4923,4959,3,1220,610,0,4924,4925,5,239,0,0,4925, + 4926,5,267,0,0,4926,4959,3,272,136,0,4927,4928,5,316,0,0,4928,4959, + 3,1220,610,0,4929,4930,5,344,0,0,4930,4959,3,1220,610,0,4931,4932, + 5,353,0,0,4932,4959,3,476,238,0,4933,4934,5,30,0,0,4934,4935,5,343, + 0,0,4935,4936,5,68,0,0,4936,4937,5,316,0,0,4937,4959,3,1220,610, + 0,4938,4939,5,30,0,0,4939,4940,5,322,0,0,4940,4941,5,68,0,0,4941, + 4942,5,316,0,0,4942,4959,3,1220,610,0,4943,4944,5,30,0,0,4944,4945, + 5,212,0,0,4945,4946,5,68,0,0,4946,4947,5,316,0,0,4947,4959,3,1220, + 610,0,4948,4949,5,30,0,0,4949,4950,5,457,0,0,4950,4951,5,68,0,0, + 4951,4952,5,316,0,0,4952,4959,3,1220,610,0,4953,4954,5,30,0,0,4954, + 4955,5,455,0,0,4955,4956,5,68,0,0,4956,4957,5,316,0,0,4957,4959, + 3,1220,610,0,4958,4900,1,0,0,0,4958,4901,1,0,0,0,4958,4903,1,0,0, + 0,4958,4905,1,0,0,0,4958,4909,1,0,0,0,4958,4912,1,0,0,0,4958,4914, + 1,0,0,0,4958,4916,1,0,0,0,4958,4918,1,0,0,0,4958,4920,1,0,0,0,4958, + 4922,1,0,0,0,4958,4924,1,0,0,0,4958,4927,1,0,0,0,4958,4929,1,0,0, + 0,4958,4931,1,0,0,0,4958,4933,1,0,0,0,4958,4938,1,0,0,0,4958,4943, + 1,0,0,0,4958,4948,1,0,0,0,4958,4953,1,0,0,0,4959,517,1,0,0,0,4960, + 4965,3,520,260,0,4961,4962,5,6,0,0,4962,4964,3,520,260,0,4963,4961, + 1,0,0,0,4964,4967,1,0,0,0,4965,4963,1,0,0,0,4965,4966,1,0,0,0,4966, + 519,1,0,0,0,4967,4965,1,0,0,0,4968,4972,3,1250,625,0,4969,4970,5, + 66,0,0,4970,4972,3,1250,625,0,4971,4968,1,0,0,0,4971,4969,1,0,0, + 0,4972,521,1,0,0,0,4973,4974,5,105,0,0,4974,4975,5,65,0,0,4975,4978, + 5,272,0,0,4976,4978,1,0,0,0,4977,4973,1,0,0,0,4977,4976,1,0,0,0, + 4978,523,1,0,0,0,4979,4980,5,65,0,0,4980,4981,3,512,256,0,4981,4982, + 5,94,0,0,4982,4983,3,1252,626,0,4983,4984,3,528,264,0,4984,4985, + 3,530,265,0,4985,525,1,0,0,0,4986,4987,5,310,0,0,4987,4988,3,512, + 256,0,4988,4989,5,64,0,0,4989,4990,3,1252,626,0,4990,4991,3,530, + 265,0,4991,4992,3,106,53,0,4992,5004,1,0,0,0,4993,4994,5,310,0,0, + 4994,4995,5,134,0,0,4995,4996,5,272,0,0,4996,4997,5,62,0,0,4997, + 4998,3,512,256,0,4998,4999,5,64,0,0,4999,5000,3,1252,626,0,5000, + 5001,3,530,265,0,5001,5002,3,106,53,0,5002,5004,1,0,0,0,5003,4986, + 1,0,0,0,5003,4993,1,0,0,0,5004,527,1,0,0,0,5005,5006,5,105,0,0,5006, + 5007,5,134,0,0,5007,5010,5,272,0,0,5008,5010,1,0,0,0,5009,5005,1, + 0,0,0,5009,5008,1,0,0,0,5010,529,1,0,0,0,5011,5012,5,214,0,0,5012, + 5013,5,147,0,0,5013,5016,3,1250,625,0,5014,5016,1,0,0,0,5015,5011, + 1,0,0,0,5015,5014,1,0,0,0,5016,531,1,0,0,0,5017,5018,5,138,0,0,5018, + 5019,5,53,0,0,5019,5023,5,287,0,0,5020,5022,3,534,267,0,5021,5020, + 1,0,0,0,5022,5025,1,0,0,0,5023,5021,1,0,0,0,5023,5024,1,0,0,0,5024, + 5026,1,0,0,0,5025,5023,1,0,0,0,5026,5027,3,536,268,0,5027,533,1, + 0,0,0,5028,5029,5,68,0,0,5029,5030,5,316,0,0,5030,5038,3,1220,610, + 0,5031,5032,5,62,0,0,5032,5033,5,311,0,0,5033,5038,3,1252,626,0, + 5034,5035,5,62,0,0,5035,5036,5,99,0,0,5036,5038,3,1252,626,0,5037, + 5028,1,0,0,0,5037,5031,1,0,0,0,5037,5034,1,0,0,0,5038,535,1,0,0, + 0,5039,5040,5,65,0,0,5040,5041,3,510,255,0,5041,5042,5,80,0,0,5042, + 5043,3,538,269,0,5043,5044,5,94,0,0,5044,5045,3,518,259,0,5045,5046, + 3,522,261,0,5046,5067,1,0,0,0,5047,5048,5,310,0,0,5048,5049,3,510, + 255,0,5049,5050,5,80,0,0,5050,5051,3,538,269,0,5051,5052,5,64,0, + 0,5052,5053,3,518,259,0,5053,5054,3,106,53,0,5054,5067,1,0,0,0,5055, + 5056,5,310,0,0,5056,5057,5,65,0,0,5057,5058,5,272,0,0,5058,5059, + 5,62,0,0,5059,5060,3,510,255,0,5060,5061,5,80,0,0,5061,5062,3,538, + 269,0,5062,5063,5,64,0,0,5063,5064,3,518,259,0,5064,5065,3,106,53, + 0,5065,5067,1,0,0,0,5066,5039,1,0,0,0,5066,5047,1,0,0,0,5066,5055, + 1,0,0,0,5067,537,1,0,0,0,5068,5069,7,25,0,0,5069,539,1,0,0,0,5070, + 5072,5,46,0,0,5071,5073,5,98,0,0,5072,5071,1,0,0,0,5072,5073,1,0, + 0,0,5073,5074,1,0,0,0,5074,5075,5,226,0,0,5075,5077,3,542,271,0, + 5076,5078,3,1222,611,0,5077,5076,1,0,0,0,5077,5078,1,0,0,0,5078, + 5079,1,0,0,0,5079,5080,5,80,0,0,5080,5081,3,966,483,0,5081,5082, + 3,544,272,0,5082,5083,5,2,0,0,5083,5084,3,546,273,0,5084,5085,5, + 3,0,0,5085,5086,3,552,276,0,5086,5087,3,116,58,0,5087,5088,3,238, + 119,0,5088,5089,3,982,491,0,5089,5112,1,0,0,0,5090,5092,5,46,0,0, + 5091,5093,5,98,0,0,5092,5091,1,0,0,0,5092,5093,1,0,0,0,5093,5094, + 1,0,0,0,5094,5095,5,226,0,0,5095,5096,3,542,271,0,5096,5097,5,220, + 0,0,5097,5098,5,77,0,0,5098,5099,5,389,0,0,5099,5100,3,1222,611, + 0,5100,5101,5,80,0,0,5101,5102,3,966,483,0,5102,5103,3,544,272,0, + 5103,5104,5,2,0,0,5104,5105,3,546,273,0,5105,5106,5,3,0,0,5106,5107, + 3,552,276,0,5107,5108,3,116,58,0,5108,5109,3,238,119,0,5109,5110, + 3,982,491,0,5110,5112,1,0,0,0,5111,5070,1,0,0,0,5111,5090,1,0,0, + 0,5112,541,1,0,0,0,5113,5116,5,109,0,0,5114,5116,1,0,0,0,5115,5113, + 1,0,0,0,5115,5114,1,0,0,0,5116,543,1,0,0,0,5117,5118,5,100,0,0,5118, + 5121,3,1222,611,0,5119,5121,1,0,0,0,5120,5117,1,0,0,0,5120,5119, + 1,0,0,0,5121,545,1,0,0,0,5122,5127,3,550,275,0,5123,5124,5,6,0,0, + 5124,5126,3,550,275,0,5125,5123,1,0,0,0,5126,5129,1,0,0,0,5127,5125, + 1,0,0,0,5127,5128,1,0,0,0,5128,547,1,0,0,0,5129,5127,1,0,0,0,5130, + 5131,3,554,277,0,5131,5132,3,556,278,0,5132,5133,3,558,279,0,5133, + 5134,3,560,280,0,5134,5142,1,0,0,0,5135,5136,3,554,277,0,5136,5137, + 3,478,239,0,5137,5138,3,114,57,0,5138,5139,3,558,279,0,5139,5140, + 3,560,280,0,5140,5142,1,0,0,0,5141,5130,1,0,0,0,5141,5135,1,0,0, + 0,5142,549,1,0,0,0,5143,5144,3,1254,627,0,5144,5145,3,548,274,0, + 5145,5155,1,0,0,0,5146,5147,3,1098,549,0,5147,5148,3,548,274,0,5148, + 5155,1,0,0,0,5149,5150,5,2,0,0,5150,5151,3,1046,523,0,5151,5152, + 5,3,0,0,5152,5153,3,548,274,0,5153,5155,1,0,0,0,5154,5143,1,0,0, + 0,5154,5146,1,0,0,0,5154,5149,1,0,0,0,5155,551,1,0,0,0,5156,5157, + 5,441,0,0,5157,5158,5,2,0,0,5158,5163,3,550,275,0,5159,5160,5,6, + 0,0,5160,5162,3,550,275,0,5161,5159,1,0,0,0,5162,5165,1,0,0,0,5163, + 5161,1,0,0,0,5163,5164,1,0,0,0,5164,5166,1,0,0,0,5165,5163,1,0,0, + 0,5166,5167,5,3,0,0,5167,5170,1,0,0,0,5168,5170,1,0,0,0,5169,5156, + 1,0,0,0,5169,5168,1,0,0,0,5170,553,1,0,0,0,5171,5172,5,43,0,0,5172, + 5175,3,478,239,0,5173,5175,1,0,0,0,5174,5171,1,0,0,0,5174,5173,1, + 0,0,0,5175,555,1,0,0,0,5176,5179,3,478,239,0,5177,5179,1,0,0,0,5178, + 5176,1,0,0,0,5178,5177,1,0,0,0,5179,557,1,0,0,0,5180,5184,5,37,0, + 0,5181,5184,5,55,0,0,5182,5184,1,0,0,0,5183,5180,1,0,0,0,5183,5181, + 1,0,0,0,5183,5182,1,0,0,0,5184,559,1,0,0,0,5185,5186,5,266,0,0,5186, + 5191,5,207,0,0,5187,5188,5,266,0,0,5188,5191,5,240,0,0,5189,5191, + 1,0,0,0,5190,5185,1,0,0,0,5190,5187,1,0,0,0,5190,5189,1,0,0,0,5191, + 561,1,0,0,0,5192,5193,5,46,0,0,5193,5194,3,564,282,0,5194,5195,7, + 22,0,0,5195,5196,3,1228,614,0,5196,5198,5,2,0,0,5197,5199,3,572, + 286,0,5198,5197,1,0,0,0,5198,5199,1,0,0,0,5199,5200,1,0,0,0,5200, + 5210,5,3,0,0,5201,5208,5,309,0,0,5202,5209,3,582,291,0,5203,5204, + 5,92,0,0,5204,5205,5,2,0,0,5205,5206,3,608,304,0,5206,5207,5,3,0, + 0,5207,5209,1,0,0,0,5208,5202,1,0,0,0,5208,5203,1,0,0,0,5209,5211, + 1,0,0,0,5210,5201,1,0,0,0,5210,5211,1,0,0,0,5211,5212,1,0,0,0,5212, + 5213,3,594,297,0,5213,563,1,0,0,0,5214,5215,5,82,0,0,5215,5218,5, + 304,0,0,5216,5218,1,0,0,0,5217,5214,1,0,0,0,5217,5216,1,0,0,0,5218, + 565,1,0,0,0,5219,5224,3,576,288,0,5220,5221,5,6,0,0,5221,5223,3, + 576,288,0,5222,5220,1,0,0,0,5223,5226,1,0,0,0,5224,5222,1,0,0,0, + 5224,5225,1,0,0,0,5225,567,1,0,0,0,5226,5224,1,0,0,0,5227,5232,3, + 570,285,0,5228,5229,5,6,0,0,5229,5231,3,570,285,0,5230,5228,1,0, + 0,0,5231,5234,1,0,0,0,5232,5230,1,0,0,0,5232,5233,1,0,0,0,5233,569, + 1,0,0,0,5234,5232,1,0,0,0,5235,5236,3,1228,614,0,5236,5238,5,2,0, + 0,5237,5239,3,566,283,0,5238,5237,1,0,0,0,5238,5239,1,0,0,0,5239, + 5240,1,0,0,0,5240,5241,5,3,0,0,5241,5248,1,0,0,0,5242,5248,3,1272, + 636,0,5243,5245,3,1254,627,0,5244,5246,3,1206,603,0,5245,5244,1, + 0,0,0,5245,5246,1,0,0,0,5246,5248,1,0,0,0,5247,5235,1,0,0,0,5247, + 5242,1,0,0,0,5247,5243,1,0,0,0,5248,571,1,0,0,0,5249,5254,3,574, + 287,0,5250,5251,5,6,0,0,5251,5253,3,574,287,0,5252,5250,1,0,0,0, + 5253,5256,1,0,0,0,5254,5252,1,0,0,0,5254,5255,1,0,0,0,5255,573,1, + 0,0,0,5256,5254,1,0,0,0,5257,5260,3,576,288,0,5258,5259,7,26,0,0, + 5259,5261,3,1046,523,0,5260,5258,1,0,0,0,5260,5261,1,0,0,0,5261, + 575,1,0,0,0,5262,5264,3,578,289,0,5263,5265,3,580,290,0,5264,5263, + 1,0,0,0,5264,5265,1,0,0,0,5265,5266,1,0,0,0,5266,5267,3,584,292, + 0,5267,5276,1,0,0,0,5268,5270,3,580,290,0,5269,5271,3,578,289,0, + 5270,5269,1,0,0,0,5270,5271,1,0,0,0,5271,5272,1,0,0,0,5272,5273, + 3,584,292,0,5273,5276,1,0,0,0,5274,5276,3,584,292,0,5275,5262,1, + 0,0,0,5275,5268,1,0,0,0,5275,5274,1,0,0,0,5276,577,1,0,0,0,5277, + 5279,5,68,0,0,5278,5280,5,453,0,0,5279,5278,1,0,0,0,5279,5280,1, + 0,0,0,5280,5285,1,0,0,0,5281,5285,5,453,0,0,5282,5285,5,393,0,0, + 5283,5285,5,101,0,0,5284,5277,1,0,0,0,5284,5281,1,0,0,0,5284,5282, + 1,0,0,0,5284,5283,1,0,0,0,5285,579,1,0,0,0,5286,5291,3,1258,629, + 0,5287,5291,3,1276,638,0,5288,5291,5,119,0,0,5289,5291,5,126,0,0, + 5290,5286,1,0,0,0,5290,5287,1,0,0,0,5290,5288,1,0,0,0,5290,5289, + 1,0,0,0,5291,581,1,0,0,0,5292,5293,3,584,292,0,5293,583,1,0,0,0, + 5294,5309,3,1004,502,0,5295,5297,5,408,0,0,5296,5295,1,0,0,0,5296, + 5297,1,0,0,0,5297,5302,1,0,0,0,5298,5303,3,1276,638,0,5299,5303, + 3,1258,629,0,5300,5303,5,119,0,0,5301,5303,5,126,0,0,5302,5298,1, + 0,0,0,5302,5299,1,0,0,0,5302,5300,1,0,0,0,5302,5301,1,0,0,0,5303, + 5304,1,0,0,0,5304,5305,3,480,240,0,5305,5306,5,27,0,0,5306,5307, + 5,353,0,0,5307,5309,1,0,0,0,5308,5294,1,0,0,0,5308,5296,1,0,0,0, + 5309,585,1,0,0,0,5310,5321,5,2,0,0,5311,5322,5,9,0,0,5312,5322,3, + 588,294,0,5313,5314,5,83,0,0,5314,5315,5,147,0,0,5315,5322,3,588, + 294,0,5316,5317,3,588,294,0,5317,5318,5,83,0,0,5318,5319,5,147,0, + 0,5319,5320,3,588,294,0,5320,5322,1,0,0,0,5321,5311,1,0,0,0,5321, + 5312,1,0,0,0,5321,5313,1,0,0,0,5321,5316,1,0,0,0,5322,5323,1,0,0, + 0,5323,5324,5,3,0,0,5324,587,1,0,0,0,5325,5330,3,576,288,0,5326, + 5327,5,6,0,0,5327,5329,3,576,288,0,5328,5326,1,0,0,0,5329,5332,1, + 0,0,0,5330,5328,1,0,0,0,5330,5331,1,0,0,0,5331,589,1,0,0,0,5332, + 5330,1,0,0,0,5333,5334,3,1228,614,0,5334,5335,3,586,293,0,5335,591, + 1,0,0,0,5336,5341,3,590,295,0,5337,5338,5,6,0,0,5338,5340,3,590, + 295,0,5339,5337,1,0,0,0,5340,5343,1,0,0,0,5341,5339,1,0,0,0,5341, + 5342,1,0,0,0,5342,593,1,0,0,0,5343,5341,1,0,0,0,5344,5346,3,598, + 299,0,5345,5344,1,0,0,0,5346,5347,1,0,0,0,5347,5345,1,0,0,0,5347, + 5348,1,0,0,0,5348,5349,1,0,0,0,5349,5350,6,297,-1,0,5350,595,1,0, + 0,0,5351,5352,5,149,0,0,5352,5353,5,80,0,0,5353,5354,5,78,0,0,5354, + 5387,5,458,0,0,5355,5356,5,309,0,0,5356,5357,5,78,0,0,5357,5358, + 5,80,0,0,5358,5359,5,78,0,0,5359,5387,5,458,0,0,5360,5387,5,339, + 0,0,5361,5387,5,222,0,0,5362,5387,5,331,0,0,5363,5387,5,370,0,0, + 5364,5365,5,205,0,0,5365,5366,5,320,0,0,5366,5387,5,181,0,0,5367, + 5368,5,205,0,0,5368,5369,5,320,0,0,5369,5387,5,234,0,0,5370,5371, + 5,320,0,0,5371,5387,5,181,0,0,5372,5373,5,320,0,0,5373,5387,5,234, + 0,0,5374,5387,5,241,0,0,5375,5376,5,77,0,0,5376,5387,5,241,0,0,5377, + 5378,5,170,0,0,5378,5387,3,270,135,0,5379,5380,5,313,0,0,5380,5387, + 3,270,135,0,5381,5382,5,459,0,0,5382,5387,3,478,239,0,5383,5387, + 3,80,40,0,5384,5385,5,460,0,0,5385,5387,3,1254,627,0,5386,5351,1, + 0,0,0,5386,5355,1,0,0,0,5386,5360,1,0,0,0,5386,5361,1,0,0,0,5386, + 5362,1,0,0,0,5386,5363,1,0,0,0,5386,5364,1,0,0,0,5386,5367,1,0,0, + 0,5386,5370,1,0,0,0,5386,5372,1,0,0,0,5386,5374,1,0,0,0,5386,5375, + 1,0,0,0,5386,5377,1,0,0,0,5386,5379,1,0,0,0,5386,5381,1,0,0,0,5386, + 5383,1,0,0,0,5386,5384,1,0,0,0,5387,597,1,0,0,0,5388,5389,5,36,0, + 0,5389,5397,3,600,300,0,5390,5391,5,238,0,0,5391,5397,3,70,35,0, + 5392,5393,5,443,0,0,5393,5397,3,602,301,0,5394,5397,5,104,0,0,5395, + 5397,3,596,298,0,5396,5388,1,0,0,0,5396,5390,1,0,0,0,5396,5392,1, + 0,0,0,5396,5394,1,0,0,0,5396,5395,1,0,0,0,5397,599,1,0,0,0,5398, + 5404,3,1240,620,0,5399,5400,3,1240,620,0,5400,5401,5,6,0,0,5401, + 5402,3,1240,620,0,5402,5404,1,0,0,0,5403,5398,1,0,0,0,5403,5399, + 1,0,0,0,5404,601,1,0,0,0,5405,5406,5,62,0,0,5406,5407,5,353,0,0, + 5407,5414,3,1004,502,0,5408,5409,5,6,0,0,5409,5410,5,62,0,0,5410, + 5411,5,353,0,0,5411,5413,3,1004,502,0,5412,5408,1,0,0,0,5413,5416, + 1,0,0,0,5414,5412,1,0,0,0,5414,5415,1,0,0,0,5415,603,1,0,0,0,5416, + 5414,1,0,0,0,5417,5418,5,105,0,0,5418,5421,3,424,212,0,5419,5421, + 1,0,0,0,5420,5417,1,0,0,0,5420,5419,1,0,0,0,5421,605,1,0,0,0,5422, + 5423,3,580,290,0,5423,5424,3,584,292,0,5424,607,1,0,0,0,5425,5430, + 3,606,303,0,5426,5427,5,6,0,0,5427,5429,3,606,303,0,5428,5426,1, + 0,0,0,5429,5432,1,0,0,0,5430,5428,1,0,0,0,5430,5431,1,0,0,0,5431, + 609,1,0,0,0,5432,5430,1,0,0,0,5433,5434,5,138,0,0,5434,5435,7,27, + 0,0,5435,5437,3,570,285,0,5436,5438,3,596,298,0,5437,5436,1,0,0, + 0,5438,5439,1,0,0,0,5439,5437,1,0,0,0,5439,5440,1,0,0,0,5440,5442, + 1,0,0,0,5441,5443,5,308,0,0,5442,5441,1,0,0,0,5442,5443,1,0,0,0, + 5443,611,1,0,0,0,5444,5445,5,191,0,0,5445,5446,5,211,0,0,5446,5447, + 3,568,284,0,5447,5448,3,106,53,0,5448,5481,1,0,0,0,5449,5450,5,191, + 0,0,5450,5451,5,211,0,0,5451,5452,5,220,0,0,5452,5453,5,389,0,0, + 5453,5454,3,568,284,0,5454,5455,3,106,53,0,5455,5481,1,0,0,0,5456, + 5457,5,191,0,0,5457,5458,5,289,0,0,5458,5459,3,568,284,0,5459,5460, + 3,106,53,0,5460,5481,1,0,0,0,5461,5462,5,191,0,0,5462,5463,5,289, + 0,0,5463,5464,5,220,0,0,5464,5465,5,389,0,0,5465,5466,3,568,284, + 0,5466,5467,3,106,53,0,5467,5481,1,0,0,0,5468,5469,5,191,0,0,5469, + 5470,5,442,0,0,5470,5471,3,568,284,0,5471,5472,3,106,53,0,5472,5481, + 1,0,0,0,5473,5474,5,191,0,0,5474,5475,5,442,0,0,5475,5476,5,220, + 0,0,5476,5477,5,389,0,0,5477,5478,3,568,284,0,5478,5479,3,106,53, + 0,5479,5481,1,0,0,0,5480,5444,1,0,0,0,5480,5449,1,0,0,0,5480,5456, + 1,0,0,0,5480,5461,1,0,0,0,5480,5468,1,0,0,0,5480,5473,1,0,0,0,5481, + 613,1,0,0,0,5482,5483,5,191,0,0,5483,5484,5,136,0,0,5484,5485,3, + 592,296,0,5485,5486,3,106,53,0,5486,5495,1,0,0,0,5487,5488,5,191, + 0,0,5488,5489,5,136,0,0,5489,5490,5,220,0,0,5490,5491,5,389,0,0, + 5491,5492,3,592,296,0,5492,5493,3,106,53,0,5493,5495,1,0,0,0,5494, + 5482,1,0,0,0,5494,5487,1,0,0,0,5495,615,1,0,0,0,5496,5497,5,191, + 0,0,5497,5498,5,271,0,0,5498,5499,3,622,311,0,5499,5500,3,106,53, + 0,5500,5509,1,0,0,0,5501,5502,5,191,0,0,5502,5503,5,271,0,0,5503, + 5504,5,220,0,0,5504,5505,5,389,0,0,5505,5506,3,622,311,0,5506,5507, + 3,106,53,0,5507,5509,1,0,0,0,5508,5496,1,0,0,0,5508,5501,1,0,0,0, + 5509,617,1,0,0,0,5510,5511,5,2,0,0,5511,5512,3,1004,502,0,5512,5513, + 5,3,0,0,5513,5533,1,0,0,0,5514,5515,5,2,0,0,5515,5516,3,1004,502, + 0,5516,5517,5,6,0,0,5517,5518,3,1004,502,0,5518,5519,5,3,0,0,5519, + 5533,1,0,0,0,5520,5521,5,2,0,0,5521,5522,5,400,0,0,5522,5523,5,6, + 0,0,5523,5524,3,1004,502,0,5524,5525,5,3,0,0,5525,5533,1,0,0,0,5526, + 5527,5,2,0,0,5527,5528,3,1004,502,0,5528,5529,5,6,0,0,5529,5530, + 5,400,0,0,5530,5531,5,3,0,0,5531,5533,1,0,0,0,5532,5510,1,0,0,0, + 5532,5514,1,0,0,0,5532,5520,1,0,0,0,5532,5526,1,0,0,0,5533,619,1, + 0,0,0,5534,5535,3,1254,627,0,5535,5536,5,11,0,0,5536,5538,1,0,0, + 0,5537,5534,1,0,0,0,5538,5541,1,0,0,0,5539,5537,1,0,0,0,5539,5540, + 1,0,0,0,5540,5542,1,0,0,0,5541,5539,1,0,0,0,5542,5543,3,1154,577, + 0,5543,621,1,0,0,0,5544,5549,3,624,312,0,5545,5546,5,6,0,0,5546, + 5548,3,624,312,0,5547,5545,1,0,0,0,5548,5551,1,0,0,0,5549,5547,1, + 0,0,0,5549,5550,1,0,0,0,5550,623,1,0,0,0,5551,5549,1,0,0,0,5552, + 5553,3,620,310,0,5553,5554,3,618,309,0,5554,625,1,0,0,0,5555,5556, + 5,57,0,0,5556,5557,3,628,314,0,5557,627,1,0,0,0,5558,5560,3,630, + 315,0,5559,5558,1,0,0,0,5560,5561,1,0,0,0,5561,5559,1,0,0,0,5561, + 5562,1,0,0,0,5562,629,1,0,0,0,5563,5567,3,1240,620,0,5564,5565,5, + 238,0,0,5565,5567,3,70,35,0,5566,5563,1,0,0,0,5566,5564,1,0,0,0, + 5567,631,1,0,0,0,5568,5569,5,46,0,0,5569,5570,5,41,0,0,5570,5571, + 5,2,0,0,5571,5572,3,1004,502,0,5572,5573,5,36,0,0,5573,5574,3,1004, + 502,0,5574,5575,5,3,0,0,5575,5576,5,105,0,0,5576,5577,5,211,0,0, + 5577,5578,3,570,285,0,5578,5579,3,634,317,0,5579,5603,1,0,0,0,5580, + 5581,5,46,0,0,5581,5582,5,41,0,0,5582,5583,5,2,0,0,5583,5584,3,1004, + 502,0,5584,5585,5,36,0,0,5585,5586,3,1004,502,0,5586,5587,5,3,0, + 0,5587,5588,5,372,0,0,5588,5589,5,211,0,0,5589,5590,3,634,317,0, + 5590,5603,1,0,0,0,5591,5592,5,46,0,0,5592,5593,5,41,0,0,5593,5594, + 5,2,0,0,5594,5595,3,1004,502,0,5595,5596,5,36,0,0,5596,5597,3,1004, + 502,0,5597,5598,5,3,0,0,5598,5599,5,105,0,0,5599,5600,5,393,0,0, + 5600,5601,3,634,317,0,5601,5603,1,0,0,0,5602,5568,1,0,0,0,5602,5580, + 1,0,0,0,5602,5591,1,0,0,0,5603,633,1,0,0,0,5604,5605,5,36,0,0,5605, + 5610,5,223,0,0,5606,5607,5,36,0,0,5607,5610,5,141,0,0,5608,5610, + 1,0,0,0,5609,5604,1,0,0,0,5609,5606,1,0,0,0,5609,5608,1,0,0,0,5610, + 635,1,0,0,0,5611,5612,5,191,0,0,5612,5613,5,41,0,0,5613,5614,3,638, + 319,0,5614,5615,5,2,0,0,5615,5616,3,1004,502,0,5616,5617,5,36,0, + 0,5617,5618,3,1004,502,0,5618,5619,5,3,0,0,5619,5620,3,106,53,0, + 5620,637,1,0,0,0,5621,5622,5,220,0,0,5622,5625,5,389,0,0,5623,5625, + 1,0,0,0,5624,5621,1,0,0,0,5624,5623,1,0,0,0,5625,639,1,0,0,0,5626, + 5627,5,46,0,0,5627,5628,3,564,282,0,5628,5629,5,443,0,0,5629,5630, + 5,62,0,0,5630,5631,3,1004,502,0,5631,5632,5,238,0,0,5632,5633,3, + 1222,611,0,5633,5634,5,2,0,0,5634,5635,3,642,321,0,5635,5636,5,3, + 0,0,5636,641,1,0,0,0,5637,5638,5,64,0,0,5638,5639,5,461,0,0,5639, + 5640,5,105,0,0,5640,5641,5,211,0,0,5641,5642,3,570,285,0,5642,5643, + 5,6,0,0,5643,5644,5,94,0,0,5644,5645,5,461,0,0,5645,5646,5,105,0, + 0,5646,5647,5,211,0,0,5647,5648,3,570,285,0,5648,5672,1,0,0,0,5649, + 5650,5,94,0,0,5650,5651,5,461,0,0,5651,5652,5,105,0,0,5652,5653, + 5,211,0,0,5653,5654,3,570,285,0,5654,5655,5,6,0,0,5655,5656,5,64, + 0,0,5656,5657,5,461,0,0,5657,5658,5,105,0,0,5658,5659,5,211,0,0, + 5659,5660,3,570,285,0,5660,5672,1,0,0,0,5661,5662,5,64,0,0,5662, + 5663,5,461,0,0,5663,5664,5,105,0,0,5664,5665,5,211,0,0,5665,5672, + 3,570,285,0,5666,5667,5,94,0,0,5667,5668,5,461,0,0,5668,5669,5,105, + 0,0,5669,5670,5,211,0,0,5670,5672,3,570,285,0,5671,5637,1,0,0,0, + 5671,5649,1,0,0,0,5671,5661,1,0,0,0,5671,5666,1,0,0,0,5672,643,1, + 0,0,0,5673,5674,5,191,0,0,5674,5675,5,443,0,0,5675,5676,3,638,319, + 0,5676,5677,5,62,0,0,5677,5678,3,1004,502,0,5678,5679,5,238,0,0, + 5679,5680,3,1222,611,0,5680,5681,3,106,53,0,5681,645,1,0,0,0,5682, + 5683,5,299,0,0,5683,5684,3,648,324,0,5684,5685,3,542,271,0,5685, + 5686,3,1218,609,0,5686,5709,1,0,0,0,5687,5688,5,299,0,0,5688,5689, + 3,650,325,0,5689,5690,3,542,271,0,5690,5691,3,1222,611,0,5691,5709, + 1,0,0,0,5692,5693,5,299,0,0,5693,5694,5,2,0,0,5694,5695,3,652,326, + 0,5695,5696,5,3,0,0,5696,5697,3,648,324,0,5697,5698,3,542,271,0, + 5698,5699,3,1218,609,0,5699,5709,1,0,0,0,5700,5701,5,299,0,0,5701, + 5702,5,2,0,0,5702,5703,3,652,326,0,5703,5704,5,3,0,0,5704,5705,3, + 650,325,0,5705,5706,3,542,271,0,5706,5707,3,1222,611,0,5707,5709, + 1,0,0,0,5708,5682,1,0,0,0,5708,5687,1,0,0,0,5708,5692,1,0,0,0,5708, + 5700,1,0,0,0,5709,647,1,0,0,0,5710,5711,7,28,0,0,5711,649,1,0,0, + 0,5712,5713,7,29,0,0,5713,651,1,0,0,0,5714,5719,3,654,327,0,5715, + 5716,5,6,0,0,5716,5718,3,654,327,0,5717,5715,1,0,0,0,5718,5721,1, + 0,0,0,5719,5717,1,0,0,0,5719,5720,1,0,0,0,5720,653,1,0,0,0,5721, + 5719,1,0,0,0,5722,5723,7,30,0,0,5723,655,1,0,0,0,5724,5725,5,138, + 0,0,5725,5726,5,344,0,0,5726,5727,3,1222,611,0,5727,5728,5,326,0, + 0,5728,5729,3,114,57,0,5729,5737,1,0,0,0,5730,5731,5,138,0,0,5731, + 5732,5,344,0,0,5732,5733,3,1222,611,0,5733,5734,5,306,0,0,5734,5735, + 3,114,57,0,5735,5737,1,0,0,0,5736,5724,1,0,0,0,5736,5730,1,0,0,0, + 5737,657,1,0,0,0,5738,5739,5,138,0,0,5739,5740,5,136,0,0,5740,5741, + 3,590,295,0,5741,5742,5,302,0,0,5742,5743,5,94,0,0,5743,5744,3,1222, + 611,0,5744,6207,1,0,0,0,5745,5746,5,138,0,0,5746,5747,5,108,0,0, + 5747,5748,3,478,239,0,5748,5749,5,302,0,0,5749,5750,5,94,0,0,5750, + 5751,3,1222,611,0,5751,6207,1,0,0,0,5752,5753,5,138,0,0,5753,5754, + 5,168,0,0,5754,5755,3,478,239,0,5755,5756,5,302,0,0,5756,5757,5, + 94,0,0,5757,5758,3,1222,611,0,5758,6207,1,0,0,0,5759,5760,5,138, + 0,0,5760,5761,5,175,0,0,5761,5762,3,1222,611,0,5762,5763,5,302,0, + 0,5763,5764,5,94,0,0,5764,5765,3,1222,611,0,5765,6207,1,0,0,0,5766, + 5767,5,138,0,0,5767,5768,5,189,0,0,5768,5769,3,478,239,0,5769,5770, + 5,302,0,0,5770,5771,5,94,0,0,5771,5772,3,1222,611,0,5772,6207,1, + 0,0,0,5773,5774,5,138,0,0,5774,5775,5,189,0,0,5775,5776,3,478,239, + 0,5776,5777,5,302,0,0,5777,5778,5,45,0,0,5778,5779,3,1222,611,0, + 5779,5780,5,94,0,0,5780,5781,3,1222,611,0,5781,6207,1,0,0,0,5782, + 5783,5,138,0,0,5783,5784,5,63,0,0,5784,5785,5,174,0,0,5785,5786, + 5,374,0,0,5786,5787,3,1222,611,0,5787,5788,5,302,0,0,5788,5789,5, + 94,0,0,5789,5790,3,1222,611,0,5790,6207,1,0,0,0,5791,5792,5,138, + 0,0,5792,5793,5,211,0,0,5793,5794,3,570,285,0,5794,5795,5,302,0, + 0,5795,5796,5,94,0,0,5796,5797,3,1222,611,0,5797,6207,1,0,0,0,5798, + 5799,5,138,0,0,5799,5800,5,66,0,0,5800,5801,3,1248,624,0,5801,5802, + 5,302,0,0,5802,5803,5,94,0,0,5803,5804,3,1248,624,0,5804,6207,1, + 0,0,0,5805,5806,5,138,0,0,5806,5807,3,282,141,0,5807,5808,5,238, + 0,0,5808,5809,3,1222,611,0,5809,5810,5,302,0,0,5810,5811,5,94,0, + 0,5811,5812,3,1222,611,0,5812,6207,1,0,0,0,5813,5814,5,138,0,0,5814, + 5815,5,271,0,0,5815,5816,5,156,0,0,5816,5817,3,478,239,0,5817,5818, + 5,100,0,0,5818,5819,3,1222,611,0,5819,5820,5,302,0,0,5820,5821,5, + 94,0,0,5821,5822,3,1222,611,0,5822,6207,1,0,0,0,5823,5824,5,138, + 0,0,5824,5825,5,271,0,0,5825,5826,5,206,0,0,5826,5827,3,478,239, + 0,5827,5828,5,100,0,0,5828,5829,3,1222,611,0,5829,5830,5,302,0,0, + 5830,5831,5,94,0,0,5831,5832,3,1222,611,0,5832,6207,1,0,0,0,5833, + 5834,5,138,0,0,5834,5835,5,445,0,0,5835,5836,3,1222,611,0,5836,5837, + 5,80,0,0,5837,5838,3,1218,609,0,5838,5839,5,302,0,0,5839,5840,5, + 94,0,0,5840,5841,3,1222,611,0,5841,6207,1,0,0,0,5842,5843,5,138, + 0,0,5843,5844,5,445,0,0,5844,5845,5,220,0,0,5845,5846,5,389,0,0, + 5846,5847,3,1222,611,0,5847,5848,5,80,0,0,5848,5849,3,1218,609,0, + 5849,5850,5,302,0,0,5850,5851,5,94,0,0,5851,5852,3,1222,611,0,5852, + 6207,1,0,0,0,5853,5854,5,138,0,0,5854,5855,5,289,0,0,5855,5856,3, + 570,285,0,5856,5857,5,302,0,0,5857,5858,5,94,0,0,5858,5859,3,1222, + 611,0,5859,6207,1,0,0,0,5860,5861,5,138,0,0,5861,5862,5,452,0,0, + 5862,5863,3,1222,611,0,5863,5864,5,302,0,0,5864,5865,5,94,0,0,5865, + 5866,3,1222,611,0,5866,6207,1,0,0,0,5867,5868,5,138,0,0,5868,5869, + 5,442,0,0,5869,5870,3,570,285,0,5870,5871,5,302,0,0,5871,5872,5, + 94,0,0,5872,5873,3,1222,611,0,5873,6207,1,0,0,0,5874,5875,5,138, + 0,0,5875,5876,5,316,0,0,5876,5877,3,1222,611,0,5877,5878,5,302,0, + 0,5878,5879,5,94,0,0,5879,5880,3,1222,611,0,5880,6207,1,0,0,0,5881, + 5882,5,138,0,0,5882,5883,5,324,0,0,5883,5884,3,1222,611,0,5884,5885, + 5,302,0,0,5885,5886,5,94,0,0,5886,5887,3,1222,611,0,5887,6207,1, + 0,0,0,5888,5889,5,138,0,0,5889,5890,5,451,0,0,5890,5891,3,1222,611, + 0,5891,5892,5,302,0,0,5892,5893,5,94,0,0,5893,5894,3,1222,611,0, + 5894,6207,1,0,0,0,5895,5896,5,138,0,0,5896,5897,5,92,0,0,5897,5898, + 3,966,483,0,5898,5899,5,302,0,0,5899,5900,5,94,0,0,5900,5901,3,1222, + 611,0,5901,6207,1,0,0,0,5902,5903,5,138,0,0,5903,5904,5,92,0,0,5904, + 5905,5,220,0,0,5905,5906,5,389,0,0,5906,5907,3,966,483,0,5907,5908, + 5,302,0,0,5908,5909,5,94,0,0,5909,5910,3,1222,611,0,5910,6207,1, + 0,0,0,5911,5912,5,138,0,0,5912,5913,5,321,0,0,5913,5914,3,1218,609, + 0,5914,5915,5,302,0,0,5915,5916,5,94,0,0,5916,5917,3,1222,611,0, + 5917,6207,1,0,0,0,5918,5919,5,138,0,0,5919,5920,5,321,0,0,5920,5921, + 5,220,0,0,5921,5922,5,389,0,0,5922,5923,3,1218,609,0,5923,5924,5, + 302,0,0,5924,5925,5,94,0,0,5925,5926,3,1222,611,0,5926,6207,1,0, + 0,0,5927,5928,5,138,0,0,5928,5929,5,369,0,0,5929,5930,3,1218,609, + 0,5930,5931,5,302,0,0,5931,5932,5,94,0,0,5932,5933,3,1222,611,0, + 5933,6207,1,0,0,0,5934,5935,5,138,0,0,5935,5936,5,369,0,0,5936,5937, + 5,220,0,0,5937,5938,5,389,0,0,5938,5939,3,1218,609,0,5939,5940,5, + 302,0,0,5940,5941,5,94,0,0,5941,5942,3,1222,611,0,5942,6207,1,0, + 0,0,5943,5944,5,138,0,0,5944,5945,5,251,0,0,5945,5946,5,369,0,0, + 5946,5947,3,1218,609,0,5947,5948,5,302,0,0,5948,5949,5,94,0,0,5949, + 5950,3,1222,611,0,5950,6207,1,0,0,0,5951,5952,5,138,0,0,5952,5953, + 5,251,0,0,5953,5954,5,369,0,0,5954,5955,5,220,0,0,5955,5956,5,389, + 0,0,5956,5957,3,1218,609,0,5957,5958,5,302,0,0,5958,5959,5,94,0, + 0,5959,5960,3,1222,611,0,5960,6207,1,0,0,0,5961,5962,5,138,0,0,5962, + 5963,5,226,0,0,5963,5964,3,1218,609,0,5964,5965,5,302,0,0,5965,5966, + 5,94,0,0,5966,5967,3,1222,611,0,5967,6207,1,0,0,0,5968,5969,5,138, + 0,0,5969,5970,5,226,0,0,5970,5971,5,220,0,0,5971,5972,5,389,0,0, + 5972,5973,3,1218,609,0,5973,5974,5,302,0,0,5974,5975,5,94,0,0,5975, + 5976,3,1222,611,0,5976,6207,1,0,0,0,5977,5978,5,138,0,0,5978,5979, + 5,63,0,0,5979,5980,5,92,0,0,5980,5981,3,966,483,0,5981,5982,5,302, + 0,0,5982,5983,5,94,0,0,5983,5984,3,1222,611,0,5984,6207,1,0,0,0, + 5985,5986,5,138,0,0,5986,5987,5,63,0,0,5987,5988,5,92,0,0,5988,5989, + 5,220,0,0,5989,5990,5,389,0,0,5990,5991,3,966,483,0,5991,5992,5, + 302,0,0,5992,5993,5,94,0,0,5993,5994,3,1222,611,0,5994,6207,1,0, + 0,0,5995,5996,5,138,0,0,5996,5997,5,92,0,0,5997,5998,3,966,483,0, + 5998,5999,5,302,0,0,5999,6000,3,660,330,0,6000,6001,3,1222,611,0, + 6001,6002,5,94,0,0,6002,6003,3,1222,611,0,6003,6207,1,0,0,0,6004, + 6005,5,138,0,0,6005,6006,5,92,0,0,6006,6007,5,220,0,0,6007,6008, + 5,389,0,0,6008,6009,3,966,483,0,6009,6010,5,302,0,0,6010,6011,3, + 660,330,0,6011,6012,3,1222,611,0,6012,6013,5,94,0,0,6013,6014,3, + 1222,611,0,6014,6207,1,0,0,0,6015,6016,5,138,0,0,6016,6017,5,369, + 0,0,6017,6018,3,1218,609,0,6018,6019,5,302,0,0,6019,6020,3,660,330, + 0,6020,6021,3,1222,611,0,6021,6022,5,94,0,0,6022,6023,3,1222,611, + 0,6023,6207,1,0,0,0,6024,6025,5,138,0,0,6025,6026,5,369,0,0,6026, + 6027,5,220,0,0,6027,6028,5,389,0,0,6028,6029,3,1218,609,0,6029,6030, + 5,302,0,0,6030,6031,3,660,330,0,6031,6032,3,1222,611,0,6032,6033, + 5,94,0,0,6033,6034,3,1222,611,0,6034,6207,1,0,0,0,6035,6036,5,138, + 0,0,6036,6037,5,251,0,0,6037,6038,5,369,0,0,6038,6039,3,1218,609, + 0,6039,6040,5,302,0,0,6040,6041,3,660,330,0,6041,6042,3,1222,611, + 0,6042,6043,5,94,0,0,6043,6044,3,1222,611,0,6044,6207,1,0,0,0,6045, + 6046,5,138,0,0,6046,6047,5,251,0,0,6047,6048,5,369,0,0,6048,6049, + 5,220,0,0,6049,6050,5,389,0,0,6050,6051,3,1218,609,0,6051,6052,5, + 302,0,0,6052,6053,3,660,330,0,6053,6054,3,1222,611,0,6054,6055,5, + 94,0,0,6055,6056,3,1222,611,0,6056,6207,1,0,0,0,6057,6058,5,138, + 0,0,6058,6059,5,92,0,0,6059,6060,3,966,483,0,6060,6061,5,302,0,0, + 6061,6062,5,45,0,0,6062,6063,3,1222,611,0,6063,6064,5,94,0,0,6064, + 6065,3,1222,611,0,6065,6207,1,0,0,0,6066,6067,5,138,0,0,6067,6068, + 5,92,0,0,6068,6069,5,220,0,0,6069,6070,5,389,0,0,6070,6071,3,966, + 483,0,6071,6072,5,302,0,0,6072,6073,5,45,0,0,6073,6074,3,1222,611, + 0,6074,6075,5,94,0,0,6075,6076,3,1222,611,0,6076,6207,1,0,0,0,6077, + 6078,5,138,0,0,6078,6079,5,63,0,0,6079,6080,5,92,0,0,6080,6081,3, + 966,483,0,6081,6082,5,302,0,0,6082,6083,3,660,330,0,6083,6084,3, + 1222,611,0,6084,6085,5,94,0,0,6085,6086,3,1222,611,0,6086,6207,1, + 0,0,0,6087,6088,5,138,0,0,6088,6089,5,63,0,0,6089,6090,5,92,0,0, + 6090,6091,5,220,0,0,6091,6092,5,389,0,0,6092,6093,3,966,483,0,6093, + 6094,5,302,0,0,6094,6095,3,660,330,0,6095,6096,3,1222,611,0,6096, + 6097,5,94,0,0,6097,6098,3,1222,611,0,6098,6207,1,0,0,0,6099,6100, + 5,138,0,0,6100,6101,5,314,0,0,6101,6102,3,1222,611,0,6102,6103,5, + 80,0,0,6103,6104,3,1218,609,0,6104,6105,5,302,0,0,6105,6106,5,94, + 0,0,6106,6107,3,1222,611,0,6107,6207,1,0,0,0,6108,6109,5,138,0,0, + 6109,6110,5,350,0,0,6110,6111,3,1222,611,0,6111,6112,5,80,0,0,6112, + 6113,3,1218,609,0,6113,6114,5,302,0,0,6114,6115,5,94,0,0,6115,6116, + 3,1222,611,0,6116,6207,1,0,0,0,6117,6118,5,138,0,0,6118,6119,5,198, + 0,0,6119,6120,5,350,0,0,6120,6121,3,1222,611,0,6121,6122,5,302,0, + 0,6122,6123,5,94,0,0,6123,6124,3,1222,611,0,6124,6207,1,0,0,0,6125, + 6126,5,138,0,0,6126,6127,5,311,0,0,6127,6128,3,1248,624,0,6128,6129, + 5,302,0,0,6129,6130,5,94,0,0,6130,6131,3,1248,624,0,6131,6207,1, + 0,0,0,6132,6133,5,138,0,0,6133,6134,5,99,0,0,6134,6135,3,1248,624, + 0,6135,6136,5,302,0,0,6136,6137,5,94,0,0,6137,6138,3,1248,624,0, + 6138,6207,1,0,0,0,6139,6140,5,138,0,0,6140,6141,5,344,0,0,6141,6142, + 3,1222,611,0,6142,6143,5,302,0,0,6143,6144,5,94,0,0,6144,6145,3, + 1222,611,0,6145,6207,1,0,0,0,6146,6147,5,138,0,0,6147,6148,5,335, + 0,0,6148,6149,3,478,239,0,6149,6150,5,302,0,0,6150,6151,5,94,0,0, + 6151,6152,3,1222,611,0,6152,6207,1,0,0,0,6153,6154,5,138,0,0,6154, + 6155,5,348,0,0,6155,6156,5,318,0,0,6156,6157,5,276,0,0,6157,6158, + 3,478,239,0,6158,6159,5,302,0,0,6159,6160,5,94,0,0,6160,6161,3,1222, + 611,0,6161,6207,1,0,0,0,6162,6163,5,138,0,0,6163,6164,5,348,0,0, + 6164,6165,5,318,0,0,6165,6166,5,185,0,0,6166,6167,3,478,239,0,6167, + 6168,5,302,0,0,6168,6169,5,94,0,0,6169,6170,3,1222,611,0,6170,6207, + 1,0,0,0,6171,6172,5,138,0,0,6172,6173,5,348,0,0,6173,6174,5,318, + 0,0,6174,6175,5,346,0,0,6175,6176,3,478,239,0,6176,6177,5,302,0, + 0,6177,6178,5,94,0,0,6178,6179,3,1222,611,0,6179,6207,1,0,0,0,6180, + 6181,5,138,0,0,6181,6182,5,348,0,0,6182,6183,5,318,0,0,6183,6184, + 5,163,0,0,6184,6185,3,478,239,0,6185,6186,5,302,0,0,6186,6187,5, + 94,0,0,6187,6188,3,1222,611,0,6188,6207,1,0,0,0,6189,6190,5,138, + 0,0,6190,6191,5,353,0,0,6191,6192,3,478,239,0,6192,6193,5,302,0, + 0,6193,6194,5,94,0,0,6194,6195,3,1222,611,0,6195,6207,1,0,0,0,6196, + 6197,5,138,0,0,6197,6198,5,353,0,0,6198,6199,3,478,239,0,6199,6200, + 5,302,0,0,6200,6201,5,143,0,0,6201,6202,3,1222,611,0,6202,6203,5, + 94,0,0,6203,6204,3,1222,611,0,6204,6205,3,106,53,0,6205,6207,1,0, + 0,0,6206,5738,1,0,0,0,6206,5745,1,0,0,0,6206,5752,1,0,0,0,6206,5759, + 1,0,0,0,6206,5766,1,0,0,0,6206,5773,1,0,0,0,6206,5782,1,0,0,0,6206, + 5791,1,0,0,0,6206,5798,1,0,0,0,6206,5805,1,0,0,0,6206,5813,1,0,0, + 0,6206,5823,1,0,0,0,6206,5833,1,0,0,0,6206,5842,1,0,0,0,6206,5853, + 1,0,0,0,6206,5860,1,0,0,0,6206,5867,1,0,0,0,6206,5874,1,0,0,0,6206, + 5881,1,0,0,0,6206,5888,1,0,0,0,6206,5895,1,0,0,0,6206,5902,1,0,0, + 0,6206,5911,1,0,0,0,6206,5918,1,0,0,0,6206,5927,1,0,0,0,6206,5934, + 1,0,0,0,6206,5943,1,0,0,0,6206,5951,1,0,0,0,6206,5961,1,0,0,0,6206, + 5968,1,0,0,0,6206,5977,1,0,0,0,6206,5985,1,0,0,0,6206,5995,1,0,0, + 0,6206,6004,1,0,0,0,6206,6015,1,0,0,0,6206,6024,1,0,0,0,6206,6035, + 1,0,0,0,6206,6045,1,0,0,0,6206,6057,1,0,0,0,6206,6066,1,0,0,0,6206, + 6077,1,0,0,0,6206,6087,1,0,0,0,6206,6099,1,0,0,0,6206,6108,1,0,0, + 0,6206,6117,1,0,0,0,6206,6125,1,0,0,0,6206,6132,1,0,0,0,6206,6139, + 1,0,0,0,6206,6146,1,0,0,0,6206,6153,1,0,0,0,6206,6162,1,0,0,0,6206, + 6171,1,0,0,0,6206,6180,1,0,0,0,6206,6189,1,0,0,0,6206,6196,1,0,0, + 0,6207,659,1,0,0,0,6208,6211,5,44,0,0,6209,6211,1,0,0,0,6210,6208, + 1,0,0,0,6210,6209,1,0,0,0,6211,661,1,0,0,0,6212,6213,5,326,0,0,6213, + 6216,5,174,0,0,6214,6216,1,0,0,0,6215,6212,1,0,0,0,6215,6214,1,0, + 0,0,6216,663,1,0,0,0,6217,6218,5,138,0,0,6218,6219,5,211,0,0,6219, + 6221,3,570,285,0,6220,6222,5,262,0,0,6221,6220,1,0,0,0,6221,6222, + 1,0,0,0,6222,6223,1,0,0,0,6223,6224,5,462,0,0,6224,6225,5,80,0,0, + 6225,6226,5,204,0,0,6226,6227,3,1222,611,0,6227,6287,1,0,0,0,6228, + 6229,5,138,0,0,6229,6230,5,289,0,0,6230,6232,3,570,285,0,6231,6233, + 5,262,0,0,6232,6231,1,0,0,0,6232,6233,1,0,0,0,6233,6234,1,0,0,0, + 6234,6235,5,462,0,0,6235,6236,5,80,0,0,6236,6237,5,204,0,0,6237, + 6238,3,1222,611,0,6238,6287,1,0,0,0,6239,6240,5,138,0,0,6240,6241, + 5,442,0,0,6241,6243,3,570,285,0,6242,6244,5,262,0,0,6243,6242,1, + 0,0,0,6243,6244,1,0,0,0,6244,6245,1,0,0,0,6245,6246,5,462,0,0,6246, + 6247,5,80,0,0,6247,6248,5,204,0,0,6248,6249,3,1222,611,0,6249,6287, + 1,0,0,0,6250,6251,5,138,0,0,6251,6252,5,350,0,0,6252,6253,3,1222, + 611,0,6253,6254,5,80,0,0,6254,6256,3,1218,609,0,6255,6257,5,262, + 0,0,6256,6255,1,0,0,0,6256,6257,1,0,0,0,6257,6258,1,0,0,0,6258,6259, + 5,462,0,0,6259,6260,5,80,0,0,6260,6261,5,204,0,0,6261,6262,3,1222, + 611,0,6262,6287,1,0,0,0,6263,6264,5,138,0,0,6264,6265,5,251,0,0, + 6265,6266,5,369,0,0,6266,6268,3,1218,609,0,6267,6269,5,262,0,0,6268, + 6267,1,0,0,0,6268,6269,1,0,0,0,6269,6270,1,0,0,0,6270,6271,5,462, + 0,0,6271,6272,5,80,0,0,6272,6273,5,204,0,0,6273,6274,3,1222,611, + 0,6274,6287,1,0,0,0,6275,6276,5,138,0,0,6276,6277,5,226,0,0,6277, + 6279,3,1218,609,0,6278,6280,5,262,0,0,6279,6278,1,0,0,0,6279,6280, + 1,0,0,0,6280,6281,1,0,0,0,6281,6282,5,462,0,0,6282,6283,5,80,0,0, + 6283,6284,5,204,0,0,6284,6285,3,1222,611,0,6285,6287,1,0,0,0,6286, + 6217,1,0,0,0,6286,6228,1,0,0,0,6286,6239,1,0,0,0,6286,6250,1,0,0, + 0,6286,6263,1,0,0,0,6286,6275,1,0,0,0,6287,665,1,0,0,0,6288,6289, + 5,138,0,0,6289,6290,5,136,0,0,6290,6291,3,590,295,0,6291,6292,5, + 326,0,0,6292,6293,5,316,0,0,6293,6294,3,1222,611,0,6294,6506,1,0, + 0,0,6295,6296,5,138,0,0,6296,6297,5,108,0,0,6297,6298,3,478,239, + 0,6298,6299,5,326,0,0,6299,6300,5,316,0,0,6300,6301,3,1222,611,0, + 6301,6506,1,0,0,0,6302,6303,5,138,0,0,6303,6304,5,168,0,0,6304,6305, + 3,478,239,0,6305,6306,5,326,0,0,6306,6307,5,316,0,0,6307,6308,3, + 1222,611,0,6308,6506,1,0,0,0,6309,6310,5,138,0,0,6310,6311,5,189, + 0,0,6311,6312,3,478,239,0,6312,6313,5,326,0,0,6313,6314,5,316,0, + 0,6314,6315,3,1222,611,0,6315,6506,1,0,0,0,6316,6317,5,138,0,0,6317, + 6318,5,204,0,0,6318,6319,3,1222,611,0,6319,6320,5,326,0,0,6320,6321, + 5,316,0,0,6321,6322,3,1222,611,0,6322,6506,1,0,0,0,6323,6324,5,138, + 0,0,6324,6325,5,211,0,0,6325,6326,3,570,285,0,6326,6327,5,326,0, + 0,6327,6328,5,316,0,0,6328,6329,3,1222,611,0,6329,6506,1,0,0,0,6330, + 6331,5,138,0,0,6331,6332,5,271,0,0,6332,6333,3,624,312,0,6333,6334, + 5,326,0,0,6334,6335,5,316,0,0,6335,6336,3,1222,611,0,6336,6506,1, + 0,0,0,6337,6338,5,138,0,0,6338,6339,5,271,0,0,6339,6340,5,156,0, + 0,6340,6341,3,478,239,0,6341,6342,5,100,0,0,6342,6343,3,1222,611, + 0,6343,6344,5,326,0,0,6344,6345,5,316,0,0,6345,6346,3,1222,611,0, + 6346,6506,1,0,0,0,6347,6348,5,138,0,0,6348,6349,5,271,0,0,6349,6350, + 5,206,0,0,6350,6351,3,478,239,0,6351,6352,5,100,0,0,6352,6353,3, + 1222,611,0,6353,6354,5,326,0,0,6354,6355,5,316,0,0,6355,6356,3,1222, + 611,0,6356,6506,1,0,0,0,6357,6358,5,138,0,0,6358,6359,5,289,0,0, + 6359,6360,3,570,285,0,6360,6361,5,326,0,0,6361,6362,5,316,0,0,6362, + 6363,3,1222,611,0,6363,6506,1,0,0,0,6364,6365,5,138,0,0,6365,6366, + 5,442,0,0,6366,6367,3,570,285,0,6367,6368,5,326,0,0,6368,6369,5, + 316,0,0,6369,6370,3,1222,611,0,6370,6506,1,0,0,0,6371,6372,5,138, + 0,0,6372,6373,5,92,0,0,6373,6374,3,966,483,0,6374,6375,5,326,0,0, + 6375,6376,5,316,0,0,6376,6377,3,1222,611,0,6377,6506,1,0,0,0,6378, + 6379,5,138,0,0,6379,6380,5,92,0,0,6380,6381,5,220,0,0,6381,6382, + 5,389,0,0,6382,6383,3,966,483,0,6383,6384,5,326,0,0,6384,6385,5, + 316,0,0,6385,6386,3,1222,611,0,6386,6506,1,0,0,0,6387,6388,5,138, + 0,0,6388,6389,5,335,0,0,6389,6390,3,478,239,0,6390,6391,5,326,0, + 0,6391,6392,5,316,0,0,6392,6393,3,1222,611,0,6393,6506,1,0,0,0,6394, + 6395,5,138,0,0,6395,6396,5,348,0,0,6396,6397,5,318,0,0,6397,6398, + 5,276,0,0,6398,6399,3,478,239,0,6399,6400,5,326,0,0,6400,6401,5, + 316,0,0,6401,6402,3,1222,611,0,6402,6506,1,0,0,0,6403,6404,5,138, + 0,0,6404,6405,5,348,0,0,6405,6406,5,318,0,0,6406,6407,5,185,0,0, + 6407,6408,3,478,239,0,6408,6409,5,326,0,0,6409,6410,5,316,0,0,6410, + 6411,3,1222,611,0,6411,6506,1,0,0,0,6412,6413,5,138,0,0,6413,6414, + 5,348,0,0,6414,6415,5,318,0,0,6415,6416,5,346,0,0,6416,6417,3,478, + 239,0,6417,6418,5,326,0,0,6418,6419,5,316,0,0,6419,6420,3,1222,611, + 0,6420,6506,1,0,0,0,6421,6422,5,138,0,0,6422,6423,5,348,0,0,6423, + 6424,5,318,0,0,6424,6425,5,163,0,0,6425,6426,3,478,239,0,6426,6427, + 5,326,0,0,6427,6428,5,316,0,0,6428,6429,3,1222,611,0,6429,6506,1, + 0,0,0,6430,6431,5,138,0,0,6431,6432,5,321,0,0,6432,6433,3,1218,609, + 0,6433,6434,5,326,0,0,6434,6435,5,316,0,0,6435,6436,3,1222,611,0, + 6436,6506,1,0,0,0,6437,6438,5,138,0,0,6438,6439,5,321,0,0,6439,6440, + 5,220,0,0,6440,6441,5,389,0,0,6441,6442,3,1218,609,0,6442,6443,5, + 326,0,0,6443,6444,5,316,0,0,6444,6445,3,1222,611,0,6445,6506,1,0, + 0,0,6446,6447,5,138,0,0,6447,6448,5,369,0,0,6448,6449,3,1218,609, + 0,6449,6450,5,326,0,0,6450,6451,5,316,0,0,6451,6452,3,1222,611,0, + 6452,6506,1,0,0,0,6453,6454,5,138,0,0,6454,6455,5,369,0,0,6455,6456, + 5,220,0,0,6456,6457,5,389,0,0,6457,6458,3,1218,609,0,6458,6459,5, + 326,0,0,6459,6460,5,316,0,0,6460,6461,3,1222,611,0,6461,6506,1,0, + 0,0,6462,6463,5,138,0,0,6463,6464,5,251,0,0,6464,6465,5,369,0,0, + 6465,6466,3,1218,609,0,6466,6467,5,326,0,0,6467,6468,5,316,0,0,6468, + 6469,3,1222,611,0,6469,6506,1,0,0,0,6470,6471,5,138,0,0,6471,6472, + 5,251,0,0,6472,6473,5,369,0,0,6473,6474,5,220,0,0,6474,6475,5,389, + 0,0,6475,6476,3,1218,609,0,6476,6477,5,326,0,0,6477,6478,5,316,0, + 0,6478,6479,3,1222,611,0,6479,6506,1,0,0,0,6480,6481,5,138,0,0,6481, + 6482,5,63,0,0,6482,6483,5,92,0,0,6483,6484,3,966,483,0,6484,6485, + 5,326,0,0,6485,6486,5,316,0,0,6486,6487,3,1222,611,0,6487,6506,1, + 0,0,0,6488,6489,5,138,0,0,6489,6490,5,63,0,0,6490,6491,5,92,0,0, + 6491,6492,5,220,0,0,6492,6493,5,389,0,0,6493,6494,3,966,483,0,6494, + 6495,5,326,0,0,6495,6496,5,316,0,0,6496,6497,3,1222,611,0,6497,6506, + 1,0,0,0,6498,6499,5,138,0,0,6499,6500,5,353,0,0,6500,6501,3,478, + 239,0,6501,6502,5,326,0,0,6502,6503,5,316,0,0,6503,6504,3,1222,611, + 0,6504,6506,1,0,0,0,6505,6288,1,0,0,0,6505,6295,1,0,0,0,6505,6302, + 1,0,0,0,6505,6309,1,0,0,0,6505,6316,1,0,0,0,6505,6323,1,0,0,0,6505, + 6330,1,0,0,0,6505,6337,1,0,0,0,6505,6347,1,0,0,0,6505,6357,1,0,0, + 0,6505,6364,1,0,0,0,6505,6371,1,0,0,0,6505,6378,1,0,0,0,6505,6387, + 1,0,0,0,6505,6394,1,0,0,0,6505,6403,1,0,0,0,6505,6412,1,0,0,0,6505, + 6421,1,0,0,0,6505,6430,1,0,0,0,6505,6437,1,0,0,0,6505,6446,1,0,0, + 0,6505,6453,1,0,0,0,6505,6462,1,0,0,0,6505,6470,1,0,0,0,6505,6480, + 1,0,0,0,6505,6488,1,0,0,0,6505,6498,1,0,0,0,6506,667,1,0,0,0,6507, + 6508,5,138,0,0,6508,6509,5,271,0,0,6509,6510,3,624,312,0,6510,6511, + 5,326,0,0,6511,6512,5,2,0,0,6512,6513,3,670,335,0,6513,6514,5,3, + 0,0,6514,669,1,0,0,0,6515,6520,3,672,336,0,6516,6517,5,6,0,0,6517, + 6519,3,672,336,0,6518,6516,1,0,0,0,6519,6522,1,0,0,0,6520,6518,1, + 0,0,0,6520,6521,1,0,0,0,6521,671,1,0,0,0,6522,6520,1,0,0,0,6523, + 6524,3,1262,631,0,6524,6525,5,10,0,0,6525,6526,5,400,0,0,6526,6532, + 1,0,0,0,6527,6528,3,1262,631,0,6528,6529,5,10,0,0,6529,6530,3,674, + 337,0,6530,6532,1,0,0,0,6531,6523,1,0,0,0,6531,6527,1,0,0,0,6532, + 673,1,0,0,0,6533,6539,3,584,292,0,6534,6539,3,1274,637,0,6535,6539, + 3,1160,580,0,6536,6539,3,270,135,0,6537,6539,3,1240,620,0,6538,6533, + 1,0,0,0,6538,6534,1,0,0,0,6538,6535,1,0,0,0,6538,6536,1,0,0,0,6538, + 6537,1,0,0,0,6539,675,1,0,0,0,6540,6541,5,138,0,0,6541,6542,5,353, + 0,0,6542,6543,3,478,239,0,6543,6544,5,326,0,0,6544,6545,5,2,0,0, + 6545,6546,3,670,335,0,6546,6547,5,3,0,0,6547,677,1,0,0,0,6548,6549, + 5,138,0,0,6549,6550,5,136,0,0,6550,6551,3,590,295,0,6551,6552,5, + 275,0,0,6552,6553,5,94,0,0,6553,6554,3,1250,625,0,6554,6732,1,0, + 0,0,6555,6556,5,138,0,0,6556,6557,5,108,0,0,6557,6558,3,478,239, + 0,6558,6559,5,275,0,0,6559,6560,5,94,0,0,6560,6561,3,1250,625,0, + 6561,6732,1,0,0,0,6562,6563,5,138,0,0,6563,6564,5,168,0,0,6564,6565, + 3,478,239,0,6565,6566,5,275,0,0,6566,6567,5,94,0,0,6567,6568,3,1250, + 625,0,6568,6732,1,0,0,0,6569,6570,5,138,0,0,6570,6571,5,175,0,0, + 6571,6572,3,1222,611,0,6572,6573,5,275,0,0,6573,6574,5,94,0,0,6574, + 6575,3,1250,625,0,6575,6732,1,0,0,0,6576,6577,5,138,0,0,6577,6578, + 5,189,0,0,6578,6579,3,478,239,0,6579,6580,5,275,0,0,6580,6581,5, + 94,0,0,6581,6582,3,1250,625,0,6582,6732,1,0,0,0,6583,6584,5,138, + 0,0,6584,6585,5,211,0,0,6585,6586,3,570,285,0,6586,6587,5,275,0, + 0,6587,6588,5,94,0,0,6588,6589,3,1250,625,0,6589,6732,1,0,0,0,6590, + 6591,5,138,0,0,6591,6592,3,282,141,0,6592,6593,5,238,0,0,6593,6594, + 3,1222,611,0,6594,6595,5,275,0,0,6595,6596,5,94,0,0,6596,6597,3, + 1250,625,0,6597,6732,1,0,0,0,6598,6599,5,138,0,0,6599,6600,5,239, + 0,0,6600,6601,5,267,0,0,6601,6602,3,270,135,0,6602,6603,5,275,0, + 0,6603,6604,5,94,0,0,6604,6605,3,1250,625,0,6605,6732,1,0,0,0,6606, + 6607,5,138,0,0,6607,6608,5,271,0,0,6608,6609,3,624,312,0,6609,6610, + 5,275,0,0,6610,6611,5,94,0,0,6611,6612,3,1250,625,0,6612,6732,1, + 0,0,0,6613,6614,5,138,0,0,6614,6615,5,271,0,0,6615,6616,5,156,0, + 0,6616,6617,3,478,239,0,6617,6618,5,100,0,0,6618,6619,3,1222,611, + 0,6619,6620,5,275,0,0,6620,6621,5,94,0,0,6621,6622,3,1250,625,0, + 6622,6732,1,0,0,0,6623,6624,5,138,0,0,6624,6625,5,271,0,0,6625,6626, + 5,206,0,0,6626,6627,3,478,239,0,6627,6628,5,100,0,0,6628,6629,3, + 1222,611,0,6629,6630,5,275,0,0,6630,6631,5,94,0,0,6631,6632,3,1250, + 625,0,6632,6732,1,0,0,0,6633,6634,5,138,0,0,6634,6635,5,289,0,0, + 6635,6636,3,570,285,0,6636,6637,5,275,0,0,6637,6638,5,94,0,0,6638, + 6639,3,1250,625,0,6639,6732,1,0,0,0,6640,6641,5,138,0,0,6641,6642, + 5,442,0,0,6642,6643,3,570,285,0,6643,6644,5,275,0,0,6644,6645,5, + 94,0,0,6645,6646,3,1250,625,0,6646,6732,1,0,0,0,6647,6648,5,138, + 0,0,6648,6649,5,316,0,0,6649,6650,3,1222,611,0,6650,6651,5,275,0, + 0,6651,6652,5,94,0,0,6652,6653,3,1250,625,0,6653,6732,1,0,0,0,6654, + 6655,5,138,0,0,6655,6656,5,353,0,0,6656,6657,3,478,239,0,6657,6658, + 5,275,0,0,6658,6659,5,94,0,0,6659,6660,3,1250,625,0,6660,6732,1, + 0,0,0,6661,6662,5,138,0,0,6662,6663,5,344,0,0,6663,6664,3,1222,611, + 0,6664,6665,5,275,0,0,6665,6666,5,94,0,0,6666,6667,3,1250,625,0, + 6667,6732,1,0,0,0,6668,6669,5,138,0,0,6669,6670,5,335,0,0,6670,6671, + 3,478,239,0,6671,6672,5,275,0,0,6672,6673,5,94,0,0,6673,6674,3,1250, + 625,0,6674,6732,1,0,0,0,6675,6676,5,138,0,0,6676,6677,5,348,0,0, + 6677,6678,5,318,0,0,6678,6679,5,185,0,0,6679,6680,3,478,239,0,6680, + 6681,5,275,0,0,6681,6682,5,94,0,0,6682,6683,3,1250,625,0,6683,6732, + 1,0,0,0,6684,6685,5,138,0,0,6685,6686,5,348,0,0,6686,6687,5,318, + 0,0,6687,6688,5,163,0,0,6688,6689,3,478,239,0,6689,6690,5,275,0, + 0,6690,6691,5,94,0,0,6691,6692,3,1250,625,0,6692,6732,1,0,0,0,6693, + 6694,5,138,0,0,6694,6695,5,63,0,0,6695,6696,5,174,0,0,6696,6697, + 5,374,0,0,6697,6698,3,1222,611,0,6698,6699,5,275,0,0,6699,6700,5, + 94,0,0,6700,6701,3,1250,625,0,6701,6732,1,0,0,0,6702,6703,5,138, + 0,0,6703,6704,5,324,0,0,6704,6705,3,1222,611,0,6705,6706,5,275,0, + 0,6706,6707,5,94,0,0,6707,6708,3,1250,625,0,6708,6732,1,0,0,0,6709, + 6710,5,138,0,0,6710,6711,5,198,0,0,6711,6712,5,350,0,0,6712,6713, + 3,1222,611,0,6713,6714,5,275,0,0,6714,6715,5,94,0,0,6715,6716,3, + 1250,625,0,6716,6732,1,0,0,0,6717,6718,5,138,0,0,6718,6719,5,452, + 0,0,6719,6720,3,1222,611,0,6720,6721,5,275,0,0,6721,6722,5,94,0, + 0,6722,6723,3,1250,625,0,6723,6732,1,0,0,0,6724,6725,5,138,0,0,6725, + 6726,5,451,0,0,6726,6727,3,1222,611,0,6727,6728,5,275,0,0,6728,6729, + 5,94,0,0,6729,6730,3,1250,625,0,6730,6732,1,0,0,0,6731,6548,1,0, + 0,0,6731,6555,1,0,0,0,6731,6562,1,0,0,0,6731,6569,1,0,0,0,6731,6576, + 1,0,0,0,6731,6583,1,0,0,0,6731,6590,1,0,0,0,6731,6598,1,0,0,0,6731, + 6606,1,0,0,0,6731,6613,1,0,0,0,6731,6623,1,0,0,0,6731,6633,1,0,0, + 0,6731,6640,1,0,0,0,6731,6647,1,0,0,0,6731,6654,1,0,0,0,6731,6661, + 1,0,0,0,6731,6668,1,0,0,0,6731,6675,1,0,0,0,6731,6684,1,0,0,0,6731, + 6693,1,0,0,0,6731,6702,1,0,0,0,6731,6709,1,0,0,0,6731,6717,1,0,0, + 0,6731,6724,1,0,0,0,6732,679,1,0,0,0,6733,6734,5,46,0,0,6734,6735, + 5,452,0,0,6735,6736,3,1222,611,0,6736,6737,3,682,341,0,6737,6738, + 3,604,302,0,6738,681,1,0,0,0,6739,6742,3,684,342,0,6740,6742,1,0, + 0,0,6741,6739,1,0,0,0,6741,6740,1,0,0,0,6742,683,1,0,0,0,6743,6744, + 5,62,0,0,6744,6745,5,92,0,0,6745,6750,3,968,484,0,6746,6747,5,62, + 0,0,6747,6748,5,30,0,0,6748,6750,5,343,0,0,6749,6743,1,0,0,0,6749, + 6746,1,0,0,0,6750,685,1,0,0,0,6751,6752,5,138,0,0,6752,6753,5,452, + 0,0,6753,6754,3,1222,611,0,6754,6755,5,326,0,0,6755,6756,3,424,212, + 0,6756,6779,1,0,0,0,6757,6758,5,138,0,0,6758,6759,5,452,0,0,6759, + 6760,3,1222,611,0,6760,6761,5,133,0,0,6761,6762,5,92,0,0,6762,6763, + 3,968,484,0,6763,6779,1,0,0,0,6764,6765,5,138,0,0,6765,6766,5,452, + 0,0,6766,6767,3,1222,611,0,6767,6768,5,326,0,0,6768,6769,5,92,0, + 0,6769,6770,3,968,484,0,6770,6779,1,0,0,0,6771,6772,5,138,0,0,6772, + 6773,5,452,0,0,6773,6774,3,1222,611,0,6774,6775,5,191,0,0,6775,6776, + 5,92,0,0,6776,6777,3,968,484,0,6777,6779,1,0,0,0,6778,6751,1,0,0, + 0,6778,6757,1,0,0,0,6778,6764,1,0,0,0,6778,6771,1,0,0,0,6779,687, + 1,0,0,0,6780,6781,5,46,0,0,6781,6782,5,451,0,0,6782,6783,3,1222, + 611,0,6783,6784,5,164,0,0,6784,6785,3,1240,620,0,6785,6786,5,452, + 0,0,6786,6787,3,690,345,0,6787,6788,3,604,302,0,6788,689,1,0,0,0, + 6789,6794,3,692,346,0,6790,6791,5,6,0,0,6791,6793,3,692,346,0,6792, + 6790,1,0,0,0,6793,6796,1,0,0,0,6794,6792,1,0,0,0,6794,6795,1,0,0, + 0,6795,691,1,0,0,0,6796,6794,1,0,0,0,6797,6798,3,1262,631,0,6798, + 693,1,0,0,0,6799,6800,5,138,0,0,6800,6801,5,451,0,0,6801,6802,3, + 1222,611,0,6802,6803,5,326,0,0,6803,6804,3,424,212,0,6804,6837,1, + 0,0,0,6805,6806,5,138,0,0,6806,6807,5,451,0,0,6807,6808,3,1222,611, + 0,6808,6809,5,164,0,0,6809,6810,3,1240,620,0,6810,6837,1,0,0,0,6811, + 6812,5,138,0,0,6812,6813,5,451,0,0,6813,6814,3,1222,611,0,6814,6815, + 5,298,0,0,6815,6816,5,452,0,0,6816,6817,3,604,302,0,6817,6837,1, + 0,0,0,6818,6819,5,138,0,0,6819,6820,5,451,0,0,6820,6821,3,1222,611, + 0,6821,6822,5,326,0,0,6822,6823,5,452,0,0,6823,6824,3,690,345,0, + 6824,6825,3,604,302,0,6825,6837,1,0,0,0,6826,6827,5,138,0,0,6827, + 6828,5,451,0,0,6828,6829,3,1222,611,0,6829,6830,5,193,0,0,6830,6837, + 1,0,0,0,6831,6832,5,138,0,0,6832,6833,5,451,0,0,6833,6834,3,1222, + 611,0,6834,6835,5,186,0,0,6835,6837,1,0,0,0,6836,6799,1,0,0,0,6836, + 6805,1,0,0,0,6836,6811,1,0,0,0,6836,6818,1,0,0,0,6836,6826,1,0,0, + 0,6836,6831,1,0,0,0,6837,695,1,0,0,0,6838,6839,5,191,0,0,6839,6840, + 5,451,0,0,6840,6841,3,1222,611,0,6841,6842,3,106,53,0,6842,6851, + 1,0,0,0,6843,6844,5,191,0,0,6844,6845,5,451,0,0,6845,6846,5,220, + 0,0,6846,6847,5,389,0,0,6847,6848,3,1222,611,0,6848,6849,3,106,53, + 0,6849,6851,1,0,0,0,6850,6838,1,0,0,0,6850,6843,1,0,0,0,6851,697, + 1,0,0,0,6852,6853,5,46,0,0,6853,6854,3,564,282,0,6854,6855,5,314, + 0,0,6855,6856,3,1222,611,0,6856,6857,5,36,0,0,6857,6858,5,80,0,0, + 6858,6859,3,708,354,0,6859,6860,5,94,0,0,6860,6861,3,1218,609,0, + 6861,6862,3,982,491,0,6862,6863,5,57,0,0,6863,6864,3,710,355,0,6864, + 6865,3,700,350,0,6865,699,1,0,0,0,6866,6873,5,263,0,0,6867,6873, + 3,704,352,0,6868,6869,5,2,0,0,6869,6870,3,702,351,0,6870,6871,5, + 3,0,0,6871,6873,1,0,0,0,6872,6866,1,0,0,0,6872,6867,1,0,0,0,6872, + 6868,1,0,0,0,6873,701,1,0,0,0,6874,6879,3,706,353,0,6875,6876,5, + 7,0,0,6876,6878,3,706,353,0,6877,6875,1,0,0,0,6878,6881,1,0,0,0, + 6879,6877,1,0,0,0,6879,6880,1,0,0,0,6880,703,1,0,0,0,6881,6879,1, + 0,0,0,6882,6888,3,868,434,0,6883,6888,3,814,407,0,6884,6888,3,854, + 427,0,6885,6888,3,840,420,0,6886,6888,3,712,356,0,6887,6882,1,0, + 0,0,6887,6883,1,0,0,0,6887,6884,1,0,0,0,6887,6885,1,0,0,0,6887,6886, + 1,0,0,0,6888,705,1,0,0,0,6889,6892,3,704,352,0,6890,6892,1,0,0,0, + 6891,6889,1,0,0,0,6891,6890,1,0,0,0,6892,707,1,0,0,0,6893,6894,7, + 31,0,0,6894,709,1,0,0,0,6895,6899,5,233,0,0,6896,6899,5,137,0,0, + 6897,6899,1,0,0,0,6898,6895,1,0,0,0,6898,6896,1,0,0,0,6898,6897, + 1,0,0,0,6899,711,1,0,0,0,6900,6901,5,264,0,0,6901,6902,3,1254,627, + 0,6902,6903,3,714,357,0,6903,713,1,0,0,0,6904,6905,5,6,0,0,6905, + 6908,3,1240,620,0,6906,6908,1,0,0,0,6907,6904,1,0,0,0,6907,6906, + 1,0,0,0,6908,715,1,0,0,0,6909,6910,5,243,0,0,6910,6911,3,1254,627, + 0,6911,717,1,0,0,0,6912,6913,5,359,0,0,6913,6917,3,1254,627,0,6914, + 6915,5,359,0,0,6915,6917,5,9,0,0,6916,6912,1,0,0,0,6916,6914,1,0, + 0,0,6917,719,1,0,0,0,6918,6919,5,129,0,0,6919,6920,3,722,361,0,6920, + 6921,3,728,364,0,6921,6972,1,0,0,0,6922,6923,5,146,0,0,6923,6925, + 3,722,361,0,6924,6926,3,726,363,0,6925,6924,1,0,0,0,6925,6926,1, + 0,0,0,6926,6972,1,0,0,0,6927,6928,5,333,0,0,6928,6930,5,349,0,0, + 6929,6931,3,726,363,0,6930,6929,1,0,0,0,6930,6931,1,0,0,0,6931,6972, + 1,0,0,0,6932,6933,5,161,0,0,6933,6934,3,722,361,0,6934,6935,3,728, + 364,0,6935,6972,1,0,0,0,6936,6937,5,454,0,0,6937,6938,3,722,361, + 0,6938,6939,3,728,364,0,6939,6972,1,0,0,0,6940,6941,5,312,0,0,6941, + 6942,3,722,361,0,6942,6943,3,728,364,0,6943,6972,1,0,0,0,6944,6945, + 5,315,0,0,6945,6972,3,1254,627,0,6946,6947,5,301,0,0,6947,6948,5, + 315,0,0,6948,6972,3,1254,627,0,6949,6950,5,301,0,0,6950,6972,3,1254, + 627,0,6951,6952,5,312,0,0,6952,6953,3,722,361,0,6953,6954,5,94,0, + 0,6954,6955,5,315,0,0,6955,6956,3,1254,627,0,6956,6972,1,0,0,0,6957, + 6958,5,312,0,0,6958,6959,3,722,361,0,6959,6960,5,94,0,0,6960,6961, + 3,1254,627,0,6961,6972,1,0,0,0,6962,6963,5,283,0,0,6963,6964,5,349, + 0,0,6964,6972,3,1240,620,0,6965,6966,5,161,0,0,6966,6967,5,284,0, + 0,6967,6972,3,1240,620,0,6968,6969,5,312,0,0,6969,6970,5,284,0,0, + 6970,6972,3,1240,620,0,6971,6918,1,0,0,0,6971,6922,1,0,0,0,6971, + 6927,1,0,0,0,6971,6932,1,0,0,0,6971,6936,1,0,0,0,6971,6940,1,0,0, + 0,6971,6944,1,0,0,0,6971,6946,1,0,0,0,6971,6949,1,0,0,0,6971,6951, + 1,0,0,0,6971,6957,1,0,0,0,6971,6962,1,0,0,0,6971,6965,1,0,0,0,6971, + 6968,1,0,0,0,6972,721,1,0,0,0,6973,6977,5,373,0,0,6974,6977,5,349, + 0,0,6975,6977,1,0,0,0,6976,6973,1,0,0,0,6976,6974,1,0,0,0,6976,6975, + 1,0,0,0,6977,723,1,0,0,0,6978,6979,5,235,0,0,6979,6980,5,242,0,0, + 6980,6989,3,62,31,0,6981,6982,5,293,0,0,6982,6989,5,81,0,0,6983, + 6984,5,293,0,0,6984,6989,5,375,0,0,6985,6989,5,54,0,0,6986,6987, + 5,77,0,0,6987,6989,5,54,0,0,6988,6978,1,0,0,0,6988,6981,1,0,0,0, + 6988,6983,1,0,0,0,6988,6985,1,0,0,0,6988,6986,1,0,0,0,6989,725,1, + 0,0,0,6990,6997,3,724,362,0,6991,6993,5,6,0,0,6992,6991,1,0,0,0, + 6992,6993,1,0,0,0,6993,6994,1,0,0,0,6994,6996,3,724,362,0,6995,6992, + 1,0,0,0,6996,6999,1,0,0,0,6997,6995,1,0,0,0,6997,6998,1,0,0,0,6998, + 727,1,0,0,0,6999,6997,1,0,0,0,7000,7002,5,33,0,0,7001,7003,5,262, + 0,0,7002,7001,1,0,0,0,7002,7003,1,0,0,0,7003,7004,1,0,0,0,7004,7007, + 5,153,0,0,7005,7007,1,0,0,0,7006,7000,1,0,0,0,7006,7005,1,0,0,0, + 7007,729,1,0,0,0,7008,7011,5,46,0,0,7009,7010,5,82,0,0,7010,7012, + 5,304,0,0,7011,7009,1,0,0,0,7011,7012,1,0,0,0,7012,7013,1,0,0,0, + 7013,7027,3,160,80,0,7014,7015,5,369,0,0,7015,7016,3,1218,609,0, + 7016,7017,3,198,99,0,7017,7018,3,116,58,0,7018,7028,1,0,0,0,7019, + 7020,5,296,0,0,7020,7021,5,369,0,0,7021,7022,3,1218,609,0,7022,7023, + 5,2,0,0,7023,7024,3,200,100,0,7024,7025,5,3,0,0,7025,7026,3,116, + 58,0,7026,7028,1,0,0,0,7027,7014,1,0,0,0,7027,7019,1,0,0,0,7028, + 7029,1,0,0,0,7029,7030,5,36,0,0,7030,7031,3,868,434,0,7031,7032, + 3,732,366,0,7032,731,1,0,0,0,7033,7035,5,105,0,0,7034,7036,7,32, + 0,0,7035,7034,1,0,0,0,7035,7036,1,0,0,0,7036,7037,1,0,0,0,7037,7038, + 5,42,0,0,7038,7041,5,272,0,0,7039,7041,1,0,0,0,7040,7033,1,0,0,0, + 7040,7039,1,0,0,0,7041,733,1,0,0,0,7042,7043,5,244,0,0,7043,7044, + 3,1226,613,0,7044,735,1,0,0,0,7045,7046,5,46,0,0,7046,7047,5,175, + 0,0,7047,7048,3,1222,611,0,7048,7049,3,14,7,0,7049,7050,3,738,369, + 0,7050,737,1,0,0,0,7051,7053,3,740,370,0,7052,7051,1,0,0,0,7053, + 7054,1,0,0,0,7054,7052,1,0,0,0,7054,7055,1,0,0,0,7055,7058,1,0,0, + 0,7056,7058,1,0,0,0,7057,7052,1,0,0,0,7057,7056,1,0,0,0,7058,739, + 1,0,0,0,7059,7061,3,742,371,0,7060,7062,5,10,0,0,7061,7060,1,0,0, + 0,7061,7062,1,0,0,0,7062,7066,1,0,0,0,7063,7067,3,1246,623,0,7064, + 7067,3,64,32,0,7065,7067,5,53,0,0,7066,7063,1,0,0,0,7066,7064,1, + 0,0,0,7066,7065,1,0,0,0,7067,741,1,0,0,0,7068,7077,3,1264,632,0, + 7069,7070,5,164,0,0,7070,7077,5,74,0,0,7071,7077,5,194,0,0,7072, + 7077,5,246,0,0,7073,7077,5,275,0,0,7074,7077,5,344,0,0,7075,7077, + 5,346,0,0,7076,7068,1,0,0,0,7076,7069,1,0,0,0,7076,7071,1,0,0,0, + 7076,7072,1,0,0,0,7076,7073,1,0,0,0,7076,7074,1,0,0,0,7076,7075, + 1,0,0,0,7077,743,1,0,0,0,7078,7079,5,138,0,0,7079,7080,5,175,0,0, + 7080,7087,3,1222,611,0,7081,7082,5,105,0,0,7082,7088,3,738,369,0, + 7083,7088,3,738,369,0,7084,7085,5,326,0,0,7085,7086,5,344,0,0,7086, + 7088,3,1222,611,0,7087,7081,1,0,0,0,7087,7083,1,0,0,0,7087,7084, + 1,0,0,0,7088,745,1,0,0,0,7089,7090,5,138,0,0,7090,7091,5,175,0,0, + 7091,7092,3,1222,611,0,7092,7093,3,78,39,0,7093,747,1,0,0,0,7094, + 7095,5,191,0,0,7095,7098,5,175,0,0,7096,7097,5,220,0,0,7097,7099, + 5,389,0,0,7098,7096,1,0,0,0,7098,7099,1,0,0,0,7099,7100,1,0,0,0, + 7100,7113,3,1222,611,0,7101,7102,3,14,7,0,7102,7103,5,2,0,0,7103, + 7108,5,209,0,0,7104,7105,5,6,0,0,7105,7107,5,209,0,0,7106,7104,1, + 0,0,0,7107,7110,1,0,0,0,7108,7106,1,0,0,0,7108,7109,1,0,0,0,7109, + 7111,1,0,0,0,7110,7108,1,0,0,0,7111,7112,5,3,0,0,7112,7114,1,0,0, + 0,7113,7101,1,0,0,0,7113,7114,1,0,0,0,7114,749,1,0,0,0,7115,7116, + 5,138,0,0,7116,7117,5,108,0,0,7117,7118,3,478,239,0,7118,7119,5, + 298,0,0,7119,7120,5,368,0,0,7120,751,1,0,0,0,7121,7122,5,138,0,0, + 7122,7123,5,342,0,0,7123,7124,7,33,0,0,7124,7125,3,52,26,0,7125, + 753,1,0,0,0,7126,7127,5,46,0,0,7127,7128,5,189,0,0,7128,7129,3,478, + 239,0,7129,7130,3,758,379,0,7130,7131,3,1004,502,0,7131,7132,3,178, + 89,0,7132,755,1,0,0,0,7133,7134,5,138,0,0,7134,7135,5,189,0,0,7135, + 7157,3,478,239,0,7136,7158,3,104,52,0,7137,7138,5,191,0,0,7138,7139, + 5,77,0,0,7139,7158,5,78,0,0,7140,7141,5,326,0,0,7141,7142,5,77,0, + 0,7142,7158,5,78,0,0,7143,7144,5,133,0,0,7144,7158,3,194,97,0,7145, + 7146,5,191,0,0,7146,7149,5,45,0,0,7147,7148,5,220,0,0,7148,7150, + 5,389,0,0,7149,7147,1,0,0,0,7149,7150,1,0,0,0,7150,7151,1,0,0,0, + 7151,7152,3,1222,611,0,7152,7153,3,106,53,0,7153,7158,1,0,0,0,7154, + 7155,5,365,0,0,7155,7156,5,45,0,0,7156,7158,3,1222,611,0,7157,7136, + 1,0,0,0,7157,7137,1,0,0,0,7157,7140,1,0,0,0,7157,7143,1,0,0,0,7157, + 7145,1,0,0,0,7157,7154,1,0,0,0,7158,757,1,0,0,0,7159,7162,5,36,0, + 0,7160,7162,1,0,0,0,7161,7159,1,0,0,0,7161,7160,1,0,0,0,7162,759, + 1,0,0,0,7163,7164,5,138,0,0,7164,7165,5,348,0,0,7165,7166,5,318, + 0,0,7166,7167,5,185,0,0,7167,7168,3,478,239,0,7168,7169,3,424,212, + 0,7169,761,1,0,0,0,7170,7171,5,138,0,0,7171,7172,5,348,0,0,7172, + 7173,5,318,0,0,7173,7174,5,163,0,0,7174,7175,3,478,239,0,7175,7176, + 5,133,0,0,7176,7177,5,248,0,0,7177,7178,5,62,0,0,7178,7179,3,1220, + 610,0,7179,7180,5,105,0,0,7180,7181,3,476,238,0,7181,7243,1,0,0, + 0,7182,7183,5,138,0,0,7183,7184,5,348,0,0,7184,7185,5,318,0,0,7185, + 7186,5,163,0,0,7186,7187,3,478,239,0,7187,7188,5,138,0,0,7188,7189, + 5,248,0,0,7189,7190,5,62,0,0,7190,7191,3,1220,610,0,7191,7192,5, + 105,0,0,7192,7193,3,476,238,0,7193,7243,1,0,0,0,7194,7195,5,138, + 0,0,7195,7196,5,348,0,0,7196,7197,5,318,0,0,7197,7198,5,163,0,0, + 7198,7199,3,478,239,0,7199,7200,5,138,0,0,7200,7201,5,248,0,0,7201, + 7202,5,304,0,0,7202,7203,3,478,239,0,7203,7204,5,105,0,0,7204,7205, + 3,478,239,0,7205,7243,1,0,0,0,7206,7207,5,138,0,0,7207,7208,5,348, + 0,0,7208,7209,5,318,0,0,7209,7210,5,163,0,0,7210,7211,3,478,239, + 0,7211,7212,5,138,0,0,7212,7213,5,248,0,0,7213,7214,5,62,0,0,7214, + 7215,3,1220,610,0,7215,7216,5,304,0,0,7216,7217,3,478,239,0,7217, + 7218,5,105,0,0,7218,7219,3,478,239,0,7219,7243,1,0,0,0,7220,7221, + 5,138,0,0,7221,7222,5,348,0,0,7222,7223,5,318,0,0,7223,7224,5,163, + 0,0,7224,7225,3,478,239,0,7225,7226,5,191,0,0,7226,7227,5,248,0, + 0,7227,7228,5,62,0,0,7228,7229,3,1220,610,0,7229,7243,1,0,0,0,7230, + 7231,5,138,0,0,7231,7232,5,348,0,0,7232,7233,5,318,0,0,7233,7234, + 5,163,0,0,7234,7235,3,478,239,0,7235,7236,5,191,0,0,7236,7237,5, + 248,0,0,7237,7238,5,220,0,0,7238,7239,5,389,0,0,7239,7240,5,62,0, + 0,7240,7241,3,1220,610,0,7241,7243,1,0,0,0,7242,7170,1,0,0,0,7242, + 7182,1,0,0,0,7242,7194,1,0,0,0,7242,7206,1,0,0,0,7242,7220,1,0,0, + 0,7242,7230,1,0,0,0,7243,763,1,0,0,0,7244,7246,5,46,0,0,7245,7247, + 5,53,0,0,7246,7245,1,0,0,0,7246,7247,1,0,0,0,7247,7248,1,0,0,0,7248, + 7249,5,168,0,0,7249,7250,3,478,239,0,7250,7251,5,62,0,0,7251,7252, + 3,1240,620,0,7252,7253,5,94,0,0,7253,7254,3,1240,620,0,7254,7255, + 5,64,0,0,7255,7256,3,478,239,0,7256,765,1,0,0,0,7257,7258,5,158, + 0,0,7258,7259,3,784,392,0,7259,7260,3,1218,609,0,7260,7261,3,768, + 384,0,7261,7271,1,0,0,0,7262,7263,5,158,0,0,7263,7271,3,784,392, + 0,7264,7265,5,158,0,0,7265,7266,3,784,392,0,7266,7267,3,1222,611, + 0,7267,7268,5,80,0,0,7268,7269,3,1218,609,0,7269,7271,1,0,0,0,7270, + 7257,1,0,0,0,7270,7262,1,0,0,0,7270,7264,1,0,0,0,7271,767,1,0,0, + 0,7272,7273,5,100,0,0,7273,7276,3,1222,611,0,7274,7276,1,0,0,0,7275, + 7272,1,0,0,0,7275,7274,1,0,0,0,7276,769,1,0,0,0,7277,7279,5,363, + 0,0,7278,7280,5,113,0,0,7279,7278,1,0,0,0,7279,7280,1,0,0,0,7280, + 7282,1,0,0,0,7281,7283,5,112,0,0,7282,7281,1,0,0,0,7282,7283,1,0, + 0,0,7283,7284,1,0,0,0,7284,7286,3,784,392,0,7285,7287,3,776,388, + 0,7286,7285,1,0,0,0,7286,7287,1,0,0,0,7287,7288,1,0,0,0,7288,7289, + 3,790,395,0,7289,7297,1,0,0,0,7290,7291,5,363,0,0,7291,7292,5,2, + 0,0,7292,7293,3,774,387,0,7293,7294,5,3,0,0,7294,7295,3,790,395, + 0,7295,7297,1,0,0,0,7296,7277,1,0,0,0,7296,7290,1,0,0,0,7297,771, + 1,0,0,0,7298,7299,3,776,388,0,7299,7300,3,784,392,0,7300,7301,3, + 790,395,0,7301,7309,1,0,0,0,7302,7303,3,776,388,0,7303,7304,5,2, + 0,0,7304,7305,3,774,387,0,7305,7306,5,3,0,0,7306,7307,3,790,395, + 0,7307,7309,1,0,0,0,7308,7298,1,0,0,0,7308,7302,1,0,0,0,7309,773, + 1,0,0,0,7310,7315,3,778,389,0,7311,7312,5,6,0,0,7312,7314,3,778, + 389,0,7313,7311,1,0,0,0,7314,7317,1,0,0,0,7315,7313,1,0,0,0,7315, + 7316,1,0,0,0,7316,775,1,0,0,0,7317,7315,1,0,0,0,7318,7319,7,34,0, + 0,7319,777,1,0,0,0,7320,7321,3,780,390,0,7321,7322,3,782,391,0,7322, + 779,1,0,0,0,7323,7326,3,1260,630,0,7324,7326,3,776,388,0,7325,7323, + 1,0,0,0,7325,7324,1,0,0,0,7326,781,1,0,0,0,7327,7331,3,64,32,0,7328, + 7331,3,270,135,0,7329,7331,1,0,0,0,7330,7327,1,0,0,0,7330,7328,1, + 0,0,0,7330,7329,1,0,0,0,7331,783,1,0,0,0,7332,7335,5,128,0,0,7333, + 7335,1,0,0,0,7334,7332,1,0,0,0,7334,7333,1,0,0,0,7335,785,1,0,0, + 0,7336,7337,5,2,0,0,7337,7338,3,1220,610,0,7338,7339,5,3,0,0,7339, + 7342,1,0,0,0,7340,7342,1,0,0,0,7341,7336,1,0,0,0,7341,7340,1,0,0, + 0,7342,787,1,0,0,0,7343,7344,3,1218,609,0,7344,7345,3,786,393,0, + 7345,789,1,0,0,0,7346,7351,3,788,394,0,7347,7348,5,6,0,0,7348,7350, + 3,788,394,0,7349,7347,1,0,0,0,7350,7353,1,0,0,0,7351,7349,1,0,0, + 0,7351,7352,1,0,0,0,7352,7356,1,0,0,0,7353,7351,1,0,0,0,7354,7356, + 1,0,0,0,7355,7346,1,0,0,0,7355,7354,1,0,0,0,7356,791,1,0,0,0,7357, + 7358,5,203,0,0,7358,7381,3,794,397,0,7359,7360,5,203,0,0,7360,7361, + 3,776,388,0,7361,7362,3,784,392,0,7362,7363,3,794,397,0,7363,7381, + 1,0,0,0,7364,7365,5,203,0,0,7365,7366,5,128,0,0,7366,7381,3,794, + 397,0,7367,7368,5,203,0,0,7368,7369,5,2,0,0,7369,7374,3,796,398, + 0,7370,7371,5,6,0,0,7371,7373,3,796,398,0,7372,7370,1,0,0,0,7373, + 7376,1,0,0,0,7374,7372,1,0,0,0,7374,7375,1,0,0,0,7375,7377,1,0,0, + 0,7376,7374,1,0,0,0,7377,7378,5,3,0,0,7378,7379,3,794,397,0,7379, + 7381,1,0,0,0,7380,7357,1,0,0,0,7380,7359,1,0,0,0,7380,7364,1,0,0, + 0,7380,7367,1,0,0,0,7381,793,1,0,0,0,7382,7392,3,868,434,0,7383, + 7392,3,814,407,0,7384,7392,3,854,427,0,7385,7392,3,840,420,0,7386, + 7392,3,862,431,0,7387,7392,3,248,124,0,7388,7392,3,254,127,0,7389, + 7392,3,258,129,0,7390,7392,3,808,404,0,7391,7382,1,0,0,0,7391,7383, + 1,0,0,0,7391,7384,1,0,0,0,7391,7385,1,0,0,0,7391,7386,1,0,0,0,7391, + 7387,1,0,0,0,7391,7388,1,0,0,0,7391,7389,1,0,0,0,7391,7390,1,0,0, + 0,7392,795,1,0,0,0,7393,7394,3,798,399,0,7394,7395,3,800,400,0,7395, + 797,1,0,0,0,7396,7399,3,1260,630,0,7397,7399,3,776,388,0,7398,7396, + 1,0,0,0,7398,7397,1,0,0,0,7399,799,1,0,0,0,7400,7404,3,64,32,0,7401, + 7404,3,270,135,0,7402,7404,1,0,0,0,7403,7400,1,0,0,0,7403,7401,1, + 0,0,0,7403,7402,1,0,0,0,7404,801,1,0,0,0,7405,7406,5,283,0,0,7406, + 7407,3,1222,611,0,7407,7408,3,804,402,0,7408,7409,5,36,0,0,7409, + 7410,3,806,403,0,7410,803,1,0,0,0,7411,7412,5,2,0,0,7412,7413,3, + 1170,585,0,7413,7414,5,3,0,0,7414,7417,1,0,0,0,7415,7417,1,0,0,0, + 7416,7411,1,0,0,0,7416,7415,1,0,0,0,7417,805,1,0,0,0,7418,7423,3, + 868,434,0,7419,7423,3,814,407,0,7420,7423,3,854,427,0,7421,7423, + 3,840,420,0,7422,7418,1,0,0,0,7422,7419,1,0,0,0,7422,7420,1,0,0, + 0,7422,7421,1,0,0,0,7423,807,1,0,0,0,7424,7425,5,202,0,0,7425,7426, + 3,1222,611,0,7426,7427,3,810,405,0,7427,7452,1,0,0,0,7428,7429,5, + 46,0,0,7429,7430,3,160,80,0,7430,7431,5,92,0,0,7431,7432,3,250,125, + 0,7432,7433,5,36,0,0,7433,7434,5,202,0,0,7434,7435,3,1222,611,0, + 7435,7436,3,810,405,0,7436,7437,3,252,126,0,7437,7452,1,0,0,0,7438, + 7439,5,46,0,0,7439,7440,3,160,80,0,7440,7441,5,92,0,0,7441,7442, + 5,220,0,0,7442,7443,5,77,0,0,7443,7444,5,389,0,0,7444,7445,3,250, + 125,0,7445,7446,5,36,0,0,7446,7447,5,202,0,0,7447,7448,3,1222,611, + 0,7448,7449,3,810,405,0,7449,7450,3,252,126,0,7450,7452,1,0,0,0, + 7451,7424,1,0,0,0,7451,7428,1,0,0,0,7451,7438,1,0,0,0,7452,809,1, + 0,0,0,7453,7454,5,2,0,0,7454,7455,3,1164,582,0,7455,7456,5,3,0,0, + 7456,7459,1,0,0,0,7457,7459,1,0,0,0,7458,7453,1,0,0,0,7458,7457, + 1,0,0,0,7459,811,1,0,0,0,7460,7461,5,177,0,0,7461,7471,3,1222,611, + 0,7462,7463,5,177,0,0,7463,7464,5,283,0,0,7464,7471,3,1222,611,0, + 7465,7466,5,177,0,0,7466,7471,5,30,0,0,7467,7468,5,177,0,0,7468, + 7469,5,283,0,0,7469,7471,5,30,0,0,7470,7460,1,0,0,0,7470,7462,1, + 0,0,0,7470,7465,1,0,0,0,7470,7467,1,0,0,0,7471,813,1,0,0,0,7472, + 7474,3,882,441,0,7473,7472,1,0,0,0,7473,7474,1,0,0,0,7474,7475,1, + 0,0,0,7475,7476,5,232,0,0,7476,7477,5,71,0,0,7477,7478,3,816,408, + 0,7478,7479,3,818,409,0,7479,7480,3,826,413,0,7480,7481,3,830,415, + 0,7481,815,1,0,0,0,7482,7485,3,1218,609,0,7483,7484,5,36,0,0,7484, + 7486,3,1254,627,0,7485,7483,1,0,0,0,7485,7486,1,0,0,0,7486,817,1, + 0,0,0,7487,7507,3,868,434,0,7488,7489,5,463,0,0,7489,7490,3,820, + 410,0,7490,7491,5,450,0,0,7491,7492,3,868,434,0,7492,7507,1,0,0, + 0,7493,7494,5,2,0,0,7494,7495,3,822,411,0,7495,7500,5,3,0,0,7496, + 7497,5,463,0,0,7497,7498,3,820,410,0,7498,7499,5,450,0,0,7499,7501, + 1,0,0,0,7500,7496,1,0,0,0,7500,7501,1,0,0,0,7501,7502,1,0,0,0,7502, + 7503,3,868,434,0,7503,7507,1,0,0,0,7504,7505,5,53,0,0,7505,7507, + 5,415,0,0,7506,7487,1,0,0,0,7506,7488,1,0,0,0,7506,7493,1,0,0,0, + 7506,7504,1,0,0,0,7507,819,1,0,0,0,7508,7509,7,35,0,0,7509,821,1, + 0,0,0,7510,7515,3,824,412,0,7511,7512,5,6,0,0,7512,7514,3,824,412, + 0,7513,7511,1,0,0,0,7514,7517,1,0,0,0,7515,7513,1,0,0,0,7515,7516, + 1,0,0,0,7516,823,1,0,0,0,7517,7515,1,0,0,0,7518,7519,3,1254,627, + 0,7519,7520,3,1208,604,0,7520,825,1,0,0,0,7521,7522,5,80,0,0,7522, + 7523,5,464,0,0,7523,7524,3,828,414,0,7524,7531,5,57,0,0,7525,7526, + 5,362,0,0,7526,7527,5,326,0,0,7527,7528,3,856,428,0,7528,7529,3, + 982,491,0,7529,7532,1,0,0,0,7530,7532,5,263,0,0,7531,7525,1,0,0, + 0,7531,7530,1,0,0,0,7532,7535,1,0,0,0,7533,7535,1,0,0,0,7534,7521, + 1,0,0,0,7534,7533,1,0,0,0,7535,827,1,0,0,0,7536,7537,5,2,0,0,7537, + 7538,3,546,273,0,7538,7539,5,3,0,0,7539,7540,3,982,491,0,7540,7546, + 1,0,0,0,7541,7542,5,80,0,0,7542,7543,5,45,0,0,7543,7546,3,1222,611, + 0,7544,7546,1,0,0,0,7545,7536,1,0,0,0,7545,7541,1,0,0,0,7545,7544, + 1,0,0,0,7546,829,1,0,0,0,7547,7548,5,87,0,0,7548,7551,3,1212,606, + 0,7549,7551,1,0,0,0,7550,7547,1,0,0,0,7550,7549,1,0,0,0,7551,831, + 1,0,0,0,7552,7554,5,253,0,0,7553,7555,5,71,0,0,7554,7553,1,0,0,0, + 7554,7555,1,0,0,0,7555,7556,1,0,0,0,7556,7558,3,1218,609,0,7557, + 7559,3,954,477,0,7558,7557,1,0,0,0,7558,7559,1,0,0,0,7559,7560,1, + 0,0,0,7560,7563,5,100,0,0,7561,7564,3,870,435,0,7562,7564,3,1218, + 609,0,7563,7561,1,0,0,0,7563,7562,1,0,0,0,7564,7566,1,0,0,0,7565, + 7567,3,954,477,0,7566,7565,1,0,0,0,7566,7567,1,0,0,0,7567,7568,1, + 0,0,0,7568,7569,5,80,0,0,7569,7578,3,1046,523,0,7570,7572,3,834, + 417,0,7571,7573,3,836,418,0,7572,7571,1,0,0,0,7572,7573,1,0,0,0, + 7573,7579,1,0,0,0,7574,7576,3,836,418,0,7575,7577,3,834,417,0,7576, + 7575,1,0,0,0,7576,7577,1,0,0,0,7577,7579,1,0,0,0,7578,7570,1,0,0, + 0,7578,7574,1,0,0,0,7579,7581,1,0,0,0,7580,7582,3,838,419,0,7581, + 7580,1,0,0,0,7581,7582,1,0,0,0,7582,833,1,0,0,0,7583,7584,5,102, + 0,0,7584,7585,5,77,0,0,7585,7588,5,250,0,0,7586,7587,5,33,0,0,7587, + 7589,3,1046,523,0,7588,7586,1,0,0,0,7588,7589,1,0,0,0,7589,7591, + 1,0,0,0,7590,7592,5,93,0,0,7591,7590,1,0,0,0,7591,7592,1,0,0,0,7592, + 7593,1,0,0,0,7593,7598,5,232,0,0,7594,7595,5,2,0,0,7595,7596,3,822, + 411,0,7596,7597,5,3,0,0,7597,7599,1,0,0,0,7598,7594,1,0,0,0,7598, + 7599,1,0,0,0,7599,7600,1,0,0,0,7600,7601,3,944,472,0,7601,835,1, + 0,0,0,7602,7603,5,102,0,0,7603,7606,5,250,0,0,7604,7605,5,33,0,0, + 7605,7607,3,1046,523,0,7606,7604,1,0,0,0,7606,7607,1,0,0,0,7607, + 7609,1,0,0,0,7608,7610,5,93,0,0,7609,7608,1,0,0,0,7609,7610,1,0, + 0,0,7610,7611,1,0,0,0,7611,7612,5,362,0,0,7612,7613,5,326,0,0,7613, + 7614,3,856,428,0,7614,837,1,0,0,0,7615,7616,5,102,0,0,7616,7618, + 5,250,0,0,7617,7619,5,93,0,0,7618,7617,1,0,0,0,7618,7619,1,0,0,0, + 7619,7620,1,0,0,0,7620,7621,5,182,0,0,7621,839,1,0,0,0,7622,7624, + 3,882,441,0,7623,7622,1,0,0,0,7623,7624,1,0,0,0,7624,7625,1,0,0, + 0,7625,7626,5,182,0,0,7626,7627,5,64,0,0,7627,7628,3,970,485,0,7628, + 7629,3,842,421,0,7629,7630,3,984,492,0,7630,7631,3,830,415,0,7631, + 841,1,0,0,0,7632,7633,5,100,0,0,7633,7636,3,948,474,0,7634,7636, + 1,0,0,0,7635,7632,1,0,0,0,7635,7634,1,0,0,0,7636,843,1,0,0,0,7637, + 7638,5,247,0,0,7638,7639,3,892,446,0,7639,7640,3,968,484,0,7640, + 7641,3,846,423,0,7641,7642,3,850,425,0,7642,845,1,0,0,0,7643,7644, + 5,68,0,0,7644,7645,3,848,424,0,7645,7646,5,256,0,0,7646,7649,1,0, + 0,0,7647,7649,1,0,0,0,7648,7643,1,0,0,0,7648,7647,1,0,0,0,7649,847, + 1,0,0,0,7650,7651,5,131,0,0,7651,7663,7,36,0,0,7652,7653,5,407,0, + 0,7653,7663,7,36,0,0,7654,7659,5,327,0,0,7655,7656,5,362,0,0,7656, + 7660,5,201,0,0,7657,7658,5,407,0,0,7658,7660,5,201,0,0,7659,7655, + 1,0,0,0,7659,7657,1,0,0,0,7659,7660,1,0,0,0,7660,7663,1,0,0,0,7661, + 7663,5,201,0,0,7662,7650,1,0,0,0,7662,7652,1,0,0,0,7662,7654,1,0, + 0,0,7662,7661,1,0,0,0,7663,849,1,0,0,0,7664,7667,5,265,0,0,7665, + 7667,1,0,0,0,7666,7664,1,0,0,0,7666,7665,1,0,0,0,7667,851,1,0,0, + 0,7668,7673,5,265,0,0,7669,7670,5,465,0,0,7670,7673,5,466,0,0,7671, + 7673,1,0,0,0,7672,7668,1,0,0,0,7672,7669,1,0,0,0,7672,7671,1,0,0, + 0,7673,853,1,0,0,0,7674,7676,3,882,441,0,7675,7674,1,0,0,0,7675, + 7676,1,0,0,0,7676,7677,1,0,0,0,7677,7678,5,362,0,0,7678,7679,3,970, + 485,0,7679,7680,5,326,0,0,7680,7681,3,856,428,0,7681,7682,3,946, + 473,0,7682,7683,3,984,492,0,7683,7684,3,830,415,0,7684,855,1,0,0, + 0,7685,7690,3,858,429,0,7686,7687,5,6,0,0,7687,7689,3,858,429,0, + 7688,7686,1,0,0,0,7689,7692,1,0,0,0,7690,7688,1,0,0,0,7690,7691, + 1,0,0,0,7691,857,1,0,0,0,7692,7690,1,0,0,0,7693,7694,3,860,430,0, + 7694,7695,5,10,0,0,7695,7696,3,1046,523,0,7696,7711,1,0,0,0,7697, + 7698,5,2,0,0,7698,7703,3,860,430,0,7699,7700,5,6,0,0,7700,7702,3, + 860,430,0,7701,7699,1,0,0,0,7702,7705,1,0,0,0,7703,7701,1,0,0,0, + 7703,7704,1,0,0,0,7704,7706,1,0,0,0,7705,7703,1,0,0,0,7706,7707, + 5,3,0,0,7707,7708,5,10,0,0,7708,7709,3,1046,523,0,7709,7711,1,0, + 0,0,7710,7693,1,0,0,0,7710,7697,1,0,0,0,7711,859,1,0,0,0,7712,7713, + 3,1254,627,0,7713,7714,3,1208,604,0,7714,861,1,0,0,0,7715,7716,5, + 178,0,0,7716,7724,3,864,432,0,7717,7718,5,262,0,0,7718,7723,5,317, + 0,0,7719,7723,5,317,0,0,7720,7723,5,107,0,0,7721,7723,5,231,0,0, + 7722,7717,1,0,0,0,7722,7719,1,0,0,0,7722,7720,1,0,0,0,7722,7721, + 1,0,0,0,7723,7726,1,0,0,0,7724,7722,1,0,0,0,7724,7725,1,0,0,0,7725, + 7727,1,0,0,0,7726,7724,1,0,0,0,7727,7728,5,172,0,0,7728,7729,3,866, + 433,0,7729,7730,5,62,0,0,7730,7731,3,868,434,0,7731,863,1,0,0,0, + 7732,7733,3,1222,611,0,7733,865,1,0,0,0,7734,7740,1,0,0,0,7735,7736, + 5,105,0,0,7736,7740,5,217,0,0,7737,7738,5,372,0,0,7738,7740,5,217, + 0,0,7739,7734,1,0,0,0,7739,7735,1,0,0,0,7739,7737,1,0,0,0,7740,867, + 1,0,0,0,7741,7744,3,872,436,0,7742,7744,3,870,435,0,7743,7741,1, + 0,0,0,7743,7742,1,0,0,0,7744,869,1,0,0,0,7745,7746,5,2,0,0,7746, + 7747,3,872,436,0,7747,7748,5,3,0,0,7748,7754,1,0,0,0,7749,7750,5, + 2,0,0,7750,7751,3,870,435,0,7751,7752,5,3,0,0,7752,7754,1,0,0,0, + 7753,7745,1,0,0,0,7753,7749,1,0,0,0,7754,871,1,0,0,0,7755,7756,3, + 874,437,0,7756,7764,3,900,450,0,7757,7758,3,936,468,0,7758,7759, + 3,910,455,0,7759,7765,1,0,0,0,7760,7762,3,908,454,0,7761,7763,3, + 936,468,0,7762,7761,1,0,0,0,7762,7763,1,0,0,0,7763,7765,1,0,0,0, + 7764,7757,1,0,0,0,7764,7760,1,0,0,0,7764,7765,1,0,0,0,7765,7779, + 1,0,0,0,7766,7767,3,882,441,0,7767,7768,3,874,437,0,7768,7776,3, + 900,450,0,7769,7770,3,936,468,0,7770,7771,3,910,455,0,7771,7777, + 1,0,0,0,7772,7774,3,908,454,0,7773,7775,3,936,468,0,7774,7773,1, + 0,0,0,7774,7775,1,0,0,0,7775,7777,1,0,0,0,7776,7769,1,0,0,0,7776, + 7772,1,0,0,0,7776,7777,1,0,0,0,7777,7779,1,0,0,0,7778,7755,1,0,0, + 0,7778,7766,1,0,0,0,7779,873,1,0,0,0,7780,7787,3,876,438,0,7781, + 7782,7,37,0,0,7782,7783,3,894,447,0,7783,7784,3,876,438,0,7784,7786, + 1,0,0,0,7785,7781,1,0,0,0,7786,7789,1,0,0,0,7787,7785,1,0,0,0,7787, + 7788,1,0,0,0,7788,875,1,0,0,0,7789,7787,1,0,0,0,7790,7797,3,880, + 440,0,7791,7792,5,70,0,0,7792,7793,3,894,447,0,7793,7794,3,880,440, + 0,7794,7796,1,0,0,0,7795,7791,1,0,0,0,7796,7799,1,0,0,0,7797,7795, + 1,0,0,0,7797,7798,1,0,0,0,7798,877,1,0,0,0,7799,7797,1,0,0,0,7800, + 7802,3,1212,606,0,7801,7803,3,888,444,0,7802,7801,1,0,0,0,7802,7803, + 1,0,0,0,7803,7816,1,0,0,0,7804,7805,3,898,449,0,7805,7807,3,1210, + 605,0,7806,7808,3,888,444,0,7807,7806,1,0,0,0,7807,7808,1,0,0,0, + 7808,7816,1,0,0,0,7809,7810,3,896,448,0,7810,7812,3,1212,606,0,7811, + 7813,3,888,444,0,7812,7811,1,0,0,0,7812,7813,1,0,0,0,7813,7816,1, + 0,0,0,7814,7816,3,888,444,0,7815,7800,1,0,0,0,7815,7804,1,0,0,0, + 7815,7809,1,0,0,0,7815,7814,1,0,0,0,7816,879,1,0,0,0,7817,7818,5, + 88,0,0,7818,7819,3,878,439,0,7819,7820,3,946,473,0,7820,7821,3,982, + 491,0,7821,7822,3,928,464,0,7822,7823,3,934,467,0,7823,7824,3,1124, + 562,0,7824,7830,1,0,0,0,7825,7830,3,944,472,0,7826,7827,5,92,0,0, + 7827,7830,3,966,483,0,7828,7830,3,870,435,0,7829,7817,1,0,0,0,7829, + 7825,1,0,0,0,7829,7826,1,0,0,0,7829,7828,1,0,0,0,7830,881,1,0,0, + 0,7831,7833,5,105,0,0,7832,7834,5,296,0,0,7833,7832,1,0,0,0,7833, + 7834,1,0,0,0,7834,7835,1,0,0,0,7835,7840,3,884,442,0,7836,7837,5, + 6,0,0,7837,7839,3,884,442,0,7838,7836,1,0,0,0,7839,7842,1,0,0,0, + 7840,7838,1,0,0,0,7840,7841,1,0,0,0,7841,883,1,0,0,0,7842,7840,1, + 0,0,0,7843,7844,3,1222,611,0,7844,7845,3,786,393,0,7845,7846,5,36, + 0,0,7846,7847,3,886,443,0,7847,7848,5,2,0,0,7848,7849,3,806,403, + 0,7849,7850,5,3,0,0,7850,885,1,0,0,0,7851,7856,5,251,0,0,7852,7853, + 5,77,0,0,7853,7856,5,251,0,0,7854,7856,1,0,0,0,7855,7851,1,0,0,0, + 7855,7852,1,0,0,0,7855,7854,1,0,0,0,7856,887,1,0,0,0,7857,7863,5, + 71,0,0,7858,7860,5,339,0,0,7859,7858,1,0,0,0,7859,7860,1,0,0,0,7860, + 7861,1,0,0,0,7861,7864,3,890,445,0,7862,7864,3,1438,719,0,7863,7859, + 1,0,0,0,7863,7862,1,0,0,0,7864,889,1,0,0,0,7865,7867,7,38,0,0,7866, + 7865,1,0,0,0,7866,7867,1,0,0,0,7867,7868,1,0,0,0,7868,7869,7,11, + 0,0,7869,7870,3,892,446,0,7870,7871,3,1218,609,0,7871,7880,1,0,0, + 0,7872,7873,5,360,0,0,7873,7874,3,892,446,0,7874,7875,3,1218,609, + 0,7875,7880,1,0,0,0,7876,7877,5,92,0,0,7877,7880,3,1218,609,0,7878, + 7880,3,1218,609,0,7879,7866,1,0,0,0,7879,7872,1,0,0,0,7879,7876, + 1,0,0,0,7879,7878,1,0,0,0,7880,891,1,0,0,0,7881,7884,5,92,0,0,7882, + 7884,1,0,0,0,7883,7881,1,0,0,0,7883,7882,1,0,0,0,7884,893,1,0,0, + 0,7885,7889,5,30,0,0,7886,7889,5,56,0,0,7887,7889,1,0,0,0,7888,7885, + 1,0,0,0,7888,7886,1,0,0,0,7888,7887,1,0,0,0,7889,895,1,0,0,0,7890, + 7896,5,56,0,0,7891,7892,5,80,0,0,7892,7893,5,2,0,0,7893,7894,3,1164, + 582,0,7894,7895,5,3,0,0,7895,7897,1,0,0,0,7896,7891,1,0,0,0,7896, + 7897,1,0,0,0,7897,897,1,0,0,0,7898,7899,5,30,0,0,7899,899,1,0,0, + 0,7900,7903,3,902,451,0,7901,7903,1,0,0,0,7902,7900,1,0,0,0,7902, + 7901,1,0,0,0,7903,901,1,0,0,0,7904,7905,5,83,0,0,7905,7906,5,147, + 0,0,7906,7907,3,904,452,0,7907,903,1,0,0,0,7908,7913,3,906,453,0, + 7909,7910,5,6,0,0,7910,7912,3,906,453,0,7911,7909,1,0,0,0,7912,7915, + 1,0,0,0,7913,7911,1,0,0,0,7913,7914,1,0,0,0,7914,905,1,0,0,0,7915, + 7913,1,0,0,0,7916,7920,3,1046,523,0,7917,7918,5,100,0,0,7918,7921, + 3,1160,580,0,7919,7921,3,558,279,0,7920,7917,1,0,0,0,7920,7919,1, + 0,0,0,7921,7922,1,0,0,0,7922,7923,3,560,280,0,7923,907,1,0,0,0,7924, + 7926,3,912,456,0,7925,7927,3,914,457,0,7926,7925,1,0,0,0,7926,7927, + 1,0,0,0,7927,7933,1,0,0,0,7928,7930,3,914,457,0,7929,7931,3,912, + 456,0,7930,7929,1,0,0,0,7930,7931,1,0,0,0,7931,7933,1,0,0,0,7932, + 7924,1,0,0,0,7932,7928,1,0,0,0,7933,909,1,0,0,0,7934,7937,3,908, + 454,0,7935,7937,1,0,0,0,7936,7934,1,0,0,0,7936,7935,1,0,0,0,7937, + 911,1,0,0,0,7938,7939,5,74,0,0,7939,7942,3,916,458,0,7940,7941,5, + 6,0,0,7941,7943,3,918,459,0,7942,7940,1,0,0,0,7942,7943,1,0,0,0, + 7943,7962,1,0,0,0,7944,7945,5,61,0,0,7945,7959,3,926,463,0,7946, + 7947,3,920,460,0,7947,7951,3,924,462,0,7948,7952,5,81,0,0,7949,7950, + 5,105,0,0,7950,7952,5,467,0,0,7951,7948,1,0,0,0,7951,7949,1,0,0, + 0,7952,7960,1,0,0,0,7953,7957,3,924,462,0,7954,7958,5,81,0,0,7955, + 7956,5,105,0,0,7956,7958,5,467,0,0,7957,7954,1,0,0,0,7957,7955,1, + 0,0,0,7958,7960,1,0,0,0,7959,7946,1,0,0,0,7959,7953,1,0,0,0,7960, + 7962,1,0,0,0,7961,7938,1,0,0,0,7961,7944,1,0,0,0,7962,913,1,0,0, + 0,7963,7968,5,79,0,0,7964,7969,3,918,459,0,7965,7966,3,920,460,0, + 7966,7967,3,924,462,0,7967,7969,1,0,0,0,7968,7964,1,0,0,0,7968,7965, + 1,0,0,0,7969,915,1,0,0,0,7970,7973,3,1046,523,0,7971,7973,5,30,0, + 0,7972,7970,1,0,0,0,7972,7971,1,0,0,0,7973,917,1,0,0,0,7974,7975, + 3,1046,523,0,7975,919,1,0,0,0,7976,7982,3,1090,545,0,7977,7978,5, + 12,0,0,7978,7982,3,922,461,0,7979,7980,5,13,0,0,7980,7982,3,922, + 461,0,7981,7976,1,0,0,0,7981,7977,1,0,0,0,7981,7979,1,0,0,0,7982, + 921,1,0,0,0,7983,7986,3,1238,619,0,7984,7986,3,1236,618,0,7985,7983, + 1,0,0,0,7985,7984,1,0,0,0,7986,923,1,0,0,0,7987,7988,7,39,0,0,7988, + 925,1,0,0,0,7989,7990,7,40,0,0,7990,927,1,0,0,0,7991,7992,5,66,0, + 0,7992,7993,5,147,0,0,7993,7996,3,930,465,0,7994,7996,1,0,0,0,7995, + 7991,1,0,0,0,7995,7994,1,0,0,0,7996,929,1,0,0,0,7997,8002,3,932, + 466,0,7998,7999,5,6,0,0,7999,8001,3,932,466,0,8000,7998,1,0,0,0, + 8001,8004,1,0,0,0,8002,8000,1,0,0,0,8002,8003,1,0,0,0,8003,931,1, + 0,0,0,8004,8002,1,0,0,0,8005,8025,3,1046,523,0,8006,8007,5,2,0,0, + 8007,8025,5,3,0,0,8008,8009,5,469,0,0,8009,8010,5,2,0,0,8010,8011, + 3,1164,582,0,8011,8012,5,3,0,0,8012,8025,1,0,0,0,8013,8014,5,468, + 0,0,8014,8015,5,2,0,0,8015,8016,3,1164,582,0,8016,8017,5,3,0,0,8017, + 8025,1,0,0,0,8018,8019,5,470,0,0,8019,8020,5,471,0,0,8020,8021,5, + 2,0,0,8021,8022,3,930,465,0,8022,8023,5,3,0,0,8023,8025,1,0,0,0, + 8024,8005,1,0,0,0,8024,8006,1,0,0,0,8024,8008,1,0,0,0,8024,8013, + 1,0,0,0,8024,8018,1,0,0,0,8025,933,1,0,0,0,8026,8027,5,67,0,0,8027, + 8030,3,1046,523,0,8028,8030,1,0,0,0,8029,8026,1,0,0,0,8029,8028, + 1,0,0,0,8030,935,1,0,0,0,8031,8033,3,938,469,0,8032,8031,1,0,0,0, + 8033,8034,1,0,0,0,8034,8032,1,0,0,0,8034,8035,1,0,0,0,8035,8040, + 1,0,0,0,8036,8037,5,62,0,0,8037,8038,5,293,0,0,8038,8040,5,81,0, + 0,8039,8032,1,0,0,0,8039,8036,1,0,0,0,8040,937,1,0,0,0,8041,8042, + 3,940,470,0,8042,8043,3,942,471,0,8043,8044,3,852,426,0,8044,939, + 1,0,0,0,8045,8055,5,62,0,0,8046,8047,5,262,0,0,8047,8049,5,236,0, + 0,8048,8046,1,0,0,0,8048,8049,1,0,0,0,8049,8050,1,0,0,0,8050,8056, + 5,362,0,0,8051,8053,5,236,0,0,8052,8051,1,0,0,0,8052,8053,1,0,0, + 0,8053,8054,1,0,0,0,8054,8056,5,327,0,0,8055,8048,1,0,0,0,8055,8052, + 1,0,0,0,8056,941,1,0,0,0,8057,8058,5,268,0,0,8058,8061,3,1216,608, + 0,8059,8061,1,0,0,0,8060,8057,1,0,0,0,8060,8059,1,0,0,0,8061,943, + 1,0,0,0,8062,8063,5,415,0,0,8063,8064,5,2,0,0,8064,8065,3,1164,582, + 0,8065,8073,5,3,0,0,8066,8067,5,6,0,0,8067,8068,5,2,0,0,8068,8069, + 3,1164,582,0,8069,8070,5,3,0,0,8070,8072,1,0,0,0,8071,8066,1,0,0, + 0,8072,8075,1,0,0,0,8073,8071,1,0,0,0,8073,8074,1,0,0,0,8074,945, + 1,0,0,0,8075,8073,1,0,0,0,8076,8077,5,64,0,0,8077,8080,3,948,474, + 0,8078,8080,1,0,0,0,8079,8076,1,0,0,0,8079,8078,1,0,0,0,8080,947, + 1,0,0,0,8081,8091,3,950,475,0,8082,8087,3,952,476,0,8083,8084,5, + 6,0,0,8084,8086,3,952,476,0,8085,8083,1,0,0,0,8086,8089,1,0,0,0, + 8087,8085,1,0,0,0,8087,8088,1,0,0,0,8088,8091,1,0,0,0,8089,8087, + 1,0,0,0,8090,8081,1,0,0,0,8090,8082,1,0,0,0,8091,949,1,0,0,0,8092, + 8095,3,952,476,0,8093,8094,5,6,0,0,8094,8096,3,952,476,0,8095,8093, + 1,0,0,0,8096,8097,1,0,0,0,8097,8095,1,0,0,0,8097,8098,1,0,0,0,8098, + 951,1,0,0,0,8099,8100,3,966,483,0,8100,8102,3,956,478,0,8101,8103, + 3,972,486,0,8102,8101,1,0,0,0,8102,8103,1,0,0,0,8103,8149,1,0,0, + 0,8104,8105,3,974,487,0,8105,8106,3,960,480,0,8106,8149,1,0,0,0, + 8107,8108,3,992,496,0,8108,8109,3,956,478,0,8109,8149,1,0,0,0,8110, + 8111,3,870,435,0,8111,8112,3,956,478,0,8112,8149,1,0,0,0,8113,8123, + 5,72,0,0,8114,8115,3,992,496,0,8115,8116,3,956,478,0,8116,8124,1, + 0,0,0,8117,8118,3,974,487,0,8118,8119,3,960,480,0,8119,8124,1,0, + 0,0,8120,8121,3,870,435,0,8121,8122,3,956,478,0,8122,8124,1,0,0, + 0,8123,8114,1,0,0,0,8123,8117,1,0,0,0,8123,8120,1,0,0,0,8124,8149, + 1,0,0,0,8125,8126,5,2,0,0,8126,8143,3,952,476,0,8127,8128,5,110, + 0,0,8128,8129,5,118,0,0,8129,8144,3,952,476,0,8130,8132,5,121,0, + 0,8131,8133,3,962,481,0,8132,8131,1,0,0,0,8132,8133,1,0,0,0,8133, + 8134,1,0,0,0,8134,8135,5,118,0,0,8135,8144,3,952,476,0,8136,8138, + 3,962,481,0,8137,8136,1,0,0,0,8137,8138,1,0,0,0,8138,8139,1,0,0, + 0,8139,8140,5,118,0,0,8140,8141,3,952,476,0,8141,8142,3,964,482, + 0,8142,8144,1,0,0,0,8143,8127,1,0,0,0,8143,8130,1,0,0,0,8143,8137, + 1,0,0,0,8143,8144,1,0,0,0,8144,8145,1,0,0,0,8145,8146,5,3,0,0,8146, + 8147,3,956,478,0,8147,8149,1,0,0,0,8148,8099,1,0,0,0,8148,8104,1, + 0,0,0,8148,8107,1,0,0,0,8148,8110,1,0,0,0,8148,8113,1,0,0,0,8148, + 8125,1,0,0,0,8149,8168,1,0,0,0,8150,8151,5,110,0,0,8151,8152,5,118, + 0,0,8152,8167,3,952,476,0,8153,8155,5,121,0,0,8154,8156,3,962,481, + 0,8155,8154,1,0,0,0,8155,8156,1,0,0,0,8156,8157,1,0,0,0,8157,8158, + 5,118,0,0,8158,8167,3,952,476,0,8159,8161,3,962,481,0,8160,8159, + 1,0,0,0,8160,8161,1,0,0,0,8161,8162,1,0,0,0,8162,8163,5,118,0,0, + 8163,8164,3,952,476,0,8164,8165,3,964,482,0,8165,8167,1,0,0,0,8166, + 8150,1,0,0,0,8166,8153,1,0,0,0,8166,8160,1,0,0,0,8167,8170,1,0,0, + 0,8168,8166,1,0,0,0,8168,8169,1,0,0,0,8169,953,1,0,0,0,8170,8168, + 1,0,0,0,8171,8173,5,36,0,0,8172,8171,1,0,0,0,8172,8173,1,0,0,0,8173, + 8174,1,0,0,0,8174,8179,3,1254,627,0,8175,8176,5,2,0,0,8176,8177, + 3,1220,610,0,8177,8178,5,3,0,0,8178,8180,1,0,0,0,8179,8175,1,0,0, + 0,8179,8180,1,0,0,0,8180,955,1,0,0,0,8181,8184,3,958,479,0,8182, + 8184,1,0,0,0,8183,8181,1,0,0,0,8183,8182,1,0,0,0,8184,957,1,0,0, + 0,8185,8187,5,36,0,0,8186,8185,1,0,0,0,8186,8187,1,0,0,0,8187,8188, + 1,0,0,0,8188,8193,3,1256,628,0,8189,8190,5,2,0,0,8190,8191,3,1220, + 610,0,8191,8192,5,3,0,0,8192,8194,1,0,0,0,8193,8189,1,0,0,0,8193, + 8194,1,0,0,0,8194,959,1,0,0,0,8195,8209,3,954,477,0,8196,8198,5, + 36,0,0,8197,8199,3,1254,627,0,8198,8197,1,0,0,0,8198,8199,1,0,0, + 0,8199,8202,1,0,0,0,8200,8202,3,1254,627,0,8201,8196,1,0,0,0,8201, + 8200,1,0,0,0,8202,8203,1,0,0,0,8203,8204,5,2,0,0,8204,8205,3,988, + 494,0,8205,8206,5,3,0,0,8206,8209,1,0,0,0,8207,8209,1,0,0,0,8208, + 8195,1,0,0,0,8208,8201,1,0,0,0,8208,8207,1,0,0,0,8209,961,1,0,0, + 0,8210,8212,7,41,0,0,8211,8213,5,123,0,0,8212,8211,1,0,0,0,8212, + 8213,1,0,0,0,8213,963,1,0,0,0,8214,8215,5,100,0,0,8215,8216,5,2, + 0,0,8216,8217,3,1220,610,0,8217,8218,5,3,0,0,8218,8222,1,0,0,0,8219, + 8220,5,80,0,0,8220,8222,3,1046,523,0,8221,8214,1,0,0,0,8221,8219, + 1,0,0,0,8222,965,1,0,0,0,8223,8225,3,1218,609,0,8224,8226,5,9,0, + 0,8225,8224,1,0,0,0,8225,8226,1,0,0,0,8226,8236,1,0,0,0,8227,8233, + 5,81,0,0,8228,8234,3,1218,609,0,8229,8230,5,2,0,0,8230,8231,3,1218, + 609,0,8231,8232,5,3,0,0,8232,8234,1,0,0,0,8233,8228,1,0,0,0,8233, + 8229,1,0,0,0,8234,8236,1,0,0,0,8235,8223,1,0,0,0,8235,8227,1,0,0, + 0,8236,967,1,0,0,0,8237,8242,3,966,483,0,8238,8239,5,6,0,0,8239, + 8241,3,966,483,0,8240,8238,1,0,0,0,8241,8244,1,0,0,0,8242,8240,1, + 0,0,0,8242,8243,1,0,0,0,8243,969,1,0,0,0,8244,8242,1,0,0,0,8245, + 8250,3,966,483,0,8246,8248,5,36,0,0,8247,8246,1,0,0,0,8247,8248, + 1,0,0,0,8248,8249,1,0,0,0,8249,8251,3,1254,627,0,8250,8247,1,0,0, + 0,8250,8251,1,0,0,0,8251,971,1,0,0,0,8252,8253,5,472,0,0,8253,8254, + 3,1228,614,0,8254,8255,5,2,0,0,8255,8256,3,1164,582,0,8256,8257, + 5,3,0,0,8257,8258,5,303,0,0,8258,8259,5,2,0,0,8259,8260,3,1046,523, + 0,8260,8261,5,3,0,0,8261,973,1,0,0,0,8262,8263,3,1098,549,0,8263, + 8264,3,980,490,0,8264,8280,1,0,0,0,8265,8266,5,313,0,0,8266,8267, + 5,64,0,0,8267,8268,5,2,0,0,8268,8273,3,976,488,0,8269,8270,5,6,0, + 0,8270,8272,3,976,488,0,8271,8269,1,0,0,0,8272,8275,1,0,0,0,8273, + 8271,1,0,0,0,8273,8274,1,0,0,0,8274,8276,1,0,0,0,8275,8273,1,0,0, + 0,8276,8277,5,3,0,0,8277,8278,3,980,490,0,8278,8280,1,0,0,0,8279, + 8262,1,0,0,0,8279,8265,1,0,0,0,8280,975,1,0,0,0,8281,8282,3,1098, + 549,0,8282,8283,3,978,489,0,8283,977,1,0,0,0,8284,8285,5,36,0,0, + 8285,8286,5,2,0,0,8286,8287,3,988,494,0,8287,8288,5,3,0,0,8288,8291, + 1,0,0,0,8289,8291,1,0,0,0,8290,8284,1,0,0,0,8290,8289,1,0,0,0,8291, + 979,1,0,0,0,8292,8293,5,105,0,0,8293,8296,5,473,0,0,8294,8296,1, + 0,0,0,8295,8292,1,0,0,0,8295,8294,1,0,0,0,8296,981,1,0,0,0,8297, + 8298,5,103,0,0,8298,8301,3,1046,523,0,8299,8301,1,0,0,0,8300,8297, + 1,0,0,0,8300,8299,1,0,0,0,8301,983,1,0,0,0,8302,8307,5,103,0,0,8303, + 8304,5,434,0,0,8304,8305,5,268,0,0,8305,8308,3,864,432,0,8306,8308, + 3,1046,523,0,8307,8303,1,0,0,0,8307,8306,1,0,0,0,8308,8311,1,0,0, + 0,8309,8311,1,0,0,0,8310,8302,1,0,0,0,8310,8309,1,0,0,0,8311,985, + 1,0,0,0,8312,8315,3,988,494,0,8313,8315,1,0,0,0,8314,8312,1,0,0, + 0,8314,8313,1,0,0,0,8315,987,1,0,0,0,8316,8321,3,990,495,0,8317, + 8318,5,6,0,0,8318,8320,3,990,495,0,8319,8317,1,0,0,0,8320,8323,1, + 0,0,0,8321,8319,1,0,0,0,8321,8322,1,0,0,0,8322,989,1,0,0,0,8323, + 8321,1,0,0,0,8324,8325,3,1254,627,0,8325,8326,3,1004,502,0,8326, + 8327,3,108,54,0,8327,991,1,0,0,0,8328,8329,5,474,0,0,8329,8357,5, + 2,0,0,8330,8331,3,1090,545,0,8331,8332,3,1116,558,0,8332,8333,5, + 475,0,0,8333,8338,3,994,497,0,8334,8335,5,6,0,0,8335,8337,3,994, + 497,0,8336,8334,1,0,0,0,8337,8340,1,0,0,0,8338,8336,1,0,0,0,8338, + 8339,1,0,0,0,8339,8358,1,0,0,0,8340,8338,1,0,0,0,8341,8342,5,476, + 0,0,8342,8343,5,2,0,0,8343,8344,3,1000,500,0,8344,8345,5,3,0,0,8345, + 8346,5,6,0,0,8346,8347,3,1090,545,0,8347,8348,3,1116,558,0,8348, + 8349,5,475,0,0,8349,8354,3,994,497,0,8350,8351,5,6,0,0,8351,8353, + 3,994,497,0,8352,8350,1,0,0,0,8353,8356,1,0,0,0,8354,8352,1,0,0, + 0,8354,8355,1,0,0,0,8355,8358,1,0,0,0,8356,8354,1,0,0,0,8357,8330, + 1,0,0,0,8357,8341,1,0,0,0,8358,8359,1,0,0,0,8359,8360,5,3,0,0,8360, + 993,1,0,0,0,8361,8368,3,1254,627,0,8362,8364,3,1004,502,0,8363,8365, + 3,996,498,0,8364,8363,1,0,0,0,8364,8365,1,0,0,0,8365,8369,1,0,0, + 0,8366,8367,5,62,0,0,8367,8369,5,473,0,0,8368,8362,1,0,0,0,8368, + 8366,1,0,0,0,8369,995,1,0,0,0,8370,8372,3,998,499,0,8371,8370,1, + 0,0,0,8372,8373,1,0,0,0,8373,8371,1,0,0,0,8373,8374,1,0,0,0,8374, + 997,1,0,0,0,8375,8376,5,53,0,0,8376,8384,3,1046,523,0,8377,8378, + 3,1264,632,0,8378,8379,3,1046,523,0,8379,8384,1,0,0,0,8380,8381, + 5,77,0,0,8381,8384,5,78,0,0,8382,8384,5,78,0,0,8383,8375,1,0,0,0, + 8383,8377,1,0,0,0,8383,8380,1,0,0,0,8383,8382,1,0,0,0,8384,999,1, + 0,0,0,8385,8390,3,1002,501,0,8386,8387,5,6,0,0,8387,8389,3,1002, + 501,0,8388,8386,1,0,0,0,8389,8392,1,0,0,0,8390,8388,1,0,0,0,8390, + 8391,1,0,0,0,8391,1001,1,0,0,0,8392,8390,1,0,0,0,8393,8394,3,1088, + 544,0,8394,8395,5,36,0,0,8395,8396,3,1262,631,0,8396,8400,1,0,0, + 0,8397,8398,5,53,0,0,8398,8400,3,1088,544,0,8399,8393,1,0,0,0,8399, + 8397,1,0,0,0,8400,1003,1,0,0,0,8401,8403,5,408,0,0,8402,8401,1,0, + 0,0,8402,8403,1,0,0,0,8403,8404,1,0,0,0,8404,8422,3,1006,503,0,8405, + 8407,5,4,0,0,8406,8408,3,1238,619,0,8407,8406,1,0,0,0,8407,8408, + 1,0,0,0,8408,8409,1,0,0,0,8409,8411,5,5,0,0,8410,8405,1,0,0,0,8411, + 8414,1,0,0,0,8412,8410,1,0,0,0,8412,8413,1,0,0,0,8413,8423,1,0,0, + 0,8414,8412,1,0,0,0,8415,8420,5,35,0,0,8416,8417,5,4,0,0,8417,8418, + 3,1238,619,0,8418,8419,5,5,0,0,8419,8421,1,0,0,0,8420,8416,1,0,0, + 0,8420,8421,1,0,0,0,8421,8423,1,0,0,0,8422,8412,1,0,0,0,8422,8415, + 1,0,0,0,8423,8429,1,0,0,0,8424,8425,3,1218,609,0,8425,8426,5,27, + 0,0,8426,8427,7,42,0,0,8427,8429,1,0,0,0,8428,8402,1,0,0,0,8428, + 8424,1,0,0,0,8429,1005,1,0,0,0,8430,8444,3,1010,505,0,8431,8444, + 3,1014,507,0,8432,8444,3,1018,509,0,8433,8444,3,1026,513,0,8434, + 8444,3,1034,517,0,8435,8441,3,1036,518,0,8436,8442,3,1040,520,0, + 8437,8438,5,2,0,0,8438,8439,3,1238,619,0,8439,8440,5,3,0,0,8440, + 8442,1,0,0,0,8441,8436,1,0,0,0,8441,8437,1,0,0,0,8442,8444,1,0,0, + 0,8443,8430,1,0,0,0,8443,8431,1,0,0,0,8443,8432,1,0,0,0,8443,8433, + 1,0,0,0,8443,8434,1,0,0,0,8443,8435,1,0,0,0,8444,1007,1,0,0,0,8445, + 8450,3,1014,507,0,8446,8450,3,1020,510,0,8447,8450,3,1028,514,0, + 8448,8450,3,1034,517,0,8449,8445,1,0,0,0,8449,8446,1,0,0,0,8449, + 8447,1,0,0,0,8449,8448,1,0,0,0,8450,1009,1,0,0,0,8451,8456,3,1276, + 638,0,8452,8456,3,1258,629,0,8453,8456,5,119,0,0,8454,8456,5,126, + 0,0,8455,8451,1,0,0,0,8455,8452,1,0,0,0,8455,8453,1,0,0,0,8455,8454, + 1,0,0,0,8456,8458,1,0,0,0,8457,8459,3,480,240,0,8458,8457,1,0,0, + 0,8458,8459,1,0,0,0,8459,8460,1,0,0,0,8460,8461,3,1012,506,0,8461, + 1011,1,0,0,0,8462,8463,5,2,0,0,8463,8464,3,1164,582,0,8464,8465, + 5,3,0,0,8465,8468,1,0,0,0,8466,8468,1,0,0,0,8467,8462,1,0,0,0,8467, + 8466,1,0,0,0,8468,1013,1,0,0,0,8469,8486,5,394,0,0,8470,8486,5,395, + 0,0,8471,8486,5,409,0,0,8472,8486,5,381,0,0,8473,8486,5,406,0,0, + 8474,8475,5,391,0,0,8475,8486,3,1016,508,0,8476,8477,5,190,0,0,8477, + 8486,5,405,0,0,8478,8479,5,388,0,0,8479,8486,3,1012,506,0,8480,8481, + 5,387,0,0,8481,8486,3,1012,506,0,8482,8483,5,402,0,0,8483,8486,3, + 1012,506,0,8484,8486,5,383,0,0,8485,8469,1,0,0,0,8485,8470,1,0,0, + 0,8485,8471,1,0,0,0,8485,8472,1,0,0,0,8485,8473,1,0,0,0,8485,8474, + 1,0,0,0,8485,8476,1,0,0,0,8485,8478,1,0,0,0,8485,8480,1,0,0,0,8485, + 8482,1,0,0,0,8485,8484,1,0,0,0,8486,1015,1,0,0,0,8487,8488,5,2,0, + 0,8488,8489,3,1238,619,0,8489,8490,5,3,0,0,8490,8493,1,0,0,0,8491, + 8493,1,0,0,0,8492,8487,1,0,0,0,8492,8491,1,0,0,0,8493,1017,1,0,0, + 0,8494,8497,3,1022,511,0,8495,8497,3,1024,512,0,8496,8494,1,0,0, + 0,8496,8495,1,0,0,0,8497,1019,1,0,0,0,8498,8501,3,1022,511,0,8499, + 8501,3,1024,512,0,8500,8498,1,0,0,0,8500,8499,1,0,0,0,8501,1021, + 1,0,0,0,8502,8503,5,382,0,0,8503,8504,3,1032,516,0,8504,8505,5,2, + 0,0,8505,8506,3,1164,582,0,8506,8507,5,3,0,0,8507,1023,1,0,0,0,8508, + 8509,5,382,0,0,8509,8510,3,1032,516,0,8510,1025,1,0,0,0,8511,8516, + 3,1030,515,0,8512,8513,5,2,0,0,8513,8514,3,1238,619,0,8514,8515, + 5,3,0,0,8515,8517,1,0,0,0,8516,8512,1,0,0,0,8516,8517,1,0,0,0,8517, + 1027,1,0,0,0,8518,8523,3,1030,515,0,8519,8520,5,2,0,0,8520,8521, + 3,1238,619,0,8521,8522,5,3,0,0,8522,8524,1,0,0,0,8523,8519,1,0,0, + 0,8523,8524,1,0,0,0,8524,1029,1,0,0,0,8525,8526,7,43,0,0,8526,8532, + 3,1032,516,0,8527,8532,5,416,0,0,8528,8529,5,398,0,0,8529,8530,7, + 44,0,0,8530,8532,3,1032,516,0,8531,8525,1,0,0,0,8531,8527,1,0,0, + 0,8531,8528,1,0,0,0,8532,1031,1,0,0,0,8533,8536,5,367,0,0,8534,8536, + 1,0,0,0,8535,8533,1,0,0,0,8535,8534,1,0,0,0,8536,1033,1,0,0,0,8537, + 8542,7,45,0,0,8538,8539,5,2,0,0,8539,8540,3,1238,619,0,8540,8541, + 5,3,0,0,8541,8543,1,0,0,0,8542,8538,1,0,0,0,8542,8543,1,0,0,0,8543, + 8544,1,0,0,0,8544,8545,3,1038,519,0,8545,1035,1,0,0,0,8546,8547, + 5,396,0,0,8547,1037,1,0,0,0,8548,8549,5,105,0,0,8549,8550,5,411, + 0,0,8550,8556,5,379,0,0,8551,8552,5,372,0,0,8552,8553,5,411,0,0, + 8553,8556,5,379,0,0,8554,8556,1,0,0,0,8555,8548,1,0,0,0,8555,8551, + 1,0,0,0,8555,8554,1,0,0,0,8556,1039,1,0,0,0,8557,8584,5,377,0,0, + 8558,8584,5,257,0,0,8559,8584,5,176,0,0,8560,8584,5,218,0,0,8561, + 8584,5,254,0,0,8562,8584,3,1042,521,0,8563,8564,5,377,0,0,8564,8565, + 5,94,0,0,8565,8584,5,257,0,0,8566,8567,5,176,0,0,8567,8571,5,94, + 0,0,8568,8572,5,218,0,0,8569,8572,5,254,0,0,8570,8572,3,1042,521, + 0,8571,8568,1,0,0,0,8571,8569,1,0,0,0,8571,8570,1,0,0,0,8572,8584, + 1,0,0,0,8573,8574,5,218,0,0,8574,8577,5,94,0,0,8575,8578,5,254,0, + 0,8576,8578,3,1042,521,0,8577,8575,1,0,0,0,8577,8576,1,0,0,0,8578, + 8584,1,0,0,0,8579,8580,5,254,0,0,8580,8581,5,94,0,0,8581,8584,3, + 1042,521,0,8582,8584,1,0,0,0,8583,8557,1,0,0,0,8583,8558,1,0,0,0, + 8583,8559,1,0,0,0,8583,8560,1,0,0,0,8583,8561,1,0,0,0,8583,8562, + 1,0,0,0,8583,8563,1,0,0,0,8583,8566,1,0,0,0,8583,8573,1,0,0,0,8583, + 8579,1,0,0,0,8583,8582,1,0,0,0,8584,1041,1,0,0,0,8585,8590,5,319, + 0,0,8586,8587,5,2,0,0,8587,8588,3,1238,619,0,8588,8589,5,3,0,0,8589, + 8591,1,0,0,0,8590,8586,1,0,0,0,8590,8591,1,0,0,0,8591,1043,1,0,0, + 0,8592,8593,5,197,0,0,8593,8596,3,1046,523,0,8594,8596,1,0,0,0,8595, + 8592,1,0,0,0,8595,8594,1,0,0,0,8596,1045,1,0,0,0,8597,8598,3,1048, + 524,0,8598,1047,1,0,0,0,8599,8601,3,1050,525,0,8600,8602,3,1158, + 579,0,8601,8600,1,0,0,0,8601,8602,1,0,0,0,8602,1049,1,0,0,0,8603, + 8608,3,1052,526,0,8604,8605,7,46,0,0,8605,8607,3,1052,526,0,8606, + 8604,1,0,0,0,8607,8610,1,0,0,0,8608,8606,1,0,0,0,8608,8609,1,0,0, + 0,8609,1051,1,0,0,0,8610,8608,1,0,0,0,8611,8616,3,1054,527,0,8612, + 8613,5,82,0,0,8613,8615,3,1054,527,0,8614,8612,1,0,0,0,8615,8618, + 1,0,0,0,8616,8614,1,0,0,0,8616,8617,1,0,0,0,8617,1053,1,0,0,0,8618, + 8616,1,0,0,0,8619,8624,3,1056,528,0,8620,8621,5,33,0,0,8621,8623, + 3,1056,528,0,8622,8620,1,0,0,0,8623,8626,1,0,0,0,8624,8622,1,0,0, + 0,8624,8625,1,0,0,0,8625,1055,1,0,0,0,8626,8624,1,0,0,0,8627,8639, + 3,1058,529,0,8628,8630,5,77,0,0,8629,8628,1,0,0,0,8629,8630,1,0, + 0,0,8630,8631,1,0,0,0,8631,8633,5,380,0,0,8632,8634,5,91,0,0,8633, + 8632,1,0,0,0,8633,8634,1,0,0,0,8634,8635,1,0,0,0,8635,8636,3,1058, + 529,0,8636,8637,5,33,0,0,8637,8638,3,1058,529,0,8638,8640,1,0,0, + 0,8639,8629,1,0,0,0,8639,8640,1,0,0,0,8640,1057,1,0,0,0,8641,8647, + 3,1060,530,0,8642,8644,5,77,0,0,8643,8642,1,0,0,0,8643,8644,1,0, + 0,0,8644,8645,1,0,0,0,8645,8646,5,68,0,0,8646,8648,3,1190,595,0, + 8647,8643,1,0,0,0,8647,8648,1,0,0,0,8648,1059,1,0,0,0,8649,8651, + 5,77,0,0,8650,8649,1,0,0,0,8650,8651,1,0,0,0,8651,8652,1,0,0,0,8652, + 8653,3,1062,531,0,8653,1061,1,0,0,0,8654,8656,3,1064,532,0,8655, + 8657,7,47,0,0,8656,8655,1,0,0,0,8656,8657,1,0,0,0,8657,1063,1,0, + 0,0,8658,8682,3,1066,533,0,8659,8661,5,116,0,0,8660,8662,5,77,0, + 0,8661,8660,1,0,0,0,8661,8662,1,0,0,0,8662,8680,1,0,0,0,8663,8681, + 5,78,0,0,8664,8681,5,96,0,0,8665,8681,5,60,0,0,8666,8681,5,358,0, + 0,8667,8668,5,56,0,0,8668,8669,5,64,0,0,8669,8681,3,1046,523,0,8670, + 8671,5,268,0,0,8671,8672,5,2,0,0,8672,8673,3,1170,585,0,8673,8674, + 5,3,0,0,8674,8681,1,0,0,0,8675,8681,5,188,0,0,8676,8678,3,1180,590, + 0,8677,8676,1,0,0,0,8677,8678,1,0,0,0,8678,8679,1,0,0,0,8679,8681, + 5,478,0,0,8680,8663,1,0,0,0,8680,8664,1,0,0,0,8680,8665,1,0,0,0, + 8680,8666,1,0,0,0,8680,8667,1,0,0,0,8680,8670,1,0,0,0,8680,8675, + 1,0,0,0,8680,8677,1,0,0,0,8681,8683,1,0,0,0,8682,8659,1,0,0,0,8682, + 8683,1,0,0,0,8683,1065,1,0,0,0,8684,8696,3,1068,534,0,8685,8686, + 7,48,0,0,8686,8697,3,1068,534,0,8687,8688,3,1162,581,0,8688,8694, + 3,1152,576,0,8689,8695,3,870,435,0,8690,8691,5,2,0,0,8691,8692,3, + 1046,523,0,8692,8693,5,3,0,0,8693,8695,1,0,0,0,8694,8689,1,0,0,0, + 8694,8690,1,0,0,0,8695,8697,1,0,0,0,8696,8685,1,0,0,0,8696,8687, + 1,0,0,0,8696,8697,1,0,0,0,8697,1067,1,0,0,0,8698,8711,3,1070,535, + 0,8699,8701,5,77,0,0,8700,8699,1,0,0,0,8700,8701,1,0,0,0,8701,8706, + 1,0,0,0,8702,8707,5,120,0,0,8703,8707,5,114,0,0,8704,8705,5,127, + 0,0,8705,8707,5,94,0,0,8706,8702,1,0,0,0,8706,8703,1,0,0,0,8706, + 8704,1,0,0,0,8707,8708,1,0,0,0,8708,8709,3,1070,535,0,8709,8710, + 3,1044,522,0,8710,8712,1,0,0,0,8711,8700,1,0,0,0,8711,8712,1,0,0, + 0,8712,1069,1,0,0,0,8713,8719,3,1072,536,0,8714,8715,3,1158,579, + 0,8715,8716,3,1072,536,0,8716,8718,1,0,0,0,8717,8714,1,0,0,0,8718, + 8721,1,0,0,0,8719,8717,1,0,0,0,8719,8720,1,0,0,0,8720,1071,1,0,0, + 0,8721,8719,1,0,0,0,8722,8724,3,1158,579,0,8723,8722,1,0,0,0,8723, + 8724,1,0,0,0,8724,8725,1,0,0,0,8725,8726,3,1074,537,0,8726,1073, + 1,0,0,0,8727,8732,3,1076,538,0,8728,8729,7,49,0,0,8729,8731,3,1076, + 538,0,8730,8728,1,0,0,0,8731,8734,1,0,0,0,8732,8730,1,0,0,0,8732, + 8733,1,0,0,0,8733,1075,1,0,0,0,8734,8732,1,0,0,0,8735,8740,3,1078, + 539,0,8736,8737,7,50,0,0,8737,8739,3,1078,539,0,8738,8736,1,0,0, + 0,8739,8742,1,0,0,0,8740,8738,1,0,0,0,8740,8741,1,0,0,0,8741,1077, + 1,0,0,0,8742,8740,1,0,0,0,8743,8746,3,1080,540,0,8744,8745,5,15, + 0,0,8745,8747,3,1046,523,0,8746,8744,1,0,0,0,8746,8747,1,0,0,0,8747, + 1079,1,0,0,0,8748,8750,7,49,0,0,8749,8748,1,0,0,0,8749,8750,1,0, + 0,0,8750,8751,1,0,0,0,8751,8752,3,1082,541,0,8752,1081,1,0,0,0,8753, + 8758,3,1084,542,0,8754,8755,5,142,0,0,8755,8756,5,411,0,0,8756,8757, + 5,379,0,0,8757,8759,3,1046,523,0,8758,8754,1,0,0,0,8758,8759,1,0, + 0,0,8759,1083,1,0,0,0,8760,8763,3,1086,543,0,8761,8762,5,43,0,0, + 8762,8764,3,478,239,0,8763,8761,1,0,0,0,8763,8764,1,0,0,0,8764,1085, + 1,0,0,0,8765,8770,3,1090,545,0,8766,8767,5,26,0,0,8767,8769,3,1004, + 502,0,8768,8766,1,0,0,0,8769,8772,1,0,0,0,8770,8768,1,0,0,0,8770, + 8771,1,0,0,0,8771,1087,1,0,0,0,8772,8770,1,0,0,0,8773,8774,6,544, + -1,0,8774,8781,3,1090,545,0,8775,8776,7,49,0,0,8776,8781,3,1088, + 544,9,8777,8778,3,1158,579,0,8778,8779,3,1088,544,3,8779,8781,1, + 0,0,0,8780,8773,1,0,0,0,8780,8775,1,0,0,0,8780,8777,1,0,0,0,8781, + 8821,1,0,0,0,8782,8783,10,8,0,0,8783,8784,5,15,0,0,8784,8820,3,1088, + 544,9,8785,8786,10,7,0,0,8786,8787,7,50,0,0,8787,8820,3,1088,544, + 8,8788,8789,10,6,0,0,8789,8790,7,49,0,0,8790,8820,3,1088,544,7,8791, + 8792,10,5,0,0,8792,8793,3,1158,579,0,8793,8794,3,1088,544,6,8794, + 8820,1,0,0,0,8795,8796,10,4,0,0,8796,8797,7,48,0,0,8797,8820,3,1088, + 544,5,8798,8799,10,10,0,0,8799,8800,5,26,0,0,8800,8820,3,1004,502, + 0,8801,8802,10,2,0,0,8802,8820,3,1158,579,0,8803,8804,10,1,0,0,8804, + 8806,5,116,0,0,8805,8807,5,77,0,0,8806,8805,1,0,0,0,8806,8807,1, + 0,0,0,8807,8817,1,0,0,0,8808,8809,5,56,0,0,8809,8810,5,64,0,0,8810, + 8818,3,1088,544,0,8811,8812,5,268,0,0,8812,8813,5,2,0,0,8813,8814, + 3,1170,585,0,8814,8815,5,3,0,0,8815,8818,1,0,0,0,8816,8818,5,188, + 0,0,8817,8808,1,0,0,0,8817,8811,1,0,0,0,8817,8816,1,0,0,0,8818,8820, + 1,0,0,0,8819,8782,1,0,0,0,8819,8785,1,0,0,0,8819,8788,1,0,0,0,8819, + 8791,1,0,0,0,8819,8795,1,0,0,0,8819,8798,1,0,0,0,8819,8801,1,0,0, + 0,8819,8803,1,0,0,0,8820,8823,1,0,0,0,8821,8819,1,0,0,0,8821,8822, + 1,0,0,0,8822,1089,1,0,0,0,8823,8821,1,0,0,0,8824,8825,5,389,0,0, + 8825,8861,3,870,435,0,8826,8829,5,35,0,0,8827,8830,3,870,435,0,8828, + 8830,3,1172,586,0,8829,8827,1,0,0,0,8829,8828,1,0,0,0,8830,8861, + 1,0,0,0,8831,8832,5,28,0,0,8832,8861,3,1208,604,0,8833,8834,5,470, + 0,0,8834,8835,5,2,0,0,8835,8836,3,1164,582,0,8836,8837,5,3,0,0,8837, + 8861,1,0,0,0,8838,8839,5,98,0,0,8839,8861,3,870,435,0,8840,8861, + 3,1202,601,0,8841,8861,3,1230,615,0,8842,8861,3,1092,546,0,8843, + 8844,5,2,0,0,8844,8845,3,1046,523,0,8845,8846,5,3,0,0,8846,8847, + 3,1208,604,0,8847,8861,1,0,0,0,8848,8861,3,1192,596,0,8849,8861, + 3,1096,548,0,8850,8852,3,870,435,0,8851,8853,3,1206,603,0,8852,8851, + 1,0,0,0,8852,8853,1,0,0,0,8853,8861,1,0,0,0,8854,8861,3,1148,574, + 0,8855,8861,3,1150,575,0,8856,8857,3,1146,573,0,8857,8858,5,125, + 0,0,8858,8859,3,1146,573,0,8859,8861,1,0,0,0,8860,8824,1,0,0,0,8860, + 8826,1,0,0,0,8860,8831,1,0,0,0,8860,8833,1,0,0,0,8860,8838,1,0,0, + 0,8860,8840,1,0,0,0,8860,8841,1,0,0,0,8860,8842,1,0,0,0,8860,8843, + 1,0,0,0,8860,8848,1,0,0,0,8860,8849,1,0,0,0,8860,8850,1,0,0,0,8860, + 8854,1,0,0,0,8860,8855,1,0,0,0,8860,8856,1,0,0,0,8861,1091,1,0,0, + 0,8862,8863,5,661,0,0,8863,1093,1,0,0,0,8864,8865,3,1228,614,0,8865, + 8884,5,2,0,0,8866,8870,3,1166,583,0,8867,8868,5,6,0,0,8868,8869, + 5,101,0,0,8869,8871,3,1168,584,0,8870,8867,1,0,0,0,8870,8871,1,0, + 0,0,8871,8872,1,0,0,0,8872,8873,3,900,450,0,8873,8885,1,0,0,0,8874, + 8875,5,101,0,0,8875,8876,3,1168,584,0,8876,8877,3,900,450,0,8877, + 8885,1,0,0,0,8878,8879,7,51,0,0,8879,8880,3,1166,583,0,8880,8881, + 3,900,450,0,8881,8885,1,0,0,0,8882,8885,5,9,0,0,8883,8885,1,0,0, + 0,8884,8866,1,0,0,0,8884,8874,1,0,0,0,8884,8878,1,0,0,0,8884,8882, + 1,0,0,0,8884,8883,1,0,0,0,8885,8886,1,0,0,0,8886,8887,5,3,0,0,8887, + 1095,1,0,0,0,8888,8889,3,1094,547,0,8889,8890,3,1120,560,0,8890, + 8891,3,1122,561,0,8891,8892,3,1130,565,0,8892,8895,1,0,0,0,8893, + 8895,3,1100,550,0,8894,8888,1,0,0,0,8894,8893,1,0,0,0,8895,1097, + 1,0,0,0,8896,8899,3,1094,547,0,8897,8899,3,1100,550,0,8898,8896, + 1,0,0,0,8898,8897,1,0,0,0,8899,1099,1,0,0,0,8900,8901,5,108,0,0, + 8901,8902,5,62,0,0,8902,8903,5,2,0,0,8903,8904,3,1046,523,0,8904, + 8905,5,3,0,0,8905,9078,1,0,0,0,8906,9078,5,48,0,0,8907,8912,5,50, + 0,0,8908,8909,5,2,0,0,8909,8910,3,1238,619,0,8910,8911,5,3,0,0,8911, + 8913,1,0,0,0,8912,8908,1,0,0,0,8912,8913,1,0,0,0,8913,9078,1,0,0, + 0,8914,8919,5,51,0,0,8915,8916,5,2,0,0,8916,8917,3,1238,619,0,8917, + 8918,5,3,0,0,8918,8920,1,0,0,0,8919,8915,1,0,0,0,8919,8920,1,0,0, + 0,8920,9078,1,0,0,0,8921,8926,5,75,0,0,8922,8923,5,2,0,0,8923,8924, + 3,1238,619,0,8924,8925,5,3,0,0,8925,8927,1,0,0,0,8926,8922,1,0,0, + 0,8926,8927,1,0,0,0,8927,9078,1,0,0,0,8928,8933,5,76,0,0,8929,8930, + 5,2,0,0,8930,8931,3,1238,619,0,8931,8932,5,3,0,0,8932,8934,1,0,0, + 0,8933,8929,1,0,0,0,8933,8934,1,0,0,0,8934,9078,1,0,0,0,8935,9078, + 5,49,0,0,8936,9078,5,52,0,0,8937,9078,5,89,0,0,8938,9078,5,99,0, + 0,8939,9078,5,47,0,0,8940,9078,5,111,0,0,8941,8942,5,41,0,0,8942, + 8943,5,2,0,0,8943,8944,3,1046,523,0,8944,8945,5,36,0,0,8945,8946, + 3,1004,502,0,8946,8947,5,3,0,0,8947,9078,1,0,0,0,8948,8949,5,390, + 0,0,8949,8950,5,2,0,0,8950,8951,3,1176,588,0,8951,8952,5,3,0,0,8952, + 9078,1,0,0,0,8953,8954,5,489,0,0,8954,8955,5,2,0,0,8955,8958,3,1046, + 523,0,8956,8957,5,6,0,0,8957,8959,3,1180,590,0,8958,8956,1,0,0,0, + 8958,8959,1,0,0,0,8959,8960,1,0,0,0,8960,8961,5,3,0,0,8961,9078, + 1,0,0,0,8962,8963,5,403,0,0,8963,8964,5,2,0,0,8964,8965,3,1182,591, + 0,8965,8966,5,3,0,0,8966,9078,1,0,0,0,8967,8968,5,404,0,0,8968,8969, + 5,2,0,0,8969,8970,3,1184,592,0,8970,8971,5,3,0,0,8971,9078,1,0,0, + 0,8972,8973,5,410,0,0,8973,8974,5,2,0,0,8974,8975,3,1186,593,0,8975, + 8976,5,3,0,0,8976,9078,1,0,0,0,8977,8978,5,413,0,0,8978,8979,5,2, + 0,0,8979,8980,3,1046,523,0,8980,8981,5,36,0,0,8981,8982,3,1004,502, + 0,8982,8983,5,3,0,0,8983,9078,1,0,0,0,8984,8985,5,414,0,0,8985,8987, + 5,2,0,0,8986,8988,7,52,0,0,8987,8986,1,0,0,0,8987,8988,1,0,0,0,8988, + 8989,1,0,0,0,8989,8990,3,1188,594,0,8990,8991,5,3,0,0,8991,9078, + 1,0,0,0,8992,8993,5,401,0,0,8993,8994,5,2,0,0,8994,8995,3,1046,523, + 0,8995,8996,5,6,0,0,8996,8997,3,1046,523,0,8997,8998,5,3,0,0,8998, + 9078,1,0,0,0,8999,9000,5,386,0,0,9000,9001,5,2,0,0,9001,9002,3,1164, + 582,0,9002,9003,5,3,0,0,9003,9078,1,0,0,0,9004,9005,5,392,0,0,9005, + 9006,5,2,0,0,9006,9007,3,1164,582,0,9007,9008,5,3,0,0,9008,9078, + 1,0,0,0,9009,9010,5,397,0,0,9010,9011,5,2,0,0,9011,9012,3,1164,582, + 0,9012,9013,5,3,0,0,9013,9078,1,0,0,0,9014,9015,5,425,0,0,9015,9016, + 5,2,0,0,9016,9017,3,1164,582,0,9017,9018,5,3,0,0,9018,9078,1,0,0, + 0,9019,9020,5,426,0,0,9020,9021,5,2,0,0,9021,9022,5,259,0,0,9022, + 9028,3,1262,631,0,9023,9026,5,6,0,0,9024,9027,3,1106,553,0,9025, + 9027,3,1164,582,0,9026,9024,1,0,0,0,9026,9025,1,0,0,0,9027,9029, + 1,0,0,0,9028,9023,1,0,0,0,9028,9029,1,0,0,0,9029,9030,1,0,0,0,9030, + 9031,5,3,0,0,9031,9078,1,0,0,0,9032,9033,5,427,0,0,9033,9034,5,2, + 0,0,9034,9035,3,1090,545,0,9035,9036,3,1116,558,0,9036,9037,5,3, + 0,0,9037,9078,1,0,0,0,9038,9039,5,428,0,0,9039,9040,5,2,0,0,9040, + 9041,3,1108,554,0,9041,9042,5,3,0,0,9042,9078,1,0,0,0,9043,9044, + 5,429,0,0,9044,9045,5,2,0,0,9045,9046,3,1112,556,0,9046,9047,3,1046, + 523,0,9047,9048,3,1114,557,0,9048,9049,5,3,0,0,9049,9078,1,0,0,0, + 9050,9051,5,430,0,0,9051,9052,5,2,0,0,9052,9053,5,259,0,0,9053,9056, + 3,1262,631,0,9054,9055,5,6,0,0,9055,9057,3,1046,523,0,9056,9054, + 1,0,0,0,9056,9057,1,0,0,0,9057,9058,1,0,0,0,9058,9059,5,3,0,0,9059, + 9078,1,0,0,0,9060,9061,5,431,0,0,9061,9062,5,2,0,0,9062,9063,5,376, + 0,0,9063,9064,3,1046,523,0,9064,9065,5,6,0,0,9065,9066,3,1102,551, + 0,9066,9067,3,1104,552,0,9067,9068,5,3,0,0,9068,9078,1,0,0,0,9069, + 9070,5,432,0,0,9070,9071,5,2,0,0,9071,9072,3,1112,556,0,9072,9073, + 3,1046,523,0,9073,9074,5,36,0,0,9074,9075,3,1006,503,0,9075,9076, + 5,3,0,0,9076,9078,1,0,0,0,9077,8900,1,0,0,0,9077,8906,1,0,0,0,9077, + 8907,1,0,0,0,9077,8914,1,0,0,0,9077,8921,1,0,0,0,9077,8928,1,0,0, + 0,9077,8935,1,0,0,0,9077,8936,1,0,0,0,9077,8937,1,0,0,0,9077,8938, + 1,0,0,0,9077,8939,1,0,0,0,9077,8940,1,0,0,0,9077,8941,1,0,0,0,9077, + 8948,1,0,0,0,9077,8953,1,0,0,0,9077,8962,1,0,0,0,9077,8967,1,0,0, + 0,9077,8972,1,0,0,0,9077,8977,1,0,0,0,9077,8984,1,0,0,0,9077,8992, + 1,0,0,0,9077,8999,1,0,0,0,9077,9004,1,0,0,0,9077,9009,1,0,0,0,9077, + 9014,1,0,0,0,9077,9019,1,0,0,0,9077,9032,1,0,0,0,9077,9038,1,0,0, + 0,9077,9043,1,0,0,0,9077,9050,1,0,0,0,9077,9060,1,0,0,0,9077,9069, + 1,0,0,0,9078,1101,1,0,0,0,9079,9080,5,368,0,0,9080,9085,3,1046,523, + 0,9081,9082,5,368,0,0,9082,9083,5,262,0,0,9083,9085,5,450,0,0,9084, + 9079,1,0,0,0,9084,9081,1,0,0,0,9085,1103,1,0,0,0,9086,9087,5,6,0, + 0,9087,9088,5,332,0,0,9088,9098,5,378,0,0,9089,9090,5,6,0,0,9090, + 9091,5,332,0,0,9091,9098,5,262,0,0,9092,9093,5,6,0,0,9093,9094,5, + 332,0,0,9094,9095,5,262,0,0,9095,9098,5,450,0,0,9096,9098,1,0,0, + 0,9097,9086,1,0,0,0,9097,9089,1,0,0,0,9097,9092,1,0,0,0,9097,9096, + 1,0,0,0,9098,1105,1,0,0,0,9099,9100,5,417,0,0,9100,9101,5,2,0,0, + 9101,9102,3,1108,554,0,9102,9103,5,3,0,0,9103,1107,1,0,0,0,9104, + 9109,3,1110,555,0,9105,9106,5,6,0,0,9106,9108,3,1110,555,0,9107, + 9105,1,0,0,0,9108,9111,1,0,0,0,9109,9107,1,0,0,0,9109,9110,1,0,0, + 0,9110,1109,1,0,0,0,9111,9109,1,0,0,0,9112,9115,3,1046,523,0,9113, + 9114,5,36,0,0,9114,9116,3,1262,631,0,9115,9113,1,0,0,0,9115,9116, + 1,0,0,0,9116,1111,1,0,0,0,9117,9118,7,53,0,0,9118,1113,1,0,0,0,9119, + 9120,5,285,0,0,9120,9125,5,371,0,0,9121,9122,5,340,0,0,9122,9125, + 5,371,0,0,9123,9125,1,0,0,0,9124,9119,1,0,0,0,9124,9121,1,0,0,0, + 9124,9123,1,0,0,0,9125,1115,1,0,0,0,9126,9127,5,279,0,0,9127,9142, + 3,1090,545,0,9128,9129,5,279,0,0,9129,9130,3,1090,545,0,9130,9131, + 3,1118,559,0,9131,9142,1,0,0,0,9132,9133,5,279,0,0,9133,9134,3,1118, + 559,0,9134,9135,3,1090,545,0,9135,9142,1,0,0,0,9136,9137,5,279,0, + 0,9137,9138,3,1118,559,0,9138,9139,3,1090,545,0,9139,9140,3,1118, + 559,0,9140,9142,1,0,0,0,9141,9126,1,0,0,0,9141,9128,1,0,0,0,9141, + 9132,1,0,0,0,9141,9136,1,0,0,0,9142,1117,1,0,0,0,9143,9144,5,147, + 0,0,9144,9145,7,54,0,0,9145,1119,1,0,0,0,9146,9147,5,479,0,0,9147, + 9148,5,66,0,0,9148,9149,5,2,0,0,9149,9150,3,902,451,0,9150,9151, + 5,3,0,0,9151,9154,1,0,0,0,9152,9154,1,0,0,0,9153,9146,1,0,0,0,9153, + 9152,1,0,0,0,9154,1121,1,0,0,0,9155,9156,5,480,0,0,9156,9157,5,2, + 0,0,9157,9158,5,103,0,0,9158,9159,3,1046,523,0,9159,9160,5,3,0,0, + 9160,9163,1,0,0,0,9161,9163,1,0,0,0,9162,9155,1,0,0,0,9162,9161, + 1,0,0,0,9163,1123,1,0,0,0,9164,9165,5,104,0,0,9165,9168,3,1126,563, + 0,9166,9168,1,0,0,0,9167,9164,1,0,0,0,9167,9166,1,0,0,0,9168,1125, + 1,0,0,0,9169,9174,3,1128,564,0,9170,9171,5,6,0,0,9171,9173,3,1128, + 564,0,9172,9170,1,0,0,0,9173,9176,1,0,0,0,9174,9172,1,0,0,0,9174, + 9175,1,0,0,0,9175,1127,1,0,0,0,9176,9174,1,0,0,0,9177,9178,3,1254, + 627,0,9178,9179,5,36,0,0,9179,9180,3,1132,566,0,9180,1129,1,0,0, + 0,9181,9184,5,124,0,0,9182,9185,3,1132,566,0,9183,9185,3,1254,627, + 0,9184,9182,1,0,0,0,9184,9183,1,0,0,0,9185,9188,1,0,0,0,9186,9188, + 1,0,0,0,9187,9181,1,0,0,0,9187,9186,1,0,0,0,9188,1131,1,0,0,0,9189, + 9190,5,2,0,0,9190,9191,3,1134,567,0,9191,9192,3,1136,568,0,9192, + 9193,3,900,450,0,9193,9194,3,1138,569,0,9194,9195,5,3,0,0,9195,1133, + 1,0,0,0,9196,9199,3,1254,627,0,9197,9199,1,0,0,0,9198,9196,1,0,0, + 0,9198,9197,1,0,0,0,9199,1135,1,0,0,0,9200,9201,5,278,0,0,9201,9202, + 5,147,0,0,9202,9205,3,1164,582,0,9203,9205,1,0,0,0,9204,9200,1,0, + 0,0,9204,9203,1,0,0,0,9205,1137,1,0,0,0,9206,9207,5,292,0,0,9207, + 9208,3,1140,570,0,9208,9209,3,1144,572,0,9209,9220,1,0,0,0,9210, + 9211,5,313,0,0,9211,9212,3,1140,570,0,9212,9213,3,1144,572,0,9213, + 9220,1,0,0,0,9214,9215,5,481,0,0,9215,9216,3,1140,570,0,9216,9217, + 3,1144,572,0,9217,9220,1,0,0,0,9218,9220,1,0,0,0,9219,9206,1,0,0, + 0,9219,9210,1,0,0,0,9219,9214,1,0,0,0,9219,9218,1,0,0,0,9220,1139, + 1,0,0,0,9221,9228,3,1142,571,0,9222,9223,5,380,0,0,9223,9224,3,1142, + 571,0,9224,9225,5,33,0,0,9225,9226,3,1142,571,0,9226,9228,1,0,0, + 0,9227,9221,1,0,0,0,9227,9222,1,0,0,0,9228,1141,1,0,0,0,9229,9230, + 5,355,0,0,9230,9237,7,55,0,0,9231,9232,5,434,0,0,9232,9237,5,407, + 0,0,9233,9234,3,1046,523,0,9234,9235,7,55,0,0,9235,9237,1,0,0,0, + 9236,9229,1,0,0,0,9236,9231,1,0,0,0,9236,9233,1,0,0,0,9237,1143, + 1,0,0,0,9238,9245,5,199,0,0,9239,9240,5,434,0,0,9240,9246,5,407, + 0,0,9241,9246,5,66,0,0,9242,9246,5,467,0,0,9243,9244,5,262,0,0,9244, + 9246,5,482,0,0,9245,9239,1,0,0,0,9245,9241,1,0,0,0,9245,9242,1,0, + 0,0,9245,9243,1,0,0,0,9246,9249,1,0,0,0,9247,9249,1,0,0,0,9248,9238, + 1,0,0,0,9248,9247,1,0,0,0,9249,1145,1,0,0,0,9250,9251,5,407,0,0, + 9251,9253,5,2,0,0,9252,9254,3,1164,582,0,9253,9252,1,0,0,0,9253, + 9254,1,0,0,0,9254,9255,1,0,0,0,9255,9263,5,3,0,0,9256,9257,5,2,0, + 0,9257,9258,3,1164,582,0,9258,9259,5,6,0,0,9259,9260,3,1046,523, + 0,9260,9261,5,3,0,0,9261,9263,1,0,0,0,9262,9250,1,0,0,0,9262,9256, + 1,0,0,0,9263,1147,1,0,0,0,9264,9265,5,407,0,0,9265,9267,5,2,0,0, + 9266,9268,3,1164,582,0,9267,9266,1,0,0,0,9267,9268,1,0,0,0,9268, + 9269,1,0,0,0,9269,9270,5,3,0,0,9270,1149,1,0,0,0,9271,9272,5,2,0, + 0,9272,9273,3,1164,582,0,9273,9274,5,6,0,0,9274,9275,3,1046,523, + 0,9275,9276,5,3,0,0,9276,1151,1,0,0,0,9277,9278,7,56,0,0,9278,1153, + 1,0,0,0,9279,9282,5,29,0,0,9280,9282,3,1156,578,0,9281,9279,1,0, + 0,0,9281,9280,1,0,0,0,9282,1155,1,0,0,0,9283,9284,7,57,0,0,9284, + 1157,1,0,0,0,9285,9292,5,29,0,0,9286,9287,5,271,0,0,9287,9288,5, + 2,0,0,9288,9289,3,620,310,0,9289,9290,5,3,0,0,9290,9292,1,0,0,0, + 9291,9285,1,0,0,0,9291,9286,1,0,0,0,9292,1159,1,0,0,0,9293,9300, + 3,1154,577,0,9294,9295,5,271,0,0,9295,9296,5,2,0,0,9296,9297,3,620, + 310,0,9297,9298,5,3,0,0,9298,9300,1,0,0,0,9299,9293,1,0,0,0,9299, + 9294,1,0,0,0,9300,1161,1,0,0,0,9301,9314,3,1154,577,0,9302,9303, + 5,271,0,0,9303,9304,5,2,0,0,9304,9305,3,620,310,0,9305,9306,5,3, + 0,0,9306,9314,1,0,0,0,9307,9314,5,120,0,0,9308,9309,5,77,0,0,9309, + 9314,5,120,0,0,9310,9314,5,114,0,0,9311,9312,5,77,0,0,9312,9314, + 5,114,0,0,9313,9301,1,0,0,0,9313,9302,1,0,0,0,9313,9307,1,0,0,0, + 9313,9308,1,0,0,0,9313,9310,1,0,0,0,9313,9311,1,0,0,0,9314,1163, + 1,0,0,0,9315,9320,3,1046,523,0,9316,9317,5,6,0,0,9317,9319,3,1046, + 523,0,9318,9316,1,0,0,0,9319,9322,1,0,0,0,9320,9318,1,0,0,0,9320, + 9321,1,0,0,0,9321,1165,1,0,0,0,9322,9320,1,0,0,0,9323,9328,3,1168, + 584,0,9324,9325,5,6,0,0,9325,9327,3,1168,584,0,9326,9324,1,0,0,0, + 9327,9330,1,0,0,0,9328,9326,1,0,0,0,9328,9329,1,0,0,0,9329,1167, + 1,0,0,0,9330,9328,1,0,0,0,9331,9337,3,1046,523,0,9332,9333,3,580, + 290,0,9333,9334,7,58,0,0,9334,9335,3,1046,523,0,9335,9337,1,0,0, + 0,9336,9331,1,0,0,0,9336,9332,1,0,0,0,9337,1169,1,0,0,0,9338,9343, + 3,1004,502,0,9339,9340,5,6,0,0,9340,9342,3,1004,502,0,9341,9339, + 1,0,0,0,9342,9345,1,0,0,0,9343,9341,1,0,0,0,9343,9344,1,0,0,0,9344, + 1171,1,0,0,0,9345,9343,1,0,0,0,9346,9349,5,4,0,0,9347,9350,3,1164, + 582,0,9348,9350,3,1174,587,0,9349,9347,1,0,0,0,9349,9348,1,0,0,0, + 9349,9350,1,0,0,0,9350,9351,1,0,0,0,9351,9352,5,5,0,0,9352,1173, + 1,0,0,0,9353,9358,3,1172,586,0,9354,9355,5,6,0,0,9355,9357,3,1172, + 586,0,9356,9354,1,0,0,0,9357,9360,1,0,0,0,9358,9356,1,0,0,0,9358, + 9359,1,0,0,0,9359,1175,1,0,0,0,9360,9358,1,0,0,0,9361,9362,3,1178, + 589,0,9362,9363,5,64,0,0,9363,9364,3,1046,523,0,9364,9367,1,0,0, + 0,9365,9367,1,0,0,0,9366,9361,1,0,0,0,9366,9365,1,0,0,0,9367,1177, + 1,0,0,0,9368,9377,3,1264,632,0,9369,9377,5,377,0,0,9370,9377,5,257, + 0,0,9371,9377,5,176,0,0,9372,9377,5,218,0,0,9373,9377,5,254,0,0, + 9374,9377,5,319,0,0,9375,9377,3,1240,620,0,9376,9368,1,0,0,0,9376, + 9369,1,0,0,0,9376,9370,1,0,0,0,9376,9371,1,0,0,0,9376,9372,1,0,0, + 0,9376,9373,1,0,0,0,9376,9374,1,0,0,0,9376,9375,1,0,0,0,9377,1179, + 1,0,0,0,9378,9379,7,59,0,0,9379,1181,1,0,0,0,9380,9381,3,1046,523, + 0,9381,9382,5,84,0,0,9382,9383,3,1046,523,0,9383,9384,5,64,0,0,9384, + 9387,3,1046,523,0,9385,9386,5,62,0,0,9386,9388,3,1046,523,0,9387, + 9385,1,0,0,0,9387,9388,1,0,0,0,9388,1183,1,0,0,0,9389,9390,3,1088, + 544,0,9390,9391,5,68,0,0,9391,9392,3,1088,544,0,9392,9395,1,0,0, + 0,9393,9395,1,0,0,0,9394,9389,1,0,0,0,9394,9393,1,0,0,0,9395,1185, + 1,0,0,0,9396,9397,3,1046,523,0,9397,9398,5,64,0,0,9398,9399,3,1046, + 523,0,9399,9400,5,62,0,0,9400,9401,3,1046,523,0,9401,9424,1,0,0, + 0,9402,9403,3,1046,523,0,9403,9404,5,62,0,0,9404,9405,3,1046,523, + 0,9405,9406,5,64,0,0,9406,9407,3,1046,523,0,9407,9424,1,0,0,0,9408, + 9409,3,1046,523,0,9409,9410,5,64,0,0,9410,9411,3,1046,523,0,9411, + 9424,1,0,0,0,9412,9413,3,1046,523,0,9413,9414,5,62,0,0,9414,9415, + 3,1046,523,0,9415,9424,1,0,0,0,9416,9417,3,1046,523,0,9417,9418, + 5,127,0,0,9418,9419,3,1046,523,0,9419,9420,5,197,0,0,9420,9421,3, + 1046,523,0,9421,9424,1,0,0,0,9422,9424,3,1164,582,0,9423,9396,1, + 0,0,0,9423,9402,1,0,0,0,9423,9408,1,0,0,0,9423,9412,1,0,0,0,9423, + 9416,1,0,0,0,9423,9422,1,0,0,0,9424,1187,1,0,0,0,9425,9426,3,1046, + 523,0,9426,9427,5,64,0,0,9427,9428,3,1164,582,0,9428,9433,1,0,0, + 0,9429,9430,5,64,0,0,9430,9433,3,1164,582,0,9431,9433,3,1164,582, + 0,9432,9425,1,0,0,0,9432,9429,1,0,0,0,9432,9431,1,0,0,0,9433,1189, + 1,0,0,0,9434,9440,3,870,435,0,9435,9436,5,2,0,0,9436,9437,3,1164, + 582,0,9437,9438,5,3,0,0,9438,9440,1,0,0,0,9439,9434,1,0,0,0,9439, + 9435,1,0,0,0,9440,1191,1,0,0,0,9441,9442,5,40,0,0,9442,9443,3,1200, + 600,0,9443,9444,3,1194,597,0,9444,9445,3,1198,599,0,9445,9446,5, + 454,0,0,9446,1193,1,0,0,0,9447,9449,3,1196,598,0,9448,9447,1,0,0, + 0,9449,9450,1,0,0,0,9450,9448,1,0,0,0,9450,9451,1,0,0,0,9451,1195, + 1,0,0,0,9452,9453,5,102,0,0,9453,9454,3,1046,523,0,9454,9455,5,93, + 0,0,9455,9456,3,1046,523,0,9456,1197,1,0,0,0,9457,9458,5,58,0,0, + 9458,9461,3,1046,523,0,9459,9461,1,0,0,0,9460,9457,1,0,0,0,9460, + 9459,1,0,0,0,9461,1199,1,0,0,0,9462,9465,3,1046,523,0,9463,9465, + 1,0,0,0,9464,9462,1,0,0,0,9464,9463,1,0,0,0,9465,1201,1,0,0,0,9466, + 9468,3,1254,627,0,9467,9469,3,1206,603,0,9468,9467,1,0,0,0,9468, + 9469,1,0,0,0,9469,1203,1,0,0,0,9470,9473,5,11,0,0,9471,9474,3,1224, + 612,0,9472,9474,5,9,0,0,9473,9471,1,0,0,0,9473,9472,1,0,0,0,9474, + 9488,1,0,0,0,9475,9484,5,4,0,0,9476,9485,3,1046,523,0,9477,9479, + 3,1046,523,0,9478,9477,1,0,0,0,9478,9479,1,0,0,0,9479,9480,1,0,0, + 0,9480,9482,5,8,0,0,9481,9483,3,1046,523,0,9482,9481,1,0,0,0,9482, + 9483,1,0,0,0,9483,9485,1,0,0,0,9484,9476,1,0,0,0,9484,9478,1,0,0, + 0,9485,9486,1,0,0,0,9486,9488,5,5,0,0,9487,9470,1,0,0,0,9487,9475, + 1,0,0,0,9488,1205,1,0,0,0,9489,9491,3,1204,602,0,9490,9489,1,0,0, + 0,9491,9492,1,0,0,0,9492,9490,1,0,0,0,9492,9493,1,0,0,0,9493,1207, + 1,0,0,0,9494,9496,3,1204,602,0,9495,9494,1,0,0,0,9496,9499,1,0,0, + 0,9497,9495,1,0,0,0,9497,9498,1,0,0,0,9498,1209,1,0,0,0,9499,9497, + 1,0,0,0,9500,9503,3,1212,606,0,9501,9503,1,0,0,0,9502,9500,1,0,0, + 0,9502,9501,1,0,0,0,9503,1211,1,0,0,0,9504,9509,3,1214,607,0,9505, + 9506,5,6,0,0,9506,9508,3,1214,607,0,9507,9505,1,0,0,0,9508,9511, + 1,0,0,0,9509,9507,1,0,0,0,9509,9510,1,0,0,0,9510,1213,1,0,0,0,9511, + 9509,1,0,0,0,9512,9521,5,9,0,0,9513,9518,3,1046,523,0,9514,9515, + 5,36,0,0,9515,9519,3,1262,631,0,9516,9519,3,1264,632,0,9517,9519, + 1,0,0,0,9518,9514,1,0,0,0,9518,9516,1,0,0,0,9518,9517,1,0,0,0,9519, + 9521,1,0,0,0,9520,9512,1,0,0,0,9520,9513,1,0,0,0,9521,1215,1,0,0, + 0,9522,9527,3,1218,609,0,9523,9524,5,6,0,0,9524,9526,3,1218,609, + 0,9525,9523,1,0,0,0,9526,9529,1,0,0,0,9527,9525,1,0,0,0,9527,9528, + 1,0,0,0,9528,1217,1,0,0,0,9529,9527,1,0,0,0,9530,9532,3,1254,627, + 0,9531,9533,3,1206,603,0,9532,9531,1,0,0,0,9532,9533,1,0,0,0,9533, + 1219,1,0,0,0,9534,9539,3,1222,611,0,9535,9536,5,6,0,0,9536,9538, + 3,1222,611,0,9537,9535,1,0,0,0,9538,9541,1,0,0,0,9539,9537,1,0,0, + 0,9539,9540,1,0,0,0,9540,1221,1,0,0,0,9541,9539,1,0,0,0,9542,9543, + 3,1254,627,0,9543,1223,1,0,0,0,9544,9545,3,1262,631,0,9545,1225, + 1,0,0,0,9546,9547,3,1240,620,0,9547,1227,1,0,0,0,9548,9556,3,1276, + 638,0,9549,9556,3,1258,629,0,9550,9551,3,1254,627,0,9551,9552,3, + 1206,603,0,9552,9556,1,0,0,0,9553,9556,5,119,0,0,9554,9556,5,126, + 0,0,9555,9548,1,0,0,0,9555,9549,1,0,0,0,9555,9550,1,0,0,0,9555,9553, + 1,0,0,0,9555,9554,1,0,0,0,9556,1229,1,0,0,0,9557,9590,3,1238,619, + 0,9558,9590,3,1236,618,0,9559,9590,3,1240,620,0,9560,9590,3,1234, + 617,0,9561,9590,3,1232,616,0,9562,9570,3,1228,614,0,9563,9571,3, + 1240,620,0,9564,9565,5,2,0,0,9565,9566,3,1166,583,0,9566,9567,3, + 900,450,0,9567,9568,5,3,0,0,9568,9569,3,1240,620,0,9569,9571,1,0, + 0,0,9570,9563,1,0,0,0,9570,9564,1,0,0,0,9571,9590,1,0,0,0,9572,9573, + 3,1008,504,0,9573,9574,3,1240,620,0,9574,9590,1,0,0,0,9575,9584, + 3,1036,518,0,9576,9577,3,1240,620,0,9577,9578,3,1040,520,0,9578, + 9585,1,0,0,0,9579,9580,5,2,0,0,9580,9581,3,1238,619,0,9581,9582, + 5,3,0,0,9582,9583,3,1240,620,0,9583,9585,1,0,0,0,9584,9576,1,0,0, + 0,9584,9579,1,0,0,0,9585,9590,1,0,0,0,9586,9590,5,96,0,0,9587,9590, + 5,60,0,0,9588,9590,5,78,0,0,9589,9557,1,0,0,0,9589,9558,1,0,0,0, + 9589,9559,1,0,0,0,9589,9560,1,0,0,0,9589,9561,1,0,0,0,9589,9562, + 1,0,0,0,9589,9572,1,0,0,0,9589,9575,1,0,0,0,9589,9586,1,0,0,0,9589, + 9587,1,0,0,0,9589,9588,1,0,0,0,9590,1231,1,0,0,0,9591,9592,5,654, + 0,0,9592,1233,1,0,0,0,9593,9594,5,650,0,0,9594,1235,1,0,0,0,9595, + 9596,5,660,0,0,9596,1237,1,0,0,0,9597,9598,5,658,0,0,9598,1239,1, + 0,0,0,9599,9600,3,1242,621,0,9600,9601,3,1244,622,0,9601,1241,1, + 0,0,0,9602,9614,5,645,0,0,9603,9614,5,647,0,0,9604,9608,5,649,0, + 0,9605,9607,5,677,0,0,9606,9605,1,0,0,0,9607,9610,1,0,0,0,9608,9606, + 1,0,0,0,9608,9609,1,0,0,0,9609,9611,1,0,0,0,9610,9608,1,0,0,0,9611, + 9614,5,678,0,0,9612,9614,5,671,0,0,9613,9602,1,0,0,0,9613,9603,1, + 0,0,0,9613,9604,1,0,0,0,9613,9612,1,0,0,0,9614,1243,1,0,0,0,9615, + 9616,5,487,0,0,9616,9619,3,1242,621,0,9617,9619,1,0,0,0,9618,9615, + 1,0,0,0,9618,9617,1,0,0,0,9619,1245,1,0,0,0,9620,9626,3,1238,619, + 0,9621,9622,5,12,0,0,9622,9626,3,1238,619,0,9623,9624,5,13,0,0,9624, + 9626,3,1238,619,0,9625,9620,1,0,0,0,9625,9621,1,0,0,0,9625,9623, + 1,0,0,0,9626,1247,1,0,0,0,9627,9628,3,1250,625,0,9628,1249,1,0,0, + 0,9629,9633,3,1260,630,0,9630,9633,5,52,0,0,9631,9633,5,89,0,0,9632, + 9629,1,0,0,0,9632,9630,1,0,0,0,9632,9631,1,0,0,0,9633,1251,1,0,0, + 0,9634,9639,3,1250,625,0,9635,9636,5,6,0,0,9636,9638,3,1250,625, + 0,9637,9635,1,0,0,0,9638,9641,1,0,0,0,9639,9637,1,0,0,0,9639,9640, + 1,0,0,0,9640,1253,1,0,0,0,9641,9639,1,0,0,0,9642,9649,3,1264,632, + 0,9643,9649,3,1268,634,0,9644,9649,3,1270,635,0,9645,9649,3,1480, + 740,0,9646,9649,5,119,0,0,9647,9649,5,126,0,0,9648,9642,1,0,0,0, + 9648,9643,1,0,0,0,9648,9644,1,0,0,0,9648,9645,1,0,0,0,9648,9646, + 1,0,0,0,9648,9647,1,0,0,0,9649,1255,1,0,0,0,9650,9655,3,1264,632, + 0,9651,9655,3,1268,634,0,9652,9655,3,1270,635,0,9653,9655,3,1480, + 740,0,9654,9650,1,0,0,0,9654,9651,1,0,0,0,9654,9652,1,0,0,0,9654, + 9653,1,0,0,0,9655,1257,1,0,0,0,9656,9661,3,1264,632,0,9657,9661, + 3,1268,634,0,9658,9661,3,1480,740,0,9659,9661,3,1272,636,0,9660, + 9656,1,0,0,0,9660,9657,1,0,0,0,9660,9658,1,0,0,0,9660,9659,1,0,0, + 0,9661,1259,1,0,0,0,9662,9667,3,1264,632,0,9663,9667,3,1268,634, + 0,9664,9667,3,1270,635,0,9665,9667,3,1272,636,0,9666,9662,1,0,0, + 0,9666,9663,1,0,0,0,9666,9664,1,0,0,0,9666,9665,1,0,0,0,9667,1261, + 1,0,0,0,9668,9675,3,1264,632,0,9669,9675,3,1480,740,0,9670,9675, + 3,1268,634,0,9671,9675,3,1270,635,0,9672,9675,3,1272,636,0,9673, + 9675,3,1274,637,0,9674,9668,1,0,0,0,9674,9669,1,0,0,0,9674,9670, + 1,0,0,0,9674,9671,1,0,0,0,9674,9672,1,0,0,0,9674,9673,1,0,0,0,9675, + 1263,1,0,0,0,9676,9677,5,636,0,0,9677,9684,3,1244,622,0,9678,9684, + 5,637,0,0,9679,9684,5,641,0,0,9680,9684,3,1092,546,0,9681,9684,3, + 1266,633,0,9682,9684,3,1480,740,0,9683,9676,1,0,0,0,9683,9678,1, + 0,0,0,9683,9679,1,0,0,0,9683,9680,1,0,0,0,9683,9681,1,0,0,0,9683, + 9682,1,0,0,0,9684,1265,1,0,0,0,9685,9686,5,662,0,0,9686,1267,1,0, + 0,0,9687,9688,7,60,0,0,9688,1269,1,0,0,0,9689,9742,5,380,0,0,9690, + 9742,5,381,0,0,9691,9742,3,1018,509,0,9692,9742,5,383,0,0,9693,9742, + 5,384,0,0,9694,9742,3,1026,513,0,9695,9742,5,386,0,0,9696,9742,5, + 387,0,0,9697,9742,5,388,0,0,9698,9742,5,389,0,0,9699,9742,5,390, + 0,0,9700,9742,5,391,0,0,9701,9742,5,392,0,0,9702,9742,5,470,0,0, + 9703,9742,5,393,0,0,9704,9742,5,394,0,0,9705,9742,5,395,0,0,9706, + 9742,5,396,0,0,9707,9742,5,397,0,0,9708,9742,5,398,0,0,9709,9742, + 5,399,0,0,9710,9742,5,400,0,0,9711,9742,5,489,0,0,9712,9742,5,401, + 0,0,9713,9742,3,1014,507,0,9714,9742,5,453,0,0,9715,9742,5,403,0, + 0,9716,9742,5,404,0,0,9717,9742,5,405,0,0,9718,9742,5,406,0,0,9719, + 9742,5,407,0,0,9720,9742,5,408,0,0,9721,9742,5,409,0,0,9722,9742, + 5,410,0,0,9723,9742,5,411,0,0,9724,9742,5,412,0,0,9725,9742,5,413, + 0,0,9726,9742,5,414,0,0,9727,9742,5,415,0,0,9728,9742,5,416,0,0, + 9729,9742,5,417,0,0,9730,9742,5,425,0,0,9731,9742,5,426,0,0,9732, + 9742,5,427,0,0,9733,9742,5,428,0,0,9734,9742,5,476,0,0,9735,9742, + 5,429,0,0,9736,9742,5,430,0,0,9737,9742,5,431,0,0,9738,9742,5,432, + 0,0,9739,9742,5,474,0,0,9740,9742,3,1276,638,0,9741,9689,1,0,0,0, + 9741,9690,1,0,0,0,9741,9691,1,0,0,0,9741,9692,1,0,0,0,9741,9693, + 1,0,0,0,9741,9694,1,0,0,0,9741,9695,1,0,0,0,9741,9696,1,0,0,0,9741, + 9697,1,0,0,0,9741,9698,1,0,0,0,9741,9699,1,0,0,0,9741,9700,1,0,0, + 0,9741,9701,1,0,0,0,9741,9702,1,0,0,0,9741,9703,1,0,0,0,9741,9704, + 1,0,0,0,9741,9705,1,0,0,0,9741,9706,1,0,0,0,9741,9707,1,0,0,0,9741, + 9708,1,0,0,0,9741,9709,1,0,0,0,9741,9710,1,0,0,0,9741,9711,1,0,0, + 0,9741,9712,1,0,0,0,9741,9713,1,0,0,0,9741,9714,1,0,0,0,9741,9715, + 1,0,0,0,9741,9716,1,0,0,0,9741,9717,1,0,0,0,9741,9718,1,0,0,0,9741, + 9719,1,0,0,0,9741,9720,1,0,0,0,9741,9721,1,0,0,0,9741,9722,1,0,0, + 0,9741,9723,1,0,0,0,9741,9724,1,0,0,0,9741,9725,1,0,0,0,9741,9726, + 1,0,0,0,9741,9727,1,0,0,0,9741,9728,1,0,0,0,9741,9729,1,0,0,0,9741, + 9730,1,0,0,0,9741,9731,1,0,0,0,9741,9732,1,0,0,0,9741,9733,1,0,0, + 0,9741,9734,1,0,0,0,9741,9735,1,0,0,0,9741,9736,1,0,0,0,9741,9737, + 1,0,0,0,9741,9738,1,0,0,0,9741,9739,1,0,0,0,9741,9740,1,0,0,0,9742, + 1271,1,0,0,0,9743,9744,7,61,0,0,9744,1273,1,0,0,0,9745,9746,7,62, + 0,0,9746,1275,1,0,0,0,9747,9748,7,63,0,0,9748,1277,1,0,0,0,9749, + 9750,3,1280,640,0,9750,9751,3,1290,645,0,9751,9752,3,1288,644,0, + 9752,1279,1,0,0,0,9753,9755,3,1282,641,0,9754,9753,1,0,0,0,9755, + 9758,1,0,0,0,9756,9754,1,0,0,0,9756,9757,1,0,0,0,9757,1281,1,0,0, + 0,9758,9756,1,0,0,0,9759,9760,3,1284,642,0,9760,9761,5,272,0,0,9761, + 9762,5,490,0,0,9762,9780,1,0,0,0,9763,9764,3,1284,642,0,9764,9765, + 5,491,0,0,9765,9766,3,1286,643,0,9766,9780,1,0,0,0,9767,9768,3,1284, + 642,0,9768,9769,5,492,0,0,9769,9770,5,493,0,0,9770,9780,1,0,0,0, + 9771,9772,3,1284,642,0,9772,9773,5,492,0,0,9773,9774,5,494,0,0,9774, + 9780,1,0,0,0,9775,9776,3,1284,642,0,9776,9777,5,492,0,0,9777,9778, + 5,495,0,0,9778,9780,1,0,0,0,9779,9759,1,0,0,0,9779,9763,1,0,0,0, + 9779,9767,1,0,0,0,9779,9771,1,0,0,0,9779,9775,1,0,0,0,9780,1283, + 1,0,0,0,9781,9782,5,29,0,0,9782,1285,1,0,0,0,9783,9788,3,1240,620, + 0,9784,9788,3,1274,637,0,9785,9788,3,1480,740,0,9786,9788,3,1268, + 634,0,9787,9783,1,0,0,0,9787,9784,1,0,0,0,9787,9785,1,0,0,0,9787, + 9786,1,0,0,0,9788,1287,1,0,0,0,9789,9792,1,0,0,0,9790,9792,5,7,0, + 0,9791,9789,1,0,0,0,9791,9790,1,0,0,0,9792,1289,1,0,0,0,9793,9794, + 3,1292,646,0,9794,9795,5,146,0,0,9795,9796,3,1334,667,0,9796,9797, + 3,1460,730,0,9797,9798,5,454,0,0,9798,9799,3,1474,737,0,9799,1291, + 1,0,0,0,9800,9805,3,1470,735,0,9801,9803,3,1294,647,0,9802,9804, + 3,1296,648,0,9803,9802,1,0,0,0,9803,9804,1,0,0,0,9804,9806,1,0,0, + 0,9805,9801,1,0,0,0,9805,9806,1,0,0,0,9806,1293,1,0,0,0,9807,9808, + 5,178,0,0,9808,1295,1,0,0,0,9809,9811,3,1300,650,0,9810,9809,1,0, + 0,0,9811,9812,1,0,0,0,9812,9810,1,0,0,0,9812,9813,1,0,0,0,9813,1297, + 1,0,0,0,9814,9815,5,18,0,0,9815,9816,3,1478,739,0,9816,9817,5,19, + 0,0,9817,1299,1,0,0,0,9818,9822,3,1302,651,0,9819,9822,5,178,0,0, + 9820,9822,3,1298,649,0,9821,9818,1,0,0,0,9821,9819,1,0,0,0,9821, + 9820,1,0,0,0,9822,1301,1,0,0,0,9823,9839,3,1318,659,0,9824,9825, + 5,496,0,0,9825,9826,5,62,0,0,9826,9840,3,1316,658,0,9827,9828,3, + 1320,660,0,9828,9829,3,1322,661,0,9829,9830,3,1324,662,0,9830,9831, + 3,1326,663,0,9831,9832,3,1328,664,0,9832,9840,1,0,0,0,9833,9834, + 3,1304,652,0,9834,9835,5,172,0,0,9835,9836,3,1308,654,0,9836,9837, + 3,1314,657,0,9837,9838,3,1306,653,0,9838,9840,1,0,0,0,9839,9824, + 1,0,0,0,9839,9827,1,0,0,0,9839,9833,1,0,0,0,9840,9841,1,0,0,0,9841, + 9842,5,7,0,0,9842,1303,1,0,0,0,9843,9848,1,0,0,0,9844,9845,5,262, + 0,0,9845,9848,5,317,0,0,9846,9848,5,317,0,0,9847,9843,1,0,0,0,9847, + 9844,1,0,0,0,9847,9846,1,0,0,0,9848,1305,1,0,0,0,9849,9850,3,868, + 434,0,9850,1307,1,0,0,0,9851,9857,1,0,0,0,9852,9853,5,2,0,0,9853, + 9854,3,1310,655,0,9854,9855,5,3,0,0,9855,9857,1,0,0,0,9856,9851, + 1,0,0,0,9856,9852,1,0,0,0,9857,1309,1,0,0,0,9858,9863,3,1312,656, + 0,9859,9860,5,6,0,0,9860,9862,3,1312,656,0,9861,9859,1,0,0,0,9862, + 9865,1,0,0,0,9863,9861,1,0,0,0,9863,9864,1,0,0,0,9864,1311,1,0,0, + 0,9865,9863,1,0,0,0,9866,9867,3,1318,659,0,9867,9868,3,1322,661, + 0,9868,1313,1,0,0,0,9869,9870,7,64,0,0,9870,1315,1,0,0,0,9871,9874, + 5,28,0,0,9872,9874,3,1254,627,0,9873,9871,1,0,0,0,9873,9872,1,0, + 0,0,9874,1317,1,0,0,0,9875,9876,3,1478,739,0,9876,1319,1,0,0,0,9877, + 9880,1,0,0,0,9878,9880,5,497,0,0,9879,9877,1,0,0,0,9879,9878,1,0, + 0,0,9880,1321,1,0,0,0,9881,9882,3,1004,502,0,9882,1323,1,0,0,0,9883, + 9887,1,0,0,0,9884,9885,5,43,0,0,9885,9887,3,478,239,0,9886,9883, + 1,0,0,0,9886,9884,1,0,0,0,9887,1325,1,0,0,0,9888,9892,1,0,0,0,9889, + 9890,5,77,0,0,9890,9892,5,78,0,0,9891,9888,1,0,0,0,9891,9889,1,0, + 0,0,9892,1327,1,0,0,0,9893,9898,1,0,0,0,9894,9895,3,1330,665,0,9895, + 9896,3,1482,741,0,9896,9898,1,0,0,0,9897,9893,1,0,0,0,9897,9894, + 1,0,0,0,9898,1329,1,0,0,0,9899,9902,3,1332,666,0,9900,9902,5,53, + 0,0,9901,9899,1,0,0,0,9901,9900,1,0,0,0,9902,1331,1,0,0,0,9903,9904, + 7,65,0,0,9904,1333,1,0,0,0,9905,9907,3,1336,668,0,9906,9905,1,0, + 0,0,9907,9910,1,0,0,0,9908,9906,1,0,0,0,9908,9909,1,0,0,0,9909,1335, + 1,0,0,0,9910,9908,1,0,0,0,9911,9912,3,1290,645,0,9912,9913,5,7,0, + 0,9913,9939,1,0,0,0,9914,9939,3,1402,701,0,9915,9939,3,1406,703, + 0,9916,9939,3,1344,672,0,9917,9939,3,1360,680,0,9918,9939,3,1366, + 683,0,9919,9939,3,1376,688,0,9920,9939,3,1378,689,0,9921,9939,3, + 1380,690,0,9922,9939,3,1394,697,0,9923,9939,3,1398,699,0,9924,9939, + 3,1416,708,0,9925,9939,3,1422,711,0,9926,9939,3,1424,712,0,9927, + 9939,3,1338,669,0,9928,9939,3,1340,670,0,9929,9939,3,1346,673,0, + 9930,9939,3,1432,716,0,9931,9939,3,1436,718,0,9932,9939,3,1444,722, + 0,9933,9939,3,1446,723,0,9934,9939,3,1448,724,0,9935,9939,3,1450, + 725,0,9936,9939,3,1452,726,0,9937,9939,3,1456,728,0,9938,9911,1, + 0,0,0,9938,9914,1,0,0,0,9938,9915,1,0,0,0,9938,9916,1,0,0,0,9938, + 9917,1,0,0,0,9938,9918,1,0,0,0,9938,9919,1,0,0,0,9938,9920,1,0,0, + 0,9938,9921,1,0,0,0,9938,9922,1,0,0,0,9938,9923,1,0,0,0,9938,9924, + 1,0,0,0,9938,9925,1,0,0,0,9938,9926,1,0,0,0,9938,9927,1,0,0,0,9938, + 9928,1,0,0,0,9938,9929,1,0,0,0,9938,9930,1,0,0,0,9938,9931,1,0,0, + 0,9938,9932,1,0,0,0,9938,9933,1,0,0,0,9938,9934,1,0,0,0,9938,9935, + 1,0,0,0,9938,9936,1,0,0,0,9938,9937,1,0,0,0,9939,1337,1,0,0,0,9940, + 9941,5,498,0,0,9941,9942,3,1486,743,0,9942,9943,5,7,0,0,9943,1339, + 1,0,0,0,9944,9945,5,433,0,0,9945,9946,3,1478,739,0,9946,9947,5,2, + 0,0,9947,9948,3,1342,671,0,9948,9949,5,3,0,0,9949,9950,5,7,0,0,9950, + 9959,1,0,0,0,9951,9952,5,57,0,0,9952,9953,3,1478,739,0,9953,9954, + 5,2,0,0,9954,9955,3,1342,671,0,9955,9956,5,3,0,0,9956,9957,5,7,0, + 0,9957,9959,1,0,0,0,9958,9944,1,0,0,0,9958,9951,1,0,0,0,9959,1341, + 1,0,0,0,9960,9963,1,0,0,0,9961,9963,3,1164,582,0,9962,9960,1,0,0, + 0,9962,9961,1,0,0,0,9963,1343,1,0,0,0,9964,9965,3,1358,679,0,9965, + 9966,3,1332,666,0,9966,9967,3,1482,741,0,9967,9968,5,7,0,0,9968, + 1345,1,0,0,0,9969,9970,5,499,0,0,9970,9971,3,1348,674,0,9971,9972, + 5,500,0,0,9972,9973,3,1350,675,0,9973,9974,5,7,0,0,9974,1347,1,0, + 0,0,9975,9979,1,0,0,0,9976,9979,5,434,0,0,9977,9979,5,501,0,0,9978, + 9975,1,0,0,0,9978,9976,1,0,0,0,9978,9977,1,0,0,0,9979,1349,1,0,0, + 0,9980,9985,3,1352,676,0,9981,9982,5,6,0,0,9982,9984,3,1352,676, + 0,9983,9981,1,0,0,0,9984,9987,1,0,0,0,9985,9983,1,0,0,0,9985,9986, + 1,0,0,0,9986,1351,1,0,0,0,9987,9985,1,0,0,0,9988,9989,3,1356,678, + 0,9989,9990,3,1332,666,0,9990,9991,3,1354,677,0,9991,1353,1,0,0, + 0,9992,9993,3,1254,627,0,9993,1355,1,0,0,0,9994,9995,3,1358,679, + 0,9995,1357,1,0,0,0,9996,9999,3,478,239,0,9997,9999,5,28,0,0,9998, + 9996,1,0,0,0,9998,9997,1,0,0,0,9999,10006,1,0,0,0,10000,10001,5, + 4,0,0,10001,10002,3,1488,744,0,10002,10003,5,5,0,0,10003,10005,1, + 0,0,0,10004,10000,1,0,0,0,10005,10008,1,0,0,0,10006,10004,1,0,0, + 0,10006,10007,1,0,0,0,10007,1359,1,0,0,0,10008,10006,1,0,0,0,10009, + 10010,5,220,0,0,10010,10011,3,1484,742,0,10011,10012,5,93,0,0,10012, + 10013,3,1334,667,0,10013,10014,3,1362,681,0,10014,10015,3,1364,682, + 0,10015,10016,5,454,0,0,10016,10017,5,220,0,0,10017,10018,5,7,0, + 0,10018,1361,1,0,0,0,10019,10020,5,502,0,0,10020,10021,3,1046,523, + 0,10021,10022,5,93,0,0,10022,10023,3,1334,667,0,10023,10025,1,0, + 0,0,10024,10019,1,0,0,0,10025,10028,1,0,0,0,10026,10024,1,0,0,0, + 10026,10027,1,0,0,0,10027,1363,1,0,0,0,10028,10026,1,0,0,0,10029, + 10033,1,0,0,0,10030,10031,5,58,0,0,10031,10033,3,1334,667,0,10032, + 10029,1,0,0,0,10032,10030,1,0,0,0,10033,1365,1,0,0,0,10034,10035, + 5,40,0,0,10035,10036,3,1368,684,0,10036,10037,3,1370,685,0,10037, + 10038,3,1374,687,0,10038,10039,5,454,0,0,10039,10040,5,40,0,0,10040, + 10041,5,7,0,0,10041,1367,1,0,0,0,10042,10045,1,0,0,0,10043,10045, + 3,1482,741,0,10044,10042,1,0,0,0,10044,10043,1,0,0,0,10045,1369, + 1,0,0,0,10046,10048,3,1372,686,0,10047,10046,1,0,0,0,10048,10049, + 1,0,0,0,10049,10047,1,0,0,0,10049,10050,1,0,0,0,10050,1371,1,0,0, + 0,10051,10052,5,102,0,0,10052,10053,3,1164,582,0,10053,10054,5,93, + 0,0,10054,10055,3,1334,667,0,10055,1373,1,0,0,0,10056,10060,1,0, + 0,0,10057,10058,5,58,0,0,10058,10060,3,1334,667,0,10059,10056,1, + 0,0,0,10059,10057,1,0,0,0,10060,1375,1,0,0,0,10061,10062,3,1472, + 736,0,10062,10063,3,1420,710,0,10063,1377,1,0,0,0,10064,10065,3, + 1472,736,0,10065,10066,5,503,0,0,10066,10067,3,1490,745,0,10067, + 10068,3,1420,710,0,10068,1379,1,0,0,0,10069,10070,3,1472,736,0,10070, + 10071,5,62,0,0,10071,10072,3,1382,691,0,10072,10073,3,1420,710,0, + 10073,1381,1,0,0,0,10074,10075,3,1392,696,0,10075,10091,5,68,0,0, + 10076,10077,3,864,432,0,10077,10078,3,1386,693,0,10078,10092,1,0, + 0,0,10079,10092,3,868,434,0,10080,10092,3,792,396,0,10081,10082, + 5,202,0,0,10082,10083,3,1046,523,0,10083,10084,3,1384,692,0,10084, + 10092,1,0,0,0,10085,10086,3,1388,694,0,10086,10087,3,1046,523,0, + 10087,10088,5,24,0,0,10088,10089,3,1046,523,0,10089,10090,3,1390, + 695,0,10090,10092,1,0,0,0,10091,10076,1,0,0,0,10091,10079,1,0,0, + 0,10091,10080,1,0,0,0,10091,10081,1,0,0,0,10091,10085,1,0,0,0,10092, + 1383,1,0,0,0,10093,10097,1,0,0,0,10094,10095,5,100,0,0,10095,10097, + 3,1164,582,0,10096,10093,1,0,0,0,10096,10094,1,0,0,0,10097,1385, + 1,0,0,0,10098,10111,1,0,0,0,10099,10100,5,2,0,0,10100,10105,3,1046, + 523,0,10101,10102,5,6,0,0,10102,10104,3,1046,523,0,10103,10101,1, + 0,0,0,10104,10107,1,0,0,0,10105,10103,1,0,0,0,10105,10106,1,0,0, + 0,10106,10108,1,0,0,0,10107,10105,1,0,0,0,10108,10109,5,3,0,0,10109, + 10111,1,0,0,0,10110,10098,1,0,0,0,10110,10099,1,0,0,0,10111,1387, + 1,0,0,0,10112,10115,1,0,0,0,10113,10115,5,504,0,0,10114,10112,1, + 0,0,0,10114,10113,1,0,0,0,10115,1389,1,0,0,0,10116,10120,1,0,0,0, + 10117,10118,5,147,0,0,10118,10120,3,1046,523,0,10119,10116,1,0,0, + 0,10119,10117,1,0,0,0,10120,1391,1,0,0,0,10121,10122,3,476,238,0, + 10122,1393,1,0,0,0,10123,10124,3,1472,736,0,10124,10125,5,505,0, + 0,10125,10126,3,1392,696,0,10126,10127,3,1396,698,0,10127,10128, + 5,68,0,0,10128,10129,5,35,0,0,10129,10130,3,1046,523,0,10130,10131, + 3,1420,710,0,10131,1395,1,0,0,0,10132,10136,1,0,0,0,10133,10134, + 5,506,0,0,10134,10136,3,1238,619,0,10135,10132,1,0,0,0,10135,10133, + 1,0,0,0,10136,1397,1,0,0,0,10137,10138,3,1400,700,0,10138,10139, + 3,1474,737,0,10139,10140,3,1476,738,0,10140,10141,5,7,0,0,10141, + 1399,1,0,0,0,10142,10143,7,66,0,0,10143,1401,1,0,0,0,10144,10156, + 5,508,0,0,10145,10146,5,261,0,0,10146,10157,3,1482,741,0,10147,10153, + 5,509,0,0,10148,10149,5,202,0,0,10149,10150,3,1046,523,0,10150,10151, + 3,1384,692,0,10151,10154,1,0,0,0,10152,10154,3,868,434,0,10153,10148, + 1,0,0,0,10153,10152,1,0,0,0,10154,10157,1,0,0,0,10155,10157,3,1404, + 702,0,10156,10145,1,0,0,0,10156,10147,1,0,0,0,10156,10155,1,0,0, + 0,10157,10158,1,0,0,0,10158,10159,5,7,0,0,10159,1403,1,0,0,0,10160, + 10163,1,0,0,0,10161,10163,3,1482,741,0,10162,10160,1,0,0,0,10162, + 10161,1,0,0,0,10163,1405,1,0,0,0,10164,10165,5,510,0,0,10165,10166, + 3,1408,704,0,10166,10167,3,1240,620,0,10167,10168,3,1410,705,0,10168, + 10169,3,1412,706,0,10169,10170,5,7,0,0,10170,10191,1,0,0,0,10171, + 10172,5,510,0,0,10172,10173,3,1408,704,0,10173,10174,3,1264,632, + 0,10174,10175,3,1412,706,0,10175,10176,5,7,0,0,10176,10191,1,0,0, + 0,10177,10178,5,510,0,0,10178,10179,3,1408,704,0,10179,10180,5,511, + 0,0,10180,10181,3,1240,620,0,10181,10182,3,1412,706,0,10182,10183, + 5,7,0,0,10183,10191,1,0,0,0,10184,10185,5,510,0,0,10185,10186,3, + 1408,704,0,10186,10187,3,1412,706,0,10187,10188,5,7,0,0,10188,10191, + 1,0,0,0,10189,10191,5,510,0,0,10190,10164,1,0,0,0,10190,10171,1, + 0,0,0,10190,10177,1,0,0,0,10190,10184,1,0,0,0,10190,10189,1,0,0, + 0,10191,1407,1,0,0,0,10192,10201,1,0,0,0,10193,10201,1,0,0,0,10194, + 10201,5,512,0,0,10195,10201,5,513,0,0,10196,10201,5,514,0,0,10197, + 10201,5,515,0,0,10198,10201,5,516,0,0,10199,10201,5,517,0,0,10200, + 10192,1,0,0,0,10200,10193,1,0,0,0,10200,10194,1,0,0,0,10200,10195, + 1,0,0,0,10200,10196,1,0,0,0,10200,10197,1,0,0,0,10200,10198,1,0, + 0,0,10200,10199,1,0,0,0,10201,1409,1,0,0,0,10202,10210,1,0,0,0,10203, + 10204,5,6,0,0,10204,10206,3,1046,523,0,10205,10203,1,0,0,0,10206, + 10207,1,0,0,0,10207,10205,1,0,0,0,10207,10208,1,0,0,0,10208,10210, + 1,0,0,0,10209,10202,1,0,0,0,10209,10205,1,0,0,0,10210,1411,1,0,0, + 0,10211,10222,1,0,0,0,10212,10213,5,100,0,0,10213,10218,3,1414,707, + 0,10214,10215,5,6,0,0,10215,10217,3,1414,707,0,10216,10214,1,0,0, + 0,10217,10220,1,0,0,0,10218,10216,1,0,0,0,10218,10219,1,0,0,0,10219, + 10222,1,0,0,0,10220,10218,1,0,0,0,10221,10211,1,0,0,0,10221,10212, + 1,0,0,0,10222,1413,1,0,0,0,10223,10224,3,1264,632,0,10224,10225, + 5,10,0,0,10225,10226,3,1046,523,0,10226,1415,1,0,0,0,10227,10228, + 5,518,0,0,10228,10229,3,1482,741,0,10229,10230,3,1418,709,0,10230, + 10231,5,7,0,0,10231,1417,1,0,0,0,10232,10236,1,0,0,0,10233,10234, + 5,6,0,0,10234,10236,3,1482,741,0,10235,10232,1,0,0,0,10235,10233, + 1,0,0,0,10236,1419,1,0,0,0,10237,10238,5,519,0,0,10238,10239,3,1334, + 667,0,10239,10240,5,454,0,0,10240,10241,5,519,0,0,10241,10242,3, + 1474,737,0,10242,10243,5,7,0,0,10243,1421,1,0,0,0,10244,10245,3, + 1492,746,0,10245,10246,5,7,0,0,10246,1423,1,0,0,0,10247,10248,5, + 202,0,0,10248,10256,3,1046,523,0,10249,10250,3,1430,715,0,10250, + 10251,3,1426,713,0,10251,10257,1,0,0,0,10252,10253,3,1426,713,0, + 10253,10254,3,1430,715,0,10254,10257,1,0,0,0,10255,10257,1,0,0,0, + 10256,10249,1,0,0,0,10256,10252,1,0,0,0,10256,10255,1,0,0,0,10257, + 10258,1,0,0,0,10258,10259,5,7,0,0,10259,1425,1,0,0,0,10260,10264, + 1,0,0,0,10261,10262,5,100,0,0,10262,10264,3,1428,714,0,10263,10260, + 1,0,0,0,10263,10261,1,0,0,0,10264,1427,1,0,0,0,10265,10270,3,1046, + 523,0,10266,10267,5,6,0,0,10267,10269,3,1046,523,0,10268,10266,1, + 0,0,0,10269,10272,1,0,0,0,10270,10268,1,0,0,0,10270,10271,1,0,0, + 0,10271,1429,1,0,0,0,10272,10270,1,0,0,0,10273,10280,1,0,0,0,10274, + 10276,5,71,0,0,10275,10277,5,339,0,0,10276,10275,1,0,0,0,10276,10277, + 1,0,0,0,10277,10278,1,0,0,0,10278,10280,3,1438,719,0,10279,10273, + 1,0,0,0,10279,10274,1,0,0,0,10280,1431,1,0,0,0,10281,10310,5,520, + 0,0,10282,10284,3,1458,729,0,10283,10285,5,262,0,0,10284,10283,1, + 0,0,0,10284,10285,1,0,0,0,10285,10286,1,0,0,0,10286,10287,5,317, + 0,0,10287,10294,5,62,0,0,10288,10295,3,868,434,0,10289,10290,5,202, + 0,0,10290,10291,3,1482,741,0,10291,10292,5,100,0,0,10292,10293,3, + 1164,582,0,10293,10295,1,0,0,0,10294,10288,1,0,0,0,10294,10289,1, + 0,0,0,10295,10311,1,0,0,0,10296,10308,3,1254,627,0,10297,10298,5, + 2,0,0,10298,10303,3,1434,717,0,10299,10300,5,6,0,0,10300,10302,3, + 1434,717,0,10301,10299,1,0,0,0,10302,10305,1,0,0,0,10303,10301,1, + 0,0,0,10303,10304,1,0,0,0,10304,10306,1,0,0,0,10305,10303,1,0,0, + 0,10306,10307,5,3,0,0,10307,10309,1,0,0,0,10308,10297,1,0,0,0,10308, + 10309,1,0,0,0,10309,10311,1,0,0,0,10310,10282,1,0,0,0,10310,10296, + 1,0,0,0,10311,10312,1,0,0,0,10312,10313,5,7,0,0,10313,1433,1,0,0, + 0,10314,10315,3,1254,627,0,10315,10316,5,20,0,0,10316,10317,3,1046, + 523,0,10317,10320,1,0,0,0,10318,10320,3,1046,523,0,10319,10314,1, + 0,0,0,10319,10318,1,0,0,0,10320,1435,1,0,0,0,10321,10322,5,61,0, + 0,10322,10323,3,1442,721,0,10323,10324,3,1440,720,0,10324,10325, + 3,1458,729,0,10325,10326,5,71,0,0,10326,10327,3,1438,719,0,10327, + 10328,5,7,0,0,10328,1437,1,0,0,0,10329,10330,3,1164,582,0,10330, + 1439,1,0,0,0,10331,10335,1,0,0,0,10332,10335,5,64,0,0,10333,10335, + 5,68,0,0,10334,10331,1,0,0,0,10334,10332,1,0,0,0,10334,10333,1,0, + 0,0,10335,1441,1,0,0,0,10336,10354,1,0,0,0,10337,10354,1,0,0,0,10338, + 10354,5,261,0,0,10339,10354,5,286,0,0,10340,10354,5,207,0,0,10341, + 10354,5,240,0,0,10342,10343,5,130,0,0,10343,10354,3,1046,523,0,10344, + 10345,5,300,0,0,10345,10354,3,1046,523,0,10346,10354,3,1046,523, + 0,10347,10354,5,30,0,0,10348,10351,7,67,0,0,10349,10352,3,1046,523, + 0,10350,10352,5,30,0,0,10351,10349,1,0,0,0,10351,10350,1,0,0,0,10351, + 10352,1,0,0,0,10352,10354,1,0,0,0,10353,10336,1,0,0,0,10353,10337, + 1,0,0,0,10353,10338,1,0,0,0,10353,10339,1,0,0,0,10353,10340,1,0, + 0,0,10353,10341,1,0,0,0,10353,10342,1,0,0,0,10353,10344,1,0,0,0, + 10353,10346,1,0,0,0,10353,10347,1,0,0,0,10353,10348,1,0,0,0,10354, + 1443,1,0,0,0,10355,10356,5,258,0,0,10356,10357,3,1442,721,0,10357, + 10358,3,1458,729,0,10358,10359,5,7,0,0,10359,1445,1,0,0,0,10360, + 10361,5,157,0,0,10361,10362,3,1458,729,0,10362,10363,5,7,0,0,10363, + 1447,1,0,0,0,10364,10365,5,78,0,0,10365,10366,5,7,0,0,10366,1449, + 1,0,0,0,10367,10368,5,161,0,0,10368,10369,3,1454,727,0,10369,10370, + 5,7,0,0,10370,1451,1,0,0,0,10371,10372,5,312,0,0,10372,10373,3,1454, + 727,0,10373,10374,5,7,0,0,10374,1453,1,0,0,0,10375,10377,5,33,0, + 0,10376,10378,5,262,0,0,10377,10376,1,0,0,0,10377,10378,1,0,0,0, + 10378,10379,1,0,0,0,10379,10382,5,153,0,0,10380,10382,1,0,0,0,10381, + 10375,1,0,0,0,10381,10380,1,0,0,0,10382,1455,1,0,0,0,10383,10384, + 5,326,0,0,10384,10385,3,478,239,0,10385,10386,5,94,0,0,10386,10387, + 5,53,0,0,10387,10388,5,7,0,0,10388,10396,1,0,0,0,10389,10392,5,306, + 0,0,10390,10393,3,478,239,0,10391,10393,5,30,0,0,10392,10390,1,0, + 0,0,10392,10391,1,0,0,0,10393,10394,1,0,0,0,10394,10396,5,7,0,0, + 10395,10383,1,0,0,0,10395,10389,1,0,0,0,10396,1457,1,0,0,0,10397, + 10400,3,1254,627,0,10398,10400,5,28,0,0,10399,10397,1,0,0,0,10399, + 10398,1,0,0,0,10400,1459,1,0,0,0,10401,10405,1,0,0,0,10402,10403, + 5,517,0,0,10403,10405,3,1462,731,0,10404,10401,1,0,0,0,10404,10402, + 1,0,0,0,10405,1461,1,0,0,0,10406,10408,3,1464,732,0,10407,10406, + 1,0,0,0,10408,10409,1,0,0,0,10409,10407,1,0,0,0,10409,10410,1,0, + 0,0,10410,1463,1,0,0,0,10411,10412,5,102,0,0,10412,10413,3,1466, + 733,0,10413,10414,5,93,0,0,10414,10415,3,1334,667,0,10415,1465,1, + 0,0,0,10416,10421,3,1468,734,0,10417,10418,5,82,0,0,10418,10420, + 3,1468,734,0,10419,10417,1,0,0,0,10420,10423,1,0,0,0,10421,10419, + 1,0,0,0,10421,10422,1,0,0,0,10422,1467,1,0,0,0,10423,10421,1,0,0, + 0,10424,10428,3,1478,739,0,10425,10426,5,511,0,0,10426,10428,3,1240, + 620,0,10427,10424,1,0,0,0,10427,10425,1,0,0,0,10428,1469,1,0,0,0, + 10429,10432,1,0,0,0,10430,10432,3,1298,649,0,10431,10429,1,0,0,0, + 10431,10430,1,0,0,0,10432,1471,1,0,0,0,10433,10436,1,0,0,0,10434, + 10436,3,1298,649,0,10435,10433,1,0,0,0,10435,10434,1,0,0,0,10436, + 1473,1,0,0,0,10437,10440,1,0,0,0,10438,10440,3,1478,739,0,10439, + 10437,1,0,0,0,10439,10438,1,0,0,0,10440,1475,1,0,0,0,10441,10442, + 5,102,0,0,10442,10445,3,1486,743,0,10443,10445,1,0,0,0,10444,10441, + 1,0,0,0,10444,10443,1,0,0,0,10445,1477,1,0,0,0,10446,10449,3,1254, + 627,0,10447,10449,3,1480,740,0,10448,10446,1,0,0,0,10448,10447,1, + 0,0,0,10449,1479,1,0,0,0,10450,10451,7,68,0,0,10451,1481,1,0,0,0, + 10452,10454,3,1210,605,0,10453,10455,3,888,444,0,10454,10453,1,0, + 0,0,10454,10455,1,0,0,0,10455,10456,1,0,0,0,10456,10457,3,946,473, + 0,10457,10458,3,982,491,0,10458,10459,3,928,464,0,10459,10460,3, + 934,467,0,10460,10461,3,1124,562,0,10461,1483,1,0,0,0,10462,10463, + 3,1482,741,0,10463,1485,1,0,0,0,10464,10465,3,1482,741,0,10465,1487, + 1,0,0,0,10466,10467,3,1046,523,0,10467,1489,1,0,0,0,10468,10469, + 3,1046,523,0,10469,1491,1,0,0,0,10470,10471,3,6,3,0,10471,10472, + 3,1494,747,0,10472,1493,1,0,0,0,10473,10475,5,71,0,0,10474,10476, + 5,339,0,0,10475,10474,1,0,0,0,10475,10476,1,0,0,0,10476,10477,1, + 0,0,0,10477,10480,3,1438,719,0,10478,10480,1,0,0,0,10479,10473,1, + 0,0,0,10479,10478,1,0,0,0,10480,1495,1,0,0,0,762,1497,1505,1511, + 1638,1642,1655,1660,1666,1672,1687,1699,1717,1722,1732,1756,1763, + 1769,1774,1783,1787,1799,1830,1837,1845,1850,1857,1863,1880,1885, + 1889,1902,1906,1911,1916,1928,1937,1950,1955,1966,1977,1982,1993, + 2004,2013,2023,2038,2050,2055,2062,2073,2331,2338,2343,2348,2353, + 2361,2370,2377,2387,2389,2394,2400,2406,2408,2436,2446,2459,2471, + 2485,2490,2494,2500,2514,2520,2527,2532,2539,2576,2579,2584,2591, + 2606,2612,2620,2653,2663,2667,2674,2681,2689,2695,2699,2709,2716, + 2727,2747,2761,2769,2774,2781,2791,2801,2821,2836,2861,2868,2875, + 2886,2891,2898,2909,2917,2928,2944,2952,2956,2970,2987,2992,2999, + 3008,3011,3016,3023,3034,3047,3060,3078,3081,3085,3092,3118,3122, + 3128,3138,3143,3152,3174,3176,3184,3191,3197,3206,3208,3212,3217, + 3223,3227,3240,3246,3255,3262,3272,3281,3391,3399,3411,3416,3424, + 3435,3443,3450,3463,3473,3487,3503,3511,3516,3521,3529,3531,3589, + 3606,3614,3637,3641,3661,3698,3707,3712,3717,3722,3727,3780,3786, + 3793,3803,3808,3813,3828,3832,3842,3848,3854,3861,3866,3871,3885, + 3913,3920,3934,3949,4001,4068,4076,4084,4092,4100,4114,4154,4160, + 4167,4183,4191,4198,4213,4218,4227,4254,4261,4276,4296,4316,4409, + 4434,4441,4457,4466,4471,4477,4484,4498,4647,4651,4744,4749,4753, + 4759,4827,4833,4862,4879,4886,4898,4958,4965,4971,4977,5003,5009, + 5015,5023,5037,5066,5072,5077,5092,5111,5115,5120,5127,5141,5154, + 5163,5169,5174,5178,5183,5190,5198,5208,5210,5217,5224,5232,5238, + 5245,5247,5254,5260,5264,5270,5275,5279,5284,5290,5296,5302,5308, + 5321,5330,5341,5347,5386,5396,5403,5414,5420,5430,5439,5442,5480, + 5494,5508,5532,5539,5549,5561,5566,5602,5609,5624,5671,5708,5719, + 5736,6206,6210,6215,6221,6232,6243,6256,6268,6279,6286,6505,6520, + 6531,6538,6731,6741,6749,6778,6794,6836,6850,6872,6879,6887,6891, + 6898,6907,6916,6925,6930,6971,6976,6988,6992,6997,7002,7006,7011, + 7027,7035,7040,7054,7057,7061,7066,7076,7087,7098,7108,7113,7149, + 7157,7161,7242,7246,7270,7275,7279,7282,7286,7296,7308,7315,7325, + 7330,7334,7341,7351,7355,7374,7380,7391,7398,7403,7416,7422,7451, + 7458,7470,7473,7485,7500,7506,7515,7531,7534,7545,7550,7554,7558, + 7563,7566,7572,7576,7578,7581,7588,7591,7598,7606,7609,7618,7623, + 7635,7648,7659,7662,7666,7672,7675,7690,7703,7710,7722,7724,7739, + 7743,7753,7762,7764,7774,7776,7778,7787,7797,7802,7807,7812,7815, + 7829,7833,7840,7855,7859,7863,7866,7879,7883,7888,7896,7902,7913, + 7920,7926,7930,7932,7936,7942,7951,7957,7959,7961,7968,7972,7981, + 7985,7995,8002,8024,8029,8034,8039,8048,8052,8055,8060,8073,8079, + 8087,8090,8097,8102,8123,8132,8137,8143,8148,8155,8160,8166,8168, + 8172,8179,8183,8186,8193,8198,8201,8208,8212,8221,8225,8233,8235, + 8242,8247,8250,8273,8279,8290,8295,8300,8307,8310,8314,8321,8338, + 8354,8357,8364,8368,8373,8383,8390,8399,8402,8407,8412,8420,8422, + 8428,8441,8443,8449,8455,8458,8467,8485,8492,8496,8500,8516,8523, + 8531,8535,8542,8555,8571,8577,8583,8590,8595,8601,8608,8616,8624, + 8629,8633,8639,8643,8647,8650,8656,8661,8677,8680,8682,8694,8696, + 8700,8706,8711,8719,8723,8732,8740,8746,8749,8758,8763,8770,8780, + 8806,8817,8819,8821,8829,8852,8860,8870,8884,8894,8898,8912,8919, + 8926,8933,8958,8987,9026,9028,9056,9077,9084,9097,9109,9115,9124, + 9141,9153,9162,9167,9174,9184,9187,9198,9204,9219,9227,9236,9245, + 9248,9253,9262,9267,9281,9291,9299,9313,9320,9328,9336,9343,9349, + 9358,9366,9376,9387,9394,9423,9432,9439,9450,9460,9464,9468,9473, + 9478,9482,9484,9487,9492,9497,9502,9509,9518,9520,9527,9532,9539, + 9555,9570,9584,9589,9608,9613,9618,9625,9632,9639,9648,9654,9660, + 9666,9674,9683,9741,9756,9779,9787,9791,9803,9805,9812,9821,9839, + 9847,9856,9863,9873,9879,9886,9891,9897,9901,9908,9938,9958,9962, + 9978,9985,9998,10006,10026,10032,10044,10049,10059,10091,10096,10105, + 10110,10114,10119,10135,10153,10156,10162,10190,10200,10207,10209, + 10218,10221,10235,10256,10263,10270,10276,10279,10284,10294,10303, + 10308,10310,10319,10334,10351,10353,10377,10381,10392,10395,10399, + 10404,10409,10421,10427,10431,10435,10439,10444,10448,10454,10475, + 10479 ]; private static __ATN: antlr.ATN; @@ -83826,8 +78300,8 @@ export class RootContext extends antlr.ParserRuleContext { public EOF(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EOF, 0)!; } - public stmtmulti(): StmtmultiContext | null { - return this.getRuleContext(0, StmtmultiContext); + public statements(): StatementsContext | null { + return this.getRuleContext(0, StatementsContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_root; @@ -83842,19 +78316,19 @@ export class RootContext extends antlr.ParserRuleContext { } -export class PlsqlrootContext extends antlr.ParserRuleContext { +export class PlsqlRootContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public pl_function(): Pl_functionContext { - return this.getRuleContext(0, Pl_functionContext)!; + public plsqlFunction(): PlsqlFunctionContext { + return this.getRuleContext(0, PlsqlFunctionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsqlroot; + return PostgreSqlParser.RULE_plsqlRoot; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsqlroot) { - return visitor.visitPlsqlroot(this); + if (visitor.visitPlsqlRoot) { + return visitor.visitPlsqlRoot(this); } else { return visitor.visitChildren(this); } @@ -83862,25 +78336,25 @@ export class PlsqlrootContext extends antlr.ParserRuleContext { } -export class StmtmultiContext extends antlr.ParserRuleContext { +export class StatementsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public stmt(): StmtContext { - return this.getRuleContext(0, StmtContext)!; + public statement(): StatementContext { + return this.getRuleContext(0, StatementContext)!; } public SEMI(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEMI, 0); } - public stmtmulti(): StmtmultiContext | null { - return this.getRuleContext(0, StmtmultiContext); + public statements(): StatementsContext | null { + return this.getRuleContext(0, StatementsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmtmulti; + return PostgreSqlParser.RULE_statements; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmtmulti) { - return visitor.visitStmtmulti(this); + if (visitor.visitStatements) { + return visitor.visitStatements(this); } else { return visitor.visitChildren(this); } @@ -83888,391 +78362,391 @@ export class StmtmultiContext extends antlr.ParserRuleContext { } -export class StmtContext extends antlr.ParserRuleContext { +export class StatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public altereventtrigstmt(): AltereventtrigstmtContext | null { - return this.getRuleContext(0, AltereventtrigstmtContext); + public alterEventTriggerStatement(): AlterEventTriggerStatementContext | null { + return this.getRuleContext(0, AlterEventTriggerStatementContext); } - public altercollationstmt(): AltercollationstmtContext | null { - return this.getRuleContext(0, AltercollationstmtContext); + public alterCollationStatement(): AlterCollationStatementContext | null { + return this.getRuleContext(0, AlterCollationStatementContext); } - public alterdatabasestmt(): AlterdatabasestmtContext | null { - return this.getRuleContext(0, AlterdatabasestmtContext); + public alterDatabaseStatement(): AlterDatabaseStatementContext | null { + return this.getRuleContext(0, AlterDatabaseStatementContext); } - public alterdatabasesetstmt(): AlterdatabasesetstmtContext | null { - return this.getRuleContext(0, AlterdatabasesetstmtContext); + public alterDatabaseSetStatement(): AlterDatabaseSetStatementContext | null { + return this.getRuleContext(0, AlterDatabaseSetStatementContext); } - public alterdefaultprivilegesstmt(): AlterdefaultprivilegesstmtContext | null { - return this.getRuleContext(0, AlterdefaultprivilegesstmtContext); + public alterDefaultPrivilegesStatement(): AlterDefaultPrivilegesStatementContext | null { + return this.getRuleContext(0, AlterDefaultPrivilegesStatementContext); } - public alterdomainstmt(): AlterdomainstmtContext | null { - return this.getRuleContext(0, AlterdomainstmtContext); + public alterDomainStatement(): AlterDomainStatementContext | null { + return this.getRuleContext(0, AlterDomainStatementContext); } - public alterenumstmt(): AlterenumstmtContext | null { - return this.getRuleContext(0, AlterenumstmtContext); + public alterEnumStatement(): AlterEnumStatementContext | null { + return this.getRuleContext(0, AlterEnumStatementContext); } - public alterextensionstmt(): AlterextensionstmtContext | null { - return this.getRuleContext(0, AlterextensionstmtContext); + public alterExtensionStatement(): AlterExtensionStatementContext | null { + return this.getRuleContext(0, AlterExtensionStatementContext); } - public alterextensioncontentsstmt(): AlterextensioncontentsstmtContext | null { - return this.getRuleContext(0, AlterextensioncontentsstmtContext); + public alterExtensionContentsStatement(): AlterExtensionContentsStatementContext | null { + return this.getRuleContext(0, AlterExtensionContentsStatementContext); } - public alterfdwstmt(): AlterfdwstmtContext | null { - return this.getRuleContext(0, AlterfdwstmtContext); + public alterForeignDataWrapperStatement(): AlterForeignDataWrapperStatementContext | null { + return this.getRuleContext(0, AlterForeignDataWrapperStatementContext); } - public alterforeignserverstmt(): AlterforeignserverstmtContext | null { - return this.getRuleContext(0, AlterforeignserverstmtContext); + public alterForeignServerStatement(): AlterForeignServerStatementContext | null { + return this.getRuleContext(0, AlterForeignServerStatementContext); } - public alterfunctionstmt(): AlterfunctionstmtContext | null { - return this.getRuleContext(0, AlterfunctionstmtContext); + public alterFunctionStatement(): AlterFunctionStatementContext | null { + return this.getRuleContext(0, AlterFunctionStatementContext); } - public altergroupstmt(): AltergroupstmtContext | null { - return this.getRuleContext(0, AltergroupstmtContext); + public alterGroupStatement(): AlterGroupStatementContext | null { + return this.getRuleContext(0, AlterGroupStatementContext); } - public alterobjectdependsstmt(): AlterobjectdependsstmtContext | null { - return this.getRuleContext(0, AlterobjectdependsstmtContext); + public alterObjectDependsStatement(): AlterObjectDependsStatementContext | null { + return this.getRuleContext(0, AlterObjectDependsStatementContext); } - public alterobjectschemastmt(): AlterobjectschemastmtContext | null { - return this.getRuleContext(0, AlterobjectschemastmtContext); + public alterObjectSchemaStatement(): AlterObjectSchemaStatementContext | null { + return this.getRuleContext(0, AlterObjectSchemaStatementContext); } - public alterownerstmt(): AlterownerstmtContext | null { - return this.getRuleContext(0, AlterownerstmtContext); + public alterOwnerStatement(): AlterOwnerStatementContext | null { + return this.getRuleContext(0, AlterOwnerStatementContext); } - public alteroperatorstmt(): AlteroperatorstmtContext | null { - return this.getRuleContext(0, AlteroperatorstmtContext); + public alterOperatorStatement(): AlterOperatorStatementContext | null { + return this.getRuleContext(0, AlterOperatorStatementContext); } - public altertypestmt(): AltertypestmtContext | null { - return this.getRuleContext(0, AltertypestmtContext); + public alterTypeStatement(): AlterTypeStatementContext | null { + return this.getRuleContext(0, AlterTypeStatementContext); } - public alterpolicystmt(): AlterpolicystmtContext | null { - return this.getRuleContext(0, AlterpolicystmtContext); + public alterPolicyStatement(): AlterPolicyStatementContext | null { + return this.getRuleContext(0, AlterPolicyStatementContext); } - public alterseqstmt(): AlterseqstmtContext | null { - return this.getRuleContext(0, AlterseqstmtContext); + public alterSequenceStatement(): AlterSequenceStatementContext | null { + return this.getRuleContext(0, AlterSequenceStatementContext); } - public altersystemstmt(): AltersystemstmtContext | null { - return this.getRuleContext(0, AltersystemstmtContext); + public alterSystemStatement(): AlterSystemStatementContext | null { + return this.getRuleContext(0, AlterSystemStatementContext); } - public altertablestmt(): AltertablestmtContext | null { - return this.getRuleContext(0, AltertablestmtContext); + public alterTableStatement(): AlterTableStatementContext | null { + return this.getRuleContext(0, AlterTableStatementContext); } - public altertblspcstmt(): AltertblspcstmtContext | null { - return this.getRuleContext(0, AltertblspcstmtContext); + public alterTablespaceStatement(): AlterTablespaceStatementContext | null { + return this.getRuleContext(0, AlterTablespaceStatementContext); } - public altercompositetypestmt(): AltercompositetypestmtContext | null { - return this.getRuleContext(0, AltercompositetypestmtContext); + public alterCompositeTypeStatement(): AlterCompositeTypeStatementContext | null { + return this.getRuleContext(0, AlterCompositeTypeStatementContext); } - public alterpublicationstmt(): AlterpublicationstmtContext | null { - return this.getRuleContext(0, AlterpublicationstmtContext); + public alterPublicationStatement(): AlterPublicationStatementContext | null { + return this.getRuleContext(0, AlterPublicationStatementContext); } - public alterrolesetstmt(): AlterrolesetstmtContext | null { - return this.getRuleContext(0, AlterrolesetstmtContext); + public alterRoleSetStatement(): AlterRoleSetStatementContext | null { + return this.getRuleContext(0, AlterRoleSetStatementContext); } - public alterrolestmt(): AlterrolestmtContext | null { - return this.getRuleContext(0, AlterrolestmtContext); + public alterRoleStatement(): AlterRoleStatementContext | null { + return this.getRuleContext(0, AlterRoleStatementContext); } - public altersubscriptionstmt(): AltersubscriptionstmtContext | null { - return this.getRuleContext(0, AltersubscriptionstmtContext); + public alterSubscriptionStatement(): AlterSubscriptionStatementContext | null { + return this.getRuleContext(0, AlterSubscriptionStatementContext); } - public alterstatsstmt(): AlterstatsstmtContext | null { - return this.getRuleContext(0, AlterstatsstmtContext); + public alterStatsStatement(): AlterStatsStatementContext | null { + return this.getRuleContext(0, AlterStatsStatementContext); } - public altertsconfigurationstmt(): AltertsconfigurationstmtContext | null { - return this.getRuleContext(0, AltertsconfigurationstmtContext); + public altertsConfigurationStatement(): AltertsConfigurationStatementContext | null { + return this.getRuleContext(0, AltertsConfigurationStatementContext); } - public altertsdictionarystmt(): AltertsdictionarystmtContext | null { - return this.getRuleContext(0, AltertsdictionarystmtContext); + public altertsDictionaryStatement(): AltertsDictionaryStatementContext | null { + return this.getRuleContext(0, AltertsDictionaryStatementContext); } - public alterusermappingstmt(): AlterusermappingstmtContext | null { - return this.getRuleContext(0, AlterusermappingstmtContext); + public alterUserMappingStatement(): AlterUserMappingStatementContext | null { + return this.getRuleContext(0, AlterUserMappingStatementContext); } - public analyzestmt(): AnalyzestmtContext | null { - return this.getRuleContext(0, AnalyzestmtContext); + public analyzeStatement(): AnalyzeStatementContext | null { + return this.getRuleContext(0, AnalyzeStatementContext); } - public callstmt(): CallstmtContext | null { - return this.getRuleContext(0, CallstmtContext); + public callStatement(): CallStatementContext | null { + return this.getRuleContext(0, CallStatementContext); } - public checkpointstmt(): CheckpointstmtContext | null { - return this.getRuleContext(0, CheckpointstmtContext); + public checkpointStatement(): CheckpointStatementContext | null { + return this.getRuleContext(0, CheckpointStatementContext); } - public closeportalstmt(): CloseportalstmtContext | null { - return this.getRuleContext(0, CloseportalstmtContext); + public closePortalStatement(): ClosePortalStatementContext | null { + return this.getRuleContext(0, ClosePortalStatementContext); } - public clusterstmt(): ClusterstmtContext | null { - return this.getRuleContext(0, ClusterstmtContext); + public clusterStatement(): ClusterStatementContext | null { + return this.getRuleContext(0, ClusterStatementContext); } - public commentstmt(): CommentstmtContext | null { - return this.getRuleContext(0, CommentstmtContext); + public commentStatement(): CommentStatementContext | null { + return this.getRuleContext(0, CommentStatementContext); } - public constraintssetstmt(): ConstraintssetstmtContext | null { - return this.getRuleContext(0, ConstraintssetstmtContext); + public setConstraintsStatement(): SetConstraintsStatementContext | null { + return this.getRuleContext(0, SetConstraintsStatementContext); } - public copystmt(): CopystmtContext | null { - return this.getRuleContext(0, CopystmtContext); + public copyStatement(): CopyStatementContext | null { + return this.getRuleContext(0, CopyStatementContext); } - public createamstmt(): CreateamstmtContext | null { - return this.getRuleContext(0, CreateamstmtContext); + public createAccessMethodStatement(): CreateAccessMethodStatementContext | null { + return this.getRuleContext(0, CreateAccessMethodStatementContext); } - public createasstmt(): CreateasstmtContext | null { - return this.getRuleContext(0, CreateasstmtContext); + public createAsStatement(): CreateAsStatementContext | null { + return this.getRuleContext(0, CreateAsStatementContext); } - public createassertionstmt(): CreateassertionstmtContext | null { - return this.getRuleContext(0, CreateassertionstmtContext); + public createAssertionStatement(): CreateAssertionStatementContext | null { + return this.getRuleContext(0, CreateAssertionStatementContext); } - public createcaststmt(): CreatecaststmtContext | null { - return this.getRuleContext(0, CreatecaststmtContext); + public createCastStatement(): CreateCastStatementContext | null { + return this.getRuleContext(0, CreateCastStatementContext); } - public createconversionstmt(): CreateconversionstmtContext | null { - return this.getRuleContext(0, CreateconversionstmtContext); + public createConversionStatement(): CreateConversionStatementContext | null { + return this.getRuleContext(0, CreateConversionStatementContext); } - public createdomainstmt(): CreatedomainstmtContext | null { - return this.getRuleContext(0, CreatedomainstmtContext); + public createDomainStatement(): CreateDomainStatementContext | null { + return this.getRuleContext(0, CreateDomainStatementContext); } - public createextensionstmt(): CreateextensionstmtContext | null { - return this.getRuleContext(0, CreateextensionstmtContext); + public createExtensionStatement(): CreateExtensionStatementContext | null { + return this.getRuleContext(0, CreateExtensionStatementContext); } - public createfdwstmt(): CreatefdwstmtContext | null { - return this.getRuleContext(0, CreatefdwstmtContext); + public createForeignDataWrapperStatement(): CreateForeignDataWrapperStatementContext | null { + return this.getRuleContext(0, CreateForeignDataWrapperStatementContext); } - public createforeignserverstmt(): CreateforeignserverstmtContext | null { - return this.getRuleContext(0, CreateforeignserverstmtContext); + public createForeignServerStatement(): CreateForeignServerStatementContext | null { + return this.getRuleContext(0, CreateForeignServerStatementContext); } - public createforeigntablestmt(): CreateforeigntablestmtContext | null { - return this.getRuleContext(0, CreateforeigntablestmtContext); + public createForeignTableStatement(): CreateForeignTableStatementContext | null { + return this.getRuleContext(0, CreateForeignTableStatementContext); } - public createfunctionstmt(): CreatefunctionstmtContext | null { - return this.getRuleContext(0, CreatefunctionstmtContext); + public createFunctionStatement(): CreateFunctionStatementContext | null { + return this.getRuleContext(0, CreateFunctionStatementContext); } - public creategroupstmt(): CreategroupstmtContext | null { - return this.getRuleContext(0, CreategroupstmtContext); + public createGroupStatement(): CreateGroupStatementContext | null { + return this.getRuleContext(0, CreateGroupStatementContext); } - public creatematviewstmt(): CreatematviewstmtContext | null { - return this.getRuleContext(0, CreatematviewstmtContext); + public createMaterializedViewStatement(): CreateMaterializedViewStatementContext | null { + return this.getRuleContext(0, CreateMaterializedViewStatementContext); } - public createopclassstmt(): CreateopclassstmtContext | null { - return this.getRuleContext(0, CreateopclassstmtContext); + public createOperatorClassStatement(): CreateOperatorClassStatementContext | null { + return this.getRuleContext(0, CreateOperatorClassStatementContext); } - public createopfamilystmt(): CreateopfamilystmtContext | null { - return this.getRuleContext(0, CreateopfamilystmtContext); + public createOperatorFamilyStatement(): CreateOperatorFamilyStatementContext | null { + return this.getRuleContext(0, CreateOperatorFamilyStatementContext); } - public createpublicationstmt(): CreatepublicationstmtContext | null { - return this.getRuleContext(0, CreatepublicationstmtContext); + public createPublicationStatement(): CreatePublicationStatementContext | null { + return this.getRuleContext(0, CreatePublicationStatementContext); } - public alteropfamilystmt(): AlteropfamilystmtContext | null { - return this.getRuleContext(0, AlteropfamilystmtContext); + public alterOperatorFamilyStatement(): AlterOperatorFamilyStatementContext | null { + return this.getRuleContext(0, AlterOperatorFamilyStatementContext); } - public createpolicystmt(): CreatepolicystmtContext | null { - return this.getRuleContext(0, CreatepolicystmtContext); + public createPolicyStatement(): CreatePolicyStatementContext | null { + return this.getRuleContext(0, CreatePolicyStatementContext); } - public createplangstmt(): CreateplangstmtContext | null { - return this.getRuleContext(0, CreateplangstmtContext); + public createProcedureLangStatement(): CreateProcedureLangStatementContext | null { + return this.getRuleContext(0, CreateProcedureLangStatementContext); } - public createschemastmt(): CreateschemastmtContext | null { - return this.getRuleContext(0, CreateschemastmtContext); + public createSchemaStatement(): CreateSchemaStatementContext | null { + return this.getRuleContext(0, CreateSchemaStatementContext); } - public createseqstmt(): CreateseqstmtContext | null { - return this.getRuleContext(0, CreateseqstmtContext); + public createSequenceStatement(): CreateSequenceStatementContext | null { + return this.getRuleContext(0, CreateSequenceStatementContext); } - public createstmt(): CreatestmtContext | null { - return this.getRuleContext(0, CreatestmtContext); + public createStatement(): CreateStatementContext | null { + return this.getRuleContext(0, CreateStatementContext); } - public createsubscriptionstmt(): CreatesubscriptionstmtContext | null { - return this.getRuleContext(0, CreatesubscriptionstmtContext); + public createSubscriptionStatement(): CreateSubscriptionStatementContext | null { + return this.getRuleContext(0, CreateSubscriptionStatementContext); } - public createstatsstmt(): CreatestatsstmtContext | null { - return this.getRuleContext(0, CreatestatsstmtContext); + public createStatsStatement(): CreateStatsStatementContext | null { + return this.getRuleContext(0, CreateStatsStatementContext); } - public createtablespacestmt(): CreatetablespacestmtContext | null { - return this.getRuleContext(0, CreatetablespacestmtContext); + public createTablespaceStatement(): CreateTablespaceStatementContext | null { + return this.getRuleContext(0, CreateTablespaceStatementContext); } - public createtransformstmt(): CreatetransformstmtContext | null { - return this.getRuleContext(0, CreatetransformstmtContext); + public createTransformStatement(): CreateTransformStatementContext | null { + return this.getRuleContext(0, CreateTransformStatementContext); } - public createtrigstmt(): CreatetrigstmtContext | null { - return this.getRuleContext(0, CreatetrigstmtContext); + public createTriggerStatement(): CreateTriggerStatementContext | null { + return this.getRuleContext(0, CreateTriggerStatementContext); } - public createeventtrigstmt(): CreateeventtrigstmtContext | null { - return this.getRuleContext(0, CreateeventtrigstmtContext); + public createEventTriggerStatement(): CreateEventTriggerStatementContext | null { + return this.getRuleContext(0, CreateEventTriggerStatementContext); } - public createrolestmt(): CreaterolestmtContext | null { - return this.getRuleContext(0, CreaterolestmtContext); + public createRoleStatement(): CreateRoleStatementContext | null { + return this.getRuleContext(0, CreateRoleStatementContext); } - public createuserstmt(): CreateuserstmtContext | null { - return this.getRuleContext(0, CreateuserstmtContext); + public createUserStatement(): CreateUserStatementContext | null { + return this.getRuleContext(0, CreateUserStatementContext); } - public createusermappingstmt(): CreateusermappingstmtContext | null { - return this.getRuleContext(0, CreateusermappingstmtContext); + public createUserMappingStatement(): CreateUserMappingStatementContext | null { + return this.getRuleContext(0, CreateUserMappingStatementContext); } - public createdbstmt(): CreatedbstmtContext | null { - return this.getRuleContext(0, CreatedbstmtContext); + public createDatabaseStatement(): CreateDatabaseStatementContext | null { + return this.getRuleContext(0, CreateDatabaseStatementContext); } - public deallocatestmt(): DeallocatestmtContext | null { - return this.getRuleContext(0, DeallocatestmtContext); + public deallocateStatement(): DeallocateStatementContext | null { + return this.getRuleContext(0, DeallocateStatementContext); } - public declarecursorstmt(): DeclarecursorstmtContext | null { - return this.getRuleContext(0, DeclarecursorstmtContext); + public declareCursorStatement(): DeclareCursorStatementContext | null { + return this.getRuleContext(0, DeclareCursorStatementContext); } - public definestmt(): DefinestmtContext | null { - return this.getRuleContext(0, DefinestmtContext); + public defineStatement(): DefineStatementContext | null { + return this.getRuleContext(0, DefineStatementContext); } - public deletestmt(): DeletestmtContext | null { - return this.getRuleContext(0, DeletestmtContext); + public deleteStatement(): DeleteStatementContext | null { + return this.getRuleContext(0, DeleteStatementContext); } - public discardstmt(): DiscardstmtContext | null { - return this.getRuleContext(0, DiscardstmtContext); + public discardStatement(): DiscardStatementContext | null { + return this.getRuleContext(0, DiscardStatementContext); } - public dostmt(): DostmtContext | null { - return this.getRuleContext(0, DostmtContext); + public doStatement(): DoStatementContext | null { + return this.getRuleContext(0, DoStatementContext); } - public dropcaststmt(): DropcaststmtContext | null { - return this.getRuleContext(0, DropcaststmtContext); + public dropCastStatement(): DropCastStatementContext | null { + return this.getRuleContext(0, DropCastStatementContext); } - public dropopclassstmt(): DropopclassstmtContext | null { - return this.getRuleContext(0, DropopclassstmtContext); + public dropOperatorClassStatement(): DropOperatorClassStatementContext | null { + return this.getRuleContext(0, DropOperatorClassStatementContext); } - public dropopfamilystmt(): DropopfamilystmtContext | null { - return this.getRuleContext(0, DropopfamilystmtContext); + public dropOperatorFamilyStatement(): DropOperatorFamilyStatementContext | null { + return this.getRuleContext(0, DropOperatorFamilyStatementContext); } - public dropownedstmt(): DropownedstmtContext | null { - return this.getRuleContext(0, DropownedstmtContext); + public dropOwnedStatement(): DropOwnedStatementContext | null { + return this.getRuleContext(0, DropOwnedStatementContext); } - public dropstmt(): DropstmtContext | null { - return this.getRuleContext(0, DropstmtContext); + public dropStatement(): DropStatementContext | null { + return this.getRuleContext(0, DropStatementContext); } - public dropsubscriptionstmt(): DropsubscriptionstmtContext | null { - return this.getRuleContext(0, DropsubscriptionstmtContext); + public dropSubscriptionStatement(): DropSubscriptionStatementContext | null { + return this.getRuleContext(0, DropSubscriptionStatementContext); } - public droptablespacestmt(): DroptablespacestmtContext | null { - return this.getRuleContext(0, DroptablespacestmtContext); + public dropTablespaceStatement(): DropTablespaceStatementContext | null { + return this.getRuleContext(0, DropTablespaceStatementContext); } - public droptransformstmt(): DroptransformstmtContext | null { - return this.getRuleContext(0, DroptransformstmtContext); + public dropTransformStatement(): DropTransformStatementContext | null { + return this.getRuleContext(0, DropTransformStatementContext); } - public droprolestmt(): DroprolestmtContext | null { - return this.getRuleContext(0, DroprolestmtContext); + public dropRoleStatement(): DropRoleStatementContext | null { + return this.getRuleContext(0, DropRoleStatementContext); } - public dropusermappingstmt(): DropusermappingstmtContext | null { - return this.getRuleContext(0, DropusermappingstmtContext); + public dropUserMappingStatement(): DropUserMappingStatementContext | null { + return this.getRuleContext(0, DropUserMappingStatementContext); } - public dropdbstmt(): DropdbstmtContext | null { - return this.getRuleContext(0, DropdbstmtContext); + public dropDatabaseStatement(): DropDatabaseStatementContext | null { + return this.getRuleContext(0, DropDatabaseStatementContext); } - public executestmt(): ExecutestmtContext | null { - return this.getRuleContext(0, ExecutestmtContext); + public executeStatement(): ExecuteStatementContext | null { + return this.getRuleContext(0, ExecuteStatementContext); } - public explainstmt(): ExplainstmtContext | null { - return this.getRuleContext(0, ExplainstmtContext); + public explainStatement(): ExplainStatementContext | null { + return this.getRuleContext(0, ExplainStatementContext); } - public fetchstmt(): FetchstmtContext | null { - return this.getRuleContext(0, FetchstmtContext); + public fetchStatement(): FetchStatementContext | null { + return this.getRuleContext(0, FetchStatementContext); } - public grantstmt(): GrantstmtContext | null { - return this.getRuleContext(0, GrantstmtContext); + public grantStatement(): GrantStatementContext | null { + return this.getRuleContext(0, GrantStatementContext); } - public grantrolestmt(): GrantrolestmtContext | null { - return this.getRuleContext(0, GrantrolestmtContext); + public grantRoleStatement(): GrantRoleStatementContext | null { + return this.getRuleContext(0, GrantRoleStatementContext); } - public importforeignschemastmt(): ImportforeignschemastmtContext | null { - return this.getRuleContext(0, ImportforeignschemastmtContext); + public importForeignSchemaStatement(): ImportForeignSchemaStatementContext | null { + return this.getRuleContext(0, ImportForeignSchemaStatementContext); } - public indexstmt(): IndexstmtContext | null { - return this.getRuleContext(0, IndexstmtContext); + public indexStatement(): IndexStatementContext | null { + return this.getRuleContext(0, IndexStatementContext); } - public insertstmt(): InsertstmtContext | null { - return this.getRuleContext(0, InsertstmtContext); + public insertStatement(): InsertStatementContext | null { + return this.getRuleContext(0, InsertStatementContext); } - public mergestmt(): MergestmtContext | null { - return this.getRuleContext(0, MergestmtContext); + public mergeStatement(): MergeStatementContext | null { + return this.getRuleContext(0, MergeStatementContext); } - public listenstmt(): ListenstmtContext | null { - return this.getRuleContext(0, ListenstmtContext); + public listenStatement(): ListenStatementContext | null { + return this.getRuleContext(0, ListenStatementContext); } - public refreshmatviewstmt(): RefreshmatviewstmtContext | null { - return this.getRuleContext(0, RefreshmatviewstmtContext); + public refreshMaterializedViewStatement(): RefreshMaterializedViewStatementContext | null { + return this.getRuleContext(0, RefreshMaterializedViewStatementContext); } - public loadstmt(): LoadstmtContext | null { - return this.getRuleContext(0, LoadstmtContext); + public loadStatement(): LoadStatementContext | null { + return this.getRuleContext(0, LoadStatementContext); } - public lockstmt(): LockstmtContext | null { - return this.getRuleContext(0, LockstmtContext); + public lockStatement(): LockStatementContext | null { + return this.getRuleContext(0, LockStatementContext); } - public notifystmt(): NotifystmtContext | null { - return this.getRuleContext(0, NotifystmtContext); + public notifyStatement(): NotifyStatementContext | null { + return this.getRuleContext(0, NotifyStatementContext); } - public preparestmt(): PreparestmtContext | null { - return this.getRuleContext(0, PreparestmtContext); + public prepareStatement(): PrepareStatementContext | null { + return this.getRuleContext(0, PrepareStatementContext); } - public reassignownedstmt(): ReassignownedstmtContext | null { - return this.getRuleContext(0, ReassignownedstmtContext); + public reassignOwnedStatement(): ReassignOwnedStatementContext | null { + return this.getRuleContext(0, ReassignOwnedStatementContext); } - public reindexstmt(): ReindexstmtContext | null { - return this.getRuleContext(0, ReindexstmtContext); + public reindexStatement(): ReindexStatementContext | null { + return this.getRuleContext(0, ReindexStatementContext); } - public removeaggrstmt(): RemoveaggrstmtContext | null { - return this.getRuleContext(0, RemoveaggrstmtContext); + public removeAggregateStatement(): RemoveAggregateStatementContext | null { + return this.getRuleContext(0, RemoveAggregateStatementContext); } - public removefuncstmt(): RemovefuncstmtContext | null { - return this.getRuleContext(0, RemovefuncstmtContext); + public removeFunctionStatement(): RemoveFunctionStatementContext | null { + return this.getRuleContext(0, RemoveFunctionStatementContext); } - public removeoperstmt(): RemoveoperstmtContext | null { - return this.getRuleContext(0, RemoveoperstmtContext); + public removeOperatorStatement(): RemoveOperatorStatementContext | null { + return this.getRuleContext(0, RemoveOperatorStatementContext); } - public renamestmt(): RenamestmtContext | null { - return this.getRuleContext(0, RenamestmtContext); + public renameStatement(): RenameStatementContext | null { + return this.getRuleContext(0, RenameStatementContext); } - public revokestmt(): RevokestmtContext | null { - return this.getRuleContext(0, RevokestmtContext); + public revokeStatement(): RevokeStatementContext | null { + return this.getRuleContext(0, RevokeStatementContext); } - public revokerolestmt(): RevokerolestmtContext | null { - return this.getRuleContext(0, RevokerolestmtContext); + public revokeRoleStatement(): RevokeRoleStatementContext | null { + return this.getRuleContext(0, RevokeRoleStatementContext); } - public rulestmt(): RulestmtContext | null { - return this.getRuleContext(0, RulestmtContext); + public ruleStatement(): RuleStatementContext | null { + return this.getRuleContext(0, RuleStatementContext); } - public seclabelstmt(): SeclabelstmtContext | null { - return this.getRuleContext(0, SeclabelstmtContext); + public securityLabelStatement(): SecurityLabelStatementContext | null { + return this.getRuleContext(0, SecurityLabelStatementContext); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public transactionstmt(): TransactionstmtContext | null { - return this.getRuleContext(0, TransactionstmtContext); + public transactionStatement(): TransactionStatementContext | null { + return this.getRuleContext(0, TransactionStatementContext); } - public truncatestmt(): TruncatestmtContext | null { - return this.getRuleContext(0, TruncatestmtContext); + public truncateStatement(): TruncateStatementContext | null { + return this.getRuleContext(0, TruncateStatementContext); } - public unlistenstmt(): UnlistenstmtContext | null { - return this.getRuleContext(0, UnlistenstmtContext); + public unlistenStatement(): UnlistenStatementContext | null { + return this.getRuleContext(0, UnlistenStatementContext); } - public updatestmt(): UpdatestmtContext | null { - return this.getRuleContext(0, UpdatestmtContext); + public updateStatement(): UpdateStatementContext | null { + return this.getRuleContext(0, UpdateStatementContext); } - public vacuumstmt(): VacuumstmtContext | null { - return this.getRuleContext(0, VacuumstmtContext); + public vacuumStatement(): VacuumStatementContext | null { + return this.getRuleContext(0, VacuumStatementContext); } - public variableresetstmt(): VariableresetstmtContext | null { - return this.getRuleContext(0, VariableresetstmtContext); + public variableResetStatement(): VariableResetStatementContext | null { + return this.getRuleContext(0, VariableResetStatementContext); } - public variablesetstmt(): VariablesetstmtContext | null { - return this.getRuleContext(0, VariablesetstmtContext); + public variableSetStatement(): VariableSetStatementContext | null { + return this.getRuleContext(0, VariableSetStatementContext); } - public variableshowstmt(): VariableshowstmtContext | null { - return this.getRuleContext(0, VariableshowstmtContext); + public variableShowStatement(): VariableShowStatementContext | null { + return this.getRuleContext(0, VariableShowStatementContext); } - public viewstmt(): ViewstmtContext | null { - return this.getRuleContext(0, ViewstmtContext); + public viewStatement(): ViewStatementContext | null { + return this.getRuleContext(0, ViewStatementContext); } - public plsqlconsolecommand(): PlsqlconsolecommandContext | null { - return this.getRuleContext(0, PlsqlconsolecommandContext); + public plsqlConsoleCommand(): PlsqlConsoleCommandContext | null { + return this.getRuleContext(0, PlsqlConsoleCommandContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt; + return PostgreSqlParser.RULE_statement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt) { - return visitor.visitStmt(this); + if (visitor.visitStatement) { + return visitor.visitStatement(this); } else { return visitor.visitChildren(this); } @@ -84280,7 +78754,7 @@ export class StmtContext extends antlr.ParserRuleContext { } -export class PlsqlconsolecommandContext extends antlr.ParserRuleContext { +export class PlsqlConsoleCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84291,11 +78765,11 @@ export class PlsqlconsolecommandContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EndMetaCommand, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsqlconsolecommand; + return PostgreSqlParser.RULE_plsqlConsoleCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsqlconsolecommand) { - return visitor.visitPlsqlconsolecommand(this); + if (visitor.visitPlsqlConsoleCommand) { + return visitor.visitPlsqlConsoleCommand(this); } else { return visitor.visitChildren(this); } @@ -84303,22 +78777,22 @@ export class PlsqlconsolecommandContext extends antlr.ParserRuleContext { } -export class CallstmtContext extends antlr.ParserRuleContext { +export class CallStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CALL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CALL, 0)!; } - public func_application(): Func_applicationContext { - return this.getRuleContext(0, Func_applicationContext)!; + public functionApplication(): FunctionApplicationContext { + return this.getRuleContext(0, FunctionApplicationContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_callstmt; + return PostgreSqlParser.RULE_callStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCallstmt) { - return visitor.visitCallstmt(this); + if (visitor.visitCallStatement) { + return visitor.visitCallStatement(this); } else { return visitor.visitChildren(this); } @@ -84326,7 +78800,7 @@ export class CallstmtContext extends antlr.ParserRuleContext { } -export class CreaterolestmtContext extends antlr.ParserRuleContext { +export class CreateRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84336,21 +78810,21 @@ export class CreaterolestmtContext extends antlr.ParserRuleContext { public ROLE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ROLE, 0)!; } - public roleid(): RoleidContext { - return this.getRuleContext(0, RoleidContext)!; + public roleId(): RoleIdContext { + return this.getRuleContext(0, RoleIdContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public optrolelist(): OptrolelistContext { - return this.getRuleContext(0, OptrolelistContext)!; + public optionalRoleList(): OptionalRoleListContext { + return this.getRuleContext(0, OptionalRoleListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createrolestmt; + return PostgreSqlParser.RULE_createRoleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreaterolestmt) { - return visitor.visitCreaterolestmt(this); + if (visitor.visitCreateRoleStatement) { + return visitor.visitCreateRoleStatement(this); } else { return visitor.visitChildren(this); } @@ -84358,7 +78832,7 @@ export class CreaterolestmtContext extends antlr.ParserRuleContext { } -export class Opt_withContext extends antlr.ParserRuleContext { +export class OptionalWithContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84366,11 +78840,11 @@ export class Opt_withContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.WITH, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_with; + return PostgreSqlParser.RULE_optionalWith; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_with) { - return visitor.visitOpt_with(this); + if (visitor.visitOptionalWith) { + return visitor.visitOptionalWith(this); } else { return visitor.visitChildren(this); } @@ -84378,25 +78852,25 @@ export class Opt_withContext extends antlr.ParserRuleContext { } -export class OptrolelistContext extends antlr.ParserRuleContext { +export class OptionalRoleListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public createoptroleelem(): CreateoptroleelemContext[]; - public createoptroleelem(i: number): CreateoptroleelemContext | null; - public createoptroleelem(i?: number): CreateoptroleelemContext[] | CreateoptroleelemContext | null { + public createRoleElement(): CreateRoleElementContext[]; + public createRoleElement(i: number): CreateRoleElementContext | null; + public createRoleElement(i?: number): CreateRoleElementContext[] | CreateRoleElementContext | null { if (i === undefined) { - return this.getRuleContexts(CreateoptroleelemContext); + return this.getRuleContexts(CreateRoleElementContext); } - return this.getRuleContext(i, CreateoptroleelemContext); + return this.getRuleContext(i, CreateRoleElementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optrolelist; + return PostgreSqlParser.RULE_optionalRoleList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptrolelist) { - return visitor.visitOptrolelist(this); + if (visitor.visitOptionalRoleList) { + return visitor.visitOptionalRoleList(this); } else { return visitor.visitChildren(this); } @@ -84404,25 +78878,25 @@ export class OptrolelistContext extends antlr.ParserRuleContext { } -export class AlteroptrolelistContext extends antlr.ParserRuleContext { +export class AlterOptionalRoleListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alteroptroleelem(): AlteroptroleelemContext[]; - public alteroptroleelem(i: number): AlteroptroleelemContext | null; - public alteroptroleelem(i?: number): AlteroptroleelemContext[] | AlteroptroleelemContext | null { + public alterRoleElemement(): AlterRoleElemementContext[]; + public alterRoleElemement(i: number): AlterRoleElemementContext | null; + public alterRoleElemement(i?: number): AlterRoleElemementContext[] | AlterRoleElemementContext | null { if (i === undefined) { - return this.getRuleContexts(AlteroptroleelemContext); + return this.getRuleContexts(AlterRoleElemementContext); } - return this.getRuleContext(i, AlteroptroleelemContext); + return this.getRuleContext(i, AlterRoleElemementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alteroptrolelist; + return PostgreSqlParser.RULE_alterOptionalRoleList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlteroptrolelist) { - return visitor.visitAlteroptrolelist(this); + if (visitor.visitAlterOptionalRoleList) { + return visitor.visitAlterOptionalRoleList(this); } else { return visitor.visitChildren(this); } @@ -84430,7 +78904,7 @@ export class AlteroptrolelistContext extends antlr.ParserRuleContext { } -export class AlteroptroleelemContext extends antlr.ParserRuleContext { +export class AlterRoleElemementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84458,8 +78932,8 @@ export class AlteroptroleelemContext extends antlr.ParserRuleContext { public LIMIT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LIMIT, 0); } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); + public signedIconst(): SignedIconstContext | null { + return this.getRuleContext(0, SignedIconstContext); } public VALID(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VALID, 0); @@ -84470,18 +78944,18 @@ export class AlteroptroleelemContext extends antlr.ParserRuleContext { public USER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USER, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alteroptroleelem; + return PostgreSqlParser.RULE_alterRoleElemement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlteroptroleelem) { - return visitor.visitAlteroptroleelem(this); + if (visitor.visitAlterRoleElemement) { + return visitor.visitAlterRoleElemement(this); } else { return visitor.visitChildren(this); } @@ -84489,12 +78963,12 @@ export class AlteroptroleelemContext extends antlr.ParserRuleContext { } -export class CreateoptroleelemContext extends antlr.ParserRuleContext { +export class CreateRoleElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alteroptroleelem(): AlteroptroleelemContext | null { - return this.getRuleContext(0, AlteroptroleelemContext); + public alterRoleElemement(): AlterRoleElemementContext | null { + return this.getRuleContext(0, AlterRoleElemementContext); } public SYSID(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SYSID, 0); @@ -84505,8 +78979,8 @@ export class CreateoptroleelemContext extends antlr.ParserRuleContext { public ADMIN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADMIN, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); @@ -84518,11 +78992,11 @@ export class CreateoptroleelemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.GROUP_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createoptroleelem; + return PostgreSqlParser.RULE_createRoleElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateoptroleelem) { - return visitor.visitCreateoptroleelem(this); + if (visitor.visitCreateRoleElement) { + return visitor.visitCreateRoleElement(this); } else { return visitor.visitChildren(this); } @@ -84530,7 +79004,7 @@ export class CreateoptroleelemContext extends antlr.ParserRuleContext { } -export class CreateuserstmtContext extends antlr.ParserRuleContext { +export class CreateUserStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84540,21 +79014,21 @@ export class CreateuserstmtContext extends antlr.ParserRuleContext { public USER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USER, 0)!; } - public roleid(): RoleidContext { - return this.getRuleContext(0, RoleidContext)!; + public roleId(): RoleIdContext { + return this.getRuleContext(0, RoleIdContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public optrolelist(): OptrolelistContext { - return this.getRuleContext(0, OptrolelistContext)!; + public optionalRoleList(): OptionalRoleListContext { + return this.getRuleContext(0, OptionalRoleListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createuserstmt; + return PostgreSqlParser.RULE_createUserStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateuserstmt) { - return visitor.visitCreateuserstmt(this); + if (visitor.visitCreateUserStatement) { + return visitor.visitCreateUserStatement(this); } else { return visitor.visitChildren(this); } @@ -84562,21 +79036,21 @@ export class CreateuserstmtContext extends antlr.ParserRuleContext { } -export class AlterrolestmtContext extends antlr.ParserRuleContext { +export class AlterRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ALTER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ALTER, 0)!; } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public alteroptrolelist(): AlteroptrolelistContext { - return this.getRuleContext(0, AlteroptrolelistContext)!; + public alterOptionalRoleList(): AlterOptionalRoleListContext { + return this.getRuleContext(0, AlterOptionalRoleListContext)!; } public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); @@ -84585,11 +79059,11 @@ export class AlterrolestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.USER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterrolestmt; + return PostgreSqlParser.RULE_alterRoleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterrolestmt) { - return visitor.visitAlterrolestmt(this); + if (visitor.visitAlterRoleStatement) { + return visitor.visitAlterRoleStatement(this); } else { return visitor.visitChildren(this); } @@ -84597,7 +79071,7 @@ export class AlterrolestmtContext extends antlr.ParserRuleContext { } -export class Opt_in_databaseContext extends antlr.ParserRuleContext { +export class OptionalInDatabaseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84611,11 +79085,11 @@ export class Opt_in_databaseContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_in_database; + return PostgreSqlParser.RULE_optionalInDatabase; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_in_database) { - return visitor.visitOpt_in_database(this); + if (visitor.visitOptionalInDatabase) { + return visitor.visitOptionalInDatabase(this); } else { return visitor.visitChildren(this); } @@ -84623,21 +79097,21 @@ export class Opt_in_databaseContext extends antlr.ParserRuleContext { } -export class AlterrolesetstmtContext extends antlr.ParserRuleContext { +export class AlterRoleSetStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ALTER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ALTER, 0)!; } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } - public opt_in_database(): Opt_in_databaseContext { - return this.getRuleContext(0, Opt_in_databaseContext)!; + public optionalInDatabase(): OptionalInDatabaseContext { + return this.getRuleContext(0, OptionalInDatabaseContext)!; } - public setresetclause(): SetresetclauseContext { - return this.getRuleContext(0, SetresetclauseContext)!; + public setResetClause(): SetResetClauseContext { + return this.getRuleContext(0, SetResetClauseContext)!; } public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); @@ -84649,11 +79123,11 @@ export class AlterrolesetstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterrolesetstmt; + return PostgreSqlParser.RULE_alterRoleSetStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterrolesetstmt) { - return visitor.visitAlterrolesetstmt(this); + if (visitor.visitAlterRoleSetStatement) { + return visitor.visitAlterRoleSetStatement(this); } else { return visitor.visitChildren(this); } @@ -84661,15 +79135,15 @@ export class AlterrolesetstmtContext extends antlr.ParserRuleContext { } -export class DroprolestmtContext extends antlr.ParserRuleContext { +export class DropRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public DROP(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DROP, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); @@ -84687,11 +79161,11 @@ export class DroprolestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_droprolestmt; + return PostgreSqlParser.RULE_dropRoleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDroprolestmt) { - return visitor.visitDroprolestmt(this); + if (visitor.visitDropRoleStatement) { + return visitor.visitDropRoleStatement(this); } else { return visitor.visitChildren(this); } @@ -84699,7 +79173,7 @@ export class DroprolestmtContext extends antlr.ParserRuleContext { } -export class CreategroupstmtContext extends antlr.ParserRuleContext { +export class CreateGroupStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84709,21 +79183,21 @@ export class CreategroupstmtContext extends antlr.ParserRuleContext { public GROUP_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.GROUP_P, 0)!; } - public roleid(): RoleidContext { - return this.getRuleContext(0, RoleidContext)!; + public roleId(): RoleIdContext { + return this.getRuleContext(0, RoleIdContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public optrolelist(): OptrolelistContext { - return this.getRuleContext(0, OptrolelistContext)!; + public optionalRoleList(): OptionalRoleListContext { + return this.getRuleContext(0, OptionalRoleListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_creategroupstmt; + return PostgreSqlParser.RULE_createGroupStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreategroupstmt) { - return visitor.visitCreategroupstmt(this); + if (visitor.visitCreateGroupStatement) { + return visitor.visitCreateGroupStatement(this); } else { return visitor.visitChildren(this); } @@ -84731,7 +79205,7 @@ export class CreategroupstmtContext extends antlr.ParserRuleContext { } -export class AltergroupstmtContext extends antlr.ParserRuleContext { +export class AlterGroupStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84741,24 +79215,24 @@ export class AltergroupstmtContext extends antlr.ParserRuleContext { public GROUP_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.GROUP_P, 0)!; } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } - public add_drop(): Add_dropContext { - return this.getRuleContext(0, Add_dropContext)!; + public addOrDrop(): AddOrDropContext { + return this.getRuleContext(0, AddOrDropContext)!; } public USER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USER, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altergroupstmt; + return PostgreSqlParser.RULE_alterGroupStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltergroupstmt) { - return visitor.visitAltergroupstmt(this); + if (visitor.visitAlterGroupStatement) { + return visitor.visitAlterGroupStatement(this); } else { return visitor.visitChildren(this); } @@ -84766,7 +79240,7 @@ export class AltergroupstmtContext extends antlr.ParserRuleContext { } -export class Add_dropContext extends antlr.ParserRuleContext { +export class AddOrDropContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84777,11 +79251,11 @@ export class Add_dropContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DROP, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_add_drop; + return PostgreSqlParser.RULE_addOrDrop; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAdd_drop) { - return visitor.visitAdd_drop(this); + if (visitor.visitAddOrDrop) { + return visitor.visitAddOrDrop(this); } else { return visitor.visitChildren(this); } @@ -84789,7 +79263,7 @@ export class Add_dropContext extends antlr.ParserRuleContext { } -export class CreateschemastmtContext extends antlr.ParserRuleContext { +export class CreateSchemaStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -84799,20 +79273,20 @@ export class CreateschemastmtContext extends antlr.ParserRuleContext { public SCHEMA(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SCHEMA, 0)!; } - public optschemaeltlist(): OptschemaeltlistContext { - return this.getRuleContext(0, OptschemaeltlistContext)!; + public optionalSchemaList(): OptionalSchemaListContext { + return this.getRuleContext(0, OptionalSchemaListContext)!; } - public optschemaname(): OptschemanameContext | null { - return this.getRuleContext(0, OptschemanameContext); + public optionalSchemaName(): OptionalSchemaNameContext | null { + return this.getRuleContext(0, OptionalSchemaNameContext); } public AUTHORIZATION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AUTHORIZATION, 0); } - public rolespec(): RolespecContext | null { - return this.getRuleContext(0, RolespecContext); + public roleSpecification(): RoleSpecificationContext | null { + return this.getRuleContext(0, RoleSpecificationContext); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -84824,11 +79298,11 @@ export class CreateschemastmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createschemastmt; + return PostgreSqlParser.RULE_createSchemaStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateschemastmt) { - return visitor.visitCreateschemastmt(this); + if (visitor.visitCreateSchemaStatement) { + return visitor.visitCreateSchemaStatement(this); } else { return visitor.visitChildren(this); } @@ -84836,19 +79310,19 @@ export class CreateschemastmtContext extends antlr.ParserRuleContext { } -export class OptschemanameContext extends antlr.ParserRuleContext { +export class OptionalSchemaNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optschemaname; + return PostgreSqlParser.RULE_optionalSchemaName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptschemaname) { - return visitor.visitOptschemaname(this); + if (visitor.visitOptionalSchemaName) { + return visitor.visitOptionalSchemaName(this); } else { return visitor.visitChildren(this); } @@ -84856,25 +79330,25 @@ export class OptschemanameContext extends antlr.ParserRuleContext { } -export class OptschemaeltlistContext extends antlr.ParserRuleContext { +export class OptionalSchemaListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public schema_stmt(): Schema_stmtContext[]; - public schema_stmt(i: number): Schema_stmtContext | null; - public schema_stmt(i?: number): Schema_stmtContext[] | Schema_stmtContext | null { + public schemaStatement(): SchemaStatementContext[]; + public schemaStatement(i: number): SchemaStatementContext | null; + public schemaStatement(i?: number): SchemaStatementContext[] | SchemaStatementContext | null { if (i === undefined) { - return this.getRuleContexts(Schema_stmtContext); + return this.getRuleContexts(SchemaStatementContext); } - return this.getRuleContext(i, Schema_stmtContext); + return this.getRuleContext(i, SchemaStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optschemaeltlist; + return PostgreSqlParser.RULE_optionalSchemaList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptschemaeltlist) { - return visitor.visitOptschemaeltlist(this); + if (visitor.visitOptionalSchemaList) { + return visitor.visitOptionalSchemaList(this); } else { return visitor.visitChildren(this); } @@ -84882,34 +79356,34 @@ export class OptschemaeltlistContext extends antlr.ParserRuleContext { } -export class Schema_stmtContext extends antlr.ParserRuleContext { +export class SchemaStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public createstmt(): CreatestmtContext | null { - return this.getRuleContext(0, CreatestmtContext); + public createStatement(): CreateStatementContext | null { + return this.getRuleContext(0, CreateStatementContext); } - public indexstmt(): IndexstmtContext | null { - return this.getRuleContext(0, IndexstmtContext); + public indexStatement(): IndexStatementContext | null { + return this.getRuleContext(0, IndexStatementContext); } - public createseqstmt(): CreateseqstmtContext | null { - return this.getRuleContext(0, CreateseqstmtContext); + public createSequenceStatement(): CreateSequenceStatementContext | null { + return this.getRuleContext(0, CreateSequenceStatementContext); } - public createtrigstmt(): CreatetrigstmtContext | null { - return this.getRuleContext(0, CreatetrigstmtContext); + public createTriggerStatement(): CreateTriggerStatementContext | null { + return this.getRuleContext(0, CreateTriggerStatementContext); } - public grantstmt(): GrantstmtContext | null { - return this.getRuleContext(0, GrantstmtContext); + public grantStatement(): GrantStatementContext | null { + return this.getRuleContext(0, GrantStatementContext); } - public viewstmt(): ViewstmtContext | null { - return this.getRuleContext(0, ViewstmtContext); + public viewStatement(): ViewStatementContext | null { + return this.getRuleContext(0, ViewStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_schema_stmt; + return PostgreSqlParser.RULE_schemaStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSchema_stmt) { - return visitor.visitSchema_stmt(this); + if (visitor.visitSchemaStatement) { + return visitor.visitSchemaStatement(this); } else { return visitor.visitChildren(this); } @@ -84917,15 +79391,15 @@ export class Schema_stmtContext extends antlr.ParserRuleContext { } -export class VariablesetstmtContext extends antlr.ParserRuleContext { +export class VariableSetStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; } - public set_rest(): Set_restContext { - return this.getRuleContext(0, Set_restContext)!; + public setStatementEnding(): SetStatementEndingContext { + return this.getRuleContext(0, SetStatementEndingContext)!; } public LOCAL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LOCAL, 0); @@ -84934,11 +79408,11 @@ export class VariablesetstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SESSION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_variablesetstmt; + return PostgreSqlParser.RULE_variableSetStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVariablesetstmt) { - return visitor.visitVariablesetstmt(this); + if (visitor.visitVariableSetStatement) { + return visitor.visitVariableSetStatement(this); } else { return visitor.visitChildren(this); } @@ -84946,15 +79420,15 @@ export class VariablesetstmtContext extends antlr.ParserRuleContext { } -export class Set_restContext extends antlr.ParserRuleContext { +export class SetStatementEndingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TRANSACTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRANSACTION, 0); } - public transaction_mode_list(): Transaction_mode_listContext | null { - return this.getRuleContext(0, Transaction_mode_listContext); + public transactionModeList(): TransactionModeListContext | null { + return this.getRuleContext(0, TransactionModeListContext); } public SESSION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SESSION, 0); @@ -84965,15 +79439,15 @@ export class Set_restContext extends antlr.ParserRuleContext { public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public set_rest_more(): Set_rest_moreContext | null { - return this.getRuleContext(0, Set_rest_moreContext); + public setStatementMore(): SetStatementMoreContext | null { + return this.getRuleContext(0, SetStatementMoreContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_rest; + return PostgreSqlParser.RULE_setStatementEnding; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_rest) { - return visitor.visitSet_rest(this); + if (visitor.visitSetStatementEnding) { + return visitor.visitSetStatementEnding(this); } else { return visitor.visitChildren(this); } @@ -84981,15 +79455,15 @@ export class Set_restContext extends antlr.ParserRuleContext { } -export class Generic_setContext extends antlr.ParserRuleContext { +export class GenericSetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public var_name(): Var_nameContext { - return this.getRuleContext(0, Var_nameContext)!; + public variableName(): VariableNameContext { + return this.getRuleContext(0, VariableNameContext)!; } - public var_list(): Var_listContext { - return this.getRuleContext(0, Var_listContext)!; + public variableList(): VariableListContext { + return this.getRuleContext(0, VariableListContext)!; } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); @@ -84998,11 +79472,11 @@ export class Generic_setContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EQUAL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_set; + return PostgreSqlParser.RULE_genericSetClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_set) { - return visitor.visitGeneric_set(this); + if (visitor.visitGenericSetClause) { + return visitor.visitGenericSetClause(this); } else { return visitor.visitChildren(this); } @@ -85010,15 +79484,15 @@ export class Generic_setContext extends antlr.ParserRuleContext { } -export class Set_rest_moreContext extends antlr.ParserRuleContext { +export class SetStatementMoreContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_set(): Generic_setContext | null { - return this.getRuleContext(0, Generic_setContext); + public genericSetClause(): GenericSetClauseContext | null { + return this.getRuleContext(0, GenericSetClauseContext); } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); + public variableName(): VariableNameContext | null { + return this.getRuleContext(0, VariableNameContext); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); @@ -85032,8 +79506,8 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { public ZONE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ZONE, 0); } - public zone_value(): Zone_valueContext | null { - return this.getRuleContext(0, Zone_valueContext); + public zoneValue(): ZoneValueContext | null { + return this.getRuleContext(0, ZoneValueContext); } public CATALOG(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CATALOG, 0); @@ -85047,14 +79521,14 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { public NAMES(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NAMES, 0); } - public opt_encoding(): Opt_encodingContext | null { - return this.getRuleContext(0, Opt_encodingContext); + public optionalEncoding(): OptionalEncodingContext | null { + return this.getRuleContext(0, OptionalEncodingContext); } public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public SESSION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SESSION, 0); @@ -85068,8 +79542,8 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { public OPTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPTION, 0); } - public document_or_content(): Document_or_contentContext | null { - return this.getRuleContext(0, Document_or_contentContext); + public documentOrContent(): DocumentOrContentContext | null { + return this.getRuleContext(0, DocumentOrContentContext); } public TRANSACTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRANSACTION, 0); @@ -85078,11 +79552,11 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SNAPSHOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_rest_more; + return PostgreSqlParser.RULE_setStatementMore; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_rest_more) { - return visitor.visitSet_rest_more(this); + if (visitor.visitSetStatementMore) { + return visitor.visitSetStatementMore(this); } else { return visitor.visitChildren(this); } @@ -85090,18 +79564,18 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { } -export class Var_nameContext extends antlr.ParserRuleContext { +export class VariableNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext[]; - public colid(i: number): ColidContext | null; - public colid(i?: number): ColidContext[] | ColidContext | null { + public columnId(): ColumnIdContext[]; + public columnId(i: number): ColumnIdContext | null; + public columnId(i?: number): ColumnIdContext[] | ColumnIdContext | null { if (i === undefined) { - return this.getRuleContexts(ColidContext); + return this.getRuleContexts(ColumnIdContext); } - return this.getRuleContext(i, ColidContext); + return this.getRuleContext(i, ColumnIdContext); } public DOT(): antlr.TerminalNode[]; public DOT(i: number): antlr.TerminalNode | null; @@ -85113,11 +79587,11 @@ export class Var_nameContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_var_name; + return PostgreSqlParser.RULE_variableName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVar_name) { - return visitor.visitVar_name(this); + if (visitor.visitVariableName) { + return visitor.visitVariableName(this); } else { return visitor.visitChildren(this); } @@ -85125,18 +79599,18 @@ export class Var_nameContext extends antlr.ParserRuleContext { } -export class Var_listContext extends antlr.ParserRuleContext { +export class VariableListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public var_value(): Var_valueContext[]; - public var_value(i: number): Var_valueContext | null; - public var_value(i?: number): Var_valueContext[] | Var_valueContext | null { + public variableValue(): VariableValueContext[]; + public variableValue(i: number): VariableValueContext | null; + public variableValue(i?: number): VariableValueContext[] | VariableValueContext | null { if (i === undefined) { - return this.getRuleContexts(Var_valueContext); + return this.getRuleContexts(VariableValueContext); } - return this.getRuleContext(i, Var_valueContext); + return this.getRuleContext(i, VariableValueContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -85148,11 +79622,11 @@ export class Var_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_var_list; + return PostgreSqlParser.RULE_variableList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVar_list) { - return visitor.visitVar_list(this); + if (visitor.visitVariableList) { + return visitor.visitVariableList(this); } else { return visitor.visitChildren(this); } @@ -85160,22 +79634,22 @@ export class Var_listContext extends antlr.ParserRuleContext { } -export class Var_valueContext extends antlr.ParserRuleContext { +export class VariableValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_boolean_or_string(): Opt_boolean_or_stringContext | null { - return this.getRuleContext(0, Opt_boolean_or_stringContext); + public booleanOrString(): BooleanOrStringContext | null { + return this.getRuleContext(0, BooleanOrStringContext); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_var_value; + return PostgreSqlParser.RULE_variableValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVar_value) { - return visitor.visitVar_value(this); + if (visitor.visitVariableValue) { + return visitor.visitVariableValue(this); } else { return visitor.visitChildren(this); } @@ -85183,7 +79657,7 @@ export class Var_valueContext extends antlr.ParserRuleContext { } -export class Iso_levelContext extends antlr.ParserRuleContext { +export class IsoLevelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85203,11 +79677,11 @@ export class Iso_levelContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SERIALIZABLE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_iso_level; + return PostgreSqlParser.RULE_isoLevel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIso_level) { - return visitor.visitIso_level(this); + if (visitor.visitIsoLevel) { + return visitor.visitIsoLevel(this); } else { return visitor.visitChildren(this); } @@ -85215,7 +79689,7 @@ export class Iso_levelContext extends antlr.ParserRuleContext { } -export class Opt_boolean_or_stringContext extends antlr.ParserRuleContext { +export class BooleanOrStringContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85228,15 +79702,15 @@ export class Opt_boolean_or_stringContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ON, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_boolean_or_string; + return PostgreSqlParser.RULE_booleanOrString; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_boolean_or_string) { - return visitor.visitOpt_boolean_or_string(this); + if (visitor.visitBooleanOrString) { + return visitor.visitBooleanOrString(this); } else { return visitor.visitChildren(this); } @@ -85244,7 +79718,7 @@ export class Opt_boolean_or_stringContext extends antlr.ParserRuleContext { } -export class Zone_valueContext extends antlr.ParserRuleContext { +export class ZoneValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85254,11 +79728,11 @@ export class Zone_valueContext extends antlr.ParserRuleContext { public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public constinterval(): ConstintervalContext | null { - return this.getRuleContext(0, ConstintervalContext); + public constInterval(): ConstIntervalContext | null { + return this.getRuleContext(0, ConstIntervalContext); } - public opt_interval(): Opt_intervalContext | null { - return this.getRuleContext(0, Opt_intervalContext); + public optionalInterval(): OptionalIntervalContext | null { + return this.getRuleContext(0, OptionalIntervalContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); @@ -85269,8 +79743,8 @@ export class Zone_valueContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); @@ -85279,11 +79753,11 @@ export class Zone_valueContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.LOCAL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_zone_value; + return PostgreSqlParser.RULE_zoneValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitZone_value) { - return visitor.visitZone_value(this); + if (visitor.visitZoneValue) { + return visitor.visitZoneValue(this); } else { return visitor.visitChildren(this); } @@ -85291,7 +79765,7 @@ export class Zone_valueContext extends antlr.ParserRuleContext { } -export class Opt_encodingContext extends antlr.ParserRuleContext { +export class OptionalEncodingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85302,11 +79776,11 @@ export class Opt_encodingContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_encoding; + return PostgreSqlParser.RULE_optionalEncoding; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_encoding) { - return visitor.visitOpt_encoding(this); + if (visitor.visitOptionalEncoding) { + return visitor.visitOptionalEncoding(this); } else { return visitor.visitChildren(this); } @@ -85314,22 +79788,22 @@ export class Opt_encodingContext extends antlr.ParserRuleContext { } -export class Nonreservedword_or_sconstContext extends antlr.ParserRuleContext { +export class NonReservedWordOrSconstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public nonreservedword(): NonreservedwordContext | null { - return this.getRuleContext(0, NonreservedwordContext); + public nonReservedWord(): NonReservedWordContext | null { + return this.getRuleContext(0, NonReservedWordContext); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_nonreservedword_or_sconst; + return PostgreSqlParser.RULE_nonReservedWordOrSconst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNonreservedword_or_sconst) { - return visitor.visitNonreservedword_or_sconst(this); + if (visitor.visitNonReservedWordOrSconst) { + return visitor.visitNonReservedWordOrSconst(this); } else { return visitor.visitChildren(this); } @@ -85337,22 +79811,22 @@ export class Nonreservedword_or_sconstContext extends antlr.ParserRuleContext { } -export class VariableresetstmtContext extends antlr.ParserRuleContext { +export class VariableResetStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public RESET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.RESET, 0)!; } - public reset_rest(): Reset_restContext { - return this.getRuleContext(0, Reset_restContext)!; + public resetClauseRest(): ResetClauseRestContext { + return this.getRuleContext(0, ResetClauseRestContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_variableresetstmt; + return PostgreSqlParser.RULE_variableResetStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVariableresetstmt) { - return visitor.visitVariableresetstmt(this); + if (visitor.visitVariableResetStatement) { + return visitor.visitVariableResetStatement(this); } else { return visitor.visitChildren(this); } @@ -85360,12 +79834,12 @@ export class VariableresetstmtContext extends antlr.ParserRuleContext { } -export class Reset_restContext extends antlr.ParserRuleContext { +export class ResetClauseRestContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_reset(): Generic_resetContext | null { - return this.getRuleContext(0, Generic_resetContext); + public genericResetClause(): GenericResetClauseContext | null { + return this.getRuleContext(0, GenericResetClauseContext); } public TIME(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TIME, 0); @@ -85389,11 +79863,11 @@ export class Reset_restContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.AUTHORIZATION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reset_rest; + return PostgreSqlParser.RULE_resetClauseRest; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReset_rest) { - return visitor.visitReset_rest(this); + if (visitor.visitResetClauseRest) { + return visitor.visitResetClauseRest(this); } else { return visitor.visitChildren(this); } @@ -85401,22 +79875,22 @@ export class Reset_restContext extends antlr.ParserRuleContext { } -export class Generic_resetContext extends antlr.ParserRuleContext { +export class GenericResetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); + public variableName(): VariableNameContext | null { + return this.getRuleContext(0, VariableNameContext); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_reset; + return PostgreSqlParser.RULE_genericResetClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_reset) { - return visitor.visitGeneric_reset(this); + if (visitor.visitGenericResetClause) { + return visitor.visitGenericResetClause(this); } else { return visitor.visitChildren(this); } @@ -85424,25 +79898,25 @@ export class Generic_resetContext extends antlr.ParserRuleContext { } -export class SetresetclauseContext extends antlr.ParserRuleContext { +export class SetResetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public set_rest(): Set_restContext | null { - return this.getRuleContext(0, Set_restContext); + public setStatementEnding(): SetStatementEndingContext | null { + return this.getRuleContext(0, SetStatementEndingContext); } - public variableresetstmt(): VariableresetstmtContext | null { - return this.getRuleContext(0, VariableresetstmtContext); + public variableResetStatement(): VariableResetStatementContext | null { + return this.getRuleContext(0, VariableResetStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_setresetclause; + return PostgreSqlParser.RULE_setResetClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSetresetclause) { - return visitor.visitSetresetclause(this); + if (visitor.visitSetResetClause) { + return visitor.visitSetResetClause(this); } else { return visitor.visitChildren(this); } @@ -85450,25 +79924,25 @@ export class SetresetclauseContext extends antlr.ParserRuleContext { } -export class FunctionsetresetclauseContext extends antlr.ParserRuleContext { +export class FunctionSetResetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public set_rest_more(): Set_rest_moreContext | null { - return this.getRuleContext(0, Set_rest_moreContext); + public setStatementMore(): SetStatementMoreContext | null { + return this.getRuleContext(0, SetStatementMoreContext); } - public variableresetstmt(): VariableresetstmtContext | null { - return this.getRuleContext(0, VariableresetstmtContext); + public variableResetStatement(): VariableResetStatementContext | null { + return this.getRuleContext(0, VariableResetStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_functionsetresetclause; + return PostgreSqlParser.RULE_functionSetResetClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunctionsetresetclause) { - return visitor.visitFunctionsetresetclause(this); + if (visitor.visitFunctionSetResetClause) { + return visitor.visitFunctionSetResetClause(this); } else { return visitor.visitChildren(this); } @@ -85476,15 +79950,15 @@ export class FunctionsetresetclauseContext extends antlr.ParserRuleContext { } -export class VariableshowstmtContext extends antlr.ParserRuleContext { +export class VariableShowStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SHOW(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SHOW, 0)!; } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); + public variableName(): VariableNameContext | null { + return this.getRuleContext(0, VariableNameContext); } public TIME(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TIME, 0); @@ -85511,11 +79985,11 @@ export class VariableshowstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_variableshowstmt; + return PostgreSqlParser.RULE_variableShowStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVariableshowstmt) { - return visitor.visitVariableshowstmt(this); + if (visitor.visitVariableShowStatement) { + return visitor.visitVariableShowStatement(this); } else { return visitor.visitChildren(this); } @@ -85523,7 +79997,7 @@ export class VariableshowstmtContext extends antlr.ParserRuleContext { } -export class ConstraintssetstmtContext extends antlr.ParserRuleContext { +export class SetConstraintsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85533,18 +80007,18 @@ export class ConstraintssetstmtContext extends antlr.ParserRuleContext { public CONSTRAINTS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CONSTRAINTS, 0)!; } - public constraints_set_list(): Constraints_set_listContext { - return this.getRuleContext(0, Constraints_set_listContext)!; + public constraintsSetList(): ConstraintsSetListContext { + return this.getRuleContext(0, ConstraintsSetListContext)!; } - public constraints_set_mode(): Constraints_set_modeContext { - return this.getRuleContext(0, Constraints_set_modeContext)!; + public constraintsSetMode(): ConstraintsSetModeContext { + return this.getRuleContext(0, ConstraintsSetModeContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraintssetstmt; + return PostgreSqlParser.RULE_setConstraintsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraintssetstmt) { - return visitor.visitConstraintssetstmt(this); + if (visitor.visitSetConstraintsStatement) { + return visitor.visitSetConstraintsStatement(this); } else { return visitor.visitChildren(this); } @@ -85552,22 +80026,22 @@ export class ConstraintssetstmtContext extends antlr.ParserRuleContext { } -export class Constraints_set_listContext extends antlr.ParserRuleContext { +export class ConstraintsSetListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); } - public qualified_name_list(): Qualified_name_listContext | null { - return this.getRuleContext(0, Qualified_name_listContext); + public qualifiedNameList(): QualifiedNameListContext | null { + return this.getRuleContext(0, QualifiedNameListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraints_set_list; + return PostgreSqlParser.RULE_constraintsSetList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraints_set_list) { - return visitor.visitConstraints_set_list(this); + if (visitor.visitConstraintsSetList) { + return visitor.visitConstraintsSetList(this); } else { return visitor.visitChildren(this); } @@ -85575,7 +80049,7 @@ export class Constraints_set_listContext extends antlr.ParserRuleContext { } -export class Constraints_set_modeContext extends antlr.ParserRuleContext { +export class ConstraintsSetModeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85586,11 +80060,11 @@ export class Constraints_set_modeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.IMMEDIATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraints_set_mode; + return PostgreSqlParser.RULE_constraintsSetMode; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraints_set_mode) { - return visitor.visitConstraints_set_mode(this); + if (visitor.visitConstraintsSetMode) { + return visitor.visitConstraintsSetMode(this); } else { return visitor.visitChildren(this); } @@ -85598,7 +80072,7 @@ export class Constraints_set_modeContext extends antlr.ParserRuleContext { } -export class CheckpointstmtContext extends antlr.ParserRuleContext { +export class CheckpointStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85606,11 +80080,11 @@ export class CheckpointstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CHECKPOINT, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_checkpointstmt; + return PostgreSqlParser.RULE_checkpointStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCheckpointstmt) { - return visitor.visitCheckpointstmt(this); + if (visitor.visitCheckpointStatement) { + return visitor.visitCheckpointStatement(this); } else { return visitor.visitChildren(this); } @@ -85618,7 +80092,7 @@ export class CheckpointstmtContext extends antlr.ParserRuleContext { } -export class DiscardstmtContext extends antlr.ParserRuleContext { +export class DiscardStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85641,11 +80115,11 @@ export class DiscardstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SEQUENCES, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_discardstmt; + return PostgreSqlParser.RULE_discardStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDiscardstmt) { - return visitor.visitDiscardstmt(this); + if (visitor.visitDiscardStatement) { + return visitor.visitDiscardStatement(this); } else { return visitor.visitChildren(this); } @@ -85653,7 +80127,7 @@ export class DiscardstmtContext extends antlr.ParserRuleContext { } -export class AltertablestmtContext extends antlr.ParserRuleContext { +export class AlterTableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85663,14 +80137,14 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr(): Relation_exprContext | null { - return this.getRuleContext(0, Relation_exprContext); + public relationExpression(): RelationExpressionContext | null { + return this.getRuleContext(0, RelationExpressionContext); } - public alter_table_cmds(): Alter_table_cmdsContext | null { - return this.getRuleContext(0, Alter_table_cmdsContext); + public alterTableCommands(): AlterTableCommandsContext | null { + return this.getRuleContext(0, AlterTableCommandsContext); } - public partition_cmd(): Partition_cmdContext | null { - return this.getRuleContext(0, Partition_cmdContext); + public partitionCommand(): PartitionCommandContext | null { + return this.getRuleContext(0, PartitionCommandContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -85705,8 +80179,8 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public opt_nowait(): Opt_nowaitContext | null { - return this.getRuleContext(0, Opt_nowaitContext); + public optionalNowait(): OptionalNowaitContext | null { + return this.getRuleContext(0, OptionalNowaitContext); } public OWNED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OWNED, 0); @@ -85714,17 +80188,17 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public INDEX(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INDEX, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public index_partition_cmd(): Index_partition_cmdContext | null { - return this.getRuleContext(0, Index_partition_cmdContext); + public indexPartitionCommand(): IndexPartitionCommandContext | null { + return this.getRuleContext(0, IndexPartitionCommandContext); } public SEQUENCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEQUENCE, 0); @@ -85739,11 +80213,11 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOREIGN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altertablestmt; + return PostgreSqlParser.RULE_alterTableStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltertablestmt) { - return visitor.visitAltertablestmt(this); + if (visitor.visitAlterTableStatement) { + return visitor.visitAlterTableStatement(this); } else { return visitor.visitChildren(this); } @@ -85751,18 +80225,18 @@ export class AltertablestmtContext extends antlr.ParserRuleContext { } -export class Alter_table_cmdsContext extends antlr.ParserRuleContext { +export class AlterTableCommandsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alter_table_cmd(): Alter_table_cmdContext[]; - public alter_table_cmd(i: number): Alter_table_cmdContext | null; - public alter_table_cmd(i?: number): Alter_table_cmdContext[] | Alter_table_cmdContext | null { + public alterTableCommand(): AlterTableCommandContext[]; + public alterTableCommand(i: number): AlterTableCommandContext | null; + public alterTableCommand(i?: number): AlterTableCommandContext[] | AlterTableCommandContext | null { if (i === undefined) { - return this.getRuleContexts(Alter_table_cmdContext); + return this.getRuleContexts(AlterTableCommandContext); } - return this.getRuleContext(i, Alter_table_cmdContext); + return this.getRuleContext(i, AlterTableCommandContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -85774,11 +80248,11 @@ export class Alter_table_cmdsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_table_cmds; + return PostgreSqlParser.RULE_alterTableCommands; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_table_cmds) { - return visitor.visitAlter_table_cmds(this); + if (visitor.visitAlterTableCommands) { + return visitor.visitAlterTableCommands(this); } else { return visitor.visitChildren(this); } @@ -85786,7 +80260,7 @@ export class Alter_table_cmdsContext extends antlr.ParserRuleContext { } -export class Partition_cmdContext extends antlr.ParserRuleContext { +export class PartitionCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85796,21 +80270,21 @@ export class Partition_cmdContext extends antlr.ParserRuleContext { public PARTITION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PARTITION, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public partitionboundspec(): PartitionboundspecContext | null { - return this.getRuleContext(0, PartitionboundspecContext); + public partitionBoundSpecification(): PartitionBoundSpecificationContext | null { + return this.getRuleContext(0, PartitionBoundSpecificationContext); } public DETACH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DETACH, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_partition_cmd; + return PostgreSqlParser.RULE_partitionCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPartition_cmd) { - return visitor.visitPartition_cmd(this); + if (visitor.visitPartitionCommand) { + return visitor.visitPartitionCommand(this); } else { return visitor.visitChildren(this); } @@ -85818,7 +80292,7 @@ export class Partition_cmdContext extends antlr.ParserRuleContext { } -export class Index_partition_cmdContext extends antlr.ParserRuleContext { +export class IndexPartitionCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -85828,15 +80302,15 @@ export class Index_partition_cmdContext extends antlr.ParserRuleContext { public PARTITION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PARTITION, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_index_partition_cmd; + return PostgreSqlParser.RULE_indexPartitionCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndex_partition_cmd) { - return visitor.visitIndex_partition_cmd(this); + if (visitor.visitIndexPartitionCommand) { + return visitor.visitIndexPartitionCommand(this); } else { return visitor.visitChildren(this); } @@ -85844,15 +80318,15 @@ export class Index_partition_cmdContext extends antlr.ParserRuleContext { } -export class Alter_table_cmdContext extends antlr.ParserRuleContext { +export class AlterTableCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ADD_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADD_P, 0); } - public columnDef(): ColumnDefContext | null { - return this.getRuleContext(0, ColumnDefContext); + public columnDefinition(): ColumnDefinitionContext | null { + return this.getRuleContext(0, ColumnDefinitionContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -85869,20 +80343,20 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public ALTER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALTER, 0); } - public opt_column(): Opt_columnContext | null { - return this.getRuleContext(0, Opt_columnContext); + public optionalColumn(): OptionalColumnContext | null { + return this.getRuleContext(0, OptionalColumnContext); } - public colid(): ColidContext[]; - public colid(i: number): ColidContext | null; - public colid(i?: number): ColidContext[] | ColidContext | null { + public columnId(): ColumnIdContext[]; + public columnId(i: number): ColumnIdContext | null; + public columnId(i?: number): ColumnIdContext[] | ColumnIdContext | null { if (i === undefined) { - return this.getRuleContexts(ColidContext); + return this.getRuleContexts(ColumnIdContext); } - return this.getRuleContext(i, ColidContext); + return this.getRuleContext(i, ColumnIdContext); } - public alter_column_default(): Alter_column_defaultContext | null { - return this.getRuleContext(0, Alter_column_defaultContext); + public alterColumnDefault(): AlterColumnDefaultContext | null { + return this.getRuleContext(0, AlterColumnDefaultContext); } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); @@ -85899,14 +80373,14 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public STATISTICS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STATISTICS, 0); } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); + public signedIconst(): SignedIconstContext | null { + return this.getRuleContext(0, SignedIconstContext); } public iconst(): IconstContext | null { return this.getRuleContext(0, IconstContext); } - public reloptions(): ReloptionsContext | null { - return this.getRuleContext(0, ReloptionsContext); + public relOptions(): RelOptionsContext | null { + return this.getRuleContext(0, RelOptionsContext); } public RESET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RESET, 0); @@ -85917,8 +80391,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public GENERATED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GENERATED, 0); } - public generated_when(): Generated_whenContext | null { - return this.getRuleContext(0, Generated_whenContext); + public generatedWhen(): GeneratedWhenContext | null { + return this.getRuleContext(0, GeneratedWhenContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -85926,35 +80400,35 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public IDENTITY_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IDENTITY_P, 0); } - public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext | null { - return this.getRuleContext(0, OptparenthesizedseqoptlistContext); + public optionalParenthesizedSeqOptionsList(): OptionalParenthesizedSeqOptionsListContext | null { + return this.getRuleContext(0, OptionalParenthesizedSeqOptionsListContext); } - public alter_identity_column_option_list(): Alter_identity_column_option_listContext | null { - return this.getRuleContext(0, Alter_identity_column_option_listContext); + public alterIdentityColumnOptionList(): AlterIdentityColumnOptionListContext | null { + return this.getRuleContext(0, AlterIdentityColumnOptionListContext); } - public opt_drop_behavior(): Opt_drop_behaviorContext | null { - return this.getRuleContext(0, Opt_drop_behaviorContext); + public optionalDropBehavior(): OptionalDropBehaviorContext | null { + return this.getRuleContext(0, OptionalDropBehaviorContext); } - public opt_set_data(): Opt_set_dataContext | null { - return this.getRuleContext(0, Opt_set_dataContext); + public optionalSetData(): OptionalSetDataContext | null { + return this.getRuleContext(0, OptionalSetDataContext); } public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } - public opt_collate_clause(): Opt_collate_clauseContext | null { - return this.getRuleContext(0, Opt_collate_clauseContext); + public optionalCollateClause(): OptionalCollateClauseContext | null { + return this.getRuleContext(0, OptionalCollateClauseContext); } - public alter_using(): Alter_usingContext | null { - return this.getRuleContext(0, Alter_usingContext); + public alterUsing(): AlterUsingContext | null { + return this.getRuleContext(0, AlterUsingContext); } - public alter_generic_options(): Alter_generic_optionsContext | null { - return this.getRuleContext(0, Alter_generic_optionsContext); + public alterGenericOptions(): AlterGenericOptionsContext | null { + return this.getRuleContext(0, AlterGenericOptionsContext); } - public tableconstraint(): TableconstraintContext | null { - return this.getRuleContext(0, TableconstraintContext); + public tableConstraint(): TableConstraintContext | null { + return this.getRuleContext(0, TableConstraintContext); } public CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONSTRAINT, 0); @@ -85962,8 +80436,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } - public constraintattributespec(): ConstraintattributespecContext | null { - return this.getRuleContext(0, ConstraintattributespecContext); + public constraintAttributeSpecification(): ConstraintAttributeSpecificationContext | null { + return this.getRuleContext(0, ConstraintAttributeSpecificationContext); } public VALIDATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VALIDATE, 0); @@ -86013,8 +80487,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public INHERIT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INHERIT, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public NO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NO, 0); @@ -86022,8 +80496,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public OWNER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OWNER, 0); @@ -86031,14 +80505,14 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); } - public rolespec(): RolespecContext | null { - return this.getRuleContext(0, RolespecContext); + public roleSpecification(): RoleSpecificationContext | null { + return this.getRuleContext(0, RoleSpecificationContext); } public TABLESPACE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLESPACE, 0); } - public replica_identity(): Replica_identityContext | null { - return this.getRuleContext(0, Replica_identityContext); + public replicaIdentity(): ReplicaIdentityContext | null { + return this.getRuleContext(0, ReplicaIdentityContext); } public ROW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROW, 0); @@ -86053,11 +80527,11 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FORCE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_table_cmd; + return PostgreSqlParser.RULE_alterTableCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_table_cmd) { - return visitor.visitAlter_table_cmd(this); + if (visitor.visitAlterTableCommand) { + return visitor.visitAlterTableCommand(this); } else { return visitor.visitChildren(this); } @@ -86065,7 +80539,7 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { } -export class Alter_column_defaultContext extends antlr.ParserRuleContext { +export class AlterColumnDefaultContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86075,18 +80549,18 @@ export class Alter_column_defaultContext extends antlr.ParserRuleContext { public DEFAULT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DEFAULT, 0)!; } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_column_default; + return PostgreSqlParser.RULE_alterColumnDefault; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_column_default) { - return visitor.visitAlter_column_default(this); + if (visitor.visitAlterColumnDefault) { + return visitor.visitAlterColumnDefault(this); } else { return visitor.visitChildren(this); } @@ -86094,7 +80568,7 @@ export class Alter_column_defaultContext extends antlr.ParserRuleContext { } -export class Opt_drop_behaviorContext extends antlr.ParserRuleContext { +export class OptionalDropBehaviorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86105,11 +80579,11 @@ export class Opt_drop_behaviorContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RESTRICT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_drop_behavior; + return PostgreSqlParser.RULE_optionalDropBehavior; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_drop_behavior) { - return visitor.visitOpt_drop_behavior(this); + if (visitor.visitOptionalDropBehavior) { + return visitor.visitOptionalDropBehavior(this); } else { return visitor.visitChildren(this); } @@ -86117,22 +80591,22 @@ export class Opt_drop_behaviorContext extends antlr.ParserRuleContext { } -export class Opt_collate_clauseContext extends antlr.ParserRuleContext { +export class OptionalCollateClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATE, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_collate_clause; + return PostgreSqlParser.RULE_optionalCollateClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_collate_clause) { - return visitor.visitOpt_collate_clause(this); + if (visitor.visitOptionalCollateClause) { + return visitor.visitOptionalCollateClause(this); } else { return visitor.visitChildren(this); } @@ -86140,22 +80614,22 @@ export class Opt_collate_clauseContext extends antlr.ParserRuleContext { } -export class Alter_usingContext extends antlr.ParserRuleContext { +export class AlterUsingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_using; + return PostgreSqlParser.RULE_alterUsing; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_using) { - return visitor.visitAlter_using(this); + if (visitor.visitAlterUsing) { + return visitor.visitAlterUsing(this); } else { return visitor.visitChildren(this); } @@ -86163,7 +80637,7 @@ export class Alter_usingContext extends antlr.ParserRuleContext { } -export class Replica_identityContext extends antlr.ParserRuleContext { +export class ReplicaIdentityContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86186,11 +80660,11 @@ export class Replica_identityContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_replica_identity; + return PostgreSqlParser.RULE_replicaIdentity; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReplica_identity) { - return visitor.visitReplica_identity(this); + if (visitor.visitReplicaIdentity) { + return visitor.visitReplicaIdentity(this); } else { return visitor.visitChildren(this); } @@ -86198,25 +80672,25 @@ export class Replica_identityContext extends antlr.ParserRuleContext { } -export class ReloptionsContext extends antlr.ParserRuleContext { +export class RelOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public reloption_list(): Reloption_listContext { - return this.getRuleContext(0, Reloption_listContext)!; + public relOptionList(): RelOptionListContext { + return this.getRuleContext(0, RelOptionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reloptions; + return PostgreSqlParser.RULE_relOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReloptions) { - return visitor.visitReloptions(this); + if (visitor.visitRelOptions) { + return visitor.visitRelOptions(this); } else { return visitor.visitChildren(this); } @@ -86224,22 +80698,22 @@ export class ReloptionsContext extends antlr.ParserRuleContext { } -export class Opt_reloptionsContext extends antlr.ParserRuleContext { +export class OptionalRelOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WITH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITH, 0); } - public reloptions(): ReloptionsContext | null { - return this.getRuleContext(0, ReloptionsContext); + public relOptions(): RelOptionsContext | null { + return this.getRuleContext(0, RelOptionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_reloptions; + return PostgreSqlParser.RULE_optionalRelOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_reloptions) { - return visitor.visitOpt_reloptions(this); + if (visitor.visitOptionalRelOptions) { + return visitor.visitOptionalRelOptions(this); } else { return visitor.visitChildren(this); } @@ -86247,18 +80721,18 @@ export class Opt_reloptionsContext extends antlr.ParserRuleContext { } -export class Reloption_listContext extends antlr.ParserRuleContext { +export class RelOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public reloption_elem(): Reloption_elemContext[]; - public reloption_elem(i: number): Reloption_elemContext | null; - public reloption_elem(i?: number): Reloption_elemContext[] | Reloption_elemContext | null { + public relOptionElem(): RelOptionElemContext[]; + public relOptionElem(i: number): RelOptionElemContext | null; + public relOptionElem(i?: number): RelOptionElemContext[] | RelOptionElemContext | null { if (i === undefined) { - return this.getRuleContexts(Reloption_elemContext); + return this.getRuleContexts(RelOptionElemContext); } - return this.getRuleContext(i, Reloption_elemContext); + return this.getRuleContext(i, RelOptionElemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -86270,11 +80744,11 @@ export class Reloption_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reloption_list; + return PostgreSqlParser.RULE_relOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReloption_list) { - return visitor.visitReloption_list(this); + if (visitor.visitRelOptionList) { + return visitor.visitRelOptionList(this); } else { return visitor.visitChildren(this); } @@ -86282,34 +80756,34 @@ export class Reloption_listContext extends antlr.ParserRuleContext { } -export class Reloption_elemContext extends antlr.ParserRuleContext { +export class RelOptionElemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext[]; - public collabel(i: number): CollabelContext | null; - public collabel(i?: number): CollabelContext[] | CollabelContext | null { + public columnLabel(): ColumnLabelContext[]; + public columnLabel(i: number): ColumnLabelContext | null; + public columnLabel(i?: number): ColumnLabelContext[] | ColumnLabelContext | null { if (i === undefined) { - return this.getRuleContexts(CollabelContext); + return this.getRuleContexts(ColumnLabelContext); } - return this.getRuleContext(i, CollabelContext); + return this.getRuleContext(i, ColumnLabelContext); } public EQUAL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EQUAL, 0); } - public def_arg(): Def_argContext | null { - return this.getRuleContext(0, Def_argContext); + public definitionArgument(): DefinitionArgumentContext | null { + return this.getRuleContext(0, DefinitionArgumentContext); } public DOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reloption_elem; + return PostgreSqlParser.RULE_relOptionElem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReloption_elem) { - return visitor.visitReloption_elem(this); + if (visitor.visitRelOptionElem) { + return visitor.visitRelOptionElem(this); } else { return visitor.visitChildren(this); } @@ -86317,25 +80791,25 @@ export class Reloption_elemContext extends antlr.ParserRuleContext { } -export class Alter_identity_column_option_listContext extends antlr.ParserRuleContext { +export class AlterIdentityColumnOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alter_identity_column_option(): Alter_identity_column_optionContext[]; - public alter_identity_column_option(i: number): Alter_identity_column_optionContext | null; - public alter_identity_column_option(i?: number): Alter_identity_column_optionContext[] | Alter_identity_column_optionContext | null { + public alterIdentityColumnOption(): AlterIdentityColumnOptionContext[]; + public alterIdentityColumnOption(i: number): AlterIdentityColumnOptionContext | null; + public alterIdentityColumnOption(i?: number): AlterIdentityColumnOptionContext[] | AlterIdentityColumnOptionContext | null { if (i === undefined) { - return this.getRuleContexts(Alter_identity_column_optionContext); + return this.getRuleContexts(AlterIdentityColumnOptionContext); } - return this.getRuleContext(i, Alter_identity_column_optionContext); + return this.getRuleContext(i, AlterIdentityColumnOptionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_identity_column_option_list; + return PostgreSqlParser.RULE_alterIdentityColumnOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_identity_column_option_list) { - return visitor.visitAlter_identity_column_option_list(this); + if (visitor.visitAlterIdentityColumnOptionList) { + return visitor.visitAlterIdentityColumnOptionList(this); } else { return visitor.visitChildren(this); } @@ -86343,37 +80817,37 @@ export class Alter_identity_column_option_listContext extends antlr.ParserRuleCo } -export class Alter_identity_column_optionContext extends antlr.ParserRuleContext { +export class AlterIdentityColumnOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public RESTART(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RESTART, 0); } - public opt_with(): Opt_withContext | null { - return this.getRuleContext(0, Opt_withContext); + public optionalWith(): OptionalWithContext | null { + return this.getRuleContext(0, OptionalWithContext); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public seqoptelem(): SeqoptelemContext | null { - return this.getRuleContext(0, SeqoptelemContext); + public sequenceOptionItem(): SequenceOptionItemContext | null { + return this.getRuleContext(0, SequenceOptionItemContext); } public GENERATED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GENERATED, 0); } - public generated_when(): Generated_whenContext | null { - return this.getRuleContext(0, Generated_whenContext); + public generatedWhen(): GeneratedWhenContext | null { + return this.getRuleContext(0, GeneratedWhenContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_identity_column_option; + return PostgreSqlParser.RULE_alterIdentityColumnOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_identity_column_option) { - return visitor.visitAlter_identity_column_option(this); + if (visitor.visitAlterIdentityColumnOption) { + return visitor.visitAlterIdentityColumnOption(this); } else { return visitor.visitChildren(this); } @@ -86381,7 +80855,7 @@ export class Alter_identity_column_optionContext extends antlr.ParserRuleContext } -export class PartitionboundspecContext extends antlr.ParserRuleContext { +export class PartitionBoundSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86403,8 +80877,8 @@ export class PartitionboundspecContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OPEN_PAREN, i); } } - public hash_partbound(): Hash_partboundContext | null { - return this.getRuleContext(0, Hash_partboundContext); + public hashPartitionBound(): HashPartitionBoundContext | null { + return this.getRuleContext(0, HashPartitionBoundContext); } public CLOSE_PAREN(): antlr.TerminalNode[]; public CLOSE_PAREN(i: number): antlr.TerminalNode | null; @@ -86418,14 +80892,14 @@ export class PartitionboundspecContext extends antlr.ParserRuleContext { public IN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IN_P, 0); } - public expr_list(): Expr_listContext[]; - public expr_list(i: number): Expr_listContext | null; - public expr_list(i?: number): Expr_listContext[] | Expr_listContext | null { + public expressionList(): ExpressionListContext[]; + public expressionList(i: number): ExpressionListContext | null; + public expressionList(i?: number): ExpressionListContext[] | ExpressionListContext | null { if (i === undefined) { - return this.getRuleContexts(Expr_listContext); + return this.getRuleContexts(ExpressionListContext); } - return this.getRuleContext(i, Expr_listContext); + return this.getRuleContext(i, ExpressionListContext); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); @@ -86437,11 +80911,11 @@ export class PartitionboundspecContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_partitionboundspec; + return PostgreSqlParser.RULE_partitionBoundSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPartitionboundspec) { - return visitor.visitPartitionboundspec(this); + if (visitor.visitPartitionBoundSpecification) { + return visitor.visitPartitionBoundSpecification(this); } else { return visitor.visitChildren(this); } @@ -86449,22 +80923,22 @@ export class PartitionboundspecContext extends antlr.ParserRuleContext { } -export class Hash_partbound_elemContext extends antlr.ParserRuleContext { +export class HashPartitionBoundElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public nonreservedword(): NonreservedwordContext { - return this.getRuleContext(0, NonreservedwordContext)!; + public nonReservedWord(): NonReservedWordContext { + return this.getRuleContext(0, NonReservedWordContext)!; } public iconst(): IconstContext { return this.getRuleContext(0, IconstContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_hash_partbound_elem; + return PostgreSqlParser.RULE_hashPartitionBoundElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitHash_partbound_elem) { - return visitor.visitHash_partbound_elem(this); + if (visitor.visitHashPartitionBoundElement) { + return visitor.visitHashPartitionBoundElement(this); } else { return visitor.visitChildren(this); } @@ -86472,18 +80946,18 @@ export class Hash_partbound_elemContext extends antlr.ParserRuleContext { } -export class Hash_partboundContext extends antlr.ParserRuleContext { +export class HashPartitionBoundContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public hash_partbound_elem(): Hash_partbound_elemContext[]; - public hash_partbound_elem(i: number): Hash_partbound_elemContext | null; - public hash_partbound_elem(i?: number): Hash_partbound_elemContext[] | Hash_partbound_elemContext | null { + public hashPartitionBoundElement(): HashPartitionBoundElementContext[]; + public hashPartitionBoundElement(i: number): HashPartitionBoundElementContext | null; + public hashPartitionBoundElement(i?: number): HashPartitionBoundElementContext[] | HashPartitionBoundElementContext | null { if (i === undefined) { - return this.getRuleContexts(Hash_partbound_elemContext); + return this.getRuleContexts(HashPartitionBoundElementContext); } - return this.getRuleContext(i, Hash_partbound_elemContext); + return this.getRuleContext(i, HashPartitionBoundElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -86495,11 +80969,11 @@ export class Hash_partboundContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_hash_partbound; + return PostgreSqlParser.RULE_hashPartitionBound; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitHash_partbound) { - return visitor.visitHash_partbound(this); + if (visitor.visitHashPartitionBound) { + return visitor.visitHashPartitionBound(this); } else { return visitor.visitChildren(this); } @@ -86507,7 +80981,7 @@ export class Hash_partboundContext extends antlr.ParserRuleContext { } -export class AltercompositetypestmtContext extends antlr.ParserRuleContext { +export class AlterCompositeTypeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86517,18 +80991,18 @@ export class AltercompositetypestmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TYPE_P, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } - public alter_type_cmds(): Alter_type_cmdsContext { - return this.getRuleContext(0, Alter_type_cmdsContext)!; + public alterTypeCommands(): AlterTypeCommandsContext { + return this.getRuleContext(0, AlterTypeCommandsContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altercompositetypestmt; + return PostgreSqlParser.RULE_alterCompositeTypeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltercompositetypestmt) { - return visitor.visitAltercompositetypestmt(this); + if (visitor.visitAlterCompositeTypeStatement) { + return visitor.visitAlterCompositeTypeStatement(this); } else { return visitor.visitChildren(this); } @@ -86536,18 +81010,18 @@ export class AltercompositetypestmtContext extends antlr.ParserRuleContext { } -export class Alter_type_cmdsContext extends antlr.ParserRuleContext { +export class AlterTypeCommandsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alter_type_cmd(): Alter_type_cmdContext[]; - public alter_type_cmd(i: number): Alter_type_cmdContext | null; - public alter_type_cmd(i?: number): Alter_type_cmdContext[] | Alter_type_cmdContext | null { + public alterTypeCommand(): AlterTypeCommandContext[]; + public alterTypeCommand(i: number): AlterTypeCommandContext | null; + public alterTypeCommand(i?: number): AlterTypeCommandContext[] | AlterTypeCommandContext | null { if (i === undefined) { - return this.getRuleContexts(Alter_type_cmdContext); + return this.getRuleContexts(AlterTypeCommandContext); } - return this.getRuleContext(i, Alter_type_cmdContext); + return this.getRuleContext(i, AlterTypeCommandContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -86559,11 +81033,11 @@ export class Alter_type_cmdsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_type_cmds; + return PostgreSqlParser.RULE_alterTypeCommands; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_type_cmds) { - return visitor.visitAlter_type_cmds(this); + if (visitor.visitAlterTypeCommands) { + return visitor.visitAlterTypeCommands(this); } else { return visitor.visitChildren(this); } @@ -86571,7 +81045,7 @@ export class Alter_type_cmdsContext extends antlr.ParserRuleContext { } -export class Alter_type_cmdContext extends antlr.ParserRuleContext { +export class AlterTypeCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86581,17 +81055,17 @@ export class Alter_type_cmdContext extends antlr.ParserRuleContext { public ATTRIBUTE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ATTRIBUTE, 0)!; } - public tablefuncelement(): TablefuncelementContext | null { - return this.getRuleContext(0, TablefuncelementContext); + public tableFunctionElement(): TableFunctionElementContext | null { + return this.getRuleContext(0, TableFunctionElementContext); } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -86602,24 +81076,24 @@ export class Alter_type_cmdContext extends antlr.ParserRuleContext { public ALTER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALTER, 0); } - public opt_set_data(): Opt_set_dataContext | null { - return this.getRuleContext(0, Opt_set_dataContext); + public optionalSetData(): OptionalSetDataContext | null { + return this.getRuleContext(0, OptionalSetDataContext); } public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } - public opt_collate_clause(): Opt_collate_clauseContext | null { - return this.getRuleContext(0, Opt_collate_clauseContext); + public optionalCollateClause(): OptionalCollateClauseContext | null { + return this.getRuleContext(0, OptionalCollateClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_type_cmd; + return PostgreSqlParser.RULE_alterTypeCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_type_cmd) { - return visitor.visitAlter_type_cmd(this); + if (visitor.visitAlterTypeCommand) { + return visitor.visitAlterTypeCommand(this); } else { return visitor.visitChildren(this); } @@ -86627,25 +81101,25 @@ export class Alter_type_cmdContext extends antlr.ParserRuleContext { } -export class CloseportalstmtContext extends antlr.ParserRuleContext { +export class ClosePortalStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CLOSE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE, 0)!; } - public cursor_name(): Cursor_nameContext | null { - return this.getRuleContext(0, Cursor_nameContext); + public cursorName(): CursorNameContext | null { + return this.getRuleContext(0, CursorNameContext); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_closeportalstmt; + return PostgreSqlParser.RULE_closePortalStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCloseportalstmt) { - return visitor.visitCloseportalstmt(this); + if (visitor.visitClosePortalStatement) { + return visitor.visitClosePortalStatement(this); } else { return visitor.visitChildren(this); } @@ -86653,48 +81127,48 @@ export class CloseportalstmtContext extends antlr.ParserRuleContext { } -export class CopystmtContext extends antlr.ParserRuleContext { +export class CopyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COPY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.COPY, 0)!; } - public opt_binary(): Opt_binaryContext | null { - return this.getRuleContext(0, Opt_binaryContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public columnListWithParentheses(): ColumnListWithParenthesesContext | null { + return this.getRuleContext(0, ColumnListWithParenthesesContext); } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public fromOrTo(): FromOrToContext | null { + return this.getRuleContext(0, FromOrToContext); } - public copy_from(): Copy_fromContext | null { - return this.getRuleContext(0, Copy_fromContext); + public copyFileName(): CopyFileNameContext { + return this.getRuleContext(0, CopyFileNameContext)!; } - public opt_program(): Opt_programContext { - return this.getRuleContext(0, Opt_programContext)!; + public copyDelimiter(): CopyDelimiterContext | null { + return this.getRuleContext(0, CopyDelimiterContext); } - public copy_file_name(): Copy_file_nameContext { - return this.getRuleContext(0, Copy_file_nameContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public copy_delimiter(): Copy_delimiterContext | null { - return this.getRuleContext(0, Copy_delimiterContext); + public copyOptions(): CopyOptionsContext { + return this.getRuleContext(0, CopyOptionsContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } - public copy_options(): Copy_optionsContext { - return this.getRuleContext(0, Copy_optionsContext)!; + public BINARY(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.BINARY, 0); } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); + public PROGRAM(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.PROGRAM, 0); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public preparablestmt(): PreparablestmtContext | null { - return this.getRuleContext(0, PreparablestmtContext); + public preparableStatement(): PreparableStatementContext | null { + return this.getRuleContext(0, PreparableStatementContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -86703,11 +81177,11 @@ export class CopystmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copystmt; + return PostgreSqlParser.RULE_copyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopystmt) { - return visitor.visitCopystmt(this); + if (visitor.visitCopyStatement) { + return visitor.visitCopyStatement(this); } else { return visitor.visitChildren(this); } @@ -86715,7 +81189,7 @@ export class CopystmtContext extends antlr.ParserRuleContext { } -export class Copy_fromContext extends antlr.ParserRuleContext { +export class FromOrToContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86726,31 +81200,11 @@ export class Copy_fromContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_from; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_from) { - return visitor.visitCopy_from(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_programContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public PROGRAM(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.PROGRAM, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_program; + return PostgreSqlParser.RULE_fromOrTo; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_program) { - return visitor.visitOpt_program(this); + if (visitor.visitFromOrTo) { + return visitor.visitFromOrTo(this); } else { return visitor.visitChildren(this); } @@ -86758,7 +81212,7 @@ export class Opt_programContext extends antlr.ParserRuleContext { } -export class Copy_file_nameContext extends antlr.ParserRuleContext { +export class CopyFileNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86772,11 +81226,11 @@ export class Copy_file_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.STDOUT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_file_name; + return PostgreSqlParser.RULE_copyFileName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_file_name) { - return visitor.visitCopy_file_name(this); + if (visitor.visitCopyFileName) { + return visitor.visitCopyFileName(this); } else { return visitor.visitChildren(this); } @@ -86784,28 +81238,34 @@ export class Copy_file_nameContext extends antlr.ParserRuleContext { } -export class Copy_optionsContext extends antlr.ParserRuleContext { +export class CopyOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public copy_opt_list(): Copy_opt_listContext | null { - return this.getRuleContext(0, Copy_opt_listContext); + public copyOptionsItem(): CopyOptionsItemContext[]; + public copyOptionsItem(i: number): CopyOptionsItemContext | null; + public copyOptionsItem(i?: number): CopyOptionsItemContext[] | CopyOptionsItemContext | null { + if (i === undefined) { + return this.getRuleContexts(CopyOptionsItemContext); + } + + return this.getRuleContext(i, CopyOptionsItemContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public copy_generic_opt_list(): Copy_generic_opt_listContext | null { - return this.getRuleContext(0, Copy_generic_opt_listContext); + public copyGenericOptionList(): CopyGenericOptionListContext | null { + return this.getRuleContext(0, CopyGenericOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_options; + return PostgreSqlParser.RULE_copyOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_options) { - return visitor.visitCopy_options(this); + if (visitor.visitCopyOptions) { + return visitor.visitCopyOptions(this); } else { return visitor.visitChildren(this); } @@ -86813,33 +81273,7 @@ export class Copy_optionsContext extends antlr.ParserRuleContext { } -export class Copy_opt_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public copy_opt_item(): Copy_opt_itemContext[]; - public copy_opt_item(i: number): Copy_opt_itemContext | null; - public copy_opt_item(i?: number): Copy_opt_itemContext[] | Copy_opt_itemContext | null { - if (i === undefined) { - return this.getRuleContexts(Copy_opt_itemContext); - } - - return this.getRuleContext(i, Copy_opt_itemContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_opt_list; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_opt_list) { - return visitor.visitCopy_opt_list(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Copy_opt_itemContext extends antlr.ParserRuleContext { +export class CopyOptionsItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -86852,8 +81286,8 @@ export class Copy_opt_itemContext extends antlr.ParserRuleContext { public DELIMITER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DELIMITER, 0); } - public opt_as(): Opt_asContext | null { - return this.getRuleContext(0, Opt_asContext); + public optionalAs(): OptionalAsContext | null { + return this.getRuleContext(0, OptionalAsContext); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); @@ -86876,8 +81310,8 @@ export class Copy_opt_itemContext extends antlr.ParserRuleContext { public FORCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FORCE, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -86889,11 +81323,11 @@ export class Copy_opt_itemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ENCODING, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_opt_item; + return PostgreSqlParser.RULE_copyOptionsItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_opt_item) { - return visitor.visitCopy_opt_item(this); + if (visitor.visitCopyOptionsItem) { + return visitor.visitCopyOptionsItem(this); } else { return visitor.visitChildren(this); } @@ -86901,65 +81335,25 @@ export class Copy_opt_itemContext extends antlr.ParserRuleContext { } -export class Opt_binaryContext extends antlr.ParserRuleContext { +export class CopyDelimiterContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public BINARY(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.BINARY, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_binary; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_binary) { - return visitor.visitOpt_binary(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Copy_delimiterContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public opt_using(): Opt_usingContext | null { - return this.getRuleContext(0, Opt_usingContext); - } public DELIMITERS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DELIMITERS, 0); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_delimiter; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_delimiter) { - return visitor.visitCopy_delimiter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_usingContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_using; + return PostgreSqlParser.RULE_copyDelimiter; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_using) { - return visitor.visitOpt_using(this); + if (visitor.visitCopyDelimiter) { + return visitor.visitCopyDelimiter(this); } else { return visitor.visitChildren(this); } @@ -86967,18 +81361,18 @@ export class Opt_usingContext extends antlr.ParserRuleContext { } -export class Copy_generic_opt_listContext extends antlr.ParserRuleContext { +export class CopyGenericOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public copy_generic_opt_elem(): Copy_generic_opt_elemContext[]; - public copy_generic_opt_elem(i: number): Copy_generic_opt_elemContext | null; - public copy_generic_opt_elem(i?: number): Copy_generic_opt_elemContext[] | Copy_generic_opt_elemContext | null { + public copyGenericOptionElem(): CopyGenericOptionElemContext[]; + public copyGenericOptionElem(i: number): CopyGenericOptionElemContext | null; + public copyGenericOptionElem(i?: number): CopyGenericOptionElemContext[] | CopyGenericOptionElemContext | null { if (i === undefined) { - return this.getRuleContexts(Copy_generic_opt_elemContext); + return this.getRuleContexts(CopyGenericOptionElemContext); } - return this.getRuleContext(i, Copy_generic_opt_elemContext); + return this.getRuleContext(i, CopyGenericOptionElemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -86990,11 +81384,11 @@ export class Copy_generic_opt_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_generic_opt_list; + return PostgreSqlParser.RULE_copyGenericOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_generic_opt_list) { - return visitor.visitCopy_generic_opt_list(this); + if (visitor.visitCopyGenericOptionList) { + return visitor.visitCopyGenericOptionList(this); } else { return visitor.visitChildren(this); } @@ -87002,22 +81396,22 @@ export class Copy_generic_opt_listContext extends antlr.ParserRuleContext { } -export class Copy_generic_opt_elemContext extends antlr.ParserRuleContext { +export class CopyGenericOptionElemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } - public copy_generic_opt_arg(): Copy_generic_opt_argContext { - return this.getRuleContext(0, Copy_generic_opt_argContext)!; + public copyGenericOptionArgument(): CopyGenericOptionArgumentContext { + return this.getRuleContext(0, CopyGenericOptionArgumentContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_generic_opt_elem; + return PostgreSqlParser.RULE_copyGenericOptionElem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_generic_opt_elem) { - return visitor.visitCopy_generic_opt_elem(this); + if (visitor.visitCopyGenericOptionElem) { + return visitor.visitCopyGenericOptionElem(this); } else { return visitor.visitChildren(this); } @@ -87025,15 +81419,21 @@ export class Copy_generic_opt_elemContext extends antlr.ParserRuleContext { } -export class Copy_generic_opt_argContext extends antlr.ParserRuleContext { +export class CopyGenericOptionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_boolean_or_string(): Opt_boolean_or_stringContext | null { - return this.getRuleContext(0, Opt_boolean_or_stringContext); + public booleanOrString(): BooleanOrStringContext[]; + public booleanOrString(i: number): BooleanOrStringContext | null; + public booleanOrString(i?: number): BooleanOrStringContext[] | BooleanOrStringContext | null { + if (i === undefined) { + return this.getRuleContexts(BooleanOrStringContext); + } + + return this.getRuleContext(i, BooleanOrStringContext); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -87041,38 +81441,9 @@ export class Copy_generic_opt_argContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public copy_generic_opt_arg_list(): Copy_generic_opt_arg_listContext | null { - return this.getRuleContext(0, Copy_generic_opt_arg_listContext); - } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_generic_opt_arg; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_generic_opt_arg) { - return visitor.visitCopy_generic_opt_arg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Copy_generic_opt_arg_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public copy_generic_opt_arg_list_item(): Copy_generic_opt_arg_list_itemContext[]; - public copy_generic_opt_arg_list_item(i: number): Copy_generic_opt_arg_list_itemContext | null; - public copy_generic_opt_arg_list_item(i?: number): Copy_generic_opt_arg_list_itemContext[] | Copy_generic_opt_arg_list_itemContext | null { - if (i === undefined) { - return this.getRuleContexts(Copy_generic_opt_arg_list_itemContext); - } - - return this.getRuleContext(i, Copy_generic_opt_arg_list_itemContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -87083,11 +81454,11 @@ export class Copy_generic_opt_arg_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_generic_opt_arg_list; + return PostgreSqlParser.RULE_copyGenericOptionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_generic_opt_arg_list) { - return visitor.visitCopy_generic_opt_arg_list(this); + if (visitor.visitCopyGenericOptionArgument) { + return visitor.visitCopyGenericOptionArgument(this); } else { return visitor.visitChildren(this); } @@ -87095,89 +81466,69 @@ export class Copy_generic_opt_arg_listContext extends antlr.ParserRuleContext { } -export class Copy_generic_opt_arg_list_itemContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public opt_boolean_or_string(): Opt_boolean_or_stringContext { - return this.getRuleContext(0, Opt_boolean_or_stringContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_copy_generic_opt_arg_list_item; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCopy_generic_opt_arg_list_item) { - return visitor.visitCopy_generic_opt_arg_list_item(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CreatestmtContext extends antlr.ParserRuleContext { +export class CreateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opttemp(): OpttempContext { - return this.getRuleContext(0, OpttempContext)!; + public temporaryOption(): TemporaryOptionContext { + return this.getRuleContext(0, TemporaryOptionContext)!; } public TABLE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TABLE, 0)!; } - public qualified_name(): Qualified_nameContext[]; - public qualified_name(i: number): Qualified_nameContext | null; - public qualified_name(i?: number): Qualified_nameContext[] | Qualified_nameContext | null { + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { if (i === undefined) { - return this.getRuleContexts(Qualified_nameContext); + return this.getRuleContexts(QualifiedNameContext); } - return this.getRuleContext(i, Qualified_nameContext); + return this.getRuleContext(i, QualifiedNameContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public opttableelementlist(): OpttableelementlistContext | null { - return this.getRuleContext(0, OpttableelementlistContext); + public optionalTableElementList(): OptionalTableElementListContext | null { + return this.getRuleContext(0, OptionalTableElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public optinherit(): OptinheritContext | null { - return this.getRuleContext(0, OptinheritContext); + public inheritClause(): InheritClauseContext | null { + return this.getRuleContext(0, InheritClauseContext); } - public optpartitionspec(): OptpartitionspecContext | null { - return this.getRuleContext(0, OptpartitionspecContext); + public optionalPartitionSpecification(): OptionalPartitionSpecificationContext | null { + return this.getRuleContext(0, OptionalPartitionSpecificationContext); } - public table_access_method_clause(): Table_access_method_clauseContext | null { - return this.getRuleContext(0, Table_access_method_clauseContext); + public optionalTableAccessMethodClause(): OptionalTableAccessMethodClauseContext | null { + return this.getRuleContext(0, OptionalTableAccessMethodClauseContext); } - public optwith(): OptwithContext | null { - return this.getRuleContext(0, OptwithContext); + public with(): WithContext | null { + return this.getRuleContext(0, WithContext); } - public oncommitoption(): OncommitoptionContext | null { - return this.getRuleContext(0, OncommitoptionContext); + public onCommitOption(): OnCommitOptionContext | null { + return this.getRuleContext(0, OnCommitOptionContext); } - public opttablespace(): OpttablespaceContext | null { - return this.getRuleContext(0, OpttablespaceContext); + public optionalTablespace(): OptionalTablespaceContext | null { + return this.getRuleContext(0, OptionalTablespaceContext); } public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } - public opttypedtableelementlist(): OpttypedtableelementlistContext | null { - return this.getRuleContext(0, OpttypedtableelementlistContext); + public optionalTypedTableElementList(): OptionalTypedTableElementListContext | null { + return this.getRuleContext(0, OptionalTypedTableElementListContext); } public PARTITION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARTITION, 0); } - public partitionboundspec(): PartitionboundspecContext | null { - return this.getRuleContext(0, PartitionboundspecContext); + public partitionBoundSpecification(): PartitionBoundSpecificationContext | null { + return this.getRuleContext(0, PartitionBoundSpecificationContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -87189,11 +81540,11 @@ export class CreatestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createstmt; + return PostgreSqlParser.RULE_createStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatestmt) { - return visitor.visitCreatestmt(this); + if (visitor.visitCreateStatement) { + return visitor.visitCreateStatement(this); } else { return visitor.visitChildren(this); } @@ -87201,7 +81552,7 @@ export class CreatestmtContext extends antlr.ParserRuleContext { } -export class OpttempContext extends antlr.ParserRuleContext { +export class TemporaryOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87221,11 +81572,11 @@ export class OpttempContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.UNLOGGED, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttemp; + return PostgreSqlParser.RULE_temporaryOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttemp) { - return visitor.visitOpttemp(this); + if (visitor.visitTemporaryOption) { + return visitor.visitTemporaryOption(this); } else { return visitor.visitChildren(this); } @@ -87233,19 +81584,19 @@ export class OpttempContext extends antlr.ParserRuleContext { } -export class OpttableelementlistContext extends antlr.ParserRuleContext { +export class OptionalTableElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableelementlist(): TableelementlistContext | null { - return this.getRuleContext(0, TableelementlistContext); + public tableElementList(): TableElementListContext | null { + return this.getRuleContext(0, TableElementListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttableelementlist; + return PostgreSqlParser.RULE_optionalTableElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttableelementlist) { - return visitor.visitOpttableelementlist(this); + if (visitor.visitOptionalTableElementList) { + return visitor.visitOptionalTableElementList(this); } else { return visitor.visitChildren(this); } @@ -87253,25 +81604,25 @@ export class OpttableelementlistContext extends antlr.ParserRuleContext { } -export class OpttypedtableelementlistContext extends antlr.ParserRuleContext { +export class OptionalTypedTableElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public typedtableelementlist(): TypedtableelementlistContext | null { - return this.getRuleContext(0, TypedtableelementlistContext); + public typedTableElementList(): TypedTableElementListContext | null { + return this.getRuleContext(0, TypedTableElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttypedtableelementlist; + return PostgreSqlParser.RULE_optionalTypedTableElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttypedtableelementlist) { - return visitor.visitOpttypedtableelementlist(this); + if (visitor.visitOptionalTypedTableElementList) { + return visitor.visitOptionalTypedTableElementList(this); } else { return visitor.visitChildren(this); } @@ -87279,18 +81630,18 @@ export class OpttypedtableelementlistContext extends antlr.ParserRuleContext { } -export class TableelementlistContext extends antlr.ParserRuleContext { +export class TableElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableelement(): TableelementContext[]; - public tableelement(i: number): TableelementContext | null; - public tableelement(i?: number): TableelementContext[] | TableelementContext | null { + public tableElement(): TableElementContext[]; + public tableElement(i: number): TableElementContext | null; + public tableElement(i?: number): TableElementContext[] | TableElementContext | null { if (i === undefined) { - return this.getRuleContexts(TableelementContext); + return this.getRuleContexts(TableElementContext); } - return this.getRuleContext(i, TableelementContext); + return this.getRuleContext(i, TableElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -87302,11 +81653,11 @@ export class TableelementlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tableelementlist; + return PostgreSqlParser.RULE_tableElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTableelementlist) { - return visitor.visitTableelementlist(this); + if (visitor.visitTableElementList) { + return visitor.visitTableElementList(this); } else { return visitor.visitChildren(this); } @@ -87314,18 +81665,18 @@ export class TableelementlistContext extends antlr.ParserRuleContext { } -export class TypedtableelementlistContext extends antlr.ParserRuleContext { +export class TypedTableElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public typedtableelement(): TypedtableelementContext[]; - public typedtableelement(i: number): TypedtableelementContext | null; - public typedtableelement(i?: number): TypedtableelementContext[] | TypedtableelementContext | null { + public typedTableElement(): TypedTableElementContext[]; + public typedTableElement(i: number): TypedTableElementContext | null; + public typedTableElement(i?: number): TypedTableElementContext[] | TypedTableElementContext | null { if (i === undefined) { - return this.getRuleContexts(TypedtableelementContext); + return this.getRuleContexts(TypedTableElementContext); } - return this.getRuleContext(i, TypedtableelementContext); + return this.getRuleContext(i, TypedTableElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -87337,11 +81688,11 @@ export class TypedtableelementlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_typedtableelementlist; + return PostgreSqlParser.RULE_typedTableElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTypedtableelementlist) { - return visitor.visitTypedtableelementlist(this); + if (visitor.visitTypedTableElementList) { + return visitor.visitTypedTableElementList(this); } else { return visitor.visitChildren(this); } @@ -87349,25 +81700,25 @@ export class TypedtableelementlistContext extends antlr.ParserRuleContext { } -export class TableelementContext extends antlr.ParserRuleContext { +export class TableElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableconstraint(): TableconstraintContext | null { - return this.getRuleContext(0, TableconstraintContext); + public tableConstraint(): TableConstraintContext | null { + return this.getRuleContext(0, TableConstraintContext); } - public tablelikeclause(): TablelikeclauseContext | null { - return this.getRuleContext(0, TablelikeclauseContext); + public tableLikeClause(): TableLikeClauseContext | null { + return this.getRuleContext(0, TableLikeClauseContext); } - public columnDef(): ColumnDefContext | null { - return this.getRuleContext(0, ColumnDefContext); + public columnDefinition(): ColumnDefinitionContext | null { + return this.getRuleContext(0, ColumnDefinitionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tableelement; + return PostgreSqlParser.RULE_tableElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTableelement) { - return visitor.visitTableelement(this); + if (visitor.visitTableElement) { + return visitor.visitTableElement(this); } else { return visitor.visitChildren(this); } @@ -87375,22 +81726,22 @@ export class TableelementContext extends antlr.ParserRuleContext { } -export class TypedtableelementContext extends antlr.ParserRuleContext { +export class TypedTableElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnOptions(): ColumnOptionsContext | null { return this.getRuleContext(0, ColumnOptionsContext); } - public tableconstraint(): TableconstraintContext | null { - return this.getRuleContext(0, TableconstraintContext); + public tableConstraint(): TableConstraintContext | null { + return this.getRuleContext(0, TableConstraintContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_typedtableelement; + return PostgreSqlParser.RULE_typedTableElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTypedtableelement) { - return visitor.visitTypedtableelement(this); + if (visitor.visitTypedTableElement) { + return visitor.visitTypedTableElement(this); } else { return visitor.visitChildren(this); } @@ -87398,28 +81749,28 @@ export class TypedtableelementContext extends antlr.ParserRuleContext { } -export class ColumnDefContext extends antlr.ParserRuleContext { +export class ColumnDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; } - public colquallist(): ColquallistContext { - return this.getRuleContext(0, ColquallistContext)!; + public columnQualifierList(): ColumnQualifierListContext { + return this.getRuleContext(0, ColumnQualifierListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_columnDef; + return PostgreSqlParser.RULE_columnDefinition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumnDef) { - return visitor.visitColumnDef(this); + if (visitor.visitColumnDefinition) { + return visitor.visitColumnDefinition(this); } else { return visitor.visitChildren(this); } @@ -87431,11 +81782,11 @@ export class ColumnOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public colquallist(): ColquallistContext { - return this.getRuleContext(0, ColquallistContext)!; + public columnQualifierList(): ColumnQualifierListContext { + return this.getRuleContext(0, ColumnQualifierListContext)!; } public WITH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITH, 0); @@ -87456,25 +81807,25 @@ export class ColumnOptionsContext extends antlr.ParserRuleContext { } -export class ColquallistContext extends antlr.ParserRuleContext { +export class ColumnQualifierListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colconstraint(): ColconstraintContext[]; - public colconstraint(i: number): ColconstraintContext | null; - public colconstraint(i?: number): ColconstraintContext[] | ColconstraintContext | null { + public columnConstraint(): ColumnConstraintContext[]; + public columnConstraint(i: number): ColumnConstraintContext | null; + public columnConstraint(i?: number): ColumnConstraintContext[] | ColumnConstraintContext | null { if (i === undefined) { - return this.getRuleContexts(ColconstraintContext); + return this.getRuleContexts(ColumnConstraintContext); } - return this.getRuleContext(i, ColconstraintContext); + return this.getRuleContext(i, ColumnConstraintContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_colquallist; + return PostgreSqlParser.RULE_columnQualifierList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColquallist) { - return visitor.visitColquallist(this); + if (visitor.visitColumnQualifierList) { + return visitor.visitColumnQualifierList(this); } else { return visitor.visitChildren(this); } @@ -87482,7 +81833,7 @@ export class ColquallistContext extends antlr.ParserRuleContext { } -export class ColconstraintContext extends antlr.ParserRuleContext { +export class ColumnConstraintContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87492,24 +81843,24 @@ export class ColconstraintContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } - public colconstraintelem(): ColconstraintelemContext | null { - return this.getRuleContext(0, ColconstraintelemContext); + public columnConstraintElement(): ColumnConstraintElementContext | null { + return this.getRuleContext(0, ColumnConstraintElementContext); } - public constraintattr(): ConstraintattrContext | null { - return this.getRuleContext(0, ConstraintattrContext); + public constraintAttribute(): ConstraintAttributeContext | null { + return this.getRuleContext(0, ConstraintAttributeContext); } public COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATE, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_colconstraint; + return PostgreSqlParser.RULE_columnConstraint; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColconstraint) { - return visitor.visitColconstraint(this); + if (visitor.visitColumnConstraint) { + return visitor.visitColumnConstraint(this); } else { return visitor.visitChildren(this); } @@ -87517,7 +81868,7 @@ export class ColconstraintContext extends antlr.ParserRuleContext { } -export class ColconstraintelemContext extends antlr.ParserRuleContext { +export class ColumnConstraintElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87530,11 +81881,11 @@ export class ColconstraintelemContext extends antlr.ParserRuleContext { public UNIQUE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.UNIQUE, 0); } - public opt_definition(): Opt_definitionContext | null { - return this.getRuleContext(0, Opt_definitionContext); + public optionalDefinition(): OptionalDefinitionContext | null { + return this.getRuleContext(0, OptionalDefinitionContext); } - public optconstablespace(): OptconstablespaceContext | null { - return this.getRuleContext(0, OptconstablespaceContext); + public usingIndexTablespace(): UsingIndexTablespaceContext | null { + return this.getRuleContext(0, UsingIndexTablespaceContext); } public PRIMARY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PRIMARY, 0); @@ -87548,26 +81899,29 @@ export class ColconstraintelemContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public opt_no_inherit(): Opt_no_inheritContext | null { - return this.getRuleContext(0, Opt_no_inheritContext); + public NO(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.NO, 0); + } + public INHERIT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.INHERIT, 0); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); } - public b_expr(): B_exprContext | null { - return this.getRuleContext(0, B_exprContext); + public expression2(): Expression2Context | null { + return this.getRuleContext(0, Expression2Context); } public GENERATED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GENERATED, 0); } - public generated_when(): Generated_whenContext | null { - return this.getRuleContext(0, Generated_whenContext); + public generatedWhen(): GeneratedWhenContext | null { + return this.getRuleContext(0, GeneratedWhenContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -87575,8 +81929,8 @@ export class ColconstraintelemContext extends antlr.ParserRuleContext { public IDENTITY_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IDENTITY_P, 0); } - public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext | null { - return this.getRuleContext(0, OptparenthesizedseqoptlistContext); + public optionalParenthesizedSeqOptionsList(): OptionalParenthesizedSeqOptionsListContext | null { + return this.getRuleContext(0, OptionalParenthesizedSeqOptionsListContext); } public STORED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STORED, 0); @@ -87584,24 +81938,24 @@ export class ColconstraintelemContext extends antlr.ParserRuleContext { public REFERENCES(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REFERENCES, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public columnListWithParentheses(): ColumnListWithParenthesesContext | null { + return this.getRuleContext(0, ColumnListWithParenthesesContext); } - public key_match(): Key_matchContext | null { - return this.getRuleContext(0, Key_matchContext); + public matchClause(): MatchClauseContext | null { + return this.getRuleContext(0, MatchClauseContext); } - public key_actions(): Key_actionsContext | null { - return this.getRuleContext(0, Key_actionsContext); + public keyActions(): KeyActionsContext | null { + return this.getRuleContext(0, KeyActionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_colconstraintelem; + return PostgreSqlParser.RULE_columnConstraintElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColconstraintelem) { - return visitor.visitColconstraintelem(this); + if (visitor.visitColumnConstraintElement) { + return visitor.visitColumnConstraintElement(this); } else { return visitor.visitChildren(this); } @@ -87609,7 +81963,7 @@ export class ColconstraintelemContext extends antlr.ParserRuleContext { } -export class Generated_whenContext extends antlr.ParserRuleContext { +export class GeneratedWhenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87623,11 +81977,11 @@ export class Generated_whenContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generated_when; + return PostgreSqlParser.RULE_generatedWhen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGenerated_when) { - return visitor.visitGenerated_when(this); + if (visitor.visitGeneratedWhen) { + return visitor.visitGeneratedWhen(this); } else { return visitor.visitChildren(this); } @@ -87635,7 +81989,7 @@ export class Generated_whenContext extends antlr.ParserRuleContext { } -export class ConstraintattrContext extends antlr.ParserRuleContext { +export class ConstraintAttributeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87655,11 +82009,11 @@ export class ConstraintattrContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.IMMEDIATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraintattr; + return PostgreSqlParser.RULE_constraintAttribute; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraintattr) { - return visitor.visitConstraintattr(this); + if (visitor.visitConstraintAttribute) { + return visitor.visitConstraintAttribute(this); } else { return visitor.visitChildren(this); } @@ -87667,25 +82021,25 @@ export class ConstraintattrContext extends antlr.ParserRuleContext { } -export class TablelikeclauseContext extends antlr.ParserRuleContext { +export class TableLikeClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LIKE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LIKE, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public tablelikeoptionlist(): TablelikeoptionlistContext { - return this.getRuleContext(0, TablelikeoptionlistContext)!; + public tableLikeOptionList(): TableLikeOptionListContext { + return this.getRuleContext(0, TableLikeOptionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablelikeclause; + return PostgreSqlParser.RULE_tableLikeClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablelikeclause) { - return visitor.visitTablelikeclause(this); + if (visitor.visitTableLikeClause) { + return visitor.visitTableLikeClause(this); } else { return visitor.visitChildren(this); } @@ -87693,18 +82047,18 @@ export class TablelikeclauseContext extends antlr.ParserRuleContext { } -export class TablelikeoptionlistContext extends antlr.ParserRuleContext { +export class TableLikeOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tablelikeoption(): TablelikeoptionContext[]; - public tablelikeoption(i: number): TablelikeoptionContext | null; - public tablelikeoption(i?: number): TablelikeoptionContext[] | TablelikeoptionContext | null { + public tableLikeOption(): TableLikeOptionContext[]; + public tableLikeOption(i: number): TableLikeOptionContext | null; + public tableLikeOption(i?: number): TableLikeOptionContext[] | TableLikeOptionContext | null { if (i === undefined) { - return this.getRuleContexts(TablelikeoptionContext); + return this.getRuleContexts(TableLikeOptionContext); } - return this.getRuleContext(i, TablelikeoptionContext); + return this.getRuleContext(i, TableLikeOptionContext); } public INCLUDING(): antlr.TerminalNode[]; public INCLUDING(i: number): antlr.TerminalNode | null; @@ -87725,11 +82079,11 @@ export class TablelikeoptionlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablelikeoptionlist; + return PostgreSqlParser.RULE_tableLikeOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablelikeoptionlist) { - return visitor.visitTablelikeoptionlist(this); + if (visitor.visitTableLikeOptionList) { + return visitor.visitTableLikeOptionList(this); } else { return visitor.visitChildren(this); } @@ -87737,7 +82091,7 @@ export class TablelikeoptionlistContext extends antlr.ParserRuleContext { } -export class TablelikeoptionContext extends antlr.ParserRuleContext { +export class TableLikeOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87769,11 +82123,11 @@ export class TablelikeoptionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablelikeoption; + return PostgreSqlParser.RULE_tableLikeOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablelikeoption) { - return visitor.visitTablelikeoption(this); + if (visitor.visitTableLikeOption) { + return visitor.visitTableLikeOption(this); } else { return visitor.visitChildren(this); } @@ -87781,7 +82135,7 @@ export class TablelikeoptionContext extends antlr.ParserRuleContext { } -export class TableconstraintContext extends antlr.ParserRuleContext { +export class TableConstraintContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87791,15 +82145,15 @@ export class TableconstraintContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } - public constraintelem(): ConstraintelemContext { - return this.getRuleContext(0, ConstraintelemContext)!; + public constraintElement(): ConstraintElementContext { + return this.getRuleContext(0, ConstraintElementContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tableconstraint; + return PostgreSqlParser.RULE_tableConstraint; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTableconstraint) { - return visitor.visitTableconstraint(this); + if (visitor.visitTableConstraint) { + return visitor.visitTableConstraint(this); } else { return visitor.visitChildren(this); } @@ -87807,7 +82161,7 @@ export class TableconstraintContext extends antlr.ParserRuleContext { } -export class ConstraintelemContext extends antlr.ParserRuleContext { +export class ConstraintElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -87817,32 +82171,32 @@ export class ConstraintelemContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public constraintattributespec(): ConstraintattributespecContext | null { - return this.getRuleContext(0, ConstraintattributespecContext); + public constraintAttributeSpecification(): ConstraintAttributeSpecificationContext | null { + return this.getRuleContext(0, ConstraintAttributeSpecificationContext); } public UNIQUE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.UNIQUE, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } - public opt_c_include(): Opt_c_includeContext | null { - return this.getRuleContext(0, Opt_c_includeContext); + public optionalColumnListInclude(): OptionalColumnListIncludeContext | null { + return this.getRuleContext(0, OptionalColumnListIncludeContext); } - public opt_definition(): Opt_definitionContext | null { - return this.getRuleContext(0, Opt_definitionContext); + public optionalDefinition(): OptionalDefinitionContext | null { + return this.getRuleContext(0, OptionalDefinitionContext); } - public optconstablespace(): OptconstablespaceContext | null { - return this.getRuleContext(0, OptconstablespaceContext); + public usingIndexTablespace(): UsingIndexTablespaceContext | null { + return this.getRuleContext(0, UsingIndexTablespaceContext); } - public existingindex(): ExistingindexContext | null { - return this.getRuleContext(0, ExistingindexContext); + public existingIndex(): ExistingIndexContext | null { + return this.getRuleContext(0, ExistingIndexContext); } public PRIMARY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PRIMARY, 0); @@ -87853,14 +82207,14 @@ export class ConstraintelemContext extends antlr.ParserRuleContext { public EXCLUDE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXCLUDE, 0); } - public access_method_clause(): Access_method_clauseContext | null { - return this.getRuleContext(0, Access_method_clauseContext); + public optionalAccessMethodClause(): OptionalAccessMethodClauseContext | null { + return this.getRuleContext(0, OptionalAccessMethodClauseContext); } - public exclusionconstraintlist(): ExclusionconstraintlistContext | null { - return this.getRuleContext(0, ExclusionconstraintlistContext); + public exclusionConstraintList(): ExclusionConstraintListContext | null { + return this.getRuleContext(0, ExclusionConstraintListContext); } - public exclusionwhereclause(): ExclusionwhereclauseContext | null { - return this.getRuleContext(0, ExclusionwhereclauseContext); + public exclusionWhereClause(): ExclusionWhereClauseContext | null { + return this.getRuleContext(0, ExclusionWhereClauseContext); } public FOREIGN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOREIGN, 0); @@ -87868,24 +82222,24 @@ export class ConstraintelemContext extends antlr.ParserRuleContext { public REFERENCES(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REFERENCES, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public columnListWithParentheses(): ColumnListWithParenthesesContext | null { + return this.getRuleContext(0, ColumnListWithParenthesesContext); } - public key_match(): Key_matchContext | null { - return this.getRuleContext(0, Key_matchContext); + public matchClause(): MatchClauseContext | null { + return this.getRuleContext(0, MatchClauseContext); } - public key_actions(): Key_actionsContext | null { - return this.getRuleContext(0, Key_actionsContext); + public keyActions(): KeyActionsContext | null { + return this.getRuleContext(0, KeyActionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraintelem; + return PostgreSqlParser.RULE_constraintElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraintelem) { - return visitor.visitConstraintelem(this); + if (visitor.visitConstraintElement) { + return visitor.visitConstraintElement(this); } else { return visitor.visitChildren(this); } @@ -87893,48 +82247,25 @@ export class ConstraintelemContext extends antlr.ParserRuleContext { } -export class Opt_no_inheritContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public NO(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.NO, 0); - } - public INHERIT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.INHERIT, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_no_inherit; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_no_inherit) { - return visitor.visitOpt_no_inherit(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_column_listContext extends antlr.ParserRuleContext { +export class ColumnListWithParenthesesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_column_list; + return PostgreSqlParser.RULE_columnListWithParentheses; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_column_list) { - return visitor.visitOpt_column_list(this); + if (visitor.visitColumnListWithParentheses) { + return visitor.visitColumnListWithParentheses(this); } else { return visitor.visitChildren(this); } @@ -87942,18 +82273,18 @@ export class Opt_column_listContext extends antlr.ParserRuleContext { } -export class ColumnlistContext extends antlr.ParserRuleContext { +export class ColumnListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnElem(): ColumnElemContext[]; - public columnElem(i: number): ColumnElemContext | null; - public columnElem(i?: number): ColumnElemContext[] | ColumnElemContext | null { + public columnElement(): ColumnElementContext[]; + public columnElement(i: number): ColumnElementContext | null; + public columnElement(i?: number): ColumnElementContext[] | ColumnElementContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnElemContext); + return this.getRuleContexts(ColumnElementContext); } - return this.getRuleContext(i, ColumnElemContext); + return this.getRuleContext(i, ColumnElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -87965,11 +82296,11 @@ export class ColumnlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_columnlist; + return PostgreSqlParser.RULE_columnList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumnlist) { - return visitor.visitColumnlist(this); + if (visitor.visitColumnList) { + return visitor.visitColumnList(this); } else { return visitor.visitChildren(this); } @@ -87977,19 +82308,19 @@ export class ColumnlistContext extends antlr.ParserRuleContext { } -export class ColumnElemContext extends antlr.ParserRuleContext { +export class ColumnElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_columnElem; + return PostgreSqlParser.RULE_columnElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumnElem) { - return visitor.visitColumnElem(this); + if (visitor.visitColumnElement) { + return visitor.visitColumnElement(this); } else { return visitor.visitChildren(this); } @@ -87997,7 +82328,7 @@ export class ColumnElemContext extends antlr.ParserRuleContext { } -export class Opt_c_includeContext extends antlr.ParserRuleContext { +export class OptionalColumnListIncludeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88007,18 +82338,18 @@ export class Opt_c_includeContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_c_include; + return PostgreSqlParser.RULE_optionalColumnListInclude; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_c_include) { - return visitor.visitOpt_c_include(this); + if (visitor.visitOptionalColumnListInclude) { + return visitor.visitOptionalColumnListInclude(this); } else { return visitor.visitChildren(this); } @@ -88026,7 +82357,7 @@ export class Opt_c_includeContext extends antlr.ParserRuleContext { } -export class Key_matchContext extends antlr.ParserRuleContext { +export class MatchClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88043,11 +82374,11 @@ export class Key_matchContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SIMPLE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_key_match; + return PostgreSqlParser.RULE_matchClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitKey_match) { - return visitor.visitKey_match(this); + if (visitor.visitMatchClause) { + return visitor.visitMatchClause(this); } else { return visitor.visitChildren(this); } @@ -88055,18 +82386,18 @@ export class Key_matchContext extends antlr.ParserRuleContext { } -export class ExclusionconstraintlistContext extends antlr.ParserRuleContext { +export class ExclusionConstraintListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public exclusionconstraintelem(): ExclusionconstraintelemContext[]; - public exclusionconstraintelem(i: number): ExclusionconstraintelemContext | null; - public exclusionconstraintelem(i?: number): ExclusionconstraintelemContext[] | ExclusionconstraintelemContext | null { + public exclusionConstraintElement(): ExclusionConstraintElementContext[]; + public exclusionConstraintElement(i: number): ExclusionConstraintElementContext | null; + public exclusionConstraintElement(i?: number): ExclusionConstraintElementContext[] | ExclusionConstraintElementContext | null { if (i === undefined) { - return this.getRuleContexts(ExclusionconstraintelemContext); + return this.getRuleContexts(ExclusionConstraintElementContext); } - return this.getRuleContext(i, ExclusionconstraintelemContext); + return this.getRuleContext(i, ExclusionConstraintElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -88078,11 +82409,11 @@ export class ExclusionconstraintlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_exclusionconstraintlist; + return PostgreSqlParser.RULE_exclusionConstraintList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExclusionconstraintlist) { - return visitor.visitExclusionconstraintlist(this); + if (visitor.visitExclusionConstraintList) { + return visitor.visitExclusionConstraintList(this); } else { return visitor.visitChildren(this); } @@ -88090,18 +82421,18 @@ export class ExclusionconstraintlistContext extends antlr.ParserRuleContext { } -export class ExclusionconstraintelemContext extends antlr.ParserRuleContext { +export class ExclusionConstraintElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public index_elem(): Index_elemContext { - return this.getRuleContext(0, Index_elemContext)!; + public indexElement(): IndexElementContext { + return this.getRuleContext(0, IndexElementContext)!; } public WITH(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WITH, 0)!; } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); @@ -88113,11 +82444,11 @@ export class ExclusionconstraintelemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_exclusionconstraintelem; + return PostgreSqlParser.RULE_exclusionConstraintElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExclusionconstraintelem) { - return visitor.visitExclusionconstraintelem(this); + if (visitor.visitExclusionConstraintElement) { + return visitor.visitExclusionConstraintElement(this); } else { return visitor.visitChildren(this); } @@ -88125,7 +82456,7 @@ export class ExclusionconstraintelemContext extends antlr.ParserRuleContext { } -export class ExclusionwhereclauseContext extends antlr.ParserRuleContext { +export class ExclusionWhereClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88135,18 +82466,18 @@ export class ExclusionwhereclauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_exclusionwhereclause; + return PostgreSqlParser.RULE_exclusionWhereClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExclusionwhereclause) { - return visitor.visitExclusionwhereclause(this); + if (visitor.visitExclusionWhereClause) { + return visitor.visitExclusionWhereClause(this); } else { return visitor.visitChildren(this); } @@ -88154,22 +82485,22 @@ export class ExclusionwhereclauseContext extends antlr.ParserRuleContext { } -export class Key_actionsContext extends antlr.ParserRuleContext { +export class KeyActionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public key_update(): Key_updateContext | null { - return this.getRuleContext(0, Key_updateContext); + public onKeyUpdateClause(): OnKeyUpdateClauseContext | null { + return this.getRuleContext(0, OnKeyUpdateClauseContext); } - public key_delete(): Key_deleteContext | null { - return this.getRuleContext(0, Key_deleteContext); + public onKeyDeleteClause(): OnKeyDeleteClauseContext | null { + return this.getRuleContext(0, OnKeyDeleteClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_key_actions; + return PostgreSqlParser.RULE_keyActions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitKey_actions) { - return visitor.visitKey_actions(this); + if (visitor.visitKeyActions) { + return visitor.visitKeyActions(this); } else { return visitor.visitChildren(this); } @@ -88177,7 +82508,7 @@ export class Key_actionsContext extends antlr.ParserRuleContext { } -export class Key_updateContext extends antlr.ParserRuleContext { +export class OnKeyUpdateClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88187,15 +82518,15 @@ export class Key_updateContext extends antlr.ParserRuleContext { public UPDATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.UPDATE, 0)!; } - public key_action(): Key_actionContext { - return this.getRuleContext(0, Key_actionContext)!; + public keyAction(): KeyActionContext { + return this.getRuleContext(0, KeyActionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_key_update; + return PostgreSqlParser.RULE_onKeyUpdateClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitKey_update) { - return visitor.visitKey_update(this); + if (visitor.visitOnKeyUpdateClause) { + return visitor.visitOnKeyUpdateClause(this); } else { return visitor.visitChildren(this); } @@ -88203,7 +82534,7 @@ export class Key_updateContext extends antlr.ParserRuleContext { } -export class Key_deleteContext extends antlr.ParserRuleContext { +export class OnKeyDeleteClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88213,15 +82544,15 @@ export class Key_deleteContext extends antlr.ParserRuleContext { public DELETE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DELETE_P, 0)!; } - public key_action(): Key_actionContext { - return this.getRuleContext(0, Key_actionContext)!; + public keyAction(): KeyActionContext { + return this.getRuleContext(0, KeyActionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_key_delete; + return PostgreSqlParser.RULE_onKeyDeleteClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitKey_delete) { - return visitor.visitKey_delete(this); + if (visitor.visitOnKeyDeleteClause) { + return visitor.visitOnKeyDeleteClause(this); } else { return visitor.visitChildren(this); } @@ -88229,7 +82560,7 @@ export class Key_deleteContext extends antlr.ParserRuleContext { } -export class Key_actionContext extends antlr.ParserRuleContext { +export class KeyActionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88255,11 +82586,11 @@ export class Key_actionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_key_action; + return PostgreSqlParser.RULE_keyAction; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitKey_action) { - return visitor.visitKey_action(this); + if (visitor.visitKeyAction) { + return visitor.visitKeyAction(this); } else { return visitor.visitChildren(this); } @@ -88267,7 +82598,7 @@ export class Key_actionContext extends antlr.ParserRuleContext { } -export class OptinheritContext extends antlr.ParserRuleContext { +export class InheritClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88277,18 +82608,18 @@ export class OptinheritContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public qualified_name_list(): Qualified_name_listContext | null { - return this.getRuleContext(0, Qualified_name_listContext); + public qualifiedNameList(): QualifiedNameListContext | null { + return this.getRuleContext(0, QualifiedNameListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optinherit; + return PostgreSqlParser.RULE_inheritClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptinherit) { - return visitor.visitOptinherit(this); + if (visitor.visitInheritClause) { + return visitor.visitInheritClause(this); } else { return visitor.visitChildren(this); } @@ -88296,19 +82627,19 @@ export class OptinheritContext extends antlr.ParserRuleContext { } -export class OptpartitionspecContext extends antlr.ParserRuleContext { +export class OptionalPartitionSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public partitionspec(): PartitionspecContext | null { - return this.getRuleContext(0, PartitionspecContext); + public partitionSpecification(): PartitionSpecificationContext | null { + return this.getRuleContext(0, PartitionSpecificationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optpartitionspec; + return PostgreSqlParser.RULE_optionalPartitionSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptpartitionspec) { - return visitor.visitOptpartitionspec(this); + if (visitor.visitOptionalPartitionSpecification) { + return visitor.visitOptionalPartitionSpecification(this); } else { return visitor.visitChildren(this); } @@ -88316,7 +82647,7 @@ export class OptpartitionspecContext extends antlr.ParserRuleContext { } -export class PartitionspecContext extends antlr.ParserRuleContext { +export class PartitionSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88326,24 +82657,24 @@ export class PartitionspecContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BY, 0)!; } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public part_params(): Part_paramsContext { - return this.getRuleContext(0, Part_paramsContext)!; + public partitionElements(): PartitionElementsContext { + return this.getRuleContext(0, PartitionElementsContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_partitionspec; + return PostgreSqlParser.RULE_partitionSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPartitionspec) { - return visitor.visitPartitionspec(this); + if (visitor.visitPartitionSpecification) { + return visitor.visitPartitionSpecification(this); } else { return visitor.visitChildren(this); } @@ -88351,18 +82682,18 @@ export class PartitionspecContext extends antlr.ParserRuleContext { } -export class Part_paramsContext extends antlr.ParserRuleContext { +export class PartitionElementsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public part_elem(): Part_elemContext[]; - public part_elem(i: number): Part_elemContext | null; - public part_elem(i?: number): Part_elemContext[] | Part_elemContext | null { + public partitionElement(): PartitionElementContext[]; + public partitionElement(i: number): PartitionElementContext | null; + public partitionElement(i?: number): PartitionElementContext[] | PartitionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Part_elemContext); + return this.getRuleContexts(PartitionElementContext); } - return this.getRuleContext(i, Part_elemContext); + return this.getRuleContext(i, PartitionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -88374,11 +82705,11 @@ export class Part_paramsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_part_params; + return PostgreSqlParser.RULE_partitionElements; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPart_params) { - return visitor.visitPart_params(this); + if (visitor.visitPartitionElements) { + return visitor.visitPartitionElements(this); } else { return visitor.visitChildren(this); } @@ -88386,37 +82717,37 @@ export class Part_paramsContext extends antlr.ParserRuleContext { } -export class Part_elemContext extends antlr.ParserRuleContext { +export class PartitionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public opt_collate(): Opt_collateContext { - return this.getRuleContext(0, Opt_collateContext)!; + public optionalCollate(): OptionalCollateContext { + return this.getRuleContext(0, OptionalCollateContext)!; } - public opt_class(): Opt_classContext { - return this.getRuleContext(0, Opt_classContext)!; + public optionalClass(): OptionalClassContext { + return this.getRuleContext(0, OptionalClassContext)!; } - public func_expr_windowless(): Func_expr_windowlessContext | null { - return this.getRuleContext(0, Func_expr_windowlessContext); + public functionExpressionWindowless(): FunctionExpressionWindowlessContext | null { + return this.getRuleContext(0, FunctionExpressionWindowlessContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_part_elem; + return PostgreSqlParser.RULE_partitionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPart_elem) { - return visitor.visitPart_elem(this); + if (visitor.visitPartitionElement) { + return visitor.visitPartitionElement(this); } else { return visitor.visitChildren(this); } @@ -88424,7 +82755,7 @@ export class Part_elemContext extends antlr.ParserRuleContext { } -export class Table_access_method_clauseContext extends antlr.ParserRuleContext { +export class OptionalTableAccessMethodClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88435,11 +82766,11 @@ export class Table_access_method_clauseContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_access_method_clause; + return PostgreSqlParser.RULE_optionalTableAccessMethodClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_access_method_clause) { - return visitor.visitTable_access_method_clause(this); + if (visitor.visitOptionalTableAccessMethodClause) { + return visitor.visitOptionalTableAccessMethodClause(this); } else { return visitor.visitChildren(this); } @@ -88447,15 +82778,15 @@ export class Table_access_method_clauseContext extends antlr.ParserRuleContext { } -export class OptwithContext extends antlr.ParserRuleContext { +export class WithContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WITH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITH, 0); } - public reloptions(): ReloptionsContext | null { - return this.getRuleContext(0, ReloptionsContext); + public relOptions(): RelOptionsContext | null { + return this.getRuleContext(0, RelOptionsContext); } public WITHOUT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITHOUT, 0); @@ -88464,11 +82795,11 @@ export class OptwithContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OIDS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optwith; + return PostgreSqlParser.RULE_with; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptwith) { - return visitor.visitOptwith(this); + if (visitor.visitWith) { + return visitor.visitWith(this); } else { return visitor.visitChildren(this); } @@ -88476,7 +82807,7 @@ export class OptwithContext extends antlr.ParserRuleContext { } -export class OncommitoptionContext extends antlr.ParserRuleContext { +export class OnCommitOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88499,11 +82830,11 @@ export class OncommitoptionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PRESERVE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_oncommitoption; + return PostgreSqlParser.RULE_onCommitOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOncommitoption) { - return visitor.visitOncommitoption(this); + if (visitor.visitOnCommitOption) { + return visitor.visitOnCommitOption(this); } else { return visitor.visitChildren(this); } @@ -88511,7 +82842,7 @@ export class OncommitoptionContext extends antlr.ParserRuleContext { } -export class OpttablespaceContext extends antlr.ParserRuleContext { +export class OptionalTablespaceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88522,11 +82853,11 @@ export class OpttablespaceContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttablespace; + return PostgreSqlParser.RULE_optionalTablespace; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttablespace) { - return visitor.visitOpttablespace(this); + if (visitor.visitOptionalTablespace) { + return visitor.visitOptionalTablespace(this); } else { return visitor.visitChildren(this); } @@ -88534,7 +82865,7 @@ export class OpttablespaceContext extends antlr.ParserRuleContext { } -export class OptconstablespaceContext extends antlr.ParserRuleContext { +export class UsingIndexTablespaceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88551,11 +82882,11 @@ export class OptconstablespaceContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optconstablespace; + return PostgreSqlParser.RULE_usingIndexTablespace; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptconstablespace) { - return visitor.visitOptconstablespace(this); + if (visitor.visitUsingIndexTablespace) { + return visitor.visitUsingIndexTablespace(this); } else { return visitor.visitChildren(this); } @@ -88563,7 +82894,7 @@ export class OptconstablespaceContext extends antlr.ParserRuleContext { } -export class ExistingindexContext extends antlr.ParserRuleContext { +export class ExistingIndexContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88577,11 +82908,11 @@ export class ExistingindexContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_existingindex; + return PostgreSqlParser.RULE_existingIndex; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExistingindex) { - return visitor.visitExistingindex(this); + if (visitor.visitExistingIndex) { + return visitor.visitExistingIndex(this); } else { return visitor.visitChildren(this); } @@ -88589,7 +82920,7 @@ export class ExistingindexContext extends antlr.ParserRuleContext { } -export class CreatestatsstmtContext extends antlr.ParserRuleContext { +export class CreateStatsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88599,23 +82930,23 @@ export class CreatestatsstmtContext extends antlr.ParserRuleContext { public STATISTICS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.STATISTICS, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } - public opt_name_list(): Opt_name_listContext { - return this.getRuleContext(0, Opt_name_listContext)!; + public optionalNameList(): OptionalNameListContext { + return this.getRuleContext(0, OptionalNameListContext)!; } public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; } - public from_list(): From_listContext { - return this.getRuleContext(0, From_listContext)!; + public fromList(): FromListContext { + return this.getRuleContext(0, FromListContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88627,11 +82958,11 @@ export class CreatestatsstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createstatsstmt; + return PostgreSqlParser.RULE_createStatsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatestatsstmt) { - return visitor.visitCreatestatsstmt(this); + if (visitor.visitCreateStatsStatement) { + return visitor.visitCreateStatsStatement(this); } else { return visitor.visitChildren(this); } @@ -88639,7 +82970,7 @@ export class CreatestatsstmtContext extends antlr.ParserRuleContext { } -export class AlterstatsstmtContext extends antlr.ParserRuleContext { +export class AlterStatsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88655,14 +82986,14 @@ export class AlterstatsstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.STATISTICS, i); } } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; } - public signediconst(): SignediconstContext { - return this.getRuleContext(0, SignediconstContext)!; + public signedIconst(): SignedIconstContext { + return this.getRuleContext(0, SignedIconstContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88671,11 +83002,11 @@ export class AlterstatsstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterstatsstmt; + return PostgreSqlParser.RULE_alterStatsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterstatsstmt) { - return visitor.visitAlterstatsstmt(this); + if (visitor.visitAlterStatsStatement) { + return visitor.visitAlterStatsStatement(this); } else { return visitor.visitChildren(this); } @@ -88683,30 +83014,30 @@ export class AlterstatsstmtContext extends antlr.ParserRuleContext { } -export class CreateasstmtContext extends antlr.ParserRuleContext { +export class CreateAsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opttemp(): OpttempContext { - return this.getRuleContext(0, OpttempContext)!; + public temporaryOption(): TemporaryOptionContext { + return this.getRuleContext(0, TemporaryOptionContext)!; } public TABLE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TABLE, 0)!; } - public create_as_target(): Create_as_targetContext { - return this.getRuleContext(0, Create_as_targetContext)!; + public createAsTarget(): CreateAsTargetContext { + return this.getRuleContext(0, CreateAsTargetContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public selectstmt(): SelectstmtContext { - return this.getRuleContext(0, SelectstmtContext)!; + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; } - public opt_with_data(): Opt_with_dataContext { - return this.getRuleContext(0, Opt_with_dataContext)!; + public withData(): WithDataContext { + return this.getRuleContext(0, WithDataContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88718,11 +83049,11 @@ export class CreateasstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createasstmt; + return PostgreSqlParser.RULE_createAsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateasstmt) { - return visitor.visitCreateasstmt(this); + if (visitor.visitCreateAsStatement) { + return visitor.visitCreateAsStatement(this); } else { return visitor.visitChildren(this); } @@ -88730,34 +83061,34 @@ export class CreateasstmtContext extends antlr.ParserRuleContext { } -export class Create_as_targetContext extends antlr.ParserRuleContext { +export class CreateAsTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public opt_column_list(): Opt_column_listContext { - return this.getRuleContext(0, Opt_column_listContext)!; + public columnListWithParentheses(): ColumnListWithParenthesesContext { + return this.getRuleContext(0, ColumnListWithParenthesesContext)!; } - public table_access_method_clause(): Table_access_method_clauseContext { - return this.getRuleContext(0, Table_access_method_clauseContext)!; + public optionalTableAccessMethodClause(): OptionalTableAccessMethodClauseContext { + return this.getRuleContext(0, OptionalTableAccessMethodClauseContext)!; } - public optwith(): OptwithContext { - return this.getRuleContext(0, OptwithContext)!; + public with(): WithContext { + return this.getRuleContext(0, WithContext)!; } - public oncommitoption(): OncommitoptionContext { - return this.getRuleContext(0, OncommitoptionContext)!; + public onCommitOption(): OnCommitOptionContext { + return this.getRuleContext(0, OnCommitOptionContext)!; } - public opttablespace(): OpttablespaceContext { - return this.getRuleContext(0, OpttablespaceContext)!; + public optionalTablespace(): OptionalTablespaceContext { + return this.getRuleContext(0, OptionalTablespaceContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_create_as_target; + return PostgreSqlParser.RULE_createAsTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreate_as_target) { - return visitor.visitCreate_as_target(this); + if (visitor.visitCreateAsTarget) { + return visitor.visitCreateAsTarget(this); } else { return visitor.visitChildren(this); } @@ -88765,7 +83096,7 @@ export class Create_as_targetContext extends antlr.ParserRuleContext { } -export class Opt_with_dataContext extends antlr.ParserRuleContext { +export class WithDataContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88779,11 +83110,11 @@ export class Opt_with_dataContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_with_data; + return PostgreSqlParser.RULE_withData; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_with_data) { - return visitor.visitOpt_with_data(this); + if (visitor.visitWithData) { + return visitor.visitWithData(this); } else { return visitor.visitChildren(this); } @@ -88791,33 +83122,33 @@ export class Opt_with_dataContext extends antlr.ParserRuleContext { } -export class CreatematviewstmtContext extends antlr.ParserRuleContext { +export class CreateMaterializedViewStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public optnolog(): OptnologContext { - return this.getRuleContext(0, OptnologContext)!; - } public MATERIALIZED(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.MATERIALIZED, 0)!; } public VIEW(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VIEW, 0)!; } - public create_mv_target(): Create_mv_targetContext { - return this.getRuleContext(0, Create_mv_targetContext)!; + public createMaterializedViewTarget(): CreateMaterializedViewTargetContext { + return this.getRuleContext(0, CreateMaterializedViewTargetContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public selectstmt(): SelectstmtContext { - return this.getRuleContext(0, SelectstmtContext)!; + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; } - public opt_with_data(): Opt_with_dataContext { - return this.getRuleContext(0, Opt_with_dataContext)!; + public withData(): WithDataContext { + return this.getRuleContext(0, WithDataContext)!; + } + public UNLOGGED(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.UNLOGGED, 0); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88829,11 +83160,11 @@ export class CreatematviewstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_creatematviewstmt; + return PostgreSqlParser.RULE_createMaterializedViewStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatematviewstmt) { - return visitor.visitCreatematviewstmt(this); + if (visitor.visitCreateMaterializedViewStatement) { + return visitor.visitCreateMaterializedViewStatement(this); } else { return visitor.visitChildren(this); } @@ -88841,51 +83172,31 @@ export class CreatematviewstmtContext extends antlr.ParserRuleContext { } -export class Create_mv_targetContext extends antlr.ParserRuleContext { +export class CreateMaterializedViewTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; - } - public opt_column_list(): Opt_column_listContext { - return this.getRuleContext(0, Opt_column_listContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public table_access_method_clause(): Table_access_method_clauseContext { - return this.getRuleContext(0, Table_access_method_clauseContext)!; + public columnListWithParentheses(): ColumnListWithParenthesesContext { + return this.getRuleContext(0, ColumnListWithParenthesesContext)!; } - public opt_reloptions(): Opt_reloptionsContext { - return this.getRuleContext(0, Opt_reloptionsContext)!; + public optionalTableAccessMethodClause(): OptionalTableAccessMethodClauseContext { + return this.getRuleContext(0, OptionalTableAccessMethodClauseContext)!; } - public opttablespace(): OpttablespaceContext { - return this.getRuleContext(0, OpttablespaceContext)!; + public optionalRelOptions(): OptionalRelOptionsContext { + return this.getRuleContext(0, OptionalRelOptionsContext)!; } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_create_mv_target; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreate_mv_target) { - return visitor.visitCreate_mv_target(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class OptnologContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public UNLOGGED(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.UNLOGGED, 0); + public optionalTablespace(): OptionalTablespaceContext { + return this.getRuleContext(0, OptionalTablespaceContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optnolog; + return PostgreSqlParser.RULE_createMaterializedViewTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptnolog) { - return visitor.visitOptnolog(this); + if (visitor.visitCreateMaterializedViewTarget) { + return visitor.visitCreateMaterializedViewTarget(this); } else { return visitor.visitChildren(this); } @@ -88893,7 +83204,7 @@ export class OptnologContext extends antlr.ParserRuleContext { } -export class RefreshmatviewstmtContext extends antlr.ParserRuleContext { +export class RefreshMaterializedViewStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88906,21 +83217,21 @@ export class RefreshmatviewstmtContext extends antlr.ParserRuleContext { public VIEW(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VIEW, 0)!; } - public opt_concurrently(): Opt_concurrentlyContext { - return this.getRuleContext(0, Opt_concurrentlyContext)!; + public optionalConcurrently(): OptionalConcurrentlyContext { + return this.getRuleContext(0, OptionalConcurrentlyContext)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public opt_with_data(): Opt_with_dataContext { - return this.getRuleContext(0, Opt_with_dataContext)!; + public withData(): WithDataContext { + return this.getRuleContext(0, WithDataContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_refreshmatviewstmt; + return PostgreSqlParser.RULE_refreshMaterializedViewStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRefreshmatviewstmt) { - return visitor.visitRefreshmatviewstmt(this); + if (visitor.visitRefreshMaterializedViewStatement) { + return visitor.visitRefreshMaterializedViewStatement(this); } else { return visitor.visitChildren(this); } @@ -88928,24 +83239,21 @@ export class RefreshmatviewstmtContext extends antlr.ParserRuleContext { } -export class CreateseqstmtContext extends antlr.ParserRuleContext { +export class CreateSequenceStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opttemp(): OpttempContext { - return this.getRuleContext(0, OpttempContext)!; + public temporaryOption(): TemporaryOptionContext { + return this.getRuleContext(0, TemporaryOptionContext)!; } public SEQUENCE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEQUENCE, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; - } - public optseqoptlist(): OptseqoptlistContext { - return this.getRuleContext(0, OptseqoptlistContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88956,12 +83264,15 @@ export class CreateseqstmtContext extends antlr.ParserRuleContext { public EXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXISTS, 0); } + public sequenceOptionList(): SequenceOptionListContext | null { + return this.getRuleContext(0, SequenceOptionListContext); + } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createseqstmt; + return PostgreSqlParser.RULE_createSequenceStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateseqstmt) { - return visitor.visitCreateseqstmt(this); + if (visitor.visitCreateSequenceStatement) { + return visitor.visitCreateSequenceStatement(this); } else { return visitor.visitChildren(this); } @@ -88969,7 +83280,7 @@ export class CreateseqstmtContext extends antlr.ParserRuleContext { } -export class AlterseqstmtContext extends antlr.ParserRuleContext { +export class AlterSequenceStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -88979,11 +83290,11 @@ export class AlterseqstmtContext extends antlr.ParserRuleContext { public SEQUENCE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEQUENCE, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public seqoptlist(): SeqoptlistContext { - return this.getRuleContext(0, SeqoptlistContext)!; + public sequenceOptionList(): SequenceOptionListContext { + return this.getRuleContext(0, SequenceOptionListContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -88992,11 +83303,11 @@ export class AlterseqstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterseqstmt; + return PostgreSqlParser.RULE_alterSequenceStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterseqstmt) { - return visitor.visitAlterseqstmt(this); + if (visitor.visitAlterSequenceStatement) { + return visitor.visitAlterSequenceStatement(this); } else { return visitor.visitChildren(this); } @@ -89004,45 +83315,25 @@ export class AlterseqstmtContext extends antlr.ParserRuleContext { } -export class OptseqoptlistContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public seqoptlist(): SeqoptlistContext | null { - return this.getRuleContext(0, SeqoptlistContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optseqoptlist; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptseqoptlist) { - return visitor.visitOptseqoptlist(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class OptparenthesizedseqoptlistContext extends antlr.ParserRuleContext { +export class OptionalParenthesizedSeqOptionsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public seqoptlist(): SeqoptlistContext | null { - return this.getRuleContext(0, SeqoptlistContext); + public sequenceOptionList(): SequenceOptionListContext | null { + return this.getRuleContext(0, SequenceOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optparenthesizedseqoptlist; + return PostgreSqlParser.RULE_optionalParenthesizedSeqOptionsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptparenthesizedseqoptlist) { - return visitor.visitOptparenthesizedseqoptlist(this); + if (visitor.visitOptionalParenthesizedSeqOptionsList) { + return visitor.visitOptionalParenthesizedSeqOptionsList(this); } else { return visitor.visitChildren(this); } @@ -89050,25 +83341,25 @@ export class OptparenthesizedseqoptlistContext extends antlr.ParserRuleContext { } -export class SeqoptlistContext extends antlr.ParserRuleContext { +export class SequenceOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public seqoptelem(): SeqoptelemContext[]; - public seqoptelem(i: number): SeqoptelemContext | null; - public seqoptelem(i?: number): SeqoptelemContext[] | SeqoptelemContext | null { + public sequenceOptionItem(): SequenceOptionItemContext[]; + public sequenceOptionItem(i: number): SequenceOptionItemContext | null; + public sequenceOptionItem(i?: number): SequenceOptionItemContext[] | SequenceOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(SeqoptelemContext); + return this.getRuleContexts(SequenceOptionItemContext); } - return this.getRuleContext(i, SeqoptelemContext); + return this.getRuleContext(i, SequenceOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_seqoptlist; + return PostgreSqlParser.RULE_sequenceOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSeqoptlist) { - return visitor.visitSeqoptlist(this); + if (visitor.visitSequenceOptionList) { + return visitor.visitSequenceOptionList(this); } else { return visitor.visitChildren(this); } @@ -89076,21 +83367,21 @@ export class SeqoptlistContext extends antlr.ParserRuleContext { } -export class SeqoptelemContext extends antlr.ParserRuleContext { +export class SequenceOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public simpletypename(): SimpletypenameContext | null { - return this.getRuleContext(0, SimpletypenameContext); + public simpleTypeName(): SimpleTypeNameContext | null { + return this.getRuleContext(0, SimpleTypeNameContext); } public CACHE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CACHE, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public CYCLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CYCLE, 0); @@ -89098,8 +83389,8 @@ export class SeqoptelemContext extends antlr.ParserRuleContext { public INCREMENT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INCREMENT, 0); } - public opt_by(): Opt_byContext | null { - return this.getRuleContext(0, Opt_byContext); + public BY(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.BY, 0); } public MAXVALUE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MAXVALUE, 0); @@ -89113,11 +83404,8 @@ export class SeqoptelemContext extends antlr.ParserRuleContext { public OWNED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OWNED, 0); } - public BY(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.BY, 0); - } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public SEQUENCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEQUENCE, 0); @@ -89128,18 +83416,18 @@ export class SeqoptelemContext extends antlr.ParserRuleContext { public START(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.START, 0); } - public opt_with(): Opt_withContext | null { - return this.getRuleContext(0, Opt_withContext); + public optionalWith(): OptionalWithContext | null { + return this.getRuleContext(0, OptionalWithContext); } public RESTART(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RESTART, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_seqoptelem; + return PostgreSqlParser.RULE_sequenceOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSeqoptelem) { - return visitor.visitSeqoptelem(this); + if (visitor.visitSequenceOptionItem) { + return visitor.visitSequenceOptionItem(this); } else { return visitor.visitChildren(this); } @@ -89147,27 +83435,7 @@ export class SeqoptelemContext extends antlr.ParserRuleContext { } -export class Opt_byContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public BY(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.BY, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_by; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_by) { - return visitor.visitOpt_by(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class NumericonlyContext extends antlr.ParserRuleContext { +export class NumericOnlyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89180,15 +83448,15 @@ export class NumericonlyContext extends antlr.ParserRuleContext { public MINUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MINUS, 0); } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); + public signedIconst(): SignedIconstContext | null { + return this.getRuleContext(0, SignedIconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_numericonly; + return PostgreSqlParser.RULE_numericOnly; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNumericonly) { - return visitor.visitNumericonly(this); + if (visitor.visitNumericOnly) { + return visitor.visitNumericOnly(this); } else { return visitor.visitChildren(this); } @@ -89196,18 +83464,18 @@ export class NumericonlyContext extends antlr.ParserRuleContext { } -export class Numericonly_listContext extends antlr.ParserRuleContext { +export class NumericOnlyListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public numericonly(): NumericonlyContext[]; - public numericonly(i: number): NumericonlyContext | null; - public numericonly(i?: number): NumericonlyContext[] | NumericonlyContext | null { + public numericOnly(): NumericOnlyContext[]; + public numericOnly(i: number): NumericOnlyContext | null; + public numericOnly(i?: number): NumericOnlyContext[] | NumericOnlyContext | null { if (i === undefined) { - return this.getRuleContexts(NumericonlyContext); + return this.getRuleContexts(NumericOnlyContext); } - return this.getRuleContext(i, NumericonlyContext); + return this.getRuleContext(i, NumericOnlyContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -89219,11 +83487,11 @@ export class Numericonly_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_numericonly_list; + return PostgreSqlParser.RULE_numericOnlyList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNumericonly_list) { - return visitor.visitNumericonly_list(this); + if (visitor.visitNumericOnlyList) { + return visitor.visitNumericOnlyList(this); } else { return visitor.visitChildren(this); } @@ -89231,21 +83499,18 @@ export class Numericonly_listContext extends antlr.ParserRuleContext { } -export class CreateplangstmtContext extends antlr.ParserRuleContext { +export class CreateProcedureLangStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_or_replace(): Opt_or_replaceContext { - return this.getRuleContext(0, Opt_or_replaceContext)!; - } - public opt_trusted(): Opt_trustedContext { - return this.getRuleContext(0, Opt_trustedContext)!; + public optionalOrReplace(): OptionalOrReplaceContext { + return this.getRuleContext(0, OptionalOrReplaceContext)!; } - public opt_procedural(): Opt_proceduralContext { - return this.getRuleContext(0, Opt_proceduralContext)!; + public optionalProcedural(): OptionalProceduralContext { + return this.getRuleContext(0, OptionalProceduralContext)!; } public LANGUAGE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LANGUAGE, 0)!; @@ -89253,44 +83518,27 @@ export class CreateplangstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } + public TRUSTED(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.TRUSTED, 0); + } public HANDLER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.HANDLER, 0); } - public handler_name(): Handler_nameContext | null { - return this.getRuleContext(0, Handler_nameContext); - } - public opt_inline_handler(): Opt_inline_handlerContext | null { - return this.getRuleContext(0, Opt_inline_handlerContext); - } - public opt_validator(): Opt_validatorContext | null { - return this.getRuleContext(0, Opt_validatorContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createplangstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateplangstmt) { - return visitor.visitCreateplangstmt(this); - } else { - return visitor.visitChildren(this); - } + public handlerName(): HandlerNameContext | null { + return this.getRuleContext(0, HandlerNameContext); } -} - - -export class Opt_trustedContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public optionalInlineHandler(): OptionalInlineHandlerContext | null { + return this.getRuleContext(0, OptionalInlineHandlerContext); } - public TRUSTED(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.TRUSTED, 0); + public validatorClause(): ValidatorClauseContext | null { + return this.getRuleContext(0, ValidatorClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_trusted; + return PostgreSqlParser.RULE_createProcedureLangStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_trusted) { - return visitor.visitOpt_trusted(this); + if (visitor.visitCreateProcedureLangStatement) { + return visitor.visitCreateProcedureLangStatement(this); } else { return visitor.visitChildren(this); } @@ -89298,22 +83546,22 @@ export class Opt_trustedContext extends antlr.ParserRuleContext { } -export class Handler_nameContext extends antlr.ParserRuleContext { +export class HandlerNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public attrs(): AttrsContext | null { - return this.getRuleContext(0, AttrsContext); + public attributes(): AttributesContext | null { + return this.getRuleContext(0, AttributesContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_handler_name; + return PostgreSqlParser.RULE_handlerName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitHandler_name) { - return visitor.visitHandler_name(this); + if (visitor.visitHandlerName) { + return visitor.visitHandlerName(this); } else { return visitor.visitChildren(this); } @@ -89321,22 +83569,22 @@ export class Handler_nameContext extends antlr.ParserRuleContext { } -export class Opt_inline_handlerContext extends antlr.ParserRuleContext { +export class OptionalInlineHandlerContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public INLINE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INLINE_P, 0); } - public handler_name(): Handler_nameContext | null { - return this.getRuleContext(0, Handler_nameContext); + public handlerName(): HandlerNameContext | null { + return this.getRuleContext(0, HandlerNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_inline_handler; + return PostgreSqlParser.RULE_optionalInlineHandler; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_inline_handler) { - return visitor.visitOpt_inline_handler(this); + if (visitor.visitOptionalInlineHandler) { + return visitor.visitOptionalInlineHandler(this); } else { return visitor.visitChildren(this); } @@ -89344,25 +83592,25 @@ export class Opt_inline_handlerContext extends antlr.ParserRuleContext { } -export class Validator_clauseContext extends antlr.ParserRuleContext { +export class ValidatorClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public VALIDATOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VALIDATOR, 0)!; } - public handler_name(): Handler_nameContext | null { - return this.getRuleContext(0, Handler_nameContext); + public handlerName(): HandlerNameContext | null { + return this.getRuleContext(0, HandlerNameContext); } public NO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_validator_clause; + return PostgreSqlParser.RULE_validatorClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitValidator_clause) { - return visitor.visitValidator_clause(this); + if (visitor.visitValidatorClause) { + return visitor.visitValidatorClause(this); } else { return visitor.visitChildren(this); } @@ -89370,27 +83618,7 @@ export class Validator_clauseContext extends antlr.ParserRuleContext { } -export class Opt_validatorContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public validator_clause(): Validator_clauseContext | null { - return this.getRuleContext(0, Validator_clauseContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_validator; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_validator) { - return visitor.visitOpt_validator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_proceduralContext extends antlr.ParserRuleContext { +export class OptionalProceduralContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89398,11 +83626,11 @@ export class Opt_proceduralContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PROCEDURAL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_procedural; + return PostgreSqlParser.RULE_optionalProcedural; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_procedural) { - return visitor.visitOpt_procedural(this); + if (visitor.visitOptionalProcedural) { + return visitor.visitOptionalProcedural(this); } else { return visitor.visitChildren(this); } @@ -89410,7 +83638,7 @@ export class Opt_proceduralContext extends antlr.ParserRuleContext { } -export class CreatetablespacestmtContext extends antlr.ParserRuleContext { +export class CreateTablespaceStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89423,8 +83651,8 @@ export class CreatetablespacestmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opttablespaceowner(): OpttablespaceownerContext { - return this.getRuleContext(0, OpttablespaceownerContext)!; + public optionalTablespaceOwner(): OptionalTablespaceOwnerContext { + return this.getRuleContext(0, OptionalTablespaceOwnerContext)!; } public LOCATION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LOCATION, 0)!; @@ -89432,15 +83660,15 @@ export class CreatetablespacestmtContext extends antlr.ParserRuleContext { public sconst(): SconstContext { return this.getRuleContext(0, SconstContext)!; } - public opt_reloptions(): Opt_reloptionsContext { - return this.getRuleContext(0, Opt_reloptionsContext)!; + public optionalRelOptions(): OptionalRelOptionsContext { + return this.getRuleContext(0, OptionalRelOptionsContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createtablespacestmt; + return PostgreSqlParser.RULE_createTablespaceStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatetablespacestmt) { - return visitor.visitCreatetablespacestmt(this); + if (visitor.visitCreateTablespaceStatement) { + return visitor.visitCreateTablespaceStatement(this); } else { return visitor.visitChildren(this); } @@ -89448,22 +83676,22 @@ export class CreatetablespacestmtContext extends antlr.ParserRuleContext { } -export class OpttablespaceownerContext extends antlr.ParserRuleContext { +export class OptionalTablespaceOwnerContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OWNER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OWNER, 0); } - public rolespec(): RolespecContext | null { - return this.getRuleContext(0, RolespecContext); + public roleSpecification(): RoleSpecificationContext | null { + return this.getRuleContext(0, RoleSpecificationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttablespaceowner; + return PostgreSqlParser.RULE_optionalTablespaceOwner; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttablespaceowner) { - return visitor.visitOpttablespaceowner(this); + if (visitor.visitOptionalTablespaceOwner) { + return visitor.visitOptionalTablespaceOwner(this); } else { return visitor.visitChildren(this); } @@ -89471,7 +83699,7 @@ export class OpttablespaceownerContext extends antlr.ParserRuleContext { } -export class DroptablespacestmtContext extends antlr.ParserRuleContext { +export class DropTablespaceStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89491,11 +83719,11 @@ export class DroptablespacestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_droptablespacestmt; + return PostgreSqlParser.RULE_dropTablespaceStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDroptablespacestmt) { - return visitor.visitDroptablespacestmt(this); + if (visitor.visitDropTablespaceStatement) { + return visitor.visitDropTablespaceStatement(this); } else { return visitor.visitChildren(this); } @@ -89503,7 +83731,7 @@ export class DroptablespacestmtContext extends antlr.ParserRuleContext { } -export class CreateextensionstmtContext extends antlr.ParserRuleContext { +export class CreateExtensionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89516,11 +83744,8 @@ export class CreateextensionstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; - } - public create_extension_opt_list(): Create_extension_opt_listContext { - return this.getRuleContext(0, Create_extension_opt_listContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -89531,38 +83756,21 @@ export class CreateextensionstmtContext extends antlr.ParserRuleContext { public EXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXISTS, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createextensionstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateextensionstmt) { - return visitor.visitCreateextensionstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Create_extension_opt_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public create_extension_opt_item(): Create_extension_opt_itemContext[]; - public create_extension_opt_item(i: number): Create_extension_opt_itemContext | null; - public create_extension_opt_item(i?: number): Create_extension_opt_itemContext[] | Create_extension_opt_itemContext | null { + public createExtensionOptionItem(): CreateExtensionOptionItemContext[]; + public createExtensionOptionItem(i: number): CreateExtensionOptionItemContext | null; + public createExtensionOptionItem(i?: number): CreateExtensionOptionItemContext[] | CreateExtensionOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Create_extension_opt_itemContext); + return this.getRuleContexts(CreateExtensionOptionItemContext); } - return this.getRuleContext(i, Create_extension_opt_itemContext); + return this.getRuleContext(i, CreateExtensionOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_create_extension_opt_list; + return PostgreSqlParser.RULE_createExtensionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreate_extension_opt_list) { - return visitor.visitCreate_extension_opt_list(this); + if (visitor.visitCreateExtensionStatement) { + return visitor.visitCreateExtensionStatement(this); } else { return visitor.visitChildren(this); } @@ -89570,7 +83778,7 @@ export class Create_extension_opt_listContext extends antlr.ParserRuleContext { } -export class Create_extension_opt_itemContext extends antlr.ParserRuleContext { +export class CreateExtensionOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89583,8 +83791,8 @@ export class Create_extension_opt_itemContext extends antlr.ParserRuleContext { public VERSION_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VERSION_P, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); @@ -89593,11 +83801,11 @@ export class Create_extension_opt_itemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CASCADE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_create_extension_opt_item; + return PostgreSqlParser.RULE_createExtensionOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreate_extension_opt_item) { - return visitor.visitCreate_extension_opt_item(this); + if (visitor.visitCreateExtensionOptionItem) { + return visitor.visitCreateExtensionOptionItem(this); } else { return visitor.visitChildren(this); } @@ -89605,7 +83813,7 @@ export class Create_extension_opt_itemContext extends antlr.ParserRuleContext { } -export class AlterextensionstmtContext extends antlr.ParserRuleContext { +export class AlterExtensionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89621,41 +83829,21 @@ export class AlterextensionstmtContext extends antlr.ParserRuleContext { public UPDATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.UPDATE, 0)!; } - public alter_extension_opt_list(): Alter_extension_opt_listContext { - return this.getRuleContext(0, Alter_extension_opt_listContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterextensionstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterextensionstmt) { - return visitor.visitAlterextensionstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Alter_extension_opt_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public alter_extension_opt_item(): Alter_extension_opt_itemContext[]; - public alter_extension_opt_item(i: number): Alter_extension_opt_itemContext | null; - public alter_extension_opt_item(i?: number): Alter_extension_opt_itemContext[] | Alter_extension_opt_itemContext | null { + public alterExtensionOptionItem(): AlterExtensionOptionItemContext[]; + public alterExtensionOptionItem(i: number): AlterExtensionOptionItemContext | null; + public alterExtensionOptionItem(i?: number): AlterExtensionOptionItemContext[] | AlterExtensionOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Alter_extension_opt_itemContext); + return this.getRuleContexts(AlterExtensionOptionItemContext); } - return this.getRuleContext(i, Alter_extension_opt_itemContext); + return this.getRuleContext(i, AlterExtensionOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_extension_opt_list; + return PostgreSqlParser.RULE_alterExtensionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_extension_opt_list) { - return visitor.visitAlter_extension_opt_list(this); + if (visitor.visitAlterExtensionStatement) { + return visitor.visitAlterExtensionStatement(this); } else { return visitor.visitChildren(this); } @@ -89663,22 +83851,22 @@ export class Alter_extension_opt_listContext extends antlr.ParserRuleContext { } -export class Alter_extension_opt_itemContext extends antlr.ParserRuleContext { +export class AlterExtensionOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext { - return this.getRuleContext(0, Nonreservedword_or_sconstContext)!; + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext { + return this.getRuleContext(0, NonReservedWordOrSconstContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_extension_opt_item; + return PostgreSqlParser.RULE_alterExtensionOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_extension_opt_item) { - return visitor.visitAlter_extension_opt_item(this); + if (visitor.visitAlterExtensionOptionItem) { + return visitor.visitAlterExtensionOptionItem(this); } else { return visitor.visitChildren(this); } @@ -89686,7 +83874,7 @@ export class Alter_extension_opt_itemContext extends antlr.ParserRuleContext { } -export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { +export class AlterExtensionContentsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89705,23 +83893,23 @@ export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { return this.getRuleContext(i, NameContext); } - public add_drop(): Add_dropContext { - return this.getRuleContext(0, Add_dropContext)!; + public addOrDrop(): AddOrDropContext { + return this.getRuleContext(0, AddOrDropContext)!; } - public object_type_name(): Object_type_nameContext | null { - return this.getRuleContext(0, Object_type_nameContext); + public objectTypeName(): ObjectTypeNameContext | null { + return this.getRuleContext(0, ObjectTypeNameContext); } - public object_type_any_name(): Object_type_any_nameContext | null { - return this.getRuleContext(0, Object_type_any_nameContext); + public objectTypeAnyName(): ObjectTypeAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeAnyNameContext); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public CAST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CAST, 0); @@ -89729,14 +83917,14 @@ export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -89750,14 +83938,14 @@ export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); } - public operator_with_argtypes(): Operator_with_argtypesContext | null { - return this.getRuleContext(0, Operator_with_argtypesContext); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext | null { + return this.getRuleContext(0, OperatorWithArgumentTypesContext); } public CLASS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLASS, 0); @@ -89787,11 +83975,11 @@ export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TYPE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterextensioncontentsstmt; + return PostgreSqlParser.RULE_alterExtensionContentsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterextensioncontentsstmt) { - return visitor.visitAlterextensioncontentsstmt(this); + if (visitor.visitAlterExtensionContentsStatement) { + return visitor.visitAlterExtensionContentsStatement(this); } else { return visitor.visitChildren(this); } @@ -89799,7 +83987,7 @@ export class AlterextensioncontentsstmtContext extends antlr.ParserRuleContext { } -export class CreatefdwstmtContext extends antlr.ParserRuleContext { +export class CreateForeignDataWrapperStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89818,18 +84006,18 @@ export class CreatefdwstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_fdw_options(): Opt_fdw_optionsContext { - return this.getRuleContext(0, Opt_fdw_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public forwardOptions(): ForwardOptionsContext | null { + return this.getRuleContext(0, ForwardOptionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createfdwstmt; + return PostgreSqlParser.RULE_createForeignDataWrapperStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatefdwstmt) { - return visitor.visitCreatefdwstmt(this); + if (visitor.visitCreateForeignDataWrapperStatement) { + return visitor.visitCreateForeignDataWrapperStatement(this); } else { return visitor.visitChildren(this); } @@ -89837,15 +84025,15 @@ export class CreatefdwstmtContext extends antlr.ParserRuleContext { } -export class Fdw_optionContext extends antlr.ParserRuleContext { +export class ForwardOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public HANDLER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.HANDLER, 0); } - public handler_name(): Handler_nameContext | null { - return this.getRuleContext(0, Handler_nameContext); + public handlerName(): HandlerNameContext | null { + return this.getRuleContext(0, HandlerNameContext); } public NO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NO, 0); @@ -89854,11 +84042,11 @@ export class Fdw_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VALIDATOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_fdw_option; + return PostgreSqlParser.RULE_forwardOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFdw_option) { - return visitor.visitFdw_option(this); + if (visitor.visitForwardOption) { + return visitor.visitForwardOption(this); } else { return visitor.visitChildren(this); } @@ -89866,45 +84054,25 @@ export class Fdw_optionContext extends antlr.ParserRuleContext { } -export class Fdw_optionsContext extends antlr.ParserRuleContext { +export class ForwardOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public fdw_option(): Fdw_optionContext[]; - public fdw_option(i: number): Fdw_optionContext | null; - public fdw_option(i?: number): Fdw_optionContext[] | Fdw_optionContext | null { + public forwardOption(): ForwardOptionContext[]; + public forwardOption(i: number): ForwardOptionContext | null; + public forwardOption(i?: number): ForwardOptionContext[] | ForwardOptionContext | null { if (i === undefined) { - return this.getRuleContexts(Fdw_optionContext); - } - - return this.getRuleContext(i, Fdw_optionContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_fdw_options; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFdw_options) { - return visitor.visitFdw_options(this); - } else { - return visitor.visitChildren(this); + return this.getRuleContexts(ForwardOptionContext); } - } -} - -export class Opt_fdw_optionsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public fdw_options(): Fdw_optionsContext | null { - return this.getRuleContext(0, Fdw_optionsContext); + return this.getRuleContext(i, ForwardOptionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_fdw_options; + return PostgreSqlParser.RULE_forwardOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_fdw_options) { - return visitor.visitOpt_fdw_options(this); + if (visitor.visitForwardOptions) { + return visitor.visitForwardOptions(this); } else { return visitor.visitChildren(this); } @@ -89912,7 +84080,7 @@ export class Opt_fdw_optionsContext extends antlr.ParserRuleContext { } -export class AlterfdwstmtContext extends antlr.ParserRuleContext { +export class AlterForeignDataWrapperStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89931,21 +84099,18 @@ export class AlterfdwstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_fdw_options(): Opt_fdw_optionsContext | null { - return this.getRuleContext(0, Opt_fdw_optionsContext); - } - public alter_generic_options(): Alter_generic_optionsContext | null { - return this.getRuleContext(0, Alter_generic_optionsContext); + public alterGenericOptions(): AlterGenericOptionsContext | null { + return this.getRuleContext(0, AlterGenericOptionsContext); } - public fdw_options(): Fdw_optionsContext | null { - return this.getRuleContext(0, Fdw_optionsContext); + public forwardOptions(): ForwardOptionsContext | null { + return this.getRuleContext(0, ForwardOptionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterfdwstmt; + return PostgreSqlParser.RULE_alterForeignDataWrapperStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterfdwstmt) { - return visitor.visitAlterfdwstmt(this); + if (visitor.visitAlterForeignDataWrapperStatement) { + return visitor.visitAlterForeignDataWrapperStatement(this); } else { return visitor.visitChildren(this); } @@ -89953,7 +84118,7 @@ export class AlterfdwstmtContext extends antlr.ParserRuleContext { } -export class Create_generic_optionsContext extends antlr.ParserRuleContext { +export class CreateGenericOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -89963,18 +84128,18 @@ export class Create_generic_optionsContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public generic_option_list(): Generic_option_listContext | null { - return this.getRuleContext(0, Generic_option_listContext); + public genericOptionList(): GenericOptionListContext | null { + return this.getRuleContext(0, GenericOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_create_generic_options; + return PostgreSqlParser.RULE_createGenericOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreate_generic_options) { - return visitor.visitCreate_generic_options(this); + if (visitor.visitCreateGenericOptions) { + return visitor.visitCreateGenericOptions(this); } else { return visitor.visitChildren(this); } @@ -89982,18 +84147,18 @@ export class Create_generic_optionsContext extends antlr.ParserRuleContext { } -export class Generic_option_listContext extends antlr.ParserRuleContext { +export class GenericOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_option_elem(): Generic_option_elemContext[]; - public generic_option_elem(i: number): Generic_option_elemContext | null; - public generic_option_elem(i?: number): Generic_option_elemContext[] | Generic_option_elemContext | null { + public genericOptionElement(): GenericOptionElementContext[]; + public genericOptionElement(i: number): GenericOptionElementContext | null; + public genericOptionElement(i?: number): GenericOptionElementContext[] | GenericOptionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Generic_option_elemContext); + return this.getRuleContexts(GenericOptionElementContext); } - return this.getRuleContext(i, Generic_option_elemContext); + return this.getRuleContext(i, GenericOptionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -90005,11 +84170,11 @@ export class Generic_option_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_option_list; + return PostgreSqlParser.RULE_genericOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_option_list) { - return visitor.visitGeneric_option_list(this); + if (visitor.visitGenericOptionList) { + return visitor.visitGenericOptionList(this); } else { return visitor.visitChildren(this); } @@ -90017,7 +84182,7 @@ export class Generic_option_listContext extends antlr.ParserRuleContext { } -export class Alter_generic_optionsContext extends antlr.ParserRuleContext { +export class AlterGenericOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90027,18 +84192,18 @@ export class Alter_generic_optionsContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public alter_generic_option_list(): Alter_generic_option_listContext { - return this.getRuleContext(0, Alter_generic_option_listContext)!; + public alterGenericOptionList(): AlterGenericOptionListContext { + return this.getRuleContext(0, AlterGenericOptionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_generic_options; + return PostgreSqlParser.RULE_alterGenericOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_generic_options) { - return visitor.visitAlter_generic_options(this); + if (visitor.visitAlterGenericOptions) { + return visitor.visitAlterGenericOptions(this); } else { return visitor.visitChildren(this); } @@ -90046,18 +84211,18 @@ export class Alter_generic_optionsContext extends antlr.ParserRuleContext { } -export class Alter_generic_option_listContext extends antlr.ParserRuleContext { +export class AlterGenericOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alter_generic_option_elem(): Alter_generic_option_elemContext[]; - public alter_generic_option_elem(i: number): Alter_generic_option_elemContext | null; - public alter_generic_option_elem(i?: number): Alter_generic_option_elemContext[] | Alter_generic_option_elemContext | null { + public alterGenericOptionElem(): AlterGenericOptionElemContext[]; + public alterGenericOptionElem(i: number): AlterGenericOptionElemContext | null; + public alterGenericOptionElem(i?: number): AlterGenericOptionElemContext[] | AlterGenericOptionElemContext | null { if (i === undefined) { - return this.getRuleContexts(Alter_generic_option_elemContext); + return this.getRuleContexts(AlterGenericOptionElemContext); } - return this.getRuleContext(i, Alter_generic_option_elemContext); + return this.getRuleContext(i, AlterGenericOptionElemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -90069,11 +84234,11 @@ export class Alter_generic_option_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_generic_option_list; + return PostgreSqlParser.RULE_alterGenericOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_generic_option_list) { - return visitor.visitAlter_generic_option_list(this); + if (visitor.visitAlterGenericOptionList) { + return visitor.visitAlterGenericOptionList(this); } else { return visitor.visitChildren(this); } @@ -90081,12 +84246,12 @@ export class Alter_generic_option_listContext extends antlr.ParserRuleContext { } -export class Alter_generic_option_elemContext extends antlr.ParserRuleContext { +export class AlterGenericOptionElemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_option_elem(): Generic_option_elemContext | null { - return this.getRuleContext(0, Generic_option_elemContext); + public genericOptionElement(): GenericOptionElementContext | null { + return this.getRuleContext(0, GenericOptionElementContext); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); @@ -90097,15 +84262,15 @@ export class Alter_generic_option_elemContext extends antlr.ParserRuleContext { public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); } - public generic_option_name(): Generic_option_nameContext | null { - return this.getRuleContext(0, Generic_option_nameContext); + public genericOptionName(): GenericOptionNameContext | null { + return this.getRuleContext(0, GenericOptionNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alter_generic_option_elem; + return PostgreSqlParser.RULE_alterGenericOptionElem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlter_generic_option_elem) { - return visitor.visitAlter_generic_option_elem(this); + if (visitor.visitAlterGenericOptionElem) { + return visitor.visitAlterGenericOptionElem(this); } else { return visitor.visitChildren(this); } @@ -90113,22 +84278,22 @@ export class Alter_generic_option_elemContext extends antlr.ParserRuleContext { } -export class Generic_option_elemContext extends antlr.ParserRuleContext { +export class GenericOptionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_option_name(): Generic_option_nameContext { - return this.getRuleContext(0, Generic_option_nameContext)!; + public genericOptionName(): GenericOptionNameContext { + return this.getRuleContext(0, GenericOptionNameContext)!; } - public generic_option_arg(): Generic_option_argContext { - return this.getRuleContext(0, Generic_option_argContext)!; + public genericOptionArgument(): GenericOptionArgumentContext { + return this.getRuleContext(0, GenericOptionArgumentContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_option_elem; + return PostgreSqlParser.RULE_genericOptionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_option_elem) { - return visitor.visitGeneric_option_elem(this); + if (visitor.visitGenericOptionElement) { + return visitor.visitGenericOptionElement(this); } else { return visitor.visitChildren(this); } @@ -90136,19 +84301,19 @@ export class Generic_option_elemContext extends antlr.ParserRuleContext { } -export class Generic_option_nameContext extends antlr.ParserRuleContext { +export class GenericOptionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_option_name; + return PostgreSqlParser.RULE_genericOptionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_option_name) { - return visitor.visitGeneric_option_name(this); + if (visitor.visitGenericOptionName) { + return visitor.visitGenericOptionName(this); } else { return visitor.visitChildren(this); } @@ -90156,7 +84321,7 @@ export class Generic_option_nameContext extends antlr.ParserRuleContext { } -export class Generic_option_argContext extends antlr.ParserRuleContext { +export class GenericOptionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90164,11 +84329,11 @@ export class Generic_option_argContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generic_option_arg; + return PostgreSqlParser.RULE_genericOptionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGeneric_option_arg) { - return visitor.visitGeneric_option_arg(this); + if (visitor.visitGenericOptionArgument) { + return visitor.visitGenericOptionArgument(this); } else { return visitor.visitChildren(this); } @@ -90176,7 +84341,7 @@ export class Generic_option_argContext extends antlr.ParserRuleContext { } -export class CreateforeignserverstmtContext extends antlr.ParserRuleContext { +export class CreateForeignServerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90195,11 +84360,8 @@ export class CreateforeignserverstmtContext extends antlr.ParserRuleContext { return this.getRuleContext(i, NameContext); } - public opt_type(): Opt_typeContext { - return this.getRuleContext(0, Opt_typeContext)!; - } - public opt_foreign_server_version(): Opt_foreign_server_versionContext { - return this.getRuleContext(0, Opt_foreign_server_versionContext)!; + public optionalType(): OptionalTypeContext { + return this.getRuleContext(0, OptionalTypeContext)!; } public FOREIGN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOREIGN, 0)!; @@ -90210,8 +84372,11 @@ export class CreateforeignserverstmtContext extends antlr.ParserRuleContext { public WRAPPER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WRAPPER, 0)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; + } + public foreignServerVersion(): ForeignServerVersionContext | null { + return this.getRuleContext(0, ForeignServerVersionContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -90223,11 +84388,11 @@ export class CreateforeignserverstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createforeignserverstmt; + return PostgreSqlParser.RULE_createForeignServerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateforeignserverstmt) { - return visitor.visitCreateforeignserverstmt(this); + if (visitor.visitCreateForeignServerStatement) { + return visitor.visitCreateForeignServerStatement(this); } else { return visitor.visitChildren(this); } @@ -90235,7 +84400,7 @@ export class CreateforeignserverstmtContext extends antlr.ParserRuleContext { } -export class Opt_typeContext extends antlr.ParserRuleContext { +export class OptionalTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90246,11 +84411,11 @@ export class Opt_typeContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_type; + return PostgreSqlParser.RULE_optionalType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_type) { - return visitor.visitOpt_type(this); + if (visitor.visitOptionalType) { + return visitor.visitOptionalType(this); } else { return visitor.visitChildren(this); } @@ -90258,7 +84423,7 @@ export class Opt_typeContext extends antlr.ParserRuleContext { } -export class Foreign_server_versionContext extends antlr.ParserRuleContext { +export class ForeignServerVersionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90272,31 +84437,11 @@ export class Foreign_server_versionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_foreign_server_version; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitForeign_server_version) { - return visitor.visitForeign_server_version(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_foreign_server_versionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public foreign_server_version(): Foreign_server_versionContext | null { - return this.getRuleContext(0, Foreign_server_versionContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_foreign_server_version; + return PostgreSqlParser.RULE_foreignServerVersion; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_foreign_server_version) { - return visitor.visitOpt_foreign_server_version(this); + if (visitor.visitForeignServerVersion) { + return visitor.visitForeignServerVersion(this); } else { return visitor.visitChildren(this); } @@ -90304,7 +84449,7 @@ export class Opt_foreign_server_versionContext extends antlr.ParserRuleContext { } -export class AlterforeignserverstmtContext extends antlr.ParserRuleContext { +export class AlterForeignServerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90317,18 +84462,18 @@ export class AlterforeignserverstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public alter_generic_options(): Alter_generic_optionsContext | null { - return this.getRuleContext(0, Alter_generic_optionsContext); + public alterGenericOptions(): AlterGenericOptionsContext | null { + return this.getRuleContext(0, AlterGenericOptionsContext); } - public foreign_server_version(): Foreign_server_versionContext | null { - return this.getRuleContext(0, Foreign_server_versionContext); + public foreignServerVersion(): ForeignServerVersionContext | null { + return this.getRuleContext(0, ForeignServerVersionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterforeignserverstmt; + return PostgreSqlParser.RULE_alterForeignServerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterforeignserverstmt) { - return visitor.visitAlterforeignserverstmt(this); + if (visitor.visitAlterForeignServerStatement) { + return visitor.visitAlterForeignServerStatement(this); } else { return visitor.visitChildren(this); } @@ -90336,7 +84481,7 @@ export class AlterforeignserverstmtContext extends antlr.ParserRuleContext { } -export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { +export class CreateForeignTableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90349,26 +84494,26 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TABLE, 0)!; } - public qualified_name(): Qualified_nameContext[]; - public qualified_name(i: number): Qualified_nameContext | null; - public qualified_name(i?: number): Qualified_nameContext[] | Qualified_nameContext | null { + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { if (i === undefined) { - return this.getRuleContexts(Qualified_nameContext); + return this.getRuleContexts(QualifiedNameContext); } - return this.getRuleContext(i, Qualified_nameContext); + return this.getRuleContext(i, QualifiedNameContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public opttableelementlist(): OpttableelementlistContext | null { - return this.getRuleContext(0, OpttableelementlistContext); + public optionalTableElementList(): OptionalTableElementListContext | null { + return this.getRuleContext(0, OptionalTableElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public optinherit(): OptinheritContext | null { - return this.getRuleContext(0, OptinheritContext); + public inheritClause(): InheritClauseContext | null { + return this.getRuleContext(0, InheritClauseContext); } public SERVER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SERVER, 0)!; @@ -90376,8 +84521,8 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -90394,18 +84539,18 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public opttypedtableelementlist(): OpttypedtableelementlistContext | null { - return this.getRuleContext(0, OpttypedtableelementlistContext); + public optionalTypedTableElementList(): OptionalTypedTableElementListContext | null { + return this.getRuleContext(0, OptionalTypedTableElementListContext); } - public partitionboundspec(): PartitionboundspecContext | null { - return this.getRuleContext(0, PartitionboundspecContext); + public partitionBoundSpecification(): PartitionBoundSpecificationContext | null { + return this.getRuleContext(0, PartitionBoundSpecificationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createforeigntablestmt; + return PostgreSqlParser.RULE_createForeignTableStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateforeigntablestmt) { - return visitor.visitCreateforeigntablestmt(this); + if (visitor.visitCreateForeignTableStatement) { + return visitor.visitCreateForeignTableStatement(this); } else { return visitor.visitChildren(this); } @@ -90413,7 +84558,7 @@ export class CreateforeigntablestmtContext extends antlr.ParserRuleContext { } -export class ImportforeignschemastmtContext extends antlr.ParserRuleContext { +export class ImportForeignSchemaStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90435,8 +84580,8 @@ export class ImportforeignschemastmtContext extends antlr.ParserRuleContext { return this.getRuleContext(i, NameContext); } - public import_qualification(): Import_qualificationContext { - return this.getRuleContext(0, Import_qualificationContext)!; + public importQualification(): ImportQualificationContext { + return this.getRuleContext(0, ImportQualificationContext)!; } public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; @@ -90447,15 +84592,15 @@ export class ImportforeignschemastmtContext extends antlr.ParserRuleContext { public INTO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INTO, 0)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_importforeignschemastmt; + return PostgreSqlParser.RULE_importForeignSchemaStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitImportforeignschemastmt) { - return visitor.visitImportforeignschemastmt(this); + if (visitor.visitImportForeignSchemaStatement) { + return visitor.visitImportForeignSchemaStatement(this); } else { return visitor.visitChildren(this); } @@ -90463,7 +84608,7 @@ export class ImportforeignschemastmtContext extends antlr.ParserRuleContext { } -export class Import_qualification_typeContext extends antlr.ParserRuleContext { +export class ImportQualificationTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90477,11 +84622,11 @@ export class Import_qualification_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXCEPT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_import_qualification_type; + return PostgreSqlParser.RULE_importQualificationType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitImport_qualification_type) { - return visitor.visitImport_qualification_type(this); + if (visitor.visitImportQualificationType) { + return visitor.visitImportQualificationType(this); } else { return visitor.visitChildren(this); } @@ -90489,28 +84634,28 @@ export class Import_qualification_typeContext extends antlr.ParserRuleContext { } -export class Import_qualificationContext extends antlr.ParserRuleContext { +export class ImportQualificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public import_qualification_type(): Import_qualification_typeContext | null { - return this.getRuleContext(0, Import_qualification_typeContext); + public importQualificationType(): ImportQualificationTypeContext | null { + return this.getRuleContext(0, ImportQualificationTypeContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public relation_expr_list(): Relation_expr_listContext | null { - return this.getRuleContext(0, Relation_expr_listContext); + public relationExpressionList(): RelationExpressionListContext | null { + return this.getRuleContext(0, RelationExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_import_qualification; + return PostgreSqlParser.RULE_importQualification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitImport_qualification) { - return visitor.visitImport_qualification(this); + if (visitor.visitImportQualification) { + return visitor.visitImportQualification(this); } else { return visitor.visitChildren(this); } @@ -90518,7 +84663,7 @@ export class Import_qualificationContext extends antlr.ParserRuleContext { } -export class CreateusermappingstmtContext extends antlr.ParserRuleContext { +export class CreateUserMappingStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90534,8 +84679,8 @@ export class CreateusermappingstmtContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public auth_ident(): Auth_identContext { - return this.getRuleContext(0, Auth_identContext)!; + public authIdentifier(): AuthIdentifierContext { + return this.getRuleContext(0, AuthIdentifierContext)!; } public SERVER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SERVER, 0)!; @@ -90543,8 +84688,8 @@ export class CreateusermappingstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public create_generic_options(): Create_generic_optionsContext { - return this.getRuleContext(0, Create_generic_optionsContext)!; + public createGenericOptions(): CreateGenericOptionsContext { + return this.getRuleContext(0, CreateGenericOptionsContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -90556,11 +84701,11 @@ export class CreateusermappingstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createusermappingstmt; + return PostgreSqlParser.RULE_createUserMappingStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateusermappingstmt) { - return visitor.visitCreateusermappingstmt(this); + if (visitor.visitCreateUserMappingStatement) { + return visitor.visitCreateUserMappingStatement(this); } else { return visitor.visitChildren(this); } @@ -90568,22 +84713,22 @@ export class CreateusermappingstmtContext extends antlr.ParserRuleContext { } -export class Auth_identContext extends antlr.ParserRuleContext { +export class AuthIdentifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public rolespec(): RolespecContext | null { - return this.getRuleContext(0, RolespecContext); + public roleSpecification(): RoleSpecificationContext | null { + return this.getRuleContext(0, RoleSpecificationContext); } public USER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_auth_ident; + return PostgreSqlParser.RULE_authIdentifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAuth_ident) { - return visitor.visitAuth_ident(this); + if (visitor.visitAuthIdentifier) { + return visitor.visitAuthIdentifier(this); } else { return visitor.visitChildren(this); } @@ -90591,7 +84736,7 @@ export class Auth_identContext extends antlr.ParserRuleContext { } -export class DropusermappingstmtContext extends antlr.ParserRuleContext { +export class DropUserMappingStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90607,8 +84752,8 @@ export class DropusermappingstmtContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public auth_ident(): Auth_identContext { - return this.getRuleContext(0, Auth_identContext)!; + public authIdentifier(): AuthIdentifierContext { + return this.getRuleContext(0, AuthIdentifierContext)!; } public SERVER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SERVER, 0)!; @@ -90623,11 +84768,11 @@ export class DropusermappingstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropusermappingstmt; + return PostgreSqlParser.RULE_dropUserMappingStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropusermappingstmt) { - return visitor.visitDropusermappingstmt(this); + if (visitor.visitDropUserMappingStatement) { + return visitor.visitDropUserMappingStatement(this); } else { return visitor.visitChildren(this); } @@ -90635,7 +84780,7 @@ export class DropusermappingstmtContext extends antlr.ParserRuleContext { } -export class AlterusermappingstmtContext extends antlr.ParserRuleContext { +export class AlterUserMappingStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90651,8 +84796,8 @@ export class AlterusermappingstmtContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public auth_ident(): Auth_identContext { - return this.getRuleContext(0, Auth_identContext)!; + public authIdentifier(): AuthIdentifierContext { + return this.getRuleContext(0, AuthIdentifierContext)!; } public SERVER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SERVER, 0)!; @@ -90660,15 +84805,15 @@ export class AlterusermappingstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public alter_generic_options(): Alter_generic_optionsContext { - return this.getRuleContext(0, Alter_generic_optionsContext)!; + public alterGenericOptions(): AlterGenericOptionsContext { + return this.getRuleContext(0, AlterGenericOptionsContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterusermappingstmt; + return PostgreSqlParser.RULE_alterUserMappingStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterusermappingstmt) { - return visitor.visitAlterusermappingstmt(this); + if (visitor.visitAlterUserMappingStatement) { + return visitor.visitAlterUserMappingStatement(this); } else { return visitor.visitChildren(this); } @@ -90676,7 +84821,7 @@ export class AlterusermappingstmtContext extends antlr.ParserRuleContext { } -export class CreatepolicystmtContext extends antlr.ParserRuleContext { +export class CreatePolicyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90692,30 +84837,30 @@ export class CreatepolicystmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public rowsecuritydefaultpermissive(): RowsecuritydefaultpermissiveContext { - return this.getRuleContext(0, RowsecuritydefaultpermissiveContext)!; + public rowSecurityDefaultPermissive(): RowSecurityDefaultPermissiveContext { + return this.getRuleContext(0, RowSecurityDefaultPermissiveContext)!; } - public rowsecuritydefaultforcmd(): RowsecuritydefaultforcmdContext { - return this.getRuleContext(0, RowsecuritydefaultforcmdContext)!; + public rowSecurityDefaultForCmd(): RowSecurityDefaultForCmdContext { + return this.getRuleContext(0, RowSecurityDefaultForCmdContext)!; } - public rowsecuritydefaulttorole(): RowsecuritydefaulttoroleContext { - return this.getRuleContext(0, RowsecuritydefaulttoroleContext)!; + public rowSecurityDefaultToRole(): RowSecurityDefaultToRoleContext { + return this.getRuleContext(0, RowSecurityDefaultToRoleContext)!; } - public rowsecurityoptionalexpr(): RowsecurityoptionalexprContext { - return this.getRuleContext(0, RowsecurityoptionalexprContext)!; + public rowSecurityOptionalExpression(): RowSecurityOptionalExpressionContext { + return this.getRuleContext(0, RowSecurityOptionalExpressionContext)!; } - public rowsecurityoptionalwithcheck(): RowsecurityoptionalwithcheckContext { - return this.getRuleContext(0, RowsecurityoptionalwithcheckContext)!; + public rowSecurityOptionalWithCheck(): RowSecurityOptionalWithCheckContext { + return this.getRuleContext(0, RowSecurityOptionalWithCheckContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createpolicystmt; + return PostgreSqlParser.RULE_createPolicyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatepolicystmt) { - return visitor.visitCreatepolicystmt(this); + if (visitor.visitCreatePolicyStatement) { + return visitor.visitCreatePolicyStatement(this); } else { return visitor.visitChildren(this); } @@ -90723,7 +84868,7 @@ export class CreatepolicystmtContext extends antlr.ParserRuleContext { } -export class AlterpolicystmtContext extends antlr.ParserRuleContext { +export class AlterPolicyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90739,24 +84884,24 @@ export class AlterpolicystmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public rowsecurityoptionaltorole(): RowsecurityoptionaltoroleContext { - return this.getRuleContext(0, RowsecurityoptionaltoroleContext)!; + public rowSecurityOptionalToRole(): RowSecurityOptionalToRoleContext { + return this.getRuleContext(0, RowSecurityOptionalToRoleContext)!; } - public rowsecurityoptionalexpr(): RowsecurityoptionalexprContext { - return this.getRuleContext(0, RowsecurityoptionalexprContext)!; + public rowSecurityOptionalExpression(): RowSecurityOptionalExpressionContext { + return this.getRuleContext(0, RowSecurityOptionalExpressionContext)!; } - public rowsecurityoptionalwithcheck(): RowsecurityoptionalwithcheckContext { - return this.getRuleContext(0, RowsecurityoptionalwithcheckContext)!; + public rowSecurityOptionalWithCheck(): RowSecurityOptionalWithCheckContext { + return this.getRuleContext(0, RowSecurityOptionalWithCheckContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterpolicystmt; + return PostgreSqlParser.RULE_alterPolicyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterpolicystmt) { - return visitor.visitAlterpolicystmt(this); + if (visitor.visitAlterPolicyStatement) { + return visitor.visitAlterPolicyStatement(this); } else { return visitor.visitChildren(this); } @@ -90764,7 +84909,7 @@ export class AlterpolicystmtContext extends antlr.ParserRuleContext { } -export class RowsecurityoptionalexprContext extends antlr.ParserRuleContext { +export class RowSecurityOptionalExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90774,18 +84919,18 @@ export class RowsecurityoptionalexprContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecurityoptionalexpr; + return PostgreSqlParser.RULE_rowSecurityOptionalExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecurityoptionalexpr) { - return visitor.visitRowsecurityoptionalexpr(this); + if (visitor.visitRowSecurityOptionalExpression) { + return visitor.visitRowSecurityOptionalExpression(this); } else { return visitor.visitChildren(this); } @@ -90793,7 +84938,7 @@ export class RowsecurityoptionalexprContext extends antlr.ParserRuleContext { } -export class RowsecurityoptionalwithcheckContext extends antlr.ParserRuleContext { +export class RowSecurityOptionalWithCheckContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90806,18 +84951,18 @@ export class RowsecurityoptionalwithcheckContext extends antlr.ParserRuleContext public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecurityoptionalwithcheck; + return PostgreSqlParser.RULE_rowSecurityOptionalWithCheck; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecurityoptionalwithcheck) { - return visitor.visitRowsecurityoptionalwithcheck(this); + if (visitor.visitRowSecurityOptionalWithCheck) { + return visitor.visitRowSecurityOptionalWithCheck(this); } else { return visitor.visitChildren(this); } @@ -90825,22 +84970,22 @@ export class RowsecurityoptionalwithcheckContext extends antlr.ParserRuleContext } -export class RowsecuritydefaulttoroleContext extends antlr.ParserRuleContext { +export class RowSecurityDefaultToRoleContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecuritydefaulttorole; + return PostgreSqlParser.RULE_rowSecurityDefaultToRole; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecuritydefaulttorole) { - return visitor.visitRowsecuritydefaulttorole(this); + if (visitor.visitRowSecurityDefaultToRole) { + return visitor.visitRowSecurityDefaultToRole(this); } else { return visitor.visitChildren(this); } @@ -90848,22 +84993,22 @@ export class RowsecuritydefaulttoroleContext extends antlr.ParserRuleContext { } -export class RowsecurityoptionaltoroleContext extends antlr.ParserRuleContext { +export class RowSecurityOptionalToRoleContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecurityoptionaltorole; + return PostgreSqlParser.RULE_rowSecurityOptionalToRole; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecurityoptionaltorole) { - return visitor.visitRowsecurityoptionaltorole(this); + if (visitor.visitRowSecurityOptionalToRole) { + return visitor.visitRowSecurityOptionalToRole(this); } else { return visitor.visitChildren(this); } @@ -90871,7 +85016,7 @@ export class RowsecurityoptionaltoroleContext extends antlr.ParserRuleContext { } -export class RowsecuritydefaultpermissiveContext extends antlr.ParserRuleContext { +export class RowSecurityDefaultPermissiveContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90882,11 +85027,11 @@ export class RowsecuritydefaultpermissiveContext extends antlr.ParserRuleContext return this.getRuleContext(0, IdentifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecuritydefaultpermissive; + return PostgreSqlParser.RULE_rowSecurityDefaultPermissive; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecuritydefaultpermissive) { - return visitor.visitRowsecuritydefaultpermissive(this); + if (visitor.visitRowSecurityDefaultPermissive) { + return visitor.visitRowSecurityDefaultPermissive(this); } else { return visitor.visitChildren(this); } @@ -90894,22 +85039,22 @@ export class RowsecuritydefaultpermissiveContext extends antlr.ParserRuleContext } -export class RowsecuritydefaultforcmdContext extends antlr.ParserRuleContext { +export class RowSecurityDefaultForCmdContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public row_security_cmd(): Row_security_cmdContext | null { - return this.getRuleContext(0, Row_security_cmdContext); + public rowSecurityCommand(): RowSecurityCommandContext | null { + return this.getRuleContext(0, RowSecurityCommandContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsecuritydefaultforcmd; + return PostgreSqlParser.RULE_rowSecurityDefaultForCmd; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsecuritydefaultforcmd) { - return visitor.visitRowsecuritydefaultforcmd(this); + if (visitor.visitRowSecurityDefaultForCmd) { + return visitor.visitRowSecurityDefaultForCmd(this); } else { return visitor.visitChildren(this); } @@ -90917,7 +85062,7 @@ export class RowsecuritydefaultforcmdContext extends antlr.ParserRuleContext { } -export class Row_security_cmdContext extends antlr.ParserRuleContext { +export class RowSecurityCommandContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90937,11 +85082,11 @@ export class Row_security_cmdContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DELETE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_row_security_cmd; + return PostgreSqlParser.RULE_rowSecurityCommand; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRow_security_cmd) { - return visitor.visitRow_security_cmd(this); + if (visitor.visitRowSecurityCommand) { + return visitor.visitRowSecurityCommand(this); } else { return visitor.visitChildren(this); } @@ -90949,7 +85094,7 @@ export class Row_security_cmdContext extends antlr.ParserRuleContext { } -export class CreateamstmtContext extends antlr.ParserRuleContext { +export class CreateAccessMethodStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -90968,21 +85113,21 @@ export class CreateamstmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TYPE_P, 0)!; } - public am_type(): Am_typeContext { - return this.getRuleContext(0, Am_typeContext)!; + public accessMethodType(): AccessMethodTypeContext { + return this.getRuleContext(0, AccessMethodTypeContext)!; } public HANDLER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.HANDLER, 0)!; } - public handler_name(): Handler_nameContext { - return this.getRuleContext(0, Handler_nameContext)!; + public handlerName(): HandlerNameContext { + return this.getRuleContext(0, HandlerNameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createamstmt; + return PostgreSqlParser.RULE_createAccessMethodStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateamstmt) { - return visitor.visitCreateamstmt(this); + if (visitor.visitCreateAccessMethodStatement) { + return visitor.visitCreateAccessMethodStatement(this); } else { return visitor.visitChildren(this); } @@ -90990,7 +85135,7 @@ export class CreateamstmtContext extends antlr.ParserRuleContext { } -export class Am_typeContext extends antlr.ParserRuleContext { +export class AccessMethodTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91001,11 +85146,11 @@ export class Am_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_am_type; + return PostgreSqlParser.RULE_accessMethodType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAm_type) { - return visitor.visitAm_type(this); + if (visitor.visitAccessMethodType) { + return visitor.visitAccessMethodType(this); } else { return visitor.visitChildren(this); } @@ -91013,7 +85158,7 @@ export class Am_typeContext extends antlr.ParserRuleContext { } -export class CreatetrigstmtContext extends antlr.ParserRuleContext { +export class CreateTriggerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91026,41 +85171,41 @@ export class CreatetrigstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public triggeractiontime(): TriggeractiontimeContext | null { - return this.getRuleContext(0, TriggeractiontimeContext); + public triggerActionTime(): TriggerActionTimeContext | null { + return this.getRuleContext(0, TriggerActionTimeContext); } - public triggerevents(): TriggereventsContext { - return this.getRuleContext(0, TriggereventsContext)!; + public triggerEvents(): TriggerEventsContext { + return this.getRuleContext(0, TriggerEventsContext)!; } public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public triggerreferencing(): TriggerreferencingContext | null { - return this.getRuleContext(0, TriggerreferencingContext); + public triggerReferencing(): TriggerReferencingContext | null { + return this.getRuleContext(0, TriggerReferencingContext); } - public triggerforspec(): TriggerforspecContext | null { - return this.getRuleContext(0, TriggerforspecContext); + public triggerForSpec(): TriggerForSpecContext | null { + return this.getRuleContext(0, TriggerForSpecContext); } - public triggerwhen(): TriggerwhenContext { - return this.getRuleContext(0, TriggerwhenContext)!; + public triggerWhen(): TriggerWhenContext { + return this.getRuleContext(0, TriggerWhenContext)!; } public EXECUTE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EXECUTE, 0)!; } - public function_or_procedure(): Function_or_procedureContext { - return this.getRuleContext(0, Function_or_procedureContext)!; + public functionOrProcedure(): FunctionOrProcedureContext { + return this.getRuleContext(0, FunctionOrProcedureContext)!; } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public triggerfuncargs(): TriggerfuncargsContext { - return this.getRuleContext(0, TriggerfuncargsContext)!; + public triggerFunctionArguments(): TriggerFunctionArgumentsContext { + return this.getRuleContext(0, TriggerFunctionArgumentsContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; @@ -91071,11 +85216,11 @@ export class CreatetrigstmtContext extends antlr.ParserRuleContext { public AFTER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AFTER, 0); } - public optconstrfromtable(): OptconstrfromtableContext | null { - return this.getRuleContext(0, OptconstrfromtableContext); + public optionalConstraintFromTable(): OptionalConstraintFromTableContext | null { + return this.getRuleContext(0, OptionalConstraintFromTableContext); } - public constraintattributespec(): ConstraintattributespecContext | null { - return this.getRuleContext(0, ConstraintattributespecContext); + public constraintAttributeSpecification(): ConstraintAttributeSpecificationContext | null { + return this.getRuleContext(0, ConstraintAttributeSpecificationContext); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); @@ -91087,11 +85232,11 @@ export class CreatetrigstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROW, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createtrigstmt; + return PostgreSqlParser.RULE_createTriggerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatetrigstmt) { - return visitor.visitCreatetrigstmt(this); + if (visitor.visitCreateTriggerStatement) { + return visitor.visitCreateTriggerStatement(this); } else { return visitor.visitChildren(this); } @@ -91099,7 +85244,7 @@ export class CreatetrigstmtContext extends antlr.ParserRuleContext { } -export class TriggeractiontimeContext extends antlr.ParserRuleContext { +export class TriggerActionTimeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91116,11 +85261,11 @@ export class TriggeractiontimeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OF, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggeractiontime; + return PostgreSqlParser.RULE_triggerActionTime; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggeractiontime) { - return visitor.visitTriggeractiontime(this); + if (visitor.visitTriggerActionTime) { + return visitor.visitTriggerActionTime(this); } else { return visitor.visitChildren(this); } @@ -91128,18 +85273,18 @@ export class TriggeractiontimeContext extends antlr.ParserRuleContext { } -export class TriggereventsContext extends antlr.ParserRuleContext { +export class TriggerEventsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public triggeroneevent(): TriggeroneeventContext[]; - public triggeroneevent(i: number): TriggeroneeventContext | null; - public triggeroneevent(i?: number): TriggeroneeventContext[] | TriggeroneeventContext | null { + public triggerOneEvent(): TriggerOneEventContext[]; + public triggerOneEvent(i: number): TriggerOneEventContext | null; + public triggerOneEvent(i?: number): TriggerOneEventContext[] | TriggerOneEventContext | null { if (i === undefined) { - return this.getRuleContexts(TriggeroneeventContext); + return this.getRuleContexts(TriggerOneEventContext); } - return this.getRuleContext(i, TriggeroneeventContext); + return this.getRuleContext(i, TriggerOneEventContext); } public OR(): antlr.TerminalNode[]; public OR(i: number): antlr.TerminalNode | null; @@ -91151,11 +85296,11 @@ export class TriggereventsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerevents; + return PostgreSqlParser.RULE_triggerEvents; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerevents) { - return visitor.visitTriggerevents(this); + if (visitor.visitTriggerEvents) { + return visitor.visitTriggerEvents(this); } else { return visitor.visitChildren(this); } @@ -91163,7 +85308,7 @@ export class TriggereventsContext extends antlr.ParserRuleContext { } -export class TriggeroneeventContext extends antlr.ParserRuleContext { +export class TriggerOneEventContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91179,18 +85324,18 @@ export class TriggeroneeventContext extends antlr.ParserRuleContext { public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public TRUNCATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRUNCATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggeroneevent; + return PostgreSqlParser.RULE_triggerOneEvent; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggeroneevent) { - return visitor.visitTriggeroneevent(this); + if (visitor.visitTriggerOneEvent) { + return visitor.visitTriggerOneEvent(this); } else { return visitor.visitChildren(this); } @@ -91198,22 +85343,22 @@ export class TriggeroneeventContext extends antlr.ParserRuleContext { } -export class TriggerreferencingContext extends antlr.ParserRuleContext { +export class TriggerReferencingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public REFERENCING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REFERENCING, 0); } - public triggertransitions(): TriggertransitionsContext | null { - return this.getRuleContext(0, TriggertransitionsContext); + public triggerTransitions(): TriggerTransitionsContext | null { + return this.getRuleContext(0, TriggerTransitionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerreferencing; + return PostgreSqlParser.RULE_triggerReferencing; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerreferencing) { - return visitor.visitTriggerreferencing(this); + if (visitor.visitTriggerReferencing) { + return visitor.visitTriggerReferencing(this); } else { return visitor.visitChildren(this); } @@ -91221,25 +85366,25 @@ export class TriggerreferencingContext extends antlr.ParserRuleContext { } -export class TriggertransitionsContext extends antlr.ParserRuleContext { +export class TriggerTransitionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public triggertransition(): TriggertransitionContext[]; - public triggertransition(i: number): TriggertransitionContext | null; - public triggertransition(i?: number): TriggertransitionContext[] | TriggertransitionContext | null { + public triggerTransition(): TriggerTransitionContext[]; + public triggerTransition(i: number): TriggerTransitionContext | null; + public triggerTransition(i?: number): TriggerTransitionContext[] | TriggerTransitionContext | null { if (i === undefined) { - return this.getRuleContexts(TriggertransitionContext); + return this.getRuleContexts(TriggerTransitionContext); } - return this.getRuleContext(i, TriggertransitionContext); + return this.getRuleContext(i, TriggerTransitionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggertransitions; + return PostgreSqlParser.RULE_triggerTransitions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggertransitions) { - return visitor.visitTriggertransitions(this); + if (visitor.visitTriggerTransitions) { + return visitor.visitTriggerTransitions(this); } else { return visitor.visitChildren(this); } @@ -91247,28 +85392,28 @@ export class TriggertransitionsContext extends antlr.ParserRuleContext { } -export class TriggertransitionContext extends antlr.ParserRuleContext { +export class TriggerTransitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public transitionoldornew(): TransitionoldornewContext { - return this.getRuleContext(0, TransitionoldornewContext)!; + public transitionOldOrNew(): TransitionOldOrNewContext { + return this.getRuleContext(0, TransitionOldOrNewContext)!; } - public transitionrowortable(): TransitionrowortableContext { - return this.getRuleContext(0, TransitionrowortableContext)!; + public transitionRowOrTable(): TransitionRowOrTableContext { + return this.getRuleContext(0, TransitionRowOrTableContext)!; } - public opt_as(): Opt_asContext { - return this.getRuleContext(0, Opt_asContext)!; + public optionalAs(): OptionalAsContext { + return this.getRuleContext(0, OptionalAsContext)!; } - public transitionrelname(): TransitionrelnameContext { - return this.getRuleContext(0, TransitionrelnameContext)!; + public transitionRelName(): TransitionRelNameContext { + return this.getRuleContext(0, TransitionRelNameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggertransition; + return PostgreSqlParser.RULE_triggerTransition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggertransition) { - return visitor.visitTriggertransition(this); + if (visitor.visitTriggerTransition) { + return visitor.visitTriggerTransition(this); } else { return visitor.visitChildren(this); } @@ -91276,7 +85421,7 @@ export class TriggertransitionContext extends antlr.ParserRuleContext { } -export class TransitionoldornewContext extends antlr.ParserRuleContext { +export class TransitionOldOrNewContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91287,11 +85432,11 @@ export class TransitionoldornewContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OLD, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transitionoldornew; + return PostgreSqlParser.RULE_transitionOldOrNew; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransitionoldornew) { - return visitor.visitTransitionoldornew(this); + if (visitor.visitTransitionOldOrNew) { + return visitor.visitTransitionOldOrNew(this); } else { return visitor.visitChildren(this); } @@ -91299,7 +85444,7 @@ export class TransitionoldornewContext extends antlr.ParserRuleContext { } -export class TransitionrowortableContext extends antlr.ParserRuleContext { +export class TransitionRowOrTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91310,11 +85455,11 @@ export class TransitionrowortableContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROW, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transitionrowortable; + return PostgreSqlParser.RULE_transitionRowOrTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransitionrowortable) { - return visitor.visitTransitionrowortable(this); + if (visitor.visitTransitionRowOrTable) { + return visitor.visitTransitionRowOrTable(this); } else { return visitor.visitChildren(this); } @@ -91322,19 +85467,19 @@ export class TransitionrowortableContext extends antlr.ParserRuleContext { } -export class TransitionrelnameContext extends antlr.ParserRuleContext { +export class TransitionRelNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transitionrelname; + return PostgreSqlParser.RULE_transitionRelName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransitionrelname) { - return visitor.visitTransitionrelname(this); + if (visitor.visitTransitionRelName) { + return visitor.visitTransitionRelName(this); } else { return visitor.visitChildren(this); } @@ -91342,45 +85487,25 @@ export class TransitionrelnameContext extends antlr.ParserRuleContext { } -export class TriggerforspecContext extends antlr.ParserRuleContext { +export class TriggerForSpecContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public triggerforopteach(): TriggerforopteachContext | null { - return this.getRuleContext(0, TriggerforopteachContext); - } - public triggerfortype(): TriggerfortypeContext | null { - return this.getRuleContext(0, TriggerfortypeContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerforspec; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerforspec) { - return visitor.visitTriggerforspec(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TriggerforopteachContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public triggerForType(): TriggerForTypeContext | null { + return this.getRuleContext(0, TriggerForTypeContext); } public EACH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EACH, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerforopteach; + return PostgreSqlParser.RULE_triggerForSpec; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerforopteach) { - return visitor.visitTriggerforopteach(this); + if (visitor.visitTriggerForSpec) { + return visitor.visitTriggerForSpec(this); } else { return visitor.visitChildren(this); } @@ -91388,7 +85513,7 @@ export class TriggerforopteachContext extends antlr.ParserRuleContext { } -export class TriggerfortypeContext extends antlr.ParserRuleContext { +export class TriggerForTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91399,11 +85524,11 @@ export class TriggerfortypeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.STATEMENT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerfortype; + return PostgreSqlParser.RULE_triggerForType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerfortype) { - return visitor.visitTriggerfortype(this); + if (visitor.visitTriggerForType) { + return visitor.visitTriggerForType(this); } else { return visitor.visitChildren(this); } @@ -91411,7 +85536,7 @@ export class TriggerfortypeContext extends antlr.ParserRuleContext { } -export class TriggerwhenContext extends antlr.ParserRuleContext { +export class TriggerWhenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91421,18 +85546,18 @@ export class TriggerwhenContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerwhen; + return PostgreSqlParser.RULE_triggerWhen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerwhen) { - return visitor.visitTriggerwhen(this); + if (visitor.visitTriggerWhen) { + return visitor.visitTriggerWhen(this); } else { return visitor.visitChildren(this); } @@ -91440,7 +85565,7 @@ export class TriggerwhenContext extends antlr.ParserRuleContext { } -export class Function_or_procedureContext extends antlr.ParserRuleContext { +export class FunctionOrProcedureContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91451,11 +85576,11 @@ export class Function_or_procedureContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PROCEDURE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_function_or_procedure; + return PostgreSqlParser.RULE_functionOrProcedure; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunction_or_procedure) { - return visitor.visitFunction_or_procedure(this); + if (visitor.visitFunctionOrProcedure) { + return visitor.visitFunctionOrProcedure(this); } else { return visitor.visitChildren(this); } @@ -91463,18 +85588,18 @@ export class Function_or_procedureContext extends antlr.ParserRuleContext { } -export class TriggerfuncargsContext extends antlr.ParserRuleContext { +export class TriggerFunctionArgumentsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public triggerfuncarg(): TriggerfuncargContext[]; - public triggerfuncarg(i: number): TriggerfuncargContext | null; - public triggerfuncarg(i?: number): TriggerfuncargContext[] | TriggerfuncargContext | null { + public triggerFunctionArgument(): TriggerFunctionArgumentContext[]; + public triggerFunctionArgument(i: number): TriggerFunctionArgumentContext | null; + public triggerFunctionArgument(i?: number): TriggerFunctionArgumentContext[] | TriggerFunctionArgumentContext | null { if (i === undefined) { - return this.getRuleContexts(TriggerfuncargContext); + return this.getRuleContexts(TriggerFunctionArgumentContext); } - return this.getRuleContext(i, TriggerfuncargContext); + return this.getRuleContext(i, TriggerFunctionArgumentContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -91486,11 +85611,11 @@ export class TriggerfuncargsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerfuncargs; + return PostgreSqlParser.RULE_triggerFunctionArguments; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerfuncargs) { - return visitor.visitTriggerfuncargs(this); + if (visitor.visitTriggerFunctionArguments) { + return visitor.visitTriggerFunctionArguments(this); } else { return visitor.visitChildren(this); } @@ -91498,7 +85623,7 @@ export class TriggerfuncargsContext extends antlr.ParserRuleContext { } -export class TriggerfuncargContext extends antlr.ParserRuleContext { +export class TriggerFunctionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91511,15 +85636,15 @@ export class TriggerfuncargContext extends antlr.ParserRuleContext { public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); + public columnLabel(): ColumnLabelContext | null { + return this.getRuleContext(0, ColumnLabelContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_triggerfuncarg; + return PostgreSqlParser.RULE_triggerFunctionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTriggerfuncarg) { - return visitor.visitTriggerfuncarg(this); + if (visitor.visitTriggerFunctionArgument) { + return visitor.visitTriggerFunctionArgument(this); } else { return visitor.visitChildren(this); } @@ -91527,22 +85652,22 @@ export class TriggerfuncargContext extends antlr.ParserRuleContext { } -export class OptconstrfromtableContext extends antlr.ParserRuleContext { +export class OptionalConstraintFromTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_optconstrfromtable; + return PostgreSqlParser.RULE_optionalConstraintFromTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOptconstrfromtable) { - return visitor.visitOptconstrfromtable(this); + if (visitor.visitOptionalConstraintFromTable) { + return visitor.visitOptionalConstraintFromTable(this); } else { return visitor.visitChildren(this); } @@ -91550,25 +85675,25 @@ export class OptconstrfromtableContext extends antlr.ParserRuleContext { } -export class ConstraintattributespecContext extends antlr.ParserRuleContext { +export class ConstraintAttributeSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public constraintattributeElem(): ConstraintattributeElemContext[]; - public constraintattributeElem(i: number): ConstraintattributeElemContext | null; - public constraintattributeElem(i?: number): ConstraintattributeElemContext[] | ConstraintattributeElemContext | null { + public constraintAttributeElement(): ConstraintAttributeElementContext[]; + public constraintAttributeElement(i: number): ConstraintAttributeElementContext | null; + public constraintAttributeElement(i?: number): ConstraintAttributeElementContext[] | ConstraintAttributeElementContext | null { if (i === undefined) { - return this.getRuleContexts(ConstraintattributeElemContext); + return this.getRuleContexts(ConstraintAttributeElementContext); } - return this.getRuleContext(i, ConstraintattributeElemContext); + return this.getRuleContext(i, ConstraintAttributeElementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraintattributespec; + return PostgreSqlParser.RULE_constraintAttributeSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraintattributespec) { - return visitor.visitConstraintattributespec(this); + if (visitor.visitConstraintAttributeSpecification) { + return visitor.visitConstraintAttributeSpecification(this); } else { return visitor.visitChildren(this); } @@ -91576,7 +85701,7 @@ export class ConstraintattributespecContext extends antlr.ParserRuleContext { } -export class ConstraintattributeElemContext extends antlr.ParserRuleContext { +export class ConstraintAttributeElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91605,11 +85730,11 @@ export class ConstraintattributeElemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.INHERIT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constraintattributeElem; + return PostgreSqlParser.RULE_constraintAttributeElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstraintattributeElem) { - return visitor.visitConstraintattributeElem(this); + if (visitor.visitConstraintAttributeElement) { + return visitor.visitConstraintAttributeElement(this); } else { return visitor.visitChildren(this); } @@ -91617,7 +85742,7 @@ export class ConstraintattributeElemContext extends antlr.ParserRuleContext { } -export class CreateeventtrigstmtContext extends antlr.ParserRuleContext { +export class CreateEventTriggerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91636,17 +85761,17 @@ export class CreateeventtrigstmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public EXECUTE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EXECUTE, 0)!; } - public function_or_procedure(): Function_or_procedureContext { - return this.getRuleContext(0, Function_or_procedureContext)!; + public functionOrProcedure(): FunctionOrProcedureContext { + return this.getRuleContext(0, FunctionOrProcedureContext)!; } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; @@ -91657,15 +85782,15 @@ export class CreateeventtrigstmtContext extends antlr.ParserRuleContext { public WHEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WHEN, 0); } - public event_trigger_when_list(): Event_trigger_when_listContext | null { - return this.getRuleContext(0, Event_trigger_when_listContext); + public eventTriggerWhenList(): EventTriggerWhenListContext | null { + return this.getRuleContext(0, EventTriggerWhenListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createeventtrigstmt; + return PostgreSqlParser.RULE_createEventTriggerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateeventtrigstmt) { - return visitor.visitCreateeventtrigstmt(this); + if (visitor.visitCreateEventTriggerStatement) { + return visitor.visitCreateEventTriggerStatement(this); } else { return visitor.visitChildren(this); } @@ -91673,18 +85798,18 @@ export class CreateeventtrigstmtContext extends antlr.ParserRuleContext { } -export class Event_trigger_when_listContext extends antlr.ParserRuleContext { +export class EventTriggerWhenListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public event_trigger_when_item(): Event_trigger_when_itemContext[]; - public event_trigger_when_item(i: number): Event_trigger_when_itemContext | null; - public event_trigger_when_item(i?: number): Event_trigger_when_itemContext[] | Event_trigger_when_itemContext | null { + public eventTriggerWhenItem(): EventTriggerWhenItemContext[]; + public eventTriggerWhenItem(i: number): EventTriggerWhenItemContext | null; + public eventTriggerWhenItem(i?: number): EventTriggerWhenItemContext[] | EventTriggerWhenItemContext | null { if (i === undefined) { - return this.getRuleContexts(Event_trigger_when_itemContext); + return this.getRuleContexts(EventTriggerWhenItemContext); } - return this.getRuleContext(i, Event_trigger_when_itemContext); + return this.getRuleContext(i, EventTriggerWhenItemContext); } public AND(): antlr.TerminalNode[]; public AND(i: number): antlr.TerminalNode | null; @@ -91696,11 +85821,11 @@ export class Event_trigger_when_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_event_trigger_when_list; + return PostgreSqlParser.RULE_eventTriggerWhenList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEvent_trigger_when_list) { - return visitor.visitEvent_trigger_when_list(this); + if (visitor.visitEventTriggerWhenList) { + return visitor.visitEventTriggerWhenList(this); } else { return visitor.visitChildren(this); } @@ -91708,12 +85833,12 @@ export class Event_trigger_when_listContext extends antlr.ParserRuleContext { } -export class Event_trigger_when_itemContext extends antlr.ParserRuleContext { +export class EventTriggerWhenItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public IN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.IN_P, 0)!; @@ -91721,18 +85846,18 @@ export class Event_trigger_when_itemContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public event_trigger_value_list(): Event_trigger_value_listContext { - return this.getRuleContext(0, Event_trigger_value_listContext)!; + public eventTriggerValueList(): EventTriggerValueListContext { + return this.getRuleContext(0, EventTriggerValueListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_event_trigger_when_item; + return PostgreSqlParser.RULE_eventTriggerWhenItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEvent_trigger_when_item) { - return visitor.visitEvent_trigger_when_item(this); + if (visitor.visitEventTriggerWhenItem) { + return visitor.visitEventTriggerWhenItem(this); } else { return visitor.visitChildren(this); } @@ -91740,7 +85865,7 @@ export class Event_trigger_when_itemContext extends antlr.ParserRuleContext { } -export class Event_trigger_value_listContext extends antlr.ParserRuleContext { +export class EventTriggerValueListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91763,11 +85888,11 @@ export class Event_trigger_value_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_event_trigger_value_list; + return PostgreSqlParser.RULE_eventTriggerValueList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEvent_trigger_value_list) { - return visitor.visitEvent_trigger_value_list(this); + if (visitor.visitEventTriggerValueList) { + return visitor.visitEventTriggerValueList(this); } else { return visitor.visitChildren(this); } @@ -91775,7 +85900,7 @@ export class Event_trigger_value_listContext extends antlr.ParserRuleContext { } -export class AltereventtrigstmtContext extends antlr.ParserRuleContext { +export class AlterEventTriggerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91791,15 +85916,15 @@ export class AltereventtrigstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public enable_trigger(): Enable_triggerContext { - return this.getRuleContext(0, Enable_triggerContext)!; + public enableTrigger(): EnableTriggerContext { + return this.getRuleContext(0, EnableTriggerContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altereventtrigstmt; + return PostgreSqlParser.RULE_alterEventTriggerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltereventtrigstmt) { - return visitor.visitAltereventtrigstmt(this); + if (visitor.visitAlterEventTriggerStatement) { + return visitor.visitAlterEventTriggerStatement(this); } else { return visitor.visitChildren(this); } @@ -91807,7 +85932,7 @@ export class AltereventtrigstmtContext extends antlr.ParserRuleContext { } -export class Enable_triggerContext extends antlr.ParserRuleContext { +export class EnableTriggerContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91824,11 +85949,11 @@ export class Enable_triggerContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DISABLE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_enable_trigger; + return PostgreSqlParser.RULE_enableTrigger; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEnable_trigger) { - return visitor.visitEnable_trigger(this); + if (visitor.visitEnableTrigger) { + return visitor.visitEnableTrigger(this); } else { return visitor.visitChildren(this); } @@ -91836,7 +85961,7 @@ export class Enable_triggerContext extends antlr.ParserRuleContext { } -export class CreateassertionstmtContext extends antlr.ParserRuleContext { +export class CreateAssertionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -91846,8 +85971,8 @@ export class CreateassertionstmtContext extends antlr.ParserRuleContext { public ASSERTION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ASSERTION, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public CHECK(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CHECK, 0)!; @@ -91855,21 +85980,21 @@ export class CreateassertionstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public constraintattributespec(): ConstraintattributespecContext { - return this.getRuleContext(0, ConstraintattributespecContext)!; + public constraintAttributeSpecification(): ConstraintAttributeSpecificationContext { + return this.getRuleContext(0, ConstraintAttributeSpecificationContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createassertionstmt; + return PostgreSqlParser.RULE_createAssertionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateassertionstmt) { - return visitor.visitCreateassertionstmt(this); + if (visitor.visitCreateAssertionStatement) { + return visitor.visitCreateAssertionStatement(this); } else { return visitor.visitChildren(this); } @@ -91877,48 +86002,48 @@ export class CreateassertionstmtContext extends antlr.ParserRuleContext { } -export class DefinestmtContext extends antlr.ParserRuleContext { +export class DefineStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_or_replace(): Opt_or_replaceContext | null { - return this.getRuleContext(0, Opt_or_replaceContext); + public optionalOrReplace(): OptionalOrReplaceContext | null { + return this.getRuleContext(0, OptionalOrReplaceContext); } public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public func_name(): Func_nameContext | null { - return this.getRuleContext(0, Func_nameContext); + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); } - public aggr_args(): Aggr_argsContext | null { - return this.getRuleContext(0, Aggr_argsContext); + public aggregateArguments(): AggregateArgumentsContext | null { + return this.getRuleContext(0, AggregateArgumentsContext); } public definition(): DefinitionContext | null { return this.getRuleContext(0, DefinitionContext); } - public old_aggr_definition(): Old_aggr_definitionContext | null { - return this.getRuleContext(0, Old_aggr_definitionContext); + public oldAggregateDefinition(): OldAggregateDefinitionContext | null { + return this.getRuleContext(0, OldAggregateDefinitionContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public any_name(): Any_nameContext[]; - public any_name(i: number): Any_nameContext | null; - public any_name(i?: number): Any_nameContext[] | Any_nameContext | null { + public anyName(): AnyNameContext[]; + public anyName(i: number): AnyNameContext | null; + public anyName(i?: number): AnyNameContext[] | AnyNameContext | null { if (i === undefined) { - return this.getRuleContexts(Any_nameContext); + return this.getRuleContexts(AnyNameContext); } - return this.getRuleContext(i, Any_nameContext); + return this.getRuleContext(i, AnyNameContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -91926,8 +86051,8 @@ export class DefinestmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public opttablefuncelementlist(): OpttablefuncelementlistContext | null { - return this.getRuleContext(0, OpttablefuncelementlistContext); + public optionalTableFunctionElementList(): OptionalTableFunctionElementListContext | null { + return this.getRuleContext(0, OptionalTableFunctionElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -91935,8 +86060,8 @@ export class DefinestmtContext extends antlr.ParserRuleContext { public ENUM_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ENUM_P, 0); } - public opt_enum_val_list(): Opt_enum_val_listContext | null { - return this.getRuleContext(0, Opt_enum_val_listContext); + public enumValueList(): EnumValueListContext | null { + return this.getRuleContext(0, EnumValueListContext); } public RANGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RANGE, 0); @@ -91975,11 +86100,11 @@ export class DefinestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FROM, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_definestmt; + return PostgreSqlParser.RULE_defineStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefinestmt) { - return visitor.visitDefinestmt(this); + if (visitor.visitDefineStatement) { + return visitor.visitDefineStatement(this); } else { return visitor.visitChildren(this); } @@ -91994,37 +86119,17 @@ export class DefinitionContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public def_list(): Def_listContext { - return this.getRuleContext(0, Def_listContext)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_definition; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefinition) { - return visitor.visitDefinition(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Def_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public def_elem(): Def_elemContext[]; - public def_elem(i: number): Def_elemContext | null; - public def_elem(i?: number): Def_elemContext[] | Def_elemContext | null { + public definitionElement(): DefinitionElementContext[]; + public definitionElement(i: number): DefinitionElementContext | null; + public definitionElement(i?: number): DefinitionElementContext[] | DefinitionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Def_elemContext); + return this.getRuleContexts(DefinitionElementContext); } - return this.getRuleContext(i, Def_elemContext); + return this.getRuleContext(i, DefinitionElementContext); + } + public CLOSE_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -92036,11 +86141,11 @@ export class Def_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_def_list; + return PostgreSqlParser.RULE_definition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDef_list) { - return visitor.visitDef_list(this); + if (visitor.visitDefinition) { + return visitor.visitDefinition(this); } else { return visitor.visitChildren(this); } @@ -92048,25 +86153,25 @@ export class Def_listContext extends antlr.ParserRuleContext { } -export class Def_elemContext extends antlr.ParserRuleContext { +export class DefinitionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public EQUAL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EQUAL, 0); } - public def_arg(): Def_argContext | null { - return this.getRuleContext(0, Def_argContext); + public definitionArgument(): DefinitionArgumentContext | null { + return this.getRuleContext(0, DefinitionArgumentContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_def_elem; + return PostgreSqlParser.RULE_definitionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDef_elem) { - return visitor.visitDef_elem(this); + if (visitor.visitDefinitionElement) { + return visitor.visitDefinitionElement(this); } else { return visitor.visitChildren(this); } @@ -92074,21 +86179,21 @@ export class Def_elemContext extends antlr.ParserRuleContext { } -export class Def_argContext extends antlr.ParserRuleContext { +export class DefinitionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_type(): Func_typeContext | null { - return this.getRuleContext(0, Func_typeContext); + public functionType(): FunctionTypeContext | null { + return this.getRuleContext(0, FunctionTypeContext); } - public reserved_keyword(): Reserved_keywordContext | null { - return this.getRuleContext(0, Reserved_keywordContext); + public reservedKeyword(): ReservedKeywordContext | null { + return this.getRuleContext(0, ReservedKeywordContext); } - public qual_all_op(): Qual_all_opContext | null { - return this.getRuleContext(0, Qual_all_opContext); + public allOperatorQualifier(): AllOperatorQualifierContext | null { + return this.getRuleContext(0, AllOperatorQualifierContext); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); @@ -92097,11 +86202,11 @@ export class Def_argContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NONE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_def_arg; + return PostgreSqlParser.RULE_definitionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDef_arg) { - return visitor.visitDef_arg(this); + if (visitor.visitDefinitionArgument) { + return visitor.visitDefinitionArgument(this); } else { return visitor.visitChildren(this); } @@ -92109,44 +86214,24 @@ export class Def_argContext extends antlr.ParserRuleContext { } -export class Old_aggr_definitionContext extends antlr.ParserRuleContext { +export class OldAggregateDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public old_aggr_list(): Old_aggr_listContext { - return this.getRuleContext(0, Old_aggr_listContext)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_old_aggr_definition; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOld_aggr_definition) { - return visitor.visitOld_aggr_definition(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Old_aggr_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public old_aggr_elem(): Old_aggr_elemContext[]; - public old_aggr_elem(i: number): Old_aggr_elemContext | null; - public old_aggr_elem(i?: number): Old_aggr_elemContext[] | Old_aggr_elemContext | null { + public oldAggregateElement(): OldAggregateElementContext[]; + public oldAggregateElement(i: number): OldAggregateElementContext | null; + public oldAggregateElement(i?: number): OldAggregateElementContext[] | OldAggregateElementContext | null { if (i === undefined) { - return this.getRuleContexts(Old_aggr_elemContext); + return this.getRuleContexts(OldAggregateElementContext); } - return this.getRuleContext(i, Old_aggr_elemContext); + return this.getRuleContext(i, OldAggregateElementContext); + } + public CLOSE_PAREN(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -92158,11 +86243,11 @@ export class Old_aggr_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_old_aggr_list; + return PostgreSqlParser.RULE_oldAggregateDefinition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOld_aggr_list) { - return visitor.visitOld_aggr_list(this); + if (visitor.visitOldAggregateDefinition) { + return visitor.visitOldAggregateDefinition(this); } else { return visitor.visitChildren(this); } @@ -92170,7 +86255,7 @@ export class Old_aggr_listContext extends antlr.ParserRuleContext { } -export class Old_aggr_elemContext extends antlr.ParserRuleContext { +export class OldAggregateElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92180,35 +86265,15 @@ export class Old_aggr_elemContext extends antlr.ParserRuleContext { public EQUAL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EQUAL, 0)!; } - public def_arg(): Def_argContext { - return this.getRuleContext(0, Def_argContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_old_aggr_elem; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOld_aggr_elem) { - return visitor.visitOld_aggr_elem(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_enum_val_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public enum_val_list(): Enum_val_listContext | null { - return this.getRuleContext(0, Enum_val_listContext); + public definitionArgument(): DefinitionArgumentContext { + return this.getRuleContext(0, DefinitionArgumentContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_enum_val_list; + return PostgreSqlParser.RULE_oldAggregateElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_enum_val_list) { - return visitor.visitOpt_enum_val_list(this); + if (visitor.visitOldAggregateElement) { + return visitor.visitOldAggregateElement(this); } else { return visitor.visitChildren(this); } @@ -92216,7 +86281,7 @@ export class Opt_enum_val_listContext extends antlr.ParserRuleContext { } -export class Enum_val_listContext extends antlr.ParserRuleContext { +export class EnumValueListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92239,11 +86304,11 @@ export class Enum_val_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_enum_val_list; + return PostgreSqlParser.RULE_enumValueList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEnum_val_list) { - return visitor.visitEnum_val_list(this); + if (visitor.visitEnumValueList) { + return visitor.visitEnumValueList(this); } else { return visitor.visitChildren(this); } @@ -92251,7 +86316,7 @@ export class Enum_val_listContext extends antlr.ParserRuleContext { } -export class AlterenumstmtContext extends antlr.ParserRuleContext { +export class AlterEnumStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92261,8 +86326,8 @@ export class AlterenumstmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TYPE_P, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public ADD_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADD_P, 0); @@ -92270,8 +86335,8 @@ export class AlterenumstmtContext extends antlr.ParserRuleContext { public VALUE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VALUE_P, 0)!; } - public opt_if_not_exists(): Opt_if_not_existsContext | null { - return this.getRuleContext(0, Opt_if_not_existsContext); + public optionalIfNotExists(): OptionalIfNotExistsContext | null { + return this.getRuleContext(0, OptionalIfNotExistsContext); } public sconst(): SconstContext[]; public sconst(i: number): SconstContext | null; @@ -92295,11 +86360,11 @@ export class AlterenumstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterenumstmt; + return PostgreSqlParser.RULE_alterEnumStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterenumstmt) { - return visitor.visitAlterenumstmt(this); + if (visitor.visitAlterEnumStatement) { + return visitor.visitAlterEnumStatement(this); } else { return visitor.visitChildren(this); } @@ -92307,7 +86372,7 @@ export class AlterenumstmtContext extends antlr.ParserRuleContext { } -export class Opt_if_not_existsContext extends antlr.ParserRuleContext { +export class OptionalIfNotExistsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92321,11 +86386,11 @@ export class Opt_if_not_existsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_if_not_exists; + return PostgreSqlParser.RULE_optionalIfNotExists; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_if_not_exists) { - return visitor.visitOpt_if_not_exists(this); + if (visitor.visitOptionalIfNotExists) { + return visitor.visitOptionalIfNotExists(this); } else { return visitor.visitChildren(this); } @@ -92333,7 +86398,7 @@ export class Opt_if_not_existsContext extends antlr.ParserRuleContext { } -export class CreateopclassstmtContext extends antlr.ParserRuleContext { +export class CreateOperatorClassStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92346,11 +86411,8 @@ export class CreateopclassstmtContext extends antlr.ParserRuleContext { public CLASS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLASS, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; - } - public opt_default(): Opt_defaultContext { - return this.getRuleContext(0, Opt_defaultContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; @@ -92358,8 +86420,8 @@ export class CreateopclassstmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TYPE_P, 0)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -92367,21 +86429,24 @@ export class CreateopclassstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_opfamily(): Opt_opfamilyContext { - return this.getRuleContext(0, Opt_opfamilyContext)!; + public optionalOperatorFamily(): OptionalOperatorFamilyContext { + return this.getRuleContext(0, OptionalOperatorFamilyContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public opclass_item_list(): Opclass_item_listContext { - return this.getRuleContext(0, Opclass_item_listContext)!; + public operatorClassItemList(): OperatorClassItemListContext { + return this.getRuleContext(0, OperatorClassItemListContext)!; + } + public DEFAULT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createopclassstmt; + return PostgreSqlParser.RULE_createOperatorClassStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateopclassstmt) { - return visitor.visitCreateopclassstmt(this); + if (visitor.visitCreateOperatorClassStatement) { + return visitor.visitCreateOperatorClassStatement(this); } else { return visitor.visitChildren(this); } @@ -92389,18 +86454,18 @@ export class CreateopclassstmtContext extends antlr.ParserRuleContext { } -export class Opclass_item_listContext extends antlr.ParserRuleContext { +export class OperatorClassItemListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opclass_item(): Opclass_itemContext[]; - public opclass_item(i: number): Opclass_itemContext | null; - public opclass_item(i?: number): Opclass_itemContext[] | Opclass_itemContext | null { + public operatorClassItem(): OperatorClassItemContext[]; + public operatorClassItem(i: number): OperatorClassItemContext | null; + public operatorClassItem(i?: number): OperatorClassItemContext[] | OperatorClassItemContext | null { if (i === undefined) { - return this.getRuleContexts(Opclass_itemContext); + return this.getRuleContexts(OperatorClassItemContext); } - return this.getRuleContext(i, Opclass_itemContext); + return this.getRuleContext(i, OperatorClassItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -92412,11 +86477,11 @@ export class Opclass_item_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opclass_item_list; + return PostgreSqlParser.RULE_operatorClassItemList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpclass_item_list) { - return visitor.visitOpclass_item_list(this); + if (visitor.visitOperatorClassItemList) { + return visitor.visitOperatorClassItemList(this); } else { return visitor.visitChildren(this); } @@ -92424,7 +86489,7 @@ export class Opclass_item_listContext extends antlr.ParserRuleContext { } -export class Opclass_itemContext extends antlr.ParserRuleContext { +export class OperatorClassItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92434,29 +86499,29 @@ export class Opclass_itemContext extends antlr.ParserRuleContext { public iconst(): IconstContext | null { return this.getRuleContext(0, IconstContext); } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } - public opclass_purpose(): Opclass_purposeContext | null { - return this.getRuleContext(0, Opclass_purposeContext); + public operatorClassPurpose(): OperatorClassPurposeContext | null { + return this.getRuleContext(0, OperatorClassPurposeContext); } - public opt_recheck(): Opt_recheckContext | null { - return this.getRuleContext(0, Opt_recheckContext); + public RECHECK(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.RECHECK, 0); } - public operator_with_argtypes(): Operator_with_argtypesContext | null { - return this.getRuleContext(0, Operator_with_argtypesContext); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext | null { + return this.getRuleContext(0, OperatorWithArgumentTypesContext); } public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public type_list(): Type_listContext | null { - return this.getRuleContext(0, Type_listContext); + public typeList(): TypeListContext | null { + return this.getRuleContext(0, TypeListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -92464,15 +86529,15 @@ export class Opclass_itemContext extends antlr.ParserRuleContext { public STORAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STORAGE, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opclass_item; + return PostgreSqlParser.RULE_operatorClassItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpclass_item) { - return visitor.visitOpclass_item(this); + if (visitor.visitOperatorClassItem) { + return visitor.visitOperatorClassItem(this); } else { return visitor.visitChildren(this); } @@ -92480,42 +86545,22 @@ export class Opclass_itemContext extends antlr.ParserRuleContext { } -export class Opt_defaultContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public DEFAULT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.DEFAULT, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_default; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_default) { - return visitor.visitOpt_default(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_opfamilyContext extends antlr.ParserRuleContext { +export class OptionalOperatorFamilyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FAMILY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FAMILY, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_opfamily; + return PostgreSqlParser.RULE_optionalOperatorFamily; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_opfamily) { - return visitor.visitOpt_opfamily(this); + if (visitor.visitOptionalOperatorFamily) { + return visitor.visitOptionalOperatorFamily(this); } else { return visitor.visitChildren(this); } @@ -92523,7 +86568,7 @@ export class Opt_opfamilyContext extends antlr.ParserRuleContext { } -export class Opclass_purposeContext extends antlr.ParserRuleContext { +export class OperatorClassPurposeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92539,15 +86584,15 @@ export class Opclass_purposeContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opclass_purpose; + return PostgreSqlParser.RULE_operatorClassPurpose; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpclass_purpose) { - return visitor.visitOpclass_purpose(this); + if (visitor.visitOperatorClassPurpose) { + return visitor.visitOperatorClassPurpose(this); } else { return visitor.visitChildren(this); } @@ -92555,27 +86600,7 @@ export class Opclass_purposeContext extends antlr.ParserRuleContext { } -export class Opt_recheckContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public RECHECK(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.RECHECK, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_recheck; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_recheck) { - return visitor.visitOpt_recheck(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CreateopfamilystmtContext extends antlr.ParserRuleContext { +export class CreateOperatorFamilyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92588,8 +86613,8 @@ export class CreateopfamilystmtContext extends antlr.ParserRuleContext { public FAMILY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FAMILY, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -92598,11 +86623,11 @@ export class CreateopfamilystmtContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createopfamilystmt; + return PostgreSqlParser.RULE_createOperatorFamilyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateopfamilystmt) { - return visitor.visitCreateopfamilystmt(this); + if (visitor.visitCreateOperatorFamilyStatement) { + return visitor.visitCreateOperatorFamilyStatement(this); } else { return visitor.visitChildren(this); } @@ -92610,7 +86635,7 @@ export class CreateopfamilystmtContext extends antlr.ParserRuleContext { } -export class AlteropfamilystmtContext extends antlr.ParserRuleContext { +export class AlterOperatorFamilyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92623,8 +86648,8 @@ export class AlteropfamilystmtContext extends antlr.ParserRuleContext { public FAMILY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FAMILY, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -92635,21 +86660,21 @@ export class AlteropfamilystmtContext extends antlr.ParserRuleContext { public ADD_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADD_P, 0); } - public opclass_item_list(): Opclass_item_listContext | null { - return this.getRuleContext(0, Opclass_item_listContext); + public operatorClassItemList(): OperatorClassItemListContext | null { + return this.getRuleContext(0, OperatorClassItemListContext); } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); } - public opclass_drop_list(): Opclass_drop_listContext | null { - return this.getRuleContext(0, Opclass_drop_listContext); + public operatorClassDropList(): OperatorClassDropListContext | null { + return this.getRuleContext(0, OperatorClassDropListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alteropfamilystmt; + return PostgreSqlParser.RULE_alterOperatorFamilyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlteropfamilystmt) { - return visitor.visitAlteropfamilystmt(this); + if (visitor.visitAlterOperatorFamilyStatement) { + return visitor.visitAlterOperatorFamilyStatement(this); } else { return visitor.visitChildren(this); } @@ -92657,18 +86682,18 @@ export class AlteropfamilystmtContext extends antlr.ParserRuleContext { } -export class Opclass_drop_listContext extends antlr.ParserRuleContext { +export class OperatorClassDropListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opclass_drop(): Opclass_dropContext[]; - public opclass_drop(i: number): Opclass_dropContext | null; - public opclass_drop(i?: number): Opclass_dropContext[] | Opclass_dropContext | null { + public operatorClassDrop(): OperatorClassDropContext[]; + public operatorClassDrop(i: number): OperatorClassDropContext | null; + public operatorClassDrop(i?: number): OperatorClassDropContext[] | OperatorClassDropContext | null { if (i === undefined) { - return this.getRuleContexts(Opclass_dropContext); + return this.getRuleContexts(OperatorClassDropContext); } - return this.getRuleContext(i, Opclass_dropContext); + return this.getRuleContext(i, OperatorClassDropContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -92680,11 +86705,11 @@ export class Opclass_drop_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opclass_drop_list; + return PostgreSqlParser.RULE_operatorClassDropList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpclass_drop_list) { - return visitor.visitOpclass_drop_list(this); + if (visitor.visitOperatorClassDropList) { + return visitor.visitOperatorClassDropList(this); } else { return visitor.visitChildren(this); } @@ -92692,7 +86717,7 @@ export class Opclass_drop_listContext extends antlr.ParserRuleContext { } -export class Opclass_dropContext extends antlr.ParserRuleContext { +export class OperatorClassDropContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92705,8 +86730,8 @@ export class Opclass_dropContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public type_list(): Type_listContext { - return this.getRuleContext(0, Type_listContext)!; + public typeList(): TypeListContext { + return this.getRuleContext(0, TypeListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; @@ -92715,11 +86740,11 @@ export class Opclass_dropContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FUNCTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opclass_drop; + return PostgreSqlParser.RULE_operatorClassDrop; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpclass_drop) { - return visitor.visitOpclass_drop(this); + if (visitor.visitOperatorClassDrop) { + return visitor.visitOperatorClassDrop(this); } else { return visitor.visitChildren(this); } @@ -92727,7 +86752,7 @@ export class Opclass_dropContext extends antlr.ParserRuleContext { } -export class DropopclassstmtContext extends antlr.ParserRuleContext { +export class DropOperatorClassStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92740,8 +86765,8 @@ export class DropopclassstmtContext extends antlr.ParserRuleContext { public CLASS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLASS, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -92749,8 +86774,8 @@ export class DropopclassstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -92759,11 +86784,11 @@ export class DropopclassstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropopclassstmt; + return PostgreSqlParser.RULE_dropOperatorClassStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropopclassstmt) { - return visitor.visitDropopclassstmt(this); + if (visitor.visitDropOperatorClassStatement) { + return visitor.visitDropOperatorClassStatement(this); } else { return visitor.visitChildren(this); } @@ -92771,7 +86796,7 @@ export class DropopclassstmtContext extends antlr.ParserRuleContext { } -export class DropopfamilystmtContext extends antlr.ParserRuleContext { +export class DropOperatorFamilyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92784,8 +86809,8 @@ export class DropopfamilystmtContext extends antlr.ParserRuleContext { public FAMILY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FAMILY, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -92793,8 +86818,8 @@ export class DropopfamilystmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -92803,11 +86828,11 @@ export class DropopfamilystmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropopfamilystmt; + return PostgreSqlParser.RULE_dropOperatorFamilyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropopfamilystmt) { - return visitor.visitDropopfamilystmt(this); + if (visitor.visitDropOperatorFamilyStatement) { + return visitor.visitDropOperatorFamilyStatement(this); } else { return visitor.visitChildren(this); } @@ -92815,7 +86840,7 @@ export class DropopfamilystmtContext extends antlr.ParserRuleContext { } -export class DropownedstmtContext extends antlr.ParserRuleContext { +export class DropOwnedStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92828,18 +86853,18 @@ export class DropownedstmtContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BY, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropownedstmt; + return PostgreSqlParser.RULE_dropOwnedStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropownedstmt) { - return visitor.visitDropownedstmt(this); + if (visitor.visitDropOwnedStatement) { + return visitor.visitDropOwnedStatement(this); } else { return visitor.visitChildren(this); } @@ -92847,7 +86872,7 @@ export class DropownedstmtContext extends antlr.ParserRuleContext { } -export class ReassignownedstmtContext extends antlr.ParserRuleContext { +export class ReassignOwnedStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -92860,21 +86885,21 @@ export class ReassignownedstmtContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BY, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reassignownedstmt; + return PostgreSqlParser.RULE_reassignOwnedStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReassignownedstmt) { - return visitor.visitReassignownedstmt(this); + if (visitor.visitReassignOwnedStatement) { + return visitor.visitReassignOwnedStatement(this); } else { return visitor.visitChildren(this); } @@ -92882,15 +86907,15 @@ export class ReassignownedstmtContext extends antlr.ParserRuleContext { } -export class DropstmtContext extends antlr.ParserRuleContext { +export class DropStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public DROP(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DROP, 0)!; } - public object_type_any_name(): Object_type_any_nameContext | null { - return this.getRuleContext(0, Object_type_any_nameContext); + public objectTypeAnyName(): ObjectTypeAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeAnyNameContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -92898,20 +86923,20 @@ export class DropstmtContext extends antlr.ParserRuleContext { public EXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXISTS, 0); } - public any_name_list(): Any_name_listContext | null { - return this.getRuleContext(0, Any_name_listContext); + public anyNameList(): AnyNameListContext | null { + return this.getRuleContext(0, AnyNameListContext); } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } - public drop_type_name(): Drop_type_nameContext | null { - return this.getRuleContext(0, Drop_type_nameContext); + public dropTypeName(): DropTypeNameContext | null { + return this.getRuleContext(0, DropTypeNameContext); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } - public object_type_name_on_any_name(): Object_type_name_on_any_nameContext | null { - return this.getRuleContext(0, Object_type_name_on_any_nameContext); + public objectTypeNameOnAnyName(): ObjectTypeNameOnAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeNameOnAnyNameContext); } public name(): NameContext | null { return this.getRuleContext(0, NameContext); @@ -92919,14 +86944,14 @@ export class DropstmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ON, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public type_name_list(): Type_name_listContext | null { - return this.getRuleContext(0, Type_name_listContext); + public typeNameList(): TypeNameListContext | null { + return this.getRuleContext(0, TypeNameListContext); } public DOMAIN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOMAIN_P, 0); @@ -92938,11 +86963,11 @@ export class DropstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONCURRENTLY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropstmt; + return PostgreSqlParser.RULE_dropStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropstmt) { - return visitor.visitDropstmt(this); + if (visitor.visitDropStatement) { + return visitor.visitDropStatement(this); } else { return visitor.visitChildren(this); } @@ -92950,7 +86975,7 @@ export class DropstmtContext extends antlr.ParserRuleContext { } -export class Object_type_any_nameContext extends antlr.ParserRuleContext { +export class ObjectTypeAnyNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93000,11 +87025,11 @@ export class Object_type_any_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONFIGURATION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_object_type_any_name; + return PostgreSqlParser.RULE_objectTypeAnyName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitObject_type_any_name) { - return visitor.visitObject_type_any_name(this); + if (visitor.visitObjectTypeAnyName) { + return visitor.visitObjectTypeAnyName(this); } else { return visitor.visitChildren(this); } @@ -93012,12 +87037,12 @@ export class Object_type_any_nameContext extends antlr.ParserRuleContext { } -export class Object_type_nameContext extends antlr.ParserRuleContext { +export class ObjectTypeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public drop_type_name(): Drop_type_nameContext | null { - return this.getRuleContext(0, Drop_type_nameContext); + public dropTypeName(): DropTypeNameContext | null { + return this.getRuleContext(0, DropTypeNameContext); } public DATABASE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DATABASE, 0); @@ -93032,11 +87057,11 @@ export class Object_type_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLESPACE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_object_type_name; + return PostgreSqlParser.RULE_objectTypeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitObject_type_name) { - return visitor.visitObject_type_name(this); + if (visitor.visitObjectTypeName) { + return visitor.visitObjectTypeName(this); } else { return visitor.visitChildren(this); } @@ -93044,7 +87069,7 @@ export class Object_type_nameContext extends antlr.ParserRuleContext { } -export class Drop_type_nameContext extends antlr.ParserRuleContext { +export class DropTypeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93072,8 +87097,8 @@ export class Drop_type_nameContext extends antlr.ParserRuleContext { public WRAPPER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WRAPPER, 0); } - public opt_procedural(): Opt_proceduralContext | null { - return this.getRuleContext(0, Opt_proceduralContext); + public optionalProcedural(): OptionalProceduralContext | null { + return this.getRuleContext(0, OptionalProceduralContext); } public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); @@ -93088,11 +87113,11 @@ export class Drop_type_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SERVER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_drop_type_name; + return PostgreSqlParser.RULE_dropTypeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDrop_type_name) { - return visitor.visitDrop_type_name(this); + if (visitor.visitDropTypeName) { + return visitor.visitDropTypeName(this); } else { return visitor.visitChildren(this); } @@ -93100,7 +87125,7 @@ export class Drop_type_nameContext extends antlr.ParserRuleContext { } -export class Object_type_name_on_any_nameContext extends antlr.ParserRuleContext { +export class ObjectTypeNameOnAnyNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93114,11 +87139,11 @@ export class Object_type_name_on_any_nameContext extends antlr.ParserRuleContext return this.getToken(PostgreSqlParser.TRIGGER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_object_type_name_on_any_name; + return PostgreSqlParser.RULE_objectTypeNameOnAnyName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitObject_type_name_on_any_name) { - return visitor.visitObject_type_name_on_any_name(this); + if (visitor.visitObjectTypeNameOnAnyName) { + return visitor.visitObjectTypeNameOnAnyName(this); } else { return visitor.visitChildren(this); } @@ -93126,18 +87151,18 @@ export class Object_type_name_on_any_nameContext extends antlr.ParserRuleContext } -export class Any_name_listContext extends antlr.ParserRuleContext { +export class AnyNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_name(): Any_nameContext[]; - public any_name(i: number): Any_nameContext | null; - public any_name(i?: number): Any_nameContext[] | Any_nameContext | null { + public anyName(): AnyNameContext[]; + public anyName(i: number): AnyNameContext | null; + public anyName(i?: number): AnyNameContext[] | AnyNameContext | null { if (i === undefined) { - return this.getRuleContexts(Any_nameContext); + return this.getRuleContexts(AnyNameContext); } - return this.getRuleContext(i, Any_nameContext); + return this.getRuleContext(i, AnyNameContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -93149,11 +87174,11 @@ export class Any_name_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_any_name_list; + return PostgreSqlParser.RULE_anyNameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAny_name_list) { - return visitor.visitAny_name_list(this); + if (visitor.visitAnyNameList) { + return visitor.visitAnyNameList(this); } else { return visitor.visitChildren(this); } @@ -93161,22 +87186,22 @@ export class Any_name_listContext extends antlr.ParserRuleContext { } -export class Any_nameContext extends antlr.ParserRuleContext { +export class AnyNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public attrs(): AttrsContext | null { - return this.getRuleContext(0, AttrsContext); + public attributes(): AttributesContext | null { + return this.getRuleContext(0, AttributesContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_any_name; + return PostgreSqlParser.RULE_anyName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAny_name) { - return visitor.visitAny_name(this); + if (visitor.visitAnyName) { + return visitor.visitAnyName(this); } else { return visitor.visitChildren(this); } @@ -93184,7 +87209,7 @@ export class Any_nameContext extends antlr.ParserRuleContext { } -export class AttrsContext extends antlr.ParserRuleContext { +export class AttributesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93197,21 +87222,21 @@ export class AttrsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DOT, i); } } - public attr_name(): Attr_nameContext[]; - public attr_name(i: number): Attr_nameContext | null; - public attr_name(i?: number): Attr_nameContext[] | Attr_nameContext | null { + public attributeName(): AttributeNameContext[]; + public attributeName(i: number): AttributeNameContext | null; + public attributeName(i?: number): AttributeNameContext[] | AttributeNameContext | null { if (i === undefined) { - return this.getRuleContexts(Attr_nameContext); + return this.getRuleContexts(AttributeNameContext); } - return this.getRuleContext(i, Attr_nameContext); + return this.getRuleContext(i, AttributeNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_attrs; + return PostgreSqlParser.RULE_attributes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAttrs) { - return visitor.visitAttrs(this); + if (visitor.visitAttributes) { + return visitor.visitAttributes(this); } else { return visitor.visitChildren(this); } @@ -93219,18 +87244,18 @@ export class AttrsContext extends antlr.ParserRuleContext { } -export class Type_name_listContext extends antlr.ParserRuleContext { +export class TypeNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -93242,11 +87267,11 @@ export class Type_name_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_type_name_list; + return PostgreSqlParser.RULE_typeNameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitType_name_list) { - return visitor.visitType_name_list(this); + if (visitor.visitTypeNameList) { + return visitor.visitTypeNameList(this); } else { return visitor.visitChildren(this); } @@ -93254,31 +87279,31 @@ export class Type_name_listContext extends antlr.ParserRuleContext { } -export class TruncatestmtContext extends antlr.ParserRuleContext { +export class TruncateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TRUNCATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TRUNCATE, 0)!; } - public opt_table(): Opt_tableContext { - return this.getRuleContext(0, Opt_tableContext)!; + public optionalTable(): OptionalTableContext { + return this.getRuleContext(0, OptionalTableContext)!; } - public relation_expr_list(): Relation_expr_listContext { - return this.getRuleContext(0, Relation_expr_listContext)!; + public relationExpressionList(): RelationExpressionListContext { + return this.getRuleContext(0, RelationExpressionListContext)!; } - public opt_restart_seqs(): Opt_restart_seqsContext { - return this.getRuleContext(0, Opt_restart_seqsContext)!; + public optionalRestartSequences(): OptionalRestartSequencesContext { + return this.getRuleContext(0, OptionalRestartSequencesContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_truncatestmt; + return PostgreSqlParser.RULE_truncateStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTruncatestmt) { - return visitor.visitTruncatestmt(this); + if (visitor.visitTruncateStatement) { + return visitor.visitTruncateStatement(this); } else { return visitor.visitChildren(this); } @@ -93286,7 +87311,7 @@ export class TruncatestmtContext extends antlr.ParserRuleContext { } -export class Opt_restart_seqsContext extends antlr.ParserRuleContext { +export class OptionalRestartSequencesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93300,11 +87325,11 @@ export class Opt_restart_seqsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RESTART, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_restart_seqs; + return PostgreSqlParser.RULE_optionalRestartSequences; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_restart_seqs) { - return visitor.visitOpt_restart_seqs(this); + if (visitor.visitOptionalRestartSequences) { + return visitor.visitOptionalRestartSequences(this); } else { return visitor.visitChildren(this); } @@ -93312,7 +87337,7 @@ export class Opt_restart_seqsContext extends antlr.ParserRuleContext { } -export class CommentstmtContext extends antlr.ParserRuleContext { +export class CommentStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93328,23 +87353,23 @@ export class CommentstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ON, i); } } - public object_type_any_name(): Object_type_any_nameContext | null { - return this.getRuleContext(0, Object_type_any_nameContext); + public objectTypeAnyName(): ObjectTypeAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeAnyNameContext); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public IS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.IS, 0)!; } - public comment_text(): Comment_textContext { - return this.getRuleContext(0, Comment_textContext)!; + public commentText(): CommentTextContext { + return this.getRuleContext(0, CommentTextContext)!; } public COLUMN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLUMN, 0); } - public object_type_name(): Object_type_nameContext | null { - return this.getRuleContext(0, Object_type_nameContext); + public objectTypeName(): ObjectTypeNameContext | null { + return this.getRuleContext(0, ObjectTypeNameContext); } public name(): NameContext | null { return this.getRuleContext(0, NameContext); @@ -93352,14 +87377,14 @@ export class CommentstmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public DOMAIN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOMAIN_P, 0); @@ -93367,26 +87392,26 @@ export class CommentstmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); } - public operator_with_argtypes(): Operator_with_argtypesContext | null { - return this.getRuleContext(0, Operator_with_argtypesContext); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext | null { + return this.getRuleContext(0, OperatorWithArgumentTypesContext); } public CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONSTRAINT, 0); } - public object_type_name_on_any_name(): Object_type_name_on_any_nameContext | null { - return this.getRuleContext(0, Object_type_name_on_any_nameContext); + public objectTypeNameOnAnyName(): ObjectTypeNameOnAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeNameOnAnyNameContext); } public PROCEDURE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PROCEDURE, 0); @@ -93418,8 +87443,8 @@ export class CommentstmtContext extends antlr.ParserRuleContext { public OBJECT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OBJECT_P, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public CAST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CAST, 0); @@ -93434,11 +87459,11 @@ export class CommentstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_commentstmt; + return PostgreSqlParser.RULE_commentStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCommentstmt) { - return visitor.visitCommentstmt(this); + if (visitor.visitCommentStatement) { + return visitor.visitCommentStatement(this); } else { return visitor.visitChildren(this); } @@ -93446,7 +87471,7 @@ export class CommentstmtContext extends antlr.ParserRuleContext { } -export class Comment_textContext extends antlr.ParserRuleContext { +export class CommentTextContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93457,11 +87482,11 @@ export class Comment_textContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_comment_text; + return PostgreSqlParser.RULE_commentText; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitComment_text) { - return visitor.visitComment_text(this); + if (visitor.visitCommentText) { + return visitor.visitCommentText(this); } else { return visitor.visitChildren(this); } @@ -93469,7 +87494,7 @@ export class Comment_textContext extends antlr.ParserRuleContext { } -export class SeclabelstmtContext extends antlr.ParserRuleContext { +export class SecurityLabelStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93479,29 +87504,29 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public LABEL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LABEL, 0)!; } - public opt_provider(): Opt_providerContext { - return this.getRuleContext(0, Opt_providerContext)!; + public optionalProvider(): OptionalProviderContext { + return this.getRuleContext(0, OptionalProviderContext)!; } public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public object_type_any_name(): Object_type_any_nameContext | null { - return this.getRuleContext(0, Object_type_any_nameContext); + public objectTypeAnyName(): ObjectTypeAnyNameContext | null { + return this.getRuleContext(0, ObjectTypeAnyNameContext); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public IS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.IS, 0)!; } - public security_label(): Security_labelContext { - return this.getRuleContext(0, Security_labelContext)!; + public securityLabel(): SecurityLabelContext { + return this.getRuleContext(0, SecurityLabelContext)!; } public COLUMN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLUMN, 0); } - public object_type_name(): Object_type_nameContext | null { - return this.getRuleContext(0, Object_type_nameContext); + public objectTypeName(): ObjectTypeNameContext | null { + return this.getRuleContext(0, ObjectTypeNameContext); } public name(): NameContext | null { return this.getRuleContext(0, NameContext); @@ -93509,8 +87534,8 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } public DOMAIN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOMAIN_P, 0); @@ -93518,14 +87543,14 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public LARGE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LARGE_P, 0); @@ -93533,8 +87558,8 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public OBJECT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OBJECT_P, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public PROCEDURE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PROCEDURE, 0); @@ -93543,11 +87568,11 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROUTINE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_seclabelstmt; + return PostgreSqlParser.RULE_securityLabelStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSeclabelstmt) { - return visitor.visitSeclabelstmt(this); + if (visitor.visitSecurityLabelStatement) { + return visitor.visitSecurityLabelStatement(this); } else { return visitor.visitChildren(this); } @@ -93555,22 +87580,22 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { } -export class Opt_providerContext extends antlr.ParserRuleContext { +export class OptionalProviderContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_provider; + return PostgreSqlParser.RULE_optionalProvider; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_provider) { - return visitor.visitOpt_provider(this); + if (visitor.visitOptionalProvider) { + return visitor.visitOptionalProvider(this); } else { return visitor.visitChildren(this); } @@ -93578,7 +87603,7 @@ export class Opt_providerContext extends antlr.ParserRuleContext { } -export class Security_labelContext extends antlr.ParserRuleContext { +export class SecurityLabelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93589,11 +87614,11 @@ export class Security_labelContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_security_label; + return PostgreSqlParser.RULE_securityLabel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSecurity_label) { - return visitor.visitSecurity_label(this); + if (visitor.visitSecurityLabel) { + return visitor.visitSecurityLabel(this); } else { return visitor.visitChildren(this); } @@ -93601,25 +87626,25 @@ export class Security_labelContext extends antlr.ParserRuleContext { } -export class FetchstmtContext extends antlr.ParserRuleContext { +export class FetchStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FETCH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FETCH, 0); } - public fetch_args(): Fetch_argsContext { - return this.getRuleContext(0, Fetch_argsContext)!; + public fetchArguments(): FetchArgumentsContext { + return this.getRuleContext(0, FetchArgumentsContext)!; } public MOVE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MOVE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_fetchstmt; + return PostgreSqlParser.RULE_fetchStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFetchstmt) { - return visitor.visitFetchstmt(this); + if (visitor.visitFetchStatement) { + return visitor.visitFetchStatement(this); } else { return visitor.visitChildren(this); } @@ -93627,21 +87652,21 @@ export class FetchstmtContext extends antlr.ParserRuleContext { } -export class Fetch_argsContext extends antlr.ParserRuleContext { +export class FetchArgumentsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public cursor_name(): Cursor_nameContext { - return this.getRuleContext(0, Cursor_nameContext)!; + public cursorName(): CursorNameContext { + return this.getRuleContext(0, CursorNameContext)!; } - public from_in(): From_inContext | null { - return this.getRuleContext(0, From_inContext); + public fromOrIn(): FromOrInContext | null { + return this.getRuleContext(0, FromOrInContext); } public NEXT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NEXT, 0); } - public opt_from_in(): Opt_from_inContext | null { - return this.getRuleContext(0, Opt_from_inContext); + public optionalFromOrIn(): OptionalFromOrInContext | null { + return this.getRuleContext(0, OptionalFromOrInContext); } public PRIOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PRIOR, 0); @@ -93655,8 +87680,8 @@ export class Fetch_argsContext extends antlr.ParserRuleContext { public ABSOLUTE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ABSOLUTE_P, 0); } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); + public signedIconst(): SignedIconstContext | null { + return this.getRuleContext(0, SignedIconstContext); } public RELATIVE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RELATIVE_P, 0); @@ -93671,11 +87696,11 @@ export class Fetch_argsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.BACKWARD, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_fetch_args; + return PostgreSqlParser.RULE_fetchArguments; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFetch_args) { - return visitor.visitFetch_args(this); + if (visitor.visitFetchArguments) { + return visitor.visitFetchArguments(this); } else { return visitor.visitChildren(this); } @@ -93683,7 +87708,7 @@ export class Fetch_argsContext extends antlr.ParserRuleContext { } -export class From_inContext extends antlr.ParserRuleContext { +export class FromOrInContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93694,11 +87719,11 @@ export class From_inContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.IN_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_from_in; + return PostgreSqlParser.RULE_fromOrIn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFrom_in) { - return visitor.visitFrom_in(this); + if (visitor.visitFromOrIn) { + return visitor.visitFromOrIn(this); } else { return visitor.visitChildren(this); } @@ -93706,19 +87731,19 @@ export class From_inContext extends antlr.ParserRuleContext { } -export class Opt_from_inContext extends antlr.ParserRuleContext { +export class OptionalFromOrInContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public from_in(): From_inContext | null { - return this.getRuleContext(0, From_inContext); + public fromOrIn(): FromOrInContext | null { + return this.getRuleContext(0, FromOrInContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_from_in; + return PostgreSqlParser.RULE_optionalFromOrIn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_from_in) { - return visitor.visitOpt_from_in(this); + if (visitor.visitOptionalFromOrIn) { + return visitor.visitOptionalFromOrIn(this); } else { return visitor.visitChildren(this); } @@ -93726,7 +87751,7 @@ export class Opt_from_inContext extends antlr.ParserRuleContext { } -export class GrantstmtContext extends antlr.ParserRuleContext { +export class GrantStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93739,24 +87764,24 @@ export class GrantstmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public privilege_target(): Privilege_targetContext { - return this.getRuleContext(0, Privilege_targetContext)!; + public privilegeTarget(): PrivilegeTargetContext { + return this.getRuleContext(0, PrivilegeTargetContext)!; } public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public grantee_list(): Grantee_listContext { - return this.getRuleContext(0, Grantee_listContext)!; + public granteeList(): GranteeListContext { + return this.getRuleContext(0, GranteeListContext)!; } - public opt_grant_grant_option(): Opt_grant_grant_optionContext { - return this.getRuleContext(0, Opt_grant_grant_optionContext)!; + public optionalWithGrantOption(): OptionalWithGrantOptionContext { + return this.getRuleContext(0, OptionalWithGrantOptionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_grantstmt; + return PostgreSqlParser.RULE_grantStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGrantstmt) { - return visitor.visitGrantstmt(this); + if (visitor.visitGrantStatement) { + return visitor.visitGrantStatement(this); } else { return visitor.visitChildren(this); } @@ -93764,7 +87789,7 @@ export class GrantstmtContext extends antlr.ParserRuleContext { } -export class RevokestmtContext extends antlr.ParserRuleContext { +export class RevokeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93777,17 +87802,17 @@ export class RevokestmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public privilege_target(): Privilege_targetContext { - return this.getRuleContext(0, Privilege_targetContext)!; + public privilegeTarget(): PrivilegeTargetContext { + return this.getRuleContext(0, PrivilegeTargetContext)!; } public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; } - public grantee_list(): Grantee_listContext { - return this.getRuleContext(0, Grantee_listContext)!; + public granteeList(): GranteeListContext { + return this.getRuleContext(0, GranteeListContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public GRANT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GRANT, 0); @@ -93799,11 +87824,11 @@ export class RevokestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_revokestmt; + return PostgreSqlParser.RULE_revokeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRevokestmt) { - return visitor.visitRevokestmt(this); + if (visitor.visitRevokeStatement) { + return visitor.visitRevokeStatement(this); } else { return visitor.visitChildren(this); } @@ -93815,8 +87840,8 @@ export class PrivilegesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public privilege_list(): Privilege_listContext | null { - return this.getRuleContext(0, Privilege_listContext); + public privilegeList(): PrivilegeListContext | null { + return this.getRuleContext(0, PrivilegeListContext); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); @@ -93827,8 +87852,8 @@ export class PrivilegesContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -93846,7 +87871,7 @@ export class PrivilegesContext extends antlr.ParserRuleContext { } -export class Privilege_listContext extends antlr.ParserRuleContext { +export class PrivilegeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -93869,11 +87894,11 @@ export class Privilege_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_privilege_list; + return PostgreSqlParser.RULE_privilegeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPrivilege_list) { - return visitor.visitPrivilege_list(this); + if (visitor.visitPrivilegeList) { + return visitor.visitPrivilegeList(this); } else { return visitor.visitChildren(this); } @@ -93888,8 +87913,8 @@ export class PrivilegeContext extends antlr.ParserRuleContext { public SELECT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SELECT, 0); } - public opt_column_list(): Opt_column_listContext { - return this.getRuleContext(0, Opt_column_listContext)!; + public columnListWithParentheses(): ColumnListWithParenthesesContext { + return this.getRuleContext(0, ColumnListWithParenthesesContext)!; } public REFERENCES(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REFERENCES, 0); @@ -93897,8 +87922,8 @@ export class PrivilegeContext extends antlr.ParserRuleContext { public CREATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CREATE, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_privilege; @@ -93913,12 +87938,12 @@ export class PrivilegeContext extends antlr.ParserRuleContext { } -export class Privilege_targetContext extends antlr.ParserRuleContext { +export class PrivilegeTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name_list(): Qualified_name_listContext | null { - return this.getRuleContext(0, Qualified_name_listContext); + public qualifiedNameList(): QualifiedNameListContext | null { + return this.getRuleContext(0, QualifiedNameListContext); } public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); @@ -93935,8 +87960,8 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { public WRAPPER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WRAPPER, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public SERVER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SERVER, 0); @@ -93944,8 +87969,8 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes_list(): Function_with_argtypes_listContext | null { - return this.getRuleContext(0, Function_with_argtypes_listContext); + public functionWithArgumentTypesList(): FunctionWithArgumentTypesListContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesListContext); } public PROCEDURE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PROCEDURE, 0); @@ -93959,8 +87984,8 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { public DOMAIN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOMAIN_P, 0); } - public any_name_list(): Any_name_listContext | null { - return this.getRuleContext(0, Any_name_listContext); + public anyNameList(): AnyNameListContext | null { + return this.getRuleContext(0, AnyNameListContext); } public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); @@ -93971,8 +87996,8 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { public OBJECT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OBJECT_P, 0); } - public numericonly_list(): Numericonly_listContext | null { - return this.getRuleContext(0, Numericonly_listContext); + public numericOnlyList(): NumericOnlyListContext | null { + return this.getRuleContext(0, NumericOnlyListContext); } public SCHEMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SCHEMA, 0); @@ -94005,11 +88030,11 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROUTINES, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_privilege_target; + return PostgreSqlParser.RULE_privilegeTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPrivilege_target) { - return visitor.visitPrivilege_target(this); + if (visitor.visitPrivilegeTarget) { + return visitor.visitPrivilegeTarget(this); } else { return visitor.visitChildren(this); } @@ -94017,7 +88042,7 @@ export class Privilege_targetContext extends antlr.ParserRuleContext { } -export class Grantee_listContext extends antlr.ParserRuleContext { +export class GranteeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94040,11 +88065,11 @@ export class Grantee_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_grantee_list; + return PostgreSqlParser.RULE_granteeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGrantee_list) { - return visitor.visitGrantee_list(this); + if (visitor.visitGranteeList) { + return visitor.visitGranteeList(this); } else { return visitor.visitChildren(this); } @@ -94056,8 +88081,8 @@ export class GranteeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } public GROUP_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GROUP_P, 0); @@ -94075,7 +88100,7 @@ export class GranteeContext extends antlr.ParserRuleContext { } -export class Opt_grant_grant_optionContext extends antlr.ParserRuleContext { +export class OptionalWithGrantOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94089,11 +88114,11 @@ export class Opt_grant_grant_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OPTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_grant_grant_option; + return PostgreSqlParser.RULE_optionalWithGrantOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_grant_grant_option) { - return visitor.visitOpt_grant_grant_option(this); + if (visitor.visitOptionalWithGrantOption) { + return visitor.visitOptionalWithGrantOption(this); } else { return visitor.visitChildren(this); } @@ -94101,34 +88126,34 @@ export class Opt_grant_grant_optionContext extends antlr.ParserRuleContext { } -export class GrantrolestmtContext extends antlr.ParserRuleContext { +export class GrantRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public GRANT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.GRANT, 0)!; } - public privilege_list(): Privilege_listContext { - return this.getRuleContext(0, Privilege_listContext)!; + public privilegeList(): PrivilegeListContext { + return this.getRuleContext(0, PrivilegeListContext)!; } public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } - public opt_grant_admin_option(): Opt_grant_admin_optionContext { - return this.getRuleContext(0, Opt_grant_admin_optionContext)!; + public optionalGrantAdminOption(): OptionalGrantAdminOptionContext { + return this.getRuleContext(0, OptionalGrantAdminOptionContext)!; } - public opt_granted_by(): Opt_granted_byContext { - return this.getRuleContext(0, Opt_granted_byContext)!; + public optionalGrantedBy(): OptionalGrantedByContext { + return this.getRuleContext(0, OptionalGrantedByContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_grantrolestmt; + return PostgreSqlParser.RULE_grantRoleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGrantrolestmt) { - return visitor.visitGrantrolestmt(this); + if (visitor.visitGrantRoleStatement) { + return visitor.visitGrantRoleStatement(this); } else { return visitor.visitChildren(this); } @@ -94136,27 +88161,27 @@ export class GrantrolestmtContext extends antlr.ParserRuleContext { } -export class RevokerolestmtContext extends antlr.ParserRuleContext { +export class RevokeRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public REVOKE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.REVOKE, 0)!; } - public privilege_list(): Privilege_listContext { - return this.getRuleContext(0, Privilege_listContext)!; + public privilegeList(): PrivilegeListContext { + return this.getRuleContext(0, PrivilegeListContext)!; } public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; } - public role_list(): Role_listContext { - return this.getRuleContext(0, Role_listContext)!; + public roleList(): RoleListContext { + return this.getRuleContext(0, RoleListContext)!; } - public opt_granted_by(): Opt_granted_byContext { - return this.getRuleContext(0, Opt_granted_byContext)!; + public optionalGrantedBy(): OptionalGrantedByContext { + return this.getRuleContext(0, OptionalGrantedByContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public ADMIN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADMIN, 0); @@ -94168,11 +88193,11 @@ export class RevokerolestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_revokerolestmt; + return PostgreSqlParser.RULE_revokeRoleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRevokerolestmt) { - return visitor.visitRevokerolestmt(this); + if (visitor.visitRevokeRoleStatement) { + return visitor.visitRevokeRoleStatement(this); } else { return visitor.visitChildren(this); } @@ -94180,7 +88205,7 @@ export class RevokerolestmtContext extends antlr.ParserRuleContext { } -export class Opt_grant_admin_optionContext extends antlr.ParserRuleContext { +export class OptionalGrantAdminOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94194,11 +88219,11 @@ export class Opt_grant_admin_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OPTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_grant_admin_option; + return PostgreSqlParser.RULE_optionalGrantAdminOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_grant_admin_option) { - return visitor.visitOpt_grant_admin_option(this); + if (visitor.visitOptionalGrantAdminOption) { + return visitor.visitOptionalGrantAdminOption(this); } else { return visitor.visitChildren(this); } @@ -94206,7 +88231,7 @@ export class Opt_grant_admin_optionContext extends antlr.ParserRuleContext { } -export class Opt_granted_byContext extends antlr.ParserRuleContext { +export class OptionalGrantedByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94216,15 +88241,15 @@ export class Opt_granted_byContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public rolespec(): RolespecContext | null { - return this.getRuleContext(0, RolespecContext); + public roleSpecification(): RoleSpecificationContext | null { + return this.getRuleContext(0, RoleSpecificationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_granted_by; + return PostgreSqlParser.RULE_optionalGrantedBy; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_granted_by) { - return visitor.visitOpt_granted_by(this); + if (visitor.visitOptionalGrantedBy) { + return visitor.visitOptionalGrantedBy(this); } else { return visitor.visitChildren(this); } @@ -94232,7 +88257,7 @@ export class Opt_granted_byContext extends antlr.ParserRuleContext { } -export class AlterdefaultprivilegesstmtContext extends antlr.ParserRuleContext { +export class AlterDefaultPrivilegesStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94245,44 +88270,24 @@ export class AlterdefaultprivilegesstmtContext extends antlr.ParserRuleContext { public PRIVILEGES(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PRIVILEGES, 0)!; } - public defacloptionlist(): DefacloptionlistContext { - return this.getRuleContext(0, DefacloptionlistContext)!; - } - public defaclaction(): DefaclactionContext { - return this.getRuleContext(0, DefaclactionContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterdefaultprivilegesstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterdefaultprivilegesstmt) { - return visitor.visitAlterdefaultprivilegesstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DefacloptionlistContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public defaultPrivelegeAction(): DefaultPrivelegeActionContext { + return this.getRuleContext(0, DefaultPrivelegeActionContext)!; } - public defacloption(): DefacloptionContext[]; - public defacloption(i: number): DefacloptionContext | null; - public defacloption(i?: number): DefacloptionContext[] | DefacloptionContext | null { + public defultPrivilegeOption(): DefultPrivilegeOptionContext[]; + public defultPrivilegeOption(i: number): DefultPrivilegeOptionContext | null; + public defultPrivilegeOption(i?: number): DefultPrivilegeOptionContext[] | DefultPrivilegeOptionContext | null { if (i === undefined) { - return this.getRuleContexts(DefacloptionContext); + return this.getRuleContexts(DefultPrivilegeOptionContext); } - return this.getRuleContext(i, DefacloptionContext); + return this.getRuleContext(i, DefultPrivilegeOptionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_defacloptionlist; + return PostgreSqlParser.RULE_alterDefaultPrivilegesStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefacloptionlist) { - return visitor.visitDefacloptionlist(this); + if (visitor.visitAlterDefaultPrivilegesStatement) { + return visitor.visitAlterDefaultPrivilegesStatement(this); } else { return visitor.visitChildren(this); } @@ -94290,7 +88295,7 @@ export class DefacloptionlistContext extends antlr.ParserRuleContext { } -export class DefacloptionContext extends antlr.ParserRuleContext { +export class DefultPrivilegeOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94300,8 +88305,8 @@ export class DefacloptionContext extends antlr.ParserRuleContext { public SCHEMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SCHEMA, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); @@ -94309,18 +88314,18 @@ export class DefacloptionContext extends antlr.ParserRuleContext { public ROLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROLE, 0); } - public role_list(): Role_listContext | null { - return this.getRuleContext(0, Role_listContext); + public roleList(): RoleListContext | null { + return this.getRuleContext(0, RoleListContext); } public USER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_defacloption; + return PostgreSqlParser.RULE_defultPrivilegeOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefacloption) { - return visitor.visitDefacloption(this); + if (visitor.visitDefultPrivilegeOption) { + return visitor.visitDefultPrivilegeOption(this); } else { return visitor.visitChildren(this); } @@ -94328,7 +88333,7 @@ export class DefacloptionContext extends antlr.ParserRuleContext { } -export class DefaclactionContext extends antlr.ParserRuleContext { +export class DefaultPrivelegeActionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94341,17 +88346,17 @@ export class DefaclactionContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public defacl_privilege_target(): Defacl_privilege_targetContext { - return this.getRuleContext(0, Defacl_privilege_targetContext)!; + public defultPrivilegeTarget(): DefultPrivilegeTargetContext { + return this.getRuleContext(0, DefultPrivilegeTargetContext)!; } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); } - public grantee_list(): Grantee_listContext { - return this.getRuleContext(0, Grantee_listContext)!; + public granteeList(): GranteeListContext { + return this.getRuleContext(0, GranteeListContext)!; } - public opt_grant_grant_option(): Opt_grant_grant_optionContext | null { - return this.getRuleContext(0, Opt_grant_grant_optionContext); + public optionalWithGrantOption(): OptionalWithGrantOptionContext | null { + return this.getRuleContext(0, OptionalWithGrantOptionContext); } public REVOKE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REVOKE, 0); @@ -94359,8 +88364,8 @@ export class DefaclactionContext extends antlr.ParserRuleContext { public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public opt_drop_behavior(): Opt_drop_behaviorContext | null { - return this.getRuleContext(0, Opt_drop_behaviorContext); + public optionalDropBehavior(): OptionalDropBehaviorContext | null { + return this.getRuleContext(0, OptionalDropBehaviorContext); } public OPTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPTION, 0); @@ -94369,11 +88374,11 @@ export class DefaclactionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_defaclaction; + return PostgreSqlParser.RULE_defaultPrivelegeAction; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefaclaction) { - return visitor.visitDefaclaction(this); + if (visitor.visitDefaultPrivelegeAction) { + return visitor.visitDefaultPrivelegeAction(this); } else { return visitor.visitChildren(this); } @@ -94381,7 +88386,7 @@ export class DefaclactionContext extends antlr.ParserRuleContext { } -export class Defacl_privilege_targetContext extends antlr.ParserRuleContext { +export class DefultPrivilegeTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94404,11 +88409,11 @@ export class Defacl_privilege_targetContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SCHEMAS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_defacl_privilege_target; + return PostgreSqlParser.RULE_defultPrivilegeTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDefacl_privilege_target) { - return visitor.visitDefacl_privilege_target(this); + if (visitor.visitDefultPrivilegeTarget) { + return visitor.visitDefultPrivilegeTarget(this); } else { return visitor.visitChildren(this); } @@ -94416,54 +88421,54 @@ export class Defacl_privilege_targetContext extends antlr.ParserRuleContext { } -export class IndexstmtContext extends antlr.ParserRuleContext { +export class IndexStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_unique(): Opt_uniqueContext { - return this.getRuleContext(0, Opt_uniqueContext)!; - } public INDEX(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INDEX, 0)!; } - public opt_concurrently(): Opt_concurrentlyContext { - return this.getRuleContext(0, Opt_concurrentlyContext)!; - } - public opt_index_name(): Opt_index_nameContext | null { - return this.getRuleContext(0, Opt_index_nameContext); + public optionalConcurrently(): OptionalConcurrentlyContext { + return this.getRuleContext(0, OptionalConcurrentlyContext)!; } public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public relation_expr(): Relation_exprContext { - return this.getRuleContext(0, Relation_exprContext)!; + public relationExpression(): RelationExpressionContext { + return this.getRuleContext(0, RelationExpressionContext)!; } - public access_method_clause(): Access_method_clauseContext { - return this.getRuleContext(0, Access_method_clauseContext)!; + public optionalAccessMethodClause(): OptionalAccessMethodClauseContext { + return this.getRuleContext(0, OptionalAccessMethodClauseContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public index_params(): Index_paramsContext { - return this.getRuleContext(0, Index_paramsContext)!; + public indexParameters(): IndexParametersContext { + return this.getRuleContext(0, IndexParametersContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public opt_include(): Opt_includeContext { - return this.getRuleContext(0, Opt_includeContext)!; + public optionalInclude(): OptionalIncludeContext { + return this.getRuleContext(0, OptionalIncludeContext)!; } - public opt_reloptions(): Opt_reloptionsContext { - return this.getRuleContext(0, Opt_reloptionsContext)!; + public optionalRelOptions(): OptionalRelOptionsContext { + return this.getRuleContext(0, OptionalRelOptionsContext)!; } - public opttablespace(): OpttablespaceContext { - return this.getRuleContext(0, OpttablespaceContext)!; + public optionalTablespace(): OptionalTablespaceContext { + return this.getRuleContext(0, OptionalTablespaceContext)!; } - public where_clause(): Where_clauseContext { - return this.getRuleContext(0, Where_clauseContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; + } + public UNIQUE(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.UNIQUE, 0); + } + public name(): NameContext | null { + return this.getRuleContext(0, NameContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -94474,15 +88479,12 @@ export class IndexstmtContext extends antlr.ParserRuleContext { public EXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXISTS, 0); } - public name(): NameContext | null { - return this.getRuleContext(0, NameContext); - } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_indexstmt; + return PostgreSqlParser.RULE_indexStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndexstmt) { - return visitor.visitIndexstmt(this); + if (visitor.visitIndexStatement) { + return visitor.visitIndexStatement(this); } else { return visitor.visitChildren(this); } @@ -94490,27 +88492,7 @@ export class IndexstmtContext extends antlr.ParserRuleContext { } -export class Opt_uniqueContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public UNIQUE(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.UNIQUE, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_unique; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_unique) { - return visitor.visitOpt_unique(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_concurrentlyContext extends antlr.ParserRuleContext { +export class OptionalConcurrentlyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94518,11 +88500,11 @@ export class Opt_concurrentlyContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONCURRENTLY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_concurrently; + return PostgreSqlParser.RULE_optionalConcurrently; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_concurrently) { - return visitor.visitOpt_concurrently(this); + if (visitor.visitOptionalConcurrently) { + return visitor.visitOptionalConcurrently(this); } else { return visitor.visitChildren(this); } @@ -94530,27 +88512,7 @@ export class Opt_concurrentlyContext extends antlr.ParserRuleContext { } -export class Opt_index_nameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public name(): NameContext | null { - return this.getRuleContext(0, NameContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_index_name; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_index_name) { - return visitor.visitOpt_index_name(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Access_method_clauseContext extends antlr.ParserRuleContext { +export class OptionalAccessMethodClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94561,11 +88523,11 @@ export class Access_method_clauseContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_access_method_clause; + return PostgreSqlParser.RULE_optionalAccessMethodClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAccess_method_clause) { - return visitor.visitAccess_method_clause(this); + if (visitor.visitOptionalAccessMethodClause) { + return visitor.visitOptionalAccessMethodClause(this); } else { return visitor.visitChildren(this); } @@ -94573,18 +88535,18 @@ export class Access_method_clauseContext extends antlr.ParserRuleContext { } -export class Index_paramsContext extends antlr.ParserRuleContext { +export class IndexParametersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public index_elem(): Index_elemContext[]; - public index_elem(i: number): Index_elemContext | null; - public index_elem(i?: number): Index_elemContext[] | Index_elemContext | null { + public indexElement(): IndexElementContext[]; + public indexElement(i: number): IndexElementContext | null; + public indexElement(i?: number): IndexElementContext[] | IndexElementContext | null { if (i === undefined) { - return this.getRuleContexts(Index_elemContext); + return this.getRuleContexts(IndexElementContext); } - return this.getRuleContext(i, Index_elemContext); + return this.getRuleContext(i, IndexElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -94596,11 +88558,11 @@ export class Index_paramsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_index_params; + return PostgreSqlParser.RULE_indexParameters; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndex_params) { - return visitor.visitIndex_params(this); + if (visitor.visitIndexParameters) { + return visitor.visitIndexParameters(this); } else { return visitor.visitChildren(this); } @@ -94608,34 +88570,34 @@ export class Index_paramsContext extends antlr.ParserRuleContext { } -export class Index_elem_optionsContext extends antlr.ParserRuleContext { +export class IndexElemOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_collate(): Opt_collateContext { - return this.getRuleContext(0, Opt_collateContext)!; + public optionalCollate(): OptionalCollateContext { + return this.getRuleContext(0, OptionalCollateContext)!; } - public opt_class(): Opt_classContext | null { - return this.getRuleContext(0, Opt_classContext); + public optionalClass(): OptionalClassContext | null { + return this.getRuleContext(0, OptionalClassContext); } - public opt_asc_desc(): Opt_asc_descContext { - return this.getRuleContext(0, Opt_asc_descContext)!; + public optionalAscOrDesc(): OptionalAscOrDescContext { + return this.getRuleContext(0, OptionalAscOrDescContext)!; } - public opt_nulls_order(): Opt_nulls_orderContext { - return this.getRuleContext(0, Opt_nulls_orderContext)!; + public optionalNullsOrder(): OptionalNullsOrderContext { + return this.getRuleContext(0, OptionalNullsOrderContext)!; } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } - public reloptions(): ReloptionsContext | null { - return this.getRuleContext(0, ReloptionsContext); + public relOptions(): RelOptionsContext | null { + return this.getRuleContext(0, RelOptionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_index_elem_options; + return PostgreSqlParser.RULE_indexElemOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndex_elem_options) { - return visitor.visitIndex_elem_options(this); + if (visitor.visitIndexElemOptions) { + return visitor.visitIndexElemOptions(this); } else { return visitor.visitChildren(this); } @@ -94643,34 +88605,34 @@ export class Index_elem_optionsContext extends antlr.ParserRuleContext { } -export class Index_elemContext extends antlr.ParserRuleContext { +export class IndexElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public index_elem_options(): Index_elem_optionsContext { - return this.getRuleContext(0, Index_elem_optionsContext)!; + public indexElemOptions(): IndexElemOptionsContext { + return this.getRuleContext(0, IndexElemOptionsContext)!; } - public func_expr_windowless(): Func_expr_windowlessContext | null { - return this.getRuleContext(0, Func_expr_windowlessContext); + public functionExpressionWindowless(): FunctionExpressionWindowlessContext | null { + return this.getRuleContext(0, FunctionExpressionWindowlessContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_index_elem; + return PostgreSqlParser.RULE_indexElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndex_elem) { - return visitor.visitIndex_elem(this); + if (visitor.visitIndexElement) { + return visitor.visitIndexElement(this); } else { return visitor.visitChildren(this); } @@ -94678,7 +88640,7 @@ export class Index_elemContext extends antlr.ParserRuleContext { } -export class Opt_includeContext extends antlr.ParserRuleContext { +export class OptionalIncludeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94688,37 +88650,17 @@ export class Opt_includeContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public index_including_params(): Index_including_paramsContext | null { - return this.getRuleContext(0, Index_including_paramsContext); - } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_include; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_include) { - return visitor.visitOpt_include(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Index_including_paramsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public index_elem(): Index_elemContext[]; - public index_elem(i: number): Index_elemContext | null; - public index_elem(i?: number): Index_elemContext[] | Index_elemContext | null { + public indexElement(): IndexElementContext[]; + public indexElement(i: number): IndexElementContext | null; + public indexElement(i?: number): IndexElementContext[] | IndexElementContext | null { if (i === undefined) { - return this.getRuleContexts(Index_elemContext); + return this.getRuleContexts(IndexElementContext); } - return this.getRuleContext(i, Index_elemContext); + return this.getRuleContext(i, IndexElementContext); + } + public CLOSE_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -94730,11 +88672,11 @@ export class Index_including_paramsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_index_including_params; + return PostgreSqlParser.RULE_optionalInclude; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndex_including_params) { - return visitor.visitIndex_including_params(this); + if (visitor.visitOptionalInclude) { + return visitor.visitOptionalInclude(this); } else { return visitor.visitChildren(this); } @@ -94742,22 +88684,22 @@ export class Index_including_paramsContext extends antlr.ParserRuleContext { } -export class Opt_collateContext extends antlr.ParserRuleContext { +export class OptionalCollateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATE, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_collate; + return PostgreSqlParser.RULE_optionalCollate; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_collate) { - return visitor.visitOpt_collate(this); + if (visitor.visitOptionalCollate) { + return visitor.visitOptionalCollate(this); } else { return visitor.visitChildren(this); } @@ -94765,19 +88707,19 @@ export class Opt_collateContext extends antlr.ParserRuleContext { } -export class Opt_classContext extends antlr.ParserRuleContext { +export class OptionalClassContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_class; + return PostgreSqlParser.RULE_optionalClass; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_class) { - return visitor.visitOpt_class(this); + if (visitor.visitOptionalClass) { + return visitor.visitOptionalClass(this); } else { return visitor.visitChildren(this); } @@ -94785,7 +88727,7 @@ export class Opt_classContext extends antlr.ParserRuleContext { } -export class Opt_asc_descContext extends antlr.ParserRuleContext { +export class OptionalAscOrDescContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94796,11 +88738,11 @@ export class Opt_asc_descContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DESC, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_asc_desc; + return PostgreSqlParser.RULE_optionalAscOrDesc; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_asc_desc) { - return visitor.visitOpt_asc_desc(this); + if (visitor.visitOptionalAscOrDesc) { + return visitor.visitOptionalAscOrDesc(this); } else { return visitor.visitChildren(this); } @@ -94808,7 +88750,7 @@ export class Opt_asc_descContext extends antlr.ParserRuleContext { } -export class Opt_nulls_orderContext extends antlr.ParserRuleContext { +export class OptionalNullsOrderContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94822,11 +88764,11 @@ export class Opt_nulls_orderContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.LAST_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_nulls_order; + return PostgreSqlParser.RULE_optionalNullsOrder; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_nulls_order) { - return visitor.visitOpt_nulls_order(this); + if (visitor.visitOptionalNullsOrder) { + return visitor.visitOptionalNullsOrder(this); } else { return visitor.visitChildren(this); } @@ -94834,24 +88776,39 @@ export class Opt_nulls_orderContext extends antlr.ParserRuleContext { } -export class CreatefunctionstmtContext extends antlr.ParserRuleContext { +export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_or_replace(): Opt_or_replaceContext { - return this.getRuleContext(0, Opt_or_replaceContext)!; + public optionalOrReplace(): OptionalOrReplaceContext { + return this.getRuleContext(0, OptionalOrReplaceContext)!; } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } - public func_args_with_defaults(): Func_args_with_defaultsContext { - return this.getRuleContext(0, Func_args_with_defaultsContext)!; + public OPEN_PAREN(): antlr.TerminalNode[]; + public OPEN_PAREN(i: number): antlr.TerminalNode | null; + public OPEN_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.OPEN_PAREN); + } else { + return this.getToken(PostgreSqlParser.OPEN_PAREN, i); + } + } + public CLOSE_PAREN(): antlr.TerminalNode[]; + public CLOSE_PAREN(i: number): antlr.TerminalNode | null; + public CLOSE_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.CLOSE_PAREN); + } else { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, i); + } } - public createfunc_opt_list(): Createfunc_opt_listContext { - return this.getRuleContext(0, Createfunc_opt_listContext)!; + public createFunctionOptionList(): CreateFunctionOptionListContext { + return this.getRuleContext(0, CreateFunctionOptionListContext)!; } public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); @@ -94859,30 +88816,27 @@ export class CreatefunctionstmtContext extends antlr.ParserRuleContext { public PROCEDURE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PROCEDURE, 0); } + public functionArgumentsWithDefaultsList(): FunctionArgumentsWithDefaultsListContext | null { + return this.getRuleContext(0, FunctionArgumentsWithDefaultsListContext); + } public RETURNS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RETURNS, 0); } - public func_return(): Func_returnContext | null { - return this.getRuleContext(0, Func_returnContext); + public functionReturn(): FunctionReturnContext | null { + return this.getRuleContext(0, FunctionReturnContext); } public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public OPEN_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); - } - public table_func_column_list(): Table_func_column_listContext | null { - return this.getRuleContext(0, Table_func_column_listContext); - } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); + public tableFunctionColumnList(): TableFunctionColumnListContext | null { + return this.getRuleContext(0, TableFunctionColumnListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createfunctionstmt; + return PostgreSqlParser.RULE_createFunctionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatefunctionstmt) { - return visitor.visitCreatefunctionstmt(this); + if (visitor.visitCreateFunctionStatement) { + return visitor.visitCreateFunctionStatement(this); } else { return visitor.visitChildren(this); } @@ -94890,7 +88844,7 @@ export class CreatefunctionstmtContext extends antlr.ParserRuleContext { } -export class Opt_or_replaceContext extends antlr.ParserRuleContext { +export class OptionalOrReplaceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -94901,37 +88855,11 @@ export class Opt_or_replaceContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.REPLACE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_or_replace; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_or_replace) { - return visitor.visitOpt_or_replace(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Func_argsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public func_args_list(): Func_args_listContext | null { - return this.getRuleContext(0, Func_args_listContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_args; + return PostgreSqlParser.RULE_optionalOrReplace; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_args) { - return visitor.visitFunc_args(this); + if (visitor.visitOptionalOrReplace) { + return visitor.visitOptionalOrReplace(this); } else { return visitor.visitChildren(this); } @@ -94939,18 +88867,18 @@ export class Func_argsContext extends antlr.ParserRuleContext { } -export class Func_args_listContext extends antlr.ParserRuleContext { +export class FunctionArgumentsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_arg(): Func_argContext[]; - public func_arg(i: number): Func_argContext | null; - public func_arg(i?: number): Func_argContext[] | Func_argContext | null { + public functionArgument(): FunctionArgumentContext[]; + public functionArgument(i: number): FunctionArgumentContext | null; + public functionArgument(i?: number): FunctionArgumentContext[] | FunctionArgumentContext | null { if (i === undefined) { - return this.getRuleContexts(Func_argContext); + return this.getRuleContexts(FunctionArgumentContext); } - return this.getRuleContext(i, Func_argContext); + return this.getRuleContext(i, FunctionArgumentContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -94962,11 +88890,11 @@ export class Func_args_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_args_list; + return PostgreSqlParser.RULE_functionArgumentsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_args_list) { - return visitor.visitFunc_args_list(this); + if (visitor.visitFunctionArgumentsList) { + return visitor.visitFunctionArgumentsList(this); } else { return visitor.visitChildren(this); } @@ -94974,18 +88902,18 @@ export class Func_args_listContext extends antlr.ParserRuleContext { } -export class Function_with_argtypes_listContext extends antlr.ParserRuleContext { +export class FunctionWithArgumentTypesListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public function_with_argtypes(): Function_with_argtypesContext[]; - public function_with_argtypes(i: number): Function_with_argtypesContext | null; - public function_with_argtypes(i?: number): Function_with_argtypesContext[] | Function_with_argtypesContext | null { + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext[]; + public functionWithArgumentTypes(i: number): FunctionWithArgumentTypesContext | null; + public functionWithArgumentTypes(i?: number): FunctionWithArgumentTypesContext[] | FunctionWithArgumentTypesContext | null { if (i === undefined) { - return this.getRuleContexts(Function_with_argtypesContext); + return this.getRuleContexts(FunctionWithArgumentTypesContext); } - return this.getRuleContext(i, Function_with_argtypesContext); + return this.getRuleContext(i, FunctionWithArgumentTypesContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -94997,11 +88925,11 @@ export class Function_with_argtypes_listContext extends antlr.ParserRuleContext } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_function_with_argtypes_list; + return PostgreSqlParser.RULE_functionWithArgumentTypesList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunction_with_argtypes_list) { - return visitor.visitFunction_with_argtypes_list(this); + if (visitor.visitFunctionWithArgumentTypesList) { + return visitor.visitFunctionWithArgumentTypesList(this); } else { return visitor.visitChildren(this); } @@ -95009,57 +88937,37 @@ export class Function_with_argtypes_listContext extends antlr.ParserRuleContext } -export class Function_with_argtypesContext extends antlr.ParserRuleContext { +export class FunctionWithArgumentTypesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_name(): Func_nameContext | null { - return this.getRuleContext(0, Func_nameContext); - } - public func_args(): Func_argsContext | null { - return this.getRuleContext(0, Func_argsContext); - } - public type_func_name_keyword(): Type_func_name_keywordContext | null { - return this.getRuleContext(0, Type_func_name_keywordContext); + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); - } - public indirection(): IndirectionContext | null { - return this.getRuleContext(0, IndirectionContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_function_with_argtypes; + public OPEN_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunction_with_argtypes) { - return visitor.visitFunction_with_argtypes(this); - } else { - return visitor.visitChildren(this); - } + public CLOSE_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } -} - - -export class Func_args_with_defaultsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public functionArgumentsList(): FunctionArgumentsListContext | null { + return this.getRuleContext(0, FunctionArgumentsListContext); } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; + public typeFunctionNameKeyword(): TypeFunctionNameKeywordContext | null { + return this.getRuleContext(0, TypeFunctionNameKeywordContext); } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public func_args_with_defaults_list(): Func_args_with_defaults_listContext | null { - return this.getRuleContext(0, Func_args_with_defaults_listContext); + public indirection(): IndirectionContext | null { + return this.getRuleContext(0, IndirectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_args_with_defaults; + return PostgreSqlParser.RULE_functionWithArgumentTypes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_args_with_defaults) { - return visitor.visitFunc_args_with_defaults(this); + if (visitor.visitFunctionWithArgumentTypes) { + return visitor.visitFunctionWithArgumentTypes(this); } else { return visitor.visitChildren(this); } @@ -95067,18 +88975,18 @@ export class Func_args_with_defaultsContext extends antlr.ParserRuleContext { } -export class Func_args_with_defaults_listContext extends antlr.ParserRuleContext { +export class FunctionArgumentsWithDefaultsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_arg_with_default(): Func_arg_with_defaultContext[]; - public func_arg_with_default(i: number): Func_arg_with_defaultContext | null; - public func_arg_with_default(i?: number): Func_arg_with_defaultContext[] | Func_arg_with_defaultContext | null { + public functionArgumentWithDefault(): FunctionArgumentWithDefaultContext[]; + public functionArgumentWithDefault(i: number): FunctionArgumentWithDefaultContext | null; + public functionArgumentWithDefault(i?: number): FunctionArgumentWithDefaultContext[] | FunctionArgumentWithDefaultContext | null { if (i === undefined) { - return this.getRuleContexts(Func_arg_with_defaultContext); + return this.getRuleContexts(FunctionArgumentWithDefaultContext); } - return this.getRuleContext(i, Func_arg_with_defaultContext); + return this.getRuleContext(i, FunctionArgumentWithDefaultContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -95090,11 +88998,11 @@ export class Func_args_with_defaults_listContext extends antlr.ParserRuleContext } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_args_with_defaults_list; + return PostgreSqlParser.RULE_functionArgumentsWithDefaultsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_args_with_defaults_list) { - return visitor.visitFunc_args_with_defaults_list(this); + if (visitor.visitFunctionArgumentsWithDefaultsList) { + return visitor.visitFunctionArgumentsWithDefaultsList(this); } else { return visitor.visitChildren(this); } @@ -95102,25 +89010,54 @@ export class Func_args_with_defaults_listContext extends antlr.ParserRuleContext } -export class Func_argContext extends antlr.ParserRuleContext { +export class FunctionArgumentWithDefaultContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public arg_class(): Arg_classContext | null { - return this.getRuleContext(0, Arg_classContext); + public functionArgument(): FunctionArgumentContext { + return this.getRuleContext(0, FunctionArgumentContext)!; } - public func_type(): Func_typeContext { - return this.getRuleContext(0, Func_typeContext)!; + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } - public param_name(): Param_nameContext | null { - return this.getRuleContext(0, Param_nameContext); + public DEFAULT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.DEFAULT, 0); + } + public EQUAL(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.EQUAL, 0); + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_functionArgumentWithDefault; + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitFunctionArgumentWithDefault) { + return visitor.visitFunctionArgumentWithDefault(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionArgumentContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public argumentClass(): ArgumentClassContext | null { + return this.getRuleContext(0, ArgumentClassContext); + } + public functionType(): FunctionTypeContext { + return this.getRuleContext(0, FunctionTypeContext)!; + } + public parameterName(): ParameterNameContext | null { + return this.getRuleContext(0, ParameterNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_arg; + return PostgreSqlParser.RULE_functionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_arg) { - return visitor.visitFunc_arg(this); + if (visitor.visitFunctionArgument) { + return visitor.visitFunctionArgument(this); } else { return visitor.visitChildren(this); } @@ -95128,7 +89065,7 @@ export class Func_argContext extends antlr.ParserRuleContext { } -export class Arg_classContext extends antlr.ParserRuleContext { +export class ArgumentClassContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95145,11 +89082,11 @@ export class Arg_classContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VARIADIC, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_arg_class; + return PostgreSqlParser.RULE_argumentClass; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitArg_class) { - return visitor.visitArg_class(this); + if (visitor.visitArgumentClass) { + return visitor.visitArgumentClass(this); } else { return visitor.visitChildren(this); } @@ -95157,15 +89094,15 @@ export class Arg_classContext extends antlr.ParserRuleContext { } -export class Param_nameContext extends antlr.ParserRuleContext { +export class ParameterNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public type_function_name(): Type_function_nameContext | null { - return this.getRuleContext(0, Type_function_nameContext); + public typeFunctionName(): TypeFunctionNameContext | null { + return this.getRuleContext(0, TypeFunctionNameContext); } - public builtin_function_name(): Builtin_function_nameContext | null { - return this.getRuleContext(0, Builtin_function_nameContext); + public builtinFunctionName(): BuiltinFunctionNameContext | null { + return this.getRuleContext(0, BuiltinFunctionNameContext); } public LEFT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LEFT, 0); @@ -95174,11 +89111,11 @@ export class Param_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RIGHT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_param_name; + return PostgreSqlParser.RULE_parameterName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitParam_name) { - return visitor.visitParam_name(this); + if (visitor.visitParameterName) { + return visitor.visitParameterName(this); } else { return visitor.visitChildren(this); } @@ -95186,19 +89123,19 @@ export class Param_nameContext extends antlr.ParserRuleContext { } -export class Func_returnContext extends antlr.ParserRuleContext { +export class FunctionReturnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_type(): Func_typeContext { - return this.getRuleContext(0, Func_typeContext)!; + public functionType(): FunctionTypeContext { + return this.getRuleContext(0, FunctionTypeContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_return; + return PostgreSqlParser.RULE_functionReturn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_return) { - return visitor.visitFunc_return(this); + if (visitor.visitFunctionReturn) { + return visitor.visitFunctionReturn(this); } else { return visitor.visitChildren(this); } @@ -95206,15 +89143,15 @@ export class Func_returnContext extends antlr.ParserRuleContext { } -export class Func_typeContext extends antlr.ParserRuleContext { +export class FunctionTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } - public attrs(): AttrsContext | null { - return this.getRuleContext(0, AttrsContext); + public attributes(): AttributesContext | null { + return this.getRuleContext(0, AttributesContext); } public PERCENT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PERCENT, 0); @@ -95222,11 +89159,11 @@ export class Func_typeContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPE_P, 0); } - public builtin_function_name(): Builtin_function_nameContext | null { - return this.getRuleContext(0, Builtin_function_nameContext); + public builtinFunctionName(): BuiltinFunctionNameContext | null { + return this.getRuleContext(0, BuiltinFunctionNameContext); } - public type_function_name(): Type_function_nameContext | null { - return this.getRuleContext(0, Type_function_nameContext); + public typeFunctionName(): TypeFunctionNameContext | null { + return this.getRuleContext(0, TypeFunctionNameContext); } public LEFT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LEFT, 0); @@ -95238,60 +89175,11 @@ export class Func_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SETOF, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_type; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_type) { - return visitor.visitFunc_type(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Func_arg_with_defaultContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public func_arg(): Func_argContext { - return this.getRuleContext(0, Func_argContext)!; - } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); - } - public DEFAULT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.DEFAULT, 0); - } - public EQUAL(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.EQUAL, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_arg_with_default; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_arg_with_default) { - return visitor.visitFunc_arg_with_default(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Aggr_argContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public func_arg(): Func_argContext { - return this.getRuleContext(0, Func_argContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aggr_arg; + return PostgreSqlParser.RULE_functionType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAggr_arg) { - return visitor.visitAggr_arg(this); + if (visitor.visitFunctionType) { + return visitor.visitFunctionType(this); } else { return visitor.visitChildren(this); } @@ -95299,7 +89187,7 @@ export class Aggr_argContext extends antlr.ParserRuleContext { } -export class Aggr_argsContext extends antlr.ParserRuleContext { +export class AggregateArgumentsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95312,14 +89200,14 @@ export class Aggr_argsContext extends antlr.ParserRuleContext { public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); } - public aggr_args_list(): Aggr_args_listContext[]; - public aggr_args_list(i: number): Aggr_args_listContext | null; - public aggr_args_list(i?: number): Aggr_args_listContext[] | Aggr_args_listContext | null { + public aggregateArgumentsList(): AggregateArgumentsListContext[]; + public aggregateArgumentsList(i: number): AggregateArgumentsListContext | null; + public aggregateArgumentsList(i?: number): AggregateArgumentsListContext[] | AggregateArgumentsListContext | null { if (i === undefined) { - return this.getRuleContexts(Aggr_args_listContext); + return this.getRuleContexts(AggregateArgumentsListContext); } - return this.getRuleContext(i, Aggr_args_listContext); + return this.getRuleContext(i, AggregateArgumentsListContext); } public ORDER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ORDER, 0); @@ -95328,11 +89216,11 @@ export class Aggr_argsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.BY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aggr_args; + return PostgreSqlParser.RULE_aggregateArguments; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAggr_args) { - return visitor.visitAggr_args(this); + if (visitor.visitAggregateArguments) { + return visitor.visitAggregateArguments(this); } else { return visitor.visitChildren(this); } @@ -95340,18 +89228,18 @@ export class Aggr_argsContext extends antlr.ParserRuleContext { } -export class Aggr_args_listContext extends antlr.ParserRuleContext { +export class AggregateArgumentsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public aggr_arg(): Aggr_argContext[]; - public aggr_arg(i: number): Aggr_argContext | null; - public aggr_arg(i?: number): Aggr_argContext[] | Aggr_argContext | null { + public functionArgument(): FunctionArgumentContext[]; + public functionArgument(i: number): FunctionArgumentContext | null; + public functionArgument(i?: number): FunctionArgumentContext[] | FunctionArgumentContext | null { if (i === undefined) { - return this.getRuleContexts(Aggr_argContext); + return this.getRuleContexts(FunctionArgumentContext); } - return this.getRuleContext(i, Aggr_argContext); + return this.getRuleContext(i, FunctionArgumentContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -95363,11 +89251,11 @@ export class Aggr_args_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aggr_args_list; + return PostgreSqlParser.RULE_aggregateArgumentsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAggr_args_list) { - return visitor.visitAggr_args_list(this); + if (visitor.visitAggregateArgumentsList) { + return visitor.visitAggregateArgumentsList(this); } else { return visitor.visitChildren(this); } @@ -95375,22 +89263,22 @@ export class Aggr_args_listContext extends antlr.ParserRuleContext { } -export class Aggregate_with_argtypesContext extends antlr.ParserRuleContext { +export class AggregateWithArgumentTypesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } - public aggr_args(): Aggr_argsContext { - return this.getRuleContext(0, Aggr_argsContext)!; + public aggregateArguments(): AggregateArgumentsContext { + return this.getRuleContext(0, AggregateArgumentsContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aggregate_with_argtypes; + return PostgreSqlParser.RULE_aggregateWithArgumentTypes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAggregate_with_argtypes) { - return visitor.visitAggregate_with_argtypes(this); + if (visitor.visitAggregateWithArgumentTypes) { + return visitor.visitAggregateWithArgumentTypes(this); } else { return visitor.visitChildren(this); } @@ -95398,18 +89286,18 @@ export class Aggregate_with_argtypesContext extends antlr.ParserRuleContext { } -export class Aggregate_with_argtypes_listContext extends antlr.ParserRuleContext { +export class AggregateWithArgumentTypesListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext[]; - public aggregate_with_argtypes(i: number): Aggregate_with_argtypesContext | null; - public aggregate_with_argtypes(i?: number): Aggregate_with_argtypesContext[] | Aggregate_with_argtypesContext | null { + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext[]; + public aggregateWithArgumentTypes(i: number): AggregateWithArgumentTypesContext | null; + public aggregateWithArgumentTypes(i?: number): AggregateWithArgumentTypesContext[] | AggregateWithArgumentTypesContext | null { if (i === undefined) { - return this.getRuleContexts(Aggregate_with_argtypesContext); + return this.getRuleContexts(AggregateWithArgumentTypesContext); } - return this.getRuleContext(i, Aggregate_with_argtypesContext); + return this.getRuleContext(i, AggregateWithArgumentTypesContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -95421,11 +89309,11 @@ export class Aggregate_with_argtypes_listContext extends antlr.ParserRuleContext } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aggregate_with_argtypes_list; + return PostgreSqlParser.RULE_aggregateWithArgumentTypesList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAggregate_with_argtypes_list) { - return visitor.visitAggregate_with_argtypes_list(this); + if (visitor.visitAggregateWithArgumentTypesList) { + return visitor.visitAggregateWithArgumentTypesList(this); } else { return visitor.visitChildren(this); } @@ -95433,25 +89321,25 @@ export class Aggregate_with_argtypes_listContext extends antlr.ParserRuleContext } -export class Createfunc_opt_listContext extends antlr.ParserRuleContext { +export class CreateFunctionOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public createfunc_opt_item(): Createfunc_opt_itemContext[]; - public createfunc_opt_item(i: number): Createfunc_opt_itemContext | null; - public createfunc_opt_item(i?: number): Createfunc_opt_itemContext[] | Createfunc_opt_itemContext | null { + public createFunctionOptionItem(): CreateFunctionOptionItemContext[]; + public createFunctionOptionItem(i: number): CreateFunctionOptionItemContext | null; + public createFunctionOptionItem(i?: number): CreateFunctionOptionItemContext[] | CreateFunctionOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Createfunc_opt_itemContext); + return this.getRuleContexts(CreateFunctionOptionItemContext); } - return this.getRuleContext(i, Createfunc_opt_itemContext); + return this.getRuleContext(i, CreateFunctionOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createfunc_opt_list; + return PostgreSqlParser.RULE_createFunctionOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatefunc_opt_list) { - return visitor.visitCreatefunc_opt_list(this); + if (visitor.visitCreateFunctionOptionList) { + return visitor.visitCreateFunctionOptionList(this); } else { return visitor.visitChildren(this); } @@ -95459,7 +89347,7 @@ export class Createfunc_opt_listContext extends antlr.ParserRuleContext { } -export class Common_func_opt_itemContext extends antlr.ParserRuleContext { +export class CommonFunctionOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95517,8 +89405,8 @@ export class Common_func_opt_itemContext extends antlr.ParserRuleContext { public COST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COST, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public ROWS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROWS, 0); @@ -95526,24 +89414,24 @@ export class Common_func_opt_itemContext extends antlr.ParserRuleContext { public SUPPORT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SUPPORT, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } - public functionsetresetclause(): FunctionsetresetclauseContext | null { - return this.getRuleContext(0, FunctionsetresetclauseContext); + public functionSetResetClause(): FunctionSetResetClauseContext | null { + return this.getRuleContext(0, FunctionSetResetClauseContext); } public PARALLEL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARALLEL, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_common_func_opt_item; + return PostgreSqlParser.RULE_commonFunctionOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCommon_func_opt_item) { - return visitor.visitCommon_func_opt_item(this); + if (visitor.visitCommonFunctionOptionItem) { + return visitor.visitCommonFunctionOptionItem(this); } else { return visitor.visitChildren(this); } @@ -95551,40 +89439,40 @@ export class Common_func_opt_itemContext extends antlr.ParserRuleContext { } -export class Createfunc_opt_itemContext extends antlr.ParserRuleContext { +export class CreateFunctionOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public func_as(): Func_asContext | null { - return this.getRuleContext(0, Func_asContext); + public functionAs(): FunctionAsContext | null { + return this.getRuleContext(0, FunctionAsContext); } public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public TRANSFORM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRANSFORM, 0); } - public transform_type_list(): Transform_type_listContext | null { - return this.getRuleContext(0, Transform_type_listContext); + public transformTypeList(): TransformTypeListContext | null { + return this.getRuleContext(0, TransformTypeListContext); } public WINDOW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WINDOW, 0); } - public common_func_opt_item(): Common_func_opt_itemContext | null { - return this.getRuleContext(0, Common_func_opt_itemContext); + public commonFunctionOptionItem(): CommonFunctionOptionItemContext | null { + return this.getRuleContext(0, CommonFunctionOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createfunc_opt_item; + return PostgreSqlParser.RULE_createFunctionOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatefunc_opt_item) { - return visitor.visitCreatefunc_opt_item(this); + if (visitor.visitCreateFunctionOptionItem) { + return visitor.visitCreateFunctionOptionItem(this); } else { return visitor.visitChildren(this); } @@ -95592,7 +89480,7 @@ export class Createfunc_opt_itemContext extends antlr.ParserRuleContext { } -export class Func_asContext extends antlr.ParserRuleContext { +export class FunctionAsContext extends antlr.ParserRuleContext { public Definition: antlr.ParserRuleContext; public _def?: SconstContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -95611,11 +89499,11 @@ export class Func_asContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.COMMA, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_as; + return PostgreSqlParser.RULE_functionAs; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_as) { - return visitor.visitFunc_as(this); + if (visitor.visitFunctionAs) { + return visitor.visitFunctionAs(this); } else { return visitor.visitChildren(this); } @@ -95623,7 +89511,7 @@ export class Func_asContext extends antlr.ParserRuleContext { } -export class Transform_type_listContext extends antlr.ParserRuleContext { +export class TransformTypeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95645,14 +89533,14 @@ export class Transform_type_listContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TYPE_P, i); } } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -95664,11 +89552,11 @@ export class Transform_type_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transform_type_list; + return PostgreSqlParser.RULE_transformTypeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransform_type_list) { - return visitor.visitTransform_type_list(this); + if (visitor.visitTransformTypeList) { + return visitor.visitTransformTypeList(this); } else { return visitor.visitChildren(this); } @@ -95676,7 +89564,7 @@ export class Transform_type_listContext extends antlr.ParserRuleContext { } -export class Opt_definitionContext extends antlr.ParserRuleContext { +export class OptionalDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95687,11 +89575,11 @@ export class Opt_definitionContext extends antlr.ParserRuleContext { return this.getRuleContext(0, DefinitionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_definition; + return PostgreSqlParser.RULE_optionalDefinition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_definition) { - return visitor.visitOpt_definition(this); + if (visitor.visitOptionalDefinition) { + return visitor.visitOptionalDefinition(this); } else { return visitor.visitChildren(this); } @@ -95699,22 +89587,22 @@ export class Opt_definitionContext extends antlr.ParserRuleContext { } -export class Table_func_columnContext extends antlr.ParserRuleContext { +export class TableFunctionColumnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public param_name(): Param_nameContext { - return this.getRuleContext(0, Param_nameContext)!; + public parameterName(): ParameterNameContext { + return this.getRuleContext(0, ParameterNameContext)!; } - public func_type(): Func_typeContext { - return this.getRuleContext(0, Func_typeContext)!; + public functionType(): FunctionTypeContext { + return this.getRuleContext(0, FunctionTypeContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_func_column; + return PostgreSqlParser.RULE_tableFunctionColumn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_func_column) { - return visitor.visitTable_func_column(this); + if (visitor.visitTableFunctionColumn) { + return visitor.visitTableFunctionColumn(this); } else { return visitor.visitChildren(this); } @@ -95722,18 +89610,18 @@ export class Table_func_columnContext extends antlr.ParserRuleContext { } -export class Table_func_column_listContext extends antlr.ParserRuleContext { +export class TableFunctionColumnListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public table_func_column(): Table_func_columnContext[]; - public table_func_column(i: number): Table_func_columnContext | null; - public table_func_column(i?: number): Table_func_columnContext[] | Table_func_columnContext | null { + public tableFunctionColumn(): TableFunctionColumnContext[]; + public tableFunctionColumn(i: number): TableFunctionColumnContext | null; + public tableFunctionColumn(i?: number): TableFunctionColumnContext[] | TableFunctionColumnContext | null { if (i === undefined) { - return this.getRuleContexts(Table_func_columnContext); + return this.getRuleContexts(TableFunctionColumnContext); } - return this.getRuleContext(i, Table_func_columnContext); + return this.getRuleContext(i, TableFunctionColumnContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -95745,11 +89633,11 @@ export class Table_func_column_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_func_column_list; + return PostgreSqlParser.RULE_tableFunctionColumnList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_func_column_list) { - return visitor.visitTable_func_column_list(this); + if (visitor.visitTableFunctionColumnList) { + return visitor.visitTableFunctionColumnList(this); } else { return visitor.visitChildren(this); } @@ -95757,21 +89645,15 @@ export class Table_func_column_listContext extends antlr.ParserRuleContext { } -export class AlterfunctionstmtContext extends antlr.ParserRuleContext { +export class AlterFunctionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ALTER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ALTER, 0)!; } - public function_with_argtypes(): Function_with_argtypesContext { - return this.getRuleContext(0, Function_with_argtypesContext)!; - } - public alterfunc_opt_list(): Alterfunc_opt_listContext { - return this.getRuleContext(0, Alterfunc_opt_listContext)!; - } - public opt_restrict(): Opt_restrictContext { - return this.getRuleContext(0, Opt_restrictContext)!; + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext { + return this.getRuleContext(0, FunctionWithArgumentTypesContext)!; } public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); @@ -95782,58 +89664,24 @@ export class AlterfunctionstmtContext extends antlr.ParserRuleContext { public ROUTINE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROUTINE, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterfunctionstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterfunctionstmt) { - return visitor.visitAlterfunctionstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Alterfunc_opt_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public common_func_opt_item(): Common_func_opt_itemContext[]; - public common_func_opt_item(i: number): Common_func_opt_itemContext | null; - public common_func_opt_item(i?: number): Common_func_opt_itemContext[] | Common_func_opt_itemContext | null { + public commonFunctionOptionItem(): CommonFunctionOptionItemContext[]; + public commonFunctionOptionItem(i: number): CommonFunctionOptionItemContext | null; + public commonFunctionOptionItem(i?: number): CommonFunctionOptionItemContext[] | CommonFunctionOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Common_func_opt_itemContext); + return this.getRuleContexts(CommonFunctionOptionItemContext); } - return this.getRuleContext(i, Common_func_opt_itemContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterfunc_opt_list; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterfunc_opt_list) { - return visitor.visitAlterfunc_opt_list(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_restrictContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + return this.getRuleContext(i, CommonFunctionOptionItemContext); } public RESTRICT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RESTRICT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_restrict; + return PostgreSqlParser.RULE_alterFunctionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_restrict) { - return visitor.visitOpt_restrict(this); + if (visitor.visitAlterFunctionStatement) { + return visitor.visitAlterFunctionStatement(this); } else { return visitor.visitChildren(this); } @@ -95841,7 +89689,7 @@ export class Opt_restrictContext extends antlr.ParserRuleContext { } -export class RemovefuncstmtContext extends antlr.ParserRuleContext { +export class RemoveFunctionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95851,11 +89699,11 @@ export class RemovefuncstmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes_list(): Function_with_argtypes_listContext { - return this.getRuleContext(0, Function_with_argtypes_listContext)!; + public functionWithArgumentTypesList(): FunctionWithArgumentTypesListContext { + return this.getRuleContext(0, FunctionWithArgumentTypesListContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -95870,11 +89718,11 @@ export class RemovefuncstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROUTINE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_removefuncstmt; + return PostgreSqlParser.RULE_removeFunctionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRemovefuncstmt) { - return visitor.visitRemovefuncstmt(this); + if (visitor.visitRemoveFunctionStatement) { + return visitor.visitRemoveFunctionStatement(this); } else { return visitor.visitChildren(this); } @@ -95882,7 +89730,7 @@ export class RemovefuncstmtContext extends antlr.ParserRuleContext { } -export class RemoveaggrstmtContext extends antlr.ParserRuleContext { +export class RemoveAggregateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95892,11 +89740,11 @@ export class RemoveaggrstmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AGGREGATE, 0)!; } - public aggregate_with_argtypes_list(): Aggregate_with_argtypes_listContext { - return this.getRuleContext(0, Aggregate_with_argtypes_listContext)!; + public aggregateWithArgumentTypesList(): AggregateWithArgumentTypesListContext { + return this.getRuleContext(0, AggregateWithArgumentTypesListContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -95905,11 +89753,11 @@ export class RemoveaggrstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_removeaggrstmt; + return PostgreSqlParser.RULE_removeAggregateStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRemoveaggrstmt) { - return visitor.visitRemoveaggrstmt(this); + if (visitor.visitRemoveAggregateStatement) { + return visitor.visitRemoveAggregateStatement(this); } else { return visitor.visitChildren(this); } @@ -95917,7 +89765,7 @@ export class RemoveaggrstmtContext extends antlr.ParserRuleContext { } -export class RemoveoperstmtContext extends antlr.ParserRuleContext { +export class RemoveOperatorStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -95927,11 +89775,11 @@ export class RemoveoperstmtContext extends antlr.ParserRuleContext { public OPERATOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPERATOR, 0)!; } - public operator_with_argtypes_list(): Operator_with_argtypes_listContext { - return this.getRuleContext(0, Operator_with_argtypes_listContext)!; + public operatorWithArgumentTypesList(): OperatorWithArgumentTypesListContext { + return this.getRuleContext(0, OperatorWithArgumentTypesListContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -95940,11 +89788,11 @@ export class RemoveoperstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_removeoperstmt; + return PostgreSqlParser.RULE_removeOperatorStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRemoveoperstmt) { - return visitor.visitRemoveoperstmt(this); + if (visitor.visitRemoveOperatorStatement) { + return visitor.visitRemoveOperatorStatement(this); } else { return visitor.visitChildren(this); } @@ -95952,21 +89800,21 @@ export class RemoveoperstmtContext extends antlr.ParserRuleContext { } -export class Oper_argtypesContext extends antlr.ParserRuleContext { +export class OperatorArgumentTypesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; @@ -95978,11 +89826,11 @@ export class Oper_argtypesContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NONE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_oper_argtypes; + return PostgreSqlParser.RULE_operatorArgumentTypes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOper_argtypes) { - return visitor.visitOper_argtypes(this); + if (visitor.visitOperatorArgumentTypes) { + return visitor.visitOperatorArgumentTypes(this); } else { return visitor.visitChildren(this); } @@ -95990,21 +89838,21 @@ export class Oper_argtypesContext extends antlr.ParserRuleContext { } -export class Any_operatorContext extends antlr.ParserRuleContext { +export class AnyOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public all_op(): All_opContext { - return this.getRuleContext(0, All_opContext)!; + public allOperator(): AllOperatorContext { + return this.getRuleContext(0, AllOperatorContext)!; } - public colid(): ColidContext[]; - public colid(i: number): ColidContext | null; - public colid(i?: number): ColidContext[] | ColidContext | null { + public columnId(): ColumnIdContext[]; + public columnId(i: number): ColumnIdContext | null; + public columnId(i?: number): ColumnIdContext[] | ColumnIdContext | null { if (i === undefined) { - return this.getRuleContexts(ColidContext); + return this.getRuleContexts(ColumnIdContext); } - return this.getRuleContext(i, ColidContext); + return this.getRuleContext(i, ColumnIdContext); } public DOT(): antlr.TerminalNode[]; public DOT(i: number): antlr.TerminalNode | null; @@ -96016,11 +89864,11 @@ export class Any_operatorContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_any_operator; + return PostgreSqlParser.RULE_anyOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAny_operator) { - return visitor.visitAny_operator(this); + if (visitor.visitAnyOperator) { + return visitor.visitAnyOperator(this); } else { return visitor.visitChildren(this); } @@ -96028,18 +89876,18 @@ export class Any_operatorContext extends antlr.ParserRuleContext { } -export class Operator_with_argtypes_listContext extends antlr.ParserRuleContext { +export class OperatorWithArgumentTypesListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public operator_with_argtypes(): Operator_with_argtypesContext[]; - public operator_with_argtypes(i: number): Operator_with_argtypesContext | null; - public operator_with_argtypes(i?: number): Operator_with_argtypesContext[] | Operator_with_argtypesContext | null { + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext[]; + public operatorWithArgumentTypes(i: number): OperatorWithArgumentTypesContext | null; + public operatorWithArgumentTypes(i?: number): OperatorWithArgumentTypesContext[] | OperatorWithArgumentTypesContext | null { if (i === undefined) { - return this.getRuleContexts(Operator_with_argtypesContext); + return this.getRuleContexts(OperatorWithArgumentTypesContext); } - return this.getRuleContext(i, Operator_with_argtypesContext); + return this.getRuleContext(i, OperatorWithArgumentTypesContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -96051,11 +89899,11 @@ export class Operator_with_argtypes_listContext extends antlr.ParserRuleContext } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_operator_with_argtypes_list; + return PostgreSqlParser.RULE_operatorWithArgumentTypesList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOperator_with_argtypes_list) { - return visitor.visitOperator_with_argtypes_list(this); + if (visitor.visitOperatorWithArgumentTypesList) { + return visitor.visitOperatorWithArgumentTypesList(this); } else { return visitor.visitChildren(this); } @@ -96063,22 +89911,22 @@ export class Operator_with_argtypes_listContext extends antlr.ParserRuleContext } -export class Operator_with_argtypesContext extends antlr.ParserRuleContext { +export class OperatorWithArgumentTypesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_operator(): Any_operatorContext { - return this.getRuleContext(0, Any_operatorContext)!; + public anyOperator(): AnyOperatorContext { + return this.getRuleContext(0, AnyOperatorContext)!; } - public oper_argtypes(): Oper_argtypesContext { - return this.getRuleContext(0, Oper_argtypesContext)!; + public operatorArgumentTypes(): OperatorArgumentTypesContext { + return this.getRuleContext(0, OperatorArgumentTypesContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_operator_with_argtypes; + return PostgreSqlParser.RULE_operatorWithArgumentTypes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOperator_with_argtypes) { - return visitor.visitOperator_with_argtypes(this); + if (visitor.visitOperatorWithArgumentTypes) { + return visitor.visitOperatorWithArgumentTypes(this); } else { return visitor.visitChildren(this); } @@ -96086,22 +89934,22 @@ export class Operator_with_argtypesContext extends antlr.ParserRuleContext { } -export class DostmtContext extends antlr.ParserRuleContext { +export class DoStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public DO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DO, 0)!; } - public dostmt_opt_list(): Dostmt_opt_listContext { - return this.getRuleContext(0, Dostmt_opt_listContext)!; + public doStatementOptionsList(): DoStatementOptionsListContext { + return this.getRuleContext(0, DoStatementOptionsListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dostmt; + return PostgreSqlParser.RULE_doStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDostmt) { - return visitor.visitDostmt(this); + if (visitor.visitDoStatement) { + return visitor.visitDoStatement(this); } else { return visitor.visitChildren(this); } @@ -96109,25 +89957,25 @@ export class DostmtContext extends antlr.ParserRuleContext { } -export class Dostmt_opt_listContext extends antlr.ParserRuleContext { +export class DoStatementOptionsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public dostmt_opt_item(): Dostmt_opt_itemContext[]; - public dostmt_opt_item(i: number): Dostmt_opt_itemContext | null; - public dostmt_opt_item(i?: number): Dostmt_opt_itemContext[] | Dostmt_opt_itemContext | null { + public doStatementOptionItem(): DoStatementOptionItemContext[]; + public doStatementOptionItem(i: number): DoStatementOptionItemContext | null; + public doStatementOptionItem(i?: number): DoStatementOptionItemContext[] | DoStatementOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Dostmt_opt_itemContext); + return this.getRuleContexts(DoStatementOptionItemContext); } - return this.getRuleContext(i, Dostmt_opt_itemContext); + return this.getRuleContext(i, DoStatementOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dostmt_opt_list; + return PostgreSqlParser.RULE_doStatementOptionsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDostmt_opt_list) { - return visitor.visitDostmt_opt_list(this); + if (visitor.visitDoStatementOptionsList) { + return visitor.visitDoStatementOptionsList(this); } else { return visitor.visitChildren(this); } @@ -96135,7 +89983,7 @@ export class Dostmt_opt_listContext extends antlr.ParserRuleContext { } -export class Dostmt_opt_itemContext extends antlr.ParserRuleContext { +export class DoStatementOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96145,15 +89993,15 @@ export class Dostmt_opt_itemContext extends antlr.ParserRuleContext { public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext | null { - return this.getRuleContext(0, Nonreservedword_or_sconstContext); + public nonReservedWordOrSconst(): NonReservedWordOrSconstContext | null { + return this.getRuleContext(0, NonReservedWordOrSconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dostmt_opt_item; + return PostgreSqlParser.RULE_doStatementOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDostmt_opt_item) { - return visitor.visitDostmt_opt_item(this); + if (visitor.visitDoStatementOptionItem) { + return visitor.visitDoStatementOptionItem(this); } else { return visitor.visitChildren(this); } @@ -96161,7 +90009,7 @@ export class Dostmt_opt_itemContext extends antlr.ParserRuleContext { } -export class CreatecaststmtContext extends antlr.ParserRuleContext { +export class CreateCastStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96174,14 +90022,14 @@ export class CreatecaststmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; @@ -96195,11 +90043,11 @@ export class CreatecaststmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } - public cast_context(): Cast_contextContext { - return this.getRuleContext(0, Cast_contextContext)!; + public castContext(): CastContextContext { + return this.getRuleContext(0, CastContextContext)!; } public WITHOUT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITHOUT, 0); @@ -96208,11 +90056,11 @@ export class CreatecaststmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.INOUT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createcaststmt; + return PostgreSqlParser.RULE_createCastStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatecaststmt) { - return visitor.visitCreatecaststmt(this); + if (visitor.visitCreateCastStatement) { + return visitor.visitCreateCastStatement(this); } else { return visitor.visitChildren(this); } @@ -96220,7 +90068,7 @@ export class CreatecaststmtContext extends antlr.ParserRuleContext { } -export class Cast_contextContext extends antlr.ParserRuleContext { +export class CastContextContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96234,11 +90082,11 @@ export class Cast_contextContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ASSIGNMENT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cast_context; + return PostgreSqlParser.RULE_castContext; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCast_context) { - return visitor.visitCast_context(this); + if (visitor.visitCastContext) { + return visitor.visitCastContext(this); } else { return visitor.visitChildren(this); } @@ -96246,7 +90094,7 @@ export class Cast_contextContext extends antlr.ParserRuleContext { } -export class DropcaststmtContext extends antlr.ParserRuleContext { +export class DropCastStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96256,20 +90104,20 @@ export class DropcaststmtContext extends antlr.ParserRuleContext { public CAST(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CAST, 0)!; } - public opt_if_exists(): Opt_if_existsContext { - return this.getRuleContext(0, Opt_if_existsContext)!; + public optionalIfExists(): OptionalIfExistsContext { + return this.getRuleContext(0, OptionalIfExistsContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; @@ -96277,15 +90125,15 @@ export class DropcaststmtContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropcaststmt; + return PostgreSqlParser.RULE_dropCastStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropcaststmt) { - return visitor.visitDropcaststmt(this); + if (visitor.visitDropCastStatement) { + return visitor.visitDropCastStatement(this); } else { return visitor.visitChildren(this); } @@ -96293,7 +90141,7 @@ export class DropcaststmtContext extends antlr.ParserRuleContext { } -export class Opt_if_existsContext extends antlr.ParserRuleContext { +export class OptionalIfExistsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96304,11 +90152,11 @@ export class Opt_if_existsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_if_exists; + return PostgreSqlParser.RULE_optionalIfExists; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_if_exists) { - return visitor.visitOpt_if_exists(this); + if (visitor.visitOptionalIfExists) { + return visitor.visitOptionalIfExists(this); } else { return visitor.visitChildren(this); } @@ -96316,15 +90164,15 @@ export class Opt_if_existsContext extends antlr.ParserRuleContext { } -export class CreatetransformstmtContext extends antlr.ParserRuleContext { +export class CreateTransformStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_or_replace(): Opt_or_replaceContext { - return this.getRuleContext(0, Opt_or_replaceContext)!; + public optionalOrReplace(): OptionalOrReplaceContext { + return this.getRuleContext(0, OptionalOrReplaceContext)!; } public TRANSFORM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TRANSFORM, 0)!; @@ -96332,8 +90180,8 @@ export class CreatetransformstmtContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } public LANGUAGE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LANGUAGE, 0)!; @@ -96344,18 +90192,18 @@ export class CreatetransformstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public transform_element_list(): Transform_element_listContext { - return this.getRuleContext(0, Transform_element_listContext)!; + public transformElementList(): TransformElementListContext { + return this.getRuleContext(0, TransformElementListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createtransformstmt; + return PostgreSqlParser.RULE_createTransformStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatetransformstmt) { - return visitor.visitCreatetransformstmt(this); + if (visitor.visitCreateTransformStatement) { + return visitor.visitCreateTransformStatement(this); } else { return visitor.visitChildren(this); } @@ -96363,7 +90211,7 @@ export class CreatetransformstmtContext extends antlr.ParserRuleContext { } -export class Transform_element_listContext extends antlr.ParserRuleContext { +export class TransformElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96397,14 +90245,14 @@ export class Transform_element_listContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FUNCTION, i); } } - public function_with_argtypes(): Function_with_argtypesContext[]; - public function_with_argtypes(i: number): Function_with_argtypesContext | null; - public function_with_argtypes(i?: number): Function_with_argtypesContext[] | Function_with_argtypesContext | null { + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext[]; + public functionWithArgumentTypes(i: number): FunctionWithArgumentTypesContext | null; + public functionWithArgumentTypes(i?: number): FunctionWithArgumentTypesContext[] | FunctionWithArgumentTypesContext | null { if (i === undefined) { - return this.getRuleContexts(Function_with_argtypesContext); + return this.getRuleContexts(FunctionWithArgumentTypesContext); } - return this.getRuleContext(i, Function_with_argtypesContext); + return this.getRuleContext(i, FunctionWithArgumentTypesContext); } public COMMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COMMA, 0); @@ -96413,11 +90261,11 @@ export class Transform_element_listContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transform_element_list; + return PostgreSqlParser.RULE_transformElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransform_element_list) { - return visitor.visitTransform_element_list(this); + if (visitor.visitTransformElementList) { + return visitor.visitTransformElementList(this); } else { return visitor.visitChildren(this); } @@ -96425,7 +90273,7 @@ export class Transform_element_listContext extends antlr.ParserRuleContext { } -export class DroptransformstmtContext extends antlr.ParserRuleContext { +export class DropTransformStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96435,14 +90283,14 @@ export class DroptransformstmtContext extends antlr.ParserRuleContext { public TRANSFORM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TRANSFORM, 0)!; } - public opt_if_exists(): Opt_if_existsContext { - return this.getRuleContext(0, Opt_if_existsContext)!; + public optionalIfExists(): OptionalIfExistsContext { + return this.getRuleContext(0, OptionalIfExistsContext)!; } public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } public LANGUAGE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LANGUAGE, 0)!; @@ -96450,15 +90298,15 @@ export class DroptransformstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_droptransformstmt; + return PostgreSqlParser.RULE_dropTransformStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDroptransformstmt) { - return visitor.visitDroptransformstmt(this); + if (visitor.visitDropTransformStatement) { + return visitor.visitDropTransformStatement(this); } else { return visitor.visitChildren(this); } @@ -96466,24 +90314,24 @@ export class DroptransformstmtContext extends antlr.ParserRuleContext { } -export class ReindexstmtContext extends antlr.ParserRuleContext { +export class ReindexStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public REINDEX(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.REINDEX, 0)!; } - public reindex_target_type(): Reindex_target_typeContext | null { - return this.getRuleContext(0, Reindex_target_typeContext); + public reindexTargetType(): ReindexTargetTypeContext | null { + return this.getRuleContext(0, ReindexTargetTypeContext); } - public opt_concurrently(): Opt_concurrentlyContext { - return this.getRuleContext(0, Opt_concurrentlyContext)!; + public optionalConcurrently(): OptionalConcurrentlyContext { + return this.getRuleContext(0, OptionalConcurrentlyContext)!; } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public reindex_target_multitable(): Reindex_target_multitableContext | null { - return this.getRuleContext(0, Reindex_target_multitableContext); + public reindexTargetMultiTable(): ReindexTargetMultiTableContext | null { + return this.getRuleContext(0, ReindexTargetMultiTableContext); } public name(): NameContext | null { return this.getRuleContext(0, NameContext); @@ -96491,18 +90339,18 @@ export class ReindexstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public reindex_option_list(): Reindex_option_listContext | null { - return this.getRuleContext(0, Reindex_option_listContext); + public reindexOptionList(): ReindexOptionListContext | null { + return this.getRuleContext(0, ReindexOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reindexstmt; + return PostgreSqlParser.RULE_reindexStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReindexstmt) { - return visitor.visitReindexstmt(this); + if (visitor.visitReindexStatement) { + return visitor.visitReindexStatement(this); } else { return visitor.visitChildren(this); } @@ -96510,7 +90358,7 @@ export class ReindexstmtContext extends antlr.ParserRuleContext { } -export class Reindex_target_typeContext extends antlr.ParserRuleContext { +export class ReindexTargetTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96530,11 +90378,11 @@ export class Reindex_target_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SYSTEM_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reindex_target_type; + return PostgreSqlParser.RULE_reindexTargetType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReindex_target_type) { - return visitor.visitReindex_target_type(this); + if (visitor.visitReindexTargetType) { + return visitor.visitReindexTargetType(this); } else { return visitor.visitChildren(this); } @@ -96542,7 +90390,7 @@ export class Reindex_target_typeContext extends antlr.ParserRuleContext { } -export class Reindex_target_multitableContext extends antlr.ParserRuleContext { +export class ReindexTargetMultiTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96556,11 +90404,11 @@ export class Reindex_target_multitableContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DATABASE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reindex_target_multitable; + return PostgreSqlParser.RULE_reindexTargetMultiTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReindex_target_multitable) { - return visitor.visitReindex_target_multitable(this); + if (visitor.visitReindexTargetMultiTable) { + return visitor.visitReindexTargetMultiTable(this); } else { return visitor.visitChildren(this); } @@ -96568,18 +90416,18 @@ export class Reindex_target_multitableContext extends antlr.ParserRuleContext { } -export class Reindex_option_listContext extends antlr.ParserRuleContext { +export class ReindexOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public reindex_option_elem(): Reindex_option_elemContext[]; - public reindex_option_elem(i: number): Reindex_option_elemContext | null; - public reindex_option_elem(i?: number): Reindex_option_elemContext[] | Reindex_option_elemContext | null { + public reindexOptionElement(): ReindexOptionElementContext[]; + public reindexOptionElement(i: number): ReindexOptionElementContext | null; + public reindexOptionElement(i?: number): ReindexOptionElementContext[] | ReindexOptionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Reindex_option_elemContext); + return this.getRuleContexts(ReindexOptionElementContext); } - return this.getRuleContext(i, Reindex_option_elemContext); + return this.getRuleContext(i, ReindexOptionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -96591,11 +90439,11 @@ export class Reindex_option_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reindex_option_list; + return PostgreSqlParser.RULE_reindexOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReindex_option_list) { - return visitor.visitReindex_option_list(this); + if (visitor.visitReindexOptionList) { + return visitor.visitReindexOptionList(this); } else { return visitor.visitChildren(this); } @@ -96603,7 +90451,7 @@ export class Reindex_option_listContext extends antlr.ParserRuleContext { } -export class Reindex_option_elemContext extends antlr.ParserRuleContext { +export class ReindexOptionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96617,11 +90465,11 @@ export class Reindex_option_elemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONCURRENTLY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reindex_option_elem; + return PostgreSqlParser.RULE_reindexOptionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReindex_option_elem) { - return visitor.visitReindex_option_elem(this); + if (visitor.visitReindexOptionElement) { + return visitor.visitReindexOptionElement(this); } else { return visitor.visitChildren(this); } @@ -96629,7 +90477,7 @@ export class Reindex_option_elemContext extends antlr.ParserRuleContext { } -export class AltertblspcstmtContext extends antlr.ParserRuleContext { +export class AlterTablespaceStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96645,18 +90493,18 @@ export class AltertblspcstmtContext extends antlr.ParserRuleContext { public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public reloptions(): ReloptionsContext { - return this.getRuleContext(0, ReloptionsContext)!; + public relOptions(): RelOptionsContext { + return this.getRuleContext(0, RelOptionsContext)!; } public RESET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RESET, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altertblspcstmt; + return PostgreSqlParser.RULE_alterTablespaceStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltertblspcstmt) { - return visitor.visitAltertblspcstmt(this); + if (visitor.visitAlterTablespaceStatement) { + return visitor.visitAlterTablespaceStatement(this); } else { return visitor.visitChildren(this); } @@ -96664,7 +90512,7 @@ export class AltertblspcstmtContext extends antlr.ParserRuleContext { } -export class RenamestmtContext extends antlr.ParserRuleContext { +export class RenameStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96674,8 +90522,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public RENAME(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.RENAME, 0)!; @@ -96695,8 +90543,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public COLLATION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATION, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public CONVERSION_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONVERSION_P, 0); @@ -96722,23 +90570,23 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public GROUP_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GROUP_P, 0); } - public roleid(): RoleidContext[]; - public roleid(i: number): RoleidContext | null; - public roleid(i?: number): RoleidContext[] | RoleidContext | null { + public roleId(): RoleIdContext[]; + public roleId(i: number): RoleIdContext | null; + public roleId(i?: number): RoleIdContext[] | RoleIdContext | null { if (i === undefined) { - return this.getRuleContexts(RoleidContext); + return this.getRuleContexts(RoleIdContext); } - return this.getRuleContext(i, RoleidContext); + return this.getRuleContext(i, RoleIdContext); } - public opt_procedural(): Opt_proceduralContext | null { - return this.getRuleContext(0, Opt_proceduralContext); + public optionalProcedural(): OptionalProceduralContext | null { + return this.getRuleContext(0, OptionalProceduralContext); } public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); @@ -96761,8 +90609,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ON, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -96791,8 +90639,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr(): Relation_exprContext | null { - return this.getRuleContext(0, Relation_exprContext); + public relationExpression(): RelationExpressionContext | null { + return this.getRuleContext(0, RelationExpressionContext); } public SEQUENCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEQUENCE, 0); @@ -96806,8 +90654,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public INDEX(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INDEX, 0); } - public opt_column(): Opt_columnContext | null { - return this.getRuleContext(0, Opt_columnContext); + public optionalColumn(): OptionalColumnContext | null { + return this.getRuleContext(0, OptionalColumnContext); } public RULE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RULE, 0); @@ -96854,15 +90702,15 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public ATTRIBUTE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ATTRIBUTE, 0); } - public opt_drop_behavior(): Opt_drop_behaviorContext | null { - return this.getRuleContext(0, Opt_drop_behaviorContext); + public optionalDropBehavior(): OptionalDropBehaviorContext | null { + return this.getRuleContext(0, OptionalDropBehaviorContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_renamestmt; + return PostgreSqlParser.RULE_renameStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRenamestmt) { - return visitor.visitRenamestmt(this); + if (visitor.visitRenameStatement) { + return visitor.visitRenameStatement(this); } else { return visitor.visitChildren(this); } @@ -96870,7 +90718,7 @@ export class RenamestmtContext extends antlr.ParserRuleContext { } -export class Opt_columnContext extends antlr.ParserRuleContext { +export class OptionalColumnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96878,11 +90726,11 @@ export class Opt_columnContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.COLUMN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_column; + return PostgreSqlParser.RULE_optionalColumn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_column) { - return visitor.visitOpt_column(this); + if (visitor.visitOptionalColumn) { + return visitor.visitOptionalColumn(this); } else { return visitor.visitChildren(this); } @@ -96890,7 +90738,7 @@ export class Opt_columnContext extends antlr.ParserRuleContext { } -export class Opt_set_dataContext extends antlr.ParserRuleContext { +export class OptionalSetDataContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96901,11 +90749,11 @@ export class Opt_set_dataContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DATA_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_set_data; + return PostgreSqlParser.RULE_optionalSetData; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_set_data) { - return visitor.visitOpt_set_data(this); + if (visitor.visitOptionalSetData) { + return visitor.visitOptionalSetData(this); } else { return visitor.visitChildren(this); } @@ -96913,7 +90761,7 @@ export class Opt_set_dataContext extends antlr.ParserRuleContext { } -export class AlterobjectdependsstmtContext extends antlr.ParserRuleContext { +export class AlterObjectDependsStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -96923,11 +90771,8 @@ export class AlterobjectdependsstmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); - } - public opt_no(): Opt_noContext { - return this.getRuleContext(0, Opt_noContext)!; + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public DEPENDS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DEPENDS, 0)!; @@ -96953,6 +90798,9 @@ export class AlterobjectdependsstmtContext extends antlr.ParserRuleContext { return this.getRuleContext(i, NameContext); } + public NO(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.NO, 0); + } public PROCEDURE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PROCEDURE, 0); } @@ -96962,8 +90810,8 @@ export class AlterobjectdependsstmtContext extends antlr.ParserRuleContext { public TRIGGER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRIGGER, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public MATERIALIZED(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MATERIALIZED, 0); @@ -96975,31 +90823,11 @@ export class AlterobjectdependsstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.INDEX, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterobjectdependsstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterobjectdependsstmt) { - return visitor.visitAlterobjectdependsstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_noContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public NO(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.NO, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_no; + return PostgreSqlParser.RULE_alterObjectDependsStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_no) { - return visitor.visitOpt_no(this); + if (visitor.visitAlterObjectDependsStatement) { + return visitor.visitAlterObjectDependsStatement(this); } else { return visitor.visitChildren(this); } @@ -97007,7 +90835,7 @@ export class Opt_noContext extends antlr.ParserRuleContext { } -export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { +export class AlterObjectSchemaStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97017,8 +90845,8 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; @@ -97038,8 +90866,8 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public COLLATION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATION, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public CONVERSION_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONVERSION_P, 0); @@ -97053,14 +90881,14 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); } - public operator_with_argtypes(): Operator_with_argtypesContext | null { - return this.getRuleContext(0, Operator_with_argtypesContext); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext | null { + return this.getRuleContext(0, OperatorWithArgumentTypesContext); } public CLASS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLASS, 0); @@ -97080,8 +90908,8 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr(): Relation_exprContext | null { - return this.getRuleContext(0, Relation_exprContext); + public relationExpression(): RelationExpressionContext | null { + return this.getRuleContext(0, RelationExpressionContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -97113,8 +90941,8 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { public SEQUENCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEQUENCE, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public VIEW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VIEW, 0); @@ -97129,11 +90957,11 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TYPE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterobjectschemastmt; + return PostgreSqlParser.RULE_alterObjectSchemaStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterobjectschemastmt) { - return visitor.visitAlterobjectschemastmt(this); + if (visitor.visitAlterObjectSchemaStatement) { + return visitor.visitAlterObjectSchemaStatement(this); } else { return visitor.visitChildren(this); } @@ -97141,7 +90969,7 @@ export class AlterobjectschemastmtContext extends antlr.ParserRuleContext { } -export class AlteroperatorstmtContext extends antlr.ParserRuleContext { +export class AlterOperatorStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97151,8 +90979,8 @@ export class AlteroperatorstmtContext extends antlr.ParserRuleContext { public OPERATOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPERATOR, 0)!; } - public operator_with_argtypes(): Operator_with_argtypesContext { - return this.getRuleContext(0, Operator_with_argtypesContext)!; + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext { + return this.getRuleContext(0, OperatorWithArgumentTypesContext)!; } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; @@ -97160,18 +90988,18 @@ export class AlteroperatorstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public operator_def_list(): Operator_def_listContext { - return this.getRuleContext(0, Operator_def_listContext)!; + public operatorDefinitionList(): OperatorDefinitionListContext { + return this.getRuleContext(0, OperatorDefinitionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alteroperatorstmt; + return PostgreSqlParser.RULE_alterOperatorStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlteroperatorstmt) { - return visitor.visitAlteroperatorstmt(this); + if (visitor.visitAlterOperatorStatement) { + return visitor.visitAlterOperatorStatement(this); } else { return visitor.visitChildren(this); } @@ -97179,18 +91007,18 @@ export class AlteroperatorstmtContext extends antlr.ParserRuleContext { } -export class Operator_def_listContext extends antlr.ParserRuleContext { +export class OperatorDefinitionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public operator_def_elem(): Operator_def_elemContext[]; - public operator_def_elem(i: number): Operator_def_elemContext | null; - public operator_def_elem(i?: number): Operator_def_elemContext[] | Operator_def_elemContext | null { + public operatorDefinitionElement(): OperatorDefinitionElementContext[]; + public operatorDefinitionElement(i: number): OperatorDefinitionElementContext | null; + public operatorDefinitionElement(i?: number): OperatorDefinitionElementContext[] | OperatorDefinitionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Operator_def_elemContext); + return this.getRuleContexts(OperatorDefinitionElementContext); } - return this.getRuleContext(i, Operator_def_elemContext); + return this.getRuleContext(i, OperatorDefinitionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -97202,11 +91030,11 @@ export class Operator_def_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_operator_def_list; + return PostgreSqlParser.RULE_operatorDefinitionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOperator_def_list) { - return visitor.visitOperator_def_list(this); + if (visitor.visitOperatorDefinitionList) { + return visitor.visitOperatorDefinitionList(this); } else { return visitor.visitChildren(this); } @@ -97214,12 +91042,12 @@ export class Operator_def_listContext extends antlr.ParserRuleContext { } -export class Operator_def_elemContext extends antlr.ParserRuleContext { +export class OperatorDefinitionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public EQUAL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EQUAL, 0)!; @@ -97227,15 +91055,15 @@ export class Operator_def_elemContext extends antlr.ParserRuleContext { public NONE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NONE, 0); } - public operator_def_arg(): Operator_def_argContext | null { - return this.getRuleContext(0, Operator_def_argContext); + public operatorDefinitionArgument(): OperatorDefinitionArgumentContext | null { + return this.getRuleContext(0, OperatorDefinitionArgumentContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_operator_def_elem; + return PostgreSqlParser.RULE_operatorDefinitionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOperator_def_elem) { - return visitor.visitOperator_def_elem(this); + if (visitor.visitOperatorDefinitionElement) { + return visitor.visitOperatorDefinitionElement(this); } else { return visitor.visitChildren(this); } @@ -97243,31 +91071,31 @@ export class Operator_def_elemContext extends antlr.ParserRuleContext { } -export class Operator_def_argContext extends antlr.ParserRuleContext { +export class OperatorDefinitionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_type(): Func_typeContext | null { - return this.getRuleContext(0, Func_typeContext); + public functionType(): FunctionTypeContext | null { + return this.getRuleContext(0, FunctionTypeContext); } - public reserved_keyword(): Reserved_keywordContext | null { - return this.getRuleContext(0, Reserved_keywordContext); + public reservedKeyword(): ReservedKeywordContext | null { + return this.getRuleContext(0, ReservedKeywordContext); } - public qual_all_op(): Qual_all_opContext | null { - return this.getRuleContext(0, Qual_all_opContext); + public allOperatorQualifier(): AllOperatorQualifierContext | null { + return this.getRuleContext(0, AllOperatorQualifierContext); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_operator_def_arg; + return PostgreSqlParser.RULE_operatorDefinitionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOperator_def_arg) { - return visitor.visitOperator_def_arg(this); + if (visitor.visitOperatorDefinitionArgument) { + return visitor.visitOperatorDefinitionArgument(this); } else { return visitor.visitChildren(this); } @@ -97275,7 +91103,7 @@ export class Operator_def_argContext extends antlr.ParserRuleContext { } -export class AltertypestmtContext extends antlr.ParserRuleContext { +export class AlterTypeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97285,8 +91113,8 @@ export class AltertypestmtContext extends antlr.ParserRuleContext { public TYPE_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TYPE_P, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; @@ -97294,18 +91122,18 @@ export class AltertypestmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public operator_def_list(): Operator_def_listContext { - return this.getRuleContext(0, Operator_def_listContext)!; + public operatorDefinitionList(): OperatorDefinitionListContext { + return this.getRuleContext(0, OperatorDefinitionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altertypestmt; + return PostgreSqlParser.RULE_alterTypeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltertypestmt) { - return visitor.visitAltertypestmt(this); + if (visitor.visitAlterTypeStatement) { + return visitor.visitAlterTypeStatement(this); } else { return visitor.visitChildren(this); } @@ -97313,7 +91141,7 @@ export class AltertypestmtContext extends antlr.ParserRuleContext { } -export class AlterownerstmtContext extends antlr.ParserRuleContext { +export class AlterOwnerStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97323,8 +91151,8 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { public AGGREGATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AGGREGATE, 0); } - public aggregate_with_argtypes(): Aggregate_with_argtypesContext | null { - return this.getRuleContext(0, Aggregate_with_argtypesContext); + public aggregateWithArgumentTypes(): AggregateWithArgumentTypesContext | null { + return this.getRuleContext(0, AggregateWithArgumentTypesContext); } public OWNER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OWNER, 0)!; @@ -97332,14 +91160,14 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } public COLLATION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATION, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public CONVERSION_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONVERSION_P, 0); @@ -97356,11 +91184,11 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { public FUNCTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FUNCTION, 0); } - public function_with_argtypes(): Function_with_argtypesContext | null { - return this.getRuleContext(0, Function_with_argtypesContext); + public functionWithArgumentTypes(): FunctionWithArgumentTypesContext | null { + return this.getRuleContext(0, FunctionWithArgumentTypesContext); } - public opt_procedural(): Opt_proceduralContext | null { - return this.getRuleContext(0, Opt_proceduralContext); + public optionalProcedural(): OptionalProceduralContext | null { + return this.getRuleContext(0, OptionalProceduralContext); } public LANGUAGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LANGUAGE, 0); @@ -97371,14 +91199,14 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { public OBJECT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OBJECT_P, 0); } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); } - public operator_with_argtypes(): Operator_with_argtypesContext | null { - return this.getRuleContext(0, Operator_with_argtypesContext); + public operatorWithArgumentTypes(): OperatorWithArgumentTypesContext | null { + return this.getRuleContext(0, OperatorWithArgumentTypesContext); } public CLASS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLASS, 0); @@ -97444,11 +91272,11 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SUBSCRIPTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterownerstmt; + return PostgreSqlParser.RULE_alterOwnerStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterownerstmt) { - return visitor.visitAlterownerstmt(this); + if (visitor.visitAlterOwnerStatement) { + return visitor.visitAlterOwnerStatement(this); } else { return visitor.visitChildren(this); } @@ -97456,7 +91284,7 @@ export class AlterownerstmtContext extends antlr.ParserRuleContext { } -export class CreatepublicationstmtContext extends antlr.ParserRuleContext { +export class CreatePublicationStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97469,18 +91297,18 @@ export class CreatepublicationstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_publication_for_tables(): Opt_publication_for_tablesContext { - return this.getRuleContext(0, Opt_publication_for_tablesContext)!; + public optionalPublicationForTables(): OptionalPublicationForTablesContext { + return this.getRuleContext(0, OptionalPublicationForTablesContext)!; } - public opt_definition(): Opt_definitionContext { - return this.getRuleContext(0, Opt_definitionContext)!; + public optionalDefinition(): OptionalDefinitionContext { + return this.getRuleContext(0, OptionalDefinitionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createpublicationstmt; + return PostgreSqlParser.RULE_createPublicationStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatepublicationstmt) { - return visitor.visitCreatepublicationstmt(this); + if (visitor.visitCreatePublicationStatement) { + return visitor.visitCreatePublicationStatement(this); } else { return visitor.visitChildren(this); } @@ -97488,19 +91316,19 @@ export class CreatepublicationstmtContext extends antlr.ParserRuleContext { } -export class Opt_publication_for_tablesContext extends antlr.ParserRuleContext { +export class OptionalPublicationForTablesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public publication_for_tables(): Publication_for_tablesContext | null { - return this.getRuleContext(0, Publication_for_tablesContext); + public publicationForTables(): PublicationForTablesContext | null { + return this.getRuleContext(0, PublicationForTablesContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_publication_for_tables; + return PostgreSqlParser.RULE_optionalPublicationForTables; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_publication_for_tables) { - return visitor.visitOpt_publication_for_tables(this); + if (visitor.visitOptionalPublicationForTables) { + return visitor.visitOptionalPublicationForTables(this); } else { return visitor.visitChildren(this); } @@ -97508,7 +91336,7 @@ export class Opt_publication_for_tablesContext extends antlr.ParserRuleContext { } -export class Publication_for_tablesContext extends antlr.ParserRuleContext { +export class PublicationForTablesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97518,8 +91346,8 @@ export class Publication_for_tablesContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr_list(): Relation_expr_listContext | null { - return this.getRuleContext(0, Relation_expr_listContext); + public relationExpressionList(): RelationExpressionListContext | null { + return this.getRuleContext(0, RelationExpressionListContext); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); @@ -97528,11 +91356,11 @@ export class Publication_for_tablesContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLES, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_publication_for_tables; + return PostgreSqlParser.RULE_publicationForTables; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPublication_for_tables) { - return visitor.visitPublication_for_tables(this); + if (visitor.visitPublicationForTables) { + return visitor.visitPublicationForTables(this); } else { return visitor.visitChildren(this); } @@ -97540,7 +91368,7 @@ export class Publication_for_tablesContext extends antlr.ParserRuleContext { } -export class AlterpublicationstmtContext extends antlr.ParserRuleContext { +export class AlterPublicationStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97565,18 +91393,18 @@ export class AlterpublicationstmtContext extends antlr.ParserRuleContext { public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr_list(): Relation_expr_listContext | null { - return this.getRuleContext(0, Relation_expr_listContext); + public relationExpressionList(): RelationExpressionListContext | null { + return this.getRuleContext(0, RelationExpressionListContext); } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterpublicationstmt; + return PostgreSqlParser.RULE_alterPublicationStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterpublicationstmt) { - return visitor.visitAlterpublicationstmt(this); + if (visitor.visitAlterPublicationStatement) { + return visitor.visitAlterPublicationStatement(this); } else { return visitor.visitChildren(this); } @@ -97584,7 +91412,7 @@ export class AlterpublicationstmtContext extends antlr.ParserRuleContext { } -export class CreatesubscriptionstmtContext extends antlr.ParserRuleContext { +export class CreateSubscriptionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97606,18 +91434,18 @@ export class CreatesubscriptionstmtContext extends antlr.ParserRuleContext { public PUBLICATION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PUBLICATION, 0)!; } - public publication_name_list(): Publication_name_listContext { - return this.getRuleContext(0, Publication_name_listContext)!; + public publicationNameList(): PublicationNameListContext { + return this.getRuleContext(0, PublicationNameListContext)!; } - public opt_definition(): Opt_definitionContext { - return this.getRuleContext(0, Opt_definitionContext)!; + public optionalDefinition(): OptionalDefinitionContext { + return this.getRuleContext(0, OptionalDefinitionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createsubscriptionstmt; + return PostgreSqlParser.RULE_createSubscriptionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatesubscriptionstmt) { - return visitor.visitCreatesubscriptionstmt(this); + if (visitor.visitCreateSubscriptionStatement) { + return visitor.visitCreateSubscriptionStatement(this); } else { return visitor.visitChildren(this); } @@ -97625,18 +91453,18 @@ export class CreatesubscriptionstmtContext extends antlr.ParserRuleContext { } -export class Publication_name_listContext extends antlr.ParserRuleContext { +export class PublicationNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public publication_name_item(): Publication_name_itemContext[]; - public publication_name_item(i: number): Publication_name_itemContext | null; - public publication_name_item(i?: number): Publication_name_itemContext[] | Publication_name_itemContext | null { + public publicationNameItem(): PublicationNameItemContext[]; + public publicationNameItem(i: number): PublicationNameItemContext | null; + public publicationNameItem(i?: number): PublicationNameItemContext[] | PublicationNameItemContext | null { if (i === undefined) { - return this.getRuleContexts(Publication_name_itemContext); + return this.getRuleContexts(PublicationNameItemContext); } - return this.getRuleContext(i, Publication_name_itemContext); + return this.getRuleContext(i, PublicationNameItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -97648,11 +91476,11 @@ export class Publication_name_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_publication_name_list; + return PostgreSqlParser.RULE_publicationNameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPublication_name_list) { - return visitor.visitPublication_name_list(this); + if (visitor.visitPublicationNameList) { + return visitor.visitPublicationNameList(this); } else { return visitor.visitChildren(this); } @@ -97660,19 +91488,19 @@ export class Publication_name_listContext extends antlr.ParserRuleContext { } -export class Publication_name_itemContext extends antlr.ParserRuleContext { +export class PublicationNameItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_publication_name_item; + return PostgreSqlParser.RULE_publicationNameItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPublication_name_item) { - return visitor.visitPublication_name_item(this); + if (visitor.visitPublicationNameItem) { + return visitor.visitPublicationNameItem(this); } else { return visitor.visitChildren(this); } @@ -97680,7 +91508,7 @@ export class Publication_name_itemContext extends antlr.ParserRuleContext { } -export class AltersubscriptionstmtContext extends antlr.ParserRuleContext { +export class AlterSubscriptionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97711,11 +91539,11 @@ export class AltersubscriptionstmtContext extends antlr.ParserRuleContext { public PUBLICATION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PUBLICATION, 0); } - public opt_definition(): Opt_definitionContext | null { - return this.getRuleContext(0, Opt_definitionContext); + public optionalDefinition(): OptionalDefinitionContext | null { + return this.getRuleContext(0, OptionalDefinitionContext); } - public publication_name_list(): Publication_name_listContext | null { - return this.getRuleContext(0, Publication_name_listContext); + public publicationNameList(): PublicationNameListContext | null { + return this.getRuleContext(0, PublicationNameListContext); } public ENABLE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ENABLE_P, 0); @@ -97724,11 +91552,11 @@ export class AltersubscriptionstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DISABLE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altersubscriptionstmt; + return PostgreSqlParser.RULE_alterSubscriptionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltersubscriptionstmt) { - return visitor.visitAltersubscriptionstmt(this); + if (visitor.visitAlterSubscriptionStatement) { + return visitor.visitAlterSubscriptionStatement(this); } else { return visitor.visitChildren(this); } @@ -97736,7 +91564,7 @@ export class AltersubscriptionstmtContext extends antlr.ParserRuleContext { } -export class DropsubscriptionstmtContext extends antlr.ParserRuleContext { +export class DropSubscriptionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97749,8 +91577,8 @@ export class DropsubscriptionstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_drop_behavior(): Opt_drop_behaviorContext { - return this.getRuleContext(0, Opt_drop_behaviorContext)!; + public optionalDropBehavior(): OptionalDropBehaviorContext { + return this.getRuleContext(0, OptionalDropBehaviorContext)!; } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -97759,11 +91587,11 @@ export class DropsubscriptionstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropsubscriptionstmt; + return PostgreSqlParser.RULE_dropSubscriptionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropsubscriptionstmt) { - return visitor.visitDropsubscriptionstmt(this); + if (visitor.visitDropSubscriptionStatement) { + return visitor.visitDropSubscriptionStatement(this); } else { return visitor.visitChildren(this); } @@ -97771,15 +91599,15 @@ export class DropsubscriptionstmtContext extends antlr.ParserRuleContext { } -export class RulestmtContext extends antlr.ParserRuleContext { +export class RuleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_or_replace(): Opt_or_replaceContext { - return this.getRuleContext(0, Opt_or_replaceContext)!; + public optionalOrReplace(): OptionalOrReplaceContext { + return this.getRuleContext(0, OptionalOrReplaceContext)!; } public RULE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.RULE, 0)!; @@ -97799,27 +91627,27 @@ export class RulestmtContext extends antlr.ParserRuleContext { public TO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TO, 0)!; } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public where_clause(): Where_clauseContext { - return this.getRuleContext(0, Where_clauseContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } public DO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DO, 0)!; } - public opt_instead(): Opt_insteadContext { - return this.getRuleContext(0, Opt_insteadContext)!; + public optionalInstead(): OptionalInsteadContext { + return this.getRuleContext(0, OptionalInsteadContext)!; } - public ruleactionlist(): RuleactionlistContext { - return this.getRuleContext(0, RuleactionlistContext)!; + public ruleActionList(): RuleActionListContext { + return this.getRuleContext(0, RuleActionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rulestmt; + return PostgreSqlParser.RULE_ruleStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRulestmt) { - return visitor.visitRulestmt(this); + if (visitor.visitRuleStatement) { + return visitor.visitRuleStatement(this); } else { return visitor.visitChildren(this); } @@ -97827,31 +91655,31 @@ export class RulestmtContext extends antlr.ParserRuleContext { } -export class RuleactionlistContext extends antlr.ParserRuleContext { +export class RuleActionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public NOTHING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOTHING, 0); } - public ruleactionstmt(): RuleactionstmtContext | null { - return this.getRuleContext(0, RuleactionstmtContext); + public ruleActionStatement(): RuleActionStatementContext | null { + return this.getRuleContext(0, RuleActionStatementContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public ruleactionmulti(): RuleactionmultiContext | null { - return this.getRuleContext(0, RuleactionmultiContext); + public ruleActionMulti(): RuleActionMultiContext | null { + return this.getRuleContext(0, RuleActionMultiContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_ruleactionlist; + return PostgreSqlParser.RULE_ruleActionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRuleactionlist) { - return visitor.visitRuleactionlist(this); + if (visitor.visitRuleActionList) { + return visitor.visitRuleActionList(this); } else { return visitor.visitChildren(this); } @@ -97859,18 +91687,18 @@ export class RuleactionlistContext extends antlr.ParserRuleContext { } -export class RuleactionmultiContext extends antlr.ParserRuleContext { +export class RuleActionMultiContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public ruleactionstmtOrEmpty(): RuleactionstmtOrEmptyContext[]; - public ruleactionstmtOrEmpty(i: number): RuleactionstmtOrEmptyContext | null; - public ruleactionstmtOrEmpty(i?: number): RuleactionstmtOrEmptyContext[] | RuleactionstmtOrEmptyContext | null { + public ruleActionStatementOrEmpty(): RuleActionStatementOrEmptyContext[]; + public ruleActionStatementOrEmpty(i: number): RuleActionStatementOrEmptyContext | null; + public ruleActionStatementOrEmpty(i?: number): RuleActionStatementOrEmptyContext[] | RuleActionStatementOrEmptyContext | null { if (i === undefined) { - return this.getRuleContexts(RuleactionstmtOrEmptyContext); + return this.getRuleContexts(RuleActionStatementOrEmptyContext); } - return this.getRuleContext(i, RuleactionstmtOrEmptyContext); + return this.getRuleContext(i, RuleActionStatementOrEmptyContext); } public SEMI(): antlr.TerminalNode[]; public SEMI(i: number): antlr.TerminalNode | null; @@ -97882,11 +91710,11 @@ export class RuleactionmultiContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_ruleactionmulti; + return PostgreSqlParser.RULE_ruleActionMulti; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRuleactionmulti) { - return visitor.visitRuleactionmulti(this); + if (visitor.visitRuleActionMulti) { + return visitor.visitRuleActionMulti(this); } else { return visitor.visitChildren(this); } @@ -97894,31 +91722,31 @@ export class RuleactionmultiContext extends antlr.ParserRuleContext { } -export class RuleactionstmtContext extends antlr.ParserRuleContext { +export class RuleActionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public insertstmt(): InsertstmtContext | null { - return this.getRuleContext(0, InsertstmtContext); + public insertStatement(): InsertStatementContext | null { + return this.getRuleContext(0, InsertStatementContext); } - public updatestmt(): UpdatestmtContext | null { - return this.getRuleContext(0, UpdatestmtContext); + public updateStatement(): UpdateStatementContext | null { + return this.getRuleContext(0, UpdateStatementContext); } - public deletestmt(): DeletestmtContext | null { - return this.getRuleContext(0, DeletestmtContext); + public deleteStatement(): DeleteStatementContext | null { + return this.getRuleContext(0, DeleteStatementContext); } - public notifystmt(): NotifystmtContext | null { - return this.getRuleContext(0, NotifystmtContext); + public notifyStatement(): NotifyStatementContext | null { + return this.getRuleContext(0, NotifyStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_ruleactionstmt; + return PostgreSqlParser.RULE_ruleActionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRuleactionstmt) { - return visitor.visitRuleactionstmt(this); + if (visitor.visitRuleActionStatement) { + return visitor.visitRuleActionStatement(this); } else { return visitor.visitChildren(this); } @@ -97926,19 +91754,19 @@ export class RuleactionstmtContext extends antlr.ParserRuleContext { } -export class RuleactionstmtOrEmptyContext extends antlr.ParserRuleContext { +export class RuleActionStatementOrEmptyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public ruleactionstmt(): RuleactionstmtContext | null { - return this.getRuleContext(0, RuleactionstmtContext); + public ruleActionStatement(): RuleActionStatementContext | null { + return this.getRuleContext(0, RuleActionStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_ruleactionstmtOrEmpty; + return PostgreSqlParser.RULE_ruleActionStatementOrEmpty; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRuleactionstmtOrEmpty) { - return visitor.visitRuleactionstmtOrEmpty(this); + if (visitor.visitRuleActionStatementOrEmpty) { + return visitor.visitRuleActionStatementOrEmpty(this); } else { return visitor.visitChildren(this); } @@ -97975,7 +91803,7 @@ export class EventContext extends antlr.ParserRuleContext { } -export class Opt_insteadContext extends antlr.ParserRuleContext { +export class OptionalInsteadContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -97986,11 +91814,11 @@ export class Opt_insteadContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALSO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_instead; + return PostgreSqlParser.RULE_optionalInstead; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_instead) { - return visitor.visitOpt_instead(this); + if (visitor.visitOptionalInstead) { + return visitor.visitOptionalInstead(this); } else { return visitor.visitChildren(this); } @@ -97998,25 +91826,25 @@ export class Opt_insteadContext extends antlr.ParserRuleContext { } -export class NotifystmtContext extends antlr.ParserRuleContext { +export class NotifyStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public NOTIFY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.NOTIFY, 0)!; } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public notify_payload(): Notify_payloadContext { - return this.getRuleContext(0, Notify_payloadContext)!; + public notifyPayload(): NotifyPayloadContext { + return this.getRuleContext(0, NotifyPayloadContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_notifystmt; + return PostgreSqlParser.RULE_notifyStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNotifystmt) { - return visitor.visitNotifystmt(this); + if (visitor.visitNotifyStatement) { + return visitor.visitNotifyStatement(this); } else { return visitor.visitChildren(this); } @@ -98024,7 +91852,7 @@ export class NotifystmtContext extends antlr.ParserRuleContext { } -export class Notify_payloadContext extends antlr.ParserRuleContext { +export class NotifyPayloadContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98035,11 +91863,11 @@ export class Notify_payloadContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_notify_payload; + return PostgreSqlParser.RULE_notifyPayload; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNotify_payload) { - return visitor.visitNotify_payload(this); + if (visitor.visitNotifyPayload) { + return visitor.visitNotifyPayload(this); } else { return visitor.visitChildren(this); } @@ -98047,22 +91875,22 @@ export class Notify_payloadContext extends antlr.ParserRuleContext { } -export class ListenstmtContext extends antlr.ParserRuleContext { +export class ListenStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LISTEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LISTEN, 0)!; } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_listenstmt; + return PostgreSqlParser.RULE_listenStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitListenstmt) { - return visitor.visitListenstmt(this); + if (visitor.visitListenStatement) { + return visitor.visitListenStatement(this); } else { return visitor.visitChildren(this); } @@ -98070,25 +91898,25 @@ export class ListenstmtContext extends antlr.ParserRuleContext { } -export class UnlistenstmtContext extends antlr.ParserRuleContext { +export class UnlistenStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public UNLISTEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.UNLISTEN, 0)!; } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_unlistenstmt; + return PostgreSqlParser.RULE_unlistenStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitUnlistenstmt) { - return visitor.visitUnlistenstmt(this); + if (visitor.visitUnlistenStatement) { + return visitor.visitUnlistenStatement(this); } else { return visitor.visitChildren(this); } @@ -98096,24 +91924,24 @@ export class UnlistenstmtContext extends antlr.ParserRuleContext { } -export class TransactionstmtContext extends antlr.ParserRuleContext { +export class TransactionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ABORT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ABORT_P, 0); } - public opt_transaction(): Opt_transactionContext | null { - return this.getRuleContext(0, Opt_transactionContext); + public optionalTransaction(): OptionalTransactionContext | null { + return this.getRuleContext(0, OptionalTransactionContext); } - public opt_transaction_chain(): Opt_transaction_chainContext | null { - return this.getRuleContext(0, Opt_transaction_chainContext); + public optionalTransactionChain(): OptionalTransactionChainContext | null { + return this.getRuleContext(0, OptionalTransactionChainContext); } public BEGIN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BEGIN_P, 0); } - public transaction_mode_list_or_empty(): Transaction_mode_list_or_emptyContext | null { - return this.getRuleContext(0, Transaction_mode_list_or_emptyContext); + public transactionModeList(): TransactionModeListContext | null { + return this.getRuleContext(0, TransactionModeListContext); } public START(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.START, 0); @@ -98133,8 +91961,8 @@ export class TransactionstmtContext extends antlr.ParserRuleContext { public SAVEPOINT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SAVEPOINT, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public RELEASE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RELEASE, 0); @@ -98152,11 +91980,11 @@ export class TransactionstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PREPARED, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transactionstmt; + return PostgreSqlParser.RULE_transactionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransactionstmt) { - return visitor.visitTransactionstmt(this); + if (visitor.visitTransactionStatement) { + return visitor.visitTransactionStatement(this); } else { return visitor.visitChildren(this); } @@ -98164,7 +91992,7 @@ export class TransactionstmtContext extends antlr.ParserRuleContext { } -export class Opt_transactionContext extends antlr.ParserRuleContext { +export class OptionalTransactionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98175,11 +92003,11 @@ export class Opt_transactionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TRANSACTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_transaction; + return PostgreSqlParser.RULE_optionalTransaction; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_transaction) { - return visitor.visitOpt_transaction(this); + if (visitor.visitOptionalTransaction) { + return visitor.visitOptionalTransaction(this); } else { return visitor.visitChildren(this); } @@ -98187,7 +92015,7 @@ export class Opt_transactionContext extends antlr.ParserRuleContext { } -export class Transaction_mode_itemContext extends antlr.ParserRuleContext { +export class TransactionModeItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98197,8 +92025,8 @@ export class Transaction_mode_itemContext extends antlr.ParserRuleContext { public LEVEL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LEVEL, 0); } - public iso_level(): Iso_levelContext | null { - return this.getRuleContext(0, Iso_levelContext); + public isoLevel(): IsoLevelContext | null { + return this.getRuleContext(0, IsoLevelContext); } public READ(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.READ, 0); @@ -98216,11 +92044,11 @@ export class Transaction_mode_itemContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transaction_mode_item; + return PostgreSqlParser.RULE_transactionModeItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransaction_mode_item) { - return visitor.visitTransaction_mode_item(this); + if (visitor.visitTransactionModeItem) { + return visitor.visitTransactionModeItem(this); } else { return visitor.visitChildren(this); } @@ -98228,18 +92056,18 @@ export class Transaction_mode_itemContext extends antlr.ParserRuleContext { } -export class Transaction_mode_listContext extends antlr.ParserRuleContext { +export class TransactionModeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public transaction_mode_item(): Transaction_mode_itemContext[]; - public transaction_mode_item(i: number): Transaction_mode_itemContext | null; - public transaction_mode_item(i?: number): Transaction_mode_itemContext[] | Transaction_mode_itemContext | null { + public transactionModeItem(): TransactionModeItemContext[]; + public transactionModeItem(i: number): TransactionModeItemContext | null; + public transactionModeItem(i?: number): TransactionModeItemContext[] | TransactionModeItemContext | null { if (i === undefined) { - return this.getRuleContexts(Transaction_mode_itemContext); + return this.getRuleContexts(TransactionModeItemContext); } - return this.getRuleContext(i, Transaction_mode_itemContext); + return this.getRuleContext(i, TransactionModeItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -98251,11 +92079,11 @@ export class Transaction_mode_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transaction_mode_list; + return PostgreSqlParser.RULE_transactionModeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransaction_mode_list) { - return visitor.visitTransaction_mode_list(this); + if (visitor.visitTransactionModeList) { + return visitor.visitTransactionModeList(this); } else { return visitor.visitChildren(this); } @@ -98263,27 +92091,7 @@ export class Transaction_mode_listContext extends antlr.ParserRuleContext { } -export class Transaction_mode_list_or_emptyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public transaction_mode_list(): Transaction_mode_listContext | null { - return this.getRuleContext(0, Transaction_mode_listContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_transaction_mode_list_or_empty; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTransaction_mode_list_or_empty) { - return visitor.visitTransaction_mode_list_or_empty(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_transaction_chainContext extends antlr.ParserRuleContext { +export class OptionalTransactionChainContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98297,11 +92105,11 @@ export class Opt_transaction_chainContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_transaction_chain; + return PostgreSqlParser.RULE_optionalTransactionChain; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_transaction_chain) { - return visitor.visitOpt_transaction_chain(this); + if (visitor.visitOptionalTransactionChain) { + return visitor.visitOptionalTransactionChain(this); } else { return visitor.visitChildren(this); } @@ -98309,36 +92117,36 @@ export class Opt_transaction_chainContext extends antlr.ParserRuleContext { } -export class ViewstmtContext extends antlr.ParserRuleContext { +export class ViewStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opttemp(): OpttempContext { - return this.getRuleContext(0, OpttempContext)!; + public temporaryOption(): TemporaryOptionContext { + return this.getRuleContext(0, TemporaryOptionContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public selectstmt(): SelectstmtContext { - return this.getRuleContext(0, SelectstmtContext)!; + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; } - public opt_check_option(): Opt_check_optionContext { - return this.getRuleContext(0, Opt_check_optionContext)!; + public optionalCheckOption(): OptionalCheckOptionContext { + return this.getRuleContext(0, OptionalCheckOptionContext)!; } public VIEW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VIEW, 0); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public opt_column_list(): Opt_column_listContext | null { - return this.getRuleContext(0, Opt_column_listContext); + public columnListWithParentheses(): ColumnListWithParenthesesContext | null { + return this.getRuleContext(0, ColumnListWithParenthesesContext); } - public opt_reloptions(): Opt_reloptionsContext | null { - return this.getRuleContext(0, Opt_reloptionsContext); + public optionalRelOptions(): OptionalRelOptionsContext | null { + return this.getRuleContext(0, OptionalRelOptionsContext); } public RECURSIVE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RECURSIVE, 0); @@ -98346,8 +92154,8 @@ export class ViewstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); + public columnList(): ColumnListContext | null { + return this.getRuleContext(0, ColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -98359,11 +92167,11 @@ export class ViewstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.REPLACE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_viewstmt; + return PostgreSqlParser.RULE_viewStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitViewstmt) { - return visitor.visitViewstmt(this); + if (visitor.visitViewStatement) { + return visitor.visitViewStatement(this); } else { return visitor.visitChildren(this); } @@ -98371,7 +92179,7 @@ export class ViewstmtContext extends antlr.ParserRuleContext { } -export class Opt_check_optionContext extends antlr.ParserRuleContext { +export class OptionalCheckOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98391,11 +92199,11 @@ export class Opt_check_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.LOCAL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_check_option; + return PostgreSqlParser.RULE_optionalCheckOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_check_option) { - return visitor.visitOpt_check_option(this); + if (visitor.visitOptionalCheckOption) { + return visitor.visitOptionalCheckOption(this); } else { return visitor.visitChildren(this); } @@ -98403,22 +92211,22 @@ export class Opt_check_optionContext extends antlr.ParserRuleContext { } -export class LoadstmtContext extends antlr.ParserRuleContext { +export class LoadStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LOAD(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LOAD, 0)!; } - public file_name(): File_nameContext { - return this.getRuleContext(0, File_nameContext)!; + public fileName(): FileNameContext { + return this.getRuleContext(0, FileNameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_loadstmt; + return PostgreSqlParser.RULE_loadStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLoadstmt) { - return visitor.visitLoadstmt(this); + if (visitor.visitLoadStatement) { + return visitor.visitLoadStatement(this); } else { return visitor.visitChildren(this); } @@ -98426,7 +92234,7 @@ export class LoadstmtContext extends antlr.ParserRuleContext { } -export class CreatedbstmtContext extends antlr.ParserRuleContext { +export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98439,38 +92247,18 @@ export class CreatedbstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_with(): Opt_withContext { - return this.getRuleContext(0, Opt_withContext)!; - } - public createdb_opt_list(): Createdb_opt_listContext { - return this.getRuleContext(0, Createdb_opt_listContext)!; + public optionalWith(): OptionalWithContext { + return this.getRuleContext(0, OptionalWithContext)!; } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdbstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedbstmt) { - return visitor.visitCreatedbstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Createdb_opt_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public createdb_opt_items(): Createdb_opt_itemsContext | null { - return this.getRuleContext(0, Createdb_opt_itemsContext); + public createDatabaseOptionList(): CreateDatabaseOptionListContext { + return this.getRuleContext(0, CreateDatabaseOptionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdb_opt_list; + return PostgreSqlParser.RULE_createDatabaseStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedb_opt_list) { - return visitor.visitCreatedb_opt_list(this); + if (visitor.visitCreateDatabaseStatement) { + return visitor.visitCreateDatabaseStatement(this); } else { return visitor.visitChildren(this); } @@ -98478,25 +92266,25 @@ export class Createdb_opt_listContext extends antlr.ParserRuleContext { } -export class Createdb_opt_itemsContext extends antlr.ParserRuleContext { +export class CreateDatabaseOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public createdb_opt_item(): Createdb_opt_itemContext[]; - public createdb_opt_item(i: number): Createdb_opt_itemContext | null; - public createdb_opt_item(i?: number): Createdb_opt_itemContext[] | Createdb_opt_itemContext | null { + public createDatabaseOptionItem(): CreateDatabaseOptionItemContext[]; + public createDatabaseOptionItem(i: number): CreateDatabaseOptionItemContext | null; + public createDatabaseOptionItem(i?: number): CreateDatabaseOptionItemContext[] | CreateDatabaseOptionItemContext | null { if (i === undefined) { - return this.getRuleContexts(Createdb_opt_itemContext); + return this.getRuleContexts(CreateDatabaseOptionItemContext); } - return this.getRuleContext(i, Createdb_opt_itemContext); + return this.getRuleContext(i, CreateDatabaseOptionItemContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdb_opt_items; + return PostgreSqlParser.RULE_createDatabaseOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedb_opt_items) { - return visitor.visitCreatedb_opt_items(this); + if (visitor.visitCreateDatabaseOptionList) { + return visitor.visitCreateDatabaseOptionList(this); } else { return visitor.visitChildren(this); } @@ -98504,31 +92292,31 @@ export class Createdb_opt_itemsContext extends antlr.ParserRuleContext { } -export class Createdb_opt_itemContext extends antlr.ParserRuleContext { +export class CreateDatabaseOptionItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public createdb_opt_name(): Createdb_opt_nameContext { - return this.getRuleContext(0, Createdb_opt_nameContext)!; + public createDatabaseOptionName(): CreateDatabaseOptionNameContext { + return this.getRuleContext(0, CreateDatabaseOptionNameContext)!; } - public opt_equal(): Opt_equalContext { - return this.getRuleContext(0, Opt_equalContext)!; + public signedIconst(): SignedIconstContext | null { + return this.getRuleContext(0, SignedIconstContext); } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); - } - public opt_boolean_or_string(): Opt_boolean_or_stringContext | null { - return this.getRuleContext(0, Opt_boolean_or_stringContext); + public booleanOrString(): BooleanOrStringContext | null { + return this.getRuleContext(0, BooleanOrStringContext); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); } + public EQUAL(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.EQUAL, 0); + } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdb_opt_item; + return PostgreSqlParser.RULE_createDatabaseOptionItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedb_opt_item) { - return visitor.visitCreatedb_opt_item(this); + if (visitor.visitCreateDatabaseOptionItem) { + return visitor.visitCreateDatabaseOptionItem(this); } else { return visitor.visitChildren(this); } @@ -98536,7 +92324,7 @@ export class Createdb_opt_itemContext extends antlr.ParserRuleContext { } -export class Createdb_opt_nameContext extends antlr.ParserRuleContext { +export class CreateDatabaseOptionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98565,11 +92353,11 @@ export class Createdb_opt_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TEMPLATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdb_opt_name; + return PostgreSqlParser.RULE_createDatabaseOptionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedb_opt_name) { - return visitor.visitCreatedb_opt_name(this); + if (visitor.visitCreateDatabaseOptionName) { + return visitor.visitCreateDatabaseOptionName(this); } else { return visitor.visitChildren(this); } @@ -98577,27 +92365,7 @@ export class Createdb_opt_nameContext extends antlr.ParserRuleContext { } -export class Opt_equalContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public EQUAL(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.EQUAL, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_equal; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_equal) { - return visitor.visitOpt_equal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AlterdatabasestmtContext extends antlr.ParserRuleContext { +export class AlterDatabaseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98619,8 +92387,8 @@ export class AlterdatabasestmtContext extends antlr.ParserRuleContext { public WITH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WITH, 0); } - public createdb_opt_list(): Createdb_opt_listContext | null { - return this.getRuleContext(0, Createdb_opt_listContext); + public createDatabaseOptionList(): CreateDatabaseOptionListContext | null { + return this.getRuleContext(0, CreateDatabaseOptionListContext); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); @@ -98629,11 +92397,11 @@ export class AlterdatabasestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLESPACE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterdatabasestmt; + return PostgreSqlParser.RULE_alterDatabaseStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterdatabasestmt) { - return visitor.visitAlterdatabasestmt(this); + if (visitor.visitAlterDatabaseStatement) { + return visitor.visitAlterDatabaseStatement(this); } else { return visitor.visitChildren(this); } @@ -98641,7 +92409,7 @@ export class AlterdatabasestmtContext extends antlr.ParserRuleContext { } -export class AlterdatabasesetstmtContext extends antlr.ParserRuleContext { +export class AlterDatabaseSetStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98654,15 +92422,15 @@ export class AlterdatabasesetstmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public setresetclause(): SetresetclauseContext { - return this.getRuleContext(0, SetresetclauseContext)!; + public setResetClause(): SetResetClauseContext { + return this.getRuleContext(0, SetResetClauseContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterdatabasesetstmt; + return PostgreSqlParser.RULE_alterDatabaseSetStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterdatabasesetstmt) { - return visitor.visitAlterdatabasesetstmt(this); + if (visitor.visitAlterDatabaseSetStatement) { + return visitor.visitAlterDatabaseSetStatement(this); } else { return visitor.visitChildren(this); } @@ -98670,7 +92438,7 @@ export class AlterdatabasesetstmtContext extends antlr.ParserRuleContext { } -export class DropdbstmtContext extends antlr.ParserRuleContext { +export class DropDatabaseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98689,44 +92457,24 @@ export class DropdbstmtContext extends antlr.ParserRuleContext { public EXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXISTS, 0); } - public opt_with(): Opt_withContext | null { - return this.getRuleContext(0, Opt_withContext); + public optionalWith(): OptionalWithContext | null { + return this.getRuleContext(0, OptionalWithContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public drop_option_list(): Drop_option_listContext | null { - return this.getRuleContext(0, Drop_option_listContext); + public FORCE(): antlr.TerminalNode[]; + public FORCE(i: number): antlr.TerminalNode | null; + public FORCE(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.FORCE); + } else { + return this.getToken(PostgreSqlParser.FORCE, i); + } } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_dropdbstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDropdbstmt) { - return visitor.visitDropdbstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Drop_option_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public drop_option(): Drop_optionContext[]; - public drop_option(i: number): Drop_optionContext | null; - public drop_option(i?: number): Drop_optionContext[] | Drop_optionContext | null { - if (i === undefined) { - return this.getRuleContexts(Drop_optionContext); - } - - return this.getRuleContext(i, Drop_optionContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -98737,11 +92485,11 @@ export class Drop_option_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_drop_option_list; + return PostgreSqlParser.RULE_dropDatabaseStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDrop_option_list) { - return visitor.visitDrop_option_list(this); + if (visitor.visitDropDatabaseStatement) { + return visitor.visitDropDatabaseStatement(this); } else { return visitor.visitChildren(this); } @@ -98749,27 +92497,7 @@ export class Drop_option_listContext extends antlr.ParserRuleContext { } -export class Drop_optionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public FORCE(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.FORCE, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_drop_option; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDrop_option) { - return visitor.visitDrop_option(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AltercollationstmtContext extends antlr.ParserRuleContext { +export class AlterCollationStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98779,8 +92507,8 @@ export class AltercollationstmtContext extends antlr.ParserRuleContext { public COLLATION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.COLLATION, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public REFRESH(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.REFRESH, 0)!; @@ -98789,11 +92517,11 @@ export class AltercollationstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VERSION_P, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altercollationstmt; + return PostgreSqlParser.RULE_alterCollationStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltercollationstmt) { - return visitor.visitAltercollationstmt(this); + if (visitor.visitAlterCollationStatement) { + return visitor.visitAlterCollationStatement(this); } else { return visitor.visitChildren(this); } @@ -98801,7 +92529,7 @@ export class AltercollationstmtContext extends antlr.ParserRuleContext { } -export class AltersystemstmtContext extends antlr.ParserRuleContext { +export class AlterSystemStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98811,8 +92539,8 @@ export class AltersystemstmtContext extends antlr.ParserRuleContext { public SYSTEM_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SYSTEM_P, 0)!; } - public generic_set(): Generic_setContext { - return this.getRuleContext(0, Generic_setContext)!; + public genericSetClause(): GenericSetClauseContext { + return this.getRuleContext(0, GenericSetClauseContext)!; } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); @@ -98821,11 +92549,11 @@ export class AltersystemstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RESET, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altersystemstmt; + return PostgreSqlParser.RULE_alterSystemStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltersystemstmt) { - return visitor.visitAltersystemstmt(this); + if (visitor.visitAlterSystemStatement) { + return visitor.visitAlterSystemStatement(this); } else { return visitor.visitChildren(this); } @@ -98833,7 +92561,7 @@ export class AltersystemstmtContext extends antlr.ParserRuleContext { } -export class CreatedomainstmtContext extends antlr.ParserRuleContext { +export class CreateDomainStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98843,24 +92571,24 @@ export class CreatedomainstmtContext extends antlr.ParserRuleContext { public DOMAIN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DOMAIN_P, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } - public opt_as(): Opt_asContext { - return this.getRuleContext(0, Opt_asContext)!; + public optionalAs(): OptionalAsContext { + return this.getRuleContext(0, OptionalAsContext)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } - public colquallist(): ColquallistContext { - return this.getRuleContext(0, ColquallistContext)!; + public columnQualifierList(): ColumnQualifierListContext { + return this.getRuleContext(0, ColumnQualifierListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createdomainstmt; + return PostgreSqlParser.RULE_createDomainStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreatedomainstmt) { - return visitor.visitCreatedomainstmt(this); + if (visitor.visitCreateDomainStatement) { + return visitor.visitCreateDomainStatement(this); } else { return visitor.visitChildren(this); } @@ -98868,7 +92596,7 @@ export class CreatedomainstmtContext extends antlr.ParserRuleContext { } -export class AlterdomainstmtContext extends antlr.ParserRuleContext { +export class AlterDomainStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98878,11 +92606,11 @@ export class AlterdomainstmtContext extends antlr.ParserRuleContext { public DOMAIN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DOMAIN_P, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } - public alter_column_default(): Alter_column_defaultContext | null { - return this.getRuleContext(0, Alter_column_defaultContext); + public alterColumnDefault(): AlterColumnDefaultContext | null { + return this.getRuleContext(0, AlterColumnDefaultContext); } public DROP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DROP, 0); @@ -98899,8 +92627,8 @@ export class AlterdomainstmtContext extends antlr.ParserRuleContext { public ADD_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADD_P, 0); } - public tableconstraint(): TableconstraintContext | null { - return this.getRuleContext(0, TableconstraintContext); + public tableConstraint(): TableConstraintContext | null { + return this.getRuleContext(0, TableConstraintContext); } public CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONSTRAINT, 0); @@ -98908,8 +92636,8 @@ export class AlterdomainstmtContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } - public opt_drop_behavior(): Opt_drop_behaviorContext | null { - return this.getRuleContext(0, Opt_drop_behaviorContext); + public optionalDropBehavior(): OptionalDropBehaviorContext | null { + return this.getRuleContext(0, OptionalDropBehaviorContext); } public VALIDATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VALIDATE, 0); @@ -98921,11 +92649,11 @@ export class AlterdomainstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alterdomainstmt; + return PostgreSqlParser.RULE_alterDomainStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlterdomainstmt) { - return visitor.visitAlterdomainstmt(this); + if (visitor.visitAlterDomainStatement) { + return visitor.visitAlterDomainStatement(this); } else { return visitor.visitChildren(this); } @@ -98933,7 +92661,7 @@ export class AlterdomainstmtContext extends antlr.ParserRuleContext { } -export class Opt_asContext extends antlr.ParserRuleContext { +export class OptionalAsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98941,11 +92669,11 @@ export class Opt_asContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.AS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_as; + return PostgreSqlParser.RULE_optionalAs; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_as) { - return visitor.visitOpt_as(this); + if (visitor.visitOptionalAs) { + return visitor.visitOptionalAs(this); } else { return visitor.visitChildren(this); } @@ -98953,7 +92681,7 @@ export class Opt_asContext extends antlr.ParserRuleContext { } -export class AltertsdictionarystmtContext extends antlr.ParserRuleContext { +export class AltertsDictionaryStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -98969,18 +92697,18 @@ export class AltertsdictionarystmtContext extends antlr.ParserRuleContext { public DICTIONARY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DICTIONARY, 0)!; } - public any_name(): Any_nameContext { - return this.getRuleContext(0, Any_nameContext)!; + public anyName(): AnyNameContext { + return this.getRuleContext(0, AnyNameContext)!; } public definition(): DefinitionContext { return this.getRuleContext(0, DefinitionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altertsdictionarystmt; + return PostgreSqlParser.RULE_altertsDictionaryStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltertsdictionarystmt) { - return visitor.visitAltertsdictionarystmt(this); + if (visitor.visitAltertsDictionaryStatement) { + return visitor.visitAltertsDictionaryStatement(this); } else { return visitor.visitChildren(this); } @@ -98988,7 +92716,7 @@ export class AltertsdictionarystmtContext extends antlr.ParserRuleContext { } -export class AltertsconfigurationstmtContext extends antlr.ParserRuleContext { +export class AltertsConfigurationStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99010,14 +92738,14 @@ export class AltertsconfigurationstmtContext extends antlr.ParserRuleContext { public CONFIGURATION(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CONFIGURATION, 0)!; } - public any_name(): Any_nameContext[]; - public any_name(i: number): Any_nameContext | null; - public any_name(i?: number): Any_nameContext[] | Any_nameContext | null { + public anyName(): AnyNameContext[]; + public anyName(i: number): AnyNameContext | null; + public anyName(i?: number): AnyNameContext[] | AnyNameContext | null { if (i === undefined) { - return this.getRuleContexts(Any_nameContext); + return this.getRuleContexts(AnyNameContext); } - return this.getRuleContext(i, Any_nameContext); + return this.getRuleContext(i, AnyNameContext); } public ADD_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ADD_P, 0); @@ -99028,14 +92756,14 @@ export class AltertsconfigurationstmtContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } - public any_with(): Any_withContext | null { - return this.getRuleContext(0, Any_withContext); + public WITH(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.WITH, 0); } - public any_name_list(): Any_name_listContext | null { - return this.getRuleContext(0, Any_name_listContext); + public anyNameList(): AnyNameListContext | null { + return this.getRuleContext(0, AnyNameListContext); } public REPLACE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.REPLACE, 0); @@ -99050,31 +92778,11 @@ export class AltertsconfigurationstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_altertsconfigurationstmt; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAltertsconfigurationstmt) { - return visitor.visitAltertsconfigurationstmt(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Any_withContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public WITH(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.WITH, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_any_with; + return PostgreSqlParser.RULE_altertsConfigurationStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAny_with) { - return visitor.visitAny_with(this); + if (visitor.visitAltertsConfigurationStatement) { + return visitor.visitAltertsConfigurationStatement(this); } else { return visitor.visitChildren(this); } @@ -99082,27 +92790,24 @@ export class Any_withContext extends antlr.ParserRuleContext { } -export class CreateconversionstmtContext extends antlr.ParserRuleContext { +export class CreateConversionStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CREATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CREATE, 0)!; } - public opt_default(): Opt_defaultContext { - return this.getRuleContext(0, Opt_defaultContext)!; - } public CONVERSION_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CONVERSION_P, 0)!; } - public any_name(): Any_nameContext[]; - public any_name(i: number): Any_nameContext | null; - public any_name(i?: number): Any_nameContext[] | Any_nameContext | null { + public anyName(): AnyNameContext[]; + public anyName(i: number): AnyNameContext | null; + public anyName(i?: number): AnyNameContext[] | AnyNameContext | null { if (i === undefined) { - return this.getRuleContexts(Any_nameContext); + return this.getRuleContexts(AnyNameContext); } - return this.getRuleContext(i, Any_nameContext); + return this.getRuleContext(i, AnyNameContext); } public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; @@ -99122,12 +92827,15 @@ export class CreateconversionstmtContext extends antlr.ParserRuleContext { public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; } + public DEFAULT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.DEFAULT, 0); + } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_createconversionstmt; + return PostgreSqlParser.RULE_createConversionStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCreateconversionstmt) { - return visitor.visitCreateconversionstmt(this); + if (visitor.visitCreateConversionStatement) { + return visitor.visitCreateConversionStatement(this); } else { return visitor.visitChildren(this); } @@ -99135,21 +92843,21 @@ export class CreateconversionstmtContext extends antlr.ParserRuleContext { } -export class ClusterstmtContext extends antlr.ParserRuleContext { +export class ClusterStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CLUSTER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLUSTER, 0)!; } - public opt_verbose(): Opt_verboseContext { - return this.getRuleContext(0, Opt_verboseContext)!; + public optionalVerbose(): OptionalVerboseContext { + return this.getRuleContext(0, OptionalVerboseContext)!; } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } - public cluster_index_specification(): Cluster_index_specificationContext | null { - return this.getRuleContext(0, Cluster_index_specificationContext); + public clusterIndexSpecification(): ClusterIndexSpecificationContext | null { + return this.getRuleContext(0, ClusterIndexSpecificationContext); } public name(): NameContext | null { return this.getRuleContext(0, NameContext); @@ -99158,11 +92866,11 @@ export class ClusterstmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ON, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_clusterstmt; + return PostgreSqlParser.RULE_clusterStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitClusterstmt) { - return visitor.visitClusterstmt(this); + if (visitor.visitClusterStatement) { + return visitor.visitClusterStatement(this); } else { return visitor.visitChildren(this); } @@ -99170,7 +92878,7 @@ export class ClusterstmtContext extends antlr.ParserRuleContext { } -export class Cluster_index_specificationContext extends antlr.ParserRuleContext { +export class ClusterIndexSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99181,11 +92889,11 @@ export class Cluster_index_specificationContext extends antlr.ParserRuleContext return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cluster_index_specification; + return PostgreSqlParser.RULE_clusterIndexSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCluster_index_specification) { - return visitor.visitCluster_index_specification(this); + if (visitor.visitClusterIndexSpecification) { + return visitor.visitClusterIndexSpecification(this); } else { return visitor.visitChildren(this); } @@ -99193,43 +92901,43 @@ export class Cluster_index_specificationContext extends antlr.ParserRuleContext } -export class VacuumstmtContext extends antlr.ParserRuleContext { +export class VacuumStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public VACUUM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VACUUM, 0)!; } - public opt_full(): Opt_fullContext | null { - return this.getRuleContext(0, Opt_fullContext); + public optionalVerbose(): OptionalVerboseContext | null { + return this.getRuleContext(0, OptionalVerboseContext); } - public opt_freeze(): Opt_freezeContext | null { - return this.getRuleContext(0, Opt_freezeContext); + public optionalVacuumRelationList(): OptionalVacuumRelationListContext { + return this.getRuleContext(0, OptionalVacuumRelationListContext)!; } - public opt_verbose(): Opt_verboseContext | null { - return this.getRuleContext(0, Opt_verboseContext); + public FULL(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.FULL, 0); } - public opt_analyze(): Opt_analyzeContext | null { - return this.getRuleContext(0, Opt_analyzeContext); + public FREEZE(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.FREEZE, 0); } - public opt_vacuum_relation_list(): Opt_vacuum_relation_listContext { - return this.getRuleContext(0, Opt_vacuum_relation_listContext)!; + public analyzeKeyword(): AnalyzeKeywordContext | null { + return this.getRuleContext(0, AnalyzeKeywordContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public vac_analyze_option_list(): Vac_analyze_option_listContext | null { - return this.getRuleContext(0, Vac_analyze_option_listContext); + public vacuumAnalyzeOptionList(): VacuumAnalyzeOptionListContext | null { + return this.getRuleContext(0, VacuumAnalyzeOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vacuumstmt; + return PostgreSqlParser.RULE_vacuumStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVacuumstmt) { - return visitor.visitVacuumstmt(this); + if (visitor.visitVacuumStatement) { + return visitor.visitVacuumStatement(this); } else { return visitor.visitChildren(this); } @@ -99237,34 +92945,34 @@ export class VacuumstmtContext extends antlr.ParserRuleContext { } -export class AnalyzestmtContext extends antlr.ParserRuleContext { +export class AnalyzeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public analyze_keyword(): Analyze_keywordContext { - return this.getRuleContext(0, Analyze_keywordContext)!; + public analyzeKeyword(): AnalyzeKeywordContext { + return this.getRuleContext(0, AnalyzeKeywordContext)!; } - public opt_verbose(): Opt_verboseContext | null { - return this.getRuleContext(0, Opt_verboseContext); + public optionalVerbose(): OptionalVerboseContext | null { + return this.getRuleContext(0, OptionalVerboseContext); } - public opt_vacuum_relation_list(): Opt_vacuum_relation_listContext { - return this.getRuleContext(0, Opt_vacuum_relation_listContext)!; + public optionalVacuumRelationList(): OptionalVacuumRelationListContext { + return this.getRuleContext(0, OptionalVacuumRelationListContext)!; } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public vac_analyze_option_list(): Vac_analyze_option_listContext | null { - return this.getRuleContext(0, Vac_analyze_option_listContext); + public vacuumAnalyzeOptionList(): VacuumAnalyzeOptionListContext | null { + return this.getRuleContext(0, VacuumAnalyzeOptionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_analyzestmt; + return PostgreSqlParser.RULE_analyzeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAnalyzestmt) { - return visitor.visitAnalyzestmt(this); + if (visitor.visitAnalyzeStatement) { + return visitor.visitAnalyzeStatement(this); } else { return visitor.visitChildren(this); } @@ -99272,18 +92980,18 @@ export class AnalyzestmtContext extends antlr.ParserRuleContext { } -export class Vac_analyze_option_listContext extends antlr.ParserRuleContext { +export class VacuumAnalyzeOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public vac_analyze_option_elem(): Vac_analyze_option_elemContext[]; - public vac_analyze_option_elem(i: number): Vac_analyze_option_elemContext | null; - public vac_analyze_option_elem(i?: number): Vac_analyze_option_elemContext[] | Vac_analyze_option_elemContext | null { + public vacuumAnalyzeOptionElement(): VacuumAnalyzeOptionElementContext[]; + public vacuumAnalyzeOptionElement(i: number): VacuumAnalyzeOptionElementContext | null; + public vacuumAnalyzeOptionElement(i?: number): VacuumAnalyzeOptionElementContext[] | VacuumAnalyzeOptionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Vac_analyze_option_elemContext); + return this.getRuleContexts(VacuumAnalyzeOptionElementContext); } - return this.getRuleContext(i, Vac_analyze_option_elemContext); + return this.getRuleContext(i, VacuumAnalyzeOptionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -99295,11 +93003,11 @@ export class Vac_analyze_option_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vac_analyze_option_list; + return PostgreSqlParser.RULE_vacuumAnalyzeOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVac_analyze_option_list) { - return visitor.visitVac_analyze_option_list(this); + if (visitor.visitVacuumAnalyzeOptionList) { + return visitor.visitVacuumAnalyzeOptionList(this); } else { return visitor.visitChildren(this); } @@ -99307,7 +93015,7 @@ export class Vac_analyze_option_listContext extends antlr.ParserRuleContext { } -export class Analyze_keywordContext extends antlr.ParserRuleContext { +export class AnalyzeKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99318,11 +93026,11 @@ export class Analyze_keywordContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ANALYSE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_analyze_keyword; + return PostgreSqlParser.RULE_analyzeKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAnalyze_keyword) { - return visitor.visitAnalyze_keyword(this); + if (visitor.visitAnalyzeKeyword) { + return visitor.visitAnalyzeKeyword(this); } else { return visitor.visitChildren(this); } @@ -99330,22 +93038,22 @@ export class Analyze_keywordContext extends antlr.ParserRuleContext { } -export class Vac_analyze_option_elemContext extends antlr.ParserRuleContext { +export class VacuumAnalyzeOptionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public vac_analyze_option_name(): Vac_analyze_option_nameContext { - return this.getRuleContext(0, Vac_analyze_option_nameContext)!; + public vacuumAnalyzeOptionName(): VacuumAnalyzeOptionNameContext { + return this.getRuleContext(0, VacuumAnalyzeOptionNameContext)!; } - public vac_analyze_option_arg(): Vac_analyze_option_argContext { - return this.getRuleContext(0, Vac_analyze_option_argContext)!; + public vacuumAnalyzeOptionArgument(): VacuumAnalyzeOptionArgumentContext { + return this.getRuleContext(0, VacuumAnalyzeOptionArgumentContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vac_analyze_option_elem; + return PostgreSqlParser.RULE_vacuumAnalyzeOptionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVac_analyze_option_elem) { - return visitor.visitVac_analyze_option_elem(this); + if (visitor.visitVacuumAnalyzeOptionElement) { + return visitor.visitVacuumAnalyzeOptionElement(this); } else { return visitor.visitChildren(this); } @@ -99353,22 +93061,22 @@ export class Vac_analyze_option_elemContext extends antlr.ParserRuleContext { } -export class Vac_analyze_option_nameContext extends antlr.ParserRuleContext { +export class VacuumAnalyzeOptionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public nonreservedword(): NonreservedwordContext | null { - return this.getRuleContext(0, NonreservedwordContext); + public nonReservedWord(): NonReservedWordContext | null { + return this.getRuleContext(0, NonReservedWordContext); } - public analyze_keyword(): Analyze_keywordContext | null { - return this.getRuleContext(0, Analyze_keywordContext); + public analyzeKeyword(): AnalyzeKeywordContext | null { + return this.getRuleContext(0, AnalyzeKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vac_analyze_option_name; + return PostgreSqlParser.RULE_vacuumAnalyzeOptionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVac_analyze_option_name) { - return visitor.visitVac_analyze_option_name(this); + if (visitor.visitVacuumAnalyzeOptionName) { + return visitor.visitVacuumAnalyzeOptionName(this); } else { return visitor.visitChildren(this); } @@ -99376,42 +93084,22 @@ export class Vac_analyze_option_nameContext extends antlr.ParserRuleContext { } -export class Vac_analyze_option_argContext extends antlr.ParserRuleContext { +export class VacuumAnalyzeOptionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_boolean_or_string(): Opt_boolean_or_stringContext | null { - return this.getRuleContext(0, Opt_boolean_or_stringContext); - } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vac_analyze_option_arg; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVac_analyze_option_arg) { - return visitor.visitVac_analyze_option_arg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_analyzeContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public booleanOrString(): BooleanOrStringContext | null { + return this.getRuleContext(0, BooleanOrStringContext); } - public analyze_keyword(): Analyze_keywordContext | null { - return this.getRuleContext(0, Analyze_keywordContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_analyze; + return PostgreSqlParser.RULE_vacuumAnalyzeOptionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_analyze) { - return visitor.visitOpt_analyze(this); + if (visitor.visitVacuumAnalyzeOptionArgument) { + return visitor.visitVacuumAnalyzeOptionArgument(this); } else { return visitor.visitChildren(this); } @@ -99419,7 +93107,7 @@ export class Opt_analyzeContext extends antlr.ParserRuleContext { } -export class Opt_verboseContext extends antlr.ParserRuleContext { +export class OptionalVerboseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99427,51 +93115,11 @@ export class Opt_verboseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VERBOSE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_verbose; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_verbose) { - return visitor.visitOpt_verbose(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_fullContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public FULL(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.FULL, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_full; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_full) { - return visitor.visitOpt_full(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_freezeContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public FREEZE(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.FREEZE, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_freeze; + return PostgreSqlParser.RULE_optionalVerbose; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_freeze) { - return visitor.visitOpt_freeze(this); + if (visitor.visitOptionalVerbose) { + return visitor.visitOptionalVerbose(this); } else { return visitor.visitChildren(this); } @@ -99479,25 +93127,25 @@ export class Opt_freezeContext extends antlr.ParserRuleContext { } -export class Opt_name_listContext extends antlr.ParserRuleContext { +export class OptionalNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_name_list; + return PostgreSqlParser.RULE_optionalNameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_name_list) { - return visitor.visitOpt_name_list(this); + if (visitor.visitOptionalNameList) { + return visitor.visitOptionalNameList(this); } else { return visitor.visitChildren(this); } @@ -99505,22 +93153,22 @@ export class Opt_name_listContext extends antlr.ParserRuleContext { } -export class Vacuum_relationContext extends antlr.ParserRuleContext { +export class VacuumRelationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } - public opt_name_list(): Opt_name_listContext { - return this.getRuleContext(0, Opt_name_listContext)!; + public optionalNameList(): OptionalNameListContext { + return this.getRuleContext(0, OptionalNameListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vacuum_relation; + return PostgreSqlParser.RULE_vacuumRelation; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVacuum_relation) { - return visitor.visitVacuum_relation(this); + if (visitor.visitVacuumRelation) { + return visitor.visitVacuumRelation(this); } else { return visitor.visitChildren(this); } @@ -99528,18 +93176,18 @@ export class Vacuum_relationContext extends antlr.ParserRuleContext { } -export class Vacuum_relation_listContext extends antlr.ParserRuleContext { +export class OptionalVacuumRelationListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public vacuum_relation(): Vacuum_relationContext[]; - public vacuum_relation(i: number): Vacuum_relationContext | null; - public vacuum_relation(i?: number): Vacuum_relationContext[] | Vacuum_relationContext | null { + public vacuumRelation(): VacuumRelationContext[]; + public vacuumRelation(i: number): VacuumRelationContext | null; + public vacuumRelation(i?: number): VacuumRelationContext[] | VacuumRelationContext | null { if (i === undefined) { - return this.getRuleContexts(Vacuum_relationContext); + return this.getRuleContexts(VacuumRelationContext); } - return this.getRuleContext(i, Vacuum_relationContext); + return this.getRuleContext(i, VacuumRelationContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -99551,31 +93199,11 @@ export class Vacuum_relation_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_vacuum_relation_list; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitVacuum_relation_list) { - return visitor.visitVacuum_relation_list(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_vacuum_relation_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public vacuum_relation_list(): Vacuum_relation_listContext | null { - return this.getRuleContext(0, Vacuum_relation_listContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_vacuum_relation_list; + return PostgreSqlParser.RULE_optionalVacuumRelationList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_vacuum_relation_list) { - return visitor.visitOpt_vacuum_relation_list(this); + if (visitor.visitOptionalVacuumRelationList) { + return visitor.visitOptionalVacuumRelationList(this); } else { return visitor.visitChildren(this); } @@ -99583,21 +93211,21 @@ export class Opt_vacuum_relation_listContext extends antlr.ParserRuleContext { } -export class ExplainstmtContext extends antlr.ParserRuleContext { +export class ExplainStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public EXPLAIN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EXPLAIN, 0)!; } - public explainablestmt(): ExplainablestmtContext { - return this.getRuleContext(0, ExplainablestmtContext)!; + public explainableStatement(): ExplainableStatementContext { + return this.getRuleContext(0, ExplainableStatementContext)!; } - public analyze_keyword(): Analyze_keywordContext | null { - return this.getRuleContext(0, Analyze_keywordContext); + public analyzeKeyword(): AnalyzeKeywordContext | null { + return this.getRuleContext(0, AnalyzeKeywordContext); } - public opt_verbose(): Opt_verboseContext | null { - return this.getRuleContext(0, Opt_verboseContext); + public optionalVerbose(): OptionalVerboseContext | null { + return this.getRuleContext(0, OptionalVerboseContext); } public VERBOSE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VERBOSE, 0); @@ -99605,18 +93233,33 @@ export class ExplainstmtContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public explain_option_list(): Explain_option_listContext | null { - return this.getRuleContext(0, Explain_option_listContext); + public explainOptionElement(): ExplainOptionElementContext[]; + public explainOptionElement(i: number): ExplainOptionElementContext | null; + public explainOptionElement(i?: number): ExplainOptionElementContext[] | ExplainOptionElementContext | null { + if (i === undefined) { + return this.getRuleContexts(ExplainOptionElementContext); + } + + return this.getRuleContext(i, ExplainOptionElementContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 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(PostgreSqlParser.COMMA); + } else { + return this.getToken(PostgreSqlParser.COMMA, i); + } + } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explainstmt; + return PostgreSqlParser.RULE_explainStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplainstmt) { - return visitor.visitExplainstmt(this); + if (visitor.visitExplainStatement) { + return visitor.visitExplainStatement(this); } else { return visitor.visitChildren(this); } @@ -99624,43 +93267,43 @@ export class ExplainstmtContext extends antlr.ParserRuleContext { } -export class ExplainablestmtContext extends antlr.ParserRuleContext { +export class ExplainableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public insertstmt(): InsertstmtContext | null { - return this.getRuleContext(0, InsertstmtContext); + public insertStatement(): InsertStatementContext | null { + return this.getRuleContext(0, InsertStatementContext); } - public updatestmt(): UpdatestmtContext | null { - return this.getRuleContext(0, UpdatestmtContext); + public updateStatement(): UpdateStatementContext | null { + return this.getRuleContext(0, UpdateStatementContext); } - public deletestmt(): DeletestmtContext | null { - return this.getRuleContext(0, DeletestmtContext); + public deleteStatement(): DeleteStatementContext | null { + return this.getRuleContext(0, DeleteStatementContext); } - public declarecursorstmt(): DeclarecursorstmtContext | null { - return this.getRuleContext(0, DeclarecursorstmtContext); + public declareCursorStatement(): DeclareCursorStatementContext | null { + return this.getRuleContext(0, DeclareCursorStatementContext); } - public createasstmt(): CreateasstmtContext | null { - return this.getRuleContext(0, CreateasstmtContext); + public createAsStatement(): CreateAsStatementContext | null { + return this.getRuleContext(0, CreateAsStatementContext); } - public creatematviewstmt(): CreatematviewstmtContext | null { - return this.getRuleContext(0, CreatematviewstmtContext); + public createMaterializedViewStatement(): CreateMaterializedViewStatementContext | null { + return this.getRuleContext(0, CreateMaterializedViewStatementContext); } - public refreshmatviewstmt(): RefreshmatviewstmtContext | null { - return this.getRuleContext(0, RefreshmatviewstmtContext); + public refreshMaterializedViewStatement(): RefreshMaterializedViewStatementContext | null { + return this.getRuleContext(0, RefreshMaterializedViewStatementContext); } - public executestmt(): ExecutestmtContext | null { - return this.getRuleContext(0, ExecutestmtContext); + public executeStatement(): ExecuteStatementContext | null { + return this.getRuleContext(0, ExecuteStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explainablestmt; + return PostgreSqlParser.RULE_explainableStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplainablestmt) { - return visitor.visitExplainablestmt(this); + if (visitor.visitExplainableStatement) { + return visitor.visitExplainableStatement(this); } else { return visitor.visitChildren(this); } @@ -99668,34 +93311,22 @@ export class ExplainablestmtContext extends antlr.ParserRuleContext { } -export class Explain_option_listContext extends antlr.ParserRuleContext { +export class ExplainOptionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public explain_option_elem(): Explain_option_elemContext[]; - public explain_option_elem(i: number): Explain_option_elemContext | null; - public explain_option_elem(i?: number): Explain_option_elemContext[] | Explain_option_elemContext | null { - if (i === undefined) { - return this.getRuleContexts(Explain_option_elemContext); - } - - return this.getRuleContext(i, Explain_option_elemContext); + public explainOptionName(): ExplainOptionNameContext { + return this.getRuleContext(0, ExplainOptionNameContext)!; } - 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(PostgreSqlParser.COMMA); - } else { - return this.getToken(PostgreSqlParser.COMMA, i); - } + public explainOptionArgument(): ExplainOptionArgumentContext { + return this.getRuleContext(0, ExplainOptionArgumentContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explain_option_list; + return PostgreSqlParser.RULE_explainOptionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplain_option_list) { - return visitor.visitExplain_option_list(this); + if (visitor.visitExplainOptionElement) { + return visitor.visitExplainOptionElement(this); } else { return visitor.visitChildren(this); } @@ -99703,22 +93334,22 @@ export class Explain_option_listContext extends antlr.ParserRuleContext { } -export class Explain_option_elemContext extends antlr.ParserRuleContext { +export class ExplainOptionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public explain_option_name(): Explain_option_nameContext { - return this.getRuleContext(0, Explain_option_nameContext)!; + public nonReservedWord(): NonReservedWordContext | null { + return this.getRuleContext(0, NonReservedWordContext); } - public explain_option_arg(): Explain_option_argContext { - return this.getRuleContext(0, Explain_option_argContext)!; + public analyzeKeyword(): AnalyzeKeywordContext | null { + return this.getRuleContext(0, AnalyzeKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explain_option_elem; + return PostgreSqlParser.RULE_explainOptionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplain_option_elem) { - return visitor.visitExplain_option_elem(this); + if (visitor.visitExplainOptionName) { + return visitor.visitExplainOptionName(this); } else { return visitor.visitChildren(this); } @@ -99726,22 +93357,22 @@ export class Explain_option_elemContext extends antlr.ParserRuleContext { } -export class Explain_option_nameContext extends antlr.ParserRuleContext { +export class ExplainOptionArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public nonreservedword(): NonreservedwordContext | null { - return this.getRuleContext(0, NonreservedwordContext); + public booleanOrString(): BooleanOrStringContext | null { + return this.getRuleContext(0, BooleanOrStringContext); } - public analyze_keyword(): Analyze_keywordContext | null { - return this.getRuleContext(0, Analyze_keywordContext); + public numericOnly(): NumericOnlyContext | null { + return this.getRuleContext(0, NumericOnlyContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explain_option_name; + return PostgreSqlParser.RULE_explainOptionArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplain_option_name) { - return visitor.visitExplain_option_name(this); + if (visitor.visitExplainOptionArgument) { + return visitor.visitExplainOptionArgument(this); } else { return visitor.visitChildren(this); } @@ -99749,30 +93380,7 @@ export class Explain_option_nameContext extends antlr.ParserRuleContext { } -export class Explain_option_argContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public opt_boolean_or_string(): Opt_boolean_or_stringContext | null { - return this.getRuleContext(0, Opt_boolean_or_stringContext); - } - public numericonly(): NumericonlyContext | null { - return this.getRuleContext(0, NumericonlyContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explain_option_arg; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplain_option_arg) { - return visitor.visitExplain_option_arg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PreparestmtContext extends antlr.ParserRuleContext { +export class PrepareStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99782,21 +93390,21 @@ export class PreparestmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public prep_type_clause(): Prep_type_clauseContext { - return this.getRuleContext(0, Prep_type_clauseContext)!; + public prepareTypeClause(): PrepareTypeClauseContext { + return this.getRuleContext(0, PrepareTypeClauseContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public preparablestmt(): PreparablestmtContext { - return this.getRuleContext(0, PreparablestmtContext)!; + public preparableStatement(): PreparableStatementContext { + return this.getRuleContext(0, PreparableStatementContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_preparestmt; + return PostgreSqlParser.RULE_prepareStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPreparestmt) { - return visitor.visitPreparestmt(this); + if (visitor.visitPrepareStatement) { + return visitor.visitPrepareStatement(this); } else { return visitor.visitChildren(this); } @@ -99804,25 +93412,25 @@ export class PreparestmtContext extends antlr.ParserRuleContext { } -export class Prep_type_clauseContext extends antlr.ParserRuleContext { +export class PrepareTypeClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public type_list(): Type_listContext | null { - return this.getRuleContext(0, Type_listContext); + public typeList(): TypeListContext | null { + return this.getRuleContext(0, TypeListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_prep_type_clause; + return PostgreSqlParser.RULE_prepareTypeClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPrep_type_clause) { - return visitor.visitPrep_type_clause(this); + if (visitor.visitPrepareTypeClause) { + return visitor.visitPrepareTypeClause(this); } else { return visitor.visitChildren(this); } @@ -99830,28 +93438,28 @@ export class Prep_type_clauseContext extends antlr.ParserRuleContext { } -export class PreparablestmtContext extends antlr.ParserRuleContext { +export class PreparableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public insertstmt(): InsertstmtContext | null { - return this.getRuleContext(0, InsertstmtContext); + public insertStatement(): InsertStatementContext | null { + return this.getRuleContext(0, InsertStatementContext); } - public updatestmt(): UpdatestmtContext | null { - return this.getRuleContext(0, UpdatestmtContext); + public updateStatement(): UpdateStatementContext | null { + return this.getRuleContext(0, UpdateStatementContext); } - public deletestmt(): DeletestmtContext | null { - return this.getRuleContext(0, DeletestmtContext); + public deleteStatement(): DeleteStatementContext | null { + return this.getRuleContext(0, DeleteStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_preparablestmt; + return PostgreSqlParser.RULE_preparableStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPreparablestmt) { - return visitor.visitPreparablestmt(this); + if (visitor.visitPreparableStatement) { + return visitor.visitPreparableStatement(this); } else { return visitor.visitChildren(this); } @@ -99859,7 +93467,7 @@ export class PreparablestmtContext extends antlr.ParserRuleContext { } -export class ExecutestmtContext extends antlr.ParserRuleContext { +export class ExecuteStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99869,26 +93477,26 @@ export class ExecutestmtContext extends antlr.ParserRuleContext { public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public execute_param_clause(): Execute_param_clauseContext { - return this.getRuleContext(0, Execute_param_clauseContext)!; + public executeParameterClause(): ExecuteParameterClauseContext { + return this.getRuleContext(0, ExecuteParameterClauseContext)!; } public CREATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CREATE, 0); } - public opttemp(): OpttempContext | null { - return this.getRuleContext(0, OpttempContext); + public temporaryOption(): TemporaryOptionContext | null { + return this.getRuleContext(0, TemporaryOptionContext); } public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public create_as_target(): Create_as_targetContext | null { - return this.getRuleContext(0, Create_as_targetContext); + public createAsTarget(): CreateAsTargetContext | null { + return this.getRuleContext(0, CreateAsTargetContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public opt_with_data(): Opt_with_dataContext | null { - return this.getRuleContext(0, Opt_with_dataContext); + public withData(): WithDataContext | null { + return this.getRuleContext(0, WithDataContext); } public IF_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IF_P, 0); @@ -99900,11 +93508,11 @@ export class ExecutestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXISTS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_executestmt; + return PostgreSqlParser.RULE_executeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExecutestmt) { - return visitor.visitExecutestmt(this); + if (visitor.visitExecuteStatement) { + return visitor.visitExecuteStatement(this); } else { return visitor.visitChildren(this); } @@ -99912,25 +93520,25 @@ export class ExecutestmtContext extends antlr.ParserRuleContext { } -export class Execute_param_clauseContext extends antlr.ParserRuleContext { +export class ExecuteParameterClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_execute_param_clause; + return PostgreSqlParser.RULE_executeParameterClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExecute_param_clause) { - return visitor.visitExecute_param_clause(this); + if (visitor.visitExecuteParameterClause) { + return visitor.visitExecuteParameterClause(this); } else { return visitor.visitChildren(this); } @@ -99938,7 +93546,7 @@ export class Execute_param_clauseContext extends antlr.ParserRuleContext { } -export class DeallocatestmtContext extends antlr.ParserRuleContext { +export class DeallocateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99955,11 +93563,11 @@ export class DeallocatestmtContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_deallocatestmt; + return PostgreSqlParser.RULE_deallocateStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDeallocatestmt) { - return visitor.visitDeallocatestmt(this); + if (visitor.visitDeallocateStatement) { + return visitor.visitDeallocateStatement(this); } else { return visitor.visitChildren(this); } @@ -99967,7 +93575,7 @@ export class DeallocatestmtContext extends antlr.ParserRuleContext { } -export class InsertstmtContext extends antlr.ParserRuleContext { +export class InsertStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -99977,27 +93585,27 @@ export class InsertstmtContext extends antlr.ParserRuleContext { public INTO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INTO, 0)!; } - public insert_target(): Insert_targetContext { - return this.getRuleContext(0, Insert_targetContext)!; + public insertTarget(): InsertTargetContext { + return this.getRuleContext(0, InsertTargetContext)!; } - public insert_rest(): Insert_restContext { - return this.getRuleContext(0, Insert_restContext)!; + public insertRest(): InsertRestContext { + return this.getRuleContext(0, InsertRestContext)!; } - public opt_on_conflict(): Opt_on_conflictContext { - return this.getRuleContext(0, Opt_on_conflictContext)!; + public optionalOnConflict(): OptionalOnConflictContext { + return this.getRuleContext(0, OptionalOnConflictContext)!; } - public returning_clause(): Returning_clauseContext { - return this.getRuleContext(0, Returning_clauseContext)!; + public returningClause(): ReturningClauseContext { + return this.getRuleContext(0, ReturningClauseContext)!; } - public with_clause(): With_clauseContext | null { - return this.getRuleContext(0, With_clauseContext); + public withClause(): WithClauseContext | null { + return this.getRuleContext(0, WithClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_insertstmt; + return PostgreSqlParser.RULE_insertStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInsertstmt) { - return visitor.visitInsertstmt(this); + if (visitor.visitInsertStatement) { + return visitor.visitInsertStatement(this); } else { return visitor.visitChildren(this); } @@ -100005,25 +93613,25 @@ export class InsertstmtContext extends antlr.ParserRuleContext { } -export class Insert_targetContext extends antlr.ParserRuleContext { +export class InsertTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_insert_target; + return PostgreSqlParser.RULE_insertTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInsert_target) { - return visitor.visitInsert_target(this); + if (visitor.visitInsertTarget) { + return visitor.visitInsertTarget(this); } else { return visitor.visitChildren(this); } @@ -100031,18 +93639,18 @@ export class Insert_targetContext extends antlr.ParserRuleContext { } -export class Insert_restContext extends antlr.ParserRuleContext { +export class InsertRestContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } public OVERRIDING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OVERRIDING, 0); } - public override_kind(): Override_kindContext | null { - return this.getRuleContext(0, Override_kindContext); + public overrideKind(): OverrideKindContext | null { + return this.getRuleContext(0, OverrideKindContext); } public VALUE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VALUE_P, 0); @@ -100050,8 +93658,8 @@ export class Insert_restContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public insert_column_list(): Insert_column_listContext | null { - return this.getRuleContext(0, Insert_column_listContext); + public insertColumnList(): InsertColumnListContext | null { + return this.getRuleContext(0, InsertColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -100063,11 +93671,11 @@ export class Insert_restContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VALUES, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_insert_rest; + return PostgreSqlParser.RULE_insertRest; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInsert_rest) { - return visitor.visitInsert_rest(this); + if (visitor.visitInsertRest) { + return visitor.visitInsertRest(this); } else { return visitor.visitChildren(this); } @@ -100075,7 +93683,7 @@ export class Insert_restContext extends antlr.ParserRuleContext { } -export class Override_kindContext extends antlr.ParserRuleContext { +export class OverrideKindContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100086,11 +93694,11 @@ export class Override_kindContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SYSTEM_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_override_kind; + return PostgreSqlParser.RULE_overrideKind; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOverride_kind) { - return visitor.visitOverride_kind(this); + if (visitor.visitOverrideKind) { + return visitor.visitOverrideKind(this); } else { return visitor.visitChildren(this); } @@ -100098,18 +93706,18 @@ export class Override_kindContext extends antlr.ParserRuleContext { } -export class Insert_column_listContext extends antlr.ParserRuleContext { +export class InsertColumnListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public insert_column_item(): Insert_column_itemContext[]; - public insert_column_item(i: number): Insert_column_itemContext | null; - public insert_column_item(i?: number): Insert_column_itemContext[] | Insert_column_itemContext | null { + public insertColumnItem(): InsertColumnItemContext[]; + public insertColumnItem(i: number): InsertColumnItemContext | null; + public insertColumnItem(i?: number): InsertColumnItemContext[] | InsertColumnItemContext | null { if (i === undefined) { - return this.getRuleContexts(Insert_column_itemContext); + return this.getRuleContexts(InsertColumnItemContext); } - return this.getRuleContext(i, Insert_column_itemContext); + return this.getRuleContext(i, InsertColumnItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -100121,11 +93729,11 @@ export class Insert_column_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_insert_column_list; + return PostgreSqlParser.RULE_insertColumnList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInsert_column_list) { - return visitor.visitInsert_column_list(this); + if (visitor.visitInsertColumnList) { + return visitor.visitInsertColumnList(this); } else { return visitor.visitChildren(this); } @@ -100133,22 +93741,22 @@ export class Insert_column_listContext extends antlr.ParserRuleContext { } -export class Insert_column_itemContext extends antlr.ParserRuleContext { +export class InsertColumnItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public opt_indirection(): Opt_indirectionContext { - return this.getRuleContext(0, Opt_indirectionContext)!; + public optionalIndirection(): OptionalIndirectionContext { + return this.getRuleContext(0, OptionalIndirectionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_insert_column_item; + return PostgreSqlParser.RULE_insertColumnItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInsert_column_item) { - return visitor.visitInsert_column_item(this); + if (visitor.visitInsertColumnItem) { + return visitor.visitInsertColumnItem(this); } else { return visitor.visitChildren(this); } @@ -100156,7 +93764,7 @@ export class Insert_column_itemContext extends antlr.ParserRuleContext { } -export class Opt_on_conflictContext extends antlr.ParserRuleContext { +export class OptionalOnConflictContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100166,8 +93774,8 @@ export class Opt_on_conflictContext extends antlr.ParserRuleContext { public CONFLICT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CONFLICT, 0); } - public opt_conf_expr(): Opt_conf_exprContext | null { - return this.getRuleContext(0, Opt_conf_exprContext); + public optionalConflictExpr(): OptionalConflictExprContext | null { + return this.getRuleContext(0, OptionalConflictExprContext); } public DO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DO, 0); @@ -100178,21 +93786,21 @@ export class Opt_on_conflictContext extends antlr.ParserRuleContext { public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public set_clause_list(): Set_clause_listContext | null { - return this.getRuleContext(0, Set_clause_listContext); + public setClauseList(): SetClauseListContext | null { + return this.getRuleContext(0, SetClauseListContext); } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public NOTHING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOTHING, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_on_conflict; + return PostgreSqlParser.RULE_optionalOnConflict; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_on_conflict) { - return visitor.visitOpt_on_conflict(this); + if (visitor.visitOptionalOnConflict) { + return visitor.visitOptionalOnConflict(this); } else { return visitor.visitChildren(this); } @@ -100200,21 +93808,21 @@ export class Opt_on_conflictContext extends antlr.ParserRuleContext { } -export class Opt_conf_exprContext extends antlr.ParserRuleContext { +export class OptionalConflictExprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public index_params(): Index_paramsContext | null { - return this.getRuleContext(0, Index_paramsContext); + public indexParameters(): IndexParametersContext | null { + return this.getRuleContext(0, IndexParametersContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } public ON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ON, 0); @@ -100226,11 +93834,11 @@ export class Opt_conf_exprContext extends antlr.ParserRuleContext { return this.getRuleContext(0, NameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_conf_expr; + return PostgreSqlParser.RULE_optionalConflictExpr; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_conf_expr) { - return visitor.visitOpt_conf_expr(this); + if (visitor.visitOptionalConflictExpr) { + return visitor.visitOptionalConflictExpr(this); } else { return visitor.visitChildren(this); } @@ -100238,22 +93846,22 @@ export class Opt_conf_exprContext extends antlr.ParserRuleContext { } -export class Returning_clauseContext extends antlr.ParserRuleContext { +export class ReturningClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public RETURNING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RETURNING, 0); } - public target_list(): Target_listContext | null { - return this.getRuleContext(0, Target_listContext); + public targetList(): TargetListContext | null { + return this.getRuleContext(0, TargetListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_returning_clause; + return PostgreSqlParser.RULE_returningClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReturning_clause) { - return visitor.visitReturning_clause(this); + if (visitor.visitReturningClause) { + return visitor.visitReturningClause(this); } else { return visitor.visitChildren(this); } @@ -100261,21 +93869,21 @@ export class Returning_clauseContext extends antlr.ParserRuleContext { } -export class MergestmtContext extends antlr.ParserRuleContext { +export class MergeStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public MERGE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.MERGE, 0)!; } - public qualified_name(): Qualified_nameContext[]; - public qualified_name(i: number): Qualified_nameContext | null; - public qualified_name(i?: number): Qualified_nameContext[] | Qualified_nameContext | null { + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { if (i === undefined) { - return this.getRuleContexts(Qualified_nameContext); + return this.getRuleContexts(QualifiedNameContext); } - return this.getRuleContext(i, Qualified_nameContext); + return this.getRuleContext(i, QualifiedNameContext); } public USING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.USING, 0)!; @@ -100283,39 +93891,39 @@ export class MergestmtContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ON, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } - public merge_insert_clause(): Merge_insert_clauseContext | null { - return this.getRuleContext(0, Merge_insert_clauseContext); + public mergeInsertClause(): MergeInsertClauseContext | null { + return this.getRuleContext(0, MergeInsertClauseContext); } - public merge_update_clause(): Merge_update_clauseContext | null { - return this.getRuleContext(0, Merge_update_clauseContext); + public mergeUpdateClause(): MergeUpdateClauseContext | null { + return this.getRuleContext(0, MergeUpdateClauseContext); } public INTO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INTO, 0); } - public alias_clause(): Alias_clauseContext[]; - public alias_clause(i: number): Alias_clauseContext | null; - public alias_clause(i?: number): Alias_clauseContext[] | Alias_clauseContext | null { + public aliasClause(): AliasClauseContext[]; + public aliasClause(i: number): AliasClauseContext | null; + public aliasClause(i?: number): AliasClauseContext[] | AliasClauseContext | null { if (i === undefined) { - return this.getRuleContexts(Alias_clauseContext); + return this.getRuleContexts(AliasClauseContext); } - return this.getRuleContext(i, Alias_clauseContext); + return this.getRuleContext(i, AliasClauseContext); } - public merge_delete_clause(): Merge_delete_clauseContext | null { - return this.getRuleContext(0, Merge_delete_clauseContext); + public mergeDeleteClause(): MergeDeleteClauseContext | null { + return this.getRuleContext(0, MergeDeleteClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_mergestmt; + return PostgreSqlParser.RULE_mergeStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMergestmt) { - return visitor.visitMergestmt(this); + if (visitor.visitMergeStatement) { + return visitor.visitMergeStatement(this); } else { return visitor.visitChildren(this); } @@ -100323,7 +93931,7 @@ export class MergestmtContext extends antlr.ParserRuleContext { } -export class Merge_insert_clauseContext extends antlr.ParserRuleContext { +export class MergeInsertClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100339,14 +93947,14 @@ export class Merge_insert_clauseContext extends antlr.ParserRuleContext { public INSERT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INSERT, 0)!; } - public values_clause(): Values_clauseContext { - return this.getRuleContext(0, Values_clauseContext)!; + public valuesClause(): ValuesClauseContext { + return this.getRuleContext(0, ValuesClauseContext)!; } public AND(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AND, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public THEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.THEN, 0); @@ -100354,18 +93962,18 @@ export class Merge_insert_clauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public insert_column_list(): Insert_column_listContext | null { - return this.getRuleContext(0, Insert_column_listContext); + public insertColumnList(): InsertColumnListContext | null { + return this.getRuleContext(0, InsertColumnListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_merge_insert_clause; + return PostgreSqlParser.RULE_mergeInsertClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMerge_insert_clause) { - return visitor.visitMerge_insert_clause(this); + if (visitor.visitMergeInsertClause) { + return visitor.visitMergeInsertClause(this); } else { return visitor.visitChildren(this); } @@ -100373,7 +93981,7 @@ export class Merge_insert_clauseContext extends antlr.ParserRuleContext { } -export class Merge_update_clauseContext extends antlr.ParserRuleContext { +export class MergeUpdateClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100389,24 +93997,24 @@ export class Merge_update_clauseContext extends antlr.ParserRuleContext { public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; } - public set_clause_list(): Set_clause_listContext { - return this.getRuleContext(0, Set_clause_listContext)!; + public setClauseList(): SetClauseListContext { + return this.getRuleContext(0, SetClauseListContext)!; } public AND(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AND, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public THEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.THEN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_merge_update_clause; + return PostgreSqlParser.RULE_mergeUpdateClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMerge_update_clause) { - return visitor.visitMerge_update_clause(this); + if (visitor.visitMergeUpdateClause) { + return visitor.visitMergeUpdateClause(this); } else { return visitor.visitChildren(this); } @@ -100414,7 +94022,7 @@ export class Merge_update_clauseContext extends antlr.ParserRuleContext { } -export class Merge_delete_clauseContext extends antlr.ParserRuleContext { +export class MergeDeleteClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100431,11 +94039,11 @@ export class Merge_delete_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.THEN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_merge_delete_clause; + return PostgreSqlParser.RULE_mergeDeleteClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMerge_delete_clause) { - return visitor.visitMerge_delete_clause(this); + if (visitor.visitMergeDeleteClause) { + return visitor.visitMergeDeleteClause(this); } else { return visitor.visitChildren(this); } @@ -100443,7 +94051,7 @@ export class Merge_delete_clauseContext extends antlr.ParserRuleContext { } -export class DeletestmtContext extends antlr.ParserRuleContext { +export class DeleteStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100453,27 +94061,27 @@ export class DeletestmtContext extends antlr.ParserRuleContext { public FROM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FROM, 0)!; } - public relation_expr_opt_alias(): Relation_expr_opt_aliasContext { - return this.getRuleContext(0, Relation_expr_opt_aliasContext)!; + public relationExpressionOptionalAlias(): RelationExpressionOptionalAliasContext { + return this.getRuleContext(0, RelationExpressionOptionalAliasContext)!; } - public using_clause(): Using_clauseContext { - return this.getRuleContext(0, Using_clauseContext)!; + public usingClause(): UsingClauseContext { + return this.getRuleContext(0, UsingClauseContext)!; } - public where_or_current_clause(): Where_or_current_clauseContext { - return this.getRuleContext(0, Where_or_current_clauseContext)!; + public whereOrCurrentClause(): WhereOrCurrentClauseContext { + return this.getRuleContext(0, WhereOrCurrentClauseContext)!; } - public returning_clause(): Returning_clauseContext { - return this.getRuleContext(0, Returning_clauseContext)!; + public returningClause(): ReturningClauseContext { + return this.getRuleContext(0, ReturningClauseContext)!; } - public with_clause(): With_clauseContext | null { - return this.getRuleContext(0, With_clauseContext); + public withClause(): WithClauseContext | null { + return this.getRuleContext(0, WithClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_deletestmt; + return PostgreSqlParser.RULE_deleteStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDeletestmt) { - return visitor.visitDeletestmt(this); + if (visitor.visitDeleteStatement) { + return visitor.visitDeleteStatement(this); } else { return visitor.visitChildren(this); } @@ -100481,22 +94089,22 @@ export class DeletestmtContext extends antlr.ParserRuleContext { } -export class Using_clauseContext extends antlr.ParserRuleContext { +export class UsingClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public from_list(): From_listContext | null { - return this.getRuleContext(0, From_listContext); + public fromList(): FromListContext | null { + return this.getRuleContext(0, FromListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_using_clause; + return PostgreSqlParser.RULE_usingClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitUsing_clause) { - return visitor.visitUsing_clause(this); + if (visitor.visitUsingClause) { + return visitor.visitUsingClause(this); } else { return visitor.visitChildren(this); } @@ -100504,31 +94112,31 @@ export class Using_clauseContext extends antlr.ParserRuleContext { } -export class LockstmtContext extends antlr.ParserRuleContext { +export class LockStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LOCK_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LOCK_P, 0)!; } - public opt_table(): Opt_tableContext { - return this.getRuleContext(0, Opt_tableContext)!; + public optionalTable(): OptionalTableContext { + return this.getRuleContext(0, OptionalTableContext)!; } - public relation_expr_list(): Relation_expr_listContext { - return this.getRuleContext(0, Relation_expr_listContext)!; + public relationExpressionList(): RelationExpressionListContext { + return this.getRuleContext(0, RelationExpressionListContext)!; } - public opt_lock(): Opt_lockContext { - return this.getRuleContext(0, Opt_lockContext)!; + public optionalLock(): OptionalLockContext { + return this.getRuleContext(0, OptionalLockContext)!; } - public opt_nowait(): Opt_nowaitContext { - return this.getRuleContext(0, Opt_nowaitContext)!; + public optionalNowait(): OptionalNowaitContext { + return this.getRuleContext(0, OptionalNowaitContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_lockstmt; + return PostgreSqlParser.RULE_lockStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLockstmt) { - return visitor.visitLockstmt(this); + if (visitor.visitLockStatement) { + return visitor.visitLockStatement(this); } else { return visitor.visitChildren(this); } @@ -100536,25 +94144,25 @@ export class LockstmtContext extends antlr.ParserRuleContext { } -export class Opt_lockContext extends antlr.ParserRuleContext { +export class OptionalLockContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public IN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IN_P, 0); } - public lock_type(): Lock_typeContext | null { - return this.getRuleContext(0, Lock_typeContext); + public lockType(): LockTypeContext | null { + return this.getRuleContext(0, LockTypeContext); } public MODE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MODE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_lock; + return PostgreSqlParser.RULE_optionalLock; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_lock) { - return visitor.visitOpt_lock(this); + if (visitor.visitOptionalLock) { + return visitor.visitOptionalLock(this); } else { return visitor.visitChildren(this); } @@ -100562,7 +94170,7 @@ export class Opt_lockContext extends antlr.ParserRuleContext { } -export class Lock_typeContext extends antlr.ParserRuleContext { +export class LockTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100582,11 +94190,11 @@ export class Lock_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.UPDATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_lock_type; + return PostgreSqlParser.RULE_lockType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLock_type) { - return visitor.visitLock_type(this); + if (visitor.visitLockType) { + return visitor.visitLockType(this); } else { return visitor.visitChildren(this); } @@ -100594,7 +94202,7 @@ export class Lock_typeContext extends antlr.ParserRuleContext { } -export class Opt_nowaitContext extends antlr.ParserRuleContext { +export class OptionalNowaitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100602,11 +94210,11 @@ export class Opt_nowaitContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOWAIT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_nowait; + return PostgreSqlParser.RULE_optionalNowait; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_nowait) { - return visitor.visitOpt_nowait(this); + if (visitor.visitOptionalNowait) { + return visitor.visitOptionalNowait(this); } else { return visitor.visitChildren(this); } @@ -100614,7 +94222,7 @@ export class Opt_nowaitContext extends antlr.ParserRuleContext { } -export class Opt_nowait_or_skipContext extends antlr.ParserRuleContext { +export class OptionalNowaitOrSkipContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100628,11 +94236,11 @@ export class Opt_nowait_or_skipContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.LOCKED, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_nowait_or_skip; + return PostgreSqlParser.RULE_optionalNowaitOrSkip; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_nowait_or_skip) { - return visitor.visitOpt_nowait_or_skip(this); + if (visitor.visitOptionalNowaitOrSkip) { + return visitor.visitOptionalNowaitOrSkip(this); } else { return visitor.visitChildren(this); } @@ -100640,40 +94248,40 @@ export class Opt_nowait_or_skipContext extends antlr.ParserRuleContext { } -export class UpdatestmtContext extends antlr.ParserRuleContext { +export class UpdateStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public UPDATE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.UPDATE, 0)!; } - public relation_expr_opt_alias(): Relation_expr_opt_aliasContext { - return this.getRuleContext(0, Relation_expr_opt_aliasContext)!; + public relationExpressionOptionalAlias(): RelationExpressionOptionalAliasContext { + return this.getRuleContext(0, RelationExpressionOptionalAliasContext)!; } public SET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SET, 0)!; } - public set_clause_list(): Set_clause_listContext { - return this.getRuleContext(0, Set_clause_listContext)!; + public setClauseList(): SetClauseListContext { + return this.getRuleContext(0, SetClauseListContext)!; } - public from_clause(): From_clauseContext { - return this.getRuleContext(0, From_clauseContext)!; + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext)!; } - public where_or_current_clause(): Where_or_current_clauseContext { - return this.getRuleContext(0, Where_or_current_clauseContext)!; + public whereOrCurrentClause(): WhereOrCurrentClauseContext { + return this.getRuleContext(0, WhereOrCurrentClauseContext)!; } - public returning_clause(): Returning_clauseContext { - return this.getRuleContext(0, Returning_clauseContext)!; + public returningClause(): ReturningClauseContext { + return this.getRuleContext(0, ReturningClauseContext)!; } - public with_clause(): With_clauseContext | null { - return this.getRuleContext(0, With_clauseContext); + public withClause(): WithClauseContext | null { + return this.getRuleContext(0, WithClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_updatestmt; + return PostgreSqlParser.RULE_updateStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitUpdatestmt) { - return visitor.visitUpdatestmt(this); + if (visitor.visitUpdateStatement) { + return visitor.visitUpdateStatement(this); } else { return visitor.visitChildren(this); } @@ -100681,18 +94289,18 @@ export class UpdatestmtContext extends antlr.ParserRuleContext { } -export class Set_clause_listContext extends antlr.ParserRuleContext { +export class SetClauseListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public set_clause(): Set_clauseContext[]; - public set_clause(i: number): Set_clauseContext | null; - public set_clause(i?: number): Set_clauseContext[] | Set_clauseContext | null { + public setClause(): SetClauseContext[]; + public setClause(i: number): SetClauseContext | null; + public setClause(i?: number): SetClauseContext[] | SetClauseContext | null { if (i === undefined) { - return this.getRuleContexts(Set_clauseContext); + return this.getRuleContexts(SetClauseContext); } - return this.getRuleContext(i, Set_clauseContext); + return this.getRuleContext(i, SetClauseContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -100704,11 +94312,11 @@ export class Set_clause_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_clause_list; + return PostgreSqlParser.RULE_setClauseList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_clause_list) { - return visitor.visitSet_clause_list(this); + if (visitor.visitSetClauseList) { + return visitor.visitSetClauseList(this); } else { return visitor.visitChildren(this); } @@ -100716,77 +94324,31 @@ export class Set_clause_listContext extends antlr.ParserRuleContext { } -export class Set_clauseContext extends antlr.ParserRuleContext { +export class SetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public set_target(): Set_targetContext | null { - return this.getRuleContext(0, Set_targetContext); + public setTarget(): SetTargetContext[]; + public setTarget(i: number): SetTargetContext | null; + public setTarget(i?: number): SetTargetContext[] | SetTargetContext | null { + if (i === undefined) { + return this.getRuleContexts(SetTargetContext); + } + + return this.getRuleContext(i, SetTargetContext); } public EQUAL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EQUAL, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public set_target_list(): Set_target_listContext | null { - return this.getRuleContext(0, Set_target_listContext); - } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_clause) { - return visitor.visitSet_clause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Set_targetContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; - } - public opt_indirection(): Opt_indirectionContext { - return this.getRuleContext(0, Opt_indirectionContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_target; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_target) { - return visitor.visitSet_target(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Set_target_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public set_target(): Set_targetContext[]; - public set_target(i: number): Set_targetContext | null; - public set_target(i?: number): Set_targetContext[] | Set_targetContext | null { - if (i === undefined) { - return this.getRuleContexts(Set_targetContext); - } - - return this.getRuleContext(i, Set_targetContext); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -100797,11 +94359,11 @@ export class Set_target_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_set_target_list; + return PostgreSqlParser.RULE_setClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSet_target_list) { - return visitor.visitSet_target_list(this); + if (visitor.visitSetClause) { + return visitor.visitSetClause(this); } else { return visitor.visitChildren(this); } @@ -100809,37 +94371,22 @@ export class Set_target_listContext extends antlr.ParserRuleContext { } -export class DeclarecursorstmtContext extends antlr.ParserRuleContext { +export class SetTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public DECLARE(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.DECLARE, 0)!; - } - public cursor_name(): Cursor_nameContext { - return this.getRuleContext(0, Cursor_nameContext)!; - } - public cursor_options(): Cursor_optionsContext { - return this.getRuleContext(0, Cursor_optionsContext)!; - } - public CURSOR(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CURSOR, 0)!; - } - public opt_hold(): Opt_holdContext { - return this.getRuleContext(0, Opt_holdContext)!; - } - public FOR(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.FOR, 0)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public selectstmt(): SelectstmtContext { - return this.getRuleContext(0, SelectstmtContext)!; + public optionalIndirection(): OptionalIndirectionContext { + return this.getRuleContext(0, OptionalIndirectionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_declarecursorstmt; + return PostgreSqlParser.RULE_setTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDeclarecursorstmt) { - return visitor.visitDeclarecursorstmt(this); + if (visitor.visitSetTarget) { + return visitor.visitSetTarget(this); } else { return visitor.visitChildren(this); } @@ -100847,29 +94394,27 @@ export class DeclarecursorstmtContext extends antlr.ParserRuleContext { } -export class Cursor_nameContext extends antlr.ParserRuleContext { +export class DeclareCursorStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public name(): NameContext { - return this.getRuleContext(0, NameContext)!; + public DECLARE(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.DECLARE, 0)!; } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cursor_name; + public cursorName(): CursorNameContext { + return this.getRuleContext(0, CursorNameContext)!; } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCursor_name) { - return visitor.visitCursor_name(this); - } else { - return visitor.visitChildren(this); - } + public CURSOR(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.CURSOR, 0)!; } -} - - -export class Cursor_optionsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public optionalHold(): OptionalHoldContext { + return this.getRuleContext(0, OptionalHoldContext)!; + } + public FOR(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.FOR, 0)!; + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; } public NO(): antlr.TerminalNode[]; public NO(i: number): antlr.TerminalNode | null; @@ -100908,11 +94453,31 @@ export class Cursor_optionsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cursor_options; + return PostgreSqlParser.RULE_declareCursorStatement; + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitDeclareCursorStatement) { + return visitor.visitDeclareCursorStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class CursorNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public name(): NameContext { + return this.getRuleContext(0, NameContext)!; + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_cursorName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCursor_options) { - return visitor.visitCursor_options(this); + if (visitor.visitCursorName) { + return visitor.visitCursorName(this); } else { return visitor.visitChildren(this); } @@ -100920,7 +94485,7 @@ export class Cursor_optionsContext extends antlr.ParserRuleContext { } -export class Opt_holdContext extends antlr.ParserRuleContext { +export class OptionalHoldContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -100934,11 +94499,11 @@ export class Opt_holdContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.WITHOUT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_hold; + return PostgreSqlParser.RULE_optionalHold; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_hold) { - return visitor.visitOpt_hold(this); + if (visitor.visitOptionalHold) { + return visitor.visitOptionalHold(this); } else { return visitor.visitChildren(this); } @@ -100946,22 +94511,22 @@ export class Opt_holdContext extends antlr.ParserRuleContext { } -export class SelectstmtContext extends antlr.ParserRuleContext { +export class SelectStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public select_no_parens(): Select_no_parensContext | null { - return this.getRuleContext(0, Select_no_parensContext); + public selectWithoutParenthesis(): SelectWithoutParenthesisContext | null { + return this.getRuleContext(0, SelectWithoutParenthesisContext); } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_selectstmt; + return PostgreSqlParser.RULE_selectStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelectstmt) { - return visitor.visitSelectstmt(this); + if (visitor.visitSelectStatement) { + return visitor.visitSelectStatement(this); } else { return visitor.visitChildren(this); } @@ -100969,28 +94534,28 @@ export class SelectstmtContext extends antlr.ParserRuleContext { } -export class Select_with_parensContext extends antlr.ParserRuleContext { +export class SelectWithParenthesisContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public select_no_parens(): Select_no_parensContext | null { - return this.getRuleContext(0, Select_no_parensContext); + public selectWithoutParenthesis(): SelectWithoutParenthesisContext | null { + return this.getRuleContext(0, SelectWithoutParenthesisContext); } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_with_parens; + return PostgreSqlParser.RULE_selectWithParenthesis; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_with_parens) { - return visitor.visitSelect_with_parens(this); + if (visitor.visitSelectWithParenthesis) { + return visitor.visitSelectWithParenthesis(this); } else { return visitor.visitChildren(this); } @@ -100998,37 +94563,34 @@ export class Select_with_parensContext extends antlr.ParserRuleContext { } -export class Select_no_parensContext extends antlr.ParserRuleContext { +export class SelectWithoutParenthesisContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public select_clause(): Select_clauseContext { - return this.getRuleContext(0, Select_clauseContext)!; - } - public opt_sort_clause(): Opt_sort_clauseContext { - return this.getRuleContext(0, Opt_sort_clauseContext)!; + public selectClause(): SelectClauseContext { + return this.getRuleContext(0, SelectClauseContext)!; } - public for_locking_clause(): For_locking_clauseContext | null { - return this.getRuleContext(0, For_locking_clauseContext); + public optionalSortClause(): OptionalSortClauseContext { + return this.getRuleContext(0, OptionalSortClauseContext)!; } - public opt_select_limit(): Opt_select_limitContext | null { - return this.getRuleContext(0, Opt_select_limitContext); + public forLockingClause(): ForLockingClauseContext | null { + return this.getRuleContext(0, ForLockingClauseContext); } - public select_limit(): Select_limitContext | null { - return this.getRuleContext(0, Select_limitContext); + public optionalSelectLimit(): OptionalSelectLimitContext | null { + return this.getRuleContext(0, OptionalSelectLimitContext); } - public opt_for_locking_clause(): Opt_for_locking_clauseContext | null { - return this.getRuleContext(0, Opt_for_locking_clauseContext); + public selectLimit(): SelectLimitContext | null { + return this.getRuleContext(0, SelectLimitContext); } - public with_clause(): With_clauseContext | null { - return this.getRuleContext(0, With_clauseContext); + public withClause(): WithClauseContext | null { + return this.getRuleContext(0, WithClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_no_parens; + return PostgreSqlParser.RULE_selectWithoutParenthesis; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_no_parens) { - return visitor.visitSelect_no_parens(this); + if (visitor.visitSelectWithoutParenthesis) { + return visitor.visitSelectWithoutParenthesis(this); } else { return visitor.visitChildren(this); } @@ -101036,27 +94598,27 @@ export class Select_no_parensContext extends antlr.ParserRuleContext { } -export class Select_clauseContext extends antlr.ParserRuleContext { +export class SelectClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public simple_select_intersect(): Simple_select_intersectContext[]; - public simple_select_intersect(i: number): Simple_select_intersectContext | null; - public simple_select_intersect(i?: number): Simple_select_intersectContext[] | Simple_select_intersectContext | null { + public simpleSelectIntersect(): SimpleSelectIntersectContext[]; + public simpleSelectIntersect(i: number): SimpleSelectIntersectContext | null; + public simpleSelectIntersect(i?: number): SimpleSelectIntersectContext[] | SimpleSelectIntersectContext | null { if (i === undefined) { - return this.getRuleContexts(Simple_select_intersectContext); + return this.getRuleContexts(SimpleSelectIntersectContext); } - return this.getRuleContext(i, Simple_select_intersectContext); + return this.getRuleContext(i, SimpleSelectIntersectContext); } - public all_or_distinct(): All_or_distinctContext[]; - public all_or_distinct(i: number): All_or_distinctContext | null; - public all_or_distinct(i?: number): All_or_distinctContext[] | All_or_distinctContext | null { + public allOrDistinct(): AllOrDistinctContext[]; + public allOrDistinct(i: number): AllOrDistinctContext | null; + public allOrDistinct(i?: number): AllOrDistinctContext[] | AllOrDistinctContext | null { if (i === undefined) { - return this.getRuleContexts(All_or_distinctContext); + return this.getRuleContexts(AllOrDistinctContext); } - return this.getRuleContext(i, All_or_distinctContext); + return this.getRuleContext(i, AllOrDistinctContext); } public UNION(): antlr.TerminalNode[]; public UNION(i: number): antlr.TerminalNode | null; @@ -101077,11 +94639,11 @@ export class Select_clauseContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_clause; + return PostgreSqlParser.RULE_selectClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_clause) { - return visitor.visitSelect_clause(this); + if (visitor.visitSelectClause) { + return visitor.visitSelectClause(this); } else { return visitor.visitChildren(this); } @@ -101089,18 +94651,18 @@ export class Select_clauseContext extends antlr.ParserRuleContext { } -export class Simple_select_intersectContext extends antlr.ParserRuleContext { +export class SimpleSelectIntersectContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public simple_select_pramary(): Simple_select_pramaryContext[]; - public simple_select_pramary(i: number): Simple_select_pramaryContext | null; - public simple_select_pramary(i?: number): Simple_select_pramaryContext[] | Simple_select_pramaryContext | null { + public simpleSelectPramary(): SimpleSelectPramaryContext[]; + public simpleSelectPramary(i: number): SimpleSelectPramaryContext | null; + public simpleSelectPramary(i?: number): SimpleSelectPramaryContext[] | SimpleSelectPramaryContext | null { if (i === undefined) { - return this.getRuleContexts(Simple_select_pramaryContext); + return this.getRuleContexts(SimpleSelectPramaryContext); } - return this.getRuleContext(i, Simple_select_pramaryContext); + return this.getRuleContext(i, SimpleSelectPramaryContext); } public INTERSECT(): antlr.TerminalNode[]; public INTERSECT(i: number): antlr.TerminalNode | null; @@ -101111,21 +94673,21 @@ export class Simple_select_intersectContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.INTERSECT, i); } } - public all_or_distinct(): All_or_distinctContext[]; - public all_or_distinct(i: number): All_or_distinctContext | null; - public all_or_distinct(i?: number): All_or_distinctContext[] | All_or_distinctContext | null { + public allOrDistinct(): AllOrDistinctContext[]; + public allOrDistinct(i: number): AllOrDistinctContext | null; + public allOrDistinct(i?: number): AllOrDistinctContext[] | AllOrDistinctContext | null { if (i === undefined) { - return this.getRuleContexts(All_or_distinctContext); + return this.getRuleContexts(AllOrDistinctContext); } - return this.getRuleContext(i, All_or_distinctContext); + return this.getRuleContext(i, AllOrDistinctContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_simple_select_intersect; + return PostgreSqlParser.RULE_simpleSelectIntersect; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSimple_select_intersect) { - return visitor.visitSimple_select_intersect(this); + if (visitor.visitSimpleSelectIntersect) { + return visitor.visitSimpleSelectIntersect(this); } else { return visitor.visitChildren(this); } @@ -101133,31 +94695,31 @@ export class Simple_select_intersectContext extends antlr.ParserRuleContext { } -export class Simple_select_startContext extends antlr.ParserRuleContext { +export class SimpleSelectStartContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public target_list(): Target_listContext | null { - return this.getRuleContext(0, Target_listContext); + public targetList(): TargetListContext | null { + return this.getRuleContext(0, TargetListContext); } - public into_clause(): Into_clauseContext | null { - return this.getRuleContext(0, Into_clauseContext); + public intoClause(): IntoClauseContext | null { + return this.getRuleContext(0, IntoClauseContext); } - public all_clause(): All_clauseContext | null { - return this.getRuleContext(0, All_clauseContext); + public allClause(): AllClauseContext | null { + return this.getRuleContext(0, AllClauseContext); } - public opt_target_list(): Opt_target_listContext | null { - return this.getRuleContext(0, Opt_target_listContext); + public optionalTargetList(): OptionalTargetListContext | null { + return this.getRuleContext(0, OptionalTargetListContext); } - public distinct_clause(): Distinct_clauseContext | null { - return this.getRuleContext(0, Distinct_clauseContext); + public distinctClause(): DistinctClauseContext | null { + return this.getRuleContext(0, DistinctClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_simple_select_start; + return PostgreSqlParser.RULE_simpleSelectStart; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSimple_select_start) { - return visitor.visitSimple_select_start(this); + if (visitor.visitSimpleSelectStart) { + return visitor.visitSimpleSelectStart(this); } else { return visitor.visitChildren(this); } @@ -101165,49 +94727,49 @@ export class Simple_select_startContext extends antlr.ParserRuleContext { } -export class Simple_select_pramaryContext extends antlr.ParserRuleContext { +export class SimpleSelectPramaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SELECT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SELECT, 0); } - public simple_select_start(): Simple_select_startContext | null { - return this.getRuleContext(0, Simple_select_startContext); + public simpleSelectStart(): SimpleSelectStartContext | null { + return this.getRuleContext(0, SimpleSelectStartContext); } - public from_clause(): From_clauseContext | null { - return this.getRuleContext(0, From_clauseContext); + public fromClause(): FromClauseContext | null { + return this.getRuleContext(0, FromClauseContext); } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); } - public group_clause(): Group_clauseContext | null { - return this.getRuleContext(0, Group_clauseContext); + public groupClause(): GroupClauseContext | null { + return this.getRuleContext(0, GroupClauseContext); } - public having_clause(): Having_clauseContext | null { - return this.getRuleContext(0, Having_clauseContext); + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); } - public window_clause(): Window_clauseContext | null { - return this.getRuleContext(0, Window_clauseContext); + public windowClause(): WindowClauseContext | null { + return this.getRuleContext(0, WindowClauseContext); } - public values_clause(): Values_clauseContext | null { - return this.getRuleContext(0, Values_clauseContext); + public valuesClause(): ValuesClauseContext | null { + return this.getRuleContext(0, ValuesClauseContext); } public TABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TABLE, 0); } - public relation_expr(): Relation_exprContext | null { - return this.getRuleContext(0, Relation_exprContext); + public relationExpression(): RelationExpressionContext | null { + return this.getRuleContext(0, RelationExpressionContext); } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_simple_select_pramary; + return PostgreSqlParser.RULE_simpleSelectPramary; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSimple_select_pramary) { - return visitor.visitSimple_select_pramary(this); + if (visitor.visitSimpleSelectPramary) { + return visitor.visitSimpleSelectPramary(this); } else { return visitor.visitChildren(this); } @@ -101215,44 +94777,24 @@ export class Simple_select_pramaryContext extends antlr.ParserRuleContext { } -export class With_clauseContext extends antlr.ParserRuleContext { +export class WithClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WITH(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WITH, 0)!; } - public cte_list(): Cte_listContext { - return this.getRuleContext(0, Cte_listContext)!; - } - public RECURSIVE(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.RECURSIVE, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_with_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWith_clause) { - return visitor.visitWith_clause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Cte_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public common_table_expr(): Common_table_exprContext[]; - public common_table_expr(i: number): Common_table_exprContext | null; - public common_table_expr(i?: number): Common_table_exprContext[] | Common_table_exprContext | null { + public commonTableExpression(): CommonTableExpressionContext[]; + public commonTableExpression(i: number): CommonTableExpressionContext | null; + public commonTableExpression(i?: number): CommonTableExpressionContext[] | CommonTableExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(Common_table_exprContext); + return this.getRuleContexts(CommonTableExpressionContext); } - return this.getRuleContext(i, Common_table_exprContext); + return this.getRuleContext(i, CommonTableExpressionContext); + } + public RECURSIVE(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.RECURSIVE, 0); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -101264,11 +94806,11 @@ export class Cte_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cte_list; + return PostgreSqlParser.RULE_withClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCte_list) { - return visitor.visitCte_list(this); + if (visitor.visitWithClause) { + return visitor.visitWithClause(this); } else { return visitor.visitChildren(this); } @@ -101276,37 +94818,37 @@ export class Cte_listContext extends antlr.ParserRuleContext { } -export class Common_table_exprContext extends antlr.ParserRuleContext { +export class CommonTableExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public name(): NameContext { return this.getRuleContext(0, NameContext)!; } - public opt_name_list(): Opt_name_listContext { - return this.getRuleContext(0, Opt_name_listContext)!; + public optionalNameList(): OptionalNameListContext { + return this.getRuleContext(0, OptionalNameListContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public opt_materialized(): Opt_materializedContext { - return this.getRuleContext(0, Opt_materializedContext)!; + public optionalMaterialized(): OptionalMaterializedContext { + return this.getRuleContext(0, OptionalMaterializedContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public preparablestmt(): PreparablestmtContext { - return this.getRuleContext(0, PreparablestmtContext)!; + public preparableStatement(): PreparableStatementContext { + return this.getRuleContext(0, PreparableStatementContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_common_table_expr; + return PostgreSqlParser.RULE_commonTableExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCommon_table_expr) { - return visitor.visitCommon_table_expr(this); + if (visitor.visitCommonTableExpression) { + return visitor.visitCommonTableExpression(this); } else { return visitor.visitChildren(this); } @@ -101314,7 +94856,7 @@ export class Common_table_exprContext extends antlr.ParserRuleContext { } -export class Opt_materializedContext extends antlr.ParserRuleContext { +export class OptionalMaterializedContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101325,11 +94867,11 @@ export class Opt_materializedContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_materialized; + return PostgreSqlParser.RULE_optionalMaterialized; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_materialized) { - return visitor.visitOpt_materialized(this); + if (visitor.visitOptionalMaterialized) { + return visitor.visitOptionalMaterialized(this); } else { return visitor.visitChildren(this); } @@ -101337,48 +94879,28 @@ export class Opt_materializedContext extends antlr.ParserRuleContext { } -export class Into_clauseContext extends antlr.ParserRuleContext { +export class IntoClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public INTO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INTO, 0)!; } - public opt_strict(): Opt_strictContext | null { - return this.getRuleContext(0, Opt_strictContext); - } - public opttempTableName(): OpttempTableNameContext | null { - return this.getRuleContext(0, OpttempTableNameContext); - } - public into_target(): Into_targetContext | null { - return this.getRuleContext(0, Into_targetContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_into_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInto_clause) { - return visitor.visitInto_clause(this); - } else { - return visitor.visitChildren(this); - } + public optionalTemporaryTableName(): OptionalTemporaryTableNameContext | null { + return this.getRuleContext(0, OptionalTemporaryTableNameContext); } -} - - -export class Opt_strictContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public intoTarget(): IntoTargetContext | null { + return this.getRuleContext(0, IntoTargetContext); } public STRICT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STRICT_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_strict; + return PostgreSqlParser.RULE_intoClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_strict) { - return visitor.visitOpt_strict(this); + if (visitor.visitIntoClause) { + return visitor.visitIntoClause(this); } else { return visitor.visitChildren(this); } @@ -101386,15 +94908,15 @@ export class Opt_strictContext extends antlr.ParserRuleContext { } -export class OpttempTableNameContext extends antlr.ParserRuleContext { +export class OptionalTemporaryTableNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_table(): Opt_tableContext | null { - return this.getRuleContext(0, Opt_tableContext); + public optionalTable(): OptionalTableContext | null { + return this.getRuleContext(0, OptionalTableContext); } - public qualified_name(): Qualified_nameContext { - return this.getRuleContext(0, Qualified_nameContext)!; + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext)!; } public TEMPORARY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TEMPORARY, 0); @@ -101415,11 +94937,11 @@ export class OpttempTableNameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttempTableName; + return PostgreSqlParser.RULE_optionalTemporaryTableName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttempTableName) { - return visitor.visitOpttempTableName(this); + if (visitor.visitOptionalTemporaryTableName) { + return visitor.visitOptionalTemporaryTableName(this); } else { return visitor.visitChildren(this); } @@ -101427,7 +94949,7 @@ export class OpttempTableNameContext extends antlr.ParserRuleContext { } -export class Opt_tableContext extends antlr.ParserRuleContext { +export class OptionalTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101435,11 +94957,11 @@ export class Opt_tableContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TABLE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_table; + return PostgreSqlParser.RULE_optionalTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_table) { - return visitor.visitOpt_table(this); + if (visitor.visitOptionalTable) { + return visitor.visitOptionalTable(this); } else { return visitor.visitChildren(this); } @@ -101447,7 +94969,7 @@ export class Opt_tableContext extends antlr.ParserRuleContext { } -export class All_or_distinctContext extends antlr.ParserRuleContext { +export class AllOrDistinctContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101458,11 +94980,11 @@ export class All_or_distinctContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DISTINCT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_all_or_distinct; + return PostgreSqlParser.RULE_allOrDistinct; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAll_or_distinct) { - return visitor.visitAll_or_distinct(this); + if (visitor.visitAllOrDistinct) { + return visitor.visitAllOrDistinct(this); } else { return visitor.visitChildren(this); } @@ -101470,7 +94992,7 @@ export class All_or_distinctContext extends antlr.ParserRuleContext { } -export class Distinct_clauseContext extends antlr.ParserRuleContext { +export class DistinctClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101483,18 +95005,18 @@ export class Distinct_clauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_distinct_clause; + return PostgreSqlParser.RULE_distinctClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDistinct_clause) { - return visitor.visitDistinct_clause(this); + if (visitor.visitDistinctClause) { + return visitor.visitDistinctClause(this); } else { return visitor.visitChildren(this); } @@ -101502,7 +95024,7 @@ export class Distinct_clauseContext extends antlr.ParserRuleContext { } -export class All_clauseContext extends antlr.ParserRuleContext { +export class AllClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101510,11 +95032,11 @@ export class All_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_all_clause; + return PostgreSqlParser.RULE_allClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAll_clause) { - return visitor.visitAll_clause(this); + if (visitor.visitAllClause) { + return visitor.visitAllClause(this); } else { return visitor.visitChildren(this); } @@ -101522,19 +95044,19 @@ export class All_clauseContext extends antlr.ParserRuleContext { } -export class Opt_sort_clauseContext extends antlr.ParserRuleContext { +export class OptionalSortClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sort_clause(): Sort_clauseContext | null { - return this.getRuleContext(0, Sort_clauseContext); + public sortClause(): SortClauseContext | null { + return this.getRuleContext(0, SortClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_sort_clause; + return PostgreSqlParser.RULE_optionalSortClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_sort_clause) { - return visitor.visitOpt_sort_clause(this); + if (visitor.visitOptionalSortClause) { + return visitor.visitOptionalSortClause(this); } else { return visitor.visitChildren(this); } @@ -101542,7 +95064,7 @@ export class Opt_sort_clauseContext extends antlr.ParserRuleContext { } -export class Sort_clauseContext extends antlr.ParserRuleContext { +export class SortClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101552,15 +95074,15 @@ export class Sort_clauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BY, 0)!; } - public sortby_list(): Sortby_listContext { - return this.getRuleContext(0, Sortby_listContext)!; + public sortByList(): SortByListContext { + return this.getRuleContext(0, SortByListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_sort_clause; + return PostgreSqlParser.RULE_sortClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSort_clause) { - return visitor.visitSort_clause(this); + if (visitor.visitSortClause) { + return visitor.visitSortClause(this); } else { return visitor.visitChildren(this); } @@ -101568,18 +95090,18 @@ export class Sort_clauseContext extends antlr.ParserRuleContext { } -export class Sortby_listContext extends antlr.ParserRuleContext { +export class SortByListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sortby(): SortbyContext[]; - public sortby(i: number): SortbyContext | null; - public sortby(i?: number): SortbyContext[] | SortbyContext | null { + public sortBy(): SortByContext[]; + public sortBy(i: number): SortByContext | null; + public sortBy(i?: number): SortByContext[] | SortByContext | null { if (i === undefined) { - return this.getRuleContexts(SortbyContext); + return this.getRuleContexts(SortByContext); } - return this.getRuleContext(i, SortbyContext); + return this.getRuleContext(i, SortByContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -101591,11 +95113,11 @@ export class Sortby_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_sortby_list; + return PostgreSqlParser.RULE_sortByList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSortby_list) { - return visitor.visitSortby_list(this); + if (visitor.visitSortByList) { + return visitor.visitSortByList(this); } else { return visitor.visitChildren(this); } @@ -101603,31 +95125,31 @@ export class Sortby_listContext extends antlr.ParserRuleContext { } -export class SortbyContext extends antlr.ParserRuleContext { +export class SortByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } - public opt_nulls_order(): Opt_nulls_orderContext { - return this.getRuleContext(0, Opt_nulls_orderContext)!; + public optionalNullsOrder(): OptionalNullsOrderContext { + return this.getRuleContext(0, OptionalNullsOrderContext)!; } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public qual_all_op(): Qual_all_opContext | null { - return this.getRuleContext(0, Qual_all_opContext); + public allOperatorQualifier(): AllOperatorQualifierContext | null { + return this.getRuleContext(0, AllOperatorQualifierContext); } - public opt_asc_desc(): Opt_asc_descContext | null { - return this.getRuleContext(0, Opt_asc_descContext); + public optionalAscOrDesc(): OptionalAscOrDescContext | null { + return this.getRuleContext(0, OptionalAscOrDescContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_sortby; + return PostgreSqlParser.RULE_sortBy; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSortby) { - return visitor.visitSortby(this); + if (visitor.visitSortBy) { + return visitor.visitSortBy(this); } else { return visitor.visitChildren(this); } @@ -101635,22 +95157,22 @@ export class SortbyContext extends antlr.ParserRuleContext { } -export class Select_limitContext extends antlr.ParserRuleContext { +export class SelectLimitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public limit_clause(): Limit_clauseContext | null { - return this.getRuleContext(0, Limit_clauseContext); + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); } - public offset_clause(): Offset_clauseContext | null { - return this.getRuleContext(0, Offset_clauseContext); + public offsetClause(): OffsetClauseContext | null { + return this.getRuleContext(0, OffsetClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_limit; + return PostgreSqlParser.RULE_selectLimit; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_limit) { - return visitor.visitSelect_limit(this); + if (visitor.visitSelectLimit) { + return visitor.visitSelectLimit(this); } else { return visitor.visitChildren(this); } @@ -101658,19 +95180,19 @@ export class Select_limitContext extends antlr.ParserRuleContext { } -export class Opt_select_limitContext extends antlr.ParserRuleContext { +export class OptionalSelectLimitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public select_limit(): Select_limitContext | null { - return this.getRuleContext(0, Select_limitContext); + public selectLimit(): SelectLimitContext | null { + return this.getRuleContext(0, SelectLimitContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_select_limit; + return PostgreSqlParser.RULE_optionalSelectLimit; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_select_limit) { - return visitor.visitOpt_select_limit(this); + if (visitor.visitOptionalSelectLimit) { + return visitor.visitOptionalSelectLimit(this); } else { return visitor.visitChildren(this); } @@ -101678,33 +95200,33 @@ export class Opt_select_limitContext extends antlr.ParserRuleContext { } -export class Limit_clauseContext extends antlr.ParserRuleContext { +export class LimitClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LIMIT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LIMIT, 0); } - public select_limit_value(): Select_limit_valueContext | null { - return this.getRuleContext(0, Select_limit_valueContext); + public selectLimitValue(): SelectLimitValueContext | null { + return this.getRuleContext(0, SelectLimitValueContext); } public COMMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COMMA, 0); } - public select_offset_value(): Select_offset_valueContext | null { - return this.getRuleContext(0, Select_offset_valueContext); + public selectOffsetValue(): SelectOffsetValueContext | null { + return this.getRuleContext(0, SelectOffsetValueContext); } public FETCH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FETCH, 0); } - public first_or_next(): First_or_nextContext | null { - return this.getRuleContext(0, First_or_nextContext); + public firstOrNext(): FirstOrNextContext | null { + return this.getRuleContext(0, FirstOrNextContext); } - public select_fetch_first_value(): Select_fetch_first_valueContext | null { - return this.getRuleContext(0, Select_fetch_first_valueContext); + public selectFetchFirstValue(): SelectFetchFirstValueContext | null { + return this.getRuleContext(0, SelectFetchFirstValueContext); } - public row_or_rows(): Row_or_rowsContext | null { - return this.getRuleContext(0, Row_or_rowsContext); + public rowOrRows(): RowOrRowsContext | null { + return this.getRuleContext(0, RowOrRowsContext); } public ONLY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ONLY, 0); @@ -101716,11 +95238,11 @@ export class Limit_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TIES, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_limit_clause; + return PostgreSqlParser.RULE_limitClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLimit_clause) { - return visitor.visitLimit_clause(this); + if (visitor.visitLimitClause) { + return visitor.visitLimitClause(this); } else { return visitor.visitChildren(this); } @@ -101728,28 +95250,28 @@ export class Limit_clauseContext extends antlr.ParserRuleContext { } -export class Offset_clauseContext extends antlr.ParserRuleContext { +export class OffsetClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OFFSET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OFFSET, 0)!; } - public select_offset_value(): Select_offset_valueContext | null { - return this.getRuleContext(0, Select_offset_valueContext); + public selectOffsetValue(): SelectOffsetValueContext | null { + return this.getRuleContext(0, SelectOffsetValueContext); } - public select_fetch_first_value(): Select_fetch_first_valueContext | null { - return this.getRuleContext(0, Select_fetch_first_valueContext); + public selectFetchFirstValue(): SelectFetchFirstValueContext | null { + return this.getRuleContext(0, SelectFetchFirstValueContext); } - public row_or_rows(): Row_or_rowsContext | null { - return this.getRuleContext(0, Row_or_rowsContext); + public rowOrRows(): RowOrRowsContext | null { + return this.getRuleContext(0, RowOrRowsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_offset_clause; + return PostgreSqlParser.RULE_offsetClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOffset_clause) { - return visitor.visitOffset_clause(this); + if (visitor.visitOffsetClause) { + return visitor.visitOffsetClause(this); } else { return visitor.visitChildren(this); } @@ -101757,22 +95279,22 @@ export class Offset_clauseContext extends antlr.ParserRuleContext { } -export class Select_limit_valueContext extends antlr.ParserRuleContext { +export class SelectLimitValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_limit_value; + return PostgreSqlParser.RULE_selectLimitValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_limit_value) { - return visitor.visitSelect_limit_value(this); + if (visitor.visitSelectLimitValue) { + return visitor.visitSelectLimitValue(this); } else { return visitor.visitChildren(this); } @@ -101780,19 +95302,19 @@ export class Select_limit_valueContext extends antlr.ParserRuleContext { } -export class Select_offset_valueContext extends antlr.ParserRuleContext { +export class SelectOffsetValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_offset_value; + return PostgreSqlParser.RULE_selectOffsetValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_offset_value) { - return visitor.visitSelect_offset_value(this); + if (visitor.visitSelectOffsetValue) { + return visitor.visitSelectOffsetValue(this); } else { return visitor.visitChildren(this); } @@ -101800,28 +95322,28 @@ export class Select_offset_valueContext extends antlr.ParserRuleContext { } -export class Select_fetch_first_valueContext extends antlr.ParserRuleContext { +export class SelectFetchFirstValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public c_expr(): C_exprContext | null { - return this.getRuleContext(0, C_exprContext); + public expression3(): Expression3Context | null { + return this.getRuleContext(0, Expression3Context); } public PLUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PLUS, 0); } - public i_or_f_const(): I_or_f_constContext | null { - return this.getRuleContext(0, I_or_f_constContext); + public anyConst(): AnyConstContext | null { + return this.getRuleContext(0, AnyConstContext); } public MINUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MINUS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_select_fetch_first_value; + return PostgreSqlParser.RULE_selectFetchFirstValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSelect_fetch_first_value) { - return visitor.visitSelect_fetch_first_value(this); + if (visitor.visitSelectFetchFirstValue) { + return visitor.visitSelectFetchFirstValue(this); } else { return visitor.visitChildren(this); } @@ -101829,7 +95351,7 @@ export class Select_fetch_first_valueContext extends antlr.ParserRuleContext { } -export class I_or_f_constContext extends antlr.ParserRuleContext { +export class AnyConstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101840,11 +95362,11 @@ export class I_or_f_constContext extends antlr.ParserRuleContext { return this.getRuleContext(0, FconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_i_or_f_const; + return PostgreSqlParser.RULE_anyConst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitI_or_f_const) { - return visitor.visitI_or_f_const(this); + if (visitor.visitAnyConst) { + return visitor.visitAnyConst(this); } else { return visitor.visitChildren(this); } @@ -101852,7 +95374,7 @@ export class I_or_f_constContext extends antlr.ParserRuleContext { } -export class Row_or_rowsContext extends antlr.ParserRuleContext { +export class RowOrRowsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101863,11 +95385,11 @@ export class Row_or_rowsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ROWS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_row_or_rows; + return PostgreSqlParser.RULE_rowOrRows; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRow_or_rows) { - return visitor.visitRow_or_rows(this); + if (visitor.visitRowOrRows) { + return visitor.visitRowOrRows(this); } else { return visitor.visitChildren(this); } @@ -101875,7 +95397,7 @@ export class Row_or_rowsContext extends antlr.ParserRuleContext { } -export class First_or_nextContext extends antlr.ParserRuleContext { +export class FirstOrNextContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101886,11 +95408,11 @@ export class First_or_nextContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NEXT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_first_or_next; + return PostgreSqlParser.RULE_firstOrNext; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFirst_or_next) { - return visitor.visitFirst_or_next(this); + if (visitor.visitFirstOrNext) { + return visitor.visitFirstOrNext(this); } else { return visitor.visitChildren(this); } @@ -101898,7 +95420,7 @@ export class First_or_nextContext extends antlr.ParserRuleContext { } -export class Group_clauseContext extends antlr.ParserRuleContext { +export class GroupClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -101908,15 +95430,15 @@ export class Group_clauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public group_by_list(): Group_by_listContext | null { - return this.getRuleContext(0, Group_by_listContext); + public groupByList(): GroupByListContext | null { + return this.getRuleContext(0, GroupByListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_group_clause; + return PostgreSqlParser.RULE_groupClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGroup_clause) { - return visitor.visitGroup_clause(this); + if (visitor.visitGroupClause) { + return visitor.visitGroupClause(this); } else { return visitor.visitChildren(this); } @@ -101924,18 +95446,18 @@ export class Group_clauseContext extends antlr.ParserRuleContext { } -export class Group_by_listContext extends antlr.ParserRuleContext { +export class GroupByListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public group_by_item(): Group_by_itemContext[]; - public group_by_item(i: number): Group_by_itemContext | null; - public group_by_item(i?: number): Group_by_itemContext[] | Group_by_itemContext | null { + public groupByItem(): GroupByItemContext[]; + public groupByItem(i: number): GroupByItemContext | null; + public groupByItem(i?: number): GroupByItemContext[] | GroupByItemContext | null { if (i === undefined) { - return this.getRuleContexts(Group_by_itemContext); + return this.getRuleContexts(GroupByItemContext); } - return this.getRuleContext(i, Group_by_itemContext); + return this.getRuleContext(i, GroupByItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -101947,95 +95469,11 @@ export class Group_by_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_group_by_list; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGroup_by_list) { - return visitor.visitGroup_by_list(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Group_by_itemContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); - } - public empty_grouping_set(): Empty_grouping_setContext | null { - return this.getRuleContext(0, Empty_grouping_setContext); - } - public cube_clause(): Cube_clauseContext | null { - return this.getRuleContext(0, Cube_clauseContext); - } - public rollup_clause(): Rollup_clauseContext | null { - return this.getRuleContext(0, Rollup_clauseContext); - } - public grouping_sets_clause(): Grouping_sets_clauseContext | null { - return this.getRuleContext(0, Grouping_sets_clauseContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_group_by_item; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGroup_by_item) { - return visitor.visitGroup_by_item(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Empty_grouping_setContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_empty_grouping_set; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitEmpty_grouping_set) { - return visitor.visitEmpty_grouping_set(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Rollup_clauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public ROLLUP(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.ROLLUP, 0)!; - } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; - } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rollup_clause; + return PostgreSqlParser.RULE_groupByList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRollup_clause) { - return visitor.visitRollup_clause(this); + if (visitor.visitGroupByList) { + return visitor.visitGroupByList(this); } else { return visitor.visitChildren(this); } @@ -102043,60 +95481,43 @@ export class Rollup_clauseContext extends antlr.ParserRuleContext { } -export class Cube_clauseContext extends antlr.ParserRuleContext { +export class GroupByItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public CUBE(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CUBE, 0)!; - } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; - } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cube_clause; + public OPEN_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCube_clause) { - return visitor.visitCube_clause(this); - } else { - return visitor.visitChildren(this); - } + public CLOSE_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } -} - - -export class Grouping_sets_clauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public CUBE(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CUBE, 0); } - public GROUPING(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.GROUPING, 0)!; + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } - public SETS(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.SETS, 0)!; + public ROLLUP(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.ROLLUP, 0); } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; + public GROUPING(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.GROUPING, 0); } - public group_by_list(): Group_by_listContext { - return this.getRuleContext(0, Group_by_listContext)!; + public SETS(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.SETS, 0); } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; + public groupByList(): GroupByListContext | null { + return this.getRuleContext(0, GroupByListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_grouping_sets_clause; + return PostgreSqlParser.RULE_groupByItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGrouping_sets_clause) { - return visitor.visitGrouping_sets_clause(this); + if (visitor.visitGroupByItem) { + return visitor.visitGroupByItem(this); } else { return visitor.visitChildren(this); } @@ -102104,22 +95525,22 @@ export class Grouping_sets_clauseContext extends antlr.ParserRuleContext { } -export class Having_clauseContext extends antlr.ParserRuleContext { +export class HavingClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public HAVING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.HAVING, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_having_clause; + return PostgreSqlParser.RULE_havingClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitHaving_clause) { - return visitor.visitHaving_clause(this); + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); } else { return visitor.visitChildren(this); } @@ -102127,12 +95548,18 @@ export class Having_clauseContext extends antlr.ParserRuleContext { } -export class For_locking_clauseContext extends antlr.ParserRuleContext { +export class ForLockingClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public for_locking_items(): For_locking_itemsContext | null { - return this.getRuleContext(0, For_locking_itemsContext); + public forLockingItem(): ForLockingItemContext[]; + public forLockingItem(i: number): ForLockingItemContext | null; + public forLockingItem(i?: number): ForLockingItemContext[] | ForLockingItemContext | null { + if (i === undefined) { + return this.getRuleContexts(ForLockingItemContext); + } + + return this.getRuleContext(i, ForLockingItemContext); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); @@ -102144,57 +95571,11 @@ export class For_locking_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ONLY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_locking_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_locking_clause) { - return visitor.visitFor_locking_clause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_for_locking_clauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public for_locking_clause(): For_locking_clauseContext | null { - return this.getRuleContext(0, For_locking_clauseContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_for_locking_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_for_locking_clause) { - return visitor.visitOpt_for_locking_clause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class For_locking_itemsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public for_locking_item(): For_locking_itemContext[]; - public for_locking_item(i: number): For_locking_itemContext | null; - public for_locking_item(i?: number): For_locking_itemContext[] | For_locking_itemContext | null { - if (i === undefined) { - return this.getRuleContexts(For_locking_itemContext); - } - - return this.getRuleContext(i, For_locking_itemContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_locking_items; + return PostgreSqlParser.RULE_forLockingClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_locking_items) { - return visitor.visitFor_locking_items(this); + if (visitor.visitForLockingClause) { + return visitor.visitForLockingClause(this); } else { return visitor.visitChildren(this); } @@ -102202,25 +95583,25 @@ export class For_locking_itemsContext extends antlr.ParserRuleContext { } -export class For_locking_itemContext extends antlr.ParserRuleContext { +export class ForLockingItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public for_locking_strength(): For_locking_strengthContext { - return this.getRuleContext(0, For_locking_strengthContext)!; + public forLockingStrength(): ForLockingStrengthContext { + return this.getRuleContext(0, ForLockingStrengthContext)!; } - public locked_rels_list(): Locked_rels_listContext { - return this.getRuleContext(0, Locked_rels_listContext)!; + public lockedRelationsList(): LockedRelationsListContext { + return this.getRuleContext(0, LockedRelationsListContext)!; } - public opt_nowait_or_skip(): Opt_nowait_or_skipContext { - return this.getRuleContext(0, Opt_nowait_or_skipContext)!; + public optionalNowaitOrSkip(): OptionalNowaitOrSkipContext { + return this.getRuleContext(0, OptionalNowaitOrSkipContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_locking_item; + return PostgreSqlParser.RULE_forLockingItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_locking_item) { - return visitor.visitFor_locking_item(this); + if (visitor.visitForLockingItem) { + return visitor.visitForLockingItem(this); } else { return visitor.visitChildren(this); } @@ -102228,7 +95609,7 @@ export class For_locking_itemContext extends antlr.ParserRuleContext { } -export class For_locking_strengthContext extends antlr.ParserRuleContext { +export class ForLockingStrengthContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -102248,11 +95629,11 @@ export class For_locking_strengthContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.KEY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_locking_strength; + return PostgreSqlParser.RULE_forLockingStrength; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_locking_strength) { - return visitor.visitFor_locking_strength(this); + if (visitor.visitForLockingStrength) { + return visitor.visitForLockingStrength(this); } else { return visitor.visitChildren(this); } @@ -102260,22 +95641,22 @@ export class For_locking_strengthContext extends antlr.ParserRuleContext { } -export class Locked_rels_listContext extends antlr.ParserRuleContext { +export class LockedRelationsListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public qualified_name_list(): Qualified_name_listContext | null { - return this.getRuleContext(0, Qualified_name_listContext); + public qualifiedNameList(): QualifiedNameListContext | null { + return this.getRuleContext(0, QualifiedNameListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_locked_rels_list; + return PostgreSqlParser.RULE_lockedRelationsList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLocked_rels_list) { - return visitor.visitLocked_rels_list(this); + if (visitor.visitLockedRelationsList) { + return visitor.visitLockedRelationsList(this); } else { return visitor.visitChildren(this); } @@ -102283,7 +95664,7 @@ export class Locked_rels_listContext extends antlr.ParserRuleContext { } -export class Values_clauseContext extends antlr.ParserRuleContext { +export class ValuesClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -102299,14 +95680,14 @@ export class Values_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OPEN_PAREN, i); } } - public expr_list(): Expr_listContext[]; - public expr_list(i: number): Expr_listContext | null; - public expr_list(i?: number): Expr_listContext[] | Expr_listContext | null { + public expressionList(): ExpressionListContext[]; + public expressionList(i: number): ExpressionListContext | null; + public expressionList(i?: number): ExpressionListContext[] | ExpressionListContext | null { if (i === undefined) { - return this.getRuleContexts(Expr_listContext); + return this.getRuleContexts(ExpressionListContext); } - return this.getRuleContext(i, Expr_listContext); + return this.getRuleContext(i, ExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode[]; public CLOSE_PAREN(i: number): antlr.TerminalNode | null; @@ -102327,11 +95708,11 @@ export class Values_clauseContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_values_clause; + return PostgreSqlParser.RULE_valuesClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitValues_clause) { - return visitor.visitValues_clause(this); + if (visitor.visitValuesClause) { + return visitor.visitValuesClause(this); } else { return visitor.visitChildren(this); } @@ -102339,22 +95720,22 @@ export class Values_clauseContext extends antlr.ParserRuleContext { } -export class From_clauseContext extends antlr.ParserRuleContext { +export class FromClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public from_list(): From_listContext | null { - return this.getRuleContext(0, From_listContext); + public fromList(): FromListContext | null { + return this.getRuleContext(0, FromListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_from_clause; + return PostgreSqlParser.RULE_fromClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFrom_clause) { - return visitor.visitFrom_clause(this); + if (visitor.visitFromClause) { + return visitor.visitFromClause(this); } else { return visitor.visitChildren(this); } @@ -102362,21 +95743,21 @@ export class From_clauseContext extends antlr.ParserRuleContext { } -export class From_listContext extends antlr.ParserRuleContext { +export class FromListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public non_ansi_join(): Non_ansi_joinContext | null { - return this.getRuleContext(0, Non_ansi_joinContext); + public nonAnsiJoin(): NonAnsiJoinContext | null { + return this.getRuleContext(0, NonAnsiJoinContext); } - public table_ref(): Table_refContext[]; - public table_ref(i: number): Table_refContext | null; - public table_ref(i?: number): Table_refContext[] | Table_refContext | null { + public tableReference(): TableReferenceContext[]; + public tableReference(i: number): TableReferenceContext | null; + public tableReference(i?: number): TableReferenceContext[] | TableReferenceContext | null { if (i === undefined) { - return this.getRuleContexts(Table_refContext); + return this.getRuleContexts(TableReferenceContext); } - return this.getRuleContext(i, Table_refContext); + return this.getRuleContext(i, TableReferenceContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -102388,11 +95769,11 @@ export class From_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_from_list; + return PostgreSqlParser.RULE_fromList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFrom_list) { - return visitor.visitFrom_list(this); + if (visitor.visitFromList) { + return visitor.visitFromList(this); } else { return visitor.visitChildren(this); } @@ -102400,18 +95781,18 @@ export class From_listContext extends antlr.ParserRuleContext { } -export class Non_ansi_joinContext extends antlr.ParserRuleContext { +export class NonAnsiJoinContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public table_ref(): Table_refContext[]; - public table_ref(i: number): Table_refContext | null; - public table_ref(i?: number): Table_refContext[] | Table_refContext | null { + public tableReference(): TableReferenceContext[]; + public tableReference(i: number): TableReferenceContext | null; + public tableReference(i?: number): TableReferenceContext[] | TableReferenceContext | null { if (i === undefined) { - return this.getRuleContexts(Table_refContext); + return this.getRuleContexts(TableReferenceContext); } - return this.getRuleContext(i, Table_refContext); + return this.getRuleContext(i, TableReferenceContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -102423,11 +95804,11 @@ export class Non_ansi_joinContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_non_ansi_join; + return PostgreSqlParser.RULE_nonAnsiJoin; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNon_ansi_join) { - return visitor.visitNon_ansi_join(this); + if (visitor.visitNonAnsiJoin) { + return visitor.visitNonAnsiJoin(this); } else { return visitor.visitChildren(this); } @@ -102435,27 +95816,27 @@ export class Non_ansi_joinContext extends antlr.ParserRuleContext { } -export class Table_refContext extends antlr.ParserRuleContext { +export class TableReferenceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public relation_expr(): Relation_exprContext | null { - return this.getRuleContext(0, Relation_exprContext); + public relationExpression(): RelationExpressionContext | null { + return this.getRuleContext(0, RelationExpressionContext); } - public opt_alias_clause(): Opt_alias_clauseContext | null { - return this.getRuleContext(0, Opt_alias_clauseContext); + public optionalAliasClause(): OptionalAliasClauseContext | null { + return this.getRuleContext(0, OptionalAliasClauseContext); } - public func_table(): Func_tableContext | null { - return this.getRuleContext(0, Func_tableContext); + public functionTable(): FunctionTableContext | null { + return this.getRuleContext(0, FunctionTableContext); } - public func_alias_clause(): Func_alias_clauseContext | null { - return this.getRuleContext(0, Func_alias_clauseContext); + public functionAliasClause(): FunctionAliasClauseContext | null { + return this.getRuleContext(0, FunctionAliasClauseContext); } - public xmltable(): XmltableContext | null { - return this.getRuleContext(0, XmltableContext); + public xmlTable(): XmlTableContext | null { + return this.getRuleContext(0, XmlTableContext); } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } public LATERAL_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LATERAL_P, 0); @@ -102463,14 +95844,14 @@ export class Table_refContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public table_ref(): Table_refContext[]; - public table_ref(i: number): Table_refContext | null; - public table_ref(i?: number): Table_refContext[] | Table_refContext | null { + public tableReference(): TableReferenceContext[]; + public tableReference(i: number): TableReferenceContext | null; + public tableReference(i?: number): TableReferenceContext[] | TableReferenceContext | null { if (i === undefined) { - return this.getRuleContexts(Table_refContext); + return this.getRuleContexts(TableReferenceContext); } - return this.getRuleContext(i, Table_refContext); + return this.getRuleContext(i, TableReferenceContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -102502,33 +95883,33 @@ export class Table_refContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NATURAL, i); } } - public join_qual(): Join_qualContext[]; - public join_qual(i: number): Join_qualContext | null; - public join_qual(i?: number): Join_qualContext[] | Join_qualContext | null { + public joinQualifier(): JoinQualifierContext[]; + public joinQualifier(i: number): JoinQualifierContext | null; + public joinQualifier(i?: number): JoinQualifierContext[] | JoinQualifierContext | null { if (i === undefined) { - return this.getRuleContexts(Join_qualContext); + return this.getRuleContexts(JoinQualifierContext); } - return this.getRuleContext(i, Join_qualContext); + return this.getRuleContext(i, JoinQualifierContext); } - public tablesample_clause(): Tablesample_clauseContext | null { - return this.getRuleContext(0, Tablesample_clauseContext); + public tableSampleClause(): TableSampleClauseContext | null { + return this.getRuleContext(0, TableSampleClauseContext); } - public join_type(): Join_typeContext[]; - public join_type(i: number): Join_typeContext | null; - public join_type(i?: number): Join_typeContext[] | Join_typeContext | null { + public joinType(): JoinTypeContext[]; + public joinType(i: number): JoinTypeContext | null; + public joinType(i?: number): JoinTypeContext[] | JoinTypeContext | null { if (i === undefined) { - return this.getRuleContexts(Join_typeContext); + return this.getRuleContexts(JoinTypeContext); } - return this.getRuleContext(i, Join_typeContext); + return this.getRuleContext(i, JoinTypeContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_ref; + return PostgreSqlParser.RULE_tableReference; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_ref) { - return visitor.visitTable_ref(this); + if (visitor.visitTableReference) { + return visitor.visitTableReference(this); } else { return visitor.visitChildren(this); } @@ -102536,12 +95917,12 @@ export class Table_refContext extends antlr.ParserRuleContext { } -export class Alias_clauseContext extends antlr.ParserRuleContext { +export class AliasClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -102549,18 +95930,18 @@ export class Alias_clauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_alias_clause; + return PostgreSqlParser.RULE_aliasClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAlias_clause) { - return visitor.visitAlias_clause(this); + if (visitor.visitAliasClause) { + return visitor.visitAliasClause(this); } else { return visitor.visitChildren(this); } @@ -102568,19 +95949,19 @@ export class Alias_clauseContext extends antlr.ParserRuleContext { } -export class Opt_alias_clauseContext extends antlr.ParserRuleContext { +export class OptionalAliasClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public table_alias_clause(): Table_alias_clauseContext | null { - return this.getRuleContext(0, Table_alias_clauseContext); + public tableAliasClause(): TableAliasClauseContext | null { + return this.getRuleContext(0, TableAliasClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_alias_clause; + return PostgreSqlParser.RULE_optionalAliasClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_alias_clause) { - return visitor.visitOpt_alias_clause(this); + if (visitor.visitOptionalAliasClause) { + return visitor.visitOptionalAliasClause(this); } else { return visitor.visitChildren(this); } @@ -102588,12 +95969,12 @@ export class Opt_alias_clauseContext extends antlr.ParserRuleContext { } -export class Table_alias_clauseContext extends antlr.ParserRuleContext { +export class TableAliasClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public table_alias(): Table_aliasContext { - return this.getRuleContext(0, Table_aliasContext)!; + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); @@ -102601,18 +95982,18 @@ export class Table_alias_clauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_alias_clause; + return PostgreSqlParser.RULE_tableAliasClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_alias_clause) { - return visitor.visitTable_alias_clause(this); + if (visitor.visitTableAliasClause) { + return visitor.visitTableAliasClause(this); } else { return visitor.visitChildren(this); } @@ -102620,18 +96001,18 @@ export class Table_alias_clauseContext extends antlr.ParserRuleContext { } -export class Func_alias_clauseContext extends antlr.ParserRuleContext { +export class FunctionAliasClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public alias_clause(): Alias_clauseContext | null { - return this.getRuleContext(0, Alias_clauseContext); + public aliasClause(): AliasClauseContext | null { + return this.getRuleContext(0, AliasClauseContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public tablefuncelementlist(): TablefuncelementlistContext | null { - return this.getRuleContext(0, TablefuncelementlistContext); + public tableFunctionElementList(): TableFunctionElementListContext | null { + return this.getRuleContext(0, TableFunctionElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -102639,15 +96020,15 @@ export class Func_alias_clauseContext extends antlr.ParserRuleContext { public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_alias_clause; + return PostgreSqlParser.RULE_functionAliasClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_alias_clause) { - return visitor.visitFunc_alias_clause(this); + if (visitor.visitFunctionAliasClause) { + return visitor.visitFunctionAliasClause(this); } else { return visitor.visitChildren(this); } @@ -102655,7 +96036,7 @@ export class Func_alias_clauseContext extends antlr.ParserRuleContext { } -export class Join_typeContext extends antlr.ParserRuleContext { +export class JoinTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -102675,11 +96056,11 @@ export class Join_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OUTER_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_join_type; + return PostgreSqlParser.RULE_joinType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitJoin_type) { - return visitor.visitJoin_type(this); + if (visitor.visitJoinType) { + return visitor.visitJoinType(this); } else { return visitor.visitChildren(this); } @@ -102687,7 +96068,7 @@ export class Join_typeContext extends antlr.ParserRuleContext { } -export class Join_qualContext extends antlr.ParserRuleContext { +export class JoinQualifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -102697,8 +96078,8 @@ export class Join_qualContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public name_list(): Name_listContext | null { - return this.getRuleContext(0, Name_listContext); + public nameList(): NameListContext | null { + return this.getRuleContext(0, NameListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -102706,15 +96087,15 @@ export class Join_qualContext extends antlr.ParserRuleContext { public ON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ON, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_join_qual; + return PostgreSqlParser.RULE_joinQualifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitJoin_qual) { - return visitor.visitJoin_qual(this); + if (visitor.visitJoinQualifier) { + return visitor.visitJoinQualifier(this); } else { return visitor.visitChildren(this); } @@ -102722,12 +96103,12 @@ export class Join_qualContext extends antlr.ParserRuleContext { } -export class Relation_exprContext extends antlr.ParserRuleContext { +export class RelationExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -102742,11 +96123,11 @@ export class Relation_exprContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_relation_expr; + return PostgreSqlParser.RULE_relationExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRelation_expr) { - return visitor.visitRelation_expr(this); + if (visitor.visitRelationExpression) { + return visitor.visitRelationExpression(this); } else { return visitor.visitChildren(this); } @@ -102754,18 +96135,18 @@ export class Relation_exprContext extends antlr.ParserRuleContext { } -export class Relation_expr_listContext extends antlr.ParserRuleContext { +export class RelationExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public relation_expr(): Relation_exprContext[]; - public relation_expr(i: number): Relation_exprContext | null; - public relation_expr(i?: number): Relation_exprContext[] | Relation_exprContext | null { + public relationExpression(): RelationExpressionContext[]; + public relationExpression(i: number): RelationExpressionContext | null; + public relationExpression(i?: number): RelationExpressionContext[] | RelationExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(Relation_exprContext); + return this.getRuleContexts(RelationExpressionContext); } - return this.getRuleContext(i, Relation_exprContext); + return this.getRuleContext(i, RelationExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -102777,11 +96158,11 @@ export class Relation_expr_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_relation_expr_list; + return PostgreSqlParser.RULE_relationExpressionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRelation_expr_list) { - return visitor.visitRelation_expr_list(this); + if (visitor.visitRelationExpressionList) { + return visitor.visitRelationExpressionList(this); } else { return visitor.visitChildren(this); } @@ -102789,25 +96170,25 @@ export class Relation_expr_listContext extends antlr.ParserRuleContext { } -export class Relation_expr_opt_aliasContext extends antlr.ParserRuleContext { +export class RelationExpressionOptionalAliasContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public relation_expr(): Relation_exprContext { - return this.getRuleContext(0, Relation_exprContext)!; + public relationExpression(): RelationExpressionContext { + return this.getRuleContext(0, RelationExpressionContext)!; } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_relation_expr_opt_alias; + return PostgreSqlParser.RULE_relationExpressionOptionalAlias; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRelation_expr_opt_alias) { - return visitor.visitRelation_expr_opt_alias(this); + if (visitor.visitRelationExpressionOptionalAlias) { + return visitor.visitRelationExpressionOptionalAlias(this); } else { return visitor.visitChildren(this); } @@ -102815,63 +96196,49 @@ export class Relation_expr_opt_aliasContext extends antlr.ParserRuleContext { } -export class Tablesample_clauseContext extends antlr.ParserRuleContext { +export class TableSampleClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public TABLESAMPLE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.TABLESAMPLE, 0)!; } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } - public OPEN_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; - } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; - } - public CLOSE_PAREN(): antlr.TerminalNode { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; - } - public opt_repeatable_clause(): Opt_repeatable_clauseContext { - return this.getRuleContext(0, Opt_repeatable_clauseContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablesample_clause; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablesample_clause) { - return visitor.visitTablesample_clause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_repeatable_clauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public OPEN_PAREN(): antlr.TerminalNode[]; + public OPEN_PAREN(i: number): antlr.TerminalNode | null; + public OPEN_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.OPEN_PAREN); + } else { + return this.getToken(PostgreSqlParser.OPEN_PAREN, i); + } } - public REPEATABLE(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.REPEATABLE, 0); + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } - public OPEN_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); + public CLOSE_PAREN(): antlr.TerminalNode[]; + public CLOSE_PAREN(i: number): antlr.TerminalNode | null; + public CLOSE_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.CLOSE_PAREN); + } else { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, i); + } } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public REPEATABLE(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.REPEATABLE, 0)!; } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_repeatable_clause; + return PostgreSqlParser.RULE_tableSampleClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_repeatable_clause) { - return visitor.visitOpt_repeatable_clause(this); + if (visitor.visitTableSampleClause) { + return visitor.visitTableSampleClause(this); } else { return visitor.visitChildren(this); } @@ -102879,15 +96246,15 @@ export class Opt_repeatable_clauseContext extends antlr.ParserRuleContext { } -export class Func_tableContext extends antlr.ParserRuleContext { +export class FunctionTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_expr_windowless(): Func_expr_windowlessContext | null { - return this.getRuleContext(0, Func_expr_windowlessContext); + public functionExpressionWindowless(): FunctionExpressionWindowlessContext | null { + return this.getRuleContext(0, FunctionExpressionWindowlessContext); } - public opt_ordinality(): Opt_ordinalityContext { - return this.getRuleContext(0, Opt_ordinalityContext)!; + public optionalOrdinality(): OptionalOrdinalityContext { + return this.getRuleContext(0, OptionalOrdinalityContext)!; } public ROWS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROWS, 0); @@ -102898,41 +96265,33 @@ export class Func_tableContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public rowsfrom_list(): Rowsfrom_listContext | null { - return this.getRuleContext(0, Rowsfrom_listContext); - } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_table; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_table) { - return visitor.visitFunc_table(this); - } else { - return visitor.visitChildren(this); + public rowsFromItem(): RowsFromItemContext[]; + public rowsFromItem(i: number): RowsFromItemContext | null; + public rowsFromItem(i?: number): RowsFromItemContext[] | RowsFromItemContext | null { + if (i === undefined) { + return this.getRuleContexts(RowsFromItemContext); } - } -} - -export class Rowsfrom_itemContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + return this.getRuleContext(i, RowsFromItemContext); } - public func_expr_windowless(): Func_expr_windowlessContext { - return this.getRuleContext(0, Func_expr_windowlessContext)!; + public CLOSE_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public opt_col_def_list(): Opt_col_def_listContext { - return this.getRuleContext(0, Opt_col_def_listContext)!; + 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(PostgreSqlParser.COMMA); + } else { + return this.getToken(PostgreSqlParser.COMMA, i); + } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsfrom_item; + return PostgreSqlParser.RULE_functionTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsfrom_item) { - return visitor.visitRowsfrom_item(this); + if (visitor.visitFunctionTable) { + return visitor.visitFunctionTable(this); } else { return visitor.visitChildren(this); } @@ -102940,34 +96299,22 @@ export class Rowsfrom_itemContext extends antlr.ParserRuleContext { } -export class Rowsfrom_listContext extends antlr.ParserRuleContext { +export class RowsFromItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public rowsfrom_item(): Rowsfrom_itemContext[]; - public rowsfrom_item(i: number): Rowsfrom_itemContext | null; - public rowsfrom_item(i?: number): Rowsfrom_itemContext[] | Rowsfrom_itemContext | null { - if (i === undefined) { - return this.getRuleContexts(Rowsfrom_itemContext); - } - - return this.getRuleContext(i, Rowsfrom_itemContext); + public functionExpressionWindowless(): FunctionExpressionWindowlessContext { + return this.getRuleContext(0, FunctionExpressionWindowlessContext)!; } - 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(PostgreSqlParser.COMMA); - } else { - return this.getToken(PostgreSqlParser.COMMA, i); - } + public optionalColumnDefinitionList(): OptionalColumnDefinitionListContext { + return this.getRuleContext(0, OptionalColumnDefinitionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rowsfrom_list; + return PostgreSqlParser.RULE_rowsFromItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRowsfrom_list) { - return visitor.visitRowsfrom_list(this); + if (visitor.visitRowsFromItem) { + return visitor.visitRowsFromItem(this); } else { return visitor.visitChildren(this); } @@ -102975,7 +96322,7 @@ export class Rowsfrom_listContext extends antlr.ParserRuleContext { } -export class Opt_col_def_listContext extends antlr.ParserRuleContext { +export class OptionalColumnDefinitionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -102985,18 +96332,18 @@ export class Opt_col_def_listContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public tablefuncelementlist(): TablefuncelementlistContext | null { - return this.getRuleContext(0, TablefuncelementlistContext); + public tableFunctionElementList(): TableFunctionElementListContext | null { + return this.getRuleContext(0, TableFunctionElementListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_col_def_list; + return PostgreSqlParser.RULE_optionalColumnDefinitionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_col_def_list) { - return visitor.visitOpt_col_def_list(this); + if (visitor.visitOptionalColumnDefinitionList) { + return visitor.visitOptionalColumnDefinitionList(this); } else { return visitor.visitChildren(this); } @@ -103004,7 +96351,7 @@ export class Opt_col_def_listContext extends antlr.ParserRuleContext { } -export class Opt_ordinalityContext extends antlr.ParserRuleContext { +export class OptionalOrdinalityContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103015,11 +96362,11 @@ export class Opt_ordinalityContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ORDINALITY, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_ordinality; + return PostgreSqlParser.RULE_optionalOrdinality; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_ordinality) { - return visitor.visitOpt_ordinality(this); + if (visitor.visitOptionalOrdinality) { + return visitor.visitOptionalOrdinality(this); } else { return visitor.visitChildren(this); } @@ -103027,22 +96374,22 @@ export class Opt_ordinalityContext extends antlr.ParserRuleContext { } -export class Where_clauseContext extends antlr.ParserRuleContext { +export class WhereClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WHERE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WHERE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_where_clause; + return PostgreSqlParser.RULE_whereClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWhere_clause) { - return visitor.visitWhere_clause(this); + if (visitor.visitWhereClause) { + return visitor.visitWhereClause(this); } else { return visitor.visitChildren(this); } @@ -103050,7 +96397,7 @@ export class Where_clauseContext extends antlr.ParserRuleContext { } -export class Where_or_current_clauseContext extends antlr.ParserRuleContext { +export class WhereOrCurrentClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103063,18 +96410,18 @@ export class Where_or_current_clauseContext extends antlr.ParserRuleContext { public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); } - public cursor_name(): Cursor_nameContext | null { - return this.getRuleContext(0, Cursor_nameContext); + public cursorName(): CursorNameContext | null { + return this.getRuleContext(0, CursorNameContext); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_where_or_current_clause; + return PostgreSqlParser.RULE_whereOrCurrentClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWhere_or_current_clause) { - return visitor.visitWhere_or_current_clause(this); + if (visitor.visitWhereOrCurrentClause) { + return visitor.visitWhereOrCurrentClause(this); } else { return visitor.visitChildren(this); } @@ -103082,19 +96429,19 @@ export class Where_or_current_clauseContext extends antlr.ParserRuleContext { } -export class OpttablefuncelementlistContext extends antlr.ParserRuleContext { +export class OptionalTableFunctionElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tablefuncelementlist(): TablefuncelementlistContext | null { - return this.getRuleContext(0, TablefuncelementlistContext); + public tableFunctionElementList(): TableFunctionElementListContext | null { + return this.getRuleContext(0, TableFunctionElementListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opttablefuncelementlist; + return PostgreSqlParser.RULE_optionalTableFunctionElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpttablefuncelementlist) { - return visitor.visitOpttablefuncelementlist(this); + if (visitor.visitOptionalTableFunctionElementList) { + return visitor.visitOptionalTableFunctionElementList(this); } else { return visitor.visitChildren(this); } @@ -103102,18 +96449,18 @@ export class OpttablefuncelementlistContext extends antlr.ParserRuleContext { } -export class TablefuncelementlistContext extends antlr.ParserRuleContext { +export class TableFunctionElementListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tablefuncelement(): TablefuncelementContext[]; - public tablefuncelement(i: number): TablefuncelementContext | null; - public tablefuncelement(i?: number): TablefuncelementContext[] | TablefuncelementContext | null { + public tableFunctionElement(): TableFunctionElementContext[]; + public tableFunctionElement(i: number): TableFunctionElementContext | null; + public tableFunctionElement(i?: number): TableFunctionElementContext[] | TableFunctionElementContext | null { if (i === undefined) { - return this.getRuleContexts(TablefuncelementContext); + return this.getRuleContexts(TableFunctionElementContext); } - return this.getRuleContext(i, TablefuncelementContext); + return this.getRuleContext(i, TableFunctionElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -103125,11 +96472,11 @@ export class TablefuncelementlistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablefuncelementlist; + return PostgreSqlParser.RULE_tableFunctionElementList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablefuncelementlist) { - return visitor.visitTablefuncelementlist(this); + if (visitor.visitTableFunctionElementList) { + return visitor.visitTableFunctionElementList(this); } else { return visitor.visitChildren(this); } @@ -103137,25 +96484,25 @@ export class TablefuncelementlistContext extends antlr.ParserRuleContext { } -export class TablefuncelementContext extends antlr.ParserRuleContext { +export class TableFunctionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } - public opt_collate_clause(): Opt_collate_clauseContext { - return this.getRuleContext(0, Opt_collate_clauseContext)!; + public optionalCollateClause(): OptionalCollateClauseContext { + return this.getRuleContext(0, OptionalCollateClauseContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_tablefuncelement; + return PostgreSqlParser.RULE_tableFunctionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTablefuncelement) { - return visitor.visitTablefuncelement(this); + if (visitor.visitTableFunctionElement) { + return visitor.visitTableFunctionElement(this); } else { return visitor.visitChildren(this); } @@ -103163,7 +96510,7 @@ export class TablefuncelementContext extends antlr.ParserRuleContext { } -export class XmltableContext extends antlr.ParserRuleContext { +export class XmlTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103188,52 +96535,29 @@ export class XmltableContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, i); } } - public c_expr(): C_exprContext | null { - return this.getRuleContext(0, C_exprContext); + public expression3(): Expression3Context | null { + return this.getRuleContext(0, Expression3Context); } - public xmlexists_argument(): Xmlexists_argumentContext | null { - return this.getRuleContext(0, Xmlexists_argumentContext); + public xmlExistsArgument(): XmlExistsArgumentContext | null { + return this.getRuleContext(0, XmlExistsArgumentContext); } public COLUMNS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLUMNS, 0); } - public xmltable_column_list(): Xmltable_column_listContext | null { - return this.getRuleContext(0, Xmltable_column_listContext); + public xmlTableColumnElement(): XmlTableColumnElementContext[]; + public xmlTableColumnElement(i: number): XmlTableColumnElementContext | null; + public xmlTableColumnElement(i?: number): XmlTableColumnElementContext[] | XmlTableColumnElementContext | null { + if (i === undefined) { + return this.getRuleContexts(XmlTableColumnElementContext); + } + + return this.getRuleContext(i, XmlTableColumnElementContext); } public XMLNAMESPACES(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLNAMESPACES, 0); } - public xml_namespace_list(): Xml_namespace_listContext | null { - return this.getRuleContext(0, Xml_namespace_listContext); - } - public COMMA(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.COMMA, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmltable; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmltable) { - return visitor.visitXmltable(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Xmltable_column_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public xmltable_column_el(): Xmltable_column_elContext[]; - public xmltable_column_el(i: number): Xmltable_column_elContext | null; - public xmltable_column_el(i?: number): Xmltable_column_elContext[] | Xmltable_column_elContext | null { - if (i === undefined) { - return this.getRuleContexts(Xmltable_column_elContext); - } - - return this.getRuleContext(i, Xmltable_column_elContext); + public xmlNamespaceList(): XmlNamespaceListContext | null { + return this.getRuleContext(0, XmlNamespaceListContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -103245,11 +96569,11 @@ export class Xmltable_column_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmltable_column_list; + return PostgreSqlParser.RULE_xmlTable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmltable_column_list) { - return visitor.visitXmltable_column_list(this); + if (visitor.visitXmlTable) { + return visitor.visitXmlTable(this); } else { return visitor.visitChildren(this); } @@ -103257,15 +96581,15 @@ export class Xmltable_column_listContext extends antlr.ParserRuleContext { } -export class Xmltable_column_elContext extends antlr.ParserRuleContext { +export class XmlTableColumnElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); @@ -103273,15 +96597,15 @@ export class Xmltable_column_elContext extends antlr.ParserRuleContext { public ORDINALITY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ORDINALITY, 0); } - public xmltable_column_option_list(): Xmltable_column_option_listContext | null { - return this.getRuleContext(0, Xmltable_column_option_listContext); + public xmlTableColumnOptionList(): XmlTableColumnOptionListContext | null { + return this.getRuleContext(0, XmlTableColumnOptionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmltable_column_el; + return PostgreSqlParser.RULE_xmlTableColumnElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmltable_column_el) { - return visitor.visitXmltable_column_el(this); + if (visitor.visitXmlTableColumnElement) { + return visitor.visitXmlTableColumnElement(this); } else { return visitor.visitChildren(this); } @@ -103289,25 +96613,25 @@ export class Xmltable_column_elContext extends antlr.ParserRuleContext { } -export class Xmltable_column_option_listContext extends antlr.ParserRuleContext { +export class XmlTableColumnOptionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public xmltable_column_option_el(): Xmltable_column_option_elContext[]; - public xmltable_column_option_el(i: number): Xmltable_column_option_elContext | null; - public xmltable_column_option_el(i?: number): Xmltable_column_option_elContext[] | Xmltable_column_option_elContext | null { + public xmlTableColumnOptionElement(): XmlTableColumnOptionElementContext[]; + public xmlTableColumnOptionElement(i: number): XmlTableColumnOptionElementContext | null; + public xmlTableColumnOptionElement(i?: number): XmlTableColumnOptionElementContext[] | XmlTableColumnOptionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Xmltable_column_option_elContext); + return this.getRuleContexts(XmlTableColumnOptionElementContext); } - return this.getRuleContext(i, Xmltable_column_option_elContext); + return this.getRuleContext(i, XmlTableColumnOptionElementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmltable_column_option_list; + return PostgreSqlParser.RULE_xmlTableColumnOptionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmltable_column_option_list) { - return visitor.visitXmltable_column_option_list(this); + if (visitor.visitXmlTableColumnOptionList) { + return visitor.visitXmlTableColumnOptionList(this); } else { return visitor.visitChildren(this); } @@ -103315,15 +96639,15 @@ export class Xmltable_column_option_listContext extends antlr.ParserRuleContext } -export class Xmltable_column_option_elContext extends antlr.ParserRuleContext { +export class XmlTableColumnOptionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); @@ -103335,11 +96659,11 @@ export class Xmltable_column_option_elContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmltable_column_option_el; + return PostgreSqlParser.RULE_xmlTableColumnOptionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmltable_column_option_el) { - return visitor.visitXmltable_column_option_el(this); + if (visitor.visitXmlTableColumnOptionElement) { + return visitor.visitXmlTableColumnOptionElement(this); } else { return visitor.visitChildren(this); } @@ -103347,18 +96671,18 @@ export class Xmltable_column_option_elContext extends antlr.ParserRuleContext { } -export class Xml_namespace_listContext extends antlr.ParserRuleContext { +export class XmlNamespaceListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public xml_namespace_el(): Xml_namespace_elContext[]; - public xml_namespace_el(i: number): Xml_namespace_elContext | null; - public xml_namespace_el(i?: number): Xml_namespace_elContext[] | Xml_namespace_elContext | null { + public xmlNamespaceElement(): XmlNamespaceElementContext[]; + public xmlNamespaceElement(i: number): XmlNamespaceElementContext | null; + public xmlNamespaceElement(i?: number): XmlNamespaceElementContext[] | XmlNamespaceElementContext | null { if (i === undefined) { - return this.getRuleContexts(Xml_namespace_elContext); + return this.getRuleContexts(XmlNamespaceElementContext); } - return this.getRuleContext(i, Xml_namespace_elContext); + return this.getRuleContext(i, XmlNamespaceElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -103370,11 +96694,11 @@ export class Xml_namespace_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_namespace_list; + return PostgreSqlParser.RULE_xmlNamespaceList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_namespace_list) { - return visitor.visitXml_namespace_list(this); + if (visitor.visitXmlNamespaceList) { + return visitor.visitXmlNamespaceList(this); } else { return visitor.visitChildren(this); } @@ -103382,28 +96706,28 @@ export class Xml_namespace_listContext extends antlr.ParserRuleContext { } -export class Xml_namespace_elContext extends antlr.ParserRuleContext { +export class XmlNamespaceElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public b_expr(): B_exprContext { - return this.getRuleContext(0, B_exprContext)!; + public expression2(): Expression2Context { + return this.getRuleContext(0, Expression2Context)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); + public columnLabel(): ColumnLabelContext | null { + return this.getRuleContext(0, ColumnLabelContext); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_namespace_el; + return PostgreSqlParser.RULE_xmlNamespaceElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_namespace_el) { - return visitor.visitXml_namespace_el(this); + if (visitor.visitXmlNamespaceElement) { + return visitor.visitXmlNamespaceElement(this); } else { return visitor.visitChildren(this); } @@ -103411,15 +96735,12 @@ export class Xml_namespace_elContext extends antlr.ParserRuleContext { } -export class TypenameContext extends antlr.ParserRuleContext { +export class TypeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public simpletypename(): SimpletypenameContext | null { - return this.getRuleContext(0, SimpletypenameContext); - } - public opt_array_bounds(): Opt_array_boundsContext | null { - return this.getRuleContext(0, Opt_array_boundsContext); + public simpleTypeName(): SimpleTypeNameContext | null { + return this.getRuleContext(0, SimpleTypeNameContext); } public ARRAY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ARRAY, 0); @@ -103427,44 +96748,6 @@ export class TypenameContext extends antlr.ParserRuleContext { public SETOF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SETOF, 0); } - public OPEN_BRACKET(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.OPEN_BRACKET, 0); - } - public iconst(): IconstContext | null { - return this.getRuleContext(0, IconstContext); - } - public CLOSE_BRACKET(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_BRACKET, 0); - } - public qualified_name(): Qualified_nameContext | null { - return this.getRuleContext(0, Qualified_nameContext); - } - public PERCENT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.PERCENT, 0); - } - public ROWTYPE(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.ROWTYPE, 0); - } - public TYPE_P(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.TYPE_P, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_typename; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTypename) { - return visitor.visitTypename(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_array_boundsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } public OPEN_BRACKET(): antlr.TerminalNode[]; public OPEN_BRACKET(i: number): antlr.TerminalNode | null; public OPEN_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -103492,12 +96775,24 @@ export class Opt_array_boundsContext extends antlr.ParserRuleContext { return this.getRuleContext(i, IconstContext); } + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); + } + public PERCENT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.PERCENT, 0); + } + public ROWTYPE(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.ROWTYPE, 0); + } + public TYPE_P(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.TYPE_P, 0); + } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_array_bounds; + return PostgreSqlParser.RULE_typeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_array_bounds) { - return visitor.visitOpt_array_bounds(this); + if (visitor.visitTypeName) { + return visitor.visitTypeName(this); } else { return visitor.visitChildren(this); } @@ -103505,12 +96800,12 @@ export class Opt_array_boundsContext extends antlr.ParserRuleContext { } -export class SimpletypenameContext extends antlr.ParserRuleContext { +export class SimpleTypeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generictype(): GenerictypeContext | null { - return this.getRuleContext(0, GenerictypeContext); + public genericType(): GenericTypeContext | null { + return this.getRuleContext(0, GenericTypeContext); } public numeric(): NumericContext | null { return this.getRuleContext(0, NumericContext); @@ -103521,14 +96816,14 @@ export class SimpletypenameContext extends antlr.ParserRuleContext { public character(): CharacterContext | null { return this.getRuleContext(0, CharacterContext); } - public constdatetime(): ConstdatetimeContext | null { - return this.getRuleContext(0, ConstdatetimeContext); + public constDateTime(): ConstDateTimeContext | null { + return this.getRuleContext(0, ConstDateTimeContext); } - public constinterval(): ConstintervalContext | null { - return this.getRuleContext(0, ConstintervalContext); + public constInterval(): ConstIntervalContext | null { + return this.getRuleContext(0, ConstIntervalContext); } - public opt_interval(): Opt_intervalContext | null { - return this.getRuleContext(0, Opt_intervalContext); + public optionalInterval(): OptionalIntervalContext | null { + return this.getRuleContext(0, OptionalIntervalContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); @@ -103540,11 +96835,11 @@ export class SimpletypenameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_simpletypename; + return PostgreSqlParser.RULE_simpleTypeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSimpletypename) { - return visitor.visitSimpletypename(this); + if (visitor.visitSimpleTypeName) { + return visitor.visitSimpleTypeName(this); } else { return visitor.visitChildren(this); } @@ -103552,28 +96847,28 @@ export class SimpletypenameContext extends antlr.ParserRuleContext { } -export class ConsttypenameContext extends antlr.ParserRuleContext { +export class ConstTypeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public numeric(): NumericContext | null { return this.getRuleContext(0, NumericContext); } - public constbit(): ConstbitContext | null { - return this.getRuleContext(0, ConstbitContext); + public constBit(): ConstBitContext | null { + return this.getRuleContext(0, ConstBitContext); } - public constcharacter(): ConstcharacterContext | null { - return this.getRuleContext(0, ConstcharacterContext); + public constCharacter(): ConstCharacterContext | null { + return this.getRuleContext(0, ConstCharacterContext); } - public constdatetime(): ConstdatetimeContext | null { - return this.getRuleContext(0, ConstdatetimeContext); + public constDateTime(): ConstDateTimeContext | null { + return this.getRuleContext(0, ConstDateTimeContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_consttypename; + return PostgreSqlParser.RULE_constTypeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConsttypename) { - return visitor.visitConsttypename(this); + if (visitor.visitConstTypeName) { + return visitor.visitConstTypeName(this); } else { return visitor.visitChildren(this); } @@ -103581,18 +96876,18 @@ export class ConsttypenameContext extends antlr.ParserRuleContext { } -export class GenerictypeContext extends antlr.ParserRuleContext { +export class GenericTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_type_modifiers(): Opt_type_modifiersContext { - return this.getRuleContext(0, Opt_type_modifiersContext)!; + public optionalTypeModifiers(): OptionalTypeModifiersContext { + return this.getRuleContext(0, OptionalTypeModifiersContext)!; } - public builtin_function_name(): Builtin_function_nameContext | null { - return this.getRuleContext(0, Builtin_function_nameContext); + public builtinFunctionName(): BuiltinFunctionNameContext | null { + return this.getRuleContext(0, BuiltinFunctionNameContext); } - public type_function_name(): Type_function_nameContext | null { - return this.getRuleContext(0, Type_function_nameContext); + public typeFunctionName(): TypeFunctionNameContext | null { + return this.getRuleContext(0, TypeFunctionNameContext); } public LEFT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LEFT, 0); @@ -103600,15 +96895,15 @@ export class GenerictypeContext extends antlr.ParserRuleContext { public RIGHT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RIGHT, 0); } - public attrs(): AttrsContext | null { - return this.getRuleContext(0, AttrsContext); + public attributes(): AttributesContext | null { + return this.getRuleContext(0, AttributesContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_generictype; + return PostgreSqlParser.RULE_genericType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGenerictype) { - return visitor.visitGenerictype(this); + if (visitor.visitGenericType) { + return visitor.visitGenericType(this); } else { return visitor.visitChildren(this); } @@ -103616,25 +96911,25 @@ export class GenerictypeContext extends antlr.ParserRuleContext { } -export class Opt_type_modifiersContext extends antlr.ParserRuleContext { +export class OptionalTypeModifiersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_type_modifiers; + return PostgreSqlParser.RULE_optionalTypeModifiers; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_type_modifiers) { - return visitor.visitOpt_type_modifiers(this); + if (visitor.visitOptionalTypeModifiers) { + return visitor.visitOptionalTypeModifiers(this); } else { return visitor.visitChildren(this); } @@ -103664,8 +96959,8 @@ export class NumericContext extends antlr.ParserRuleContext { public FLOAT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FLOAT_P, 0); } - public opt_float(): Opt_floatContext | null { - return this.getRuleContext(0, Opt_floatContext); + public optionalFloat(): OptionalFloatContext | null { + return this.getRuleContext(0, OptionalFloatContext); } public DOUBLE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOUBLE_P, 0); @@ -103676,8 +96971,8 @@ export class NumericContext extends antlr.ParserRuleContext { public DECIMAL_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DECIMAL_P, 0); } - public opt_type_modifiers(): Opt_type_modifiersContext | null { - return this.getRuleContext(0, Opt_type_modifiersContext); + public optionalTypeModifiers(): OptionalTypeModifiersContext | null { + return this.getRuleContext(0, OptionalTypeModifiersContext); } public DEC(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEC, 0); @@ -103701,7 +96996,7 @@ export class NumericContext extends antlr.ParserRuleContext { } -export class Opt_floatContext extends antlr.ParserRuleContext { +export class OptionalFloatContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103715,11 +97010,11 @@ export class Opt_floatContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_float; + return PostgreSqlParser.RULE_optionalFloat; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_float) { - return visitor.visitOpt_float(this); + if (visitor.visitOptionalFloat) { + return visitor.visitOptionalFloat(this); } else { return visitor.visitChildren(this); } @@ -103731,11 +97026,11 @@ export class BitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public bitwithlength(): BitwithlengthContext | null { - return this.getRuleContext(0, BitwithlengthContext); + public bitWithLength(): BitWithLengthContext | null { + return this.getRuleContext(0, BitWithLengthContext); } - public bitwithoutlength(): BitwithoutlengthContext | null { - return this.getRuleContext(0, BitwithoutlengthContext); + public bitWithoutLength(): BitWithoutLengthContext | null { + return this.getRuleContext(0, BitWithoutLengthContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_bit; @@ -103750,22 +97045,22 @@ export class BitContext extends antlr.ParserRuleContext { } -export class ConstbitContext extends antlr.ParserRuleContext { +export class ConstBitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public bitwithlength(): BitwithlengthContext | null { - return this.getRuleContext(0, BitwithlengthContext); + public bitWithLength(): BitWithLengthContext | null { + return this.getRuleContext(0, BitWithLengthContext); } - public bitwithoutlength(): BitwithoutlengthContext | null { - return this.getRuleContext(0, BitwithoutlengthContext); + public bitWithoutLength(): BitWithoutLengthContext | null { + return this.getRuleContext(0, BitWithoutLengthContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constbit; + return PostgreSqlParser.RULE_constBit; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstbit) { - return visitor.visitConstbit(this); + if (visitor.visitConstBit) { + return visitor.visitConstBit(this); } else { return visitor.visitChildren(this); } @@ -103773,31 +97068,31 @@ export class ConstbitContext extends antlr.ParserRuleContext { } -export class BitwithlengthContext extends antlr.ParserRuleContext { +export class BitWithLengthContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public BIT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BIT, 0)!; } - public opt_varying(): Opt_varyingContext { - return this.getRuleContext(0, Opt_varyingContext)!; + public optionalVarying(): OptionalVaryingContext { + return this.getRuleContext(0, OptionalVaryingContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_bitwithlength; + return PostgreSqlParser.RULE_bitWithLength; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitBitwithlength) { - return visitor.visitBitwithlength(this); + if (visitor.visitBitWithLength) { + return visitor.visitBitWithLength(this); } else { return visitor.visitChildren(this); } @@ -103805,22 +97100,22 @@ export class BitwithlengthContext extends antlr.ParserRuleContext { } -export class BitwithoutlengthContext extends antlr.ParserRuleContext { +export class BitWithoutLengthContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public BIT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BIT, 0)!; } - public opt_varying(): Opt_varyingContext { - return this.getRuleContext(0, Opt_varyingContext)!; + public optionalVarying(): OptionalVaryingContext { + return this.getRuleContext(0, OptionalVaryingContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_bitwithoutlength; + return PostgreSqlParser.RULE_bitWithoutLength; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitBitwithoutlength) { - return visitor.visitBitwithoutlength(this); + if (visitor.visitBitWithoutLength) { + return visitor.visitBitWithoutLength(this); } else { return visitor.visitChildren(this); } @@ -103832,8 +97127,8 @@ export class CharacterContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public character_c(): Character_cContext { - return this.getRuleContext(0, Character_cContext)!; + public characterChar(): CharacterCharContext { + return this.getRuleContext(0, CharacterCharContext)!; } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); @@ -103857,12 +97152,12 @@ export class CharacterContext extends antlr.ParserRuleContext { } -export class ConstcharacterContext extends antlr.ParserRuleContext { +export class ConstCharacterContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public character_c(): Character_cContext { - return this.getRuleContext(0, Character_cContext)!; + public characterChar(): CharacterCharContext { + return this.getRuleContext(0, CharacterCharContext)!; } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); @@ -103874,11 +97169,11 @@ export class ConstcharacterContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constcharacter; + return PostgreSqlParser.RULE_constCharacter; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstcharacter) { - return visitor.visitConstcharacter(this); + if (visitor.visitConstCharacter) { + return visitor.visitConstCharacter(this); } else { return visitor.visitChildren(this); } @@ -103886,12 +97181,12 @@ export class ConstcharacterContext extends antlr.ParserRuleContext { } -export class Character_cContext extends antlr.ParserRuleContext { +export class CharacterCharContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_varying(): Opt_varyingContext | null { - return this.getRuleContext(0, Opt_varyingContext); + public optionalVarying(): OptionalVaryingContext | null { + return this.getRuleContext(0, OptionalVaryingContext); } public CHARACTER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CHARACTER, 0); @@ -103909,11 +97204,11 @@ export class Character_cContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NATIONAL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_character_c; + return PostgreSqlParser.RULE_characterChar; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCharacter_c) { - return visitor.visitCharacter_c(this); + if (visitor.visitCharacterChar) { + return visitor.visitCharacterChar(this); } else { return visitor.visitChildren(this); } @@ -103921,7 +97216,7 @@ export class Character_cContext extends antlr.ParserRuleContext { } -export class Opt_varyingContext extends antlr.ParserRuleContext { +export class OptionalVaryingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103929,11 +97224,11 @@ export class Opt_varyingContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VARYING, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_varying; + return PostgreSqlParser.RULE_optionalVarying; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_varying) { - return visitor.visitOpt_varying(this); + if (visitor.visitOptionalVarying) { + return visitor.visitOptionalVarying(this); } else { return visitor.visitChildren(this); } @@ -103941,12 +97236,12 @@ export class Opt_varyingContext extends antlr.ParserRuleContext { } -export class ConstdatetimeContext extends antlr.ParserRuleContext { +export class ConstDateTimeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_timezone(): Opt_timezoneContext { - return this.getRuleContext(0, Opt_timezoneContext)!; + public optionalTimezone(): OptionalTimezoneContext { + return this.getRuleContext(0, OptionalTimezoneContext)!; } public TIMESTAMP(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TIMESTAMP, 0); @@ -103964,11 +97259,11 @@ export class ConstdatetimeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constdatetime; + return PostgreSqlParser.RULE_constDateTime; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstdatetime) { - return visitor.visitConstdatetime(this); + if (visitor.visitConstDateTime) { + return visitor.visitConstDateTime(this); } else { return visitor.visitChildren(this); } @@ -103976,7 +97271,7 @@ export class ConstdatetimeContext extends antlr.ParserRuleContext { } -export class ConstintervalContext extends antlr.ParserRuleContext { +export class ConstIntervalContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -103984,11 +97279,11 @@ export class ConstintervalContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.INTERVAL, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_constinterval; + return PostgreSqlParser.RULE_constInterval; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitConstinterval) { - return visitor.visitConstinterval(this); + if (visitor.visitConstInterval) { + return visitor.visitConstInterval(this); } else { return visitor.visitChildren(this); } @@ -103996,7 +97291,7 @@ export class ConstintervalContext extends antlr.ParserRuleContext { } -export class Opt_timezoneContext extends antlr.ParserRuleContext { +export class OptionalTimezoneContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -104013,11 +97308,11 @@ export class Opt_timezoneContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.WITHOUT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_timezone; + return PostgreSqlParser.RULE_optionalTimezone; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_timezone) { - return visitor.visitOpt_timezone(this); + if (visitor.visitOptionalTimezone) { + return visitor.visitOptionalTimezone(this); } else { return visitor.visitChildren(this); } @@ -104025,7 +97320,7 @@ export class Opt_timezoneContext extends antlr.ParserRuleContext { } -export class Opt_intervalContext extends antlr.ParserRuleContext { +export class OptionalIntervalContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -104044,18 +97339,18 @@ export class Opt_intervalContext extends antlr.ParserRuleContext { public MINUTE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MINUTE_P, 0); } - public interval_second(): Interval_secondContext | null { - return this.getRuleContext(0, Interval_secondContext); + public intervalSecond(): IntervalSecondContext | null { + return this.getRuleContext(0, IntervalSecondContext); } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_interval; + return PostgreSqlParser.RULE_optionalInterval; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_interval) { - return visitor.visitOpt_interval(this); + if (visitor.visitOptionalInterval) { + return visitor.visitOptionalInterval(this); } else { return visitor.visitChildren(this); } @@ -104063,7 +97358,7 @@ export class Opt_intervalContext extends antlr.ParserRuleContext { } -export class Interval_secondContext extends antlr.ParserRuleContext { +export class IntervalSecondContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -104080,11 +97375,11 @@ export class Interval_secondContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_interval_second; + return PostgreSqlParser.RULE_intervalSecond; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInterval_second) { - return visitor.visitInterval_second(this); + if (visitor.visitIntervalSecond) { + return visitor.visitIntervalSecond(this); } else { return visitor.visitChildren(this); } @@ -104092,22 +97387,22 @@ export class Interval_secondContext extends antlr.ParserRuleContext { } -export class Opt_escapeContext extends antlr.ParserRuleContext { +export class OptionalEscapeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ESCAPE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ESCAPE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_escape; + return PostgreSqlParser.RULE_optionalEscape; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_escape) { - return visitor.visitOpt_escape(this); + if (visitor.visitOptionalEscape) { + return visitor.visitOptionalEscape(this); } else { return visitor.visitChildren(this); } @@ -104115,19 +97410,19 @@ export class Opt_escapeContext extends antlr.ParserRuleContext { } -export class A_exprContext extends antlr.ParserRuleContext { +export class Expression1Context extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_qual(): A_expr_qualContext { - return this.getRuleContext(0, A_expr_qualContext)!; + public expression1Qualifier(): Expression1QualifierContext { + return this.getRuleContext(0, Expression1QualifierContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr; + return PostgreSqlParser.RULE_expression1; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr) { - return visitor.visitA_expr(this); + if (visitor.visitExpression1) { + return visitor.visitExpression1(this); } else { return visitor.visitChildren(this); } @@ -104135,22 +97430,22 @@ export class A_exprContext extends antlr.ParserRuleContext { } -export class A_expr_qualContext extends antlr.ParserRuleContext { +export class Expression1QualifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_lessless(): A_expr_lesslessContext { - return this.getRuleContext(0, A_expr_lesslessContext)!; + public expression1LessLess(): Expression1LessLessContext { + return this.getRuleContext(0, Expression1LessLessContext)!; } - public qual_op(): Qual_opContext | null { - return this.getRuleContext(0, Qual_opContext); + public operatorQualifier(): OperatorQualifierContext | null { + return this.getRuleContext(0, OperatorQualifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_qual; + return PostgreSqlParser.RULE_expression1Qualifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_qual) { - return visitor.visitA_expr_qual(this); + if (visitor.visitExpression1Qualifier) { + return visitor.visitExpression1Qualifier(this); } else { return visitor.visitChildren(this); } @@ -104158,18 +97453,18 @@ export class A_expr_qualContext extends antlr.ParserRuleContext { } -export class A_expr_lesslessContext extends antlr.ParserRuleContext { +export class Expression1LessLessContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_or(): A_expr_orContext[]; - public a_expr_or(i: number): A_expr_orContext | null; - public a_expr_or(i?: number): A_expr_orContext[] | A_expr_orContext | null { + public expression1Or(): Expression1OrContext[]; + public expression1Or(i: number): Expression1OrContext | null; + public expression1Or(i?: number): Expression1OrContext[] | Expression1OrContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_orContext); + return this.getRuleContexts(Expression1OrContext); } - return this.getRuleContext(i, A_expr_orContext); + return this.getRuleContext(i, Expression1OrContext); } public LESS_LESS(): antlr.TerminalNode[]; public LESS_LESS(i: number): antlr.TerminalNode | null; @@ -104190,11 +97485,11 @@ export class A_expr_lesslessContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_lessless; + return PostgreSqlParser.RULE_expression1LessLess; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_lessless) { - return visitor.visitA_expr_lessless(this); + if (visitor.visitExpression1LessLess) { + return visitor.visitExpression1LessLess(this); } else { return visitor.visitChildren(this); } @@ -104202,18 +97497,18 @@ export class A_expr_lesslessContext extends antlr.ParserRuleContext { } -export class A_expr_orContext extends antlr.ParserRuleContext { +export class Expression1OrContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_and(): A_expr_andContext[]; - public a_expr_and(i: number): A_expr_andContext | null; - public a_expr_and(i?: number): A_expr_andContext[] | A_expr_andContext | null { + public expression1And(): Expression1AndContext[]; + public expression1And(i: number): Expression1AndContext | null; + public expression1And(i?: number): Expression1AndContext[] | Expression1AndContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_andContext); + return this.getRuleContexts(Expression1AndContext); } - return this.getRuleContext(i, A_expr_andContext); + return this.getRuleContext(i, Expression1AndContext); } public OR(): antlr.TerminalNode[]; public OR(i: number): antlr.TerminalNode | null; @@ -104225,11 +97520,11 @@ export class A_expr_orContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_or; + return PostgreSqlParser.RULE_expression1Or; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_or) { - return visitor.visitA_expr_or(this); + if (visitor.visitExpression1Or) { + return visitor.visitExpression1Or(this); } else { return visitor.visitChildren(this); } @@ -104237,18 +97532,18 @@ export class A_expr_orContext extends antlr.ParserRuleContext { } -export class A_expr_andContext extends antlr.ParserRuleContext { +export class Expression1AndContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_between(): A_expr_betweenContext[]; - public a_expr_between(i: number): A_expr_betweenContext | null; - public a_expr_between(i?: number): A_expr_betweenContext[] | A_expr_betweenContext | null { + public expression1Between(): Expression1BetweenContext[]; + public expression1Between(i: number): Expression1BetweenContext | null; + public expression1Between(i?: number): Expression1BetweenContext[] | Expression1BetweenContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_betweenContext); + return this.getRuleContexts(Expression1BetweenContext); } - return this.getRuleContext(i, A_expr_betweenContext); + return this.getRuleContext(i, Expression1BetweenContext); } public AND(): antlr.TerminalNode[]; public AND(i: number): antlr.TerminalNode | null; @@ -104260,11 +97555,11 @@ export class A_expr_andContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_and; + return PostgreSqlParser.RULE_expression1And; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_and) { - return visitor.visitA_expr_and(this); + if (visitor.visitExpression1And) { + return visitor.visitExpression1And(this); } else { return visitor.visitChildren(this); } @@ -104272,18 +97567,18 @@ export class A_expr_andContext extends antlr.ParserRuleContext { } -export class A_expr_betweenContext extends antlr.ParserRuleContext { +export class Expression1BetweenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_in(): A_expr_inContext[]; - public a_expr_in(i: number): A_expr_inContext | null; - public a_expr_in(i?: number): A_expr_inContext[] | A_expr_inContext | null { + public expression1In(): Expression1InContext[]; + public expression1In(i: number): Expression1InContext | null; + public expression1In(i?: number): Expression1InContext[] | Expression1InContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_inContext); + return this.getRuleContexts(Expression1InContext); } - return this.getRuleContext(i, A_expr_inContext); + return this.getRuleContext(i, Expression1InContext); } public BETWEEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BETWEEN, 0); @@ -104298,11 +97593,11 @@ export class A_expr_betweenContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SYMMETRIC, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_between; + return PostgreSqlParser.RULE_expression1Between; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_between) { - return visitor.visitA_expr_between(this); + if (visitor.visitExpression1Between) { + return visitor.visitExpression1Between(this); } else { return visitor.visitChildren(this); } @@ -104310,28 +97605,28 @@ export class A_expr_betweenContext extends antlr.ParserRuleContext { } -export class A_expr_inContext extends antlr.ParserRuleContext { +export class Expression1InContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_unary_not(): A_expr_unary_notContext { - return this.getRuleContext(0, A_expr_unary_notContext)!; + public expression1UnaryNot(): Expression1UnaryNotContext { + return this.getRuleContext(0, Expression1UnaryNotContext)!; } public IN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IN_P, 0); } - public in_expr(): In_exprContext | null { - return this.getRuleContext(0, In_exprContext); + public inExpression(): InExpressionContext | null { + return this.getRuleContext(0, InExpressionContext); } public NOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_in; + return PostgreSqlParser.RULE_expression1In; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_in) { - return visitor.visitA_expr_in(this); + if (visitor.visitExpression1In) { + return visitor.visitExpression1In(this); } else { return visitor.visitChildren(this); } @@ -104339,22 +97634,22 @@ export class A_expr_inContext extends antlr.ParserRuleContext { } -export class A_expr_unary_notContext extends antlr.ParserRuleContext { +export class Expression1UnaryNotContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_isnull(): A_expr_isnullContext { - return this.getRuleContext(0, A_expr_isnullContext)!; + public expression1IsNull(): Expression1IsNullContext { + return this.getRuleContext(0, Expression1IsNullContext)!; } public NOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_unary_not; + return PostgreSqlParser.RULE_expression1UnaryNot; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_unary_not) { - return visitor.visitA_expr_unary_not(this); + if (visitor.visitExpression1UnaryNot) { + return visitor.visitExpression1UnaryNot(this); } else { return visitor.visitChildren(this); } @@ -104362,12 +97657,12 @@ export class A_expr_unary_notContext extends antlr.ParserRuleContext { } -export class A_expr_isnullContext extends antlr.ParserRuleContext { +export class Expression1IsNullContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_is_not(): A_expr_is_notContext { - return this.getRuleContext(0, A_expr_is_notContext)!; + public expression1IsNot(): Expression1IsNotContext { + return this.getRuleContext(0, Expression1IsNotContext)!; } public ISNULL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ISNULL, 0); @@ -104376,11 +97671,11 @@ export class A_expr_isnullContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOTNULL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_isnull; + return PostgreSqlParser.RULE_expression1IsNull; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_isnull) { - return visitor.visitA_expr_isnull(this); + if (visitor.visitExpression1IsNull) { + return visitor.visitExpression1IsNull(this); } else { return visitor.visitChildren(this); } @@ -104388,12 +97683,12 @@ export class A_expr_isnullContext extends antlr.ParserRuleContext { } -export class A_expr_is_notContext extends antlr.ParserRuleContext { +export class Expression1IsNotContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_compare(): A_expr_compareContext { - return this.getRuleContext(0, A_expr_compareContext)!; + public expression1Compare(): Expression1CompareContext { + return this.getRuleContext(0, Expression1CompareContext)!; } public IS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IS, 0); @@ -104416,8 +97711,8 @@ export class A_expr_is_notContext extends antlr.ParserRuleContext { public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public OF(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OF, 0); @@ -104425,8 +97720,8 @@ export class A_expr_is_notContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public type_list(): Type_listContext | null { - return this.getRuleContext(0, Type_listContext); + public typeList(): TypeListContext | null { + return this.getRuleContext(0, TypeListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -104440,15 +97735,15 @@ export class A_expr_is_notContext extends antlr.ParserRuleContext { public NOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOT, 0); } - public unicode_normal_form(): Unicode_normal_formContext | null { - return this.getRuleContext(0, Unicode_normal_formContext); + public unicodeNormalForm(): UnicodeNormalFormContext | null { + return this.getRuleContext(0, UnicodeNormalFormContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_is_not; + return PostgreSqlParser.RULE_expression1IsNot; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_is_not) { - return visitor.visitA_expr_is_not(this); + if (visitor.visitExpression1IsNot) { + return visitor.visitExpression1IsNot(this); } else { return visitor.visitChildren(this); } @@ -104456,24 +97751,24 @@ export class A_expr_is_notContext extends antlr.ParserRuleContext { } -export class A_expr_compareContext extends antlr.ParserRuleContext { +export class Expression1CompareContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_like(): A_expr_likeContext[]; - public a_expr_like(i: number): A_expr_likeContext | null; - public a_expr_like(i?: number): A_expr_likeContext[] | A_expr_likeContext | null { + public expression1Like(): Expression1LikeContext[]; + public expression1Like(i: number): Expression1LikeContext | null; + public expression1Like(i?: number): Expression1LikeContext[] | Expression1LikeContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_likeContext); + return this.getRuleContexts(Expression1LikeContext); } - return this.getRuleContext(i, A_expr_likeContext); + return this.getRuleContext(i, Expression1LikeContext); } - public subquery_Op(): Subquery_OpContext | null { - return this.getRuleContext(0, Subquery_OpContext); + public subqueryOperator(): SubqueryOperatorContext | null { + return this.getRuleContext(0, SubqueryOperatorContext); } - public sub_type(): Sub_typeContext | null { - return this.getRuleContext(0, Sub_typeContext); + public subType(): SubTypeContext | null { + return this.getRuleContext(0, SubTypeContext); } public LT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LT, 0); @@ -104493,24 +97788,24 @@ export class A_expr_compareContext extends antlr.ParserRuleContext { public NOT_EQUALS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NOT_EQUALS, 0); } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_compare; + return PostgreSqlParser.RULE_expression1Compare; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_compare) { - return visitor.visitA_expr_compare(this); + if (visitor.visitExpression1Compare) { + return visitor.visitExpression1Compare(this); } else { return visitor.visitChildren(this); } @@ -104518,21 +97813,21 @@ export class A_expr_compareContext extends antlr.ParserRuleContext { } -export class A_expr_likeContext extends antlr.ParserRuleContext { +export class Expression1LikeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_qual_op(): A_expr_qual_opContext[]; - public a_expr_qual_op(i: number): A_expr_qual_opContext | null; - public a_expr_qual_op(i?: number): A_expr_qual_opContext[] | A_expr_qual_opContext | null { + public expression1qualifierOperator(): Expression1qualifierOperatorContext[]; + public expression1qualifierOperator(i: number): Expression1qualifierOperatorContext | null; + public expression1qualifierOperator(i?: number): Expression1qualifierOperatorContext[] | Expression1qualifierOperatorContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_qual_opContext); + return this.getRuleContexts(Expression1qualifierOperatorContext); } - return this.getRuleContext(i, A_expr_qual_opContext); + return this.getRuleContext(i, Expression1qualifierOperatorContext); } - public opt_escape(): Opt_escapeContext | null { - return this.getRuleContext(0, Opt_escapeContext); + public optionalEscape(): OptionalEscapeContext | null { + return this.getRuleContext(0, OptionalEscapeContext); } public LIKE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LIKE, 0); @@ -104550,11 +97845,11 @@ export class A_expr_likeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_like; + return PostgreSqlParser.RULE_expression1Like; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_like) { - return visitor.visitA_expr_like(this); + if (visitor.visitExpression1Like) { + return visitor.visitExpression1Like(this); } else { return visitor.visitChildren(this); } @@ -104562,34 +97857,34 @@ export class A_expr_likeContext extends antlr.ParserRuleContext { } -export class A_expr_qual_opContext extends antlr.ParserRuleContext { +export class Expression1qualifierOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_unary_qualop(): A_expr_unary_qualopContext[]; - public a_expr_unary_qualop(i: number): A_expr_unary_qualopContext | null; - public a_expr_unary_qualop(i?: number): A_expr_unary_qualopContext[] | A_expr_unary_qualopContext | null { + public expression1UnaryQualifierOperator(): Expression1UnaryQualifierOperatorContext[]; + public expression1UnaryQualifierOperator(i: number): Expression1UnaryQualifierOperatorContext | null; + public expression1UnaryQualifierOperator(i?: number): Expression1UnaryQualifierOperatorContext[] | Expression1UnaryQualifierOperatorContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_unary_qualopContext); + return this.getRuleContexts(Expression1UnaryQualifierOperatorContext); } - return this.getRuleContext(i, A_expr_unary_qualopContext); + return this.getRuleContext(i, Expression1UnaryQualifierOperatorContext); } - public qual_op(): Qual_opContext[]; - public qual_op(i: number): Qual_opContext | null; - public qual_op(i?: number): Qual_opContext[] | Qual_opContext | null { + public operatorQualifier(): OperatorQualifierContext[]; + public operatorQualifier(i: number): OperatorQualifierContext | null; + public operatorQualifier(i?: number): OperatorQualifierContext[] | OperatorQualifierContext | null { if (i === undefined) { - return this.getRuleContexts(Qual_opContext); + return this.getRuleContexts(OperatorQualifierContext); } - return this.getRuleContext(i, Qual_opContext); + return this.getRuleContext(i, OperatorQualifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_qual_op; + return PostgreSqlParser.RULE_expression1qualifierOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_qual_op) { - return visitor.visitA_expr_qual_op(this); + if (visitor.visitExpression1qualifierOperator) { + return visitor.visitExpression1qualifierOperator(this); } else { return visitor.visitChildren(this); } @@ -104597,22 +97892,22 @@ export class A_expr_qual_opContext extends antlr.ParserRuleContext { } -export class A_expr_unary_qualopContext extends antlr.ParserRuleContext { +export class Expression1UnaryQualifierOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_add(): A_expr_addContext { - return this.getRuleContext(0, A_expr_addContext)!; + public expression1Add(): Expression1AddContext { + return this.getRuleContext(0, Expression1AddContext)!; } - public qual_op(): Qual_opContext | null { - return this.getRuleContext(0, Qual_opContext); + public operatorQualifier(): OperatorQualifierContext | null { + return this.getRuleContext(0, OperatorQualifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_unary_qualop; + return PostgreSqlParser.RULE_expression1UnaryQualifierOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_unary_qualop) { - return visitor.visitA_expr_unary_qualop(this); + if (visitor.visitExpression1UnaryQualifierOperator) { + return visitor.visitExpression1UnaryQualifierOperator(this); } else { return visitor.visitChildren(this); } @@ -104620,18 +97915,18 @@ export class A_expr_unary_qualopContext extends antlr.ParserRuleContext { } -export class A_expr_addContext extends antlr.ParserRuleContext { +export class Expression1AddContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_mul(): A_expr_mulContext[]; - public a_expr_mul(i: number): A_expr_mulContext | null; - public a_expr_mul(i?: number): A_expr_mulContext[] | A_expr_mulContext | null { + public expressionMultiply(): ExpressionMultiplyContext[]; + public expressionMultiply(i: number): ExpressionMultiplyContext | null; + public expressionMultiply(i?: number): ExpressionMultiplyContext[] | ExpressionMultiplyContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_mulContext); + return this.getRuleContexts(ExpressionMultiplyContext); } - return this.getRuleContext(i, A_expr_mulContext); + return this.getRuleContext(i, ExpressionMultiplyContext); } public MINUS(): antlr.TerminalNode[]; public MINUS(i: number): antlr.TerminalNode | null; @@ -104652,11 +97947,11 @@ export class A_expr_addContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_add; + return PostgreSqlParser.RULE_expression1Add; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_add) { - return visitor.visitA_expr_add(this); + if (visitor.visitExpression1Add) { + return visitor.visitExpression1Add(this); } else { return visitor.visitChildren(this); } @@ -104664,18 +97959,18 @@ export class A_expr_addContext extends antlr.ParserRuleContext { } -export class A_expr_mulContext extends antlr.ParserRuleContext { +export class ExpressionMultiplyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_caret(): A_expr_caretContext[]; - public a_expr_caret(i: number): A_expr_caretContext | null; - public a_expr_caret(i?: number): A_expr_caretContext[] | A_expr_caretContext | null { + public expression1Caret(): Expression1CaretContext[]; + public expression1Caret(i: number): Expression1CaretContext | null; + public expression1Caret(i?: number): Expression1CaretContext[] | Expression1CaretContext | null { if (i === undefined) { - return this.getRuleContexts(A_expr_caretContext); + return this.getRuleContexts(Expression1CaretContext); } - return this.getRuleContext(i, A_expr_caretContext); + return this.getRuleContext(i, Expression1CaretContext); } public STAR(): antlr.TerminalNode[]; public STAR(i: number): antlr.TerminalNode | null; @@ -104705,11 +98000,11 @@ export class A_expr_mulContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_mul; + return PostgreSqlParser.RULE_expressionMultiply; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_mul) { - return visitor.visitA_expr_mul(this); + if (visitor.visitExpressionMultiply) { + return visitor.visitExpressionMultiply(this); } else { return visitor.visitChildren(this); } @@ -104717,25 +98012,25 @@ export class A_expr_mulContext extends antlr.ParserRuleContext { } -export class A_expr_caretContext extends antlr.ParserRuleContext { +export class Expression1CaretContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_unary_sign(): A_expr_unary_signContext { - return this.getRuleContext(0, A_expr_unary_signContext)!; + public expression1UnarySign(): Expression1UnarySignContext { + return this.getRuleContext(0, Expression1UnarySignContext)!; } public CARET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CARET, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_caret; + return PostgreSqlParser.RULE_expression1Caret; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_caret) { - return visitor.visitA_expr_caret(this); + if (visitor.visitExpression1Caret) { + return visitor.visitExpression1Caret(this); } else { return visitor.visitChildren(this); } @@ -104743,12 +98038,12 @@ export class A_expr_caretContext extends antlr.ParserRuleContext { } -export class A_expr_unary_signContext extends antlr.ParserRuleContext { +export class Expression1UnarySignContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_at_time_zone(): A_expr_at_time_zoneContext { - return this.getRuleContext(0, A_expr_at_time_zoneContext)!; + public expression1AtTimeZone(): Expression1AtTimeZoneContext { + return this.getRuleContext(0, Expression1AtTimeZoneContext)!; } public MINUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MINUS, 0); @@ -104757,11 +98052,11 @@ export class A_expr_unary_signContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PLUS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_unary_sign; + return PostgreSqlParser.RULE_expression1UnarySign; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_unary_sign) { - return visitor.visitA_expr_unary_sign(this); + if (visitor.visitExpression1UnarySign) { + return visitor.visitExpression1UnarySign(this); } else { return visitor.visitChildren(this); } @@ -104769,12 +98064,12 @@ export class A_expr_unary_signContext extends antlr.ParserRuleContext { } -export class A_expr_at_time_zoneContext extends antlr.ParserRuleContext { +export class Expression1AtTimeZoneContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_collate(): A_expr_collateContext { - return this.getRuleContext(0, A_expr_collateContext)!; + public expression1Collate(): Expression1CollateContext { + return this.getRuleContext(0, Expression1CollateContext)!; } public AT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AT, 0); @@ -104785,15 +98080,15 @@ export class A_expr_at_time_zoneContext extends antlr.ParserRuleContext { public ZONE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ZONE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_at_time_zone; + return PostgreSqlParser.RULE_expression1AtTimeZone; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_at_time_zone) { - return visitor.visitA_expr_at_time_zone(this); + if (visitor.visitExpression1AtTimeZone) { + return visitor.visitExpression1AtTimeZone(this); } else { return visitor.visitChildren(this); } @@ -104801,25 +98096,25 @@ export class A_expr_at_time_zoneContext extends antlr.ParserRuleContext { } -export class A_expr_collateContext extends antlr.ParserRuleContext { +export class Expression1CollateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr_typecast(): A_expr_typecastContext { - return this.getRuleContext(0, A_expr_typecastContext)!; + public expression1Typecast(): Expression1TypecastContext { + return this.getRuleContext(0, Expression1TypecastContext)!; } public COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATE, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_collate; + return PostgreSqlParser.RULE_expression1Collate; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_collate) { - return visitor.visitA_expr_collate(this); + if (visitor.visitExpression1Collate) { + return visitor.visitExpression1Collate(this); } else { return visitor.visitChildren(this); } @@ -104827,12 +98122,12 @@ export class A_expr_collateContext extends antlr.ParserRuleContext { } -export class A_expr_typecastContext extends antlr.ParserRuleContext { +export class Expression1TypecastContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public c_expr(): C_exprContext { - return this.getRuleContext(0, C_exprContext)!; + public expression3(): Expression3Context { + return this.getRuleContext(0, Expression3Context)!; } public TYPECAST(): antlr.TerminalNode[]; public TYPECAST(i: number): antlr.TerminalNode | null; @@ -104843,21 +98138,21 @@ export class A_expr_typecastContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TYPECAST, i); } } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_a_expr_typecast; + return PostgreSqlParser.RULE_expression1Typecast; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitA_expr_typecast) { - return visitor.visitA_expr_typecast(this); + if (visitor.visitExpression1Typecast) { + return visitor.visitExpression1Typecast(this); } else { return visitor.visitChildren(this); } @@ -104865,21 +98160,21 @@ export class A_expr_typecastContext extends antlr.ParserRuleContext { } -export class B_exprContext extends antlr.ParserRuleContext { +export class Expression2Context extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public c_expr(): C_exprContext | null { - return this.getRuleContext(0, C_exprContext); + public expression3(): Expression3Context | null { + return this.getRuleContext(0, Expression3Context); } - public b_expr(): B_exprContext[]; - public b_expr(i: number): B_exprContext | null; - public b_expr(i?: number): B_exprContext[] | B_exprContext | null { + public expression2(): Expression2Context[]; + public expression2(i: number): Expression2Context | null; + public expression2(i?: number): Expression2Context[] | Expression2Context | null { if (i === undefined) { - return this.getRuleContexts(B_exprContext); + return this.getRuleContexts(Expression2Context); } - return this.getRuleContext(i, B_exprContext); + return this.getRuleContext(i, Expression2Context); } public PLUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PLUS, 0); @@ -104887,8 +98182,8 @@ export class B_exprContext extends antlr.ParserRuleContext { public MINUS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.MINUS, 0); } - public qual_op(): Qual_opContext | null { - return this.getRuleContext(0, Qual_opContext); + public operatorQualifier(): OperatorQualifierContext | null { + return this.getRuleContext(0, OperatorQualifierContext); } public CARET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CARET, 0); @@ -104923,8 +98218,8 @@ export class B_exprContext extends antlr.ParserRuleContext { public TYPECAST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TYPECAST, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } public IS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IS, 0); @@ -104941,8 +98236,8 @@ export class B_exprContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public type_list(): Type_listContext | null { - return this.getRuleContext(0, Type_listContext); + public typeList(): TypeListContext | null { + return this.getRuleContext(0, TypeListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -104954,11 +98249,11 @@ export class B_exprContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_b_expr; + return PostgreSqlParser.RULE_expression2; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitB_expr) { - return visitor.visitB_expr(this); + if (visitor.visitExpression2) { + return visitor.visitExpression2(this); } else { return visitor.visitChildren(this); } @@ -104966,27 +98261,27 @@ export class B_exprContext extends antlr.ParserRuleContext { } -export class C_exprContext extends antlr.ParserRuleContext { +export class Expression3Context extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_c_expr; + return PostgreSqlParser.RULE_expression3; } - public override copyFrom(ctx: C_exprContext): void { + public override copyFrom(ctx: Expression3Context): void { super.copyFrom(ctx); } } -export class C_expr_existsContext extends C_exprContext { - public constructor(ctx: C_exprContext) { +export class C_expr_existsContext extends Expression3Context { + public constructor(ctx: Expression3Context) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public EXISTS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EXISTS, 0)!; } - public select_with_parens(): Select_with_parensContext { - return this.getRuleContext(0, Select_with_parensContext)!; + public selectWithParenthesis(): SelectWithParenthesisContext { + return this.getRuleContext(0, SelectWithParenthesisContext)!; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { if (visitor.visitC_expr_exists) { @@ -104996,13 +98291,13 @@ export class C_expr_existsContext extends C_exprContext { } } } -export class C_expr_caseContext extends C_exprContext { - public constructor(ctx: C_exprContext) { +export class C_expr_caseContext extends Expression3Context { + public constructor(ctx: Expression3Context) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public case_expr(): Case_exprContext { - return this.getRuleContext(0, Case_exprContext)!; + public caseExpression(): CaseExpressionContext { + return this.getRuleContext(0, CaseExpressionContext)!; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { if (visitor.visitC_expr_case) { @@ -105012,26 +98307,26 @@ export class C_expr_caseContext extends C_exprContext { } } } -export class C_expr_exprContext extends C_exprContext { - public _a_expr_in_parens?: A_exprContext; - public constructor(ctx: C_exprContext) { +export class C_expr_exprContext extends Expression3Context { + public _a_expr_in_parens?: Expression1Context; + public constructor(ctx: Expression3Context) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public ARRAY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ARRAY, 0); } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); + public selectWithParenthesis(): SelectWithParenthesisContext | null { + return this.getRuleContext(0, SelectWithParenthesisContext); } - public array_expr(): Array_exprContext | null { - return this.getRuleContext(0, Array_exprContext); + public arrayExpression(): ArrayExpressionContext | null { + return this.getRuleContext(0, ArrayExpressionContext); } public PARAM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARAM, 0); } - public opt_indirection(): Opt_indirectionContext | null { - return this.getRuleContext(0, Opt_indirectionContext); + public optionalIndirection(): OptionalIndirectionContext | null { + return this.getRuleContext(0, OptionalIndirectionContext); } public GROUPING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GROUPING, 0); @@ -105039,8 +98334,8 @@ export class C_expr_exprContext extends C_exprContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -105048,29 +98343,29 @@ export class C_expr_exprContext extends C_exprContext { public UNIQUE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.UNIQUE, 0); } - public columnref(): ColumnrefContext | null { - return this.getRuleContext(0, ColumnrefContext); + public columnReference(): ColumnReferenceContext | null { + return this.getRuleContext(0, ColumnReferenceContext); } - public aexprconst(): AexprconstContext | null { - return this.getRuleContext(0, AexprconstContext); + public aExpressionConst(): AExpressionConstContext | null { + return this.getRuleContext(0, AExpressionConstContext); } - public plsqlvariablename(): PlsqlvariablenameContext | null { - return this.getRuleContext(0, PlsqlvariablenameContext); + public plsqlVariableName(): PlsqlVariableNameContext | null { + return this.getRuleContext(0, PlsqlVariableNameContext); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } - public func_expr(): Func_exprContext | null { - return this.getRuleContext(0, Func_exprContext); + public functionExpression(): FunctionExpressionContext | null { + return this.getRuleContext(0, FunctionExpressionContext); } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } - public explicit_row(): Explicit_rowContext | null { - return this.getRuleContext(0, Explicit_rowContext); + public explicitRow(): ExplicitRowContext | null { + return this.getRuleContext(0, ExplicitRowContext); } - public implicit_row(): Implicit_rowContext | null { - return this.getRuleContext(0, Implicit_rowContext); + public implicitRow(): ImplicitRowContext | null { + return this.getRuleContext(0, ImplicitRowContext); } public row(): RowContext[]; public row(i: number): RowContext | null; @@ -105094,7 +98389,7 @@ export class C_expr_exprContext extends C_exprContext { } -export class PlsqlvariablenameContext extends antlr.ParserRuleContext { +export class PlsqlVariableNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105102,11 +98397,11 @@ export class PlsqlvariablenameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PLSQLVARIABLENAME, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsqlvariablename; + return PostgreSqlParser.RULE_plsqlVariableName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsqlvariablename) { - return visitor.visitPlsqlvariablename(this); + if (visitor.visitPlsqlVariableName) { + return visitor.visitPlsqlVariableName(this); } else { return visitor.visitChildren(this); } @@ -105114,12 +98409,12 @@ export class PlsqlvariablenameContext extends antlr.ParserRuleContext { } -export class Func_applicationContext extends antlr.ParserRuleContext { +export class FunctionApplicationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_name(): Func_nameContext { - return this.getRuleContext(0, Func_nameContext)!; + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; @@ -105127,17 +98422,17 @@ export class Func_applicationContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public func_arg_list(): Func_arg_listContext | null { - return this.getRuleContext(0, Func_arg_listContext); + public functionArgumentList(): FunctionArgumentListContext | null { + return this.getRuleContext(0, FunctionArgumentListContext); } - public opt_sort_clause(): Opt_sort_clauseContext | null { - return this.getRuleContext(0, Opt_sort_clauseContext); + public optionalSortClause(): OptionalSortClauseContext | null { + return this.getRuleContext(0, OptionalSortClauseContext); } public VARIADIC(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VARIADIC, 0); } - public func_arg_expr(): Func_arg_exprContext | null { - return this.getRuleContext(0, Func_arg_exprContext); + public functionArgumentExpression(): FunctionArgumentExpressionContext | null { + return this.getRuleContext(0, FunctionArgumentExpressionContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -105152,11 +98447,11 @@ export class Func_applicationContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.COMMA, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_application; + return PostgreSqlParser.RULE_functionApplication; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_application) { - return visitor.visitFunc_application(this); + if (visitor.visitFunctionApplication) { + return visitor.visitFunctionApplication(this); } else { return visitor.visitChildren(this); } @@ -105164,31 +98459,31 @@ export class Func_applicationContext extends antlr.ParserRuleContext { } -export class Func_exprContext extends antlr.ParserRuleContext { +export class FunctionExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_application(): Func_applicationContext | null { - return this.getRuleContext(0, Func_applicationContext); + public functionApplication(): FunctionApplicationContext | null { + return this.getRuleContext(0, FunctionApplicationContext); } - public within_group_clause(): Within_group_clauseContext | null { - return this.getRuleContext(0, Within_group_clauseContext); + public withinGroupClause(): WithinGroupClauseContext | null { + return this.getRuleContext(0, WithinGroupClauseContext); } - public filter_clause(): Filter_clauseContext | null { - return this.getRuleContext(0, Filter_clauseContext); + public filterClause(): FilterClauseContext | null { + return this.getRuleContext(0, FilterClauseContext); } - public over_clause(): Over_clauseContext | null { - return this.getRuleContext(0, Over_clauseContext); + public overClause(): OverClauseContext | null { + return this.getRuleContext(0, OverClauseContext); } - public func_expr_common_subexpr(): Func_expr_common_subexprContext | null { - return this.getRuleContext(0, Func_expr_common_subexprContext); + public functionExpressionCommonSubexpr(): FunctionExpressionCommonSubexprContext | null { + return this.getRuleContext(0, FunctionExpressionCommonSubexprContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_expr; + return PostgreSqlParser.RULE_functionExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_expr) { - return visitor.visitFunc_expr(this); + if (visitor.visitFunctionExpression) { + return visitor.visitFunctionExpression(this); } else { return visitor.visitChildren(this); } @@ -105196,22 +98491,22 @@ export class Func_exprContext extends antlr.ParserRuleContext { } -export class Func_expr_windowlessContext extends antlr.ParserRuleContext { +export class FunctionExpressionWindowlessContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_application(): Func_applicationContext | null { - return this.getRuleContext(0, Func_applicationContext); + public functionApplication(): FunctionApplicationContext | null { + return this.getRuleContext(0, FunctionApplicationContext); } - public func_expr_common_subexpr(): Func_expr_common_subexprContext | null { - return this.getRuleContext(0, Func_expr_common_subexprContext); + public functionExpressionCommonSubexpr(): FunctionExpressionCommonSubexprContext | null { + return this.getRuleContext(0, FunctionExpressionCommonSubexprContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_expr_windowless; + return PostgreSqlParser.RULE_functionExpressionWindowless; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_expr_windowless) { - return visitor.visitFunc_expr_windowless(this); + if (visitor.visitFunctionExpressionWindowless) { + return visitor.visitFunctionExpressionWindowless(this); } else { return visitor.visitChildren(this); } @@ -105219,7 +98514,7 @@ export class Func_expr_windowlessContext extends antlr.ParserRuleContext { } -export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { +export class FunctionExpressionCommonSubexprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105232,14 +98527,14 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -105286,14 +98581,14 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); + public typeName(): TypeNameContext | null { + return this.getRuleContext(0, TypeNameContext); } public EXTRACT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXTRACT, 0); } - public extract_list(): Extract_listContext | null { - return this.getRuleContext(0, Extract_listContext); + public extractList(): ExtractListContext | null { + return this.getRuleContext(0, ExtractListContext); } public NORMALIZE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NORMALIZE, 0); @@ -105301,26 +98596,26 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public COMMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COMMA, 0); } - public unicode_normal_form(): Unicode_normal_formContext | null { - return this.getRuleContext(0, Unicode_normal_formContext); + public unicodeNormalForm(): UnicodeNormalFormContext | null { + return this.getRuleContext(0, UnicodeNormalFormContext); } public OVERLAY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OVERLAY, 0); } - public overlay_list(): Overlay_listContext | null { - return this.getRuleContext(0, Overlay_listContext); + public overlayList(): OverlayListContext | null { + return this.getRuleContext(0, OverlayListContext); } public POSITION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.POSITION, 0); } - public position_list(): Position_listContext | null { - return this.getRuleContext(0, Position_listContext); + public positionList(): PositionListContext | null { + return this.getRuleContext(0, PositionListContext); } public SUBSTRING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SUBSTRING, 0); } - public substr_list(): Substr_listContext | null { - return this.getRuleContext(0, Substr_listContext); + public substrList(): SubstrListContext | null { + return this.getRuleContext(0, SubstrListContext); } public TREAT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TREAT, 0); @@ -105328,8 +98623,8 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public TRIM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRIM, 0); } - public trim_list(): Trim_listContext | null { - return this.getRuleContext(0, Trim_listContext); + public trimList(): TrimListContext | null { + return this.getRuleContext(0, TrimListContext); } public BOTH(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BOTH, 0); @@ -105346,8 +98641,8 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public COALESCE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COALESCE, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public GREATEST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.GREATEST, 0); @@ -105364,35 +98659,35 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public NAME_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NAME_P, 0); } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); + public columnLabel(): ColumnLabelContext | null { + return this.getRuleContext(0, ColumnLabelContext); } - public xml_attributes(): Xml_attributesContext | null { - return this.getRuleContext(0, Xml_attributesContext); + public xmlAttributes(): XmlAttributesContext | null { + return this.getRuleContext(0, XmlAttributesContext); } public XMLEXISTS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLEXISTS, 0); } - public c_expr(): C_exprContext | null { - return this.getRuleContext(0, C_exprContext); + public expression3(): Expression3Context | null { + return this.getRuleContext(0, Expression3Context); } - public xmlexists_argument(): Xmlexists_argumentContext | null { - return this.getRuleContext(0, Xmlexists_argumentContext); + public xmlExistsArgument(): XmlExistsArgumentContext | null { + return this.getRuleContext(0, XmlExistsArgumentContext); } public XMLFOREST(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLFOREST, 0); } - public xml_attribute_list(): Xml_attribute_listContext | null { - return this.getRuleContext(0, Xml_attribute_listContext); + public xmlAttributeList(): XmlAttributeListContext | null { + return this.getRuleContext(0, XmlAttributeListContext); } public XMLPARSE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLPARSE, 0); } - public document_or_content(): Document_or_contentContext | null { - return this.getRuleContext(0, Document_or_contentContext); + public documentOrContent(): DocumentOrContentContext | null { + return this.getRuleContext(0, DocumentOrContentContext); } - public xml_whitespace_option(): Xml_whitespace_optionContext | null { - return this.getRuleContext(0, Xml_whitespace_optionContext); + public xmlWhitespaceOption(): XmlWhitespaceOptionContext | null { + return this.getRuleContext(0, XmlWhitespaceOptionContext); } public XMLPI(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLPI, 0); @@ -105403,24 +98698,24 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { public XML_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XML_P, 0); } - public xml_root_version(): Xml_root_versionContext | null { - return this.getRuleContext(0, Xml_root_versionContext); + public xmlRootVersion(): XmlRootVersionContext | null { + return this.getRuleContext(0, XmlRootVersionContext); } - public opt_xml_root_standalone(): Opt_xml_root_standaloneContext | null { - return this.getRuleContext(0, Opt_xml_root_standaloneContext); + public optionalXmlRootStandalone(): OptionalXmlRootStandaloneContext | null { + return this.getRuleContext(0, OptionalXmlRootStandaloneContext); } public XMLSERIALIZE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLSERIALIZE, 0); } - public simpletypename(): SimpletypenameContext | null { - return this.getRuleContext(0, SimpletypenameContext); + public simpleTypeName(): SimpleTypeNameContext | null { + return this.getRuleContext(0, SimpleTypeNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_expr_common_subexpr; + return PostgreSqlParser.RULE_functionExpressionCommonSubexpr; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_expr_common_subexpr) { - return visitor.visitFunc_expr_common_subexpr(this); + if (visitor.visitFunctionExpressionCommonSubexpr) { + return visitor.visitFunctionExpressionCommonSubexpr(this); } else { return visitor.visitChildren(this); } @@ -105428,15 +98723,15 @@ export class Func_expr_common_subexprContext extends antlr.ParserRuleContext { } -export class Xml_root_versionContext extends antlr.ParserRuleContext { +export class XmlRootVersionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public VERSION_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.VERSION_P, 0)!; } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public NO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NO, 0); @@ -105445,11 +98740,11 @@ export class Xml_root_versionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VALUE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_root_version; + return PostgreSqlParser.RULE_xmlRootVersion; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_root_version) { - return visitor.visitXml_root_version(this); + if (visitor.visitXmlRootVersion) { + return visitor.visitXmlRootVersion(this); } else { return visitor.visitChildren(this); } @@ -105457,7 +98752,7 @@ export class Xml_root_versionContext extends antlr.ParserRuleContext { } -export class Opt_xml_root_standaloneContext extends antlr.ParserRuleContext { +export class OptionalXmlRootStandaloneContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105477,11 +98772,11 @@ export class Opt_xml_root_standaloneContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VALUE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_xml_root_standalone; + return PostgreSqlParser.RULE_optionalXmlRootStandalone; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_xml_root_standalone) { - return visitor.visitOpt_xml_root_standalone(this); + if (visitor.visitOptionalXmlRootStandalone) { + return visitor.visitOptionalXmlRootStandalone(this); } else { return visitor.visitChildren(this); } @@ -105489,7 +98784,7 @@ export class Opt_xml_root_standaloneContext extends antlr.ParserRuleContext { } -export class Xml_attributesContext extends antlr.ParserRuleContext { +export class XmlAttributesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105499,18 +98794,18 @@ export class Xml_attributesContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public xml_attribute_list(): Xml_attribute_listContext { - return this.getRuleContext(0, Xml_attribute_listContext)!; + public xmlAttributeList(): XmlAttributeListContext { + return this.getRuleContext(0, XmlAttributeListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_attributes; + return PostgreSqlParser.RULE_xmlAttributes; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_attributes) { - return visitor.visitXml_attributes(this); + if (visitor.visitXmlAttributes) { + return visitor.visitXmlAttributes(this); } else { return visitor.visitChildren(this); } @@ -105518,18 +98813,18 @@ export class Xml_attributesContext extends antlr.ParserRuleContext { } -export class Xml_attribute_listContext extends antlr.ParserRuleContext { +export class XmlAttributeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public xml_attribute_el(): Xml_attribute_elContext[]; - public xml_attribute_el(i: number): Xml_attribute_elContext | null; - public xml_attribute_el(i?: number): Xml_attribute_elContext[] | Xml_attribute_elContext | null { + public xmlAttributeElement(): XmlAttributeElementContext[]; + public xmlAttributeElement(i: number): XmlAttributeElementContext | null; + public xmlAttributeElement(i?: number): XmlAttributeElementContext[] | XmlAttributeElementContext | null { if (i === undefined) { - return this.getRuleContexts(Xml_attribute_elContext); + return this.getRuleContexts(XmlAttributeElementContext); } - return this.getRuleContext(i, Xml_attribute_elContext); + return this.getRuleContext(i, XmlAttributeElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -105541,11 +98836,11 @@ export class Xml_attribute_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_attribute_list; + return PostgreSqlParser.RULE_xmlAttributeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_attribute_list) { - return visitor.visitXml_attribute_list(this); + if (visitor.visitXmlAttributeList) { + return visitor.visitXmlAttributeList(this); } else { return visitor.visitChildren(this); } @@ -105553,25 +98848,25 @@ export class Xml_attribute_listContext extends antlr.ParserRuleContext { } -export class Xml_attribute_elContext extends antlr.ParserRuleContext { +export class XmlAttributeElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); + public columnLabel(): ColumnLabelContext | null { + return this.getRuleContext(0, ColumnLabelContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_attribute_el; + return PostgreSqlParser.RULE_xmlAttributeElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_attribute_el) { - return visitor.visitXml_attribute_el(this); + if (visitor.visitXmlAttributeElement) { + return visitor.visitXmlAttributeElement(this); } else { return visitor.visitChildren(this); } @@ -105579,7 +98874,7 @@ export class Xml_attribute_elContext extends antlr.ParserRuleContext { } -export class Document_or_contentContext extends antlr.ParserRuleContext { +export class DocumentOrContentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105590,11 +98885,11 @@ export class Document_or_contentContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONTENT_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_document_or_content; + return PostgreSqlParser.RULE_documentOrContent; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDocument_or_content) { - return visitor.visitDocument_or_content(this); + if (visitor.visitDocumentOrContent) { + return visitor.visitDocumentOrContent(this); } else { return visitor.visitChildren(this); } @@ -105602,7 +98897,7 @@ export class Document_or_contentContext extends antlr.ParserRuleContext { } -export class Xml_whitespace_optionContext extends antlr.ParserRuleContext { +export class XmlWhitespaceOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105616,11 +98911,11 @@ export class Xml_whitespace_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.STRIP_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_whitespace_option; + return PostgreSqlParser.RULE_xmlWhitespaceOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_whitespace_option) { - return visitor.visitXml_whitespace_option(this); + if (visitor.visitXmlWhitespaceOption) { + return visitor.visitXmlWhitespaceOption(this); } else { return visitor.visitChildren(this); } @@ -105628,31 +98923,31 @@ export class Xml_whitespace_optionContext extends antlr.ParserRuleContext { } -export class Xmlexists_argumentContext extends antlr.ParserRuleContext { +export class XmlExistsArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public PASSING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PASSING, 0)!; } - public c_expr(): C_exprContext { - return this.getRuleContext(0, C_exprContext)!; + public expression3(): Expression3Context { + return this.getRuleContext(0, Expression3Context)!; } - public xml_passing_mech(): Xml_passing_mechContext[]; - public xml_passing_mech(i: number): Xml_passing_mechContext | null; - public xml_passing_mech(i?: number): Xml_passing_mechContext[] | Xml_passing_mechContext | null { + public xmlPassingMech(): XmlPassingMechContext[]; + public xmlPassingMech(i: number): XmlPassingMechContext | null; + public xmlPassingMech(i?: number): XmlPassingMechContext[] | XmlPassingMechContext | null { if (i === undefined) { - return this.getRuleContexts(Xml_passing_mechContext); + return this.getRuleContexts(XmlPassingMechContext); } - return this.getRuleContext(i, Xml_passing_mechContext); + return this.getRuleContext(i, XmlPassingMechContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xmlexists_argument; + return PostgreSqlParser.RULE_xmlExistsArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXmlexists_argument) { - return visitor.visitXmlexists_argument(this); + if (visitor.visitXmlExistsArgument) { + return visitor.visitXmlExistsArgument(this); } else { return visitor.visitChildren(this); } @@ -105660,7 +98955,7 @@ export class Xmlexists_argumentContext extends antlr.ParserRuleContext { } -export class Xml_passing_mechContext extends antlr.ParserRuleContext { +export class XmlPassingMechContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105674,11 +98969,11 @@ export class Xml_passing_mechContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VALUE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_xml_passing_mech; + return PostgreSqlParser.RULE_xmlPassingMech; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitXml_passing_mech) { - return visitor.visitXml_passing_mech(this); + if (visitor.visitXmlPassingMech) { + return visitor.visitXmlPassingMech(this); } else { return visitor.visitChildren(this); } @@ -105686,7 +98981,7 @@ export class Xml_passing_mechContext extends antlr.ParserRuleContext { } -export class Within_group_clauseContext extends antlr.ParserRuleContext { +export class WithinGroupClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105699,18 +98994,18 @@ export class Within_group_clauseContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public sort_clause(): Sort_clauseContext | null { - return this.getRuleContext(0, Sort_clauseContext); + public sortClause(): SortClauseContext | null { + return this.getRuleContext(0, SortClauseContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_within_group_clause; + return PostgreSqlParser.RULE_withinGroupClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWithin_group_clause) { - return visitor.visitWithin_group_clause(this); + if (visitor.visitWithinGroupClause) { + return visitor.visitWithinGroupClause(this); } else { return visitor.visitChildren(this); } @@ -105718,7 +99013,7 @@ export class Within_group_clauseContext extends antlr.ParserRuleContext { } -export class Filter_clauseContext extends antlr.ParserRuleContext { +export class FilterClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105731,18 +99026,18 @@ export class Filter_clauseContext extends antlr.ParserRuleContext { public WHERE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WHERE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_filter_clause; + return PostgreSqlParser.RULE_filterClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFilter_clause) { - return visitor.visitFilter_clause(this); + if (visitor.visitFilterClause) { + return visitor.visitFilterClause(this); } else { return visitor.visitChildren(this); } @@ -105750,22 +99045,22 @@ export class Filter_clauseContext extends antlr.ParserRuleContext { } -export class Window_clauseContext extends antlr.ParserRuleContext { +export class WindowClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WINDOW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WINDOW, 0); } - public window_definition_list(): Window_definition_listContext | null { - return this.getRuleContext(0, Window_definition_listContext); + public windowDefinitionList(): WindowDefinitionListContext | null { + return this.getRuleContext(0, WindowDefinitionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_window_clause; + return PostgreSqlParser.RULE_windowClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWindow_clause) { - return visitor.visitWindow_clause(this); + if (visitor.visitWindowClause) { + return visitor.visitWindowClause(this); } else { return visitor.visitChildren(this); } @@ -105773,18 +99068,18 @@ export class Window_clauseContext extends antlr.ParserRuleContext { } -export class Window_definition_listContext extends antlr.ParserRuleContext { +export class WindowDefinitionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public window_definition(): Window_definitionContext[]; - public window_definition(i: number): Window_definitionContext | null; - public window_definition(i?: number): Window_definitionContext[] | Window_definitionContext | null { + public windowDefinition(): WindowDefinitionContext[]; + public windowDefinition(i: number): WindowDefinitionContext | null; + public windowDefinition(i?: number): WindowDefinitionContext[] | WindowDefinitionContext | null { if (i === undefined) { - return this.getRuleContexts(Window_definitionContext); + return this.getRuleContexts(WindowDefinitionContext); } - return this.getRuleContext(i, Window_definitionContext); + return this.getRuleContext(i, WindowDefinitionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -105796,11 +99091,11 @@ export class Window_definition_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_window_definition_list; + return PostgreSqlParser.RULE_windowDefinitionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWindow_definition_list) { - return visitor.visitWindow_definition_list(this); + if (visitor.visitWindowDefinitionList) { + return visitor.visitWindowDefinitionList(this); } else { return visitor.visitChildren(this); } @@ -105808,25 +99103,25 @@ export class Window_definition_listContext extends antlr.ParserRuleContext { } -export class Window_definitionContext extends antlr.ParserRuleContext { +export class WindowDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public AS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.AS, 0)!; } - public window_specification(): Window_specificationContext { - return this.getRuleContext(0, Window_specificationContext)!; + public windowSpecification(): WindowSpecificationContext { + return this.getRuleContext(0, WindowSpecificationContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_window_definition; + return PostgreSqlParser.RULE_windowDefinition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWindow_definition) { - return visitor.visitWindow_definition(this); + if (visitor.visitWindowDefinition) { + return visitor.visitWindowDefinition(this); } else { return visitor.visitChildren(this); } @@ -105834,25 +99129,25 @@ export class Window_definitionContext extends antlr.ParserRuleContext { } -export class Over_clauseContext extends antlr.ParserRuleContext { +export class OverClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OVER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OVER, 0); } - public window_specification(): Window_specificationContext | null { - return this.getRuleContext(0, Window_specificationContext); + public windowSpecification(): WindowSpecificationContext | null { + return this.getRuleContext(0, WindowSpecificationContext); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_over_clause; + return PostgreSqlParser.RULE_overClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOver_clause) { - return visitor.visitOver_clause(this); + if (visitor.visitOverClause) { + return visitor.visitOverClause(this); } else { return visitor.visitChildren(this); } @@ -105860,34 +99155,34 @@ export class Over_clauseContext extends antlr.ParserRuleContext { } -export class Window_specificationContext extends antlr.ParserRuleContext { +export class WindowSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public opt_existing_window_name(): Opt_existing_window_nameContext { - return this.getRuleContext(0, Opt_existing_window_nameContext)!; + public optionalExistingWindowName(): OptionalExistingWindowNameContext { + return this.getRuleContext(0, OptionalExistingWindowNameContext)!; } - public opt_partition_clause(): Opt_partition_clauseContext { - return this.getRuleContext(0, Opt_partition_clauseContext)!; + public optionalPartitionClause(): OptionalPartitionClauseContext { + return this.getRuleContext(0, OptionalPartitionClauseContext)!; } - public opt_sort_clause(): Opt_sort_clauseContext { - return this.getRuleContext(0, Opt_sort_clauseContext)!; + public optionalSortClause(): OptionalSortClauseContext { + return this.getRuleContext(0, OptionalSortClauseContext)!; } - public opt_frame_clause(): Opt_frame_clauseContext { - return this.getRuleContext(0, Opt_frame_clauseContext)!; + public optionalFrameClause(): OptionalFrameClauseContext { + return this.getRuleContext(0, OptionalFrameClauseContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_window_specification; + return PostgreSqlParser.RULE_windowSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWindow_specification) { - return visitor.visitWindow_specification(this); + if (visitor.visitWindowSpecification) { + return visitor.visitWindowSpecification(this); } else { return visitor.visitChildren(this); } @@ -105895,19 +99190,19 @@ export class Window_specificationContext extends antlr.ParserRuleContext { } -export class Opt_existing_window_nameContext extends antlr.ParserRuleContext { +export class OptionalExistingWindowNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_existing_window_name; + return PostgreSqlParser.RULE_optionalExistingWindowName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_existing_window_name) { - return visitor.visitOpt_existing_window_name(this); + if (visitor.visitOptionalExistingWindowName) { + return visitor.visitOptionalExistingWindowName(this); } else { return visitor.visitChildren(this); } @@ -105915,7 +99210,7 @@ export class Opt_existing_window_nameContext extends antlr.ParserRuleContext { } -export class Opt_partition_clauseContext extends antlr.ParserRuleContext { +export class OptionalPartitionClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -105925,15 +99220,15 @@ export class Opt_partition_clauseContext extends antlr.ParserRuleContext { public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_partition_clause; + return PostgreSqlParser.RULE_optionalPartitionClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_partition_clause) { - return visitor.visitOpt_partition_clause(this); + if (visitor.visitOptionalPartitionClause) { + return visitor.visitOptionalPartitionClause(this); } else { return visitor.visitChildren(this); } @@ -105941,18 +99236,18 @@ export class Opt_partition_clauseContext extends antlr.ParserRuleContext { } -export class Opt_frame_clauseContext extends antlr.ParserRuleContext { +export class OptionalFrameClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public RANGE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RANGE, 0); } - public frame_extent(): Frame_extentContext | null { - return this.getRuleContext(0, Frame_extentContext); + public frameExtent(): FrameExtentContext | null { + return this.getRuleContext(0, FrameExtentContext); } - public opt_window_exclusion_clause(): Opt_window_exclusion_clauseContext | null { - return this.getRuleContext(0, Opt_window_exclusion_clauseContext); + public optionalWindowExclusionClause(): OptionalWindowExclusionClauseContext | null { + return this.getRuleContext(0, OptionalWindowExclusionClauseContext); } public ROWS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROWS, 0); @@ -105961,11 +99256,11 @@ export class Opt_frame_clauseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.GROUPS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_frame_clause; + return PostgreSqlParser.RULE_optionalFrameClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_frame_clause) { - return visitor.visitOpt_frame_clause(this); + if (visitor.visitOptionalFrameClause) { + return visitor.visitOptionalFrameClause(this); } else { return visitor.visitChildren(this); } @@ -105973,18 +99268,18 @@ export class Opt_frame_clauseContext extends antlr.ParserRuleContext { } -export class Frame_extentContext extends antlr.ParserRuleContext { +export class FrameExtentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public frame_bound(): Frame_boundContext[]; - public frame_bound(i: number): Frame_boundContext | null; - public frame_bound(i?: number): Frame_boundContext[] | Frame_boundContext | null { + public frameBound(): FrameBoundContext[]; + public frameBound(i: number): FrameBoundContext | null; + public frameBound(i?: number): FrameBoundContext[] | FrameBoundContext | null { if (i === undefined) { - return this.getRuleContexts(Frame_boundContext); + return this.getRuleContexts(FrameBoundContext); } - return this.getRuleContext(i, Frame_boundContext); + return this.getRuleContext(i, FrameBoundContext); } public BETWEEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BETWEEN, 0); @@ -105993,11 +99288,11 @@ export class Frame_extentContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.AND, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_frame_extent; + return PostgreSqlParser.RULE_frameExtent; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFrame_extent) { - return visitor.visitFrame_extent(this); + if (visitor.visitFrameExtent) { + return visitor.visitFrameExtent(this); } else { return visitor.visitChildren(this); } @@ -106005,7 +99300,7 @@ export class Frame_extentContext extends antlr.ParserRuleContext { } -export class Frame_boundContext extends antlr.ParserRuleContext { +export class FrameBoundContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106024,15 +99319,15 @@ export class Frame_boundContext extends antlr.ParserRuleContext { public ROW(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ROW, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_frame_bound; + return PostgreSqlParser.RULE_frameBound; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFrame_bound) { - return visitor.visitFrame_bound(this); + if (visitor.visitFrameBound) { + return visitor.visitFrameBound(this); } else { return visitor.visitChildren(this); } @@ -106040,7 +99335,7 @@ export class Frame_boundContext extends antlr.ParserRuleContext { } -export class Opt_window_exclusion_clauseContext extends antlr.ParserRuleContext { +export class OptionalWindowExclusionClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106066,11 +99361,11 @@ export class Opt_window_exclusion_clauseContext extends antlr.ParserRuleContext return this.getToken(PostgreSqlParser.OTHERS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_window_exclusion_clause; + return PostgreSqlParser.RULE_optionalWindowExclusionClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_window_exclusion_clause) { - return visitor.visitOpt_window_exclusion_clause(this); + if (visitor.visitOptionalWindowExclusionClause) { + return visitor.visitOptionalWindowExclusionClause(this); } else { return visitor.visitChildren(this); } @@ -106091,14 +99386,14 @@ export class RowContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public COMMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COMMA, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_row; @@ -106113,7 +99408,7 @@ export class RowContext extends antlr.ParserRuleContext { } -export class Explicit_rowContext extends antlr.ParserRuleContext { +export class ExplicitRowContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106126,15 +99421,15 @@ export class Explicit_rowContext extends antlr.ParserRuleContext { public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_explicit_row; + return PostgreSqlParser.RULE_explicitRow; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExplicit_row) { - return visitor.visitExplicit_row(this); + if (visitor.visitExplicitRow) { + return visitor.visitExplicitRow(this); } else { return visitor.visitChildren(this); } @@ -106142,31 +99437,31 @@ export class Explicit_rowContext extends antlr.ParserRuleContext { } -export class Implicit_rowContext extends antlr.ParserRuleContext { +export class ImplicitRowContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public COMMA(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.COMMA, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_implicit_row; + return PostgreSqlParser.RULE_implicitRow; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitImplicit_row) { - return visitor.visitImplicit_row(this); + if (visitor.visitImplicitRow) { + return visitor.visitImplicitRow(this); } else { return visitor.visitChildren(this); } @@ -106174,7 +99469,7 @@ export class Implicit_rowContext extends antlr.ParserRuleContext { } -export class Sub_typeContext extends antlr.ParserRuleContext { +export class SubTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106188,11 +99483,11 @@ export class Sub_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_sub_type; + return PostgreSqlParser.RULE_subType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSub_type) { - return visitor.visitSub_type(this); + if (visitor.visitSubType) { + return visitor.visitSubType(this); } else { return visitor.visitChildren(this); } @@ -106200,22 +99495,22 @@ export class Sub_typeContext extends antlr.ParserRuleContext { } -export class All_opContext extends antlr.ParserRuleContext { +export class AllOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public Operator(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.Operator, 0); } - public mathop(): MathopContext | null { - return this.getRuleContext(0, MathopContext); + public mathOperator(): MathOperatorContext | null { + return this.getRuleContext(0, MathOperatorContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_all_op; + return PostgreSqlParser.RULE_allOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAll_op) { - return visitor.visitAll_op(this); + if (visitor.visitAllOperator) { + return visitor.visitAllOperator(this); } else { return visitor.visitChildren(this); } @@ -106223,7 +99518,7 @@ export class All_opContext extends antlr.ParserRuleContext { } -export class MathopContext extends antlr.ParserRuleContext { +export class MathOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106264,11 +99559,11 @@ export class MathopContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NOT_EQUALS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_mathop; + return PostgreSqlParser.RULE_mathOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMathop) { - return visitor.visitMathop(this); + if (visitor.visitMathOperator) { + return visitor.visitMathOperator(this); } else { return visitor.visitChildren(this); } @@ -106276,7 +99571,7 @@ export class MathopContext extends antlr.ParserRuleContext { } -export class Qual_opContext extends antlr.ParserRuleContext { +export class OperatorQualifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106289,18 +99584,18 @@ export class Qual_opContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_qual_op; + return PostgreSqlParser.RULE_operatorQualifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitQual_op) { - return visitor.visitQual_op(this); + if (visitor.visitOperatorQualifier) { + return visitor.visitOperatorQualifier(this); } else { return visitor.visitChildren(this); } @@ -106308,12 +99603,12 @@ export class Qual_opContext extends antlr.ParserRuleContext { } -export class Qual_all_opContext extends antlr.ParserRuleContext { +export class AllOperatorQualifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public all_op(): All_opContext | null { - return this.getRuleContext(0, All_opContext); + public allOperator(): AllOperatorContext | null { + return this.getRuleContext(0, AllOperatorContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); @@ -106321,18 +99616,18 @@ export class Qual_all_opContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_qual_all_op; + return PostgreSqlParser.RULE_allOperatorQualifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitQual_all_op) { - return visitor.visitQual_all_op(this); + if (visitor.visitAllOperatorQualifier) { + return visitor.visitAllOperatorQualifier(this); } else { return visitor.visitChildren(this); } @@ -106340,12 +99635,12 @@ export class Qual_all_opContext extends antlr.ParserRuleContext { } -export class Subquery_OpContext extends antlr.ParserRuleContext { +export class SubqueryOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public all_op(): All_opContext | null { - return this.getRuleContext(0, All_opContext); + public allOperator(): AllOperatorContext | null { + return this.getRuleContext(0, AllOperatorContext); } public OPERATOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPERATOR, 0); @@ -106353,8 +99648,8 @@ export class Subquery_OpContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public any_operator(): Any_operatorContext | null { - return this.getRuleContext(0, Any_operatorContext); + public anyOperator(): AnyOperatorContext | null { + return this.getRuleContext(0, AnyOperatorContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -106369,11 +99664,11 @@ export class Subquery_OpContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ILIKE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_subquery_Op; + return PostgreSqlParser.RULE_subqueryOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSubquery_Op) { - return visitor.visitSubquery_Op(this); + if (visitor.visitSubqueryOperator) { + return visitor.visitSubqueryOperator(this); } else { return visitor.visitChildren(this); } @@ -106381,18 +99676,18 @@ export class Subquery_OpContext extends antlr.ParserRuleContext { } -export class Expr_listContext extends antlr.ParserRuleContext { +export class ExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -106404,11 +99699,11 @@ export class Expr_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_expr_list; + return PostgreSqlParser.RULE_expressionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExpr_list) { - return visitor.visitExpr_list(this); + if (visitor.visitExpressionList) { + return visitor.visitExpressionList(this); } else { return visitor.visitChildren(this); } @@ -106416,18 +99711,18 @@ export class Expr_listContext extends antlr.ParserRuleContext { } -export class Func_arg_listContext extends antlr.ParserRuleContext { +export class FunctionArgumentListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public func_arg_expr(): Func_arg_exprContext[]; - public func_arg_expr(i: number): Func_arg_exprContext | null; - public func_arg_expr(i?: number): Func_arg_exprContext[] | Func_arg_exprContext | null { + public functionArgumentExpression(): FunctionArgumentExpressionContext[]; + public functionArgumentExpression(i: number): FunctionArgumentExpressionContext | null; + public functionArgumentExpression(i?: number): FunctionArgumentExpressionContext[] | FunctionArgumentExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(Func_arg_exprContext); + return this.getRuleContexts(FunctionArgumentExpressionContext); } - return this.getRuleContext(i, Func_arg_exprContext); + return this.getRuleContext(i, FunctionArgumentExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -106439,11 +99734,11 @@ export class Func_arg_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_arg_list; + return PostgreSqlParser.RULE_functionArgumentList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_arg_list) { - return visitor.visitFunc_arg_list(this); + if (visitor.visitFunctionArgumentList) { + return visitor.visitFunctionArgumentList(this); } else { return visitor.visitChildren(this); } @@ -106451,15 +99746,15 @@ export class Func_arg_listContext extends antlr.ParserRuleContext { } -export class Func_arg_exprContext extends antlr.ParserRuleContext { +export class FunctionArgumentExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } - public param_name(): Param_nameContext | null { - return this.getRuleContext(0, Param_nameContext); + public parameterName(): ParameterNameContext | null { + return this.getRuleContext(0, ParameterNameContext); } public COLON_EQUALS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLON_EQUALS, 0); @@ -106468,11 +99763,11 @@ export class Func_arg_exprContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EQUALS_GREATER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_arg_expr; + return PostgreSqlParser.RULE_functionArgumentExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_arg_expr) { - return visitor.visitFunc_arg_expr(this); + if (visitor.visitFunctionArgumentExpression) { + return visitor.visitFunctionArgumentExpression(this); } else { return visitor.visitChildren(this); } @@ -106480,18 +99775,18 @@ export class Func_arg_exprContext extends antlr.ParserRuleContext { } -export class Type_listContext extends antlr.ParserRuleContext { +export class TypeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public typename(): TypenameContext[]; - public typename(i: number): TypenameContext | null; - public typename(i?: number): TypenameContext[] | TypenameContext | null { + public typeName(): TypeNameContext[]; + public typeName(i: number): TypeNameContext | null; + public typeName(i?: number): TypeNameContext[] | TypeNameContext | null { if (i === undefined) { - return this.getRuleContexts(TypenameContext); + return this.getRuleContexts(TypeNameContext); } - return this.getRuleContext(i, TypenameContext); + return this.getRuleContext(i, TypeNameContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -106503,11 +99798,11 @@ export class Type_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_type_list; + return PostgreSqlParser.RULE_typeList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitType_list) { - return visitor.visitType_list(this); + if (visitor.visitTypeList) { + return visitor.visitTypeList(this); } else { return visitor.visitChildren(this); } @@ -106515,7 +99810,7 @@ export class Type_listContext extends antlr.ParserRuleContext { } -export class Array_exprContext extends antlr.ParserRuleContext { +export class ArrayExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106525,18 +99820,18 @@ export class Array_exprContext extends antlr.ParserRuleContext { public CLOSE_BRACKET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_BRACKET, 0)!; } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } - public array_expr_list(): Array_expr_listContext | null { - return this.getRuleContext(0, Array_expr_listContext); + public arrayExpressionList(): ArrayExpressionListContext | null { + return this.getRuleContext(0, ArrayExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_array_expr; + return PostgreSqlParser.RULE_arrayExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitArray_expr) { - return visitor.visitArray_expr(this); + if (visitor.visitArrayExpression) { + return visitor.visitArrayExpression(this); } else { return visitor.visitChildren(this); } @@ -106544,18 +99839,18 @@ export class Array_exprContext extends antlr.ParserRuleContext { } -export class Array_expr_listContext extends antlr.ParserRuleContext { +export class ArrayExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public array_expr(): Array_exprContext[]; - public array_expr(i: number): Array_exprContext | null; - public array_expr(i?: number): Array_exprContext[] | Array_exprContext | null { + public arrayExpression(): ArrayExpressionContext[]; + public arrayExpression(i: number): ArrayExpressionContext | null; + public arrayExpression(i?: number): ArrayExpressionContext[] | ArrayExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(Array_exprContext); + return this.getRuleContexts(ArrayExpressionContext); } - return this.getRuleContext(i, Array_exprContext); + return this.getRuleContext(i, ArrayExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -106567,11 +99862,11 @@ export class Array_expr_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_array_expr_list; + return PostgreSqlParser.RULE_arrayExpressionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitArray_expr_list) { - return visitor.visitArray_expr_list(this); + if (visitor.visitArrayExpressionList) { + return visitor.visitArrayExpressionList(this); } else { return visitor.visitChildren(this); } @@ -106579,25 +99874,25 @@ export class Array_expr_listContext extends antlr.ParserRuleContext { } -export class Extract_listContext extends antlr.ParserRuleContext { +export class ExtractListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public extract_arg(): Extract_argContext | null { - return this.getRuleContext(0, Extract_argContext); + public extractArgument(): ExtractArgumentContext | null { + return this.getRuleContext(0, ExtractArgumentContext); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_extract_list; + return PostgreSqlParser.RULE_extractList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExtract_list) { - return visitor.visitExtract_list(this); + if (visitor.visitExtractList) { + return visitor.visitExtractList(this); } else { return visitor.visitChildren(this); } @@ -106605,7 +99900,7 @@ export class Extract_listContext extends antlr.ParserRuleContext { } -export class Extract_argContext extends antlr.ParserRuleContext { +export class ExtractArgumentContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106634,11 +99929,11 @@ export class Extract_argContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_extract_arg; + return PostgreSqlParser.RULE_extractArgument; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExtract_arg) { - return visitor.visitExtract_arg(this); + if (visitor.visitExtractArgument) { + return visitor.visitExtractArgument(this); } else { return visitor.visitChildren(this); } @@ -106646,7 +99941,7 @@ export class Extract_argContext extends antlr.ParserRuleContext { } -export class Unicode_normal_formContext extends antlr.ParserRuleContext { +export class UnicodeNormalFormContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -106663,11 +99958,11 @@ export class Unicode_normal_formContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NFKD, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_unicode_normal_form; + return PostgreSqlParser.RULE_unicodeNormalForm; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitUnicode_normal_form) { - return visitor.visitUnicode_normal_form(this); + if (visitor.visitUnicodeNormalForm) { + return visitor.visitUnicodeNormalForm(this); } else { return visitor.visitChildren(this); } @@ -106675,18 +99970,18 @@ export class Unicode_normal_formContext extends antlr.ParserRuleContext { } -export class Overlay_listContext extends antlr.ParserRuleContext { +export class OverlayListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public PLACING(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PLACING, 0)!; @@ -106698,11 +99993,11 @@ export class Overlay_listContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_overlay_list; + return PostgreSqlParser.RULE_overlayList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOverlay_list) { - return visitor.visitOverlay_list(this); + if (visitor.visitOverlayList) { + return visitor.visitOverlayList(this); } else { return visitor.visitChildren(this); } @@ -106710,28 +100005,28 @@ export class Overlay_listContext extends antlr.ParserRuleContext { } -export class Position_listContext extends antlr.ParserRuleContext { +export class PositionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public b_expr(): B_exprContext[]; - public b_expr(i: number): B_exprContext | null; - public b_expr(i?: number): B_exprContext[] | B_exprContext | null { + public expression2(): Expression2Context[]; + public expression2(i: number): Expression2Context | null; + public expression2(i?: number): Expression2Context[] | Expression2Context | null { if (i === undefined) { - return this.getRuleContexts(B_exprContext); + return this.getRuleContexts(Expression2Context); } - return this.getRuleContext(i, B_exprContext); + return this.getRuleContext(i, Expression2Context); } public IN_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.IN_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_position_list; + return PostgreSqlParser.RULE_positionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPosition_list) { - return visitor.visitPosition_list(this); + if (visitor.visitPositionList) { + return visitor.visitPositionList(this); } else { return visitor.visitChildren(this); } @@ -106739,18 +100034,18 @@ export class Position_listContext extends antlr.ParserRuleContext { } -export class Substr_listContext extends antlr.ParserRuleContext { +export class SubstrListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); @@ -106764,15 +100059,15 @@ export class Substr_listContext extends antlr.ParserRuleContext { public ESCAPE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ESCAPE, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_substr_list; + return PostgreSqlParser.RULE_substrList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSubstr_list) { - return visitor.visitSubstr_list(this); + if (visitor.visitSubstrList) { + return visitor.visitSubstrList(this); } else { return visitor.visitChildren(this); } @@ -106780,25 +100075,25 @@ export class Substr_listContext extends antlr.ParserRuleContext { } -export class Trim_listContext extends antlr.ParserRuleContext { +export class TrimListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public FROM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FROM, 0); } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_trim_list; + return PostgreSqlParser.RULE_trimList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTrim_list) { - return visitor.visitTrim_list(this); + if (visitor.visitTrimList) { + return visitor.visitTrimList(this); } else { return visitor.visitChildren(this); } @@ -106806,27 +100101,27 @@ export class Trim_listContext extends antlr.ParserRuleContext { } -export class In_exprContext extends antlr.ParserRuleContext { +export class InExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_in_expr; + return PostgreSqlParser.RULE_inExpression; } - public override copyFrom(ctx: In_exprContext): void { + public override copyFrom(ctx: InExpressionContext): void { super.copyFrom(ctx); } } -export class In_expr_listContext extends In_exprContext { - public constructor(ctx: In_exprContext) { +export class In_expr_listContext extends InExpressionContext { + public constructor(ctx: InExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; @@ -106839,13 +100134,13 @@ export class In_expr_listContext extends In_exprContext { } } } -export class In_expr_selectContext extends In_exprContext { - public constructor(ctx: In_exprContext) { +export class In_expr_selectContext extends InExpressionContext { + public constructor(ctx: InExpressionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public select_with_parens(): Select_with_parensContext { - return this.getRuleContext(0, Select_with_parensContext)!; + public selectWithParenthesis(): SelectWithParenthesisContext { + return this.getRuleContext(0, SelectWithParenthesisContext)!; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { if (visitor.visitIn_expr_select) { @@ -106857,31 +100152,31 @@ export class In_expr_selectContext extends In_exprContext { } -export class Case_exprContext extends antlr.ParserRuleContext { +export class CaseExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CASE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CASE, 0)!; } - public case_arg(): Case_argContext { - return this.getRuleContext(0, Case_argContext)!; + public caseArg(): CaseArgContext { + return this.getRuleContext(0, CaseArgContext)!; } - public when_clause_list(): When_clause_listContext { - return this.getRuleContext(0, When_clause_listContext)!; + public whenClauseList(): WhenClauseListContext { + return this.getRuleContext(0, WhenClauseListContext)!; } - public case_default(): Case_defaultContext { - return this.getRuleContext(0, Case_defaultContext)!; + public caseDefault(): CaseDefaultContext { + return this.getRuleContext(0, CaseDefaultContext)!; } public END_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.END_P, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_case_expr; + return PostgreSqlParser.RULE_caseExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCase_expr) { - return visitor.visitCase_expr(this); + if (visitor.visitCaseExpression) { + return visitor.visitCaseExpression(this); } else { return visitor.visitChildren(this); } @@ -106889,25 +100184,25 @@ export class Case_exprContext extends antlr.ParserRuleContext { } -export class When_clause_listContext extends antlr.ParserRuleContext { +export class WhenClauseListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public when_clause(): When_clauseContext[]; - public when_clause(i: number): When_clauseContext | null; - public when_clause(i?: number): When_clauseContext[] | When_clauseContext | null { + public whenClause(): WhenClauseContext[]; + public whenClause(i: number): WhenClauseContext | null; + public whenClause(i?: number): WhenClauseContext[] | WhenClauseContext | null { if (i === undefined) { - return this.getRuleContexts(When_clauseContext); + return this.getRuleContexts(WhenClauseContext); } - return this.getRuleContext(i, When_clauseContext); + return this.getRuleContext(i, WhenClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_when_clause_list; + return PostgreSqlParser.RULE_whenClauseList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWhen_clause_list) { - return visitor.visitWhen_clause_list(this); + if (visitor.visitWhenClauseList) { + return visitor.visitWhenClauseList(this); } else { return visitor.visitChildren(this); } @@ -106915,31 +100210,31 @@ export class When_clause_listContext extends antlr.ParserRuleContext { } -export class When_clauseContext extends antlr.ParserRuleContext { +export class WhenClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WHEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WHEN, 0)!; } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public THEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.THEN, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_when_clause; + return PostgreSqlParser.RULE_whenClause; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitWhen_clause) { - return visitor.visitWhen_clause(this); + if (visitor.visitWhenClause) { + return visitor.visitWhenClause(this); } else { return visitor.visitChildren(this); } @@ -106947,22 +100242,22 @@ export class When_clauseContext extends antlr.ParserRuleContext { } -export class Case_defaultContext extends antlr.ParserRuleContext { +export class CaseDefaultContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ELSE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ELSE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_case_default; + return PostgreSqlParser.RULE_caseDefault; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCase_default) { - return visitor.visitCase_default(this); + if (visitor.visitCaseDefault) { + return visitor.visitCaseDefault(this); } else { return visitor.visitChildren(this); } @@ -106970,19 +100265,19 @@ export class Case_defaultContext extends antlr.ParserRuleContext { } -export class Case_argContext extends antlr.ParserRuleContext { +export class CaseArgContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_case_arg; + return PostgreSqlParser.RULE_caseArg; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCase_arg) { - return visitor.visitCase_arg(this); + if (visitor.visitCaseArg) { + return visitor.visitCaseArg(this); } else { return visitor.visitChildren(this); } @@ -106990,22 +100285,22 @@ export class Case_argContext extends antlr.ParserRuleContext { } -export class ColumnrefContext extends antlr.ParserRuleContext { +export class ColumnReferenceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_columnref; + return PostgreSqlParser.RULE_columnReference; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumnref) { - return visitor.visitColumnref(this); + if (visitor.visitColumnReference) { + return visitor.visitColumnReference(this); } else { return visitor.visitChildren(this); } @@ -107013,15 +100308,15 @@ export class ColumnrefContext extends antlr.ParserRuleContext { } -export class Indirection_elContext extends antlr.ParserRuleContext { +export class IndirectionElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public DOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOT, 0); } - public attr_name(): Attr_nameContext | null { - return this.getRuleContext(0, Attr_nameContext); + public attributeName(): AttributeNameContext | null { + return this.getRuleContext(0, AttributeNameContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -107032,47 +100327,24 @@ export class Indirection_elContext extends antlr.ParserRuleContext { public CLOSE_BRACKET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_BRACKET, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); - } - public opt_slice_bound(): Opt_slice_boundContext[]; - public opt_slice_bound(i: number): Opt_slice_boundContext | null; - public opt_slice_bound(i?: number): Opt_slice_boundContext[] | Opt_slice_boundContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(Opt_slice_boundContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, Opt_slice_boundContext); + return this.getRuleContext(i, Expression1Context); } public COLON(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLON, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_indirection_el; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitIndirection_el) { - return visitor.visitIndirection_el(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_slice_boundContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_slice_bound; + return PostgreSqlParser.RULE_indirectionElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_slice_bound) { - return visitor.visitOpt_slice_bound(this); + if (visitor.visitIndirectionElement) { + return visitor.visitIndirectionElement(this); } else { return visitor.visitChildren(this); } @@ -107084,14 +100356,14 @@ export class IndirectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public indirection_el(): Indirection_elContext[]; - public indirection_el(i: number): Indirection_elContext | null; - public indirection_el(i?: number): Indirection_elContext[] | Indirection_elContext | null { + public indirectionElement(): IndirectionElementContext[]; + public indirectionElement(i: number): IndirectionElementContext | null; + public indirectionElement(i?: number): IndirectionElementContext[] | IndirectionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Indirection_elContext); + return this.getRuleContexts(IndirectionElementContext); } - return this.getRuleContext(i, Indirection_elContext); + return this.getRuleContext(i, IndirectionElementContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_indirection; @@ -107106,25 +100378,25 @@ export class IndirectionContext extends antlr.ParserRuleContext { } -export class Opt_indirectionContext extends antlr.ParserRuleContext { +export class OptionalIndirectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public indirection_el(): Indirection_elContext[]; - public indirection_el(i: number): Indirection_elContext | null; - public indirection_el(i?: number): Indirection_elContext[] | Indirection_elContext | null { + public indirectionElement(): IndirectionElementContext[]; + public indirectionElement(i: number): IndirectionElementContext | null; + public indirectionElement(i?: number): IndirectionElementContext[] | IndirectionElementContext | null { if (i === undefined) { - return this.getRuleContexts(Indirection_elContext); + return this.getRuleContexts(IndirectionElementContext); } - return this.getRuleContext(i, Indirection_elContext); + return this.getRuleContext(i, IndirectionElementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_indirection; + return PostgreSqlParser.RULE_optionalIndirection; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_indirection) { - return visitor.visitOpt_indirection(this); + if (visitor.visitOptionalIndirection) { + return visitor.visitOptionalIndirection(this); } else { return visitor.visitChildren(this); } @@ -107132,19 +100404,19 @@ export class Opt_indirectionContext extends antlr.ParserRuleContext { } -export class Opt_target_listContext extends antlr.ParserRuleContext { +export class OptionalTargetListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public target_list(): Target_listContext | null { - return this.getRuleContext(0, Target_listContext); + public targetList(): TargetListContext | null { + return this.getRuleContext(0, TargetListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_target_list; + return PostgreSqlParser.RULE_optionalTargetList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_target_list) { - return visitor.visitOpt_target_list(this); + if (visitor.visitOptionalTargetList) { + return visitor.visitOptionalTargetList(this); } else { return visitor.visitChildren(this); } @@ -107152,18 +100424,18 @@ export class Opt_target_listContext extends antlr.ParserRuleContext { } -export class Target_listContext extends antlr.ParserRuleContext { +export class TargetListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public target_el(): Target_elContext[]; - public target_el(i: number): Target_elContext | null; - public target_el(i?: number): Target_elContext[] | Target_elContext | null { + public targetElement(): TargetElementContext[]; + public targetElement(i: number): TargetElementContext | null; + public targetElement(i?: number): TargetElementContext[] | TargetElementContext | null { if (i === undefined) { - return this.getRuleContexts(Target_elContext); + return this.getRuleContexts(TargetElementContext); } - return this.getRuleContext(i, Target_elContext); + return this.getRuleContext(i, TargetElementContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -107175,11 +100447,11 @@ export class Target_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_target_list; + return PostgreSqlParser.RULE_targetList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTarget_list) { - return visitor.visitTarget_list(this); + if (visitor.visitTargetList) { + return visitor.visitTargetList(this); } else { return visitor.visitChildren(this); } @@ -107187,19 +100459,19 @@ export class Target_listContext extends antlr.ParserRuleContext { } -export class Target_elContext extends antlr.ParserRuleContext { +export class TargetElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_target_el; + return PostgreSqlParser.RULE_targetElement; } - public override copyFrom(ctx: Target_elContext): void { + public override copyFrom(ctx: TargetElementContext): void { super.copyFrom(ctx); } } -export class Target_starContext extends Target_elContext { - public constructor(ctx: Target_elContext) { +export class Target_starContext extends TargetElementContext { + public constructor(ctx: TargetElementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -107214,19 +100486,19 @@ export class Target_starContext extends Target_elContext { } } } -export class Target_labelContext extends Target_elContext { - public constructor(ctx: Target_elContext) { +export class Target_labelContext extends TargetElementContext { + public constructor(ctx: TargetElementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public AS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.AS, 0); } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); + public columnLabel(): ColumnLabelContext | null { + return this.getRuleContext(0, ColumnLabelContext); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); @@ -107241,18 +100513,18 @@ export class Target_labelContext extends Target_elContext { } -export class Qualified_name_listContext extends antlr.ParserRuleContext { +export class QualifiedNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualified_name(): Qualified_nameContext[]; - public qualified_name(i: number): Qualified_nameContext | null; - public qualified_name(i?: number): Qualified_nameContext[] | Qualified_nameContext | null { + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { if (i === undefined) { - return this.getRuleContexts(Qualified_nameContext); + return this.getRuleContexts(QualifiedNameContext); } - return this.getRuleContext(i, Qualified_nameContext); + return this.getRuleContext(i, QualifiedNameContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -107264,11 +100536,11 @@ export class Qualified_name_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_qualified_name_list; + return PostgreSqlParser.RULE_qualifiedNameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitQualified_name_list) { - return visitor.visitQualified_name_list(this); + if (visitor.visitQualifiedNameList) { + return visitor.visitQualifiedNameList(this); } else { return visitor.visitChildren(this); } @@ -107276,22 +100548,22 @@ export class Qualified_name_listContext extends antlr.ParserRuleContext { } -export class Qualified_nameContext extends antlr.ParserRuleContext { +export class QualifiedNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_qualified_name; + return PostgreSqlParser.RULE_qualifiedName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitQualified_name) { - return visitor.visitQualified_name(this); + if (visitor.visitQualifiedName) { + return visitor.visitQualifiedName(this); } else { return visitor.visitChildren(this); } @@ -107299,7 +100571,7 @@ export class Qualified_nameContext extends antlr.ParserRuleContext { } -export class Name_listContext extends antlr.ParserRuleContext { +export class NameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107322,11 +100594,11 @@ export class Name_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_name_list; + return PostgreSqlParser.RULE_nameList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitName_list) { - return visitor.visitName_list(this); + if (visitor.visitNameList) { + return visitor.visitNameList(this); } else { return visitor.visitChildren(this); } @@ -107338,8 +100610,8 @@ export class NameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public override get ruleIndex(): number { return PostgreSqlParser.RULE_name; @@ -107354,19 +100626,19 @@ export class NameContext extends antlr.ParserRuleContext { } -export class Attr_nameContext extends antlr.ParserRuleContext { +export class AttributeNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public collabel(): CollabelContext { - return this.getRuleContext(0, CollabelContext)!; + public columnLabel(): ColumnLabelContext { + return this.getRuleContext(0, ColumnLabelContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_attr_name; + return PostgreSqlParser.RULE_attributeName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAttr_name) { - return visitor.visitAttr_name(this); + if (visitor.visitAttributeName) { + return visitor.visitAttributeName(this); } else { return visitor.visitChildren(this); } @@ -107374,7 +100646,7 @@ export class Attr_nameContext extends antlr.ParserRuleContext { } -export class File_nameContext extends antlr.ParserRuleContext { +export class FileNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107382,11 +100654,11 @@ export class File_nameContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_file_name; + return PostgreSqlParser.RULE_fileName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFile_name) { - return visitor.visitFile_name(this); + if (visitor.visitFileName) { + return visitor.visitFileName(this); } else { return visitor.visitChildren(this); } @@ -107394,18 +100666,18 @@ export class File_nameContext extends antlr.ParserRuleContext { } -export class Func_nameContext extends antlr.ParserRuleContext { +export class FunctionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public builtin_function_name(): Builtin_function_nameContext | null { - return this.getRuleContext(0, Builtin_function_nameContext); + public builtinFunctionName(): BuiltinFunctionNameContext | null { + return this.getRuleContext(0, BuiltinFunctionNameContext); } - public type_function_name(): Type_function_nameContext | null { - return this.getRuleContext(0, Type_function_nameContext); + public typeFunctionName(): TypeFunctionNameContext | null { + return this.getRuleContext(0, TypeFunctionNameContext); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public indirection(): IndirectionContext | null { return this.getRuleContext(0, IndirectionContext); @@ -107417,11 +100689,11 @@ export class Func_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RIGHT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_func_name; + return PostgreSqlParser.RULE_functionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFunc_name) { - return visitor.visitFunc_name(this); + if (visitor.visitFunctionName) { + return visitor.visitFunctionName(this); } else { return visitor.visitChildren(this); } @@ -107429,7 +100701,7 @@ export class Func_nameContext extends antlr.ParserRuleContext { } -export class AexprconstContext extends antlr.ParserRuleContext { +export class AExpressionConstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107448,29 +100720,29 @@ export class AexprconstContext extends antlr.ParserRuleContext { public xconst(): XconstContext | null { return this.getRuleContext(0, XconstContext); } - public func_name(): Func_nameContext | null { - return this.getRuleContext(0, Func_nameContext); + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public func_arg_list(): Func_arg_listContext | null { - return this.getRuleContext(0, Func_arg_listContext); + public functionArgumentList(): FunctionArgumentListContext | null { + return this.getRuleContext(0, FunctionArgumentListContext); } - public opt_sort_clause(): Opt_sort_clauseContext | null { - return this.getRuleContext(0, Opt_sort_clauseContext); + public optionalSortClause(): OptionalSortClauseContext | null { + return this.getRuleContext(0, OptionalSortClauseContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } - public consttypename(): ConsttypenameContext | null { - return this.getRuleContext(0, ConsttypenameContext); + public constTypeName(): ConstTypeNameContext | null { + return this.getRuleContext(0, ConstTypeNameContext); } - public constinterval(): ConstintervalContext | null { - return this.getRuleContext(0, ConstintervalContext); + public constInterval(): ConstIntervalContext | null { + return this.getRuleContext(0, ConstIntervalContext); } - public opt_interval(): Opt_intervalContext | null { - return this.getRuleContext(0, Opt_intervalContext); + public optionalInterval(): OptionalIntervalContext | null { + return this.getRuleContext(0, OptionalIntervalContext); } public TRUE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TRUE_P, 0); @@ -107482,11 +100754,11 @@ export class AexprconstContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_aexprconst; + return PostgreSqlParser.RULE_aExpressionConst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAexprconst) { - return visitor.visitAexprconst(this); + if (visitor.visitAExpressionConst) { + return visitor.visitAExpressionConst(this); } else { return visitor.visitChildren(this); } @@ -107578,11 +100850,11 @@ export class SconstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public anysconst(): AnysconstContext { - return this.getRuleContext(0, AnysconstContext)!; + public anySconst(): AnySconstContext { + return this.getRuleContext(0, AnySconstContext)!; } - public opt_uescape(): Opt_uescapeContext { - return this.getRuleContext(0, Opt_uescapeContext)!; + public optionalUescape(): OptionalUescapeContext { + return this.getRuleContext(0, OptionalUescapeContext)!; } public override get ruleIndex(): number { return PostgreSqlParser.RULE_sconst; @@ -107597,7 +100869,7 @@ export class SconstContext extends antlr.ParserRuleContext { } -export class AnysconstContext extends antlr.ParserRuleContext { +export class AnySconstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107626,11 +100898,11 @@ export class AnysconstContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EscapeStringConstant, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_anysconst; + return PostgreSqlParser.RULE_anySconst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAnysconst) { - return visitor.visitAnysconst(this); + if (visitor.visitAnySconst) { + return visitor.visitAnySconst(this); } else { return visitor.visitChildren(this); } @@ -107638,22 +100910,22 @@ export class AnysconstContext extends antlr.ParserRuleContext { } -export class Opt_uescapeContext extends antlr.ParserRuleContext { +export class OptionalUescapeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public UESCAPE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.UESCAPE, 0); } - public anysconst(): AnysconstContext | null { - return this.getRuleContext(0, AnysconstContext); + public anySconst(): AnySconstContext | null { + return this.getRuleContext(0, AnySconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_uescape; + return PostgreSqlParser.RULE_optionalUescape; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_uescape) { - return visitor.visitOpt_uescape(this); + if (visitor.visitOptionalUescape) { + return visitor.visitOptionalUescape(this); } else { return visitor.visitChildren(this); } @@ -107661,7 +100933,7 @@ export class Opt_uescapeContext extends antlr.ParserRuleContext { } -export class SignediconstContext extends antlr.ParserRuleContext { +export class SignedIconstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107675,11 +100947,11 @@ export class SignediconstContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.MINUS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_signediconst; + return PostgreSqlParser.RULE_signedIconst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSignediconst) { - return visitor.visitSignediconst(this); + if (visitor.visitSignedIconst) { + return visitor.visitSignedIconst(this); } else { return visitor.visitChildren(this); } @@ -107687,19 +100959,19 @@ export class SignediconstContext extends antlr.ParserRuleContext { } -export class RoleidContext extends antlr.ParserRuleContext { +export class RoleIdContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public rolespec(): RolespecContext { - return this.getRuleContext(0, RolespecContext)!; + public roleSpecification(): RoleSpecificationContext { + return this.getRuleContext(0, RoleSpecificationContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_roleid; + return PostgreSqlParser.RULE_roleId; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRoleid) { - return visitor.visitRoleid(this); + if (visitor.visitRoleId) { + return visitor.visitRoleId(this); } else { return visitor.visitChildren(this); } @@ -107707,12 +100979,12 @@ export class RoleidContext extends antlr.ParserRuleContext { } -export class RolespecContext extends antlr.ParserRuleContext { +export class RoleSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public nonreservedword(): NonreservedwordContext | null { - return this.getRuleContext(0, NonreservedwordContext); + public nonReservedWord(): NonReservedWordContext | null { + return this.getRuleContext(0, NonReservedWordContext); } public CURRENT_USER(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CURRENT_USER, 0); @@ -107721,11 +100993,11 @@ export class RolespecContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SESSION_USER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_rolespec; + return PostgreSqlParser.RULE_roleSpecification; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRolespec) { - return visitor.visitRolespec(this); + if (visitor.visitRoleSpecification) { + return visitor.visitRoleSpecification(this); } else { return visitor.visitChildren(this); } @@ -107733,18 +101005,18 @@ export class RolespecContext extends antlr.ParserRuleContext { } -export class Role_listContext extends antlr.ParserRuleContext { +export class RoleListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public rolespec(): RolespecContext[]; - public rolespec(i: number): RolespecContext | null; - public rolespec(i?: number): RolespecContext[] | RolespecContext | null { + public roleSpecification(): RoleSpecificationContext[]; + public roleSpecification(i: number): RoleSpecificationContext | null; + public roleSpecification(i?: number): RoleSpecificationContext[] | RoleSpecificationContext | null { if (i === undefined) { - return this.getRuleContexts(RolespecContext); + return this.getRuleContexts(RoleSpecificationContext); } - return this.getRuleContext(i, RolespecContext); + return this.getRuleContext(i, RoleSpecificationContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -107756,11 +101028,11 @@ export class Role_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_role_list; + return PostgreSqlParser.RULE_roleList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitRole_list) { - return visitor.visitRole_list(this); + if (visitor.visitRoleList) { + return visitor.visitRoleList(this); } else { return visitor.visitChildren(this); } @@ -107768,21 +101040,21 @@ export class Role_listContext extends antlr.ParserRuleContext { } -export class ColidContext extends antlr.ParserRuleContext { +export class ColumnIdContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } - public col_name_keyword(): Col_name_keywordContext | null { - return this.getRuleContext(0, Col_name_keywordContext); + public columnNameKeyword(): ColumnNameKeywordContext | null { + return this.getRuleContext(0, ColumnNameKeywordContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } public LEFT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.LEFT, 0); @@ -107791,11 +101063,11 @@ export class ColidContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.RIGHT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_colid; + return PostgreSqlParser.RULE_columnId; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColid) { - return visitor.visitColid(this); + if (visitor.visitColumnId) { + return visitor.visitColumnId(this); } else { return visitor.visitChildren(this); } @@ -107803,28 +101075,28 @@ export class ColidContext extends antlr.ParserRuleContext { } -export class Table_aliasContext extends antlr.ParserRuleContext { +export class TableAliasContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } - public col_name_keyword(): Col_name_keywordContext | null { - return this.getRuleContext(0, Col_name_keywordContext); + public columnNameKeyword(): ColumnNameKeywordContext | null { + return this.getRuleContext(0, ColumnNameKeywordContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_table_alias; + return PostgreSqlParser.RULE_tableAlias; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTable_alias) { - return visitor.visitTable_alias(this); + if (visitor.visitTableAlias) { + return visitor.visitTableAlias(this); } else { return visitor.visitChildren(this); } @@ -107832,28 +101104,28 @@ export class Table_aliasContext extends antlr.ParserRuleContext { } -export class Type_function_nameContext extends antlr.ParserRuleContext { +export class TypeFunctionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } - public type_func_name_keyword(): Type_func_name_keywordContext | null { - return this.getRuleContext(0, Type_func_name_keywordContext); + public typeFunctionNameKeyword(): TypeFunctionNameKeywordContext | null { + return this.getRuleContext(0, TypeFunctionNameKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_type_function_name; + return PostgreSqlParser.RULE_typeFunctionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitType_function_name) { - return visitor.visitType_function_name(this); + if (visitor.visitTypeFunctionName) { + return visitor.visitTypeFunctionName(this); } else { return visitor.visitChildren(this); } @@ -107861,28 +101133,28 @@ export class Type_function_nameContext extends antlr.ParserRuleContext { } -export class NonreservedwordContext extends antlr.ParserRuleContext { +export class NonReservedWordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } - public col_name_keyword(): Col_name_keywordContext | null { - return this.getRuleContext(0, Col_name_keywordContext); + public columnNameKeyword(): ColumnNameKeywordContext | null { + return this.getRuleContext(0, ColumnNameKeywordContext); } - public type_func_name_keyword(): Type_func_name_keywordContext | null { - return this.getRuleContext(0, Type_func_name_keywordContext); + public typeFunctionNameKeyword(): TypeFunctionNameKeywordContext | null { + return this.getRuleContext(0, TypeFunctionNameKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_nonreservedword; + return PostgreSqlParser.RULE_nonReservedWord; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitNonreservedword) { - return visitor.visitNonreservedword(this); + if (visitor.visitNonReservedWord) { + return visitor.visitNonReservedWord(this); } else { return visitor.visitChildren(this); } @@ -107890,34 +101162,34 @@ export class NonreservedwordContext extends antlr.ParserRuleContext { } -export class CollabelContext extends antlr.ParserRuleContext { +export class ColumnLabelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } - public col_name_keyword(): Col_name_keywordContext | null { - return this.getRuleContext(0, Col_name_keywordContext); + public columnNameKeyword(): ColumnNameKeywordContext | null { + return this.getRuleContext(0, ColumnNameKeywordContext); } - public type_func_name_keyword(): Type_func_name_keywordContext | null { - return this.getRuleContext(0, Type_func_name_keywordContext); + public typeFunctionNameKeyword(): TypeFunctionNameKeywordContext | null { + return this.getRuleContext(0, TypeFunctionNameKeywordContext); } - public reserved_keyword(): Reserved_keywordContext | null { - return this.getRuleContext(0, Reserved_keywordContext); + public reservedKeyword(): ReservedKeywordContext | null { + return this.getRuleContext(0, ReservedKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_collabel; + return PostgreSqlParser.RULE_columnLabel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCollabel) { - return visitor.visitCollabel(this); + if (visitor.visitColumnLabel) { + return visitor.visitColumnLabel(this); } else { return visitor.visitChildren(this); } @@ -107932,8 +101204,8 @@ export class IdentifierContext extends antlr.ParserRuleContext { public Identifier(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.Identifier, 0); } - public opt_uescape(): Opt_uescapeContext | null { - return this.getRuleContext(0, Opt_uescapeContext); + public optionalUescape(): OptionalUescapeContext | null { + return this.getRuleContext(0, OptionalUescapeContext); } public QuotedIdentifier(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.QuotedIdentifier, 0); @@ -107941,14 +101213,14 @@ export class IdentifierContext extends antlr.ParserRuleContext { public UnicodeQuotedIdentifier(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.UnicodeQuotedIdentifier, 0); } - public plsqlvariablename(): PlsqlvariablenameContext | null { - return this.getRuleContext(0, PlsqlvariablenameContext); + public plsqlVariableName(): PlsqlVariableNameContext | null { + return this.getRuleContext(0, PlsqlVariableNameContext); } - public plsqlidentifier(): PlsqlidentifierContext | null { - return this.getRuleContext(0, PlsqlidentifierContext); + public plsqlIdentifier(): PlsqlIdentifierContext | null { + return this.getRuleContext(0, PlsqlIdentifierContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_identifier; @@ -107963,7 +101235,7 @@ export class IdentifierContext extends antlr.ParserRuleContext { } -export class PlsqlidentifierContext extends antlr.ParserRuleContext { +export class PlsqlIdentifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -107971,11 +101243,11 @@ export class PlsqlidentifierContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.PLSQLIDENTIFIER, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsqlidentifier; + return PostgreSqlParser.RULE_plsqlIdentifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsqlidentifier) { - return visitor.visitPlsqlidentifier(this); + if (visitor.visitPlsqlIdentifier) { + return visitor.visitPlsqlIdentifier(this); } else { return visitor.visitChildren(this); } @@ -107983,7 +101255,7 @@ export class PlsqlidentifierContext extends antlr.ParserRuleContext { } -export class Unreserved_keywordContext extends antlr.ParserRuleContext { +export class UnreservedKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -108882,11 +102154,11 @@ export class Unreserved_keywordContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ZONE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_unreserved_keyword; + return PostgreSqlParser.RULE_unreservedKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitUnreserved_keyword) { - return visitor.visitUnreserved_keyword(this); + if (visitor.visitUnreservedKeyword) { + return visitor.visitUnreservedKeyword(this); } else { return visitor.visitChildren(this); } @@ -108894,7 +102166,7 @@ export class Unreserved_keywordContext extends antlr.ParserRuleContext { } -export class Col_name_keywordContext extends antlr.ParserRuleContext { +export class ColumnNameKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109051,15 +102323,15 @@ export class Col_name_keywordContext extends antlr.ParserRuleContext { public XMLTABLE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.XMLTABLE, 0); } - public builtin_function_name(): Builtin_function_nameContext | null { - return this.getRuleContext(0, Builtin_function_nameContext); + public builtinFunctionName(): BuiltinFunctionNameContext | null { + return this.getRuleContext(0, BuiltinFunctionNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_col_name_keyword; + return PostgreSqlParser.RULE_columnNameKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCol_name_keyword) { - return visitor.visitCol_name_keyword(this); + if (visitor.visitColumnNameKeyword) { + return visitor.visitColumnNameKeyword(this); } else { return visitor.visitChildren(this); } @@ -109067,7 +102339,7 @@ export class Col_name_keywordContext extends antlr.ParserRuleContext { } -export class Type_func_name_keywordContext extends antlr.ParserRuleContext { +export class TypeFunctionNameKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109135,11 +102407,11 @@ export class Type_func_name_keywordContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.VERBOSE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_type_func_name_keyword; + return PostgreSqlParser.RULE_typeFunctionNameKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitType_func_name_keyword) { - return visitor.visitType_func_name_keyword(this); + if (visitor.visitTypeFunctionNameKeyword) { + return visitor.visitTypeFunctionNameKeyword(this); } else { return visitor.visitChildren(this); } @@ -109147,7 +102419,7 @@ export class Type_func_name_keywordContext extends antlr.ParserRuleContext { } -export class Reserved_keywordContext extends antlr.ParserRuleContext { +export class ReservedKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109377,11 +102649,11 @@ export class Reserved_keywordContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.WITH, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_reserved_keyword; + return PostgreSqlParser.RULE_reservedKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitReserved_keyword) { - return visitor.visitReserved_keyword(this); + if (visitor.visitReservedKeyword) { + return visitor.visitReservedKeyword(this); } else { return visitor.visitChildren(this); } @@ -109389,7 +102661,7 @@ export class Reserved_keywordContext extends antlr.ParserRuleContext { } -export class Builtin_function_nameContext extends antlr.ParserRuleContext { +export class BuiltinFunctionNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109769,11 +103041,11 @@ export class Builtin_function_nameContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.TO_NUMBER, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_builtin_function_name; + return PostgreSqlParser.RULE_builtinFunctionName; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitBuiltin_function_name) { - return visitor.visitBuiltin_function_name(this); + if (visitor.visitBuiltinFunctionName) { + return visitor.visitBuiltinFunctionName(this); } else { return visitor.visitChildren(this); } @@ -109781,25 +103053,25 @@ export class Builtin_function_nameContext extends antlr.ParserRuleContext { } -export class Pl_functionContext extends antlr.ParserRuleContext { +export class PlsqlFunctionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public comp_options(): Comp_optionsContext { - return this.getRuleContext(0, Comp_optionsContext)!; + public computeOptions(): ComputeOptionsContext { + return this.getRuleContext(0, ComputeOptionsContext)!; } - public pl_block(): Pl_blockContext { - return this.getRuleContext(0, Pl_blockContext)!; + public plsqlBlock(): PlsqlBlockContext { + return this.getRuleContext(0, PlsqlBlockContext)!; } - public opt_semi(): Opt_semiContext { - return this.getRuleContext(0, Opt_semiContext)!; + public optionalSemi(): OptionalSemiContext { + return this.getRuleContext(0, OptionalSemiContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_pl_function; + return PostgreSqlParser.RULE_plsqlFunction; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPl_function) { - return visitor.visitPl_function(this); + if (visitor.visitPlsqlFunction) { + return visitor.visitPlsqlFunction(this); } else { return visitor.visitChildren(this); } @@ -109807,25 +103079,25 @@ export class Pl_functionContext extends antlr.ParserRuleContext { } -export class Comp_optionsContext extends antlr.ParserRuleContext { +export class ComputeOptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public comp_option(): Comp_optionContext[]; - public comp_option(i: number): Comp_optionContext | null; - public comp_option(i?: number): Comp_optionContext[] | Comp_optionContext | null { + public computeOption(): ComputeOptionContext[]; + public computeOption(i: number): ComputeOptionContext | null; + public computeOption(i?: number): ComputeOptionContext[] | ComputeOptionContext | null { if (i === undefined) { - return this.getRuleContexts(Comp_optionContext); + return this.getRuleContexts(ComputeOptionContext); } - return this.getRuleContext(i, Comp_optionContext); + return this.getRuleContext(i, ComputeOptionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_comp_options; + return PostgreSqlParser.RULE_computeOptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitComp_options) { - return visitor.visitComp_options(this); + if (visitor.visitComputeOptions) { + return visitor.visitComputeOptions(this); } else { return visitor.visitChildren(this); } @@ -109833,7 +103105,7 @@ export class Comp_optionsContext extends antlr.ParserRuleContext { } -export class Comp_optionContext extends antlr.ParserRuleContext { +export class ComputeOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109849,8 +103121,8 @@ export class Comp_optionContext extends antlr.ParserRuleContext { public PRINT_STRICT_PARAMS(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PRINT_STRICT_PARAMS, 0); } - public option_value(): Option_valueContext | null { - return this.getRuleContext(0, Option_valueContext); + public optionValue(): OptionValueContext | null { + return this.getRuleContext(0, OptionValueContext); } public VARIABLE_CONFLICT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.VARIABLE_CONFLICT, 0); @@ -109865,11 +103137,11 @@ export class Comp_optionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.USE_COLUMN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_comp_option; + return PostgreSqlParser.RULE_computeOption; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitComp_option) { - return visitor.visitComp_option(this); + if (visitor.visitComputeOption) { + return visitor.visitComputeOption(this); } else { return visitor.visitChildren(this); } @@ -109897,28 +103169,28 @@ export class SharpContext extends antlr.ParserRuleContext { } -export class Option_valueContext extends antlr.ParserRuleContext { +export class OptionValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } - public reserved_keyword(): Reserved_keywordContext | null { - return this.getRuleContext(0, Reserved_keywordContext); + public reservedKeyword(): ReservedKeywordContext | null { + return this.getRuleContext(0, ReservedKeywordContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } - public unreserved_keyword(): Unreserved_keywordContext | null { - return this.getRuleContext(0, Unreserved_keywordContext); + public unreservedKeyword(): UnreservedKeywordContext | null { + return this.getRuleContext(0, UnreservedKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_option_value; + return PostgreSqlParser.RULE_optionValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOption_value) { - return visitor.visitOption_value(this); + if (visitor.visitOptionValue) { + return visitor.visitOptionValue(this); } else { return visitor.visitChildren(this); } @@ -109926,7 +103198,7 @@ export class Option_valueContext extends antlr.ParserRuleContext { } -export class Opt_semiContext extends antlr.ParserRuleContext { +export class OptionalSemiContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -109934,11 +103206,11 @@ export class Opt_semiContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SEMI, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_semi; + return PostgreSqlParser.RULE_optionalSemi; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_semi) { - return visitor.visitOpt_semi(this); + if (visitor.visitOptionalSemi) { + return visitor.visitOptionalSemi(this); } else { return visitor.visitChildren(this); } @@ -109946,34 +103218,34 @@ export class Opt_semiContext extends antlr.ParserRuleContext { } -export class Pl_blockContext extends antlr.ParserRuleContext { +export class PlsqlBlockContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_sect(): Decl_sectContext { - return this.getRuleContext(0, Decl_sectContext)!; + public declareSection(): DeclareSectionContext { + return this.getRuleContext(0, DeclareSectionContext)!; } public BEGIN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.BEGIN_P, 0)!; } - public proc_sect(): Proc_sectContext { - return this.getRuleContext(0, Proc_sectContext)!; + public procedureSection(): ProcedureSectionContext { + return this.getRuleContext(0, ProcedureSectionContext)!; } - public exception_sect(): Exception_sectContext { - return this.getRuleContext(0, Exception_sectContext)!; + public exceptionSection(): ExceptionSectionContext { + return this.getRuleContext(0, ExceptionSectionContext)!; } public END_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.END_P, 0)!; } - public opt_label(): Opt_labelContext { - return this.getRuleContext(0, Opt_labelContext)!; + public optionalLabel(): OptionalLabelContext { + return this.getRuleContext(0, OptionalLabelContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_pl_block; + return PostgreSqlParser.RULE_plsqlBlock; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPl_block) { - return visitor.visitPl_block(this); + if (visitor.visitPlsqlBlock) { + return visitor.visitPlsqlBlock(this); } else { return visitor.visitChildren(this); } @@ -109981,25 +103253,25 @@ export class Pl_blockContext extends antlr.ParserRuleContext { } -export class Decl_sectContext extends antlr.ParserRuleContext { +export class DeclareSectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_block_label(): Opt_block_labelContext { - return this.getRuleContext(0, Opt_block_labelContext)!; + public optionalBlockLabel(): OptionalBlockLabelContext { + return this.getRuleContext(0, OptionalBlockLabelContext)!; } - public decl_start(): Decl_startContext | null { - return this.getRuleContext(0, Decl_startContext); + public declareStart(): DeclareStartContext | null { + return this.getRuleContext(0, DeclareStartContext); } - public decl_stmts(): Decl_stmtsContext | null { - return this.getRuleContext(0, Decl_stmtsContext); + public declareStatements(): DeclareStatementsContext | null { + return this.getRuleContext(0, DeclareStatementsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_sect; + return PostgreSqlParser.RULE_declareSection; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_sect) { - return visitor.visitDecl_sect(this); + if (visitor.visitDeclareSection) { + return visitor.visitDeclareSection(this); } else { return visitor.visitChildren(this); } @@ -110007,7 +103279,7 @@ export class Decl_sectContext extends antlr.ParserRuleContext { } -export class Decl_startContext extends antlr.ParserRuleContext { +export class DeclareStartContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110015,11 +103287,11 @@ export class Decl_startContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DECLARE, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_start; + return PostgreSqlParser.RULE_declareStart; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_start) { - return visitor.visitDecl_start(this); + if (visitor.visitDeclareStart) { + return visitor.visitDeclareStart(this); } else { return visitor.visitChildren(this); } @@ -110027,25 +103299,25 @@ export class Decl_startContext extends antlr.ParserRuleContext { } -export class Decl_stmtsContext extends antlr.ParserRuleContext { +export class DeclareStatementsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_stmt(): Decl_stmtContext[]; - public decl_stmt(i: number): Decl_stmtContext | null; - public decl_stmt(i?: number): Decl_stmtContext[] | Decl_stmtContext | null { + public declareStatement(): DeclareStatementContext[]; + public declareStatement(i: number): DeclareStatementContext | null; + public declareStatement(i?: number): DeclareStatementContext[] | DeclareStatementContext | null { if (i === undefined) { - return this.getRuleContexts(Decl_stmtContext); + return this.getRuleContexts(DeclareStatementContext); } - return this.getRuleContext(i, Decl_stmtContext); + return this.getRuleContext(i, DeclareStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_stmts; + return PostgreSqlParser.RULE_declareStatements; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_stmts) { - return visitor.visitDecl_stmts(this); + if (visitor.visitDeclareStatements) { + return visitor.visitDeclareStatements(this); } else { return visitor.visitChildren(this); } @@ -110053,25 +103325,25 @@ export class Decl_stmtsContext extends antlr.ParserRuleContext { } -export class Label_declContext extends antlr.ParserRuleContext { +export class LabelDeclarationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public LESS_LESS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.LESS_LESS, 0)!; } - public any_identifier(): Any_identifierContext { - return this.getRuleContext(0, Any_identifierContext)!; + public anyIdentifier(): AnyIdentifierContext { + return this.getRuleContext(0, AnyIdentifierContext)!; } public GREATER_GREATER(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.GREATER_GREATER, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_label_decl; + return PostgreSqlParser.RULE_labelDeclaration; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLabel_decl) { - return visitor.visitLabel_decl(this); + if (visitor.visitLabelDeclaration) { + return visitor.visitLabelDeclaration(this); } else { return visitor.visitChildren(this); } @@ -110079,25 +103351,25 @@ export class Label_declContext extends antlr.ParserRuleContext { } -export class Decl_stmtContext extends antlr.ParserRuleContext { +export class DeclareStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_statement(): Decl_statementContext | null { - return this.getRuleContext(0, Decl_statementContext); + public declareStatement2(): DeclareStatement2Context | null { + return this.getRuleContext(0, DeclareStatement2Context); } public DECLARE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DECLARE, 0); } - public label_decl(): Label_declContext | null { - return this.getRuleContext(0, Label_declContext); + public labelDeclaration(): LabelDeclarationContext | null { + return this.getRuleContext(0, LabelDeclarationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_stmt; + return PostgreSqlParser.RULE_declareStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_stmt) { - return visitor.visitDecl_stmt(this); + if (visitor.visitDeclareStatement) { + return visitor.visitDeclareStatement(this); } else { return visitor.visitChildren(this); } @@ -110105,12 +103377,12 @@ export class Decl_stmtContext extends antlr.ParserRuleContext { } -export class Decl_statementContext extends antlr.ParserRuleContext { +export class DeclareStatement2Context extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_varname(): Decl_varnameContext { - return this.getRuleContext(0, Decl_varnameContext)!; + public declareVarname(): DeclareVarnameContext { + return this.getRuleContext(0, DeclareVarnameContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; @@ -110121,45 +103393,45 @@ export class Decl_statementContext extends antlr.ParserRuleContext { public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public decl_aliasitem(): Decl_aliasitemContext | null { - return this.getRuleContext(0, Decl_aliasitemContext); + public declareAliasItem(): DeclareAliasItemContext | null { + return this.getRuleContext(0, DeclareAliasItemContext); } - public decl_const(): Decl_constContext | null { - return this.getRuleContext(0, Decl_constContext); + public declareConst(): DeclareConstContext | null { + return this.getRuleContext(0, DeclareConstContext); } - public decl_datatype(): Decl_datatypeContext | null { - return this.getRuleContext(0, Decl_datatypeContext); + public declareDatatype(): DeclareDatatypeContext | null { + return this.getRuleContext(0, DeclareDatatypeContext); } - public decl_collate(): Decl_collateContext | null { - return this.getRuleContext(0, Decl_collateContext); + public declareCollate(): DeclareCollateContext | null { + return this.getRuleContext(0, DeclareCollateContext); } - public decl_notnull(): Decl_notnullContext | null { - return this.getRuleContext(0, Decl_notnullContext); + public declareNotNull(): DeclareNotNullContext | null { + return this.getRuleContext(0, DeclareNotNullContext); } - public decl_defval(): Decl_defvalContext | null { - return this.getRuleContext(0, Decl_defvalContext); + public declareDefaultValue(): DeclareDefaultValueContext | null { + return this.getRuleContext(0, DeclareDefaultValueContext); } - public opt_scrollable(): Opt_scrollableContext | null { - return this.getRuleContext(0, Opt_scrollableContext); + public optionalScrollable(): OptionalScrollableContext | null { + return this.getRuleContext(0, OptionalScrollableContext); } public CURSOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CURSOR, 0); } - public decl_cursor_args(): Decl_cursor_argsContext | null { - return this.getRuleContext(0, Decl_cursor_argsContext); + public declareCursorArgs(): DeclareCursorArgsContext | null { + return this.getRuleContext(0, DeclareCursorArgsContext); } - public decl_is_for(): Decl_is_forContext | null { - return this.getRuleContext(0, Decl_is_forContext); + public declareIsOrFor(): DeclareIsOrForContext | null { + return this.getRuleContext(0, DeclareIsOrForContext); } - public decl_cursor_query(): Decl_cursor_queryContext | null { - return this.getRuleContext(0, Decl_cursor_queryContext); + public declareCursorQuery(): DeclareCursorQueryContext | null { + return this.getRuleContext(0, DeclareCursorQueryContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_statement; + return PostgreSqlParser.RULE_declareStatement2; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_statement) { - return visitor.visitDecl_statement(this); + if (visitor.visitDeclareStatement2) { + return visitor.visitDeclareStatement2(this); } else { return visitor.visitChildren(this); } @@ -110167,7 +103439,7 @@ export class Decl_statementContext extends antlr.ParserRuleContext { } -export class Opt_scrollableContext extends antlr.ParserRuleContext { +export class OptionalScrollableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110178,11 +103450,11 @@ export class Opt_scrollableContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SCROLL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_scrollable; + return PostgreSqlParser.RULE_optionalScrollable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_scrollable) { - return visitor.visitOpt_scrollable(this); + if (visitor.visitOptionalScrollable) { + return visitor.visitOptionalScrollable(this); } else { return visitor.visitChildren(this); } @@ -110190,19 +103462,19 @@ export class Opt_scrollableContext extends antlr.ParserRuleContext { } -export class Decl_cursor_queryContext extends antlr.ParserRuleContext { +export class DeclareCursorQueryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectstmt(): SelectstmtContext { - return this.getRuleContext(0, SelectstmtContext)!; + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_cursor_query; + return PostgreSqlParser.RULE_declareCursorQuery; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_cursor_query) { - return visitor.visitDecl_cursor_query(this); + if (visitor.visitDeclareCursorQuery) { + return visitor.visitDeclareCursorQuery(this); } else { return visitor.visitChildren(this); } @@ -110210,25 +103482,25 @@ export class Decl_cursor_queryContext extends antlr.ParserRuleContext { } -export class Decl_cursor_argsContext extends antlr.ParserRuleContext { +export class DeclareCursorArgsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public decl_cursor_arglist(): Decl_cursor_arglistContext | null { - return this.getRuleContext(0, Decl_cursor_arglistContext); + public declareCursorArglist(): DeclareCursorArglistContext | null { + return this.getRuleContext(0, DeclareCursorArglistContext); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_cursor_args; + return PostgreSqlParser.RULE_declareCursorArgs; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_cursor_args) { - return visitor.visitDecl_cursor_args(this); + if (visitor.visitDeclareCursorArgs) { + return visitor.visitDeclareCursorArgs(this); } else { return visitor.visitChildren(this); } @@ -110236,18 +103508,18 @@ export class Decl_cursor_argsContext extends antlr.ParserRuleContext { } -export class Decl_cursor_arglistContext extends antlr.ParserRuleContext { +export class DeclareCursorArglistContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_cursor_arg(): Decl_cursor_argContext[]; - public decl_cursor_arg(i: number): Decl_cursor_argContext | null; - public decl_cursor_arg(i?: number): Decl_cursor_argContext[] | Decl_cursor_argContext | null { + public declareCursorArg(): DeclareCursorArgContext[]; + public declareCursorArg(i: number): DeclareCursorArgContext | null; + public declareCursorArg(i?: number): DeclareCursorArgContext[] | DeclareCursorArgContext | null { if (i === undefined) { - return this.getRuleContexts(Decl_cursor_argContext); + return this.getRuleContexts(DeclareCursorArgContext); } - return this.getRuleContext(i, Decl_cursor_argContext); + return this.getRuleContext(i, DeclareCursorArgContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -110259,11 +103531,11 @@ export class Decl_cursor_arglistContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_cursor_arglist; + return PostgreSqlParser.RULE_declareCursorArglist; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_cursor_arglist) { - return visitor.visitDecl_cursor_arglist(this); + if (visitor.visitDeclareCursorArglist) { + return visitor.visitDeclareCursorArglist(this); } else { return visitor.visitChildren(this); } @@ -110271,22 +103543,22 @@ export class Decl_cursor_arglistContext extends antlr.ParserRuleContext { } -export class Decl_cursor_argContext extends antlr.ParserRuleContext { +export class DeclareCursorArgContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_varname(): Decl_varnameContext { - return this.getRuleContext(0, Decl_varnameContext)!; + public declareVarname(): DeclareVarnameContext { + return this.getRuleContext(0, DeclareVarnameContext)!; } - public decl_datatype(): Decl_datatypeContext { - return this.getRuleContext(0, Decl_datatypeContext)!; + public declareDatatype(): DeclareDatatypeContext { + return this.getRuleContext(0, DeclareDatatypeContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_cursor_arg; + return PostgreSqlParser.RULE_declareCursorArg; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_cursor_arg) { - return visitor.visitDecl_cursor_arg(this); + if (visitor.visitDeclareCursorArg) { + return visitor.visitDeclareCursorArg(this); } else { return visitor.visitChildren(this); } @@ -110294,7 +103566,7 @@ export class Decl_cursor_argContext extends antlr.ParserRuleContext { } -export class Decl_is_forContext extends antlr.ParserRuleContext { +export class DeclareIsOrForContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110305,11 +103577,11 @@ export class Decl_is_forContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.FOR, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_is_for; + return PostgreSqlParser.RULE_declareIsOrFor; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_is_for) { - return visitor.visitDecl_is_for(this); + if (visitor.visitDeclareIsOrFor) { + return visitor.visitDeclareIsOrFor(this); } else { return visitor.visitChildren(this); } @@ -110317,22 +103589,22 @@ export class Decl_is_forContext extends antlr.ParserRuleContext { } -export class Decl_aliasitemContext extends antlr.ParserRuleContext { +export class DeclareAliasItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public PARAM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARAM, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_aliasitem; + return PostgreSqlParser.RULE_declareAliasItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_aliasitem) { - return visitor.visitDecl_aliasitem(this); + if (visitor.visitDeclareAliasItem) { + return visitor.visitDeclareAliasItem(this); } else { return visitor.visitChildren(this); } @@ -110340,19 +103612,19 @@ export class Decl_aliasitemContext extends antlr.ParserRuleContext { } -export class Decl_varnameContext extends antlr.ParserRuleContext { +export class DeclareVarnameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_identifier(): Any_identifierContext { - return this.getRuleContext(0, Any_identifierContext)!; + public anyIdentifier(): AnyIdentifierContext { + return this.getRuleContext(0, AnyIdentifierContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_varname; + return PostgreSqlParser.RULE_declareVarname; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_varname) { - return visitor.visitDecl_varname(this); + if (visitor.visitDeclareVarname) { + return visitor.visitDeclareVarname(this); } else { return visitor.visitChildren(this); } @@ -110360,7 +103632,7 @@ export class Decl_varnameContext extends antlr.ParserRuleContext { } -export class Decl_constContext extends antlr.ParserRuleContext { +export class DeclareConstContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110368,11 +103640,11 @@ export class Decl_constContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONSTANT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_const; + return PostgreSqlParser.RULE_declareConst; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_const) { - return visitor.visitDecl_const(this); + if (visitor.visitDeclareConst) { + return visitor.visitDeclareConst(this); } else { return visitor.visitChildren(this); } @@ -110380,19 +103652,19 @@ export class Decl_constContext extends antlr.ParserRuleContext { } -export class Decl_datatypeContext extends antlr.ParserRuleContext { +export class DeclareDatatypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public typename(): TypenameContext { - return this.getRuleContext(0, TypenameContext)!; + public typeName(): TypeNameContext { + return this.getRuleContext(0, TypeNameContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_datatype; + return PostgreSqlParser.RULE_declareDatatype; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_datatype) { - return visitor.visitDecl_datatype(this); + if (visitor.visitDeclareDatatype) { + return visitor.visitDeclareDatatype(this); } else { return visitor.visitChildren(this); } @@ -110400,22 +103672,22 @@ export class Decl_datatypeContext extends antlr.ParserRuleContext { } -export class Decl_collateContext extends antlr.ParserRuleContext { +export class DeclareCollateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COLLATE, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_collate; + return PostgreSqlParser.RULE_declareCollate; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_collate) { - return visitor.visitDecl_collate(this); + if (visitor.visitDeclareCollate) { + return visitor.visitDeclareCollate(this); } else { return visitor.visitChildren(this); } @@ -110423,7 +103695,7 @@ export class Decl_collateContext extends antlr.ParserRuleContext { } -export class Decl_notnullContext extends antlr.ParserRuleContext { +export class DeclareNotNullContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110434,11 +103706,11 @@ export class Decl_notnullContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.NULL_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_notnull; + return PostgreSqlParser.RULE_declareNotNull; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_notnull) { - return visitor.visitDecl_notnull(this); + if (visitor.visitDeclareNotNull) { + return visitor.visitDeclareNotNull(this); } else { return visitor.visitChildren(this); } @@ -110446,22 +103718,22 @@ export class Decl_notnullContext extends antlr.ParserRuleContext { } -export class Decl_defvalContext extends antlr.ParserRuleContext { +export class DeclareDefaultValueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public decl_defkey(): Decl_defkeyContext | null { - return this.getRuleContext(0, Decl_defkeyContext); + public declareDefaultKey(): DeclareDefaultKeyContext | null { + return this.getRuleContext(0, DeclareDefaultKeyContext); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_defval; + return PostgreSqlParser.RULE_declareDefaultValue; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_defval) { - return visitor.visitDecl_defval(this); + if (visitor.visitDeclareDefaultValue) { + return visitor.visitDeclareDefaultValue(this); } else { return visitor.visitChildren(this); } @@ -110469,22 +103741,22 @@ export class Decl_defvalContext extends antlr.ParserRuleContext { } -export class Decl_defkeyContext extends antlr.ParserRuleContext { +export class DeclareDefaultKeyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public assign_operator(): Assign_operatorContext | null { - return this.getRuleContext(0, Assign_operatorContext); + public assignOperator(): AssignOperatorContext | null { + return this.getRuleContext(0, AssignOperatorContext); } public DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DEFAULT, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_decl_defkey; + return PostgreSqlParser.RULE_declareDefaultKey; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitDecl_defkey) { - return visitor.visitDecl_defkey(this); + if (visitor.visitDeclareDefaultKey) { + return visitor.visitDeclareDefaultKey(this); } else { return visitor.visitChildren(this); } @@ -110492,7 +103764,7 @@ export class Decl_defkeyContext extends antlr.ParserRuleContext { } -export class Assign_operatorContext extends antlr.ParserRuleContext { +export class AssignOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110503,11 +103775,11 @@ export class Assign_operatorContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.COLON_EQUALS, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_assign_operator; + return PostgreSqlParser.RULE_assignOperator; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAssign_operator) { - return visitor.visitAssign_operator(this); + if (visitor.visitAssignOperator) { + return visitor.visitAssignOperator(this); } else { return visitor.visitChildren(this); } @@ -110515,25 +103787,25 @@ export class Assign_operatorContext extends antlr.ParserRuleContext { } -export class Proc_sectContext extends antlr.ParserRuleContext { +export class ProcedureSectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public proc_stmt(): Proc_stmtContext[]; - public proc_stmt(i: number): Proc_stmtContext | null; - public proc_stmt(i?: number): Proc_stmtContext[] | Proc_stmtContext | null { + public proceduralStatement(): ProceduralStatementContext[]; + public proceduralStatement(i: number): ProceduralStatementContext | null; + public proceduralStatement(i?: number): ProceduralStatementContext[] | ProceduralStatementContext | null { if (i === undefined) { - return this.getRuleContexts(Proc_stmtContext); + return this.getRuleContexts(ProceduralStatementContext); } - return this.getRuleContext(i, Proc_stmtContext); + return this.getRuleContext(i, ProceduralStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_sect; + return PostgreSqlParser.RULE_procedureSection; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_sect) { - return visitor.visitProc_sect(this); + if (visitor.visitProcedureSection) { + return visitor.visitProcedureSection(this); } else { return visitor.visitChildren(this); } @@ -110541,94 +103813,94 @@ export class Proc_sectContext extends antlr.ParserRuleContext { } -export class Proc_stmtContext extends antlr.ParserRuleContext { +export class ProceduralStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public pl_block(): Pl_blockContext | null { - return this.getRuleContext(0, Pl_blockContext); + public plsqlBlock(): PlsqlBlockContext | null { + return this.getRuleContext(0, PlsqlBlockContext); } public SEMI(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEMI, 0); } - public stmt_return(): Stmt_returnContext | null { - return this.getRuleContext(0, Stmt_returnContext); + public statementReturn(): StatementReturnContext | null { + return this.getRuleContext(0, StatementReturnContext); } - public stmt_raise(): Stmt_raiseContext | null { - return this.getRuleContext(0, Stmt_raiseContext); + public statementRaise(): StatementRaiseContext | null { + return this.getRuleContext(0, StatementRaiseContext); } - public stmt_assign(): Stmt_assignContext | null { - return this.getRuleContext(0, Stmt_assignContext); + public statementAssign(): StatementAssignContext | null { + return this.getRuleContext(0, StatementAssignContext); } - public stmt_if(): Stmt_ifContext | null { - return this.getRuleContext(0, Stmt_ifContext); + public statementIf(): StatementIfContext | null { + return this.getRuleContext(0, StatementIfContext); } - public stmt_case(): Stmt_caseContext | null { - return this.getRuleContext(0, Stmt_caseContext); + public statementCase(): StatementCaseContext | null { + return this.getRuleContext(0, StatementCaseContext); } - public stmt_loop(): Stmt_loopContext | null { - return this.getRuleContext(0, Stmt_loopContext); + public statementLoop(): StatementLoopContext | null { + return this.getRuleContext(0, StatementLoopContext); } - public stmt_while(): Stmt_whileContext | null { - return this.getRuleContext(0, Stmt_whileContext); + public statementWhile(): StatementWhileContext | null { + return this.getRuleContext(0, StatementWhileContext); } - public stmt_for(): Stmt_forContext | null { - return this.getRuleContext(0, Stmt_forContext); + public statementFor(): StatementForContext | null { + return this.getRuleContext(0, StatementForContext); } - public stmt_foreach_a(): Stmt_foreach_aContext | null { - return this.getRuleContext(0, Stmt_foreach_aContext); + public statementForeachA(): StatementForeachAContext | null { + return this.getRuleContext(0, StatementForeachAContext); } - public stmt_exit(): Stmt_exitContext | null { - return this.getRuleContext(0, Stmt_exitContext); + public statementExit(): StatementExitContext | null { + return this.getRuleContext(0, StatementExitContext); } - public stmt_assert(): Stmt_assertContext | null { - return this.getRuleContext(0, Stmt_assertContext); + public statementAssert(): StatementAssertContext | null { + return this.getRuleContext(0, StatementAssertContext); } - public stmt_execsql(): Stmt_execsqlContext | null { - return this.getRuleContext(0, Stmt_execsqlContext); + public statementExecSql(): StatementExecSqlContext | null { + return this.getRuleContext(0, StatementExecSqlContext); } - public stmt_dynexecute(): Stmt_dynexecuteContext | null { - return this.getRuleContext(0, Stmt_dynexecuteContext); + public statementDynExecute(): StatementDynExecuteContext | null { + return this.getRuleContext(0, StatementDynExecuteContext); } - public stmt_perform(): Stmt_performContext | null { - return this.getRuleContext(0, Stmt_performContext); + public statementPerform(): StatementPerformContext | null { + return this.getRuleContext(0, StatementPerformContext); } - public stmt_call(): Stmt_callContext | null { - return this.getRuleContext(0, Stmt_callContext); + public statementCall(): StatementCallContext | null { + return this.getRuleContext(0, StatementCallContext); } - public stmt_getdiag(): Stmt_getdiagContext | null { - return this.getRuleContext(0, Stmt_getdiagContext); + public statementGetDiagram(): StatementGetDiagramContext | null { + return this.getRuleContext(0, StatementGetDiagramContext); } - public stmt_open(): Stmt_openContext | null { - return this.getRuleContext(0, Stmt_openContext); + public statementOpen(): StatementOpenContext | null { + return this.getRuleContext(0, StatementOpenContext); } - public stmt_fetch(): Stmt_fetchContext | null { - return this.getRuleContext(0, Stmt_fetchContext); + public statementFetch(): StatementFetchContext | null { + return this.getRuleContext(0, StatementFetchContext); } - public stmt_move(): Stmt_moveContext | null { - return this.getRuleContext(0, Stmt_moveContext); + public statementMove(): StatementMoveContext | null { + return this.getRuleContext(0, StatementMoveContext); } - public stmt_close(): Stmt_closeContext | null { - return this.getRuleContext(0, Stmt_closeContext); + public statementClose(): StatementCloseContext | null { + return this.getRuleContext(0, StatementCloseContext); } - public stmt_null(): Stmt_nullContext | null { - return this.getRuleContext(0, Stmt_nullContext); + public statementNull(): StatementNullContext | null { + return this.getRuleContext(0, StatementNullContext); } - public stmt_commit(): Stmt_commitContext | null { - return this.getRuleContext(0, Stmt_commitContext); + public statementCommit(): StatementCommitContext | null { + return this.getRuleContext(0, StatementCommitContext); } - public stmt_rollback(): Stmt_rollbackContext | null { - return this.getRuleContext(0, Stmt_rollbackContext); + public statementRollback(): StatementRollbackContext | null { + return this.getRuleContext(0, StatementRollbackContext); } - public stmt_set(): Stmt_setContext | null { - return this.getRuleContext(0, Stmt_setContext); + public statementSet(): StatementSetContext | null { + return this.getRuleContext(0, StatementSetContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_stmt; + return PostgreSqlParser.RULE_proceduralStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_stmt) { - return visitor.visitProc_stmt(this); + if (visitor.visitProceduralStatement) { + return visitor.visitProceduralStatement(this); } else { return visitor.visitChildren(this); } @@ -110636,25 +103908,25 @@ export class Proc_stmtContext extends antlr.ParserRuleContext { } -export class Stmt_performContext extends antlr.ParserRuleContext { +export class StatementPerformContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public PERFORM(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.PERFORM, 0)!; } - public expr_until_semi(): Expr_until_semiContext { - return this.getRuleContext(0, Expr_until_semiContext)!; + public expressionUntilSemi(): ExpressionUntilSemiContext { + return this.getRuleContext(0, ExpressionUntilSemiContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_perform; + return PostgreSqlParser.RULE_statementPerform; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_perform) { - return visitor.visitStmt_perform(this); + if (visitor.visitStatementPerform) { + return visitor.visitStatementPerform(this); } else { return visitor.visitChildren(this); } @@ -110662,21 +103934,21 @@ export class Stmt_performContext extends antlr.ParserRuleContext { } -export class Stmt_callContext extends antlr.ParserRuleContext { +export class StatementCallContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CALL(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CALL, 0); } - public any_identifier(): Any_identifierContext { - return this.getRuleContext(0, Any_identifierContext)!; + public anyIdentifier(): AnyIdentifierContext { + return this.getRuleContext(0, AnyIdentifierContext)!; } public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0)!; } - public opt_expr_list(): Opt_expr_listContext { - return this.getRuleContext(0, Opt_expr_listContext)!; + public optionalExpressionList(): OptionalExpressionListContext { + return this.getRuleContext(0, OptionalExpressionListContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0)!; @@ -110688,11 +103960,11 @@ export class Stmt_callContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.DO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_call; + return PostgreSqlParser.RULE_statementCall; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_call) { - return visitor.visitStmt_call(this); + if (visitor.visitStatementCall) { + return visitor.visitStatementCall(this); } else { return visitor.visitChildren(this); } @@ -110700,19 +103972,19 @@ export class Stmt_callContext extends antlr.ParserRuleContext { } -export class Opt_expr_listContext extends antlr.ParserRuleContext { +export class OptionalExpressionListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_expr_list; + return PostgreSqlParser.RULE_optionalExpressionList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_expr_list) { - return visitor.visitOpt_expr_list(this); + if (visitor.visitOptionalExpressionList) { + return visitor.visitOptionalExpressionList(this); } else { return visitor.visitChildren(this); } @@ -110720,28 +103992,28 @@ export class Opt_expr_listContext extends antlr.ParserRuleContext { } -export class Stmt_assignContext extends antlr.ParserRuleContext { +export class StatementAssignContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public assign_var(): Assign_varContext { - return this.getRuleContext(0, Assign_varContext)!; + public assignVariable(): AssignVariableContext { + return this.getRuleContext(0, AssignVariableContext)!; } - public assign_operator(): Assign_operatorContext { - return this.getRuleContext(0, Assign_operatorContext)!; + public assignOperator(): AssignOperatorContext { + return this.getRuleContext(0, AssignOperatorContext)!; } - public sql_expression(): Sql_expressionContext { - return this.getRuleContext(0, Sql_expressionContext)!; + public sqlExpression(): SqlExpressionContext { + return this.getRuleContext(0, SqlExpressionContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_assign; + return PostgreSqlParser.RULE_statementAssign; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_assign) { - return visitor.visitStmt_assign(this); + if (visitor.visitStatementAssign) { + return visitor.visitStatementAssign(this); } else { return visitor.visitChildren(this); } @@ -110749,31 +104021,31 @@ export class Stmt_assignContext extends antlr.ParserRuleContext { } -export class Stmt_getdiagContext extends antlr.ParserRuleContext { +export class StatementGetDiagramContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public GET(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.GET, 0)!; } - public getdiag_area_opt(): Getdiag_area_optContext { - return this.getRuleContext(0, Getdiag_area_optContext)!; + public optionalGetDiagramArea(): OptionalGetDiagramAreaContext { + return this.getRuleContext(0, OptionalGetDiagramAreaContext)!; } public DIAGNOSTICS(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.DIAGNOSTICS, 0)!; } - public getdiag_list(): Getdiag_listContext { - return this.getRuleContext(0, Getdiag_listContext)!; + public getDiagramList(): GetDiagramListContext { + return this.getRuleContext(0, GetDiagramListContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_getdiag; + return PostgreSqlParser.RULE_statementGetDiagram; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_getdiag) { - return visitor.visitStmt_getdiag(this); + if (visitor.visitStatementGetDiagram) { + return visitor.visitStatementGetDiagram(this); } else { return visitor.visitChildren(this); } @@ -110781,7 +104053,7 @@ export class Stmt_getdiagContext extends antlr.ParserRuleContext { } -export class Getdiag_area_optContext extends antlr.ParserRuleContext { +export class OptionalGetDiagramAreaContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110792,11 +104064,11 @@ export class Getdiag_area_optContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.STACKED, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_getdiag_area_opt; + return PostgreSqlParser.RULE_optionalGetDiagramArea; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGetdiag_area_opt) { - return visitor.visitGetdiag_area_opt(this); + if (visitor.visitOptionalGetDiagramArea) { + return visitor.visitOptionalGetDiagramArea(this); } else { return visitor.visitChildren(this); } @@ -110804,18 +104076,18 @@ export class Getdiag_area_optContext extends antlr.ParserRuleContext { } -export class Getdiag_listContext extends antlr.ParserRuleContext { +export class GetDiagramListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public getdiag_list_item(): Getdiag_list_itemContext[]; - public getdiag_list_item(i: number): Getdiag_list_itemContext | null; - public getdiag_list_item(i?: number): Getdiag_list_itemContext[] | Getdiag_list_itemContext | null { + public getDiagramListItem(): GetDiagramListItemContext[]; + public getDiagramListItem(i: number): GetDiagramListItemContext | null; + public getDiagramListItem(i?: number): GetDiagramListItemContext[] | GetDiagramListItemContext | null { if (i === undefined) { - return this.getRuleContexts(Getdiag_list_itemContext); + return this.getRuleContexts(GetDiagramListItemContext); } - return this.getRuleContext(i, Getdiag_list_itemContext); + return this.getRuleContext(i, GetDiagramListItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -110827,11 +104099,11 @@ export class Getdiag_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_getdiag_list; + return PostgreSqlParser.RULE_getDiagramList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGetdiag_list) { - return visitor.visitGetdiag_list(this); + if (visitor.visitGetDiagramList) { + return visitor.visitGetDiagramList(this); } else { return visitor.visitChildren(this); } @@ -110839,25 +104111,25 @@ export class Getdiag_listContext extends antlr.ParserRuleContext { } -export class Getdiag_list_itemContext extends antlr.ParserRuleContext { +export class GetDiagramListItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public getdiag_target(): Getdiag_targetContext { - return this.getRuleContext(0, Getdiag_targetContext)!; + public getDiagramTarget(): GetDiagramTargetContext { + return this.getRuleContext(0, GetDiagramTargetContext)!; } - public assign_operator(): Assign_operatorContext { - return this.getRuleContext(0, Assign_operatorContext)!; + public assignOperator(): AssignOperatorContext { + return this.getRuleContext(0, AssignOperatorContext)!; } - public getdiag_item(): Getdiag_itemContext { - return this.getRuleContext(0, Getdiag_itemContext)!; + public getDiagramItem(): GetDiagramItemContext { + return this.getRuleContext(0, GetDiagramItemContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_getdiag_list_item; + return PostgreSqlParser.RULE_getDiagramListItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGetdiag_list_item) { - return visitor.visitGetdiag_list_item(this); + if (visitor.visitGetDiagramListItem) { + return visitor.visitGetDiagramListItem(this); } else { return visitor.visitChildren(this); } @@ -110865,19 +104137,19 @@ export class Getdiag_list_itemContext extends antlr.ParserRuleContext { } -export class Getdiag_itemContext extends antlr.ParserRuleContext { +export class GetDiagramItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext { - return this.getRuleContext(0, ColidContext)!; + public columnId(): ColumnIdContext { + return this.getRuleContext(0, ColumnIdContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_getdiag_item; + return PostgreSqlParser.RULE_getDiagramItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGetdiag_item) { - return visitor.visitGetdiag_item(this); + if (visitor.visitGetDiagramItem) { + return visitor.visitGetDiagramItem(this); } else { return visitor.visitChildren(this); } @@ -110885,19 +104157,19 @@ export class Getdiag_itemContext extends antlr.ParserRuleContext { } -export class Getdiag_targetContext extends antlr.ParserRuleContext { +export class GetDiagramTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public assign_var(): Assign_varContext { - return this.getRuleContext(0, Assign_varContext)!; + public assignVariable(): AssignVariableContext { + return this.getRuleContext(0, AssignVariableContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_getdiag_target; + return PostgreSqlParser.RULE_getDiagramTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitGetdiag_target) { - return visitor.visitGetdiag_target(this); + if (visitor.visitGetDiagramTarget) { + return visitor.visitGetDiagramTarget(this); } else { return visitor.visitChildren(this); } @@ -110905,12 +104177,12 @@ export class Getdiag_targetContext extends antlr.ParserRuleContext { } -export class Assign_varContext extends antlr.ParserRuleContext { +export class AssignVariableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public PARAM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARAM, 0); @@ -110924,14 +104196,14 @@ export class Assign_varContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OPEN_BRACKET, i); } } - public expr_until_rightbracket(): Expr_until_rightbracketContext[]; - public expr_until_rightbracket(i: number): Expr_until_rightbracketContext | null; - public expr_until_rightbracket(i?: number): Expr_until_rightbracketContext[] | Expr_until_rightbracketContext | null { + public expressionUntilRightbracket(): ExpressionUntilRightbracketContext[]; + public expressionUntilRightbracket(i: number): ExpressionUntilRightbracketContext | null; + public expressionUntilRightbracket(i?: number): ExpressionUntilRightbracketContext[] | ExpressionUntilRightbracketContext | null { if (i === undefined) { - return this.getRuleContexts(Expr_until_rightbracketContext); + return this.getRuleContexts(ExpressionUntilRightbracketContext); } - return this.getRuleContext(i, Expr_until_rightbracketContext); + return this.getRuleContext(i, ExpressionUntilRightbracketContext); } public CLOSE_BRACKET(): antlr.TerminalNode[]; public CLOSE_BRACKET(i: number): antlr.TerminalNode | null; @@ -110943,11 +104215,11 @@ export class Assign_varContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_assign_var; + return PostgreSqlParser.RULE_assignVariable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAssign_var) { - return visitor.visitAssign_var(this); + if (visitor.visitAssignVariable) { + return visitor.visitAssignVariable(this); } else { return visitor.visitChildren(this); } @@ -110955,7 +104227,7 @@ export class Assign_varContext extends antlr.ParserRuleContext { } -export class Stmt_ifContext extends antlr.ParserRuleContext { +export class StatementIfContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -110968,20 +104240,20 @@ export class Stmt_ifContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.IF_P, i); } } - public expr_until_then(): Expr_until_thenContext { - return this.getRuleContext(0, Expr_until_thenContext)!; + public expressionUntilThen(): ExpressionUntilThenContext { + return this.getRuleContext(0, ExpressionUntilThenContext)!; } public THEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.THEN, 0)!; } - public proc_sect(): Proc_sectContext { - return this.getRuleContext(0, Proc_sectContext)!; + public procedureSection(): ProcedureSectionContext { + return this.getRuleContext(0, ProcedureSectionContext)!; } - public stmt_elsifs(): Stmt_elsifsContext { - return this.getRuleContext(0, Stmt_elsifsContext)!; + public statementElsifs(): StatementElsifsContext { + return this.getRuleContext(0, StatementElsifsContext)!; } - public stmt_else(): Stmt_elseContext { - return this.getRuleContext(0, Stmt_elseContext)!; + public statementElse(): StatementElseContext { + return this.getRuleContext(0, StatementElseContext)!; } public END_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.END_P, 0)!; @@ -110990,11 +104262,11 @@ export class Stmt_ifContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_if; + return PostgreSqlParser.RULE_statementIf; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_if) { - return visitor.visitStmt_if(this); + if (visitor.visitStatementIf) { + return visitor.visitStatementIf(this); } else { return visitor.visitChildren(this); } @@ -111002,7 +104274,7 @@ export class Stmt_ifContext extends antlr.ParserRuleContext { } -export class Stmt_elsifsContext extends antlr.ParserRuleContext { +export class StatementElsifsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111015,14 +104287,14 @@ export class Stmt_elsifsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ELSIF, i); } } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public THEN(): antlr.TerminalNode[]; public THEN(i: number): antlr.TerminalNode | null; @@ -111033,21 +104305,21 @@ export class Stmt_elsifsContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.THEN, i); } } - public proc_sect(): Proc_sectContext[]; - public proc_sect(i: number): Proc_sectContext | null; - public proc_sect(i?: number): Proc_sectContext[] | Proc_sectContext | null { + public procedureSection(): ProcedureSectionContext[]; + public procedureSection(i: number): ProcedureSectionContext | null; + public procedureSection(i?: number): ProcedureSectionContext[] | ProcedureSectionContext | null { if (i === undefined) { - return this.getRuleContexts(Proc_sectContext); + return this.getRuleContexts(ProcedureSectionContext); } - return this.getRuleContext(i, Proc_sectContext); + return this.getRuleContext(i, ProcedureSectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_elsifs; + return PostgreSqlParser.RULE_statementElsifs; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_elsifs) { - return visitor.visitStmt_elsifs(this); + if (visitor.visitStatementElsifs) { + return visitor.visitStatementElsifs(this); } else { return visitor.visitChildren(this); } @@ -111055,22 +104327,22 @@ export class Stmt_elsifsContext extends antlr.ParserRuleContext { } -export class Stmt_elseContext extends antlr.ParserRuleContext { +export class StatementElseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ELSE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ELSE, 0); } - public proc_sect(): Proc_sectContext | null { - return this.getRuleContext(0, Proc_sectContext); + public procedureSection(): ProcedureSectionContext | null { + return this.getRuleContext(0, ProcedureSectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_else; + return PostgreSqlParser.RULE_statementElse; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_else) { - return visitor.visitStmt_else(this); + if (visitor.visitStatementElse) { + return visitor.visitStatementElse(this); } else { return visitor.visitChildren(this); } @@ -111078,7 +104350,7 @@ export class Stmt_elseContext extends antlr.ParserRuleContext { } -export class Stmt_caseContext extends antlr.ParserRuleContext { +export class StatementCaseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111091,14 +104363,14 @@ export class Stmt_caseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CASE, i); } } - public opt_expr_until_when(): Opt_expr_until_whenContext { - return this.getRuleContext(0, Opt_expr_until_whenContext)!; + public optionalExpressionUntilWhen(): OptionalExpressionUntilWhenContext { + return this.getRuleContext(0, OptionalExpressionUntilWhenContext)!; } - public case_when_list(): Case_when_listContext { - return this.getRuleContext(0, Case_when_listContext)!; + public caseWhenList(): CaseWhenListContext { + return this.getRuleContext(0, CaseWhenListContext)!; } - public opt_case_else(): Opt_case_elseContext { - return this.getRuleContext(0, Opt_case_elseContext)!; + public optionalCaseElse(): OptionalCaseElseContext { + return this.getRuleContext(0, OptionalCaseElseContext)!; } public END_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.END_P, 0)!; @@ -111107,11 +104379,11 @@ export class Stmt_caseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_case; + return PostgreSqlParser.RULE_statementCase; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_case) { - return visitor.visitStmt_case(this); + if (visitor.visitStatementCase) { + return visitor.visitStatementCase(this); } else { return visitor.visitChildren(this); } @@ -111119,19 +104391,19 @@ export class Stmt_caseContext extends antlr.ParserRuleContext { } -export class Opt_expr_until_whenContext extends antlr.ParserRuleContext { +export class OptionalExpressionUntilWhenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_expr_until_when; + return PostgreSqlParser.RULE_optionalExpressionUntilWhen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_expr_until_when) { - return visitor.visitOpt_expr_until_when(this); + if (visitor.visitOptionalExpressionUntilWhen) { + return visitor.visitOptionalExpressionUntilWhen(this); } else { return visitor.visitChildren(this); } @@ -111139,25 +104411,25 @@ export class Opt_expr_until_whenContext extends antlr.ParserRuleContext { } -export class Case_when_listContext extends antlr.ParserRuleContext { +export class CaseWhenListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public case_when(): Case_whenContext[]; - public case_when(i: number): Case_whenContext | null; - public case_when(i?: number): Case_whenContext[] | Case_whenContext | null { + public caseWhen(): CaseWhenContext[]; + public caseWhen(i: number): CaseWhenContext | null; + public caseWhen(i?: number): CaseWhenContext[] | CaseWhenContext | null { if (i === undefined) { - return this.getRuleContexts(Case_whenContext); + return this.getRuleContexts(CaseWhenContext); } - return this.getRuleContext(i, Case_whenContext); + return this.getRuleContext(i, CaseWhenContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_case_when_list; + return PostgreSqlParser.RULE_caseWhenList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCase_when_list) { - return visitor.visitCase_when_list(this); + if (visitor.visitCaseWhenList) { + return visitor.visitCaseWhenList(this); } else { return visitor.visitChildren(this); } @@ -111165,28 +104437,28 @@ export class Case_when_listContext extends antlr.ParserRuleContext { } -export class Case_whenContext extends antlr.ParserRuleContext { +export class CaseWhenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WHEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WHEN, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public THEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.THEN, 0)!; } - public proc_sect(): Proc_sectContext { - return this.getRuleContext(0, Proc_sectContext)!; + public procedureSection(): ProcedureSectionContext { + return this.getRuleContext(0, ProcedureSectionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_case_when; + return PostgreSqlParser.RULE_caseWhen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCase_when) { - return visitor.visitCase_when(this); + if (visitor.visitCaseWhen) { + return visitor.visitCaseWhen(this); } else { return visitor.visitChildren(this); } @@ -111194,22 +104466,22 @@ export class Case_whenContext extends antlr.ParserRuleContext { } -export class Opt_case_elseContext extends antlr.ParserRuleContext { +export class OptionalCaseElseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ELSE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ELSE, 0); } - public proc_sect(): Proc_sectContext | null { - return this.getRuleContext(0, Proc_sectContext); + public procedureSection(): ProcedureSectionContext | null { + return this.getRuleContext(0, ProcedureSectionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_case_else; + return PostgreSqlParser.RULE_optionalCaseElse; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_case_else) { - return visitor.visitOpt_case_else(this); + if (visitor.visitOptionalCaseElse) { + return visitor.visitOptionalCaseElse(this); } else { return visitor.visitChildren(this); } @@ -111217,22 +104489,22 @@ export class Opt_case_elseContext extends antlr.ParserRuleContext { } -export class Stmt_loopContext extends antlr.ParserRuleContext { +export class StatementLoopContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_loop_label(): Opt_loop_labelContext { - return this.getRuleContext(0, Opt_loop_labelContext)!; + public optionalLoopLabel(): OptionalLoopLabelContext { + return this.getRuleContext(0, OptionalLoopLabelContext)!; } - public loop_body(): Loop_bodyContext { - return this.getRuleContext(0, Loop_bodyContext)!; + public loopBody(): LoopBodyContext { + return this.getRuleContext(0, LoopBodyContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_loop; + return PostgreSqlParser.RULE_statementLoop; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_loop) { - return visitor.visitStmt_loop(this); + if (visitor.visitStatementLoop) { + return visitor.visitStatementLoop(this); } else { return visitor.visitChildren(this); } @@ -111240,28 +104512,28 @@ export class Stmt_loopContext extends antlr.ParserRuleContext { } -export class Stmt_whileContext extends antlr.ParserRuleContext { +export class StatementWhileContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_loop_label(): Opt_loop_labelContext { - return this.getRuleContext(0, Opt_loop_labelContext)!; + public optionalLoopLabel(): OptionalLoopLabelContext { + return this.getRuleContext(0, OptionalLoopLabelContext)!; } public WHILE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WHILE, 0)!; } - public expr_until_loop(): Expr_until_loopContext { - return this.getRuleContext(0, Expr_until_loopContext)!; + public expressionUntilLoop(): ExpressionUntilLoopContext { + return this.getRuleContext(0, ExpressionUntilLoopContext)!; } - public loop_body(): Loop_bodyContext { - return this.getRuleContext(0, Loop_bodyContext)!; + public loopBody(): LoopBodyContext { + return this.getRuleContext(0, LoopBodyContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_while; + return PostgreSqlParser.RULE_statementWhile; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_while) { - return visitor.visitStmt_while(this); + if (visitor.visitStatementWhile) { + return visitor.visitStatementWhile(this); } else { return visitor.visitChildren(this); } @@ -111269,28 +104541,28 @@ export class Stmt_whileContext extends antlr.ParserRuleContext { } -export class Stmt_forContext extends antlr.ParserRuleContext { +export class StatementForContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_loop_label(): Opt_loop_labelContext { - return this.getRuleContext(0, Opt_loop_labelContext)!; + public optionalLoopLabel(): OptionalLoopLabelContext { + return this.getRuleContext(0, OptionalLoopLabelContext)!; } public FOR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOR, 0)!; } - public for_control(): For_controlContext { - return this.getRuleContext(0, For_controlContext)!; + public forControl(): ForControlContext { + return this.getRuleContext(0, ForControlContext)!; } - public loop_body(): Loop_bodyContext { - return this.getRuleContext(0, Loop_bodyContext)!; + public loopBody(): LoopBodyContext { + return this.getRuleContext(0, LoopBodyContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_for; + return PostgreSqlParser.RULE_statementFor; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_for) { - return visitor.visitStmt_for(this); + if (visitor.visitStatementFor) { + return visitor.visitStatementFor(this); } else { return visitor.visitChildren(this); } @@ -111298,58 +104570,58 @@ export class Stmt_forContext extends antlr.ParserRuleContext { } -export class For_controlContext extends antlr.ParserRuleContext { +export class ForControlContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public for_variable(): For_variableContext { - return this.getRuleContext(0, For_variableContext)!; + public forVariable(): ForVariableContext { + return this.getRuleContext(0, ForVariableContext)!; } public IN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.IN_P, 0)!; } - public cursor_name(): Cursor_nameContext | null { - return this.getRuleContext(0, Cursor_nameContext); + public cursorName(): CursorNameContext | null { + return this.getRuleContext(0, CursorNameContext); } - public opt_cursor_parameters(): Opt_cursor_parametersContext | null { - return this.getRuleContext(0, Opt_cursor_parametersContext); + public optionalCursorParameters(): OptionalCursorParametersContext | null { + return this.getRuleContext(0, OptionalCursorParametersContext); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } - public explainstmt(): ExplainstmtContext | null { - return this.getRuleContext(0, ExplainstmtContext); + public explainStatement(): ExplainStatementContext | null { + return this.getRuleContext(0, ExplainStatementContext); } public EXECUTE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXECUTE, 0); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } - public opt_for_using_expression(): Opt_for_using_expressionContext | null { - return this.getRuleContext(0, Opt_for_using_expressionContext); + public optionalForUsingExpression(): OptionalForUsingExpressionContext | null { + return this.getRuleContext(0, OptionalForUsingExpressionContext); } - public opt_reverse(): Opt_reverseContext | null { - return this.getRuleContext(0, Opt_reverseContext); + public optionalReverse(): OptionalReverseContext | null { + return this.getRuleContext(0, OptionalReverseContext); } public DOT_DOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOT_DOT, 0); } - public opt_by_expression(): Opt_by_expressionContext | null { - return this.getRuleContext(0, Opt_by_expressionContext); + public optionalByExpression(): OptionalByExpressionContext | null { + return this.getRuleContext(0, OptionalByExpressionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_control; + return PostgreSqlParser.RULE_forControl; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_control) { - return visitor.visitFor_control(this); + if (visitor.visitForControl) { + return visitor.visitForControl(this); } else { return visitor.visitChildren(this); } @@ -111357,22 +104629,22 @@ export class For_controlContext extends antlr.ParserRuleContext { } -export class Opt_for_using_expressionContext extends antlr.ParserRuleContext { +export class OptionalForUsingExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_for_using_expression; + return PostgreSqlParser.RULE_optionalForUsingExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_for_using_expression) { - return visitor.visitOpt_for_using_expression(this); + if (visitor.visitOptionalForUsingExpression) { + return visitor.visitOptionalForUsingExpression(this); } else { return visitor.visitChildren(this); } @@ -111380,21 +104652,21 @@ export class Opt_for_using_expressionContext extends antlr.ParserRuleContext { } -export class Opt_cursor_parametersContext extends antlr.ParserRuleContext { +export class OptionalCursorParametersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public CLOSE_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); @@ -111409,11 +104681,11 @@ export class Opt_cursor_parametersContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_cursor_parameters; + return PostgreSqlParser.RULE_optionalCursorParameters; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_cursor_parameters) { - return visitor.visitOpt_cursor_parameters(this); + if (visitor.visitOptionalCursorParameters) { + return visitor.visitOptionalCursorParameters(this); } else { return visitor.visitChildren(this); } @@ -111421,7 +104693,7 @@ export class Opt_cursor_parametersContext extends antlr.ParserRuleContext { } -export class Opt_reverseContext extends antlr.ParserRuleContext { +export class OptionalReverseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111429,11 +104701,11 @@ export class Opt_reverseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.REVERSE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_reverse; + return PostgreSqlParser.RULE_optionalReverse; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_reverse) { - return visitor.visitOpt_reverse(this); + if (visitor.visitOptionalReverse) { + return visitor.visitOptionalReverse(this); } else { return visitor.visitChildren(this); } @@ -111441,22 +104713,22 @@ export class Opt_reverseContext extends antlr.ParserRuleContext { } -export class Opt_by_expressionContext extends antlr.ParserRuleContext { +export class OptionalByExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public BY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.BY, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_by_expression; + return PostgreSqlParser.RULE_optionalByExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_by_expression) { - return visitor.visitOpt_by_expression(this); + if (visitor.visitOptionalByExpression) { + return visitor.visitOptionalByExpression(this); } else { return visitor.visitChildren(this); } @@ -111464,19 +104736,19 @@ export class Opt_by_expressionContext extends antlr.ParserRuleContext { } -export class For_variableContext extends antlr.ParserRuleContext { +export class ForVariableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_name_list(): Any_name_listContext { - return this.getRuleContext(0, Any_name_listContext)!; + public anyNameList(): AnyNameListContext { + return this.getRuleContext(0, AnyNameListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_for_variable; + return PostgreSqlParser.RULE_forVariable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitFor_variable) { - return visitor.visitFor_variable(this); + if (visitor.visitForVariable) { + return visitor.visitForVariable(this); } else { return visitor.visitChildren(this); } @@ -111484,21 +104756,21 @@ export class For_variableContext extends antlr.ParserRuleContext { } -export class Stmt_foreach_aContext extends antlr.ParserRuleContext { +export class StatementForeachAContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_loop_label(): Opt_loop_labelContext { - return this.getRuleContext(0, Opt_loop_labelContext)!; + public optionalLoopLabel(): OptionalLoopLabelContext { + return this.getRuleContext(0, OptionalLoopLabelContext)!; } public FOREACH(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FOREACH, 0)!; } - public for_variable(): For_variableContext { - return this.getRuleContext(0, For_variableContext)!; + public forVariable(): ForVariableContext { + return this.getRuleContext(0, ForVariableContext)!; } - public foreach_slice(): Foreach_sliceContext { - return this.getRuleContext(0, Foreach_sliceContext)!; + public foreachSlice(): ForeachSliceContext { + return this.getRuleContext(0, ForeachSliceContext)!; } public IN_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.IN_P, 0)!; @@ -111506,18 +104778,18 @@ export class Stmt_foreach_aContext extends antlr.ParserRuleContext { public ARRAY(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ARRAY, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } - public loop_body(): Loop_bodyContext { - return this.getRuleContext(0, Loop_bodyContext)!; + public loopBody(): LoopBodyContext { + return this.getRuleContext(0, LoopBodyContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_foreach_a; + return PostgreSqlParser.RULE_statementForeachA; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_foreach_a) { - return visitor.visitStmt_foreach_a(this); + if (visitor.visitStatementForeachA) { + return visitor.visitStatementForeachA(this); } else { return visitor.visitChildren(this); } @@ -111525,7 +104797,7 @@ export class Stmt_foreach_aContext extends antlr.ParserRuleContext { } -export class Foreach_sliceContext extends antlr.ParserRuleContext { +export class ForeachSliceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111536,11 +104808,11 @@ export class Foreach_sliceContext extends antlr.ParserRuleContext { return this.getRuleContext(0, IconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_foreach_slice; + return PostgreSqlParser.RULE_foreachSlice; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitForeach_slice) { - return visitor.visitForeach_slice(this); + if (visitor.visitForeachSlice) { + return visitor.visitForeachSlice(this); } else { return visitor.visitChildren(this); } @@ -111548,28 +104820,28 @@ export class Foreach_sliceContext extends antlr.ParserRuleContext { } -export class Stmt_exitContext extends antlr.ParserRuleContext { +export class StatementExitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public exit_type(): Exit_typeContext { - return this.getRuleContext(0, Exit_typeContext)!; + public exitType(): ExitTypeContext { + return this.getRuleContext(0, ExitTypeContext)!; } - public opt_label(): Opt_labelContext { - return this.getRuleContext(0, Opt_labelContext)!; + public optionalLabel(): OptionalLabelContext { + return this.getRuleContext(0, OptionalLabelContext)!; } - public opt_exitcond(): Opt_exitcondContext { - return this.getRuleContext(0, Opt_exitcondContext)!; + public optionalExitCondition(): OptionalExitConditionContext { + return this.getRuleContext(0, OptionalExitConditionContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_exit; + return PostgreSqlParser.RULE_statementExit; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_exit) { - return visitor.visitStmt_exit(this); + if (visitor.visitStatementExit) { + return visitor.visitStatementExit(this); } else { return visitor.visitChildren(this); } @@ -111577,7 +104849,7 @@ export class Stmt_exitContext extends antlr.ParserRuleContext { } -export class Exit_typeContext extends antlr.ParserRuleContext { +export class ExitTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111588,11 +104860,11 @@ export class Exit_typeContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.CONTINUE_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_exit_type; + return PostgreSqlParser.RULE_exitType; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExit_type) { - return visitor.visitExit_type(this); + if (visitor.visitExitType) { + return visitor.visitExitType(this); } else { return visitor.visitChildren(this); } @@ -111600,7 +104872,7 @@ export class Exit_typeContext extends antlr.ParserRuleContext { } -export class Stmt_returnContext extends antlr.ParserRuleContext { +export class StatementReturnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111613,33 +104885,33 @@ export class Stmt_returnContext extends antlr.ParserRuleContext { public NEXT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.NEXT, 0); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } public QUERY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.QUERY, 0); } - public opt_return_result(): Opt_return_resultContext | null { - return this.getRuleContext(0, Opt_return_resultContext); + public optionalReturnResult(): OptionalReturnResultContext | null { + return this.getRuleContext(0, OptionalReturnResultContext); } public EXECUTE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXECUTE, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } - public opt_for_using_expression(): Opt_for_using_expressionContext | null { - return this.getRuleContext(0, Opt_for_using_expressionContext); + public optionalForUsingExpression(): OptionalForUsingExpressionContext | null { + return this.getRuleContext(0, OptionalForUsingExpressionContext); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_return; + return PostgreSqlParser.RULE_statementReturn; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_return) { - return visitor.visitStmt_return(this); + if (visitor.visitStatementReturn) { + return visitor.visitStatementReturn(this); } else { return visitor.visitChildren(this); } @@ -111647,19 +104919,19 @@ export class Stmt_returnContext extends antlr.ParserRuleContext { } -export class Opt_return_resultContext extends antlr.ParserRuleContext { +export class OptionalReturnResultContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_return_result; + return PostgreSqlParser.RULE_optionalReturnResult; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_return_result) { - return visitor.visitOpt_return_result(this); + if (visitor.visitOptionalReturnResult) { + return visitor.visitOptionalReturnResult(this); } else { return visitor.visitChildren(this); } @@ -111667,24 +104939,24 @@ export class Opt_return_resultContext extends antlr.ParserRuleContext { } -export class Stmt_raiseContext extends antlr.ParserRuleContext { +export class StatementRaiseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public RAISE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.RAISE, 0)!; } - public opt_stmt_raise_level(): Opt_stmt_raise_levelContext | null { - return this.getRuleContext(0, Opt_stmt_raise_levelContext); + public optionalStatementRaiseLevel(): OptionalStatementRaiseLevelContext | null { + return this.getRuleContext(0, OptionalStatementRaiseLevelContext); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } - public opt_raise_list(): Opt_raise_listContext | null { - return this.getRuleContext(0, Opt_raise_listContext); + public optionalRaiseList(): OptionalRaiseListContext | null { + return this.getRuleContext(0, OptionalRaiseListContext); } - public opt_raise_using(): Opt_raise_usingContext | null { - return this.getRuleContext(0, Opt_raise_usingContext); + public optionalRaiseUsing(): OptionalRaiseUsingContext | null { + return this.getRuleContext(0, OptionalRaiseUsingContext); } public SEMI(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SEMI, 0); @@ -111696,11 +104968,11 @@ export class Stmt_raiseContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SQLSTATE, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_raise; + return PostgreSqlParser.RULE_statementRaise; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_raise) { - return visitor.visitStmt_raise(this); + if (visitor.visitStatementRaise) { + return visitor.visitStatementRaise(this); } else { return visitor.visitChildren(this); } @@ -111708,7 +104980,7 @@ export class Stmt_raiseContext extends antlr.ParserRuleContext { } -export class Opt_stmt_raise_levelContext extends antlr.ParserRuleContext { +export class OptionalStatementRaiseLevelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111731,11 +105003,11 @@ export class Opt_stmt_raise_levelContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.EXCEPTION, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_stmt_raise_level; + return PostgreSqlParser.RULE_optionalStatementRaiseLevel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_stmt_raise_level) { - return visitor.visitOpt_stmt_raise_level(this); + if (visitor.visitOptionalStatementRaiseLevel) { + return visitor.visitOptionalStatementRaiseLevel(this); } else { return visitor.visitChildren(this); } @@ -111743,7 +105015,7 @@ export class Opt_stmt_raise_levelContext extends antlr.ParserRuleContext { } -export class Opt_raise_listContext extends antlr.ParserRuleContext { +export class OptionalRaiseListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111756,21 +105028,21 @@ export class Opt_raise_listContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.COMMA, i); } } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_raise_list; + return PostgreSqlParser.RULE_optionalRaiseList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_raise_list) { - return visitor.visitOpt_raise_list(this); + if (visitor.visitOptionalRaiseList) { + return visitor.visitOptionalRaiseList(this); } else { return visitor.visitChildren(this); } @@ -111778,22 +105050,37 @@ export class Opt_raise_listContext extends antlr.ParserRuleContext { } -export class Opt_raise_usingContext extends antlr.ParserRuleContext { +export class OptionalRaiseUsingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public opt_raise_using_elem_list(): Opt_raise_using_elem_listContext | null { - return this.getRuleContext(0, Opt_raise_using_elem_listContext); + public optionalRaiseUsingElement(): OptionalRaiseUsingElementContext[]; + public optionalRaiseUsingElement(i: number): OptionalRaiseUsingElementContext | null; + public optionalRaiseUsingElement(i?: number): OptionalRaiseUsingElementContext[] | OptionalRaiseUsingElementContext | null { + if (i === undefined) { + return this.getRuleContexts(OptionalRaiseUsingElementContext); + } + + return this.getRuleContext(i, OptionalRaiseUsingElementContext); + } + 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(PostgreSqlParser.COMMA); + } else { + return this.getToken(PostgreSqlParser.COMMA, i); + } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_raise_using; + return PostgreSqlParser.RULE_optionalRaiseUsing; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_raise_using) { - return visitor.visitOpt_raise_using(this); + if (visitor.visitOptionalRaiseUsing) { + return visitor.visitOptionalRaiseUsing(this); } else { return visitor.visitChildren(this); } @@ -111801,7 +105088,7 @@ export class Opt_raise_usingContext extends antlr.ParserRuleContext { } -export class Opt_raise_using_elemContext extends antlr.ParserRuleContext { +export class OptionalRaiseUsingElementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111811,50 +105098,15 @@ export class Opt_raise_using_elemContext extends antlr.ParserRuleContext { public EQUAL(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EQUAL, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_raise_using_elem; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_raise_using_elem) { - return visitor.visitOpt_raise_using_elem(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_raise_using_elem_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public opt_raise_using_elem(): Opt_raise_using_elemContext[]; - public opt_raise_using_elem(i: number): Opt_raise_using_elemContext | null; - public opt_raise_using_elem(i?: number): Opt_raise_using_elemContext[] | Opt_raise_using_elemContext | null { - if (i === undefined) { - return this.getRuleContexts(Opt_raise_using_elemContext); - } - - return this.getRuleContext(i, Opt_raise_using_elemContext); - } - 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(PostgreSqlParser.COMMA); - } else { - return this.getToken(PostgreSqlParser.COMMA, i); - } + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_raise_using_elem_list; + return PostgreSqlParser.RULE_optionalRaiseUsingElement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_raise_using_elem_list) { - return visitor.visitOpt_raise_using_elem_list(this); + if (visitor.visitOptionalRaiseUsingElement) { + return visitor.visitOptionalRaiseUsingElement(this); } else { return visitor.visitChildren(this); } @@ -111862,28 +105114,28 @@ export class Opt_raise_using_elem_listContext extends antlr.ParserRuleContext { } -export class Stmt_assertContext extends antlr.ParserRuleContext { +export class StatementAssertContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ASSERT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ASSERT, 0)!; } - public sql_expression(): Sql_expressionContext { - return this.getRuleContext(0, Sql_expressionContext)!; + public sqlExpression(): SqlExpressionContext { + return this.getRuleContext(0, SqlExpressionContext)!; } - public opt_stmt_assert_message(): Opt_stmt_assert_messageContext { - return this.getRuleContext(0, Opt_stmt_assert_messageContext)!; + public optionalStatementAssertMessage(): OptionalStatementAssertMessageContext { + return this.getRuleContext(0, OptionalStatementAssertMessageContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_assert; + return PostgreSqlParser.RULE_statementAssert; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_assert) { - return visitor.visitStmt_assert(this); + if (visitor.visitStatementAssert) { + return visitor.visitStatementAssert(this); } else { return visitor.visitChildren(this); } @@ -111891,22 +105143,22 @@ export class Stmt_assertContext extends antlr.ParserRuleContext { } -export class Opt_stmt_assert_messageContext extends antlr.ParserRuleContext { +export class OptionalStatementAssertMessageContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COMMA(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.COMMA, 0); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_stmt_assert_message; + return PostgreSqlParser.RULE_optionalStatementAssertMessage; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_stmt_assert_message) { - return visitor.visitOpt_stmt_assert_message(this); + if (visitor.visitOptionalStatementAssertMessage) { + return visitor.visitOptionalStatementAssertMessage(this); } else { return visitor.visitChildren(this); } @@ -111914,7 +105166,7 @@ export class Opt_stmt_assert_messageContext extends antlr.ParserRuleContext { } -export class Loop_bodyContext extends antlr.ParserRuleContext { +export class LoopBodyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -111927,24 +105179,24 @@ export class Loop_bodyContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.LOOP, i); } } - public proc_sect(): Proc_sectContext { - return this.getRuleContext(0, Proc_sectContext)!; + public procedureSection(): ProcedureSectionContext { + return this.getRuleContext(0, ProcedureSectionContext)!; } public END_P(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.END_P, 0)!; } - public opt_label(): Opt_labelContext { - return this.getRuleContext(0, Opt_labelContext)!; + public optionalLabel(): OptionalLabelContext { + return this.getRuleContext(0, OptionalLabelContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_loop_body; + return PostgreSqlParser.RULE_loopBody; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitLoop_body) { - return visitor.visitLoop_body(this); + if (visitor.visitLoopBody) { + return visitor.visitLoopBody(this); } else { return visitor.visitChildren(this); } @@ -111952,22 +105204,22 @@ export class Loop_bodyContext extends antlr.ParserRuleContext { } -export class Stmt_execsqlContext extends antlr.ParserRuleContext { +export class StatementExecSqlContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public make_execsql_stmt(): Make_execsql_stmtContext { - return this.getRuleContext(0, Make_execsql_stmtContext)!; + public makeExecuteSqlStatement(): MakeExecuteSqlStatementContext { + return this.getRuleContext(0, MakeExecuteSqlStatementContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_execsql; + return PostgreSqlParser.RULE_statementExecSql; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_execsql) { - return visitor.visitStmt_execsql(this); + if (visitor.visitStatementExecSql) { + return visitor.visitStatementExecSql(this); } else { return visitor.visitChildren(this); } @@ -111975,31 +105227,31 @@ export class Stmt_execsqlContext extends antlr.ParserRuleContext { } -export class Stmt_dynexecuteContext extends antlr.ParserRuleContext { +export class StatementDynExecuteContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public EXECUTE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.EXECUTE, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } - public opt_execute_into(): Opt_execute_intoContext | null { - return this.getRuleContext(0, Opt_execute_intoContext); + public optionalExecuteInto(): OptionalExecuteIntoContext | null { + return this.getRuleContext(0, OptionalExecuteIntoContext); } - public opt_execute_using(): Opt_execute_usingContext | null { - return this.getRuleContext(0, Opt_execute_usingContext); + public optionalExecuteUsing(): OptionalExecuteUsingContext | null { + return this.getRuleContext(0, OptionalExecuteUsingContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_dynexecute; + return PostgreSqlParser.RULE_statementDynExecute; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_dynexecute) { - return visitor.visitStmt_dynexecute(this); + if (visitor.visitStatementDynExecute) { + return visitor.visitStatementDynExecute(this); } else { return visitor.visitChildren(this); } @@ -112007,22 +105259,22 @@ export class Stmt_dynexecuteContext extends antlr.ParserRuleContext { } -export class Opt_execute_usingContext extends antlr.ParserRuleContext { +export class OptionalExecuteUsingContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public USING(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.USING, 0); } - public opt_execute_using_list(): Opt_execute_using_listContext | null { - return this.getRuleContext(0, Opt_execute_using_listContext); + public optionalExecuteUsingList(): OptionalExecuteUsingListContext | null { + return this.getRuleContext(0, OptionalExecuteUsingListContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_execute_using; + return PostgreSqlParser.RULE_optionalExecuteUsing; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_execute_using) { - return visitor.visitOpt_execute_using(this); + if (visitor.visitOptionalExecuteUsing) { + return visitor.visitOptionalExecuteUsing(this); } else { return visitor.visitChildren(this); } @@ -112030,18 +105282,18 @@ export class Opt_execute_usingContext extends antlr.ParserRuleContext { } -export class Opt_execute_using_listContext extends antlr.ParserRuleContext { +export class OptionalExecuteUsingListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext[]; - public a_expr(i: number): A_exprContext | null; - public a_expr(i?: number): A_exprContext[] | A_exprContext | null { + public expression1(): Expression1Context[]; + public expression1(i: number): Expression1Context | null; + public expression1(i?: number): Expression1Context[] | Expression1Context | null { if (i === undefined) { - return this.getRuleContexts(A_exprContext); + return this.getRuleContexts(Expression1Context); } - return this.getRuleContext(i, A_exprContext); + return this.getRuleContext(i, Expression1Context); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -112053,11 +105305,11 @@ export class Opt_execute_using_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_execute_using_list; + return PostgreSqlParser.RULE_optionalExecuteUsingList; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_execute_using_list) { - return visitor.visitOpt_execute_using_list(this); + if (visitor.visitOptionalExecuteUsingList) { + return visitor.visitOptionalExecuteUsingList(this); } else { return visitor.visitChildren(this); } @@ -112065,25 +105317,25 @@ export class Opt_execute_using_listContext extends antlr.ParserRuleContext { } -export class Opt_execute_intoContext extends antlr.ParserRuleContext { +export class OptionalExecuteIntoContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public INTO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INTO, 0); } - public into_target(): Into_targetContext | null { - return this.getRuleContext(0, Into_targetContext); + public intoTarget(): IntoTargetContext | null { + return this.getRuleContext(0, IntoTargetContext); } public STRICT_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STRICT_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_execute_into; + return PostgreSqlParser.RULE_optionalExecuteInto; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_execute_into) { - return visitor.visitOpt_execute_into(this); + if (visitor.visitOptionalExecuteInto) { + return visitor.visitOptionalExecuteInto(this); } else { return visitor.visitChildren(this); } @@ -112091,7 +105343,7 @@ export class Opt_execute_intoContext extends antlr.ParserRuleContext { } -export class Stmt_openContext extends antlr.ParserRuleContext { +export class StatementOpenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -112101,90 +105353,50 @@ export class Stmt_openContext extends antlr.ParserRuleContext { public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } - public cursor_variable(): Cursor_variableContext | null { - return this.getRuleContext(0, Cursor_variableContext); + public cursorVariable(): CursorVariableContext | null { + return this.getRuleContext(0, CursorVariableContext); } - public opt_scroll_option(): Opt_scroll_optionContext | null { - return this.getRuleContext(0, Opt_scroll_optionContext); + public SCROLL(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.SCROLL, 0); } public FOR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.FOR, 0); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public selectstmt(): SelectstmtContext | null { - return this.getRuleContext(0, SelectstmtContext); + public selectStatement(): SelectStatementContext | null { + return this.getRuleContext(0, SelectStatementContext); } public EXECUTE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXECUTE, 0); } - public sql_expression(): Sql_expressionContext | null { - return this.getRuleContext(0, Sql_expressionContext); - } - public opt_open_using(): Opt_open_usingContext | null { - return this.getRuleContext(0, Opt_open_usingContext); - } - public OPEN_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); - } - public opt_open_bound_list(): Opt_open_bound_listContext | null { - return this.getRuleContext(0, Opt_open_bound_listContext); - } - public CLOSE_PAREN(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_open; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_open) { - return visitor.visitStmt_open(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_open_bound_list_itemContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public sqlExpression(): SqlExpressionContext | null { + return this.getRuleContext(0, SqlExpressionContext); } - public COLON_EQUALS(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.COLON_EQUALS, 0); - } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public USING(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.USING, 0); } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_open_bound_list_item; + public expressionList(): ExpressionListContext | null { + return this.getRuleContext(0, ExpressionListContext); } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_open_bound_list_item) { - return visitor.visitOpt_open_bound_list_item(this); - } else { - return visitor.visitChildren(this); - } + public NO(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.NO, 0); } -} - - -export class Opt_open_bound_listContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public OPEN_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } - public opt_open_bound_list_item(): Opt_open_bound_list_itemContext[]; - public opt_open_bound_list_item(i: number): Opt_open_bound_list_itemContext | null; - public opt_open_bound_list_item(i?: number): Opt_open_bound_list_itemContext[] | Opt_open_bound_list_itemContext | null { + public optionalOpenBoundListItem(): OptionalOpenBoundListItemContext[]; + public optionalOpenBoundListItem(i: number): OptionalOpenBoundListItemContext | null; + public optionalOpenBoundListItem(i?: number): OptionalOpenBoundListItemContext[] | OptionalOpenBoundListItemContext | null { if (i === undefined) { - return this.getRuleContexts(Opt_open_bound_list_itemContext); + return this.getRuleContexts(OptionalOpenBoundListItemContext); } - return this.getRuleContext(i, Opt_open_bound_list_itemContext); + return this.getRuleContext(i, OptionalOpenBoundListItemContext); + } + public CLOSE_PAREN(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.CLOSE_PAREN, 0); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -112196,34 +105408,11 @@ export class Opt_open_bound_listContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_open_bound_list; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_open_bound_list) { - return visitor.visitOpt_open_bound_list(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_open_usingContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public USING(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.USING, 0); - } - public expr_list(): Expr_listContext | null { - return this.getRuleContext(0, Expr_listContext); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_open_using; + return PostgreSqlParser.RULE_statementOpen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_open_using) { - return visitor.visitOpt_open_using(this); + if (visitor.visitStatementOpen) { + return visitor.visitStatementOpen(this); } else { return visitor.visitChildren(this); } @@ -112231,42 +105420,25 @@ export class Opt_open_usingContext extends antlr.ParserRuleContext { } -export class Opt_scroll_optionContext extends antlr.ParserRuleContext { +export class OptionalOpenBoundListItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_scroll_option_no(): Opt_scroll_option_noContext | null { - return this.getRuleContext(0, Opt_scroll_option_noContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public SCROLL(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.SCROLL, 0); - } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_scroll_option; - } - public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_scroll_option) { - return visitor.visitOpt_scroll_option(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class Opt_scroll_option_noContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public COLON_EQUALS(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.COLON_EQUALS, 0); } - public NO(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.NO, 0); + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_scroll_option_no; + return PostgreSqlParser.RULE_optionalOpenBoundListItem; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_scroll_option_no) { - return visitor.visitOpt_scroll_option_no(this); + if (visitor.visitOptionalOpenBoundListItem) { + return visitor.visitOptionalOpenBoundListItem(this); } else { return visitor.visitChildren(this); } @@ -112274,38 +105446,38 @@ export class Opt_scroll_option_noContext extends antlr.ParserRuleContext { } -export class Stmt_fetchContext extends antlr.ParserRuleContext { - public _direction?: Opt_fetch_directionContext; +export class StatementFetchContext extends antlr.ParserRuleContext { + public _direction?: OptionalFetchDirectionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public FETCH(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.FETCH, 0)!; } - public opt_cursor_from(): Opt_cursor_fromContext { - return this.getRuleContext(0, Opt_cursor_fromContext)!; + public optionalCursorFrom(): OptionalCursorFromContext { + return this.getRuleContext(0, OptionalCursorFromContext)!; } - public cursor_variable(): Cursor_variableContext { - return this.getRuleContext(0, Cursor_variableContext)!; + public cursorVariable(): CursorVariableContext { + return this.getRuleContext(0, CursorVariableContext)!; } public INTO(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.INTO, 0)!; } - public into_target(): Into_targetContext { - return this.getRuleContext(0, Into_targetContext)!; + public intoTarget(): IntoTargetContext { + return this.getRuleContext(0, IntoTargetContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } - public opt_fetch_direction(): Opt_fetch_directionContext { - return this.getRuleContext(0, Opt_fetch_directionContext)!; + public optionalFetchDirection(): OptionalFetchDirectionContext { + return this.getRuleContext(0, OptionalFetchDirectionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_fetch; + return PostgreSqlParser.RULE_statementFetch; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_fetch) { - return visitor.visitStmt_fetch(this); + if (visitor.visitStatementFetch) { + return visitor.visitStatementFetch(this); } else { return visitor.visitChildren(this); } @@ -112313,19 +105485,19 @@ export class Stmt_fetchContext extends antlr.ParserRuleContext { } -export class Into_targetContext extends antlr.ParserRuleContext { +export class IntoTargetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public expressionList(): ExpressionListContext { + return this.getRuleContext(0, ExpressionListContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_into_target; + return PostgreSqlParser.RULE_intoTarget; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitInto_target) { - return visitor.visitInto_target(this); + if (visitor.visitIntoTarget) { + return visitor.visitIntoTarget(this); } else { return visitor.visitChildren(this); } @@ -112333,7 +105505,7 @@ export class Into_targetContext extends antlr.ParserRuleContext { } -export class Opt_cursor_fromContext extends antlr.ParserRuleContext { +export class OptionalCursorFromContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -112344,11 +105516,11 @@ export class Opt_cursor_fromContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.IN_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_cursor_from; + return PostgreSqlParser.RULE_optionalCursorFrom; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_cursor_from) { - return visitor.visitOpt_cursor_from(this); + if (visitor.visitOptionalCursorFrom) { + return visitor.visitOptionalCursorFrom(this); } else { return visitor.visitChildren(this); } @@ -112356,7 +105528,7 @@ export class Opt_cursor_fromContext extends antlr.ParserRuleContext { } -export class Opt_fetch_directionContext extends antlr.ParserRuleContext { +export class OptionalFetchDirectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -112375,8 +105547,8 @@ export class Opt_fetch_directionContext extends antlr.ParserRuleContext { public ABSOLUTE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.ABSOLUTE_P, 0); } - public a_expr(): A_exprContext | null { - return this.getRuleContext(0, A_exprContext); + public expression1(): Expression1Context | null { + return this.getRuleContext(0, Expression1Context); } public RELATIVE_P(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.RELATIVE_P, 0); @@ -112391,11 +105563,11 @@ export class Opt_fetch_directionContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.BACKWARD, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_fetch_direction; + return PostgreSqlParser.RULE_optionalFetchDirection; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_fetch_direction) { - return visitor.visitOpt_fetch_direction(this); + if (visitor.visitOptionalFetchDirection) { + return visitor.visitOptionalFetchDirection(this); } else { return visitor.visitChildren(this); } @@ -112403,28 +105575,28 @@ export class Opt_fetch_directionContext extends antlr.ParserRuleContext { } -export class Stmt_moveContext extends antlr.ParserRuleContext { +export class StatementMoveContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public MOVE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.MOVE, 0)!; } - public opt_fetch_direction(): Opt_fetch_directionContext { - return this.getRuleContext(0, Opt_fetch_directionContext)!; + public optionalFetchDirection(): OptionalFetchDirectionContext { + return this.getRuleContext(0, OptionalFetchDirectionContext)!; } - public cursor_variable(): Cursor_variableContext { - return this.getRuleContext(0, Cursor_variableContext)!; + public cursorVariable(): CursorVariableContext { + return this.getRuleContext(0, CursorVariableContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_move; + return PostgreSqlParser.RULE_statementMove; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_move) { - return visitor.visitStmt_move(this); + if (visitor.visitStatementMove) { + return visitor.visitStatementMove(this); } else { return visitor.visitChildren(this); } @@ -112432,25 +105604,25 @@ export class Stmt_moveContext extends antlr.ParserRuleContext { } -export class Stmt_closeContext extends antlr.ParserRuleContext { +export class StatementCloseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public CLOSE(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.CLOSE, 0)!; } - public cursor_variable(): Cursor_variableContext { - return this.getRuleContext(0, Cursor_variableContext)!; + public cursorVariable(): CursorVariableContext { + return this.getRuleContext(0, CursorVariableContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_close; + return PostgreSqlParser.RULE_statementClose; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_close) { - return visitor.visitStmt_close(this); + if (visitor.visitStatementClose) { + return visitor.visitStatementClose(this); } else { return visitor.visitChildren(this); } @@ -112458,7 +105630,7 @@ export class Stmt_closeContext extends antlr.ParserRuleContext { } -export class Stmt_nullContext extends antlr.ParserRuleContext { +export class StatementNullContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -112469,11 +105641,11 @@ export class Stmt_nullContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_null; + return PostgreSqlParser.RULE_statementNull; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_null) { - return visitor.visitStmt_null(this); + if (visitor.visitStatementNull) { + return visitor.visitStatementNull(this); } else { return visitor.visitChildren(this); } @@ -112481,25 +105653,25 @@ export class Stmt_nullContext extends antlr.ParserRuleContext { } -export class Stmt_commitContext extends antlr.ParserRuleContext { +export class StatementCommitContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public COMMIT(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.COMMIT, 0)!; } - public plsql_opt_transaction_chain(): Plsql_opt_transaction_chainContext { - return this.getRuleContext(0, Plsql_opt_transaction_chainContext)!; + public plsqlOptionalTransactionChain(): PlsqlOptionalTransactionChainContext { + return this.getRuleContext(0, PlsqlOptionalTransactionChainContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_commit; + return PostgreSqlParser.RULE_statementCommit; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_commit) { - return visitor.visitStmt_commit(this); + if (visitor.visitStatementCommit) { + return visitor.visitStatementCommit(this); } else { return visitor.visitChildren(this); } @@ -112507,25 +105679,25 @@ export class Stmt_commitContext extends antlr.ParserRuleContext { } -export class Stmt_rollbackContext extends antlr.ParserRuleContext { +export class StatementRollbackContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public ROLLBACK(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.ROLLBACK, 0)!; } - public plsql_opt_transaction_chain(): Plsql_opt_transaction_chainContext { - return this.getRuleContext(0, Plsql_opt_transaction_chainContext)!; + public plsqlOptionalTransactionChain(): PlsqlOptionalTransactionChainContext { + return this.getRuleContext(0, PlsqlOptionalTransactionChainContext)!; } public SEMI(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.SEMI, 0)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_rollback; + return PostgreSqlParser.RULE_statementRollback; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_rollback) { - return visitor.visitStmt_rollback(this); + if (visitor.visitStatementRollback) { + return visitor.visitStatementRollback(this); } else { return visitor.visitChildren(this); } @@ -112533,7 +105705,7 @@ export class Stmt_rollbackContext extends antlr.ParserRuleContext { } -export class Plsql_opt_transaction_chainContext extends antlr.ParserRuleContext { +export class PlsqlOptionalTransactionChainContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -112547,11 +105719,11 @@ export class Plsql_opt_transaction_chainContext extends antlr.ParserRuleContext return this.getToken(PostgreSqlParser.NO, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsql_opt_transaction_chain; + return PostgreSqlParser.RULE_plsqlOptionalTransactionChain; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsql_opt_transaction_chain) { - return visitor.visitPlsql_opt_transaction_chain(this); + if (visitor.visitPlsqlOptionalTransactionChain) { + return visitor.visitPlsqlOptionalTransactionChain(this); } else { return visitor.visitChildren(this); } @@ -112559,15 +105731,15 @@ export class Plsql_opt_transaction_chainContext extends antlr.ParserRuleContext } -export class Stmt_setContext extends antlr.ParserRuleContext { +export class StatementSetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public SET(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SET, 0); } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public anyName(): AnyNameContext | null { + return this.getRuleContext(0, AnyNameContext); } public TO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.TO, 0); @@ -112585,11 +105757,11 @@ export class Stmt_setContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.ALL, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_stmt_set; + return PostgreSqlParser.RULE_statementSet; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitStmt_set) { - return visitor.visitStmt_set(this); + if (visitor.visitStatementSet) { + return visitor.visitStatementSet(this); } else { return visitor.visitChildren(this); } @@ -112597,22 +105769,22 @@ export class Stmt_setContext extends antlr.ParserRuleContext { } -export class Cursor_variableContext extends antlr.ParserRuleContext { +export class CursorVariableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } public PARAM(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.PARAM, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_cursor_variable; + return PostgreSqlParser.RULE_cursorVariable; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitCursor_variable) { - return visitor.visitCursor_variable(this); + if (visitor.visitCursorVariable) { + return visitor.visitCursorVariable(this); } else { return visitor.visitChildren(this); } @@ -112620,22 +105792,22 @@ export class Cursor_variableContext extends antlr.ParserRuleContext { } -export class Exception_sectContext extends antlr.ParserRuleContext { +export class ExceptionSectionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public EXCEPTION(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.EXCEPTION, 0); } - public proc_exceptions(): Proc_exceptionsContext | null { - return this.getRuleContext(0, Proc_exceptionsContext); + public procedureExceptions(): ProcedureExceptionsContext | null { + return this.getRuleContext(0, ProcedureExceptionsContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_exception_sect; + return PostgreSqlParser.RULE_exceptionSection; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitException_sect) { - return visitor.visitException_sect(this); + if (visitor.visitExceptionSection) { + return visitor.visitExceptionSection(this); } else { return visitor.visitChildren(this); } @@ -112643,25 +105815,25 @@ export class Exception_sectContext extends antlr.ParserRuleContext { } -export class Proc_exceptionsContext extends antlr.ParserRuleContext { +export class ProcedureExceptionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public proc_exception(): Proc_exceptionContext[]; - public proc_exception(i: number): Proc_exceptionContext | null; - public proc_exception(i?: number): Proc_exceptionContext[] | Proc_exceptionContext | null { + public procedureException(): ProcedureExceptionContext[]; + public procedureException(i: number): ProcedureExceptionContext | null; + public procedureException(i?: number): ProcedureExceptionContext[] | ProcedureExceptionContext | null { if (i === undefined) { - return this.getRuleContexts(Proc_exceptionContext); + return this.getRuleContexts(ProcedureExceptionContext); } - return this.getRuleContext(i, Proc_exceptionContext); + return this.getRuleContext(i, ProcedureExceptionContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_exceptions; + return PostgreSqlParser.RULE_procedureExceptions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_exceptions) { - return visitor.visitProc_exceptions(this); + if (visitor.visitProcedureExceptions) { + return visitor.visitProcedureExceptions(this); } else { return visitor.visitChildren(this); } @@ -112669,28 +105841,28 @@ export class Proc_exceptionsContext extends antlr.ParserRuleContext { } -export class Proc_exceptionContext extends antlr.ParserRuleContext { +export class ProcedureExceptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WHEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.WHEN, 0)!; } - public proc_conditions(): Proc_conditionsContext { - return this.getRuleContext(0, Proc_conditionsContext)!; + public procedureConditions(): ProcedureConditionsContext { + return this.getRuleContext(0, ProcedureConditionsContext)!; } public THEN(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.THEN, 0)!; } - public proc_sect(): Proc_sectContext { - return this.getRuleContext(0, Proc_sectContext)!; + public procedureSection(): ProcedureSectionContext { + return this.getRuleContext(0, ProcedureSectionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_exception; + return PostgreSqlParser.RULE_procedureException; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_exception) { - return visitor.visitProc_exception(this); + if (visitor.visitProcedureException) { + return visitor.visitProcedureException(this); } else { return visitor.visitChildren(this); } @@ -112698,18 +105870,18 @@ export class Proc_exceptionContext extends antlr.ParserRuleContext { } -export class Proc_conditionsContext extends antlr.ParserRuleContext { +export class ProcedureConditionsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public proc_condition(): Proc_conditionContext[]; - public proc_condition(i: number): Proc_conditionContext | null; - public proc_condition(i?: number): Proc_conditionContext[] | Proc_conditionContext | null { + public procedureCondition(): ProcedureConditionContext[]; + public procedureCondition(i: number): ProcedureConditionContext | null; + public procedureCondition(i?: number): ProcedureConditionContext[] | ProcedureConditionContext | null { if (i === undefined) { - return this.getRuleContexts(Proc_conditionContext); + return this.getRuleContexts(ProcedureConditionContext); } - return this.getRuleContext(i, Proc_conditionContext); + return this.getRuleContext(i, ProcedureConditionContext); } public OR(): antlr.TerminalNode[]; public OR(i: number): antlr.TerminalNode | null; @@ -112721,11 +105893,11 @@ export class Proc_conditionsContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_conditions; + return PostgreSqlParser.RULE_procedureConditions; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_conditions) { - return visitor.visitProc_conditions(this); + if (visitor.visitProcedureConditions) { + return visitor.visitProcedureConditions(this); } else { return visitor.visitChildren(this); } @@ -112733,12 +105905,12 @@ export class Proc_conditionsContext extends antlr.ParserRuleContext { } -export class Proc_conditionContext extends antlr.ParserRuleContext { +export class ProcedureConditionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_identifier(): Any_identifierContext | null { - return this.getRuleContext(0, Any_identifierContext); + public anyIdentifier(): AnyIdentifierContext | null { + return this.getRuleContext(0, AnyIdentifierContext); } public SQLSTATE(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.SQLSTATE, 0); @@ -112747,11 +105919,11 @@ export class Proc_conditionContext extends antlr.ParserRuleContext { return this.getRuleContext(0, SconstContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_proc_condition; + return PostgreSqlParser.RULE_procedureCondition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitProc_condition) { - return visitor.visitProc_condition(this); + if (visitor.visitProcedureCondition) { + return visitor.visitProcedureCondition(this); } else { return visitor.visitChildren(this); } @@ -112759,19 +105931,19 @@ export class Proc_conditionContext extends antlr.ParserRuleContext { } -export class Opt_block_labelContext extends antlr.ParserRuleContext { +export class OptionalBlockLabelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public label_decl(): Label_declContext | null { - return this.getRuleContext(0, Label_declContext); + public labelDeclaration(): LabelDeclarationContext | null { + return this.getRuleContext(0, LabelDeclarationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_block_label; + return PostgreSqlParser.RULE_optionalBlockLabel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_block_label) { - return visitor.visitOpt_block_label(this); + if (visitor.visitOptionalBlockLabel) { + return visitor.visitOptionalBlockLabel(this); } else { return visitor.visitChildren(this); } @@ -112779,19 +105951,19 @@ export class Opt_block_labelContext extends antlr.ParserRuleContext { } -export class Opt_loop_labelContext extends antlr.ParserRuleContext { +export class OptionalLoopLabelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public label_decl(): Label_declContext | null { - return this.getRuleContext(0, Label_declContext); + public labelDeclaration(): LabelDeclarationContext | null { + return this.getRuleContext(0, LabelDeclarationContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_loop_label; + return PostgreSqlParser.RULE_optionalLoopLabel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_loop_label) { - return visitor.visitOpt_loop_label(this); + if (visitor.visitOptionalLoopLabel) { + return visitor.visitOptionalLoopLabel(this); } else { return visitor.visitChildren(this); } @@ -112799,19 +105971,19 @@ export class Opt_loop_labelContext extends antlr.ParserRuleContext { } -export class Opt_labelContext extends antlr.ParserRuleContext { +export class OptionalLabelContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public any_identifier(): Any_identifierContext | null { - return this.getRuleContext(0, Any_identifierContext); + public anyIdentifier(): AnyIdentifierContext | null { + return this.getRuleContext(0, AnyIdentifierContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_label; + return PostgreSqlParser.RULE_optionalLabel; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_label) { - return visitor.visitOpt_label(this); + if (visitor.visitOptionalLabel) { + return visitor.visitOptionalLabel(this); } else { return visitor.visitChildren(this); } @@ -112819,22 +105991,22 @@ export class Opt_labelContext extends antlr.ParserRuleContext { } -export class Opt_exitcondContext extends antlr.ParserRuleContext { +export class OptionalExitConditionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public WHEN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.WHEN, 0); } - public expr_until_semi(): Expr_until_semiContext | null { - return this.getRuleContext(0, Expr_until_semiContext); + public expressionUntilSemi(): ExpressionUntilSemiContext | null { + return this.getRuleContext(0, ExpressionUntilSemiContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_exitcond; + return PostgreSqlParser.RULE_optionalExitCondition; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_exitcond) { - return visitor.visitOpt_exitcond(this); + if (visitor.visitOptionalExitCondition) { + return visitor.visitOptionalExitCondition(this); } else { return visitor.visitChildren(this); } @@ -112842,22 +106014,22 @@ export class Opt_exitcondContext extends antlr.ParserRuleContext { } -export class Any_identifierContext extends antlr.ParserRuleContext { +export class AnyIdentifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); + public columnId(): ColumnIdContext | null { + return this.getRuleContext(0, ColumnIdContext); } - public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext | null { - return this.getRuleContext(0, Plsql_unreserved_keywordContext); + public plsqlUnreservedKeyword(): PlsqlUnreservedKeywordContext | null { + return this.getRuleContext(0, PlsqlUnreservedKeywordContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_any_identifier; + return PostgreSqlParser.RULE_anyIdentifier; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitAny_identifier) { - return visitor.visitAny_identifier(this); + if (visitor.visitAnyIdentifier) { + return visitor.visitAnyIdentifier(this); } else { return visitor.visitChildren(this); } @@ -112865,7 +106037,7 @@ export class Any_identifierContext extends antlr.ParserRuleContext { } -export class Plsql_unreserved_keywordContext extends antlr.ParserRuleContext { +export class PlsqlUnreservedKeywordContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -113059,11 +106231,11 @@ export class Plsql_unreserved_keywordContext extends antlr.ParserRuleContext { return this.getToken(PostgreSqlParser.OUTER_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_plsql_unreserved_keyword; + return PostgreSqlParser.RULE_plsqlUnreservedKeyword; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitPlsql_unreserved_keyword) { - return visitor.visitPlsql_unreserved_keyword(this); + if (visitor.visitPlsqlUnreservedKeyword) { + return visitor.visitPlsqlUnreservedKeyword(this); } else { return visitor.visitChildren(this); } @@ -113071,37 +106243,37 @@ export class Plsql_unreserved_keywordContext extends antlr.ParserRuleContext { } -export class Sql_expressionContext extends antlr.ParserRuleContext { +export class SqlExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public opt_target_list(): Opt_target_listContext { - return this.getRuleContext(0, Opt_target_listContext)!; + public optionalTargetList(): OptionalTargetListContext { + return this.getRuleContext(0, OptionalTargetListContext)!; } - public from_clause(): From_clauseContext { - return this.getRuleContext(0, From_clauseContext)!; + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext)!; } - public where_clause(): Where_clauseContext { - return this.getRuleContext(0, Where_clauseContext)!; + public whereClause(): WhereClauseContext { + return this.getRuleContext(0, WhereClauseContext)!; } - public group_clause(): Group_clauseContext { - return this.getRuleContext(0, Group_clauseContext)!; + public groupClause(): GroupClauseContext { + return this.getRuleContext(0, GroupClauseContext)!; } - public having_clause(): Having_clauseContext { - return this.getRuleContext(0, Having_clauseContext)!; + public havingClause(): HavingClauseContext { + return this.getRuleContext(0, HavingClauseContext)!; } - public window_clause(): Window_clauseContext { - return this.getRuleContext(0, Window_clauseContext)!; + public windowClause(): WindowClauseContext { + return this.getRuleContext(0, WindowClauseContext)!; } - public into_clause(): Into_clauseContext | null { - return this.getRuleContext(0, Into_clauseContext); + public intoClause(): IntoClauseContext | null { + return this.getRuleContext(0, IntoClauseContext); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_sql_expression; + return PostgreSqlParser.RULE_sqlExpression; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitSql_expression) { - return visitor.visitSql_expression(this); + if (visitor.visitSqlExpression) { + return visitor.visitSqlExpression(this); } else { return visitor.visitChildren(this); } @@ -113109,19 +106281,19 @@ export class Sql_expressionContext extends antlr.ParserRuleContext { } -export class Expr_until_thenContext extends antlr.ParserRuleContext { +export class ExpressionUntilThenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sql_expression(): Sql_expressionContext { - return this.getRuleContext(0, Sql_expressionContext)!; + public sqlExpression(): SqlExpressionContext { + return this.getRuleContext(0, SqlExpressionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_expr_until_then; + return PostgreSqlParser.RULE_expressionUntilThen; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExpr_until_then) { - return visitor.visitExpr_until_then(this); + if (visitor.visitExpressionUntilThen) { + return visitor.visitExpressionUntilThen(this); } else { return visitor.visitChildren(this); } @@ -113129,19 +106301,19 @@ export class Expr_until_thenContext extends antlr.ParserRuleContext { } -export class Expr_until_semiContext extends antlr.ParserRuleContext { +export class ExpressionUntilSemiContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public sql_expression(): Sql_expressionContext { - return this.getRuleContext(0, Sql_expressionContext)!; + public sqlExpression(): SqlExpressionContext { + return this.getRuleContext(0, SqlExpressionContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_expr_until_semi; + return PostgreSqlParser.RULE_expressionUntilSemi; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExpr_until_semi) { - return visitor.visitExpr_until_semi(this); + if (visitor.visitExpressionUntilSemi) { + return visitor.visitExpressionUntilSemi(this); } else { return visitor.visitChildren(this); } @@ -113149,19 +106321,19 @@ export class Expr_until_semiContext extends antlr.ParserRuleContext { } -export class Expr_until_rightbracketContext extends antlr.ParserRuleContext { +export class ExpressionUntilRightbracketContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_expr_until_rightbracket; + return PostgreSqlParser.RULE_expressionUntilRightbracket; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExpr_until_rightbracket) { - return visitor.visitExpr_until_rightbracket(this); + if (visitor.visitExpressionUntilRightbracket) { + return visitor.visitExpressionUntilRightbracket(this); } else { return visitor.visitChildren(this); } @@ -113169,19 +106341,19 @@ export class Expr_until_rightbracketContext extends antlr.ParserRuleContext { } -export class Expr_until_loopContext extends antlr.ParserRuleContext { +export class ExpressionUntilLoopContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expression1(): Expression1Context { + return this.getRuleContext(0, Expression1Context)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_expr_until_loop; + return PostgreSqlParser.RULE_expressionUntilLoop; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitExpr_until_loop) { - return visitor.visitExpr_until_loop(this); + if (visitor.visitExpressionUntilLoop) { + return visitor.visitExpressionUntilLoop(this); } else { return visitor.visitChildren(this); } @@ -113189,22 +106361,22 @@ export class Expr_until_loopContext extends antlr.ParserRuleContext { } -export class Make_execsql_stmtContext extends antlr.ParserRuleContext { +export class MakeExecuteSqlStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public stmt(): StmtContext { - return this.getRuleContext(0, StmtContext)!; + public statement(): StatementContext { + return this.getRuleContext(0, StatementContext)!; } - public opt_returning_clause_into(): Opt_returning_clause_intoContext { - return this.getRuleContext(0, Opt_returning_clause_intoContext)!; + public optionalReturningClauseInto(): OptionalReturningClauseIntoContext { + return this.getRuleContext(0, OptionalReturningClauseIntoContext)!; } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_make_execsql_stmt; + return PostgreSqlParser.RULE_makeExecuteSqlStatement; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitMake_execsql_stmt) { - return visitor.visitMake_execsql_stmt(this); + if (visitor.visitMakeExecuteSqlStatement) { + return visitor.visitMakeExecuteSqlStatement(this); } else { return visitor.visitChildren(this); } @@ -113212,25 +106384,25 @@ export class Make_execsql_stmtContext extends antlr.ParserRuleContext { } -export class Opt_returning_clause_intoContext extends antlr.ParserRuleContext { +export class OptionalReturningClauseIntoContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public INTO(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.INTO, 0); } - public opt_strict(): Opt_strictContext | null { - return this.getRuleContext(0, Opt_strictContext); + public intoTarget(): IntoTargetContext | null { + return this.getRuleContext(0, IntoTargetContext); } - public into_target(): Into_targetContext | null { - return this.getRuleContext(0, Into_targetContext); + public STRICT_P(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.STRICT_P, 0); } public override get ruleIndex(): number { - return PostgreSqlParser.RULE_opt_returning_clause_into; + return PostgreSqlParser.RULE_optionalReturningClauseInto; } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitOpt_returning_clause_into) { - return visitor.visitOpt_returning_clause_into(this); + if (visitor.visitOptionalReturningClauseInto) { + return visitor.visitOptionalReturningClauseInto(this); } else { return visitor.visitChildren(this); } diff --git a/src/autocomplete/postgresql/generated/PostgreSqlParserVisitor.ts b/src/autocomplete/postgresql/generated/PostgreSqlParserVisitor.ts index dc282957..51c650c3 100644 --- a/src/autocomplete/postgresql/generated/PostgreSqlParserVisitor.ts +++ b/src/autocomplete/postgresql/generated/PostgreSqlParserVisitor.ts @@ -15,820 +15,757 @@ import { AbstractParseTreeVisitor } from "antlr4ng"; import { RootContext } from "./PostgreSqlParser.js"; -import { PlsqlrootContext } from "./PostgreSqlParser.js"; -import { StmtmultiContext } from "./PostgreSqlParser.js"; -import { StmtContext } from "./PostgreSqlParser.js"; -import { PlsqlconsolecommandContext } from "./PostgreSqlParser.js"; -import { CallstmtContext } from "./PostgreSqlParser.js"; -import { CreaterolestmtContext } from "./PostgreSqlParser.js"; -import { Opt_withContext } from "./PostgreSqlParser.js"; -import { OptrolelistContext } from "./PostgreSqlParser.js"; -import { AlteroptrolelistContext } from "./PostgreSqlParser.js"; -import { AlteroptroleelemContext } from "./PostgreSqlParser.js"; -import { CreateoptroleelemContext } from "./PostgreSqlParser.js"; -import { CreateuserstmtContext } from "./PostgreSqlParser.js"; -import { AlterrolestmtContext } from "./PostgreSqlParser.js"; -import { Opt_in_databaseContext } from "./PostgreSqlParser.js"; -import { AlterrolesetstmtContext } from "./PostgreSqlParser.js"; -import { DroprolestmtContext } from "./PostgreSqlParser.js"; -import { CreategroupstmtContext } from "./PostgreSqlParser.js"; -import { AltergroupstmtContext } from "./PostgreSqlParser.js"; -import { Add_dropContext } from "./PostgreSqlParser.js"; -import { CreateschemastmtContext } from "./PostgreSqlParser.js"; -import { OptschemanameContext } from "./PostgreSqlParser.js"; -import { OptschemaeltlistContext } from "./PostgreSqlParser.js"; -import { Schema_stmtContext } from "./PostgreSqlParser.js"; -import { VariablesetstmtContext } from "./PostgreSqlParser.js"; -import { Set_restContext } from "./PostgreSqlParser.js"; -import { Generic_setContext } from "./PostgreSqlParser.js"; -import { Set_rest_moreContext } from "./PostgreSqlParser.js"; -import { Var_nameContext } from "./PostgreSqlParser.js"; -import { Var_listContext } from "./PostgreSqlParser.js"; -import { Var_valueContext } from "./PostgreSqlParser.js"; -import { Iso_levelContext } from "./PostgreSqlParser.js"; -import { Opt_boolean_or_stringContext } from "./PostgreSqlParser.js"; -import { Zone_valueContext } from "./PostgreSqlParser.js"; -import { Opt_encodingContext } from "./PostgreSqlParser.js"; -import { Nonreservedword_or_sconstContext } from "./PostgreSqlParser.js"; -import { VariableresetstmtContext } from "./PostgreSqlParser.js"; -import { Reset_restContext } from "./PostgreSqlParser.js"; -import { Generic_resetContext } from "./PostgreSqlParser.js"; -import { SetresetclauseContext } from "./PostgreSqlParser.js"; -import { FunctionsetresetclauseContext } from "./PostgreSqlParser.js"; -import { VariableshowstmtContext } from "./PostgreSqlParser.js"; -import { ConstraintssetstmtContext } from "./PostgreSqlParser.js"; -import { Constraints_set_listContext } from "./PostgreSqlParser.js"; -import { Constraints_set_modeContext } from "./PostgreSqlParser.js"; -import { CheckpointstmtContext } from "./PostgreSqlParser.js"; -import { DiscardstmtContext } from "./PostgreSqlParser.js"; -import { AltertablestmtContext } from "./PostgreSqlParser.js"; -import { Alter_table_cmdsContext } from "./PostgreSqlParser.js"; -import { Partition_cmdContext } from "./PostgreSqlParser.js"; -import { Index_partition_cmdContext } from "./PostgreSqlParser.js"; -import { Alter_table_cmdContext } from "./PostgreSqlParser.js"; -import { Alter_column_defaultContext } from "./PostgreSqlParser.js"; -import { Opt_drop_behaviorContext } from "./PostgreSqlParser.js"; -import { Opt_collate_clauseContext } from "./PostgreSqlParser.js"; -import { Alter_usingContext } from "./PostgreSqlParser.js"; -import { Replica_identityContext } from "./PostgreSqlParser.js"; -import { ReloptionsContext } from "./PostgreSqlParser.js"; -import { Opt_reloptionsContext } from "./PostgreSqlParser.js"; -import { Reloption_listContext } from "./PostgreSqlParser.js"; -import { Reloption_elemContext } from "./PostgreSqlParser.js"; -import { Alter_identity_column_option_listContext } from "./PostgreSqlParser.js"; -import { Alter_identity_column_optionContext } from "./PostgreSqlParser.js"; -import { PartitionboundspecContext } from "./PostgreSqlParser.js"; -import { Hash_partbound_elemContext } from "./PostgreSqlParser.js"; -import { Hash_partboundContext } from "./PostgreSqlParser.js"; -import { AltercompositetypestmtContext } from "./PostgreSqlParser.js"; -import { Alter_type_cmdsContext } from "./PostgreSqlParser.js"; -import { Alter_type_cmdContext } from "./PostgreSqlParser.js"; -import { CloseportalstmtContext } from "./PostgreSqlParser.js"; -import { CopystmtContext } from "./PostgreSqlParser.js"; -import { Copy_fromContext } from "./PostgreSqlParser.js"; -import { Opt_programContext } from "./PostgreSqlParser.js"; -import { Copy_file_nameContext } from "./PostgreSqlParser.js"; -import { Copy_optionsContext } from "./PostgreSqlParser.js"; -import { Copy_opt_listContext } from "./PostgreSqlParser.js"; -import { Copy_opt_itemContext } from "./PostgreSqlParser.js"; -import { Opt_binaryContext } from "./PostgreSqlParser.js"; -import { Copy_delimiterContext } from "./PostgreSqlParser.js"; -import { Opt_usingContext } from "./PostgreSqlParser.js"; -import { Copy_generic_opt_listContext } from "./PostgreSqlParser.js"; -import { Copy_generic_opt_elemContext } from "./PostgreSqlParser.js"; -import { Copy_generic_opt_argContext } from "./PostgreSqlParser.js"; -import { Copy_generic_opt_arg_listContext } from "./PostgreSqlParser.js"; -import { Copy_generic_opt_arg_list_itemContext } from "./PostgreSqlParser.js"; -import { CreatestmtContext } from "./PostgreSqlParser.js"; -import { OpttempContext } from "./PostgreSqlParser.js"; -import { OpttableelementlistContext } from "./PostgreSqlParser.js"; -import { OpttypedtableelementlistContext } from "./PostgreSqlParser.js"; -import { TableelementlistContext } from "./PostgreSqlParser.js"; -import { TypedtableelementlistContext } from "./PostgreSqlParser.js"; -import { TableelementContext } from "./PostgreSqlParser.js"; -import { TypedtableelementContext } from "./PostgreSqlParser.js"; -import { ColumnDefContext } from "./PostgreSqlParser.js"; +import { PlsqlRootContext } from "./PostgreSqlParser.js"; +import { StatementsContext } from "./PostgreSqlParser.js"; +import { StatementContext } from "./PostgreSqlParser.js"; +import { PlsqlConsoleCommandContext } from "./PostgreSqlParser.js"; +import { CallStatementContext } from "./PostgreSqlParser.js"; +import { CreateRoleStatementContext } from "./PostgreSqlParser.js"; +import { OptionalWithContext } from "./PostgreSqlParser.js"; +import { OptionalRoleListContext } from "./PostgreSqlParser.js"; +import { AlterOptionalRoleListContext } from "./PostgreSqlParser.js"; +import { AlterRoleElemementContext } from "./PostgreSqlParser.js"; +import { CreateRoleElementContext } from "./PostgreSqlParser.js"; +import { CreateUserStatementContext } from "./PostgreSqlParser.js"; +import { AlterRoleStatementContext } from "./PostgreSqlParser.js"; +import { OptionalInDatabaseContext } from "./PostgreSqlParser.js"; +import { AlterRoleSetStatementContext } from "./PostgreSqlParser.js"; +import { DropRoleStatementContext } from "./PostgreSqlParser.js"; +import { CreateGroupStatementContext } from "./PostgreSqlParser.js"; +import { AlterGroupStatementContext } from "./PostgreSqlParser.js"; +import { AddOrDropContext } from "./PostgreSqlParser.js"; +import { CreateSchemaStatementContext } from "./PostgreSqlParser.js"; +import { OptionalSchemaNameContext } from "./PostgreSqlParser.js"; +import { OptionalSchemaListContext } from "./PostgreSqlParser.js"; +import { SchemaStatementContext } from "./PostgreSqlParser.js"; +import { VariableSetStatementContext } from "./PostgreSqlParser.js"; +import { SetStatementEndingContext } from "./PostgreSqlParser.js"; +import { GenericSetClauseContext } from "./PostgreSqlParser.js"; +import { SetStatementMoreContext } from "./PostgreSqlParser.js"; +import { VariableNameContext } from "./PostgreSqlParser.js"; +import { VariableListContext } from "./PostgreSqlParser.js"; +import { VariableValueContext } from "./PostgreSqlParser.js"; +import { IsoLevelContext } from "./PostgreSqlParser.js"; +import { BooleanOrStringContext } from "./PostgreSqlParser.js"; +import { ZoneValueContext } from "./PostgreSqlParser.js"; +import { OptionalEncodingContext } from "./PostgreSqlParser.js"; +import { NonReservedWordOrSconstContext } from "./PostgreSqlParser.js"; +import { VariableResetStatementContext } from "./PostgreSqlParser.js"; +import { ResetClauseRestContext } from "./PostgreSqlParser.js"; +import { GenericResetClauseContext } from "./PostgreSqlParser.js"; +import { SetResetClauseContext } from "./PostgreSqlParser.js"; +import { FunctionSetResetClauseContext } from "./PostgreSqlParser.js"; +import { VariableShowStatementContext } from "./PostgreSqlParser.js"; +import { SetConstraintsStatementContext } from "./PostgreSqlParser.js"; +import { ConstraintsSetListContext } from "./PostgreSqlParser.js"; +import { ConstraintsSetModeContext } from "./PostgreSqlParser.js"; +import { CheckpointStatementContext } from "./PostgreSqlParser.js"; +import { DiscardStatementContext } from "./PostgreSqlParser.js"; +import { AlterTableStatementContext } from "./PostgreSqlParser.js"; +import { AlterTableCommandsContext } from "./PostgreSqlParser.js"; +import { PartitionCommandContext } from "./PostgreSqlParser.js"; +import { IndexPartitionCommandContext } from "./PostgreSqlParser.js"; +import { AlterTableCommandContext } from "./PostgreSqlParser.js"; +import { AlterColumnDefaultContext } from "./PostgreSqlParser.js"; +import { OptionalDropBehaviorContext } from "./PostgreSqlParser.js"; +import { OptionalCollateClauseContext } from "./PostgreSqlParser.js"; +import { AlterUsingContext } from "./PostgreSqlParser.js"; +import { ReplicaIdentityContext } from "./PostgreSqlParser.js"; +import { RelOptionsContext } from "./PostgreSqlParser.js"; +import { OptionalRelOptionsContext } from "./PostgreSqlParser.js"; +import { RelOptionListContext } from "./PostgreSqlParser.js"; +import { RelOptionElemContext } from "./PostgreSqlParser.js"; +import { AlterIdentityColumnOptionListContext } from "./PostgreSqlParser.js"; +import { AlterIdentityColumnOptionContext } from "./PostgreSqlParser.js"; +import { PartitionBoundSpecificationContext } from "./PostgreSqlParser.js"; +import { HashPartitionBoundElementContext } from "./PostgreSqlParser.js"; +import { HashPartitionBoundContext } from "./PostgreSqlParser.js"; +import { AlterCompositeTypeStatementContext } from "./PostgreSqlParser.js"; +import { AlterTypeCommandsContext } from "./PostgreSqlParser.js"; +import { AlterTypeCommandContext } from "./PostgreSqlParser.js"; +import { ClosePortalStatementContext } from "./PostgreSqlParser.js"; +import { CopyStatementContext } from "./PostgreSqlParser.js"; +import { FromOrToContext } from "./PostgreSqlParser.js"; +import { CopyFileNameContext } from "./PostgreSqlParser.js"; +import { CopyOptionsContext } from "./PostgreSqlParser.js"; +import { CopyOptionsItemContext } from "./PostgreSqlParser.js"; +import { CopyDelimiterContext } from "./PostgreSqlParser.js"; +import { CopyGenericOptionListContext } from "./PostgreSqlParser.js"; +import { CopyGenericOptionElemContext } from "./PostgreSqlParser.js"; +import { CopyGenericOptionArgumentContext } from "./PostgreSqlParser.js"; +import { CreateStatementContext } from "./PostgreSqlParser.js"; +import { TemporaryOptionContext } from "./PostgreSqlParser.js"; +import { OptionalTableElementListContext } from "./PostgreSqlParser.js"; +import { OptionalTypedTableElementListContext } from "./PostgreSqlParser.js"; +import { TableElementListContext } from "./PostgreSqlParser.js"; +import { TypedTableElementListContext } from "./PostgreSqlParser.js"; +import { TableElementContext } from "./PostgreSqlParser.js"; +import { TypedTableElementContext } from "./PostgreSqlParser.js"; +import { ColumnDefinitionContext } from "./PostgreSqlParser.js"; import { ColumnOptionsContext } from "./PostgreSqlParser.js"; -import { ColquallistContext } from "./PostgreSqlParser.js"; -import { ColconstraintContext } from "./PostgreSqlParser.js"; -import { ColconstraintelemContext } from "./PostgreSqlParser.js"; -import { Generated_whenContext } from "./PostgreSqlParser.js"; -import { ConstraintattrContext } from "./PostgreSqlParser.js"; -import { TablelikeclauseContext } from "./PostgreSqlParser.js"; -import { TablelikeoptionlistContext } from "./PostgreSqlParser.js"; -import { TablelikeoptionContext } from "./PostgreSqlParser.js"; -import { TableconstraintContext } from "./PostgreSqlParser.js"; -import { ConstraintelemContext } from "./PostgreSqlParser.js"; -import { Opt_no_inheritContext } from "./PostgreSqlParser.js"; -import { Opt_column_listContext } from "./PostgreSqlParser.js"; -import { ColumnlistContext } from "./PostgreSqlParser.js"; -import { ColumnElemContext } from "./PostgreSqlParser.js"; -import { Opt_c_includeContext } from "./PostgreSqlParser.js"; -import { Key_matchContext } from "./PostgreSqlParser.js"; -import { ExclusionconstraintlistContext } from "./PostgreSqlParser.js"; -import { ExclusionconstraintelemContext } from "./PostgreSqlParser.js"; -import { ExclusionwhereclauseContext } from "./PostgreSqlParser.js"; -import { Key_actionsContext } from "./PostgreSqlParser.js"; -import { Key_updateContext } from "./PostgreSqlParser.js"; -import { Key_deleteContext } from "./PostgreSqlParser.js"; -import { Key_actionContext } from "./PostgreSqlParser.js"; -import { OptinheritContext } from "./PostgreSqlParser.js"; -import { OptpartitionspecContext } from "./PostgreSqlParser.js"; -import { PartitionspecContext } from "./PostgreSqlParser.js"; -import { Part_paramsContext } from "./PostgreSqlParser.js"; -import { Part_elemContext } from "./PostgreSqlParser.js"; -import { Table_access_method_clauseContext } from "./PostgreSqlParser.js"; -import { OptwithContext } from "./PostgreSqlParser.js"; -import { OncommitoptionContext } from "./PostgreSqlParser.js"; -import { OpttablespaceContext } from "./PostgreSqlParser.js"; -import { OptconstablespaceContext } from "./PostgreSqlParser.js"; -import { ExistingindexContext } from "./PostgreSqlParser.js"; -import { CreatestatsstmtContext } from "./PostgreSqlParser.js"; -import { AlterstatsstmtContext } from "./PostgreSqlParser.js"; -import { CreateasstmtContext } from "./PostgreSqlParser.js"; -import { Create_as_targetContext } from "./PostgreSqlParser.js"; -import { Opt_with_dataContext } from "./PostgreSqlParser.js"; -import { CreatematviewstmtContext } from "./PostgreSqlParser.js"; -import { Create_mv_targetContext } from "./PostgreSqlParser.js"; -import { OptnologContext } from "./PostgreSqlParser.js"; -import { RefreshmatviewstmtContext } from "./PostgreSqlParser.js"; -import { CreateseqstmtContext } from "./PostgreSqlParser.js"; -import { AlterseqstmtContext } from "./PostgreSqlParser.js"; -import { OptseqoptlistContext } from "./PostgreSqlParser.js"; -import { OptparenthesizedseqoptlistContext } from "./PostgreSqlParser.js"; -import { SeqoptlistContext } from "./PostgreSqlParser.js"; -import { SeqoptelemContext } from "./PostgreSqlParser.js"; -import { Opt_byContext } from "./PostgreSqlParser.js"; -import { NumericonlyContext } from "./PostgreSqlParser.js"; -import { Numericonly_listContext } from "./PostgreSqlParser.js"; -import { CreateplangstmtContext } from "./PostgreSqlParser.js"; -import { Opt_trustedContext } from "./PostgreSqlParser.js"; -import { Handler_nameContext } from "./PostgreSqlParser.js"; -import { Opt_inline_handlerContext } from "./PostgreSqlParser.js"; -import { Validator_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_validatorContext } from "./PostgreSqlParser.js"; -import { Opt_proceduralContext } from "./PostgreSqlParser.js"; -import { CreatetablespacestmtContext } from "./PostgreSqlParser.js"; -import { OpttablespaceownerContext } from "./PostgreSqlParser.js"; -import { DroptablespacestmtContext } from "./PostgreSqlParser.js"; -import { CreateextensionstmtContext } from "./PostgreSqlParser.js"; -import { Create_extension_opt_listContext } from "./PostgreSqlParser.js"; -import { Create_extension_opt_itemContext } from "./PostgreSqlParser.js"; -import { AlterextensionstmtContext } from "./PostgreSqlParser.js"; -import { Alter_extension_opt_listContext } from "./PostgreSqlParser.js"; -import { Alter_extension_opt_itemContext } from "./PostgreSqlParser.js"; -import { AlterextensioncontentsstmtContext } from "./PostgreSqlParser.js"; -import { CreatefdwstmtContext } from "./PostgreSqlParser.js"; -import { Fdw_optionContext } from "./PostgreSqlParser.js"; -import { Fdw_optionsContext } from "./PostgreSqlParser.js"; -import { Opt_fdw_optionsContext } from "./PostgreSqlParser.js"; -import { AlterfdwstmtContext } from "./PostgreSqlParser.js"; -import { Create_generic_optionsContext } from "./PostgreSqlParser.js"; -import { Generic_option_listContext } from "./PostgreSqlParser.js"; -import { Alter_generic_optionsContext } from "./PostgreSqlParser.js"; -import { Alter_generic_option_listContext } from "./PostgreSqlParser.js"; -import { Alter_generic_option_elemContext } from "./PostgreSqlParser.js"; -import { Generic_option_elemContext } from "./PostgreSqlParser.js"; -import { Generic_option_nameContext } from "./PostgreSqlParser.js"; -import { Generic_option_argContext } from "./PostgreSqlParser.js"; -import { CreateforeignserverstmtContext } from "./PostgreSqlParser.js"; -import { Opt_typeContext } from "./PostgreSqlParser.js"; -import { Foreign_server_versionContext } from "./PostgreSqlParser.js"; -import { Opt_foreign_server_versionContext } from "./PostgreSqlParser.js"; -import { AlterforeignserverstmtContext } from "./PostgreSqlParser.js"; -import { CreateforeigntablestmtContext } from "./PostgreSqlParser.js"; -import { ImportforeignschemastmtContext } from "./PostgreSqlParser.js"; -import { Import_qualification_typeContext } from "./PostgreSqlParser.js"; -import { Import_qualificationContext } from "./PostgreSqlParser.js"; -import { CreateusermappingstmtContext } from "./PostgreSqlParser.js"; -import { Auth_identContext } from "./PostgreSqlParser.js"; -import { DropusermappingstmtContext } from "./PostgreSqlParser.js"; -import { AlterusermappingstmtContext } from "./PostgreSqlParser.js"; -import { CreatepolicystmtContext } from "./PostgreSqlParser.js"; -import { AlterpolicystmtContext } from "./PostgreSqlParser.js"; -import { RowsecurityoptionalexprContext } from "./PostgreSqlParser.js"; -import { RowsecurityoptionalwithcheckContext } from "./PostgreSqlParser.js"; -import { RowsecuritydefaulttoroleContext } from "./PostgreSqlParser.js"; -import { RowsecurityoptionaltoroleContext } from "./PostgreSqlParser.js"; -import { RowsecuritydefaultpermissiveContext } from "./PostgreSqlParser.js"; -import { RowsecuritydefaultforcmdContext } from "./PostgreSqlParser.js"; -import { Row_security_cmdContext } from "./PostgreSqlParser.js"; -import { CreateamstmtContext } from "./PostgreSqlParser.js"; -import { Am_typeContext } from "./PostgreSqlParser.js"; -import { CreatetrigstmtContext } from "./PostgreSqlParser.js"; -import { TriggeractiontimeContext } from "./PostgreSqlParser.js"; -import { TriggereventsContext } from "./PostgreSqlParser.js"; -import { TriggeroneeventContext } from "./PostgreSqlParser.js"; -import { TriggerreferencingContext } from "./PostgreSqlParser.js"; -import { TriggertransitionsContext } from "./PostgreSqlParser.js"; -import { TriggertransitionContext } from "./PostgreSqlParser.js"; -import { TransitionoldornewContext } from "./PostgreSqlParser.js"; -import { TransitionrowortableContext } from "./PostgreSqlParser.js"; -import { TransitionrelnameContext } from "./PostgreSqlParser.js"; -import { TriggerforspecContext } from "./PostgreSqlParser.js"; -import { TriggerforopteachContext } from "./PostgreSqlParser.js"; -import { TriggerfortypeContext } from "./PostgreSqlParser.js"; -import { TriggerwhenContext } from "./PostgreSqlParser.js"; -import { Function_or_procedureContext } from "./PostgreSqlParser.js"; -import { TriggerfuncargsContext } from "./PostgreSqlParser.js"; -import { TriggerfuncargContext } from "./PostgreSqlParser.js"; -import { OptconstrfromtableContext } from "./PostgreSqlParser.js"; -import { ConstraintattributespecContext } from "./PostgreSqlParser.js"; -import { ConstraintattributeElemContext } from "./PostgreSqlParser.js"; -import { CreateeventtrigstmtContext } from "./PostgreSqlParser.js"; -import { Event_trigger_when_listContext } from "./PostgreSqlParser.js"; -import { Event_trigger_when_itemContext } from "./PostgreSqlParser.js"; -import { Event_trigger_value_listContext } from "./PostgreSqlParser.js"; -import { AltereventtrigstmtContext } from "./PostgreSqlParser.js"; -import { Enable_triggerContext } from "./PostgreSqlParser.js"; -import { CreateassertionstmtContext } from "./PostgreSqlParser.js"; -import { DefinestmtContext } from "./PostgreSqlParser.js"; +import { ColumnQualifierListContext } from "./PostgreSqlParser.js"; +import { ColumnConstraintContext } from "./PostgreSqlParser.js"; +import { ColumnConstraintElementContext } from "./PostgreSqlParser.js"; +import { GeneratedWhenContext } from "./PostgreSqlParser.js"; +import { ConstraintAttributeContext } from "./PostgreSqlParser.js"; +import { TableLikeClauseContext } from "./PostgreSqlParser.js"; +import { TableLikeOptionListContext } from "./PostgreSqlParser.js"; +import { TableLikeOptionContext } from "./PostgreSqlParser.js"; +import { TableConstraintContext } from "./PostgreSqlParser.js"; +import { ConstraintElementContext } from "./PostgreSqlParser.js"; +import { ColumnListWithParenthesesContext } from "./PostgreSqlParser.js"; +import { ColumnListContext } from "./PostgreSqlParser.js"; +import { ColumnElementContext } from "./PostgreSqlParser.js"; +import { OptionalColumnListIncludeContext } from "./PostgreSqlParser.js"; +import { MatchClauseContext } from "./PostgreSqlParser.js"; +import { ExclusionConstraintListContext } from "./PostgreSqlParser.js"; +import { ExclusionConstraintElementContext } from "./PostgreSqlParser.js"; +import { ExclusionWhereClauseContext } from "./PostgreSqlParser.js"; +import { KeyActionsContext } from "./PostgreSqlParser.js"; +import { OnKeyUpdateClauseContext } from "./PostgreSqlParser.js"; +import { OnKeyDeleteClauseContext } from "./PostgreSqlParser.js"; +import { KeyActionContext } from "./PostgreSqlParser.js"; +import { InheritClauseContext } from "./PostgreSqlParser.js"; +import { OptionalPartitionSpecificationContext } from "./PostgreSqlParser.js"; +import { PartitionSpecificationContext } from "./PostgreSqlParser.js"; +import { PartitionElementsContext } from "./PostgreSqlParser.js"; +import { PartitionElementContext } from "./PostgreSqlParser.js"; +import { OptionalTableAccessMethodClauseContext } from "./PostgreSqlParser.js"; +import { WithContext } from "./PostgreSqlParser.js"; +import { OnCommitOptionContext } from "./PostgreSqlParser.js"; +import { OptionalTablespaceContext } from "./PostgreSqlParser.js"; +import { UsingIndexTablespaceContext } from "./PostgreSqlParser.js"; +import { ExistingIndexContext } from "./PostgreSqlParser.js"; +import { CreateStatsStatementContext } from "./PostgreSqlParser.js"; +import { AlterStatsStatementContext } from "./PostgreSqlParser.js"; +import { CreateAsStatementContext } from "./PostgreSqlParser.js"; +import { CreateAsTargetContext } from "./PostgreSqlParser.js"; +import { WithDataContext } from "./PostgreSqlParser.js"; +import { CreateMaterializedViewStatementContext } from "./PostgreSqlParser.js"; +import { CreateMaterializedViewTargetContext } from "./PostgreSqlParser.js"; +import { RefreshMaterializedViewStatementContext } from "./PostgreSqlParser.js"; +import { CreateSequenceStatementContext } from "./PostgreSqlParser.js"; +import { AlterSequenceStatementContext } from "./PostgreSqlParser.js"; +import { OptionalParenthesizedSeqOptionsListContext } from "./PostgreSqlParser.js"; +import { SequenceOptionListContext } from "./PostgreSqlParser.js"; +import { SequenceOptionItemContext } from "./PostgreSqlParser.js"; +import { NumericOnlyContext } from "./PostgreSqlParser.js"; +import { NumericOnlyListContext } from "./PostgreSqlParser.js"; +import { CreateProcedureLangStatementContext } from "./PostgreSqlParser.js"; +import { HandlerNameContext } from "./PostgreSqlParser.js"; +import { OptionalInlineHandlerContext } from "./PostgreSqlParser.js"; +import { ValidatorClauseContext } from "./PostgreSqlParser.js"; +import { OptionalProceduralContext } from "./PostgreSqlParser.js"; +import { CreateTablespaceStatementContext } from "./PostgreSqlParser.js"; +import { OptionalTablespaceOwnerContext } from "./PostgreSqlParser.js"; +import { DropTablespaceStatementContext } from "./PostgreSqlParser.js"; +import { CreateExtensionStatementContext } from "./PostgreSqlParser.js"; +import { CreateExtensionOptionItemContext } from "./PostgreSqlParser.js"; +import { AlterExtensionStatementContext } from "./PostgreSqlParser.js"; +import { AlterExtensionOptionItemContext } from "./PostgreSqlParser.js"; +import { AlterExtensionContentsStatementContext } from "./PostgreSqlParser.js"; +import { CreateForeignDataWrapperStatementContext } from "./PostgreSqlParser.js"; +import { ForwardOptionContext } from "./PostgreSqlParser.js"; +import { ForwardOptionsContext } from "./PostgreSqlParser.js"; +import { AlterForeignDataWrapperStatementContext } from "./PostgreSqlParser.js"; +import { CreateGenericOptionsContext } from "./PostgreSqlParser.js"; +import { GenericOptionListContext } from "./PostgreSqlParser.js"; +import { AlterGenericOptionsContext } from "./PostgreSqlParser.js"; +import { AlterGenericOptionListContext } from "./PostgreSqlParser.js"; +import { AlterGenericOptionElemContext } from "./PostgreSqlParser.js"; +import { GenericOptionElementContext } from "./PostgreSqlParser.js"; +import { GenericOptionNameContext } from "./PostgreSqlParser.js"; +import { GenericOptionArgumentContext } from "./PostgreSqlParser.js"; +import { CreateForeignServerStatementContext } from "./PostgreSqlParser.js"; +import { OptionalTypeContext } from "./PostgreSqlParser.js"; +import { ForeignServerVersionContext } from "./PostgreSqlParser.js"; +import { AlterForeignServerStatementContext } from "./PostgreSqlParser.js"; +import { CreateForeignTableStatementContext } from "./PostgreSqlParser.js"; +import { ImportForeignSchemaStatementContext } from "./PostgreSqlParser.js"; +import { ImportQualificationTypeContext } from "./PostgreSqlParser.js"; +import { ImportQualificationContext } from "./PostgreSqlParser.js"; +import { CreateUserMappingStatementContext } from "./PostgreSqlParser.js"; +import { AuthIdentifierContext } from "./PostgreSqlParser.js"; +import { DropUserMappingStatementContext } from "./PostgreSqlParser.js"; +import { AlterUserMappingStatementContext } from "./PostgreSqlParser.js"; +import { CreatePolicyStatementContext } from "./PostgreSqlParser.js"; +import { AlterPolicyStatementContext } from "./PostgreSqlParser.js"; +import { RowSecurityOptionalExpressionContext } from "./PostgreSqlParser.js"; +import { RowSecurityOptionalWithCheckContext } from "./PostgreSqlParser.js"; +import { RowSecurityDefaultToRoleContext } from "./PostgreSqlParser.js"; +import { RowSecurityOptionalToRoleContext } from "./PostgreSqlParser.js"; +import { RowSecurityDefaultPermissiveContext } from "./PostgreSqlParser.js"; +import { RowSecurityDefaultForCmdContext } from "./PostgreSqlParser.js"; +import { RowSecurityCommandContext } from "./PostgreSqlParser.js"; +import { CreateAccessMethodStatementContext } from "./PostgreSqlParser.js"; +import { AccessMethodTypeContext } from "./PostgreSqlParser.js"; +import { CreateTriggerStatementContext } from "./PostgreSqlParser.js"; +import { TriggerActionTimeContext } from "./PostgreSqlParser.js"; +import { TriggerEventsContext } from "./PostgreSqlParser.js"; +import { TriggerOneEventContext } from "./PostgreSqlParser.js"; +import { TriggerReferencingContext } from "./PostgreSqlParser.js"; +import { TriggerTransitionsContext } from "./PostgreSqlParser.js"; +import { TriggerTransitionContext } from "./PostgreSqlParser.js"; +import { TransitionOldOrNewContext } from "./PostgreSqlParser.js"; +import { TransitionRowOrTableContext } from "./PostgreSqlParser.js"; +import { TransitionRelNameContext } from "./PostgreSqlParser.js"; +import { TriggerForSpecContext } from "./PostgreSqlParser.js"; +import { TriggerForTypeContext } from "./PostgreSqlParser.js"; +import { TriggerWhenContext } from "./PostgreSqlParser.js"; +import { FunctionOrProcedureContext } from "./PostgreSqlParser.js"; +import { TriggerFunctionArgumentsContext } from "./PostgreSqlParser.js"; +import { TriggerFunctionArgumentContext } from "./PostgreSqlParser.js"; +import { OptionalConstraintFromTableContext } from "./PostgreSqlParser.js"; +import { ConstraintAttributeSpecificationContext } from "./PostgreSqlParser.js"; +import { ConstraintAttributeElementContext } from "./PostgreSqlParser.js"; +import { CreateEventTriggerStatementContext } from "./PostgreSqlParser.js"; +import { EventTriggerWhenListContext } from "./PostgreSqlParser.js"; +import { EventTriggerWhenItemContext } from "./PostgreSqlParser.js"; +import { EventTriggerValueListContext } from "./PostgreSqlParser.js"; +import { AlterEventTriggerStatementContext } from "./PostgreSqlParser.js"; +import { EnableTriggerContext } from "./PostgreSqlParser.js"; +import { CreateAssertionStatementContext } from "./PostgreSqlParser.js"; +import { DefineStatementContext } from "./PostgreSqlParser.js"; import { DefinitionContext } from "./PostgreSqlParser.js"; -import { Def_listContext } from "./PostgreSqlParser.js"; -import { Def_elemContext } from "./PostgreSqlParser.js"; -import { Def_argContext } from "./PostgreSqlParser.js"; -import { Old_aggr_definitionContext } from "./PostgreSqlParser.js"; -import { Old_aggr_listContext } from "./PostgreSqlParser.js"; -import { Old_aggr_elemContext } from "./PostgreSqlParser.js"; -import { Opt_enum_val_listContext } from "./PostgreSqlParser.js"; -import { Enum_val_listContext } from "./PostgreSqlParser.js"; -import { AlterenumstmtContext } from "./PostgreSqlParser.js"; -import { Opt_if_not_existsContext } from "./PostgreSqlParser.js"; -import { CreateopclassstmtContext } from "./PostgreSqlParser.js"; -import { Opclass_item_listContext } from "./PostgreSqlParser.js"; -import { Opclass_itemContext } from "./PostgreSqlParser.js"; -import { Opt_defaultContext } from "./PostgreSqlParser.js"; -import { Opt_opfamilyContext } from "./PostgreSqlParser.js"; -import { Opclass_purposeContext } from "./PostgreSqlParser.js"; -import { Opt_recheckContext } from "./PostgreSqlParser.js"; -import { CreateopfamilystmtContext } from "./PostgreSqlParser.js"; -import { AlteropfamilystmtContext } from "./PostgreSqlParser.js"; -import { Opclass_drop_listContext } from "./PostgreSqlParser.js"; -import { Opclass_dropContext } from "./PostgreSqlParser.js"; -import { DropopclassstmtContext } from "./PostgreSqlParser.js"; -import { DropopfamilystmtContext } from "./PostgreSqlParser.js"; -import { DropownedstmtContext } from "./PostgreSqlParser.js"; -import { ReassignownedstmtContext } from "./PostgreSqlParser.js"; -import { DropstmtContext } from "./PostgreSqlParser.js"; -import { Object_type_any_nameContext } from "./PostgreSqlParser.js"; -import { Object_type_nameContext } from "./PostgreSqlParser.js"; -import { Drop_type_nameContext } from "./PostgreSqlParser.js"; -import { Object_type_name_on_any_nameContext } from "./PostgreSqlParser.js"; -import { Any_name_listContext } from "./PostgreSqlParser.js"; -import { Any_nameContext } from "./PostgreSqlParser.js"; -import { AttrsContext } from "./PostgreSqlParser.js"; -import { Type_name_listContext } from "./PostgreSqlParser.js"; -import { TruncatestmtContext } from "./PostgreSqlParser.js"; -import { Opt_restart_seqsContext } from "./PostgreSqlParser.js"; -import { CommentstmtContext } from "./PostgreSqlParser.js"; -import { Comment_textContext } from "./PostgreSqlParser.js"; -import { SeclabelstmtContext } from "./PostgreSqlParser.js"; -import { Opt_providerContext } from "./PostgreSqlParser.js"; -import { Security_labelContext } from "./PostgreSqlParser.js"; -import { FetchstmtContext } from "./PostgreSqlParser.js"; -import { Fetch_argsContext } from "./PostgreSqlParser.js"; -import { From_inContext } from "./PostgreSqlParser.js"; -import { Opt_from_inContext } from "./PostgreSqlParser.js"; -import { GrantstmtContext } from "./PostgreSqlParser.js"; -import { RevokestmtContext } from "./PostgreSqlParser.js"; +import { DefinitionElementContext } from "./PostgreSqlParser.js"; +import { DefinitionArgumentContext } from "./PostgreSqlParser.js"; +import { OldAggregateDefinitionContext } from "./PostgreSqlParser.js"; +import { OldAggregateElementContext } from "./PostgreSqlParser.js"; +import { EnumValueListContext } from "./PostgreSqlParser.js"; +import { AlterEnumStatementContext } from "./PostgreSqlParser.js"; +import { OptionalIfNotExistsContext } from "./PostgreSqlParser.js"; +import { CreateOperatorClassStatementContext } from "./PostgreSqlParser.js"; +import { OperatorClassItemListContext } from "./PostgreSqlParser.js"; +import { OperatorClassItemContext } from "./PostgreSqlParser.js"; +import { OptionalOperatorFamilyContext } from "./PostgreSqlParser.js"; +import { OperatorClassPurposeContext } from "./PostgreSqlParser.js"; +import { CreateOperatorFamilyStatementContext } from "./PostgreSqlParser.js"; +import { AlterOperatorFamilyStatementContext } from "./PostgreSqlParser.js"; +import { OperatorClassDropListContext } from "./PostgreSqlParser.js"; +import { OperatorClassDropContext } from "./PostgreSqlParser.js"; +import { DropOperatorClassStatementContext } from "./PostgreSqlParser.js"; +import { DropOperatorFamilyStatementContext } from "./PostgreSqlParser.js"; +import { DropOwnedStatementContext } from "./PostgreSqlParser.js"; +import { ReassignOwnedStatementContext } from "./PostgreSqlParser.js"; +import { DropStatementContext } from "./PostgreSqlParser.js"; +import { ObjectTypeAnyNameContext } from "./PostgreSqlParser.js"; +import { ObjectTypeNameContext } from "./PostgreSqlParser.js"; +import { DropTypeNameContext } from "./PostgreSqlParser.js"; +import { ObjectTypeNameOnAnyNameContext } from "./PostgreSqlParser.js"; +import { AnyNameListContext } from "./PostgreSqlParser.js"; +import { AnyNameContext } from "./PostgreSqlParser.js"; +import { AttributesContext } from "./PostgreSqlParser.js"; +import { TypeNameListContext } from "./PostgreSqlParser.js"; +import { TruncateStatementContext } from "./PostgreSqlParser.js"; +import { OptionalRestartSequencesContext } from "./PostgreSqlParser.js"; +import { CommentStatementContext } from "./PostgreSqlParser.js"; +import { CommentTextContext } from "./PostgreSqlParser.js"; +import { SecurityLabelStatementContext } from "./PostgreSqlParser.js"; +import { OptionalProviderContext } from "./PostgreSqlParser.js"; +import { SecurityLabelContext } from "./PostgreSqlParser.js"; +import { FetchStatementContext } from "./PostgreSqlParser.js"; +import { FetchArgumentsContext } from "./PostgreSqlParser.js"; +import { FromOrInContext } from "./PostgreSqlParser.js"; +import { OptionalFromOrInContext } from "./PostgreSqlParser.js"; +import { GrantStatementContext } from "./PostgreSqlParser.js"; +import { RevokeStatementContext } from "./PostgreSqlParser.js"; import { PrivilegesContext } from "./PostgreSqlParser.js"; -import { Privilege_listContext } from "./PostgreSqlParser.js"; +import { PrivilegeListContext } from "./PostgreSqlParser.js"; import { PrivilegeContext } from "./PostgreSqlParser.js"; -import { Privilege_targetContext } from "./PostgreSqlParser.js"; -import { Grantee_listContext } from "./PostgreSqlParser.js"; +import { PrivilegeTargetContext } from "./PostgreSqlParser.js"; +import { GranteeListContext } from "./PostgreSqlParser.js"; import { GranteeContext } from "./PostgreSqlParser.js"; -import { Opt_grant_grant_optionContext } from "./PostgreSqlParser.js"; -import { GrantrolestmtContext } from "./PostgreSqlParser.js"; -import { RevokerolestmtContext } from "./PostgreSqlParser.js"; -import { Opt_grant_admin_optionContext } from "./PostgreSqlParser.js"; -import { Opt_granted_byContext } from "./PostgreSqlParser.js"; -import { AlterdefaultprivilegesstmtContext } from "./PostgreSqlParser.js"; -import { DefacloptionlistContext } from "./PostgreSqlParser.js"; -import { DefacloptionContext } from "./PostgreSqlParser.js"; -import { DefaclactionContext } from "./PostgreSqlParser.js"; -import { Defacl_privilege_targetContext } from "./PostgreSqlParser.js"; -import { IndexstmtContext } from "./PostgreSqlParser.js"; -import { Opt_uniqueContext } from "./PostgreSqlParser.js"; -import { Opt_concurrentlyContext } from "./PostgreSqlParser.js"; -import { Opt_index_nameContext } from "./PostgreSqlParser.js"; -import { Access_method_clauseContext } from "./PostgreSqlParser.js"; -import { Index_paramsContext } from "./PostgreSqlParser.js"; -import { Index_elem_optionsContext } from "./PostgreSqlParser.js"; -import { Index_elemContext } from "./PostgreSqlParser.js"; -import { Opt_includeContext } from "./PostgreSqlParser.js"; -import { Index_including_paramsContext } from "./PostgreSqlParser.js"; -import { Opt_collateContext } from "./PostgreSqlParser.js"; -import { Opt_classContext } from "./PostgreSqlParser.js"; -import { Opt_asc_descContext } from "./PostgreSqlParser.js"; -import { Opt_nulls_orderContext } from "./PostgreSqlParser.js"; -import { CreatefunctionstmtContext } from "./PostgreSqlParser.js"; -import { Opt_or_replaceContext } from "./PostgreSqlParser.js"; -import { Func_argsContext } from "./PostgreSqlParser.js"; -import { Func_args_listContext } from "./PostgreSqlParser.js"; -import { Function_with_argtypes_listContext } from "./PostgreSqlParser.js"; -import { Function_with_argtypesContext } from "./PostgreSqlParser.js"; -import { Func_args_with_defaultsContext } from "./PostgreSqlParser.js"; -import { Func_args_with_defaults_listContext } from "./PostgreSqlParser.js"; -import { Func_argContext } from "./PostgreSqlParser.js"; -import { Arg_classContext } from "./PostgreSqlParser.js"; -import { Param_nameContext } from "./PostgreSqlParser.js"; -import { Func_returnContext } from "./PostgreSqlParser.js"; -import { Func_typeContext } from "./PostgreSqlParser.js"; -import { Func_arg_with_defaultContext } from "./PostgreSqlParser.js"; -import { Aggr_argContext } from "./PostgreSqlParser.js"; -import { Aggr_argsContext } from "./PostgreSqlParser.js"; -import { Aggr_args_listContext } from "./PostgreSqlParser.js"; -import { Aggregate_with_argtypesContext } from "./PostgreSqlParser.js"; -import { Aggregate_with_argtypes_listContext } from "./PostgreSqlParser.js"; -import { Createfunc_opt_listContext } from "./PostgreSqlParser.js"; -import { Common_func_opt_itemContext } from "./PostgreSqlParser.js"; -import { Createfunc_opt_itemContext } from "./PostgreSqlParser.js"; -import { Func_asContext } from "./PostgreSqlParser.js"; -import { Transform_type_listContext } from "./PostgreSqlParser.js"; -import { Opt_definitionContext } from "./PostgreSqlParser.js"; -import { Table_func_columnContext } from "./PostgreSqlParser.js"; -import { Table_func_column_listContext } from "./PostgreSqlParser.js"; -import { AlterfunctionstmtContext } from "./PostgreSqlParser.js"; -import { Alterfunc_opt_listContext } from "./PostgreSqlParser.js"; -import { Opt_restrictContext } from "./PostgreSqlParser.js"; -import { RemovefuncstmtContext } from "./PostgreSqlParser.js"; -import { RemoveaggrstmtContext } from "./PostgreSqlParser.js"; -import { RemoveoperstmtContext } from "./PostgreSqlParser.js"; -import { Oper_argtypesContext } from "./PostgreSqlParser.js"; -import { Any_operatorContext } from "./PostgreSqlParser.js"; -import { Operator_with_argtypes_listContext } from "./PostgreSqlParser.js"; -import { Operator_with_argtypesContext } from "./PostgreSqlParser.js"; -import { DostmtContext } from "./PostgreSqlParser.js"; -import { Dostmt_opt_listContext } from "./PostgreSqlParser.js"; -import { Dostmt_opt_itemContext } from "./PostgreSqlParser.js"; -import { CreatecaststmtContext } from "./PostgreSqlParser.js"; -import { Cast_contextContext } from "./PostgreSqlParser.js"; -import { DropcaststmtContext } from "./PostgreSqlParser.js"; -import { Opt_if_existsContext } from "./PostgreSqlParser.js"; -import { CreatetransformstmtContext } from "./PostgreSqlParser.js"; -import { Transform_element_listContext } from "./PostgreSqlParser.js"; -import { DroptransformstmtContext } from "./PostgreSqlParser.js"; -import { ReindexstmtContext } from "./PostgreSqlParser.js"; -import { Reindex_target_typeContext } from "./PostgreSqlParser.js"; -import { Reindex_target_multitableContext } from "./PostgreSqlParser.js"; -import { Reindex_option_listContext } from "./PostgreSqlParser.js"; -import { Reindex_option_elemContext } from "./PostgreSqlParser.js"; -import { AltertblspcstmtContext } from "./PostgreSqlParser.js"; -import { RenamestmtContext } from "./PostgreSqlParser.js"; -import { Opt_columnContext } from "./PostgreSqlParser.js"; -import { Opt_set_dataContext } from "./PostgreSqlParser.js"; -import { AlterobjectdependsstmtContext } from "./PostgreSqlParser.js"; -import { Opt_noContext } from "./PostgreSqlParser.js"; -import { AlterobjectschemastmtContext } from "./PostgreSqlParser.js"; -import { AlteroperatorstmtContext } from "./PostgreSqlParser.js"; -import { Operator_def_listContext } from "./PostgreSqlParser.js"; -import { Operator_def_elemContext } from "./PostgreSqlParser.js"; -import { Operator_def_argContext } from "./PostgreSqlParser.js"; -import { AltertypestmtContext } from "./PostgreSqlParser.js"; -import { AlterownerstmtContext } from "./PostgreSqlParser.js"; -import { CreatepublicationstmtContext } from "./PostgreSqlParser.js"; -import { Opt_publication_for_tablesContext } from "./PostgreSqlParser.js"; -import { Publication_for_tablesContext } from "./PostgreSqlParser.js"; -import { AlterpublicationstmtContext } from "./PostgreSqlParser.js"; -import { CreatesubscriptionstmtContext } from "./PostgreSqlParser.js"; -import { Publication_name_listContext } from "./PostgreSqlParser.js"; -import { Publication_name_itemContext } from "./PostgreSqlParser.js"; -import { AltersubscriptionstmtContext } from "./PostgreSqlParser.js"; -import { DropsubscriptionstmtContext } from "./PostgreSqlParser.js"; -import { RulestmtContext } from "./PostgreSqlParser.js"; -import { RuleactionlistContext } from "./PostgreSqlParser.js"; -import { RuleactionmultiContext } from "./PostgreSqlParser.js"; -import { RuleactionstmtContext } from "./PostgreSqlParser.js"; -import { RuleactionstmtOrEmptyContext } from "./PostgreSqlParser.js"; +import { OptionalWithGrantOptionContext } from "./PostgreSqlParser.js"; +import { GrantRoleStatementContext } from "./PostgreSqlParser.js"; +import { RevokeRoleStatementContext } from "./PostgreSqlParser.js"; +import { OptionalGrantAdminOptionContext } from "./PostgreSqlParser.js"; +import { OptionalGrantedByContext } from "./PostgreSqlParser.js"; +import { AlterDefaultPrivilegesStatementContext } from "./PostgreSqlParser.js"; +import { DefultPrivilegeOptionContext } from "./PostgreSqlParser.js"; +import { DefaultPrivelegeActionContext } from "./PostgreSqlParser.js"; +import { DefultPrivilegeTargetContext } from "./PostgreSqlParser.js"; +import { IndexStatementContext } from "./PostgreSqlParser.js"; +import { OptionalConcurrentlyContext } from "./PostgreSqlParser.js"; +import { OptionalAccessMethodClauseContext } from "./PostgreSqlParser.js"; +import { IndexParametersContext } from "./PostgreSqlParser.js"; +import { IndexElemOptionsContext } from "./PostgreSqlParser.js"; +import { IndexElementContext } from "./PostgreSqlParser.js"; +import { OptionalIncludeContext } from "./PostgreSqlParser.js"; +import { OptionalCollateContext } from "./PostgreSqlParser.js"; +import { OptionalClassContext } from "./PostgreSqlParser.js"; +import { OptionalAscOrDescContext } from "./PostgreSqlParser.js"; +import { OptionalNullsOrderContext } from "./PostgreSqlParser.js"; +import { CreateFunctionStatementContext } from "./PostgreSqlParser.js"; +import { OptionalOrReplaceContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentsListContext } from "./PostgreSqlParser.js"; +import { FunctionWithArgumentTypesListContext } from "./PostgreSqlParser.js"; +import { FunctionWithArgumentTypesContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentsWithDefaultsListContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentWithDefaultContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentContext } from "./PostgreSqlParser.js"; +import { ArgumentClassContext } from "./PostgreSqlParser.js"; +import { ParameterNameContext } from "./PostgreSqlParser.js"; +import { FunctionReturnContext } from "./PostgreSqlParser.js"; +import { FunctionTypeContext } from "./PostgreSqlParser.js"; +import { AggregateArgumentsContext } from "./PostgreSqlParser.js"; +import { AggregateArgumentsListContext } from "./PostgreSqlParser.js"; +import { AggregateWithArgumentTypesContext } from "./PostgreSqlParser.js"; +import { AggregateWithArgumentTypesListContext } from "./PostgreSqlParser.js"; +import { CreateFunctionOptionListContext } from "./PostgreSqlParser.js"; +import { CommonFunctionOptionItemContext } from "./PostgreSqlParser.js"; +import { CreateFunctionOptionItemContext } from "./PostgreSqlParser.js"; +import { FunctionAsContext } from "./PostgreSqlParser.js"; +import { TransformTypeListContext } from "./PostgreSqlParser.js"; +import { OptionalDefinitionContext } from "./PostgreSqlParser.js"; +import { TableFunctionColumnContext } from "./PostgreSqlParser.js"; +import { TableFunctionColumnListContext } from "./PostgreSqlParser.js"; +import { AlterFunctionStatementContext } from "./PostgreSqlParser.js"; +import { RemoveFunctionStatementContext } from "./PostgreSqlParser.js"; +import { RemoveAggregateStatementContext } from "./PostgreSqlParser.js"; +import { RemoveOperatorStatementContext } from "./PostgreSqlParser.js"; +import { OperatorArgumentTypesContext } from "./PostgreSqlParser.js"; +import { AnyOperatorContext } from "./PostgreSqlParser.js"; +import { OperatorWithArgumentTypesListContext } from "./PostgreSqlParser.js"; +import { OperatorWithArgumentTypesContext } from "./PostgreSqlParser.js"; +import { DoStatementContext } from "./PostgreSqlParser.js"; +import { DoStatementOptionsListContext } from "./PostgreSqlParser.js"; +import { DoStatementOptionItemContext } from "./PostgreSqlParser.js"; +import { CreateCastStatementContext } from "./PostgreSqlParser.js"; +import { CastContextContext } from "./PostgreSqlParser.js"; +import { DropCastStatementContext } from "./PostgreSqlParser.js"; +import { OptionalIfExistsContext } from "./PostgreSqlParser.js"; +import { CreateTransformStatementContext } from "./PostgreSqlParser.js"; +import { TransformElementListContext } from "./PostgreSqlParser.js"; +import { DropTransformStatementContext } from "./PostgreSqlParser.js"; +import { ReindexStatementContext } from "./PostgreSqlParser.js"; +import { ReindexTargetTypeContext } from "./PostgreSqlParser.js"; +import { ReindexTargetMultiTableContext } from "./PostgreSqlParser.js"; +import { ReindexOptionListContext } from "./PostgreSqlParser.js"; +import { ReindexOptionElementContext } from "./PostgreSqlParser.js"; +import { AlterTablespaceStatementContext } from "./PostgreSqlParser.js"; +import { RenameStatementContext } from "./PostgreSqlParser.js"; +import { OptionalColumnContext } from "./PostgreSqlParser.js"; +import { OptionalSetDataContext } from "./PostgreSqlParser.js"; +import { AlterObjectDependsStatementContext } from "./PostgreSqlParser.js"; +import { AlterObjectSchemaStatementContext } from "./PostgreSqlParser.js"; +import { AlterOperatorStatementContext } from "./PostgreSqlParser.js"; +import { OperatorDefinitionListContext } from "./PostgreSqlParser.js"; +import { OperatorDefinitionElementContext } from "./PostgreSqlParser.js"; +import { OperatorDefinitionArgumentContext } from "./PostgreSqlParser.js"; +import { AlterTypeStatementContext } from "./PostgreSqlParser.js"; +import { AlterOwnerStatementContext } from "./PostgreSqlParser.js"; +import { CreatePublicationStatementContext } from "./PostgreSqlParser.js"; +import { OptionalPublicationForTablesContext } from "./PostgreSqlParser.js"; +import { PublicationForTablesContext } from "./PostgreSqlParser.js"; +import { AlterPublicationStatementContext } from "./PostgreSqlParser.js"; +import { CreateSubscriptionStatementContext } from "./PostgreSqlParser.js"; +import { PublicationNameListContext } from "./PostgreSqlParser.js"; +import { PublicationNameItemContext } from "./PostgreSqlParser.js"; +import { AlterSubscriptionStatementContext } from "./PostgreSqlParser.js"; +import { DropSubscriptionStatementContext } from "./PostgreSqlParser.js"; +import { RuleStatementContext } from "./PostgreSqlParser.js"; +import { RuleActionListContext } from "./PostgreSqlParser.js"; +import { RuleActionMultiContext } from "./PostgreSqlParser.js"; +import { RuleActionStatementContext } from "./PostgreSqlParser.js"; +import { RuleActionStatementOrEmptyContext } from "./PostgreSqlParser.js"; import { EventContext } from "./PostgreSqlParser.js"; -import { Opt_insteadContext } from "./PostgreSqlParser.js"; -import { NotifystmtContext } from "./PostgreSqlParser.js"; -import { Notify_payloadContext } from "./PostgreSqlParser.js"; -import { ListenstmtContext } from "./PostgreSqlParser.js"; -import { UnlistenstmtContext } from "./PostgreSqlParser.js"; -import { TransactionstmtContext } from "./PostgreSqlParser.js"; -import { Opt_transactionContext } from "./PostgreSqlParser.js"; -import { Transaction_mode_itemContext } from "./PostgreSqlParser.js"; -import { Transaction_mode_listContext } from "./PostgreSqlParser.js"; -import { Transaction_mode_list_or_emptyContext } from "./PostgreSqlParser.js"; -import { Opt_transaction_chainContext } from "./PostgreSqlParser.js"; -import { ViewstmtContext } from "./PostgreSqlParser.js"; -import { Opt_check_optionContext } from "./PostgreSqlParser.js"; -import { LoadstmtContext } from "./PostgreSqlParser.js"; -import { CreatedbstmtContext } from "./PostgreSqlParser.js"; -import { Createdb_opt_listContext } from "./PostgreSqlParser.js"; -import { Createdb_opt_itemsContext } from "./PostgreSqlParser.js"; -import { Createdb_opt_itemContext } from "./PostgreSqlParser.js"; -import { Createdb_opt_nameContext } from "./PostgreSqlParser.js"; -import { Opt_equalContext } from "./PostgreSqlParser.js"; -import { AlterdatabasestmtContext } from "./PostgreSqlParser.js"; -import { AlterdatabasesetstmtContext } from "./PostgreSqlParser.js"; -import { DropdbstmtContext } from "./PostgreSqlParser.js"; -import { Drop_option_listContext } from "./PostgreSqlParser.js"; -import { Drop_optionContext } from "./PostgreSqlParser.js"; -import { AltercollationstmtContext } from "./PostgreSqlParser.js"; -import { AltersystemstmtContext } from "./PostgreSqlParser.js"; -import { CreatedomainstmtContext } from "./PostgreSqlParser.js"; -import { AlterdomainstmtContext } from "./PostgreSqlParser.js"; -import { Opt_asContext } from "./PostgreSqlParser.js"; -import { AltertsdictionarystmtContext } from "./PostgreSqlParser.js"; -import { AltertsconfigurationstmtContext } from "./PostgreSqlParser.js"; -import { Any_withContext } from "./PostgreSqlParser.js"; -import { CreateconversionstmtContext } from "./PostgreSqlParser.js"; -import { ClusterstmtContext } from "./PostgreSqlParser.js"; -import { Cluster_index_specificationContext } from "./PostgreSqlParser.js"; -import { VacuumstmtContext } from "./PostgreSqlParser.js"; -import { AnalyzestmtContext } from "./PostgreSqlParser.js"; -import { Vac_analyze_option_listContext } from "./PostgreSqlParser.js"; -import { Analyze_keywordContext } from "./PostgreSqlParser.js"; -import { Vac_analyze_option_elemContext } from "./PostgreSqlParser.js"; -import { Vac_analyze_option_nameContext } from "./PostgreSqlParser.js"; -import { Vac_analyze_option_argContext } from "./PostgreSqlParser.js"; -import { Opt_analyzeContext } from "./PostgreSqlParser.js"; -import { Opt_verboseContext } from "./PostgreSqlParser.js"; -import { Opt_fullContext } from "./PostgreSqlParser.js"; -import { Opt_freezeContext } from "./PostgreSqlParser.js"; -import { Opt_name_listContext } from "./PostgreSqlParser.js"; -import { Vacuum_relationContext } from "./PostgreSqlParser.js"; -import { Vacuum_relation_listContext } from "./PostgreSqlParser.js"; -import { Opt_vacuum_relation_listContext } from "./PostgreSqlParser.js"; -import { ExplainstmtContext } from "./PostgreSqlParser.js"; -import { ExplainablestmtContext } from "./PostgreSqlParser.js"; -import { Explain_option_listContext } from "./PostgreSqlParser.js"; -import { Explain_option_elemContext } from "./PostgreSqlParser.js"; -import { Explain_option_nameContext } from "./PostgreSqlParser.js"; -import { Explain_option_argContext } from "./PostgreSqlParser.js"; -import { PreparestmtContext } from "./PostgreSqlParser.js"; -import { Prep_type_clauseContext } from "./PostgreSqlParser.js"; -import { PreparablestmtContext } from "./PostgreSqlParser.js"; -import { ExecutestmtContext } from "./PostgreSqlParser.js"; -import { Execute_param_clauseContext } from "./PostgreSqlParser.js"; -import { DeallocatestmtContext } from "./PostgreSqlParser.js"; -import { InsertstmtContext } from "./PostgreSqlParser.js"; -import { Insert_targetContext } from "./PostgreSqlParser.js"; -import { Insert_restContext } from "./PostgreSqlParser.js"; -import { Override_kindContext } from "./PostgreSqlParser.js"; -import { Insert_column_listContext } from "./PostgreSqlParser.js"; -import { Insert_column_itemContext } from "./PostgreSqlParser.js"; -import { Opt_on_conflictContext } from "./PostgreSqlParser.js"; -import { Opt_conf_exprContext } from "./PostgreSqlParser.js"; -import { Returning_clauseContext } from "./PostgreSqlParser.js"; -import { MergestmtContext } from "./PostgreSqlParser.js"; -import { Merge_insert_clauseContext } from "./PostgreSqlParser.js"; -import { Merge_update_clauseContext } from "./PostgreSqlParser.js"; -import { Merge_delete_clauseContext } from "./PostgreSqlParser.js"; -import { DeletestmtContext } from "./PostgreSqlParser.js"; -import { Using_clauseContext } from "./PostgreSqlParser.js"; -import { LockstmtContext } from "./PostgreSqlParser.js"; -import { Opt_lockContext } from "./PostgreSqlParser.js"; -import { Lock_typeContext } from "./PostgreSqlParser.js"; -import { Opt_nowaitContext } from "./PostgreSqlParser.js"; -import { Opt_nowait_or_skipContext } from "./PostgreSqlParser.js"; -import { UpdatestmtContext } from "./PostgreSqlParser.js"; -import { Set_clause_listContext } from "./PostgreSqlParser.js"; -import { Set_clauseContext } from "./PostgreSqlParser.js"; -import { Set_targetContext } from "./PostgreSqlParser.js"; -import { Set_target_listContext } from "./PostgreSqlParser.js"; -import { DeclarecursorstmtContext } from "./PostgreSqlParser.js"; -import { Cursor_nameContext } from "./PostgreSqlParser.js"; -import { Cursor_optionsContext } from "./PostgreSqlParser.js"; -import { Opt_holdContext } from "./PostgreSqlParser.js"; -import { SelectstmtContext } from "./PostgreSqlParser.js"; -import { Select_with_parensContext } from "./PostgreSqlParser.js"; -import { Select_no_parensContext } from "./PostgreSqlParser.js"; -import { Select_clauseContext } from "./PostgreSqlParser.js"; -import { Simple_select_intersectContext } from "./PostgreSqlParser.js"; -import { Simple_select_startContext } from "./PostgreSqlParser.js"; -import { Simple_select_pramaryContext } from "./PostgreSqlParser.js"; -import { With_clauseContext } from "./PostgreSqlParser.js"; -import { Cte_listContext } from "./PostgreSqlParser.js"; -import { Common_table_exprContext } from "./PostgreSqlParser.js"; -import { Opt_materializedContext } from "./PostgreSqlParser.js"; -import { Into_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_strictContext } from "./PostgreSqlParser.js"; -import { OpttempTableNameContext } from "./PostgreSqlParser.js"; -import { Opt_tableContext } from "./PostgreSqlParser.js"; -import { All_or_distinctContext } from "./PostgreSqlParser.js"; -import { Distinct_clauseContext } from "./PostgreSqlParser.js"; -import { All_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_sort_clauseContext } from "./PostgreSqlParser.js"; -import { Sort_clauseContext } from "./PostgreSqlParser.js"; -import { Sortby_listContext } from "./PostgreSqlParser.js"; -import { SortbyContext } from "./PostgreSqlParser.js"; -import { Select_limitContext } from "./PostgreSqlParser.js"; -import { Opt_select_limitContext } from "./PostgreSqlParser.js"; -import { Limit_clauseContext } from "./PostgreSqlParser.js"; -import { Offset_clauseContext } from "./PostgreSqlParser.js"; -import { Select_limit_valueContext } from "./PostgreSqlParser.js"; -import { Select_offset_valueContext } from "./PostgreSqlParser.js"; -import { Select_fetch_first_valueContext } from "./PostgreSqlParser.js"; -import { I_or_f_constContext } from "./PostgreSqlParser.js"; -import { Row_or_rowsContext } from "./PostgreSqlParser.js"; -import { First_or_nextContext } from "./PostgreSqlParser.js"; -import { Group_clauseContext } from "./PostgreSqlParser.js"; -import { Group_by_listContext } from "./PostgreSqlParser.js"; -import { Group_by_itemContext } from "./PostgreSqlParser.js"; -import { Empty_grouping_setContext } from "./PostgreSqlParser.js"; -import { Rollup_clauseContext } from "./PostgreSqlParser.js"; -import { Cube_clauseContext } from "./PostgreSqlParser.js"; -import { Grouping_sets_clauseContext } from "./PostgreSqlParser.js"; -import { Having_clauseContext } from "./PostgreSqlParser.js"; -import { For_locking_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_for_locking_clauseContext } from "./PostgreSqlParser.js"; -import { For_locking_itemsContext } from "./PostgreSqlParser.js"; -import { For_locking_itemContext } from "./PostgreSqlParser.js"; -import { For_locking_strengthContext } from "./PostgreSqlParser.js"; -import { Locked_rels_listContext } from "./PostgreSqlParser.js"; -import { Values_clauseContext } from "./PostgreSqlParser.js"; -import { From_clauseContext } from "./PostgreSqlParser.js"; -import { From_listContext } from "./PostgreSqlParser.js"; -import { Non_ansi_joinContext } from "./PostgreSqlParser.js"; -import { Table_refContext } from "./PostgreSqlParser.js"; -import { Alias_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_alias_clauseContext } from "./PostgreSqlParser.js"; -import { Table_alias_clauseContext } from "./PostgreSqlParser.js"; -import { Func_alias_clauseContext } from "./PostgreSqlParser.js"; -import { Join_typeContext } from "./PostgreSqlParser.js"; -import { Join_qualContext } from "./PostgreSqlParser.js"; -import { Relation_exprContext } from "./PostgreSqlParser.js"; -import { Relation_expr_listContext } from "./PostgreSqlParser.js"; -import { Relation_expr_opt_aliasContext } from "./PostgreSqlParser.js"; -import { Tablesample_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_repeatable_clauseContext } from "./PostgreSqlParser.js"; -import { Func_tableContext } from "./PostgreSqlParser.js"; -import { Rowsfrom_itemContext } from "./PostgreSqlParser.js"; -import { Rowsfrom_listContext } from "./PostgreSqlParser.js"; -import { Opt_col_def_listContext } from "./PostgreSqlParser.js"; -import { Opt_ordinalityContext } from "./PostgreSqlParser.js"; -import { Where_clauseContext } from "./PostgreSqlParser.js"; -import { Where_or_current_clauseContext } from "./PostgreSqlParser.js"; -import { OpttablefuncelementlistContext } from "./PostgreSqlParser.js"; -import { TablefuncelementlistContext } from "./PostgreSqlParser.js"; -import { TablefuncelementContext } from "./PostgreSqlParser.js"; -import { XmltableContext } from "./PostgreSqlParser.js"; -import { Xmltable_column_listContext } from "./PostgreSqlParser.js"; -import { Xmltable_column_elContext } from "./PostgreSqlParser.js"; -import { Xmltable_column_option_listContext } from "./PostgreSqlParser.js"; -import { Xmltable_column_option_elContext } from "./PostgreSqlParser.js"; -import { Xml_namespace_listContext } from "./PostgreSqlParser.js"; -import { Xml_namespace_elContext } from "./PostgreSqlParser.js"; -import { TypenameContext } from "./PostgreSqlParser.js"; -import { Opt_array_boundsContext } from "./PostgreSqlParser.js"; -import { SimpletypenameContext } from "./PostgreSqlParser.js"; -import { ConsttypenameContext } from "./PostgreSqlParser.js"; -import { GenerictypeContext } from "./PostgreSqlParser.js"; -import { Opt_type_modifiersContext } from "./PostgreSqlParser.js"; +import { OptionalInsteadContext } from "./PostgreSqlParser.js"; +import { NotifyStatementContext } from "./PostgreSqlParser.js"; +import { NotifyPayloadContext } from "./PostgreSqlParser.js"; +import { ListenStatementContext } from "./PostgreSqlParser.js"; +import { UnlistenStatementContext } from "./PostgreSqlParser.js"; +import { TransactionStatementContext } from "./PostgreSqlParser.js"; +import { OptionalTransactionContext } from "./PostgreSqlParser.js"; +import { TransactionModeItemContext } from "./PostgreSqlParser.js"; +import { TransactionModeListContext } from "./PostgreSqlParser.js"; +import { OptionalTransactionChainContext } from "./PostgreSqlParser.js"; +import { ViewStatementContext } from "./PostgreSqlParser.js"; +import { OptionalCheckOptionContext } from "./PostgreSqlParser.js"; +import { LoadStatementContext } from "./PostgreSqlParser.js"; +import { CreateDatabaseStatementContext } from "./PostgreSqlParser.js"; +import { CreateDatabaseOptionListContext } from "./PostgreSqlParser.js"; +import { CreateDatabaseOptionItemContext } from "./PostgreSqlParser.js"; +import { CreateDatabaseOptionNameContext } from "./PostgreSqlParser.js"; +import { AlterDatabaseStatementContext } from "./PostgreSqlParser.js"; +import { AlterDatabaseSetStatementContext } from "./PostgreSqlParser.js"; +import { DropDatabaseStatementContext } from "./PostgreSqlParser.js"; +import { AlterCollationStatementContext } from "./PostgreSqlParser.js"; +import { AlterSystemStatementContext } from "./PostgreSqlParser.js"; +import { CreateDomainStatementContext } from "./PostgreSqlParser.js"; +import { AlterDomainStatementContext } from "./PostgreSqlParser.js"; +import { OptionalAsContext } from "./PostgreSqlParser.js"; +import { AltertsDictionaryStatementContext } from "./PostgreSqlParser.js"; +import { AltertsConfigurationStatementContext } from "./PostgreSqlParser.js"; +import { CreateConversionStatementContext } from "./PostgreSqlParser.js"; +import { ClusterStatementContext } from "./PostgreSqlParser.js"; +import { ClusterIndexSpecificationContext } from "./PostgreSqlParser.js"; +import { VacuumStatementContext } from "./PostgreSqlParser.js"; +import { AnalyzeStatementContext } from "./PostgreSqlParser.js"; +import { VacuumAnalyzeOptionListContext } from "./PostgreSqlParser.js"; +import { AnalyzeKeywordContext } from "./PostgreSqlParser.js"; +import { VacuumAnalyzeOptionElementContext } from "./PostgreSqlParser.js"; +import { VacuumAnalyzeOptionNameContext } from "./PostgreSqlParser.js"; +import { VacuumAnalyzeOptionArgumentContext } from "./PostgreSqlParser.js"; +import { OptionalVerboseContext } from "./PostgreSqlParser.js"; +import { OptionalNameListContext } from "./PostgreSqlParser.js"; +import { VacuumRelationContext } from "./PostgreSqlParser.js"; +import { OptionalVacuumRelationListContext } from "./PostgreSqlParser.js"; +import { ExplainStatementContext } from "./PostgreSqlParser.js"; +import { ExplainableStatementContext } from "./PostgreSqlParser.js"; +import { ExplainOptionElementContext } from "./PostgreSqlParser.js"; +import { ExplainOptionNameContext } from "./PostgreSqlParser.js"; +import { ExplainOptionArgumentContext } from "./PostgreSqlParser.js"; +import { PrepareStatementContext } from "./PostgreSqlParser.js"; +import { PrepareTypeClauseContext } from "./PostgreSqlParser.js"; +import { PreparableStatementContext } from "./PostgreSqlParser.js"; +import { ExecuteStatementContext } from "./PostgreSqlParser.js"; +import { ExecuteParameterClauseContext } from "./PostgreSqlParser.js"; +import { DeallocateStatementContext } from "./PostgreSqlParser.js"; +import { InsertStatementContext } from "./PostgreSqlParser.js"; +import { InsertTargetContext } from "./PostgreSqlParser.js"; +import { InsertRestContext } from "./PostgreSqlParser.js"; +import { OverrideKindContext } from "./PostgreSqlParser.js"; +import { InsertColumnListContext } from "./PostgreSqlParser.js"; +import { InsertColumnItemContext } from "./PostgreSqlParser.js"; +import { OptionalOnConflictContext } from "./PostgreSqlParser.js"; +import { OptionalConflictExprContext } from "./PostgreSqlParser.js"; +import { ReturningClauseContext } from "./PostgreSqlParser.js"; +import { MergeStatementContext } from "./PostgreSqlParser.js"; +import { MergeInsertClauseContext } from "./PostgreSqlParser.js"; +import { MergeUpdateClauseContext } from "./PostgreSqlParser.js"; +import { MergeDeleteClauseContext } from "./PostgreSqlParser.js"; +import { DeleteStatementContext } from "./PostgreSqlParser.js"; +import { UsingClauseContext } from "./PostgreSqlParser.js"; +import { LockStatementContext } from "./PostgreSqlParser.js"; +import { OptionalLockContext } from "./PostgreSqlParser.js"; +import { LockTypeContext } from "./PostgreSqlParser.js"; +import { OptionalNowaitContext } from "./PostgreSqlParser.js"; +import { OptionalNowaitOrSkipContext } from "./PostgreSqlParser.js"; +import { UpdateStatementContext } from "./PostgreSqlParser.js"; +import { SetClauseListContext } from "./PostgreSqlParser.js"; +import { SetClauseContext } from "./PostgreSqlParser.js"; +import { SetTargetContext } from "./PostgreSqlParser.js"; +import { DeclareCursorStatementContext } from "./PostgreSqlParser.js"; +import { CursorNameContext } from "./PostgreSqlParser.js"; +import { OptionalHoldContext } from "./PostgreSqlParser.js"; +import { SelectStatementContext } from "./PostgreSqlParser.js"; +import { SelectWithParenthesisContext } from "./PostgreSqlParser.js"; +import { SelectWithoutParenthesisContext } from "./PostgreSqlParser.js"; +import { SelectClauseContext } from "./PostgreSqlParser.js"; +import { SimpleSelectIntersectContext } from "./PostgreSqlParser.js"; +import { SimpleSelectStartContext } from "./PostgreSqlParser.js"; +import { SimpleSelectPramaryContext } from "./PostgreSqlParser.js"; +import { WithClauseContext } from "./PostgreSqlParser.js"; +import { CommonTableExpressionContext } from "./PostgreSqlParser.js"; +import { OptionalMaterializedContext } from "./PostgreSqlParser.js"; +import { IntoClauseContext } from "./PostgreSqlParser.js"; +import { OptionalTemporaryTableNameContext } from "./PostgreSqlParser.js"; +import { OptionalTableContext } from "./PostgreSqlParser.js"; +import { AllOrDistinctContext } from "./PostgreSqlParser.js"; +import { DistinctClauseContext } from "./PostgreSqlParser.js"; +import { AllClauseContext } from "./PostgreSqlParser.js"; +import { OptionalSortClauseContext } from "./PostgreSqlParser.js"; +import { SortClauseContext } from "./PostgreSqlParser.js"; +import { SortByListContext } from "./PostgreSqlParser.js"; +import { SortByContext } from "./PostgreSqlParser.js"; +import { SelectLimitContext } from "./PostgreSqlParser.js"; +import { OptionalSelectLimitContext } from "./PostgreSqlParser.js"; +import { LimitClauseContext } from "./PostgreSqlParser.js"; +import { OffsetClauseContext } from "./PostgreSqlParser.js"; +import { SelectLimitValueContext } from "./PostgreSqlParser.js"; +import { SelectOffsetValueContext } from "./PostgreSqlParser.js"; +import { SelectFetchFirstValueContext } from "./PostgreSqlParser.js"; +import { AnyConstContext } from "./PostgreSqlParser.js"; +import { RowOrRowsContext } from "./PostgreSqlParser.js"; +import { FirstOrNextContext } from "./PostgreSqlParser.js"; +import { GroupClauseContext } from "./PostgreSqlParser.js"; +import { GroupByListContext } from "./PostgreSqlParser.js"; +import { GroupByItemContext } from "./PostgreSqlParser.js"; +import { HavingClauseContext } from "./PostgreSqlParser.js"; +import { ForLockingClauseContext } from "./PostgreSqlParser.js"; +import { ForLockingItemContext } from "./PostgreSqlParser.js"; +import { ForLockingStrengthContext } from "./PostgreSqlParser.js"; +import { LockedRelationsListContext } from "./PostgreSqlParser.js"; +import { ValuesClauseContext } from "./PostgreSqlParser.js"; +import { FromClauseContext } from "./PostgreSqlParser.js"; +import { FromListContext } from "./PostgreSqlParser.js"; +import { NonAnsiJoinContext } from "./PostgreSqlParser.js"; +import { TableReferenceContext } from "./PostgreSqlParser.js"; +import { AliasClauseContext } from "./PostgreSqlParser.js"; +import { OptionalAliasClauseContext } from "./PostgreSqlParser.js"; +import { TableAliasClauseContext } from "./PostgreSqlParser.js"; +import { FunctionAliasClauseContext } from "./PostgreSqlParser.js"; +import { JoinTypeContext } from "./PostgreSqlParser.js"; +import { JoinQualifierContext } from "./PostgreSqlParser.js"; +import { RelationExpressionContext } from "./PostgreSqlParser.js"; +import { RelationExpressionListContext } from "./PostgreSqlParser.js"; +import { RelationExpressionOptionalAliasContext } from "./PostgreSqlParser.js"; +import { TableSampleClauseContext } from "./PostgreSqlParser.js"; +import { FunctionTableContext } from "./PostgreSqlParser.js"; +import { RowsFromItemContext } from "./PostgreSqlParser.js"; +import { OptionalColumnDefinitionListContext } from "./PostgreSqlParser.js"; +import { OptionalOrdinalityContext } from "./PostgreSqlParser.js"; +import { WhereClauseContext } from "./PostgreSqlParser.js"; +import { WhereOrCurrentClauseContext } from "./PostgreSqlParser.js"; +import { OptionalTableFunctionElementListContext } from "./PostgreSqlParser.js"; +import { TableFunctionElementListContext } from "./PostgreSqlParser.js"; +import { TableFunctionElementContext } from "./PostgreSqlParser.js"; +import { XmlTableContext } from "./PostgreSqlParser.js"; +import { XmlTableColumnElementContext } from "./PostgreSqlParser.js"; +import { XmlTableColumnOptionListContext } from "./PostgreSqlParser.js"; +import { XmlTableColumnOptionElementContext } from "./PostgreSqlParser.js"; +import { XmlNamespaceListContext } from "./PostgreSqlParser.js"; +import { XmlNamespaceElementContext } from "./PostgreSqlParser.js"; +import { TypeNameContext } from "./PostgreSqlParser.js"; +import { SimpleTypeNameContext } from "./PostgreSqlParser.js"; +import { ConstTypeNameContext } from "./PostgreSqlParser.js"; +import { GenericTypeContext } from "./PostgreSqlParser.js"; +import { OptionalTypeModifiersContext } from "./PostgreSqlParser.js"; import { NumericContext } from "./PostgreSqlParser.js"; -import { Opt_floatContext } from "./PostgreSqlParser.js"; +import { OptionalFloatContext } from "./PostgreSqlParser.js"; import { BitContext } from "./PostgreSqlParser.js"; -import { ConstbitContext } from "./PostgreSqlParser.js"; -import { BitwithlengthContext } from "./PostgreSqlParser.js"; -import { BitwithoutlengthContext } from "./PostgreSqlParser.js"; +import { ConstBitContext } from "./PostgreSqlParser.js"; +import { BitWithLengthContext } from "./PostgreSqlParser.js"; +import { BitWithoutLengthContext } from "./PostgreSqlParser.js"; import { CharacterContext } from "./PostgreSqlParser.js"; -import { ConstcharacterContext } from "./PostgreSqlParser.js"; -import { Character_cContext } from "./PostgreSqlParser.js"; -import { Opt_varyingContext } from "./PostgreSqlParser.js"; -import { ConstdatetimeContext } from "./PostgreSqlParser.js"; -import { ConstintervalContext } from "./PostgreSqlParser.js"; -import { Opt_timezoneContext } from "./PostgreSqlParser.js"; -import { Opt_intervalContext } from "./PostgreSqlParser.js"; -import { Interval_secondContext } from "./PostgreSqlParser.js"; -import { Opt_escapeContext } from "./PostgreSqlParser.js"; -import { A_exprContext } from "./PostgreSqlParser.js"; -import { A_expr_qualContext } from "./PostgreSqlParser.js"; -import { A_expr_lesslessContext } from "./PostgreSqlParser.js"; -import { A_expr_orContext } from "./PostgreSqlParser.js"; -import { A_expr_andContext } from "./PostgreSqlParser.js"; -import { A_expr_betweenContext } from "./PostgreSqlParser.js"; -import { A_expr_inContext } from "./PostgreSqlParser.js"; -import { A_expr_unary_notContext } from "./PostgreSqlParser.js"; -import { A_expr_isnullContext } from "./PostgreSqlParser.js"; -import { A_expr_is_notContext } from "./PostgreSqlParser.js"; -import { A_expr_compareContext } from "./PostgreSqlParser.js"; -import { A_expr_likeContext } from "./PostgreSqlParser.js"; -import { A_expr_qual_opContext } from "./PostgreSqlParser.js"; -import { A_expr_unary_qualopContext } from "./PostgreSqlParser.js"; -import { A_expr_addContext } from "./PostgreSqlParser.js"; -import { A_expr_mulContext } from "./PostgreSqlParser.js"; -import { A_expr_caretContext } from "./PostgreSqlParser.js"; -import { A_expr_unary_signContext } from "./PostgreSqlParser.js"; -import { A_expr_at_time_zoneContext } from "./PostgreSqlParser.js"; -import { A_expr_collateContext } from "./PostgreSqlParser.js"; -import { A_expr_typecastContext } from "./PostgreSqlParser.js"; -import { B_exprContext } from "./PostgreSqlParser.js"; +import { ConstCharacterContext } from "./PostgreSqlParser.js"; +import { CharacterCharContext } from "./PostgreSqlParser.js"; +import { OptionalVaryingContext } from "./PostgreSqlParser.js"; +import { ConstDateTimeContext } from "./PostgreSqlParser.js"; +import { ConstIntervalContext } from "./PostgreSqlParser.js"; +import { OptionalTimezoneContext } from "./PostgreSqlParser.js"; +import { OptionalIntervalContext } from "./PostgreSqlParser.js"; +import { IntervalSecondContext } from "./PostgreSqlParser.js"; +import { OptionalEscapeContext } from "./PostgreSqlParser.js"; +import { Expression1Context } from "./PostgreSqlParser.js"; +import { Expression1QualifierContext } from "./PostgreSqlParser.js"; +import { Expression1LessLessContext } from "./PostgreSqlParser.js"; +import { Expression1OrContext } from "./PostgreSqlParser.js"; +import { Expression1AndContext } from "./PostgreSqlParser.js"; +import { Expression1BetweenContext } from "./PostgreSqlParser.js"; +import { Expression1InContext } from "./PostgreSqlParser.js"; +import { Expression1UnaryNotContext } from "./PostgreSqlParser.js"; +import { Expression1IsNullContext } from "./PostgreSqlParser.js"; +import { Expression1IsNotContext } from "./PostgreSqlParser.js"; +import { Expression1CompareContext } from "./PostgreSqlParser.js"; +import { Expression1LikeContext } from "./PostgreSqlParser.js"; +import { Expression1qualifierOperatorContext } from "./PostgreSqlParser.js"; +import { Expression1UnaryQualifierOperatorContext } from "./PostgreSqlParser.js"; +import { Expression1AddContext } from "./PostgreSqlParser.js"; +import { ExpressionMultiplyContext } from "./PostgreSqlParser.js"; +import { Expression1CaretContext } from "./PostgreSqlParser.js"; +import { Expression1UnarySignContext } from "./PostgreSqlParser.js"; +import { Expression1AtTimeZoneContext } from "./PostgreSqlParser.js"; +import { Expression1CollateContext } from "./PostgreSqlParser.js"; +import { Expression1TypecastContext } from "./PostgreSqlParser.js"; +import { Expression2Context } from "./PostgreSqlParser.js"; import { C_expr_existsContext } from "./PostgreSqlParser.js"; import { C_expr_exprContext } from "./PostgreSqlParser.js"; import { C_expr_caseContext } from "./PostgreSqlParser.js"; -import { PlsqlvariablenameContext } from "./PostgreSqlParser.js"; -import { Func_applicationContext } from "./PostgreSqlParser.js"; -import { Func_exprContext } from "./PostgreSqlParser.js"; -import { Func_expr_windowlessContext } from "./PostgreSqlParser.js"; -import { Func_expr_common_subexprContext } from "./PostgreSqlParser.js"; -import { Xml_root_versionContext } from "./PostgreSqlParser.js"; -import { Opt_xml_root_standaloneContext } from "./PostgreSqlParser.js"; -import { Xml_attributesContext } from "./PostgreSqlParser.js"; -import { Xml_attribute_listContext } from "./PostgreSqlParser.js"; -import { Xml_attribute_elContext } from "./PostgreSqlParser.js"; -import { Document_or_contentContext } from "./PostgreSqlParser.js"; -import { Xml_whitespace_optionContext } from "./PostgreSqlParser.js"; -import { Xmlexists_argumentContext } from "./PostgreSqlParser.js"; -import { Xml_passing_mechContext } from "./PostgreSqlParser.js"; -import { Within_group_clauseContext } from "./PostgreSqlParser.js"; -import { Filter_clauseContext } from "./PostgreSqlParser.js"; -import { Window_clauseContext } from "./PostgreSqlParser.js"; -import { Window_definition_listContext } from "./PostgreSqlParser.js"; -import { Window_definitionContext } from "./PostgreSqlParser.js"; -import { Over_clauseContext } from "./PostgreSqlParser.js"; -import { Window_specificationContext } from "./PostgreSqlParser.js"; -import { Opt_existing_window_nameContext } from "./PostgreSqlParser.js"; -import { Opt_partition_clauseContext } from "./PostgreSqlParser.js"; -import { Opt_frame_clauseContext } from "./PostgreSqlParser.js"; -import { Frame_extentContext } from "./PostgreSqlParser.js"; -import { Frame_boundContext } from "./PostgreSqlParser.js"; -import { Opt_window_exclusion_clauseContext } from "./PostgreSqlParser.js"; +import { PlsqlVariableNameContext } from "./PostgreSqlParser.js"; +import { FunctionApplicationContext } from "./PostgreSqlParser.js"; +import { FunctionExpressionContext } from "./PostgreSqlParser.js"; +import { FunctionExpressionWindowlessContext } from "./PostgreSqlParser.js"; +import { FunctionExpressionCommonSubexprContext } from "./PostgreSqlParser.js"; +import { XmlRootVersionContext } from "./PostgreSqlParser.js"; +import { OptionalXmlRootStandaloneContext } from "./PostgreSqlParser.js"; +import { XmlAttributesContext } from "./PostgreSqlParser.js"; +import { XmlAttributeListContext } from "./PostgreSqlParser.js"; +import { XmlAttributeElementContext } from "./PostgreSqlParser.js"; +import { DocumentOrContentContext } from "./PostgreSqlParser.js"; +import { XmlWhitespaceOptionContext } from "./PostgreSqlParser.js"; +import { XmlExistsArgumentContext } from "./PostgreSqlParser.js"; +import { XmlPassingMechContext } from "./PostgreSqlParser.js"; +import { WithinGroupClauseContext } from "./PostgreSqlParser.js"; +import { FilterClauseContext } from "./PostgreSqlParser.js"; +import { WindowClauseContext } from "./PostgreSqlParser.js"; +import { WindowDefinitionListContext } from "./PostgreSqlParser.js"; +import { WindowDefinitionContext } from "./PostgreSqlParser.js"; +import { OverClauseContext } from "./PostgreSqlParser.js"; +import { WindowSpecificationContext } from "./PostgreSqlParser.js"; +import { OptionalExistingWindowNameContext } from "./PostgreSqlParser.js"; +import { OptionalPartitionClauseContext } from "./PostgreSqlParser.js"; +import { OptionalFrameClauseContext } from "./PostgreSqlParser.js"; +import { FrameExtentContext } from "./PostgreSqlParser.js"; +import { FrameBoundContext } from "./PostgreSqlParser.js"; +import { OptionalWindowExclusionClauseContext } from "./PostgreSqlParser.js"; import { RowContext } from "./PostgreSqlParser.js"; -import { Explicit_rowContext } from "./PostgreSqlParser.js"; -import { Implicit_rowContext } from "./PostgreSqlParser.js"; -import { Sub_typeContext } from "./PostgreSqlParser.js"; -import { All_opContext } from "./PostgreSqlParser.js"; -import { MathopContext } from "./PostgreSqlParser.js"; -import { Qual_opContext } from "./PostgreSqlParser.js"; -import { Qual_all_opContext } from "./PostgreSqlParser.js"; -import { Subquery_OpContext } from "./PostgreSqlParser.js"; -import { Expr_listContext } from "./PostgreSqlParser.js"; -import { Func_arg_listContext } from "./PostgreSqlParser.js"; -import { Func_arg_exprContext } from "./PostgreSqlParser.js"; -import { Type_listContext } from "./PostgreSqlParser.js"; -import { Array_exprContext } from "./PostgreSqlParser.js"; -import { Array_expr_listContext } from "./PostgreSqlParser.js"; -import { Extract_listContext } from "./PostgreSqlParser.js"; -import { Extract_argContext } from "./PostgreSqlParser.js"; -import { Unicode_normal_formContext } from "./PostgreSqlParser.js"; -import { Overlay_listContext } from "./PostgreSqlParser.js"; -import { Position_listContext } from "./PostgreSqlParser.js"; -import { Substr_listContext } from "./PostgreSqlParser.js"; -import { Trim_listContext } from "./PostgreSqlParser.js"; +import { ExplicitRowContext } from "./PostgreSqlParser.js"; +import { ImplicitRowContext } from "./PostgreSqlParser.js"; +import { SubTypeContext } from "./PostgreSqlParser.js"; +import { AllOperatorContext } from "./PostgreSqlParser.js"; +import { MathOperatorContext } from "./PostgreSqlParser.js"; +import { OperatorQualifierContext } from "./PostgreSqlParser.js"; +import { AllOperatorQualifierContext } from "./PostgreSqlParser.js"; +import { SubqueryOperatorContext } from "./PostgreSqlParser.js"; +import { ExpressionListContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentListContext } from "./PostgreSqlParser.js"; +import { FunctionArgumentExpressionContext } from "./PostgreSqlParser.js"; +import { TypeListContext } from "./PostgreSqlParser.js"; +import { ArrayExpressionContext } from "./PostgreSqlParser.js"; +import { ArrayExpressionListContext } from "./PostgreSqlParser.js"; +import { ExtractListContext } from "./PostgreSqlParser.js"; +import { ExtractArgumentContext } from "./PostgreSqlParser.js"; +import { UnicodeNormalFormContext } from "./PostgreSqlParser.js"; +import { OverlayListContext } from "./PostgreSqlParser.js"; +import { PositionListContext } from "./PostgreSqlParser.js"; +import { SubstrListContext } from "./PostgreSqlParser.js"; +import { TrimListContext } from "./PostgreSqlParser.js"; import { In_expr_selectContext } from "./PostgreSqlParser.js"; import { In_expr_listContext } from "./PostgreSqlParser.js"; -import { Case_exprContext } from "./PostgreSqlParser.js"; -import { When_clause_listContext } from "./PostgreSqlParser.js"; -import { When_clauseContext } from "./PostgreSqlParser.js"; -import { Case_defaultContext } from "./PostgreSqlParser.js"; -import { Case_argContext } from "./PostgreSqlParser.js"; -import { ColumnrefContext } from "./PostgreSqlParser.js"; -import { Indirection_elContext } from "./PostgreSqlParser.js"; -import { Opt_slice_boundContext } from "./PostgreSqlParser.js"; +import { CaseExpressionContext } from "./PostgreSqlParser.js"; +import { WhenClauseListContext } from "./PostgreSqlParser.js"; +import { WhenClauseContext } from "./PostgreSqlParser.js"; +import { CaseDefaultContext } from "./PostgreSqlParser.js"; +import { CaseArgContext } from "./PostgreSqlParser.js"; +import { ColumnReferenceContext } from "./PostgreSqlParser.js"; +import { IndirectionElementContext } from "./PostgreSqlParser.js"; import { IndirectionContext } from "./PostgreSqlParser.js"; -import { Opt_indirectionContext } from "./PostgreSqlParser.js"; -import { Opt_target_listContext } from "./PostgreSqlParser.js"; -import { Target_listContext } from "./PostgreSqlParser.js"; +import { OptionalIndirectionContext } from "./PostgreSqlParser.js"; +import { OptionalTargetListContext } from "./PostgreSqlParser.js"; +import { TargetListContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; import { Target_labelContext } from "./PostgreSqlParser.js"; -import { Qualified_name_listContext } from "./PostgreSqlParser.js"; -import { Qualified_nameContext } from "./PostgreSqlParser.js"; -import { Name_listContext } from "./PostgreSqlParser.js"; +import { QualifiedNameListContext } from "./PostgreSqlParser.js"; +import { QualifiedNameContext } from "./PostgreSqlParser.js"; +import { NameListContext } from "./PostgreSqlParser.js"; import { NameContext } from "./PostgreSqlParser.js"; -import { Attr_nameContext } from "./PostgreSqlParser.js"; -import { File_nameContext } from "./PostgreSqlParser.js"; -import { Func_nameContext } from "./PostgreSqlParser.js"; -import { AexprconstContext } from "./PostgreSqlParser.js"; +import { AttributeNameContext } from "./PostgreSqlParser.js"; +import { FileNameContext } from "./PostgreSqlParser.js"; +import { FunctionNameContext } from "./PostgreSqlParser.js"; +import { AExpressionConstContext } from "./PostgreSqlParser.js"; import { XconstContext } from "./PostgreSqlParser.js"; import { BconstContext } from "./PostgreSqlParser.js"; import { FconstContext } from "./PostgreSqlParser.js"; import { IconstContext } from "./PostgreSqlParser.js"; import { SconstContext } from "./PostgreSqlParser.js"; -import { AnysconstContext } from "./PostgreSqlParser.js"; -import { Opt_uescapeContext } from "./PostgreSqlParser.js"; -import { SignediconstContext } from "./PostgreSqlParser.js"; -import { RoleidContext } from "./PostgreSqlParser.js"; -import { RolespecContext } from "./PostgreSqlParser.js"; -import { Role_listContext } from "./PostgreSqlParser.js"; -import { ColidContext } from "./PostgreSqlParser.js"; -import { Table_aliasContext } from "./PostgreSqlParser.js"; -import { Type_function_nameContext } from "./PostgreSqlParser.js"; -import { NonreservedwordContext } from "./PostgreSqlParser.js"; -import { CollabelContext } from "./PostgreSqlParser.js"; +import { AnySconstContext } from "./PostgreSqlParser.js"; +import { OptionalUescapeContext } from "./PostgreSqlParser.js"; +import { SignedIconstContext } from "./PostgreSqlParser.js"; +import { RoleIdContext } from "./PostgreSqlParser.js"; +import { RoleSpecificationContext } from "./PostgreSqlParser.js"; +import { RoleListContext } from "./PostgreSqlParser.js"; +import { ColumnIdContext } from "./PostgreSqlParser.js"; +import { TableAliasContext } from "./PostgreSqlParser.js"; +import { TypeFunctionNameContext } from "./PostgreSqlParser.js"; +import { NonReservedWordContext } from "./PostgreSqlParser.js"; +import { ColumnLabelContext } from "./PostgreSqlParser.js"; import { IdentifierContext } from "./PostgreSqlParser.js"; -import { PlsqlidentifierContext } from "./PostgreSqlParser.js"; -import { Unreserved_keywordContext } from "./PostgreSqlParser.js"; -import { Col_name_keywordContext } from "./PostgreSqlParser.js"; -import { Type_func_name_keywordContext } from "./PostgreSqlParser.js"; -import { Reserved_keywordContext } from "./PostgreSqlParser.js"; -import { Builtin_function_nameContext } from "./PostgreSqlParser.js"; -import { Pl_functionContext } from "./PostgreSqlParser.js"; -import { Comp_optionsContext } from "./PostgreSqlParser.js"; -import { Comp_optionContext } from "./PostgreSqlParser.js"; +import { PlsqlIdentifierContext } from "./PostgreSqlParser.js"; +import { UnreservedKeywordContext } from "./PostgreSqlParser.js"; +import { ColumnNameKeywordContext } from "./PostgreSqlParser.js"; +import { TypeFunctionNameKeywordContext } from "./PostgreSqlParser.js"; +import { ReservedKeywordContext } from "./PostgreSqlParser.js"; +import { BuiltinFunctionNameContext } from "./PostgreSqlParser.js"; +import { PlsqlFunctionContext } from "./PostgreSqlParser.js"; +import { ComputeOptionsContext } from "./PostgreSqlParser.js"; +import { ComputeOptionContext } from "./PostgreSqlParser.js"; import { SharpContext } from "./PostgreSqlParser.js"; -import { Option_valueContext } from "./PostgreSqlParser.js"; -import { Opt_semiContext } from "./PostgreSqlParser.js"; -import { Pl_blockContext } from "./PostgreSqlParser.js"; -import { Decl_sectContext } from "./PostgreSqlParser.js"; -import { Decl_startContext } from "./PostgreSqlParser.js"; -import { Decl_stmtsContext } from "./PostgreSqlParser.js"; -import { Label_declContext } from "./PostgreSqlParser.js"; -import { Decl_stmtContext } from "./PostgreSqlParser.js"; -import { Decl_statementContext } from "./PostgreSqlParser.js"; -import { Opt_scrollableContext } from "./PostgreSqlParser.js"; -import { Decl_cursor_queryContext } from "./PostgreSqlParser.js"; -import { Decl_cursor_argsContext } from "./PostgreSqlParser.js"; -import { Decl_cursor_arglistContext } from "./PostgreSqlParser.js"; -import { Decl_cursor_argContext } from "./PostgreSqlParser.js"; -import { Decl_is_forContext } from "./PostgreSqlParser.js"; -import { Decl_aliasitemContext } from "./PostgreSqlParser.js"; -import { Decl_varnameContext } from "./PostgreSqlParser.js"; -import { Decl_constContext } from "./PostgreSqlParser.js"; -import { Decl_datatypeContext } from "./PostgreSqlParser.js"; -import { Decl_collateContext } from "./PostgreSqlParser.js"; -import { Decl_notnullContext } from "./PostgreSqlParser.js"; -import { Decl_defvalContext } from "./PostgreSqlParser.js"; -import { Decl_defkeyContext } from "./PostgreSqlParser.js"; -import { Assign_operatorContext } from "./PostgreSqlParser.js"; -import { Proc_sectContext } from "./PostgreSqlParser.js"; -import { Proc_stmtContext } from "./PostgreSqlParser.js"; -import { Stmt_performContext } from "./PostgreSqlParser.js"; -import { Stmt_callContext } from "./PostgreSqlParser.js"; -import { Opt_expr_listContext } from "./PostgreSqlParser.js"; -import { Stmt_assignContext } from "./PostgreSqlParser.js"; -import { Stmt_getdiagContext } from "./PostgreSqlParser.js"; -import { Getdiag_area_optContext } from "./PostgreSqlParser.js"; -import { Getdiag_listContext } from "./PostgreSqlParser.js"; -import { Getdiag_list_itemContext } from "./PostgreSqlParser.js"; -import { Getdiag_itemContext } from "./PostgreSqlParser.js"; -import { Getdiag_targetContext } from "./PostgreSqlParser.js"; -import { Assign_varContext } from "./PostgreSqlParser.js"; -import { Stmt_ifContext } from "./PostgreSqlParser.js"; -import { Stmt_elsifsContext } from "./PostgreSqlParser.js"; -import { Stmt_elseContext } from "./PostgreSqlParser.js"; -import { Stmt_caseContext } from "./PostgreSqlParser.js"; -import { Opt_expr_until_whenContext } from "./PostgreSqlParser.js"; -import { Case_when_listContext } from "./PostgreSqlParser.js"; -import { Case_whenContext } from "./PostgreSqlParser.js"; -import { Opt_case_elseContext } from "./PostgreSqlParser.js"; -import { Stmt_loopContext } from "./PostgreSqlParser.js"; -import { Stmt_whileContext } from "./PostgreSqlParser.js"; -import { Stmt_forContext } from "./PostgreSqlParser.js"; -import { For_controlContext } from "./PostgreSqlParser.js"; -import { Opt_for_using_expressionContext } from "./PostgreSqlParser.js"; -import { Opt_cursor_parametersContext } from "./PostgreSqlParser.js"; -import { Opt_reverseContext } from "./PostgreSqlParser.js"; -import { Opt_by_expressionContext } from "./PostgreSqlParser.js"; -import { For_variableContext } from "./PostgreSqlParser.js"; -import { Stmt_foreach_aContext } from "./PostgreSqlParser.js"; -import { Foreach_sliceContext } from "./PostgreSqlParser.js"; -import { Stmt_exitContext } from "./PostgreSqlParser.js"; -import { Exit_typeContext } from "./PostgreSqlParser.js"; -import { Stmt_returnContext } from "./PostgreSqlParser.js"; -import { Opt_return_resultContext } from "./PostgreSqlParser.js"; -import { Stmt_raiseContext } from "./PostgreSqlParser.js"; -import { Opt_stmt_raise_levelContext } from "./PostgreSqlParser.js"; -import { Opt_raise_listContext } from "./PostgreSqlParser.js"; -import { Opt_raise_usingContext } from "./PostgreSqlParser.js"; -import { Opt_raise_using_elemContext } from "./PostgreSqlParser.js"; -import { Opt_raise_using_elem_listContext } from "./PostgreSqlParser.js"; -import { Stmt_assertContext } from "./PostgreSqlParser.js"; -import { Opt_stmt_assert_messageContext } from "./PostgreSqlParser.js"; -import { Loop_bodyContext } from "./PostgreSqlParser.js"; -import { Stmt_execsqlContext } from "./PostgreSqlParser.js"; -import { Stmt_dynexecuteContext } from "./PostgreSqlParser.js"; -import { Opt_execute_usingContext } from "./PostgreSqlParser.js"; -import { Opt_execute_using_listContext } from "./PostgreSqlParser.js"; -import { Opt_execute_intoContext } from "./PostgreSqlParser.js"; -import { Stmt_openContext } from "./PostgreSqlParser.js"; -import { Opt_open_bound_list_itemContext } from "./PostgreSqlParser.js"; -import { Opt_open_bound_listContext } from "./PostgreSqlParser.js"; -import { Opt_open_usingContext } from "./PostgreSqlParser.js"; -import { Opt_scroll_optionContext } from "./PostgreSqlParser.js"; -import { Opt_scroll_option_noContext } from "./PostgreSqlParser.js"; -import { Stmt_fetchContext } from "./PostgreSqlParser.js"; -import { Into_targetContext } from "./PostgreSqlParser.js"; -import { Opt_cursor_fromContext } from "./PostgreSqlParser.js"; -import { Opt_fetch_directionContext } from "./PostgreSqlParser.js"; -import { Stmt_moveContext } from "./PostgreSqlParser.js"; -import { Stmt_closeContext } from "./PostgreSqlParser.js"; -import { Stmt_nullContext } from "./PostgreSqlParser.js"; -import { Stmt_commitContext } from "./PostgreSqlParser.js"; -import { Stmt_rollbackContext } from "./PostgreSqlParser.js"; -import { Plsql_opt_transaction_chainContext } from "./PostgreSqlParser.js"; -import { Stmt_setContext } from "./PostgreSqlParser.js"; -import { Cursor_variableContext } from "./PostgreSqlParser.js"; -import { Exception_sectContext } from "./PostgreSqlParser.js"; -import { Proc_exceptionsContext } from "./PostgreSqlParser.js"; -import { Proc_exceptionContext } from "./PostgreSqlParser.js"; -import { Proc_conditionsContext } from "./PostgreSqlParser.js"; -import { Proc_conditionContext } from "./PostgreSqlParser.js"; -import { Opt_block_labelContext } from "./PostgreSqlParser.js"; -import { Opt_loop_labelContext } from "./PostgreSqlParser.js"; -import { Opt_labelContext } from "./PostgreSqlParser.js"; -import { Opt_exitcondContext } from "./PostgreSqlParser.js"; -import { Any_identifierContext } from "./PostgreSqlParser.js"; -import { Plsql_unreserved_keywordContext } from "./PostgreSqlParser.js"; -import { Sql_expressionContext } from "./PostgreSqlParser.js"; -import { Expr_until_thenContext } from "./PostgreSqlParser.js"; -import { Expr_until_semiContext } from "./PostgreSqlParser.js"; -import { Expr_until_rightbracketContext } from "./PostgreSqlParser.js"; -import { Expr_until_loopContext } from "./PostgreSqlParser.js"; -import { Make_execsql_stmtContext } from "./PostgreSqlParser.js"; -import { Opt_returning_clause_intoContext } from "./PostgreSqlParser.js"; +import { OptionValueContext } from "./PostgreSqlParser.js"; +import { OptionalSemiContext } from "./PostgreSqlParser.js"; +import { PlsqlBlockContext } from "./PostgreSqlParser.js"; +import { DeclareSectionContext } from "./PostgreSqlParser.js"; +import { DeclareStartContext } from "./PostgreSqlParser.js"; +import { DeclareStatementsContext } from "./PostgreSqlParser.js"; +import { LabelDeclarationContext } from "./PostgreSqlParser.js"; +import { DeclareStatementContext } from "./PostgreSqlParser.js"; +import { DeclareStatement2Context } from "./PostgreSqlParser.js"; +import { OptionalScrollableContext } from "./PostgreSqlParser.js"; +import { DeclareCursorQueryContext } from "./PostgreSqlParser.js"; +import { DeclareCursorArgsContext } from "./PostgreSqlParser.js"; +import { DeclareCursorArglistContext } from "./PostgreSqlParser.js"; +import { DeclareCursorArgContext } from "./PostgreSqlParser.js"; +import { DeclareIsOrForContext } from "./PostgreSqlParser.js"; +import { DeclareAliasItemContext } from "./PostgreSqlParser.js"; +import { DeclareVarnameContext } from "./PostgreSqlParser.js"; +import { DeclareConstContext } from "./PostgreSqlParser.js"; +import { DeclareDatatypeContext } from "./PostgreSqlParser.js"; +import { DeclareCollateContext } from "./PostgreSqlParser.js"; +import { DeclareNotNullContext } from "./PostgreSqlParser.js"; +import { DeclareDefaultValueContext } from "./PostgreSqlParser.js"; +import { DeclareDefaultKeyContext } from "./PostgreSqlParser.js"; +import { AssignOperatorContext } from "./PostgreSqlParser.js"; +import { ProcedureSectionContext } from "./PostgreSqlParser.js"; +import { ProceduralStatementContext } from "./PostgreSqlParser.js"; +import { StatementPerformContext } from "./PostgreSqlParser.js"; +import { StatementCallContext } from "./PostgreSqlParser.js"; +import { OptionalExpressionListContext } from "./PostgreSqlParser.js"; +import { StatementAssignContext } from "./PostgreSqlParser.js"; +import { StatementGetDiagramContext } from "./PostgreSqlParser.js"; +import { OptionalGetDiagramAreaContext } from "./PostgreSqlParser.js"; +import { GetDiagramListContext } from "./PostgreSqlParser.js"; +import { GetDiagramListItemContext } from "./PostgreSqlParser.js"; +import { GetDiagramItemContext } from "./PostgreSqlParser.js"; +import { GetDiagramTargetContext } from "./PostgreSqlParser.js"; +import { AssignVariableContext } from "./PostgreSqlParser.js"; +import { StatementIfContext } from "./PostgreSqlParser.js"; +import { StatementElsifsContext } from "./PostgreSqlParser.js"; +import { StatementElseContext } from "./PostgreSqlParser.js"; +import { StatementCaseContext } from "./PostgreSqlParser.js"; +import { OptionalExpressionUntilWhenContext } from "./PostgreSqlParser.js"; +import { CaseWhenListContext } from "./PostgreSqlParser.js"; +import { CaseWhenContext } from "./PostgreSqlParser.js"; +import { OptionalCaseElseContext } from "./PostgreSqlParser.js"; +import { StatementLoopContext } from "./PostgreSqlParser.js"; +import { StatementWhileContext } from "./PostgreSqlParser.js"; +import { StatementForContext } from "./PostgreSqlParser.js"; +import { ForControlContext } from "./PostgreSqlParser.js"; +import { OptionalForUsingExpressionContext } from "./PostgreSqlParser.js"; +import { OptionalCursorParametersContext } from "./PostgreSqlParser.js"; +import { OptionalReverseContext } from "./PostgreSqlParser.js"; +import { OptionalByExpressionContext } from "./PostgreSqlParser.js"; +import { ForVariableContext } from "./PostgreSqlParser.js"; +import { StatementForeachAContext } from "./PostgreSqlParser.js"; +import { ForeachSliceContext } from "./PostgreSqlParser.js"; +import { StatementExitContext } from "./PostgreSqlParser.js"; +import { ExitTypeContext } from "./PostgreSqlParser.js"; +import { StatementReturnContext } from "./PostgreSqlParser.js"; +import { OptionalReturnResultContext } from "./PostgreSqlParser.js"; +import { StatementRaiseContext } from "./PostgreSqlParser.js"; +import { OptionalStatementRaiseLevelContext } from "./PostgreSqlParser.js"; +import { OptionalRaiseListContext } from "./PostgreSqlParser.js"; +import { OptionalRaiseUsingContext } from "./PostgreSqlParser.js"; +import { OptionalRaiseUsingElementContext } from "./PostgreSqlParser.js"; +import { StatementAssertContext } from "./PostgreSqlParser.js"; +import { OptionalStatementAssertMessageContext } from "./PostgreSqlParser.js"; +import { LoopBodyContext } from "./PostgreSqlParser.js"; +import { StatementExecSqlContext } from "./PostgreSqlParser.js"; +import { StatementDynExecuteContext } from "./PostgreSqlParser.js"; +import { OptionalExecuteUsingContext } from "./PostgreSqlParser.js"; +import { OptionalExecuteUsingListContext } from "./PostgreSqlParser.js"; +import { OptionalExecuteIntoContext } from "./PostgreSqlParser.js"; +import { StatementOpenContext } from "./PostgreSqlParser.js"; +import { OptionalOpenBoundListItemContext } from "./PostgreSqlParser.js"; +import { StatementFetchContext } from "./PostgreSqlParser.js"; +import { IntoTargetContext } from "./PostgreSqlParser.js"; +import { OptionalCursorFromContext } from "./PostgreSqlParser.js"; +import { OptionalFetchDirectionContext } from "./PostgreSqlParser.js"; +import { StatementMoveContext } from "./PostgreSqlParser.js"; +import { StatementCloseContext } from "./PostgreSqlParser.js"; +import { StatementNullContext } from "./PostgreSqlParser.js"; +import { StatementCommitContext } from "./PostgreSqlParser.js"; +import { StatementRollbackContext } from "./PostgreSqlParser.js"; +import { PlsqlOptionalTransactionChainContext } from "./PostgreSqlParser.js"; +import { StatementSetContext } from "./PostgreSqlParser.js"; +import { CursorVariableContext } from "./PostgreSqlParser.js"; +import { ExceptionSectionContext } from "./PostgreSqlParser.js"; +import { ProcedureExceptionsContext } from "./PostgreSqlParser.js"; +import { ProcedureExceptionContext } from "./PostgreSqlParser.js"; +import { ProcedureConditionsContext } from "./PostgreSqlParser.js"; +import { ProcedureConditionContext } from "./PostgreSqlParser.js"; +import { OptionalBlockLabelContext } from "./PostgreSqlParser.js"; +import { OptionalLoopLabelContext } from "./PostgreSqlParser.js"; +import { OptionalLabelContext } from "./PostgreSqlParser.js"; +import { OptionalExitConditionContext } from "./PostgreSqlParser.js"; +import { AnyIdentifierContext } from "./PostgreSqlParser.js"; +import { PlsqlUnreservedKeywordContext } from "./PostgreSqlParser.js"; +import { SqlExpressionContext } from "./PostgreSqlParser.js"; +import { ExpressionUntilThenContext } from "./PostgreSqlParser.js"; +import { ExpressionUntilSemiContext } from "./PostgreSqlParser.js"; +import { ExpressionUntilRightbracketContext } from "./PostgreSqlParser.js"; +import { ExpressionUntilLoopContext } from "./PostgreSqlParser.js"; +import { MakeExecuteSqlStatementContext } from "./PostgreSqlParser.js"; +import { OptionalReturningClauseIntoContext } from "./PostgreSqlParser.js"; /** @@ -846,563 +783,527 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsqlroot`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlRoot`. * @param ctx the parse tree * @return the visitor result */ - visitPlsqlroot?: (ctx: PlsqlrootContext) => Result; + visitPlsqlRoot?: (ctx: PlsqlRootContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmtmulti`. + * Visit a parse tree produced by `PostgreSqlParser.statements`. * @param ctx the parse tree * @return the visitor result */ - visitStmtmulti?: (ctx: StmtmultiContext) => Result; + visitStatements?: (ctx: StatementsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt`. + * Visit a parse tree produced by `PostgreSqlParser.statement`. * @param ctx the parse tree * @return the visitor result */ - visitStmt?: (ctx: StmtContext) => Result; + visitStatement?: (ctx: StatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsqlconsolecommand`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlConsoleCommand`. * @param ctx the parse tree * @return the visitor result */ - visitPlsqlconsolecommand?: (ctx: PlsqlconsolecommandContext) => Result; + visitPlsqlConsoleCommand?: (ctx: PlsqlConsoleCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.callstmt`. + * Visit a parse tree produced by `PostgreSqlParser.callStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCallstmt?: (ctx: CallstmtContext) => Result; + visitCallStatement?: (ctx: CallStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createrolestmt`. + * Visit a parse tree produced by `PostgreSqlParser.createRoleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreaterolestmt?: (ctx: CreaterolestmtContext) => Result; + visitCreateRoleStatement?: (ctx: CreateRoleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_with`. + * Visit a parse tree produced by `PostgreSqlParser.optionalWith`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_with?: (ctx: Opt_withContext) => Result; + visitOptionalWith?: (ctx: OptionalWithContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optrolelist`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRoleList`. * @param ctx the parse tree * @return the visitor result */ - visitOptrolelist?: (ctx: OptrolelistContext) => Result; + visitOptionalRoleList?: (ctx: OptionalRoleListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alteroptrolelist`. + * Visit a parse tree produced by `PostgreSqlParser.alterOptionalRoleList`. * @param ctx the parse tree * @return the visitor result */ - visitAlteroptrolelist?: (ctx: AlteroptrolelistContext) => Result; + visitAlterOptionalRoleList?: (ctx: AlterOptionalRoleListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alteroptroleelem`. + * Visit a parse tree produced by `PostgreSqlParser.alterRoleElemement`. * @param ctx the parse tree * @return the visitor result */ - visitAlteroptroleelem?: (ctx: AlteroptroleelemContext) => Result; + visitAlterRoleElemement?: (ctx: AlterRoleElemementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createoptroleelem`. + * Visit a parse tree produced by `PostgreSqlParser.createRoleElement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateoptroleelem?: (ctx: CreateoptroleelemContext) => Result; + visitCreateRoleElement?: (ctx: CreateRoleElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createuserstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createUserStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateuserstmt?: (ctx: CreateuserstmtContext) => Result; + visitCreateUserStatement?: (ctx: CreateUserStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterrolestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterRoleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterrolestmt?: (ctx: AlterrolestmtContext) => Result; + visitAlterRoleStatement?: (ctx: AlterRoleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_in_database`. + * Visit a parse tree produced by `PostgreSqlParser.optionalInDatabase`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_in_database?: (ctx: Opt_in_databaseContext) => Result; + visitOptionalInDatabase?: (ctx: OptionalInDatabaseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterrolesetstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterRoleSetStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterrolesetstmt?: (ctx: AlterrolesetstmtContext) => Result; + visitAlterRoleSetStatement?: (ctx: AlterRoleSetStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.droprolestmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropRoleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDroprolestmt?: (ctx: DroprolestmtContext) => Result; + visitDropRoleStatement?: (ctx: DropRoleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.creategroupstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createGroupStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreategroupstmt?: (ctx: CreategroupstmtContext) => Result; + visitCreateGroupStatement?: (ctx: CreateGroupStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altergroupstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterGroupStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltergroupstmt?: (ctx: AltergroupstmtContext) => Result; + visitAlterGroupStatement?: (ctx: AlterGroupStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.add_drop`. + * Visit a parse tree produced by `PostgreSqlParser.addOrDrop`. * @param ctx the parse tree * @return the visitor result */ - visitAdd_drop?: (ctx: Add_dropContext) => Result; + visitAddOrDrop?: (ctx: AddOrDropContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createschemastmt`. + * Visit a parse tree produced by `PostgreSqlParser.createSchemaStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateschemastmt?: (ctx: CreateschemastmtContext) => Result; + visitCreateSchemaStatement?: (ctx: CreateSchemaStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optschemaname`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSchemaName`. * @param ctx the parse tree * @return the visitor result */ - visitOptschemaname?: (ctx: OptschemanameContext) => Result; + visitOptionalSchemaName?: (ctx: OptionalSchemaNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optschemaeltlist`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSchemaList`. * @param ctx the parse tree * @return the visitor result */ - visitOptschemaeltlist?: (ctx: OptschemaeltlistContext) => Result; + visitOptionalSchemaList?: (ctx: OptionalSchemaListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.schema_stmt`. + * Visit a parse tree produced by `PostgreSqlParser.schemaStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSchema_stmt?: (ctx: Schema_stmtContext) => Result; + visitSchemaStatement?: (ctx: SchemaStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.variablesetstmt`. + * Visit a parse tree produced by `PostgreSqlParser.variableSetStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVariablesetstmt?: (ctx: VariablesetstmtContext) => Result; + visitVariableSetStatement?: (ctx: VariableSetStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_rest`. + * Visit a parse tree produced by `PostgreSqlParser.setStatementEnding`. * @param ctx the parse tree * @return the visitor result */ - visitSet_rest?: (ctx: Set_restContext) => Result; + visitSetStatementEnding?: (ctx: SetStatementEndingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_set`. + * Visit a parse tree produced by `PostgreSqlParser.genericSetClause`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_set?: (ctx: Generic_setContext) => Result; + visitGenericSetClause?: (ctx: GenericSetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_rest_more`. + * Visit a parse tree produced by `PostgreSqlParser.setStatementMore`. * @param ctx the parse tree * @return the visitor result */ - visitSet_rest_more?: (ctx: Set_rest_moreContext) => Result; + visitSetStatementMore?: (ctx: SetStatementMoreContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.var_name`. + * Visit a parse tree produced by `PostgreSqlParser.variableName`. * @param ctx the parse tree * @return the visitor result */ - visitVar_name?: (ctx: Var_nameContext) => Result; + visitVariableName?: (ctx: VariableNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.var_list`. + * Visit a parse tree produced by `PostgreSqlParser.variableList`. * @param ctx the parse tree * @return the visitor result */ - visitVar_list?: (ctx: Var_listContext) => Result; + visitVariableList?: (ctx: VariableListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.var_value`. + * Visit a parse tree produced by `PostgreSqlParser.variableValue`. * @param ctx the parse tree * @return the visitor result */ - visitVar_value?: (ctx: Var_valueContext) => Result; + visitVariableValue?: (ctx: VariableValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.iso_level`. + * Visit a parse tree produced by `PostgreSqlParser.isoLevel`. * @param ctx the parse tree * @return the visitor result */ - visitIso_level?: (ctx: Iso_levelContext) => Result; + visitIsoLevel?: (ctx: IsoLevelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_boolean_or_string`. + * Visit a parse tree produced by `PostgreSqlParser.booleanOrString`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_boolean_or_string?: (ctx: Opt_boolean_or_stringContext) => Result; + visitBooleanOrString?: (ctx: BooleanOrStringContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.zone_value`. + * Visit a parse tree produced by `PostgreSqlParser.zoneValue`. * @param ctx the parse tree * @return the visitor result */ - visitZone_value?: (ctx: Zone_valueContext) => Result; + visitZoneValue?: (ctx: ZoneValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_encoding`. + * Visit a parse tree produced by `PostgreSqlParser.optionalEncoding`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_encoding?: (ctx: Opt_encodingContext) => Result; + visitOptionalEncoding?: (ctx: OptionalEncodingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.nonreservedword_or_sconst`. + * Visit a parse tree produced by `PostgreSqlParser.nonReservedWordOrSconst`. * @param ctx the parse tree * @return the visitor result */ - visitNonreservedword_or_sconst?: (ctx: Nonreservedword_or_sconstContext) => Result; + visitNonReservedWordOrSconst?: (ctx: NonReservedWordOrSconstContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.variableresetstmt`. + * Visit a parse tree produced by `PostgreSqlParser.variableResetStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVariableresetstmt?: (ctx: VariableresetstmtContext) => Result; + visitVariableResetStatement?: (ctx: VariableResetStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reset_rest`. + * Visit a parse tree produced by `PostgreSqlParser.resetClauseRest`. * @param ctx the parse tree * @return the visitor result */ - visitReset_rest?: (ctx: Reset_restContext) => Result; + visitResetClauseRest?: (ctx: ResetClauseRestContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_reset`. + * Visit a parse tree produced by `PostgreSqlParser.genericResetClause`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_reset?: (ctx: Generic_resetContext) => Result; + visitGenericResetClause?: (ctx: GenericResetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.setresetclause`. + * Visit a parse tree produced by `PostgreSqlParser.setResetClause`. * @param ctx the parse tree * @return the visitor result */ - visitSetresetclause?: (ctx: SetresetclauseContext) => Result; + visitSetResetClause?: (ctx: SetResetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.functionsetresetclause`. + * Visit a parse tree produced by `PostgreSqlParser.functionSetResetClause`. * @param ctx the parse tree * @return the visitor result */ - visitFunctionsetresetclause?: (ctx: FunctionsetresetclauseContext) => Result; + visitFunctionSetResetClause?: (ctx: FunctionSetResetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.variableshowstmt`. + * Visit a parse tree produced by `PostgreSqlParser.variableShowStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVariableshowstmt?: (ctx: VariableshowstmtContext) => Result; + visitVariableShowStatement?: (ctx: VariableShowStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constraintssetstmt`. + * Visit a parse tree produced by `PostgreSqlParser.setConstraintsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitConstraintssetstmt?: (ctx: ConstraintssetstmtContext) => Result; + visitSetConstraintsStatement?: (ctx: SetConstraintsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constraints_set_list`. + * Visit a parse tree produced by `PostgreSqlParser.constraintsSetList`. * @param ctx the parse tree * @return the visitor result */ - visitConstraints_set_list?: (ctx: Constraints_set_listContext) => Result; + visitConstraintsSetList?: (ctx: ConstraintsSetListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constraints_set_mode`. + * Visit a parse tree produced by `PostgreSqlParser.constraintsSetMode`. * @param ctx the parse tree * @return the visitor result */ - visitConstraints_set_mode?: (ctx: Constraints_set_modeContext) => Result; + visitConstraintsSetMode?: (ctx: ConstraintsSetModeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.checkpointstmt`. + * Visit a parse tree produced by `PostgreSqlParser.checkpointStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCheckpointstmt?: (ctx: CheckpointstmtContext) => Result; + visitCheckpointStatement?: (ctx: CheckpointStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.discardstmt`. + * Visit a parse tree produced by `PostgreSqlParser.discardStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDiscardstmt?: (ctx: DiscardstmtContext) => Result; + visitDiscardStatement?: (ctx: DiscardStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altertablestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterTableStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltertablestmt?: (ctx: AltertablestmtContext) => Result; + visitAlterTableStatement?: (ctx: AlterTableStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_table_cmds`. + * Visit a parse tree produced by `PostgreSqlParser.alterTableCommands`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_table_cmds?: (ctx: Alter_table_cmdsContext) => Result; + visitAlterTableCommands?: (ctx: AlterTableCommandsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.partition_cmd`. + * Visit a parse tree produced by `PostgreSqlParser.partitionCommand`. * @param ctx the parse tree * @return the visitor result */ - visitPartition_cmd?: (ctx: Partition_cmdContext) => Result; + visitPartitionCommand?: (ctx: PartitionCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.index_partition_cmd`. + * Visit a parse tree produced by `PostgreSqlParser.indexPartitionCommand`. * @param ctx the parse tree * @return the visitor result */ - visitIndex_partition_cmd?: (ctx: Index_partition_cmdContext) => Result; + visitIndexPartitionCommand?: (ctx: IndexPartitionCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_table_cmd`. + * Visit a parse tree produced by `PostgreSqlParser.alterTableCommand`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_table_cmd?: (ctx: Alter_table_cmdContext) => Result; + visitAlterTableCommand?: (ctx: AlterTableCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_column_default`. + * Visit a parse tree produced by `PostgreSqlParser.alterColumnDefault`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_column_default?: (ctx: Alter_column_defaultContext) => Result; + visitAlterColumnDefault?: (ctx: AlterColumnDefaultContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_drop_behavior`. + * Visit a parse tree produced by `PostgreSqlParser.optionalDropBehavior`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_drop_behavior?: (ctx: Opt_drop_behaviorContext) => Result; + visitOptionalDropBehavior?: (ctx: OptionalDropBehaviorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_collate_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCollateClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_collate_clause?: (ctx: Opt_collate_clauseContext) => Result; + visitOptionalCollateClause?: (ctx: OptionalCollateClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_using`. + * Visit a parse tree produced by `PostgreSqlParser.alterUsing`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_using?: (ctx: Alter_usingContext) => Result; + visitAlterUsing?: (ctx: AlterUsingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.replica_identity`. + * Visit a parse tree produced by `PostgreSqlParser.replicaIdentity`. * @param ctx the parse tree * @return the visitor result */ - visitReplica_identity?: (ctx: Replica_identityContext) => Result; + visitReplicaIdentity?: (ctx: ReplicaIdentityContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reloptions`. + * Visit a parse tree produced by `PostgreSqlParser.relOptions`. * @param ctx the parse tree * @return the visitor result */ - visitReloptions?: (ctx: ReloptionsContext) => Result; + visitRelOptions?: (ctx: RelOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_reloptions`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRelOptions`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_reloptions?: (ctx: Opt_reloptionsContext) => Result; + visitOptionalRelOptions?: (ctx: OptionalRelOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reloption_list`. + * Visit a parse tree produced by `PostgreSqlParser.relOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitReloption_list?: (ctx: Reloption_listContext) => Result; + visitRelOptionList?: (ctx: RelOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reloption_elem`. + * Visit a parse tree produced by `PostgreSqlParser.relOptionElem`. * @param ctx the parse tree * @return the visitor result */ - visitReloption_elem?: (ctx: Reloption_elemContext) => Result; + visitRelOptionElem?: (ctx: RelOptionElemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_identity_column_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.alterIdentityColumnOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_identity_column_option_list?: (ctx: Alter_identity_column_option_listContext) => Result; + visitAlterIdentityColumnOptionList?: (ctx: AlterIdentityColumnOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_identity_column_option`. + * Visit a parse tree produced by `PostgreSqlParser.alterIdentityColumnOption`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_identity_column_option?: (ctx: Alter_identity_column_optionContext) => Result; + visitAlterIdentityColumnOption?: (ctx: AlterIdentityColumnOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.partitionboundspec`. + * Visit a parse tree produced by `PostgreSqlParser.partitionBoundSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitPartitionboundspec?: (ctx: PartitionboundspecContext) => Result; + visitPartitionBoundSpecification?: (ctx: PartitionBoundSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.hash_partbound_elem`. + * Visit a parse tree produced by `PostgreSqlParser.hashPartitionBoundElement`. * @param ctx the parse tree * @return the visitor result */ - visitHash_partbound_elem?: (ctx: Hash_partbound_elemContext) => Result; + visitHashPartitionBoundElement?: (ctx: HashPartitionBoundElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.hash_partbound`. + * Visit a parse tree produced by `PostgreSqlParser.hashPartitionBound`. * @param ctx the parse tree * @return the visitor result */ - visitHash_partbound?: (ctx: Hash_partboundContext) => Result; + visitHashPartitionBound?: (ctx: HashPartitionBoundContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altercompositetypestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterCompositeTypeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltercompositetypestmt?: (ctx: AltercompositetypestmtContext) => Result; + visitAlterCompositeTypeStatement?: (ctx: AlterCompositeTypeStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_type_cmds`. + * Visit a parse tree produced by `PostgreSqlParser.alterTypeCommands`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_type_cmds?: (ctx: Alter_type_cmdsContext) => Result; + visitAlterTypeCommands?: (ctx: AlterTypeCommandsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_type_cmd`. + * Visit a parse tree produced by `PostgreSqlParser.alterTypeCommand`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_type_cmd?: (ctx: Alter_type_cmdContext) => Result; + visitAlterTypeCommand?: (ctx: AlterTypeCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.closeportalstmt`. + * Visit a parse tree produced by `PostgreSqlParser.closePortalStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCloseportalstmt?: (ctx: CloseportalstmtContext) => Result; + visitClosePortalStatement?: (ctx: ClosePortalStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copystmt`. + * Visit a parse tree produced by `PostgreSqlParser.copyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCopystmt?: (ctx: CopystmtContext) => Result; + visitCopyStatement?: (ctx: CopyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_from`. + * Visit a parse tree produced by `PostgreSqlParser.fromOrTo`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_from?: (ctx: Copy_fromContext) => Result; + visitFromOrTo?: (ctx: FromOrToContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_program`. + * Visit a parse tree produced by `PostgreSqlParser.copyFileName`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_program?: (ctx: Opt_programContext) => Result; + visitCopyFileName?: (ctx: CopyFileNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_file_name`. + * Visit a parse tree produced by `PostgreSqlParser.copyOptions`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_file_name?: (ctx: Copy_file_nameContext) => Result; + visitCopyOptions?: (ctx: CopyOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_options`. + * Visit a parse tree produced by `PostgreSqlParser.copyOptionsItem`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_options?: (ctx: Copy_optionsContext) => Result; + visitCopyOptionsItem?: (ctx: CopyOptionsItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.copyDelimiter`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_opt_list?: (ctx: Copy_opt_listContext) => Result; + visitCopyDelimiter?: (ctx: CopyDelimiterContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.copyGenericOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_opt_item?: (ctx: Copy_opt_itemContext) => Result; + visitCopyGenericOptionList?: (ctx: CopyGenericOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_binary`. + * Visit a parse tree produced by `PostgreSqlParser.copyGenericOptionElem`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_binary?: (ctx: Opt_binaryContext) => Result; + visitCopyGenericOptionElem?: (ctx: CopyGenericOptionElemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_delimiter`. + * Visit a parse tree produced by `PostgreSqlParser.copyGenericOptionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_delimiter?: (ctx: Copy_delimiterContext) => Result; + visitCopyGenericOptionArgument?: (ctx: CopyGenericOptionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_using`. + * Visit a parse tree produced by `PostgreSqlParser.createStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_using?: (ctx: Opt_usingContext) => Result; + visitCreateStatement?: (ctx: CreateStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_generic_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.temporaryOption`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_generic_opt_list?: (ctx: Copy_generic_opt_listContext) => Result; + visitTemporaryOption?: (ctx: TemporaryOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_generic_opt_elem`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTableElementList`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_generic_opt_elem?: (ctx: Copy_generic_opt_elemContext) => Result; + visitOptionalTableElementList?: (ctx: OptionalTableElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_generic_opt_arg`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTypedTableElementList`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_generic_opt_arg?: (ctx: Copy_generic_opt_argContext) => Result; + visitOptionalTypedTableElementList?: (ctx: OptionalTypedTableElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_generic_opt_arg_list`. + * Visit a parse tree produced by `PostgreSqlParser.tableElementList`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_generic_opt_arg_list?: (ctx: Copy_generic_opt_arg_listContext) => Result; + visitTableElementList?: (ctx: TableElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.copy_generic_opt_arg_list_item`. + * Visit a parse tree produced by `PostgreSqlParser.typedTableElementList`. * @param ctx the parse tree * @return the visitor result */ - visitCopy_generic_opt_arg_list_item?: (ctx: Copy_generic_opt_arg_list_itemContext) => Result; + visitTypedTableElementList?: (ctx: TypedTableElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createstmt`. + * Visit a parse tree produced by `PostgreSqlParser.tableElement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatestmt?: (ctx: CreatestmtContext) => Result; + visitTableElement?: (ctx: TableElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttemp`. + * Visit a parse tree produced by `PostgreSqlParser.typedTableElement`. * @param ctx the parse tree * @return the visitor result */ - visitOpttemp?: (ctx: OpttempContext) => Result; + visitTypedTableElement?: (ctx: TypedTableElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttableelementlist`. + * Visit a parse tree produced by `PostgreSqlParser.columnDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitOpttableelementlist?: (ctx: OpttableelementlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opttypedtableelementlist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpttypedtableelementlist?: (ctx: OpttypedtableelementlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tableelementlist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableelementlist?: (ctx: TableelementlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.typedtableelementlist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTypedtableelementlist?: (ctx: TypedtableelementlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tableelement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableelement?: (ctx: TableelementContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.typedtableelement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTypedtableelement?: (ctx: TypedtableelementContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.columnDef`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColumnDef?: (ctx: ColumnDefContext) => Result; + visitColumnDefinition?: (ctx: ColumnDefinitionContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.columnOptions`. * @param ctx the parse tree @@ -1410,809 +1311,743 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.colquallist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColquallist?: (ctx: ColquallistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.colconstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColconstraint?: (ctx: ColconstraintContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.colconstraintelem`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColconstraintelem?: (ctx: ColconstraintelemContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.generated_when`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGenerated_when?: (ctx: Generated_whenContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.constraintattr`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConstraintattr?: (ctx: ConstraintattrContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tablelikeclause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTablelikeclause?: (ctx: TablelikeclauseContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tablelikeoptionlist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTablelikeoptionlist?: (ctx: TablelikeoptionlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tablelikeoption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTablelikeoption?: (ctx: TablelikeoptionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.tableconstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableconstraint?: (ctx: TableconstraintContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.constraintelem`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConstraintelem?: (ctx: ConstraintelemContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_no_inherit`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_no_inherit?: (ctx: Opt_no_inheritContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_column_list`. + * Visit a parse tree produced by `PostgreSqlParser.columnQualifierList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_column_list?: (ctx: Opt_column_listContext) => Result; + visitColumnQualifierList?: (ctx: ColumnQualifierListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.columnlist`. + * Visit a parse tree produced by `PostgreSqlParser.columnConstraint`. * @param ctx the parse tree * @return the visitor result */ - visitColumnlist?: (ctx: ColumnlistContext) => Result; + visitColumnConstraint?: (ctx: ColumnConstraintContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.columnElem`. + * Visit a parse tree produced by `PostgreSqlParser.columnConstraintElement`. * @param ctx the parse tree * @return the visitor result */ - visitColumnElem?: (ctx: ColumnElemContext) => Result; + visitColumnConstraintElement?: (ctx: ColumnConstraintElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_c_include`. + * Visit a parse tree produced by `PostgreSqlParser.generatedWhen`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_c_include?: (ctx: Opt_c_includeContext) => Result; + visitGeneratedWhen?: (ctx: GeneratedWhenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.key_match`. + * Visit a parse tree produced by `PostgreSqlParser.constraintAttribute`. * @param ctx the parse tree * @return the visitor result */ - visitKey_match?: (ctx: Key_matchContext) => Result; + visitConstraintAttribute?: (ctx: ConstraintAttributeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.exclusionconstraintlist`. + * Visit a parse tree produced by `PostgreSqlParser.tableLikeClause`. * @param ctx the parse tree * @return the visitor result */ - visitExclusionconstraintlist?: (ctx: ExclusionconstraintlistContext) => Result; + visitTableLikeClause?: (ctx: TableLikeClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.exclusionconstraintelem`. + * Visit a parse tree produced by `PostgreSqlParser.tableLikeOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitExclusionconstraintelem?: (ctx: ExclusionconstraintelemContext) => Result; + visitTableLikeOptionList?: (ctx: TableLikeOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.exclusionwhereclause`. + * Visit a parse tree produced by `PostgreSqlParser.tableLikeOption`. * @param ctx the parse tree * @return the visitor result */ - visitExclusionwhereclause?: (ctx: ExclusionwhereclauseContext) => Result; + visitTableLikeOption?: (ctx: TableLikeOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.key_actions`. + * Visit a parse tree produced by `PostgreSqlParser.tableConstraint`. * @param ctx the parse tree * @return the visitor result */ - visitKey_actions?: (ctx: Key_actionsContext) => Result; + visitTableConstraint?: (ctx: TableConstraintContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.key_update`. + * Visit a parse tree produced by `PostgreSqlParser.constraintElement`. * @param ctx the parse tree * @return the visitor result */ - visitKey_update?: (ctx: Key_updateContext) => Result; + visitConstraintElement?: (ctx: ConstraintElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.key_delete`. + * Visit a parse tree produced by `PostgreSqlParser.columnListWithParentheses`. * @param ctx the parse tree * @return the visitor result */ - visitKey_delete?: (ctx: Key_deleteContext) => Result; + visitColumnListWithParentheses?: (ctx: ColumnListWithParenthesesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.key_action`. + * Visit a parse tree produced by `PostgreSqlParser.columnList`. * @param ctx the parse tree * @return the visitor result */ - visitKey_action?: (ctx: Key_actionContext) => Result; + visitColumnList?: (ctx: ColumnListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optinherit`. + * Visit a parse tree produced by `PostgreSqlParser.columnElement`. * @param ctx the parse tree * @return the visitor result */ - visitOptinherit?: (ctx: OptinheritContext) => Result; + visitColumnElement?: (ctx: ColumnElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optpartitionspec`. + * Visit a parse tree produced by `PostgreSqlParser.optionalColumnListInclude`. * @param ctx the parse tree * @return the visitor result */ - visitOptpartitionspec?: (ctx: OptpartitionspecContext) => Result; + visitOptionalColumnListInclude?: (ctx: OptionalColumnListIncludeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.partitionspec`. + * Visit a parse tree produced by `PostgreSqlParser.matchClause`. * @param ctx the parse tree * @return the visitor result */ - visitPartitionspec?: (ctx: PartitionspecContext) => Result; + visitMatchClause?: (ctx: MatchClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.part_params`. + * Visit a parse tree produced by `PostgreSqlParser.exclusionConstraintList`. * @param ctx the parse tree * @return the visitor result */ - visitPart_params?: (ctx: Part_paramsContext) => Result; + visitExclusionConstraintList?: (ctx: ExclusionConstraintListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.part_elem`. + * Visit a parse tree produced by `PostgreSqlParser.exclusionConstraintElement`. * @param ctx the parse tree * @return the visitor result */ - visitPart_elem?: (ctx: Part_elemContext) => Result; + visitExclusionConstraintElement?: (ctx: ExclusionConstraintElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_access_method_clause`. + * Visit a parse tree produced by `PostgreSqlParser.exclusionWhereClause`. * @param ctx the parse tree * @return the visitor result */ - visitTable_access_method_clause?: (ctx: Table_access_method_clauseContext) => Result; + visitExclusionWhereClause?: (ctx: ExclusionWhereClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optwith`. + * Visit a parse tree produced by `PostgreSqlParser.keyActions`. * @param ctx the parse tree * @return the visitor result */ - visitOptwith?: (ctx: OptwithContext) => Result; + visitKeyActions?: (ctx: KeyActionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.oncommitoption`. + * Visit a parse tree produced by `PostgreSqlParser.onKeyUpdateClause`. * @param ctx the parse tree * @return the visitor result */ - visitOncommitoption?: (ctx: OncommitoptionContext) => Result; + visitOnKeyUpdateClause?: (ctx: OnKeyUpdateClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttablespace`. + * Visit a parse tree produced by `PostgreSqlParser.onKeyDeleteClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpttablespace?: (ctx: OpttablespaceContext) => Result; + visitOnKeyDeleteClause?: (ctx: OnKeyDeleteClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optconstablespace`. + * Visit a parse tree produced by `PostgreSqlParser.keyAction`. * @param ctx the parse tree * @return the visitor result */ - visitOptconstablespace?: (ctx: OptconstablespaceContext) => Result; + visitKeyAction?: (ctx: KeyActionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.existingindex`. + * Visit a parse tree produced by `PostgreSqlParser.inheritClause`. * @param ctx the parse tree * @return the visitor result */ - visitExistingindex?: (ctx: ExistingindexContext) => Result; + visitInheritClause?: (ctx: InheritClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createstatsstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalPartitionSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitCreatestatsstmt?: (ctx: CreatestatsstmtContext) => Result; + visitOptionalPartitionSpecification?: (ctx: OptionalPartitionSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterstatsstmt`. + * Visit a parse tree produced by `PostgreSqlParser.partitionSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitAlterstatsstmt?: (ctx: AlterstatsstmtContext) => Result; + visitPartitionSpecification?: (ctx: PartitionSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createasstmt`. + * Visit a parse tree produced by `PostgreSqlParser.partitionElements`. * @param ctx the parse tree * @return the visitor result */ - visitCreateasstmt?: (ctx: CreateasstmtContext) => Result; + visitPartitionElements?: (ctx: PartitionElementsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.create_as_target`. + * Visit a parse tree produced by `PostgreSqlParser.partitionElement`. * @param ctx the parse tree * @return the visitor result */ - visitCreate_as_target?: (ctx: Create_as_targetContext) => Result; + visitPartitionElement?: (ctx: PartitionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_with_data`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTableAccessMethodClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_with_data?: (ctx: Opt_with_dataContext) => Result; + visitOptionalTableAccessMethodClause?: (ctx: OptionalTableAccessMethodClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.creatematviewstmt`. + * Visit a parse tree produced by `PostgreSqlParser.with`. * @param ctx the parse tree * @return the visitor result */ - visitCreatematviewstmt?: (ctx: CreatematviewstmtContext) => Result; + visitWith?: (ctx: WithContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.create_mv_target`. + * Visit a parse tree produced by `PostgreSqlParser.onCommitOption`. * @param ctx the parse tree * @return the visitor result */ - visitCreate_mv_target?: (ctx: Create_mv_targetContext) => Result; + visitOnCommitOption?: (ctx: OnCommitOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optnolog`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTablespace`. * @param ctx the parse tree * @return the visitor result */ - visitOptnolog?: (ctx: OptnologContext) => Result; + visitOptionalTablespace?: (ctx: OptionalTablespaceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.refreshmatviewstmt`. + * Visit a parse tree produced by `PostgreSqlParser.usingIndexTablespace`. * @param ctx the parse tree * @return the visitor result */ - visitRefreshmatviewstmt?: (ctx: RefreshmatviewstmtContext) => Result; + visitUsingIndexTablespace?: (ctx: UsingIndexTablespaceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createseqstmt`. + * Visit a parse tree produced by `PostgreSqlParser.existingIndex`. * @param ctx the parse tree * @return the visitor result */ - visitCreateseqstmt?: (ctx: CreateseqstmtContext) => Result; + visitExistingIndex?: (ctx: ExistingIndexContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterseqstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createStatsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterseqstmt?: (ctx: AlterseqstmtContext) => Result; + visitCreateStatsStatement?: (ctx: CreateStatsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optseqoptlist`. + * Visit a parse tree produced by `PostgreSqlParser.alterStatsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOptseqoptlist?: (ctx: OptseqoptlistContext) => Result; + visitAlterStatsStatement?: (ctx: AlterStatsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optparenthesizedseqoptlist`. + * Visit a parse tree produced by `PostgreSqlParser.createAsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOptparenthesizedseqoptlist?: (ctx: OptparenthesizedseqoptlistContext) => Result; + visitCreateAsStatement?: (ctx: CreateAsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.seqoptlist`. + * Visit a parse tree produced by `PostgreSqlParser.createAsTarget`. * @param ctx the parse tree * @return the visitor result */ - visitSeqoptlist?: (ctx: SeqoptlistContext) => Result; + visitCreateAsTarget?: (ctx: CreateAsTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.seqoptelem`. + * Visit a parse tree produced by `PostgreSqlParser.withData`. * @param ctx the parse tree * @return the visitor result */ - visitSeqoptelem?: (ctx: SeqoptelemContext) => Result; + visitWithData?: (ctx: WithDataContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_by`. + * Visit a parse tree produced by `PostgreSqlParser.createMaterializedViewStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_by?: (ctx: Opt_byContext) => Result; + visitCreateMaterializedViewStatement?: (ctx: CreateMaterializedViewStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.numericonly`. + * Visit a parse tree produced by `PostgreSqlParser.createMaterializedViewTarget`. * @param ctx the parse tree * @return the visitor result */ - visitNumericonly?: (ctx: NumericonlyContext) => Result; + visitCreateMaterializedViewTarget?: (ctx: CreateMaterializedViewTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.numericonly_list`. + * Visit a parse tree produced by `PostgreSqlParser.refreshMaterializedViewStatement`. * @param ctx the parse tree * @return the visitor result */ - visitNumericonly_list?: (ctx: Numericonly_listContext) => Result; + visitRefreshMaterializedViewStatement?: (ctx: RefreshMaterializedViewStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createplangstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createSequenceStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateplangstmt?: (ctx: CreateplangstmtContext) => Result; + visitCreateSequenceStatement?: (ctx: CreateSequenceStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_trusted`. + * Visit a parse tree produced by `PostgreSqlParser.alterSequenceStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_trusted?: (ctx: Opt_trustedContext) => Result; + visitAlterSequenceStatement?: (ctx: AlterSequenceStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.handler_name`. + * Visit a parse tree produced by `PostgreSqlParser.optionalParenthesizedSeqOptionsList`. * @param ctx the parse tree * @return the visitor result */ - visitHandler_name?: (ctx: Handler_nameContext) => Result; + visitOptionalParenthesizedSeqOptionsList?: (ctx: OptionalParenthesizedSeqOptionsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_inline_handler`. + * Visit a parse tree produced by `PostgreSqlParser.sequenceOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_inline_handler?: (ctx: Opt_inline_handlerContext) => Result; + visitSequenceOptionList?: (ctx: SequenceOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.validator_clause`. + * Visit a parse tree produced by `PostgreSqlParser.sequenceOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitValidator_clause?: (ctx: Validator_clauseContext) => Result; + visitSequenceOptionItem?: (ctx: SequenceOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_validator`. + * Visit a parse tree produced by `PostgreSqlParser.numericOnly`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_validator?: (ctx: Opt_validatorContext) => Result; + visitNumericOnly?: (ctx: NumericOnlyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_procedural`. + * Visit a parse tree produced by `PostgreSqlParser.numericOnlyList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_procedural?: (ctx: Opt_proceduralContext) => Result; + visitNumericOnlyList?: (ctx: NumericOnlyListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createtablespacestmt`. + * Visit a parse tree produced by `PostgreSqlParser.createProcedureLangStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatetablespacestmt?: (ctx: CreatetablespacestmtContext) => Result; + visitCreateProcedureLangStatement?: (ctx: CreateProcedureLangStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttablespaceowner`. + * Visit a parse tree produced by `PostgreSqlParser.handlerName`. * @param ctx the parse tree * @return the visitor result */ - visitOpttablespaceowner?: (ctx: OpttablespaceownerContext) => Result; + visitHandlerName?: (ctx: HandlerNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.droptablespacestmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalInlineHandler`. * @param ctx the parse tree * @return the visitor result */ - visitDroptablespacestmt?: (ctx: DroptablespacestmtContext) => Result; + visitOptionalInlineHandler?: (ctx: OptionalInlineHandlerContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createextensionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.validatorClause`. * @param ctx the parse tree * @return the visitor result */ - visitCreateextensionstmt?: (ctx: CreateextensionstmtContext) => Result; + visitValidatorClause?: (ctx: ValidatorClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.create_extension_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalProcedural`. * @param ctx the parse tree * @return the visitor result */ - visitCreate_extension_opt_list?: (ctx: Create_extension_opt_listContext) => Result; + visitOptionalProcedural?: (ctx: OptionalProceduralContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.create_extension_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.createTablespaceStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreate_extension_opt_item?: (ctx: Create_extension_opt_itemContext) => Result; + visitCreateTablespaceStatement?: (ctx: CreateTablespaceStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterextensionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTablespaceOwner`. * @param ctx the parse tree * @return the visitor result */ - visitAlterextensionstmt?: (ctx: AlterextensionstmtContext) => Result; + visitOptionalTablespaceOwner?: (ctx: OptionalTablespaceOwnerContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_extension_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.dropTablespaceStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_extension_opt_list?: (ctx: Alter_extension_opt_listContext) => Result; + visitDropTablespaceStatement?: (ctx: DropTablespaceStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_extension_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.createExtensionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_extension_opt_item?: (ctx: Alter_extension_opt_itemContext) => Result; + visitCreateExtensionStatement?: (ctx: CreateExtensionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterextensioncontentsstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createExtensionOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitAlterextensioncontentsstmt?: (ctx: AlterextensioncontentsstmtContext) => Result; + visitCreateExtensionOptionItem?: (ctx: CreateExtensionOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createfdwstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterExtensionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatefdwstmt?: (ctx: CreatefdwstmtContext) => Result; + visitAlterExtensionStatement?: (ctx: AlterExtensionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.fdw_option`. + * Visit a parse tree produced by `PostgreSqlParser.alterExtensionOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitFdw_option?: (ctx: Fdw_optionContext) => Result; + visitAlterExtensionOptionItem?: (ctx: AlterExtensionOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.fdw_options`. + * Visit a parse tree produced by `PostgreSqlParser.alterExtensionContentsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitFdw_options?: (ctx: Fdw_optionsContext) => Result; + visitAlterExtensionContentsStatement?: (ctx: AlterExtensionContentsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_fdw_options`. + * Visit a parse tree produced by `PostgreSqlParser.createForeignDataWrapperStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_fdw_options?: (ctx: Opt_fdw_optionsContext) => Result; + visitCreateForeignDataWrapperStatement?: (ctx: CreateForeignDataWrapperStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterfdwstmt`. + * Visit a parse tree produced by `PostgreSqlParser.forwardOption`. * @param ctx the parse tree * @return the visitor result */ - visitAlterfdwstmt?: (ctx: AlterfdwstmtContext) => Result; + visitForwardOption?: (ctx: ForwardOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.create_generic_options`. + * Visit a parse tree produced by `PostgreSqlParser.forwardOptions`. * @param ctx the parse tree * @return the visitor result */ - visitCreate_generic_options?: (ctx: Create_generic_optionsContext) => Result; + visitForwardOptions?: (ctx: ForwardOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.alterForeignDataWrapperStatement`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_option_list?: (ctx: Generic_option_listContext) => Result; + visitAlterForeignDataWrapperStatement?: (ctx: AlterForeignDataWrapperStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_generic_options`. + * Visit a parse tree produced by `PostgreSqlParser.createGenericOptions`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_generic_options?: (ctx: Alter_generic_optionsContext) => Result; + visitCreateGenericOptions?: (ctx: CreateGenericOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_generic_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.genericOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_generic_option_list?: (ctx: Alter_generic_option_listContext) => Result; + visitGenericOptionList?: (ctx: GenericOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alter_generic_option_elem`. + * Visit a parse tree produced by `PostgreSqlParser.alterGenericOptions`. * @param ctx the parse tree * @return the visitor result */ - visitAlter_generic_option_elem?: (ctx: Alter_generic_option_elemContext) => Result; + visitAlterGenericOptions?: (ctx: AlterGenericOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_option_elem`. + * Visit a parse tree produced by `PostgreSqlParser.alterGenericOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_option_elem?: (ctx: Generic_option_elemContext) => Result; + visitAlterGenericOptionList?: (ctx: AlterGenericOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_option_name`. + * Visit a parse tree produced by `PostgreSqlParser.alterGenericOptionElem`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_option_name?: (ctx: Generic_option_nameContext) => Result; + visitAlterGenericOptionElem?: (ctx: AlterGenericOptionElemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.generic_option_arg`. + * Visit a parse tree produced by `PostgreSqlParser.genericOptionElement`. * @param ctx the parse tree * @return the visitor result */ - visitGeneric_option_arg?: (ctx: Generic_option_argContext) => Result; + visitGenericOptionElement?: (ctx: GenericOptionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createforeignserverstmt`. + * Visit a parse tree produced by `PostgreSqlParser.genericOptionName`. * @param ctx the parse tree * @return the visitor result */ - visitCreateforeignserverstmt?: (ctx: CreateforeignserverstmtContext) => Result; + visitGenericOptionName?: (ctx: GenericOptionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_type`. + * Visit a parse tree produced by `PostgreSqlParser.genericOptionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_type?: (ctx: Opt_typeContext) => Result; + visitGenericOptionArgument?: (ctx: GenericOptionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.foreign_server_version`. + * Visit a parse tree produced by `PostgreSqlParser.createForeignServerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitForeign_server_version?: (ctx: Foreign_server_versionContext) => Result; + visitCreateForeignServerStatement?: (ctx: CreateForeignServerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_foreign_server_version`. + * Visit a parse tree produced by `PostgreSqlParser.optionalType`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_foreign_server_version?: (ctx: Opt_foreign_server_versionContext) => Result; + visitOptionalType?: (ctx: OptionalTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterforeignserverstmt`. + * Visit a parse tree produced by `PostgreSqlParser.foreignServerVersion`. * @param ctx the parse tree * @return the visitor result */ - visitAlterforeignserverstmt?: (ctx: AlterforeignserverstmtContext) => Result; + visitForeignServerVersion?: (ctx: ForeignServerVersionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createforeigntablestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterForeignServerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateforeigntablestmt?: (ctx: CreateforeigntablestmtContext) => Result; + visitAlterForeignServerStatement?: (ctx: AlterForeignServerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.importforeignschemastmt`. + * Visit a parse tree produced by `PostgreSqlParser.createForeignTableStatement`. * @param ctx the parse tree * @return the visitor result */ - visitImportforeignschemastmt?: (ctx: ImportforeignschemastmtContext) => Result; + visitCreateForeignTableStatement?: (ctx: CreateForeignTableStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.import_qualification_type`. + * Visit a parse tree produced by `PostgreSqlParser.importForeignSchemaStatement`. * @param ctx the parse tree * @return the visitor result */ - visitImport_qualification_type?: (ctx: Import_qualification_typeContext) => Result; + visitImportForeignSchemaStatement?: (ctx: ImportForeignSchemaStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.import_qualification`. + * Visit a parse tree produced by `PostgreSqlParser.importQualificationType`. * @param ctx the parse tree * @return the visitor result */ - visitImport_qualification?: (ctx: Import_qualificationContext) => Result; + visitImportQualificationType?: (ctx: ImportQualificationTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createusermappingstmt`. + * Visit a parse tree produced by `PostgreSqlParser.importQualification`. * @param ctx the parse tree * @return the visitor result */ - visitCreateusermappingstmt?: (ctx: CreateusermappingstmtContext) => Result; + visitImportQualification?: (ctx: ImportQualificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.auth_ident`. + * Visit a parse tree produced by `PostgreSqlParser.createUserMappingStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAuth_ident?: (ctx: Auth_identContext) => Result; + visitCreateUserMappingStatement?: (ctx: CreateUserMappingStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropusermappingstmt`. + * Visit a parse tree produced by `PostgreSqlParser.authIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitDropusermappingstmt?: (ctx: DropusermappingstmtContext) => Result; + visitAuthIdentifier?: (ctx: AuthIdentifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterusermappingstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropUserMappingStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterusermappingstmt?: (ctx: AlterusermappingstmtContext) => Result; + visitDropUserMappingStatement?: (ctx: DropUserMappingStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createpolicystmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterUserMappingStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatepolicystmt?: (ctx: CreatepolicystmtContext) => Result; + visitAlterUserMappingStatement?: (ctx: AlterUserMappingStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterpolicystmt`. + * Visit a parse tree produced by `PostgreSqlParser.createPolicyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterpolicystmt?: (ctx: AlterpolicystmtContext) => Result; + visitCreatePolicyStatement?: (ctx: CreatePolicyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecurityoptionalexpr`. + * Visit a parse tree produced by `PostgreSqlParser.alterPolicyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecurityoptionalexpr?: (ctx: RowsecurityoptionalexprContext) => Result; + visitAlterPolicyStatement?: (ctx: AlterPolicyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecurityoptionalwithcheck`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityOptionalExpression`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecurityoptionalwithcheck?: (ctx: RowsecurityoptionalwithcheckContext) => Result; + visitRowSecurityOptionalExpression?: (ctx: RowSecurityOptionalExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecuritydefaulttorole`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityOptionalWithCheck`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecuritydefaulttorole?: (ctx: RowsecuritydefaulttoroleContext) => Result; + visitRowSecurityOptionalWithCheck?: (ctx: RowSecurityOptionalWithCheckContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecurityoptionaltorole`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityDefaultToRole`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecurityoptionaltorole?: (ctx: RowsecurityoptionaltoroleContext) => Result; + visitRowSecurityDefaultToRole?: (ctx: RowSecurityDefaultToRoleContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecuritydefaultpermissive`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityOptionalToRole`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecuritydefaultpermissive?: (ctx: RowsecuritydefaultpermissiveContext) => Result; + visitRowSecurityOptionalToRole?: (ctx: RowSecurityOptionalToRoleContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsecuritydefaultforcmd`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityDefaultPermissive`. * @param ctx the parse tree * @return the visitor result */ - visitRowsecuritydefaultforcmd?: (ctx: RowsecuritydefaultforcmdContext) => Result; + visitRowSecurityDefaultPermissive?: (ctx: RowSecurityDefaultPermissiveContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.row_security_cmd`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityDefaultForCmd`. * @param ctx the parse tree * @return the visitor result */ - visitRow_security_cmd?: (ctx: Row_security_cmdContext) => Result; + visitRowSecurityDefaultForCmd?: (ctx: RowSecurityDefaultForCmdContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createamstmt`. + * Visit a parse tree produced by `PostgreSqlParser.rowSecurityCommand`. * @param ctx the parse tree * @return the visitor result */ - visitCreateamstmt?: (ctx: CreateamstmtContext) => Result; + visitRowSecurityCommand?: (ctx: RowSecurityCommandContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.am_type`. + * Visit a parse tree produced by `PostgreSqlParser.createAccessMethodStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAm_type?: (ctx: Am_typeContext) => Result; + visitCreateAccessMethodStatement?: (ctx: CreateAccessMethodStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createtrigstmt`. + * Visit a parse tree produced by `PostgreSqlParser.accessMethodType`. * @param ctx the parse tree * @return the visitor result */ - visitCreatetrigstmt?: (ctx: CreatetrigstmtContext) => Result; + visitAccessMethodType?: (ctx: AccessMethodTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggeractiontime`. + * Visit a parse tree produced by `PostgreSqlParser.createTriggerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitTriggeractiontime?: (ctx: TriggeractiontimeContext) => Result; + visitCreateTriggerStatement?: (ctx: CreateTriggerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerevents`. + * Visit a parse tree produced by `PostgreSqlParser.triggerActionTime`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerevents?: (ctx: TriggereventsContext) => Result; + visitTriggerActionTime?: (ctx: TriggerActionTimeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggeroneevent`. + * Visit a parse tree produced by `PostgreSqlParser.triggerEvents`. * @param ctx the parse tree * @return the visitor result */ - visitTriggeroneevent?: (ctx: TriggeroneeventContext) => Result; + visitTriggerEvents?: (ctx: TriggerEventsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerreferencing`. + * Visit a parse tree produced by `PostgreSqlParser.triggerOneEvent`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerreferencing?: (ctx: TriggerreferencingContext) => Result; + visitTriggerOneEvent?: (ctx: TriggerOneEventContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggertransitions`. + * Visit a parse tree produced by `PostgreSqlParser.triggerReferencing`. * @param ctx the parse tree * @return the visitor result */ - visitTriggertransitions?: (ctx: TriggertransitionsContext) => Result; + visitTriggerReferencing?: (ctx: TriggerReferencingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggertransition`. + * Visit a parse tree produced by `PostgreSqlParser.triggerTransitions`. * @param ctx the parse tree * @return the visitor result */ - visitTriggertransition?: (ctx: TriggertransitionContext) => Result; + visitTriggerTransitions?: (ctx: TriggerTransitionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.transitionoldornew`. + * Visit a parse tree produced by `PostgreSqlParser.triggerTransition`. * @param ctx the parse tree * @return the visitor result */ - visitTransitionoldornew?: (ctx: TransitionoldornewContext) => Result; + visitTriggerTransition?: (ctx: TriggerTransitionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.transitionrowortable`. + * Visit a parse tree produced by `PostgreSqlParser.transitionOldOrNew`. * @param ctx the parse tree * @return the visitor result */ - visitTransitionrowortable?: (ctx: TransitionrowortableContext) => Result; + visitTransitionOldOrNew?: (ctx: TransitionOldOrNewContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.transitionrelname`. + * Visit a parse tree produced by `PostgreSqlParser.transitionRowOrTable`. * @param ctx the parse tree * @return the visitor result */ - visitTransitionrelname?: (ctx: TransitionrelnameContext) => Result; + visitTransitionRowOrTable?: (ctx: TransitionRowOrTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerforspec`. + * Visit a parse tree produced by `PostgreSqlParser.transitionRelName`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerforspec?: (ctx: TriggerforspecContext) => Result; + visitTransitionRelName?: (ctx: TransitionRelNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerforopteach`. + * Visit a parse tree produced by `PostgreSqlParser.triggerForSpec`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerforopteach?: (ctx: TriggerforopteachContext) => Result; + visitTriggerForSpec?: (ctx: TriggerForSpecContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerfortype`. + * Visit a parse tree produced by `PostgreSqlParser.triggerForType`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerfortype?: (ctx: TriggerfortypeContext) => Result; + visitTriggerForType?: (ctx: TriggerForTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerwhen`. + * Visit a parse tree produced by `PostgreSqlParser.triggerWhen`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerwhen?: (ctx: TriggerwhenContext) => Result; + visitTriggerWhen?: (ctx: TriggerWhenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.function_or_procedure`. + * Visit a parse tree produced by `PostgreSqlParser.functionOrProcedure`. * @param ctx the parse tree * @return the visitor result */ - visitFunction_or_procedure?: (ctx: Function_or_procedureContext) => Result; + visitFunctionOrProcedure?: (ctx: FunctionOrProcedureContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerfuncargs`. + * Visit a parse tree produced by `PostgreSqlParser.triggerFunctionArguments`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerfuncargs?: (ctx: TriggerfuncargsContext) => Result; + visitTriggerFunctionArguments?: (ctx: TriggerFunctionArgumentsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.triggerfuncarg`. + * Visit a parse tree produced by `PostgreSqlParser.triggerFunctionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitTriggerfuncarg?: (ctx: TriggerfuncargContext) => Result; + visitTriggerFunctionArgument?: (ctx: TriggerFunctionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.optconstrfromtable`. + * Visit a parse tree produced by `PostgreSqlParser.optionalConstraintFromTable`. * @param ctx the parse tree * @return the visitor result */ - visitOptconstrfromtable?: (ctx: OptconstrfromtableContext) => Result; + visitOptionalConstraintFromTable?: (ctx: OptionalConstraintFromTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constraintattributespec`. + * Visit a parse tree produced by `PostgreSqlParser.constraintAttributeSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitConstraintattributespec?: (ctx: ConstraintattributespecContext) => Result; + visitConstraintAttributeSpecification?: (ctx: ConstraintAttributeSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constraintattributeElem`. + * Visit a parse tree produced by `PostgreSqlParser.constraintAttributeElement`. * @param ctx the parse tree * @return the visitor result */ - visitConstraintattributeElem?: (ctx: ConstraintattributeElemContext) => Result; + visitConstraintAttributeElement?: (ctx: ConstraintAttributeElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createeventtrigstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createEventTriggerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateeventtrigstmt?: (ctx: CreateeventtrigstmtContext) => Result; + visitCreateEventTriggerStatement?: (ctx: CreateEventTriggerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.event_trigger_when_list`. + * Visit a parse tree produced by `PostgreSqlParser.eventTriggerWhenList`. * @param ctx the parse tree * @return the visitor result */ - visitEvent_trigger_when_list?: (ctx: Event_trigger_when_listContext) => Result; + visitEventTriggerWhenList?: (ctx: EventTriggerWhenListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.event_trigger_when_item`. + * Visit a parse tree produced by `PostgreSqlParser.eventTriggerWhenItem`. * @param ctx the parse tree * @return the visitor result */ - visitEvent_trigger_when_item?: (ctx: Event_trigger_when_itemContext) => Result; + visitEventTriggerWhenItem?: (ctx: EventTriggerWhenItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.event_trigger_value_list`. + * Visit a parse tree produced by `PostgreSqlParser.eventTriggerValueList`. * @param ctx the parse tree * @return the visitor result */ - visitEvent_trigger_value_list?: (ctx: Event_trigger_value_listContext) => Result; + visitEventTriggerValueList?: (ctx: EventTriggerValueListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altereventtrigstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterEventTriggerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltereventtrigstmt?: (ctx: AltereventtrigstmtContext) => Result; + visitAlterEventTriggerStatement?: (ctx: AlterEventTriggerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.enable_trigger`. + * Visit a parse tree produced by `PostgreSqlParser.enableTrigger`. * @param ctx the parse tree * @return the visitor result */ - visitEnable_trigger?: (ctx: Enable_triggerContext) => Result; + visitEnableTrigger?: (ctx: EnableTriggerContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createassertionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createAssertionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateassertionstmt?: (ctx: CreateassertionstmtContext) => Result; + visitCreateAssertionStatement?: (ctx: CreateAssertionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.definestmt`. + * Visit a parse tree produced by `PostgreSqlParser.defineStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDefinestmt?: (ctx: DefinestmtContext) => Result; + visitDefineStatement?: (ctx: DefineStatementContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.definition`. * @param ctx the parse tree @@ -2220,287 +2055,257 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.def_list`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDef_list?: (ctx: Def_listContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.def_elem`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDef_elem?: (ctx: Def_elemContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.def_arg`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDef_arg?: (ctx: Def_argContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.old_aggr_definition`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOld_aggr_definition?: (ctx: Old_aggr_definitionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.old_aggr_list`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOld_aggr_list?: (ctx: Old_aggr_listContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.old_aggr_elem`. + * Visit a parse tree produced by `PostgreSqlParser.definitionElement`. * @param ctx the parse tree * @return the visitor result */ - visitOld_aggr_elem?: (ctx: Old_aggr_elemContext) => Result; + visitDefinitionElement?: (ctx: DefinitionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_enum_val_list`. + * Visit a parse tree produced by `PostgreSqlParser.definitionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_enum_val_list?: (ctx: Opt_enum_val_listContext) => Result; + visitDefinitionArgument?: (ctx: DefinitionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.enum_val_list`. + * Visit a parse tree produced by `PostgreSqlParser.oldAggregateDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitEnum_val_list?: (ctx: Enum_val_listContext) => Result; + visitOldAggregateDefinition?: (ctx: OldAggregateDefinitionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterenumstmt`. + * Visit a parse tree produced by `PostgreSqlParser.oldAggregateElement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterenumstmt?: (ctx: AlterenumstmtContext) => Result; + visitOldAggregateElement?: (ctx: OldAggregateElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_if_not_exists`. + * Visit a parse tree produced by `PostgreSqlParser.enumValueList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_if_not_exists?: (ctx: Opt_if_not_existsContext) => Result; + visitEnumValueList?: (ctx: EnumValueListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createopclassstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterEnumStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateopclassstmt?: (ctx: CreateopclassstmtContext) => Result; + visitAlterEnumStatement?: (ctx: AlterEnumStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opclass_item_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalIfNotExists`. * @param ctx the parse tree * @return the visitor result */ - visitOpclass_item_list?: (ctx: Opclass_item_listContext) => Result; + visitOptionalIfNotExists?: (ctx: OptionalIfNotExistsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opclass_item`. + * Visit a parse tree produced by `PostgreSqlParser.createOperatorClassStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpclass_item?: (ctx: Opclass_itemContext) => Result; + visitCreateOperatorClassStatement?: (ctx: CreateOperatorClassStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_default`. + * Visit a parse tree produced by `PostgreSqlParser.operatorClassItemList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_default?: (ctx: Opt_defaultContext) => Result; + visitOperatorClassItemList?: (ctx: OperatorClassItemListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_opfamily`. + * Visit a parse tree produced by `PostgreSqlParser.operatorClassItem`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_opfamily?: (ctx: Opt_opfamilyContext) => Result; + visitOperatorClassItem?: (ctx: OperatorClassItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opclass_purpose`. + * Visit a parse tree produced by `PostgreSqlParser.optionalOperatorFamily`. * @param ctx the parse tree * @return the visitor result */ - visitOpclass_purpose?: (ctx: Opclass_purposeContext) => Result; + visitOptionalOperatorFamily?: (ctx: OptionalOperatorFamilyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_recheck`. + * Visit a parse tree produced by `PostgreSqlParser.operatorClassPurpose`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_recheck?: (ctx: Opt_recheckContext) => Result; + visitOperatorClassPurpose?: (ctx: OperatorClassPurposeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createopfamilystmt`. + * Visit a parse tree produced by `PostgreSqlParser.createOperatorFamilyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateopfamilystmt?: (ctx: CreateopfamilystmtContext) => Result; + visitCreateOperatorFamilyStatement?: (ctx: CreateOperatorFamilyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alteropfamilystmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterOperatorFamilyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlteropfamilystmt?: (ctx: AlteropfamilystmtContext) => Result; + visitAlterOperatorFamilyStatement?: (ctx: AlterOperatorFamilyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opclass_drop_list`. + * Visit a parse tree produced by `PostgreSqlParser.operatorClassDropList`. * @param ctx the parse tree * @return the visitor result */ - visitOpclass_drop_list?: (ctx: Opclass_drop_listContext) => Result; + visitOperatorClassDropList?: (ctx: OperatorClassDropListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opclass_drop`. + * Visit a parse tree produced by `PostgreSqlParser.operatorClassDrop`. * @param ctx the parse tree * @return the visitor result */ - visitOpclass_drop?: (ctx: Opclass_dropContext) => Result; + visitOperatorClassDrop?: (ctx: OperatorClassDropContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropopclassstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropOperatorClassStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropopclassstmt?: (ctx: DropopclassstmtContext) => Result; + visitDropOperatorClassStatement?: (ctx: DropOperatorClassStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropopfamilystmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropOperatorFamilyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropopfamilystmt?: (ctx: DropopfamilystmtContext) => Result; + visitDropOperatorFamilyStatement?: (ctx: DropOperatorFamilyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropownedstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropOwnedStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropownedstmt?: (ctx: DropownedstmtContext) => Result; + visitDropOwnedStatement?: (ctx: DropOwnedStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reassignownedstmt`. + * Visit a parse tree produced by `PostgreSqlParser.reassignOwnedStatement`. * @param ctx the parse tree * @return the visitor result */ - visitReassignownedstmt?: (ctx: ReassignownedstmtContext) => Result; + visitReassignOwnedStatement?: (ctx: ReassignOwnedStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropstmt?: (ctx: DropstmtContext) => Result; + visitDropStatement?: (ctx: DropStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.object_type_any_name`. + * Visit a parse tree produced by `PostgreSqlParser.objectTypeAnyName`. * @param ctx the parse tree * @return the visitor result */ - visitObject_type_any_name?: (ctx: Object_type_any_nameContext) => Result; + visitObjectTypeAnyName?: (ctx: ObjectTypeAnyNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.object_type_name`. + * Visit a parse tree produced by `PostgreSqlParser.objectTypeName`. * @param ctx the parse tree * @return the visitor result */ - visitObject_type_name?: (ctx: Object_type_nameContext) => Result; + visitObjectTypeName?: (ctx: ObjectTypeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.drop_type_name`. + * Visit a parse tree produced by `PostgreSqlParser.dropTypeName`. * @param ctx the parse tree * @return the visitor result */ - visitDrop_type_name?: (ctx: Drop_type_nameContext) => Result; + visitDropTypeName?: (ctx: DropTypeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.object_type_name_on_any_name`. + * Visit a parse tree produced by `PostgreSqlParser.objectTypeNameOnAnyName`. * @param ctx the parse tree * @return the visitor result */ - visitObject_type_name_on_any_name?: (ctx: Object_type_name_on_any_nameContext) => Result; + visitObjectTypeNameOnAnyName?: (ctx: ObjectTypeNameOnAnyNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.any_name_list`. + * Visit a parse tree produced by `PostgreSqlParser.anyNameList`. * @param ctx the parse tree * @return the visitor result */ - visitAny_name_list?: (ctx: Any_name_listContext) => Result; + visitAnyNameList?: (ctx: AnyNameListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.any_name`. + * Visit a parse tree produced by `PostgreSqlParser.anyName`. * @param ctx the parse tree * @return the visitor result */ - visitAny_name?: (ctx: Any_nameContext) => Result; + visitAnyName?: (ctx: AnyNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.attrs`. + * Visit a parse tree produced by `PostgreSqlParser.attributes`. * @param ctx the parse tree * @return the visitor result */ - visitAttrs?: (ctx: AttrsContext) => Result; + visitAttributes?: (ctx: AttributesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.type_name_list`. + * Visit a parse tree produced by `PostgreSqlParser.typeNameList`. * @param ctx the parse tree * @return the visitor result */ - visitType_name_list?: (ctx: Type_name_listContext) => Result; + visitTypeNameList?: (ctx: TypeNameListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.truncatestmt`. + * Visit a parse tree produced by `PostgreSqlParser.truncateStatement`. * @param ctx the parse tree * @return the visitor result */ - visitTruncatestmt?: (ctx: TruncatestmtContext) => Result; + visitTruncateStatement?: (ctx: TruncateStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_restart_seqs`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRestartSequences`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_restart_seqs?: (ctx: Opt_restart_seqsContext) => Result; + visitOptionalRestartSequences?: (ctx: OptionalRestartSequencesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.commentstmt`. + * Visit a parse tree produced by `PostgreSqlParser.commentStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCommentstmt?: (ctx: CommentstmtContext) => Result; + visitCommentStatement?: (ctx: CommentStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.comment_text`. + * Visit a parse tree produced by `PostgreSqlParser.commentText`. * @param ctx the parse tree * @return the visitor result */ - visitComment_text?: (ctx: Comment_textContext) => Result; + visitCommentText?: (ctx: CommentTextContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.seclabelstmt`. + * Visit a parse tree produced by `PostgreSqlParser.securityLabelStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSeclabelstmt?: (ctx: SeclabelstmtContext) => Result; + visitSecurityLabelStatement?: (ctx: SecurityLabelStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_provider`. + * Visit a parse tree produced by `PostgreSqlParser.optionalProvider`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_provider?: (ctx: Opt_providerContext) => Result; + visitOptionalProvider?: (ctx: OptionalProviderContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.security_label`. + * Visit a parse tree produced by `PostgreSqlParser.securityLabel`. * @param ctx the parse tree * @return the visitor result */ - visitSecurity_label?: (ctx: Security_labelContext) => Result; + visitSecurityLabel?: (ctx: SecurityLabelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.fetchstmt`. + * Visit a parse tree produced by `PostgreSqlParser.fetchStatement`. * @param ctx the parse tree * @return the visitor result */ - visitFetchstmt?: (ctx: FetchstmtContext) => Result; + visitFetchStatement?: (ctx: FetchStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.fetch_args`. + * Visit a parse tree produced by `PostgreSqlParser.fetchArguments`. * @param ctx the parse tree * @return the visitor result */ - visitFetch_args?: (ctx: Fetch_argsContext) => Result; + visitFetchArguments?: (ctx: FetchArgumentsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.from_in`. + * Visit a parse tree produced by `PostgreSqlParser.fromOrIn`. * @param ctx the parse tree * @return the visitor result */ - visitFrom_in?: (ctx: From_inContext) => Result; + visitFromOrIn?: (ctx: FromOrInContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_from_in`. + * Visit a parse tree produced by `PostgreSqlParser.optionalFromOrIn`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_from_in?: (ctx: Opt_from_inContext) => Result; + visitOptionalFromOrIn?: (ctx: OptionalFromOrInContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.grantstmt`. + * Visit a parse tree produced by `PostgreSqlParser.grantStatement`. * @param ctx the parse tree * @return the visitor result */ - visitGrantstmt?: (ctx: GrantstmtContext) => Result; + visitGrantStatement?: (ctx: GrantStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.revokestmt`. + * Visit a parse tree produced by `PostgreSqlParser.revokeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRevokestmt?: (ctx: RevokestmtContext) => Result; + visitRevokeStatement?: (ctx: RevokeStatementContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.privileges`. * @param ctx the parse tree @@ -2508,11 +2313,11 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.privilege_list`. + * Visit a parse tree produced by `PostgreSqlParser.privilegeList`. * @param ctx the parse tree * @return the visitor result */ - visitPrivilege_list?: (ctx: Privilege_listContext) => Result; + visitPrivilegeList?: (ctx: PrivilegeListContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.privilege`. * @param ctx the parse tree @@ -2520,17 +2325,17 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.privilege_target`. + * Visit a parse tree produced by `PostgreSqlParser.privilegeTarget`. * @param ctx the parse tree * @return the visitor result */ - visitPrivilege_target?: (ctx: Privilege_targetContext) => Result; + visitPrivilegeTarget?: (ctx: PrivilegeTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.grantee_list`. + * Visit a parse tree produced by `PostgreSqlParser.granteeList`. * @param ctx the parse tree * @return the visitor result */ - visitGrantee_list?: (ctx: Grantee_listContext) => Result; + visitGranteeList?: (ctx: GranteeListContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.grantee`. * @param ctx the parse tree @@ -2538,623 +2343,563 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_grant_grant_option`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_grant_grant_option?: (ctx: Opt_grant_grant_optionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.grantrolestmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGrantrolestmt?: (ctx: GrantrolestmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.revokerolestmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRevokerolestmt?: (ctx: RevokerolestmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_grant_admin_option`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_grant_admin_option?: (ctx: Opt_grant_admin_optionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_granted_by`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_granted_by?: (ctx: Opt_granted_byContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.alterdefaultprivilegesstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterdefaultprivilegesstmt?: (ctx: AlterdefaultprivilegesstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.defacloptionlist`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefacloptionlist?: (ctx: DefacloptionlistContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.defacloption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefacloption?: (ctx: DefacloptionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.defaclaction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefaclaction?: (ctx: DefaclactionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.defacl_privilege_target`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefacl_privilege_target?: (ctx: Defacl_privilege_targetContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.indexstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalWithGrantOption`. * @param ctx the parse tree * @return the visitor result */ - visitIndexstmt?: (ctx: IndexstmtContext) => Result; + visitOptionalWithGrantOption?: (ctx: OptionalWithGrantOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_unique`. + * Visit a parse tree produced by `PostgreSqlParser.grantRoleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_unique?: (ctx: Opt_uniqueContext) => Result; + visitGrantRoleStatement?: (ctx: GrantRoleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_concurrently`. + * Visit a parse tree produced by `PostgreSqlParser.revokeRoleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_concurrently?: (ctx: Opt_concurrentlyContext) => Result; + visitRevokeRoleStatement?: (ctx: RevokeRoleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_index_name`. + * Visit a parse tree produced by `PostgreSqlParser.optionalGrantAdminOption`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_index_name?: (ctx: Opt_index_nameContext) => Result; + visitOptionalGrantAdminOption?: (ctx: OptionalGrantAdminOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.access_method_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalGrantedBy`. * @param ctx the parse tree * @return the visitor result */ - visitAccess_method_clause?: (ctx: Access_method_clauseContext) => Result; + visitOptionalGrantedBy?: (ctx: OptionalGrantedByContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.index_params`. + * Visit a parse tree produced by `PostgreSqlParser.alterDefaultPrivilegesStatement`. * @param ctx the parse tree * @return the visitor result */ - visitIndex_params?: (ctx: Index_paramsContext) => Result; + visitAlterDefaultPrivilegesStatement?: (ctx: AlterDefaultPrivilegesStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.index_elem_options`. + * Visit a parse tree produced by `PostgreSqlParser.defultPrivilegeOption`. * @param ctx the parse tree * @return the visitor result */ - visitIndex_elem_options?: (ctx: Index_elem_optionsContext) => Result; + visitDefultPrivilegeOption?: (ctx: DefultPrivilegeOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.index_elem`. + * Visit a parse tree produced by `PostgreSqlParser.defaultPrivelegeAction`. * @param ctx the parse tree * @return the visitor result */ - visitIndex_elem?: (ctx: Index_elemContext) => Result; + visitDefaultPrivelegeAction?: (ctx: DefaultPrivelegeActionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_include`. + * Visit a parse tree produced by `PostgreSqlParser.defultPrivilegeTarget`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_include?: (ctx: Opt_includeContext) => Result; + visitDefultPrivilegeTarget?: (ctx: DefultPrivilegeTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.index_including_params`. + * Visit a parse tree produced by `PostgreSqlParser.indexStatement`. * @param ctx the parse tree * @return the visitor result */ - visitIndex_including_params?: (ctx: Index_including_paramsContext) => Result; + visitIndexStatement?: (ctx: IndexStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_collate`. + * Visit a parse tree produced by `PostgreSqlParser.optionalConcurrently`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_collate?: (ctx: Opt_collateContext) => Result; + visitOptionalConcurrently?: (ctx: OptionalConcurrentlyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_class`. + * Visit a parse tree produced by `PostgreSqlParser.optionalAccessMethodClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_class?: (ctx: Opt_classContext) => Result; + visitOptionalAccessMethodClause?: (ctx: OptionalAccessMethodClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_asc_desc`. + * Visit a parse tree produced by `PostgreSqlParser.indexParameters`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_asc_desc?: (ctx: Opt_asc_descContext) => Result; + visitIndexParameters?: (ctx: IndexParametersContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_nulls_order`. + * Visit a parse tree produced by `PostgreSqlParser.indexElemOptions`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_nulls_order?: (ctx: Opt_nulls_orderContext) => Result; + visitIndexElemOptions?: (ctx: IndexElemOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createfunctionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.indexElement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatefunctionstmt?: (ctx: CreatefunctionstmtContext) => Result; + visitIndexElement?: (ctx: IndexElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_or_replace`. + * Visit a parse tree produced by `PostgreSqlParser.optionalInclude`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_or_replace?: (ctx: Opt_or_replaceContext) => Result; + visitOptionalInclude?: (ctx: OptionalIncludeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_args`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCollate`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_args?: (ctx: Func_argsContext) => Result; + visitOptionalCollate?: (ctx: OptionalCollateContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_args_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalClass`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_args_list?: (ctx: Func_args_listContext) => Result; + visitOptionalClass?: (ctx: OptionalClassContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.function_with_argtypes_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalAscOrDesc`. * @param ctx the parse tree * @return the visitor result */ - visitFunction_with_argtypes_list?: (ctx: Function_with_argtypes_listContext) => Result; + visitOptionalAscOrDesc?: (ctx: OptionalAscOrDescContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.function_with_argtypes`. + * Visit a parse tree produced by `PostgreSqlParser.optionalNullsOrder`. * @param ctx the parse tree * @return the visitor result */ - visitFunction_with_argtypes?: (ctx: Function_with_argtypesContext) => Result; + visitOptionalNullsOrder?: (ctx: OptionalNullsOrderContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_args_with_defaults`. + * Visit a parse tree produced by `PostgreSqlParser.createFunctionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_args_with_defaults?: (ctx: Func_args_with_defaultsContext) => Result; + visitCreateFunctionStatement?: (ctx: CreateFunctionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_args_with_defaults_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalOrReplace`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_args_with_defaults_list?: (ctx: Func_args_with_defaults_listContext) => Result; + visitOptionalOrReplace?: (ctx: OptionalOrReplaceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_arg`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgumentsList`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_arg?: (ctx: Func_argContext) => Result; + visitFunctionArgumentsList?: (ctx: FunctionArgumentsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.arg_class`. + * Visit a parse tree produced by `PostgreSqlParser.functionWithArgumentTypesList`. * @param ctx the parse tree * @return the visitor result */ - visitArg_class?: (ctx: Arg_classContext) => Result; + visitFunctionWithArgumentTypesList?: (ctx: FunctionWithArgumentTypesListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.param_name`. + * Visit a parse tree produced by `PostgreSqlParser.functionWithArgumentTypes`. * @param ctx the parse tree * @return the visitor result */ - visitParam_name?: (ctx: Param_nameContext) => Result; + visitFunctionWithArgumentTypes?: (ctx: FunctionWithArgumentTypesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_return`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgumentsWithDefaultsList`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_return?: (ctx: Func_returnContext) => Result; + visitFunctionArgumentsWithDefaultsList?: (ctx: FunctionArgumentsWithDefaultsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_type`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgumentWithDefault`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_type?: (ctx: Func_typeContext) => Result; + visitFunctionArgumentWithDefault?: (ctx: FunctionArgumentWithDefaultContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_arg_with_default`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_arg_with_default?: (ctx: Func_arg_with_defaultContext) => Result; + visitFunctionArgument?: (ctx: FunctionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aggr_arg`. + * Visit a parse tree produced by `PostgreSqlParser.argumentClass`. * @param ctx the parse tree * @return the visitor result */ - visitAggr_arg?: (ctx: Aggr_argContext) => Result; + visitArgumentClass?: (ctx: ArgumentClassContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aggr_args`. + * Visit a parse tree produced by `PostgreSqlParser.parameterName`. * @param ctx the parse tree * @return the visitor result */ - visitAggr_args?: (ctx: Aggr_argsContext) => Result; + visitParameterName?: (ctx: ParameterNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aggr_args_list`. + * Visit a parse tree produced by `PostgreSqlParser.functionReturn`. * @param ctx the parse tree * @return the visitor result */ - visitAggr_args_list?: (ctx: Aggr_args_listContext) => Result; + visitFunctionReturn?: (ctx: FunctionReturnContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aggregate_with_argtypes`. + * Visit a parse tree produced by `PostgreSqlParser.functionType`. * @param ctx the parse tree * @return the visitor result */ - visitAggregate_with_argtypes?: (ctx: Aggregate_with_argtypesContext) => Result; + visitFunctionType?: (ctx: FunctionTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aggregate_with_argtypes_list`. + * Visit a parse tree produced by `PostgreSqlParser.aggregateArguments`. * @param ctx the parse tree * @return the visitor result */ - visitAggregate_with_argtypes_list?: (ctx: Aggregate_with_argtypes_listContext) => Result; + visitAggregateArguments?: (ctx: AggregateArgumentsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createfunc_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.aggregateArgumentsList`. * @param ctx the parse tree * @return the visitor result */ - visitCreatefunc_opt_list?: (ctx: Createfunc_opt_listContext) => Result; + visitAggregateArgumentsList?: (ctx: AggregateArgumentsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.common_func_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.aggregateWithArgumentTypes`. * @param ctx the parse tree * @return the visitor result */ - visitCommon_func_opt_item?: (ctx: Common_func_opt_itemContext) => Result; + visitAggregateWithArgumentTypes?: (ctx: AggregateWithArgumentTypesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createfunc_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.aggregateWithArgumentTypesList`. * @param ctx the parse tree * @return the visitor result */ - visitCreatefunc_opt_item?: (ctx: Createfunc_opt_itemContext) => Result; + visitAggregateWithArgumentTypesList?: (ctx: AggregateWithArgumentTypesListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_as`. + * Visit a parse tree produced by `PostgreSqlParser.createFunctionOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_as?: (ctx: Func_asContext) => Result; + visitCreateFunctionOptionList?: (ctx: CreateFunctionOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.transform_type_list`. + * Visit a parse tree produced by `PostgreSqlParser.commonFunctionOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitTransform_type_list?: (ctx: Transform_type_listContext) => Result; + visitCommonFunctionOptionItem?: (ctx: CommonFunctionOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_definition`. + * Visit a parse tree produced by `PostgreSqlParser.createFunctionOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_definition?: (ctx: Opt_definitionContext) => Result; + visitCreateFunctionOptionItem?: (ctx: CreateFunctionOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_func_column`. + * Visit a parse tree produced by `PostgreSqlParser.functionAs`. * @param ctx the parse tree * @return the visitor result */ - visitTable_func_column?: (ctx: Table_func_columnContext) => Result; + visitFunctionAs?: (ctx: FunctionAsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_func_column_list`. + * Visit a parse tree produced by `PostgreSqlParser.transformTypeList`. * @param ctx the parse tree * @return the visitor result */ - visitTable_func_column_list?: (ctx: Table_func_column_listContext) => Result; + visitTransformTypeList?: (ctx: TransformTypeListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterfunctionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitAlterfunctionstmt?: (ctx: AlterfunctionstmtContext) => Result; + visitOptionalDefinition?: (ctx: OptionalDefinitionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterfunc_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.tableFunctionColumn`. * @param ctx the parse tree * @return the visitor result */ - visitAlterfunc_opt_list?: (ctx: Alterfunc_opt_listContext) => Result; + visitTableFunctionColumn?: (ctx: TableFunctionColumnContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_restrict`. + * Visit a parse tree produced by `PostgreSqlParser.tableFunctionColumnList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_restrict?: (ctx: Opt_restrictContext) => Result; + visitTableFunctionColumnList?: (ctx: TableFunctionColumnListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.removefuncstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterFunctionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRemovefuncstmt?: (ctx: RemovefuncstmtContext) => Result; + visitAlterFunctionStatement?: (ctx: AlterFunctionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.removeaggrstmt`. + * Visit a parse tree produced by `PostgreSqlParser.removeFunctionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRemoveaggrstmt?: (ctx: RemoveaggrstmtContext) => Result; + visitRemoveFunctionStatement?: (ctx: RemoveFunctionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.removeoperstmt`. + * Visit a parse tree produced by `PostgreSqlParser.removeAggregateStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRemoveoperstmt?: (ctx: RemoveoperstmtContext) => Result; + visitRemoveAggregateStatement?: (ctx: RemoveAggregateStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.oper_argtypes`. + * Visit a parse tree produced by `PostgreSqlParser.removeOperatorStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOper_argtypes?: (ctx: Oper_argtypesContext) => Result; + visitRemoveOperatorStatement?: (ctx: RemoveOperatorStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.any_operator`. + * Visit a parse tree produced by `PostgreSqlParser.operatorArgumentTypes`. * @param ctx the parse tree * @return the visitor result */ - visitAny_operator?: (ctx: Any_operatorContext) => Result; + visitOperatorArgumentTypes?: (ctx: OperatorArgumentTypesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.operator_with_argtypes_list`. + * Visit a parse tree produced by `PostgreSqlParser.anyOperator`. * @param ctx the parse tree * @return the visitor result */ - visitOperator_with_argtypes_list?: (ctx: Operator_with_argtypes_listContext) => Result; + visitAnyOperator?: (ctx: AnyOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.operator_with_argtypes`. + * Visit a parse tree produced by `PostgreSqlParser.operatorWithArgumentTypesList`. * @param ctx the parse tree * @return the visitor result */ - visitOperator_with_argtypes?: (ctx: Operator_with_argtypesContext) => Result; + visitOperatorWithArgumentTypesList?: (ctx: OperatorWithArgumentTypesListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dostmt`. + * Visit a parse tree produced by `PostgreSqlParser.operatorWithArgumentTypes`. * @param ctx the parse tree * @return the visitor result */ - visitDostmt?: (ctx: DostmtContext) => Result; + visitOperatorWithArgumentTypes?: (ctx: OperatorWithArgumentTypesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dostmt_opt_list`. + * Visit a parse tree produced by `PostgreSqlParser.doStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDostmt_opt_list?: (ctx: Dostmt_opt_listContext) => Result; + visitDoStatement?: (ctx: DoStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dostmt_opt_item`. + * Visit a parse tree produced by `PostgreSqlParser.doStatementOptionsList`. * @param ctx the parse tree * @return the visitor result */ - visitDostmt_opt_item?: (ctx: Dostmt_opt_itemContext) => Result; + visitDoStatementOptionsList?: (ctx: DoStatementOptionsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createcaststmt`. + * Visit a parse tree produced by `PostgreSqlParser.doStatementOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitCreatecaststmt?: (ctx: CreatecaststmtContext) => Result; + visitDoStatementOptionItem?: (ctx: DoStatementOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cast_context`. + * Visit a parse tree produced by `PostgreSqlParser.createCastStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCast_context?: (ctx: Cast_contextContext) => Result; + visitCreateCastStatement?: (ctx: CreateCastStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropcaststmt`. + * Visit a parse tree produced by `PostgreSqlParser.castContext`. * @param ctx the parse tree * @return the visitor result */ - visitDropcaststmt?: (ctx: DropcaststmtContext) => Result; + visitCastContext?: (ctx: CastContextContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_if_exists`. + * Visit a parse tree produced by `PostgreSqlParser.dropCastStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_if_exists?: (ctx: Opt_if_existsContext) => Result; + visitDropCastStatement?: (ctx: DropCastStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createtransformstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalIfExists`. * @param ctx the parse tree * @return the visitor result */ - visitCreatetransformstmt?: (ctx: CreatetransformstmtContext) => Result; + visitOptionalIfExists?: (ctx: OptionalIfExistsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.transform_element_list`. + * Visit a parse tree produced by `PostgreSqlParser.createTransformStatement`. * @param ctx the parse tree * @return the visitor result */ - visitTransform_element_list?: (ctx: Transform_element_listContext) => Result; + visitCreateTransformStatement?: (ctx: CreateTransformStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.droptransformstmt`. + * Visit a parse tree produced by `PostgreSqlParser.transformElementList`. * @param ctx the parse tree * @return the visitor result */ - visitDroptransformstmt?: (ctx: DroptransformstmtContext) => Result; + visitTransformElementList?: (ctx: TransformElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reindexstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropTransformStatement`. * @param ctx the parse tree * @return the visitor result */ - visitReindexstmt?: (ctx: ReindexstmtContext) => Result; + visitDropTransformStatement?: (ctx: DropTransformStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reindex_target_type`. + * Visit a parse tree produced by `PostgreSqlParser.reindexStatement`. * @param ctx the parse tree * @return the visitor result */ - visitReindex_target_type?: (ctx: Reindex_target_typeContext) => Result; + visitReindexStatement?: (ctx: ReindexStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reindex_target_multitable`. + * Visit a parse tree produced by `PostgreSqlParser.reindexTargetType`. * @param ctx the parse tree * @return the visitor result */ - visitReindex_target_multitable?: (ctx: Reindex_target_multitableContext) => Result; + visitReindexTargetType?: (ctx: ReindexTargetTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reindex_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.reindexTargetMultiTable`. * @param ctx the parse tree * @return the visitor result */ - visitReindex_option_list?: (ctx: Reindex_option_listContext) => Result; + visitReindexTargetMultiTable?: (ctx: ReindexTargetMultiTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reindex_option_elem`. + * Visit a parse tree produced by `PostgreSqlParser.reindexOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitReindex_option_elem?: (ctx: Reindex_option_elemContext) => Result; + visitReindexOptionList?: (ctx: ReindexOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altertblspcstmt`. + * Visit a parse tree produced by `PostgreSqlParser.reindexOptionElement`. * @param ctx the parse tree * @return the visitor result */ - visitAltertblspcstmt?: (ctx: AltertblspcstmtContext) => Result; + visitReindexOptionElement?: (ctx: ReindexOptionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.renamestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterTablespaceStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRenamestmt?: (ctx: RenamestmtContext) => Result; + visitAlterTablespaceStatement?: (ctx: AlterTablespaceStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_column`. + * Visit a parse tree produced by `PostgreSqlParser.renameStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_column?: (ctx: Opt_columnContext) => Result; + visitRenameStatement?: (ctx: RenameStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_set_data`. + * Visit a parse tree produced by `PostgreSqlParser.optionalColumn`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_set_data?: (ctx: Opt_set_dataContext) => Result; + visitOptionalColumn?: (ctx: OptionalColumnContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterobjectdependsstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSetData`. * @param ctx the parse tree * @return the visitor result */ - visitAlterobjectdependsstmt?: (ctx: AlterobjectdependsstmtContext) => Result; + visitOptionalSetData?: (ctx: OptionalSetDataContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_no`. + * Visit a parse tree produced by `PostgreSqlParser.alterObjectDependsStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_no?: (ctx: Opt_noContext) => Result; + visitAlterObjectDependsStatement?: (ctx: AlterObjectDependsStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterobjectschemastmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterObjectSchemaStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterobjectschemastmt?: (ctx: AlterobjectschemastmtContext) => Result; + visitAlterObjectSchemaStatement?: (ctx: AlterObjectSchemaStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alteroperatorstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterOperatorStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlteroperatorstmt?: (ctx: AlteroperatorstmtContext) => Result; + visitAlterOperatorStatement?: (ctx: AlterOperatorStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.operator_def_list`. + * Visit a parse tree produced by `PostgreSqlParser.operatorDefinitionList`. * @param ctx the parse tree * @return the visitor result */ - visitOperator_def_list?: (ctx: Operator_def_listContext) => Result; + visitOperatorDefinitionList?: (ctx: OperatorDefinitionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.operator_def_elem`. + * Visit a parse tree produced by `PostgreSqlParser.operatorDefinitionElement`. * @param ctx the parse tree * @return the visitor result */ - visitOperator_def_elem?: (ctx: Operator_def_elemContext) => Result; + visitOperatorDefinitionElement?: (ctx: OperatorDefinitionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.operator_def_arg`. + * Visit a parse tree produced by `PostgreSqlParser.operatorDefinitionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitOperator_def_arg?: (ctx: Operator_def_argContext) => Result; + visitOperatorDefinitionArgument?: (ctx: OperatorDefinitionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altertypestmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterTypeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltertypestmt?: (ctx: AltertypestmtContext) => Result; + visitAlterTypeStatement?: (ctx: AlterTypeStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterownerstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterOwnerStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterownerstmt?: (ctx: AlterownerstmtContext) => Result; + visitAlterOwnerStatement?: (ctx: AlterOwnerStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createpublicationstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createPublicationStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatepublicationstmt?: (ctx: CreatepublicationstmtContext) => Result; + visitCreatePublicationStatement?: (ctx: CreatePublicationStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_publication_for_tables`. + * Visit a parse tree produced by `PostgreSqlParser.optionalPublicationForTables`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_publication_for_tables?: (ctx: Opt_publication_for_tablesContext) => Result; + visitOptionalPublicationForTables?: (ctx: OptionalPublicationForTablesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.publication_for_tables`. + * Visit a parse tree produced by `PostgreSqlParser.publicationForTables`. * @param ctx the parse tree * @return the visitor result */ - visitPublication_for_tables?: (ctx: Publication_for_tablesContext) => Result; + visitPublicationForTables?: (ctx: PublicationForTablesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterpublicationstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterPublicationStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterpublicationstmt?: (ctx: AlterpublicationstmtContext) => Result; + visitAlterPublicationStatement?: (ctx: AlterPublicationStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createsubscriptionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createSubscriptionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatesubscriptionstmt?: (ctx: CreatesubscriptionstmtContext) => Result; + visitCreateSubscriptionStatement?: (ctx: CreateSubscriptionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.publication_name_list`. + * Visit a parse tree produced by `PostgreSqlParser.publicationNameList`. * @param ctx the parse tree * @return the visitor result */ - visitPublication_name_list?: (ctx: Publication_name_listContext) => Result; + visitPublicationNameList?: (ctx: PublicationNameListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.publication_name_item`. + * Visit a parse tree produced by `PostgreSqlParser.publicationNameItem`. * @param ctx the parse tree * @return the visitor result */ - visitPublication_name_item?: (ctx: Publication_name_itemContext) => Result; + visitPublicationNameItem?: (ctx: PublicationNameItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altersubscriptionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.alterSubscriptionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltersubscriptionstmt?: (ctx: AltersubscriptionstmtContext) => Result; + visitAlterSubscriptionStatement?: (ctx: AlterSubscriptionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.dropsubscriptionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.dropSubscriptionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDropsubscriptionstmt?: (ctx: DropsubscriptionstmtContext) => Result; + visitDropSubscriptionStatement?: (ctx: DropSubscriptionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rulestmt`. + * Visit a parse tree produced by `PostgreSqlParser.ruleStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRulestmt?: (ctx: RulestmtContext) => Result; + visitRuleStatement?: (ctx: RuleStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.ruleactionlist`. + * Visit a parse tree produced by `PostgreSqlParser.ruleActionList`. * @param ctx the parse tree * @return the visitor result */ - visitRuleactionlist?: (ctx: RuleactionlistContext) => Result; + visitRuleActionList?: (ctx: RuleActionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.ruleactionmulti`. + * Visit a parse tree produced by `PostgreSqlParser.ruleActionMulti`. * @param ctx the parse tree * @return the visitor result */ - visitRuleactionmulti?: (ctx: RuleactionmultiContext) => Result; + visitRuleActionMulti?: (ctx: RuleActionMultiContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.ruleactionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.ruleActionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitRuleactionstmt?: (ctx: RuleactionstmtContext) => Result; + visitRuleActionStatement?: (ctx: RuleActionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.ruleactionstmtOrEmpty`. + * Visit a parse tree produced by `PostgreSqlParser.ruleActionStatementOrEmpty`. * @param ctx the parse tree * @return the visitor result */ - visitRuleactionstmtOrEmpty?: (ctx: RuleactionstmtOrEmptyContext) => Result; + visitRuleActionStatementOrEmpty?: (ctx: RuleActionStatementOrEmptyContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.event`. * @param ctx the parse tree @@ -3162,1067 +2907,917 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_instead`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_instead?: (ctx: Opt_insteadContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.notifystmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNotifystmt?: (ctx: NotifystmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.notify_payload`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNotify_payload?: (ctx: Notify_payloadContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.listenstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitListenstmt?: (ctx: ListenstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.unlistenstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnlistenstmt?: (ctx: UnlistenstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.transactionstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTransactionstmt?: (ctx: TransactionstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_transaction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_transaction?: (ctx: Opt_transactionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.transaction_mode_item`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTransaction_mode_item?: (ctx: Transaction_mode_itemContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.transaction_mode_list`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTransaction_mode_list?: (ctx: Transaction_mode_listContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.transaction_mode_list_or_empty`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTransaction_mode_list_or_empty?: (ctx: Transaction_mode_list_or_emptyContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_transaction_chain`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_transaction_chain?: (ctx: Opt_transaction_chainContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.viewstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitViewstmt?: (ctx: ViewstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_check_option`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_check_option?: (ctx: Opt_check_optionContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.loadstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLoadstmt?: (ctx: LoadstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.createdbstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreatedbstmt?: (ctx: CreatedbstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.createdb_opt_list`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreatedb_opt_list?: (ctx: Createdb_opt_listContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.createdb_opt_items`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreatedb_opt_items?: (ctx: Createdb_opt_itemsContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.createdb_opt_item`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreatedb_opt_item?: (ctx: Createdb_opt_itemContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.createdb_opt_name`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreatedb_opt_name?: (ctx: Createdb_opt_nameContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_equal`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_equal?: (ctx: Opt_equalContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.alterdatabasestmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterdatabasestmt?: (ctx: AlterdatabasestmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.alterdatabasesetstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterdatabasesetstmt?: (ctx: AlterdatabasesetstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.dropdbstmt`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDropdbstmt?: (ctx: DropdbstmtContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.drop_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalInstead`. * @param ctx the parse tree * @return the visitor result */ - visitDrop_option_list?: (ctx: Drop_option_listContext) => Result; + visitOptionalInstead?: (ctx: OptionalInsteadContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.drop_option`. + * Visit a parse tree produced by `PostgreSqlParser.notifyStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDrop_option?: (ctx: Drop_optionContext) => Result; + visitNotifyStatement?: (ctx: NotifyStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altercollationstmt`. + * Visit a parse tree produced by `PostgreSqlParser.notifyPayload`. * @param ctx the parse tree * @return the visitor result */ - visitAltercollationstmt?: (ctx: AltercollationstmtContext) => Result; + visitNotifyPayload?: (ctx: NotifyPayloadContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altersystemstmt`. + * Visit a parse tree produced by `PostgreSqlParser.listenStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAltersystemstmt?: (ctx: AltersystemstmtContext) => Result; + visitListenStatement?: (ctx: ListenStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createdomainstmt`. + * Visit a parse tree produced by `PostgreSqlParser.unlistenStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreatedomainstmt?: (ctx: CreatedomainstmtContext) => Result; + visitUnlistenStatement?: (ctx: UnlistenStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alterdomainstmt`. + * Visit a parse tree produced by `PostgreSqlParser.transactionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitAlterdomainstmt?: (ctx: AlterdomainstmtContext) => Result; + visitTransactionStatement?: (ctx: TransactionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_as`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTransaction`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_as?: (ctx: Opt_asContext) => Result; + visitOptionalTransaction?: (ctx: OptionalTransactionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altertsdictionarystmt`. + * Visit a parse tree produced by `PostgreSqlParser.transactionModeItem`. * @param ctx the parse tree * @return the visitor result */ - visitAltertsdictionarystmt?: (ctx: AltertsdictionarystmtContext) => Result; + visitTransactionModeItem?: (ctx: TransactionModeItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.altertsconfigurationstmt`. + * Visit a parse tree produced by `PostgreSqlParser.transactionModeList`. * @param ctx the parse tree * @return the visitor result */ - visitAltertsconfigurationstmt?: (ctx: AltertsconfigurationstmtContext) => Result; + visitTransactionModeList?: (ctx: TransactionModeListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.any_with`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTransactionChain`. * @param ctx the parse tree * @return the visitor result */ - visitAny_with?: (ctx: Any_withContext) => Result; + visitOptionalTransactionChain?: (ctx: OptionalTransactionChainContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.createconversionstmt`. + * Visit a parse tree produced by `PostgreSqlParser.viewStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCreateconversionstmt?: (ctx: CreateconversionstmtContext) => Result; + visitViewStatement?: (ctx: ViewStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.clusterstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCheckOption`. * @param ctx the parse tree * @return the visitor result */ - visitClusterstmt?: (ctx: ClusterstmtContext) => Result; + visitOptionalCheckOption?: (ctx: OptionalCheckOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cluster_index_specification`. + * Visit a parse tree produced by `PostgreSqlParser.loadStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCluster_index_specification?: (ctx: Cluster_index_specificationContext) => Result; + visitLoadStatement?: (ctx: LoadStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vacuumstmt`. + * Visit a parse tree produced by `PostgreSqlParser.createDatabaseStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVacuumstmt?: (ctx: VacuumstmtContext) => Result; + visitCreateDatabaseStatement?: (ctx: CreateDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.analyzestmt`. + * Visit a parse tree produced by `PostgreSqlParser.createDatabaseOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitAnalyzestmt?: (ctx: AnalyzestmtContext) => Result; + visitCreateDatabaseOptionList?: (ctx: CreateDatabaseOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vac_analyze_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.createDatabaseOptionItem`. * @param ctx the parse tree * @return the visitor result */ - visitVac_analyze_option_list?: (ctx: Vac_analyze_option_listContext) => Result; + visitCreateDatabaseOptionItem?: (ctx: CreateDatabaseOptionItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.analyze_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.createDatabaseOptionName`. * @param ctx the parse tree * @return the visitor result */ - visitAnalyze_keyword?: (ctx: Analyze_keywordContext) => Result; + visitCreateDatabaseOptionName?: (ctx: CreateDatabaseOptionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vac_analyze_option_elem`. + * Visit a parse tree produced by `PostgreSqlParser.alterDatabaseStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVac_analyze_option_elem?: (ctx: Vac_analyze_option_elemContext) => Result; + visitAlterDatabaseStatement?: (ctx: AlterDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vac_analyze_option_name`. + * Visit a parse tree produced by `PostgreSqlParser.alterDatabaseSetStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVac_analyze_option_name?: (ctx: Vac_analyze_option_nameContext) => Result; + visitAlterDatabaseSetStatement?: (ctx: AlterDatabaseSetStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vac_analyze_option_arg`. + * Visit a parse tree produced by `PostgreSqlParser.dropDatabaseStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVac_analyze_option_arg?: (ctx: Vac_analyze_option_argContext) => Result; + visitDropDatabaseStatement?: (ctx: DropDatabaseStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_analyze`. + * Visit a parse tree produced by `PostgreSqlParser.alterCollationStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_analyze?: (ctx: Opt_analyzeContext) => Result; + visitAlterCollationStatement?: (ctx: AlterCollationStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_verbose`. + * Visit a parse tree produced by `PostgreSqlParser.alterSystemStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_verbose?: (ctx: Opt_verboseContext) => Result; + visitAlterSystemStatement?: (ctx: AlterSystemStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_full`. + * Visit a parse tree produced by `PostgreSqlParser.createDomainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_full?: (ctx: Opt_fullContext) => Result; + visitCreateDomainStatement?: (ctx: CreateDomainStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_freeze`. + * Visit a parse tree produced by `PostgreSqlParser.alterDomainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_freeze?: (ctx: Opt_freezeContext) => Result; + visitAlterDomainStatement?: (ctx: AlterDomainStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_name_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalAs`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_name_list?: (ctx: Opt_name_listContext) => Result; + visitOptionalAs?: (ctx: OptionalAsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vacuum_relation`. + * Visit a parse tree produced by `PostgreSqlParser.altertsDictionaryStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVacuum_relation?: (ctx: Vacuum_relationContext) => Result; + visitAltertsDictionaryStatement?: (ctx: AltertsDictionaryStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.vacuum_relation_list`. + * Visit a parse tree produced by `PostgreSqlParser.altertsConfigurationStatement`. * @param ctx the parse tree * @return the visitor result */ - visitVacuum_relation_list?: (ctx: Vacuum_relation_listContext) => Result; + visitAltertsConfigurationStatement?: (ctx: AltertsConfigurationStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_vacuum_relation_list`. + * Visit a parse tree produced by `PostgreSqlParser.createConversionStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_vacuum_relation_list?: (ctx: Opt_vacuum_relation_listContext) => Result; + visitCreateConversionStatement?: (ctx: CreateConversionStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explainstmt`. + * Visit a parse tree produced by `PostgreSqlParser.clusterStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplainstmt?: (ctx: ExplainstmtContext) => Result; + visitClusterStatement?: (ctx: ClusterStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explainablestmt`. + * Visit a parse tree produced by `PostgreSqlParser.clusterIndexSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitExplainablestmt?: (ctx: ExplainablestmtContext) => Result; + visitClusterIndexSpecification?: (ctx: ClusterIndexSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explain_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplain_option_list?: (ctx: Explain_option_listContext) => Result; + visitVacuumStatement?: (ctx: VacuumStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explain_option_elem`. + * Visit a parse tree produced by `PostgreSqlParser.analyzeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitExplain_option_elem?: (ctx: Explain_option_elemContext) => Result; + visitAnalyzeStatement?: (ctx: AnalyzeStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explain_option_name`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumAnalyzeOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitExplain_option_name?: (ctx: Explain_option_nameContext) => Result; + visitVacuumAnalyzeOptionList?: (ctx: VacuumAnalyzeOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explain_option_arg`. + * Visit a parse tree produced by `PostgreSqlParser.analyzeKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitExplain_option_arg?: (ctx: Explain_option_argContext) => Result; + visitAnalyzeKeyword?: (ctx: AnalyzeKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.preparestmt`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumAnalyzeOptionElement`. * @param ctx the parse tree * @return the visitor result */ - visitPreparestmt?: (ctx: PreparestmtContext) => Result; + visitVacuumAnalyzeOptionElement?: (ctx: VacuumAnalyzeOptionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.prep_type_clause`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumAnalyzeOptionName`. * @param ctx the parse tree * @return the visitor result */ - visitPrep_type_clause?: (ctx: Prep_type_clauseContext) => Result; + visitVacuumAnalyzeOptionName?: (ctx: VacuumAnalyzeOptionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.preparablestmt`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumAnalyzeOptionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitPreparablestmt?: (ctx: PreparablestmtContext) => Result; + visitVacuumAnalyzeOptionArgument?: (ctx: VacuumAnalyzeOptionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.executestmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalVerbose`. * @param ctx the parse tree * @return the visitor result */ - visitExecutestmt?: (ctx: ExecutestmtContext) => Result; + visitOptionalVerbose?: (ctx: OptionalVerboseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.execute_param_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalNameList`. * @param ctx the parse tree * @return the visitor result */ - visitExecute_param_clause?: (ctx: Execute_param_clauseContext) => Result; + visitOptionalNameList?: (ctx: OptionalNameListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.deallocatestmt`. + * Visit a parse tree produced by `PostgreSqlParser.vacuumRelation`. * @param ctx the parse tree * @return the visitor result */ - visitDeallocatestmt?: (ctx: DeallocatestmtContext) => Result; + visitVacuumRelation?: (ctx: VacuumRelationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.insertstmt`. + * Visit a parse tree produced by `PostgreSqlParser.optionalVacuumRelationList`. * @param ctx the parse tree * @return the visitor result */ - visitInsertstmt?: (ctx: InsertstmtContext) => Result; + visitOptionalVacuumRelationList?: (ctx: OptionalVacuumRelationListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.insert_target`. + * Visit a parse tree produced by `PostgreSqlParser.explainStatement`. * @param ctx the parse tree * @return the visitor result */ - visitInsert_target?: (ctx: Insert_targetContext) => Result; + visitExplainStatement?: (ctx: ExplainStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.insert_rest`. + * Visit a parse tree produced by `PostgreSqlParser.explainableStatement`. * @param ctx the parse tree * @return the visitor result */ - visitInsert_rest?: (ctx: Insert_restContext) => Result; + visitExplainableStatement?: (ctx: ExplainableStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.override_kind`. + * Visit a parse tree produced by `PostgreSqlParser.explainOptionElement`. * @param ctx the parse tree * @return the visitor result */ - visitOverride_kind?: (ctx: Override_kindContext) => Result; + visitExplainOptionElement?: (ctx: ExplainOptionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.insert_column_list`. + * Visit a parse tree produced by `PostgreSqlParser.explainOptionName`. * @param ctx the parse tree * @return the visitor result */ - visitInsert_column_list?: (ctx: Insert_column_listContext) => Result; + visitExplainOptionName?: (ctx: ExplainOptionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.insert_column_item`. + * Visit a parse tree produced by `PostgreSqlParser.explainOptionArgument`. * @param ctx the parse tree * @return the visitor result */ - visitInsert_column_item?: (ctx: Insert_column_itemContext) => Result; + visitExplainOptionArgument?: (ctx: ExplainOptionArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_on_conflict`. + * Visit a parse tree produced by `PostgreSqlParser.prepareStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_on_conflict?: (ctx: Opt_on_conflictContext) => Result; + visitPrepareStatement?: (ctx: PrepareStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_conf_expr`. + * Visit a parse tree produced by `PostgreSqlParser.prepareTypeClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_conf_expr?: (ctx: Opt_conf_exprContext) => Result; + visitPrepareTypeClause?: (ctx: PrepareTypeClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.returning_clause`. + * Visit a parse tree produced by `PostgreSqlParser.preparableStatement`. * @param ctx the parse tree * @return the visitor result */ - visitReturning_clause?: (ctx: Returning_clauseContext) => Result; + visitPreparableStatement?: (ctx: PreparableStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.mergestmt`. + * Visit a parse tree produced by `PostgreSqlParser.executeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitMergestmt?: (ctx: MergestmtContext) => Result; + visitExecuteStatement?: (ctx: ExecuteStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.merge_insert_clause`. + * Visit a parse tree produced by `PostgreSqlParser.executeParameterClause`. * @param ctx the parse tree * @return the visitor result */ - visitMerge_insert_clause?: (ctx: Merge_insert_clauseContext) => Result; + visitExecuteParameterClause?: (ctx: ExecuteParameterClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.merge_update_clause`. + * Visit a parse tree produced by `PostgreSqlParser.deallocateStatement`. * @param ctx the parse tree * @return the visitor result */ - visitMerge_update_clause?: (ctx: Merge_update_clauseContext) => Result; + visitDeallocateStatement?: (ctx: DeallocateStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.merge_delete_clause`. + * Visit a parse tree produced by `PostgreSqlParser.insertStatement`. * @param ctx the parse tree * @return the visitor result */ - visitMerge_delete_clause?: (ctx: Merge_delete_clauseContext) => Result; + visitInsertStatement?: (ctx: InsertStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.deletestmt`. + * Visit a parse tree produced by `PostgreSqlParser.insertTarget`. * @param ctx the parse tree * @return the visitor result */ - visitDeletestmt?: (ctx: DeletestmtContext) => Result; + visitInsertTarget?: (ctx: InsertTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.using_clause`. + * Visit a parse tree produced by `PostgreSqlParser.insertRest`. * @param ctx the parse tree * @return the visitor result */ - visitUsing_clause?: (ctx: Using_clauseContext) => Result; + visitInsertRest?: (ctx: InsertRestContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.lockstmt`. + * Visit a parse tree produced by `PostgreSqlParser.overrideKind`. * @param ctx the parse tree * @return the visitor result */ - visitLockstmt?: (ctx: LockstmtContext) => Result; + visitOverrideKind?: (ctx: OverrideKindContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_lock`. + * Visit a parse tree produced by `PostgreSqlParser.insertColumnList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_lock?: (ctx: Opt_lockContext) => Result; + visitInsertColumnList?: (ctx: InsertColumnListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.lock_type`. + * Visit a parse tree produced by `PostgreSqlParser.insertColumnItem`. * @param ctx the parse tree * @return the visitor result */ - visitLock_type?: (ctx: Lock_typeContext) => Result; + visitInsertColumnItem?: (ctx: InsertColumnItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_nowait`. + * Visit a parse tree produced by `PostgreSqlParser.optionalOnConflict`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_nowait?: (ctx: Opt_nowaitContext) => Result; + visitOptionalOnConflict?: (ctx: OptionalOnConflictContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_nowait_or_skip`. + * Visit a parse tree produced by `PostgreSqlParser.optionalConflictExpr`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_nowait_or_skip?: (ctx: Opt_nowait_or_skipContext) => Result; + visitOptionalConflictExpr?: (ctx: OptionalConflictExprContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.updatestmt`. + * Visit a parse tree produced by `PostgreSqlParser.returningClause`. * @param ctx the parse tree * @return the visitor result */ - visitUpdatestmt?: (ctx: UpdatestmtContext) => Result; + visitReturningClause?: (ctx: ReturningClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_clause_list`. + * Visit a parse tree produced by `PostgreSqlParser.mergeStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSet_clause_list?: (ctx: Set_clause_listContext) => Result; + visitMergeStatement?: (ctx: MergeStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_clause`. + * Visit a parse tree produced by `PostgreSqlParser.mergeInsertClause`. * @param ctx the parse tree * @return the visitor result */ - visitSet_clause?: (ctx: Set_clauseContext) => Result; + visitMergeInsertClause?: (ctx: MergeInsertClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_target`. + * Visit a parse tree produced by `PostgreSqlParser.mergeUpdateClause`. * @param ctx the parse tree * @return the visitor result */ - visitSet_target?: (ctx: Set_targetContext) => Result; + visitMergeUpdateClause?: (ctx: MergeUpdateClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.set_target_list`. + * Visit a parse tree produced by `PostgreSqlParser.mergeDeleteClause`. * @param ctx the parse tree * @return the visitor result */ - visitSet_target_list?: (ctx: Set_target_listContext) => Result; + visitMergeDeleteClause?: (ctx: MergeDeleteClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.declarecursorstmt`. + * Visit a parse tree produced by `PostgreSqlParser.deleteStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDeclarecursorstmt?: (ctx: DeclarecursorstmtContext) => Result; + visitDeleteStatement?: (ctx: DeleteStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cursor_name`. + * Visit a parse tree produced by `PostgreSqlParser.usingClause`. * @param ctx the parse tree * @return the visitor result */ - visitCursor_name?: (ctx: Cursor_nameContext) => Result; + visitUsingClause?: (ctx: UsingClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cursor_options`. + * Visit a parse tree produced by `PostgreSqlParser.lockStatement`. * @param ctx the parse tree * @return the visitor result */ - visitCursor_options?: (ctx: Cursor_optionsContext) => Result; + visitLockStatement?: (ctx: LockStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_hold`. + * Visit a parse tree produced by `PostgreSqlParser.optionalLock`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_hold?: (ctx: Opt_holdContext) => Result; + visitOptionalLock?: (ctx: OptionalLockContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.selectstmt`. + * Visit a parse tree produced by `PostgreSqlParser.lockType`. * @param ctx the parse tree * @return the visitor result */ - visitSelectstmt?: (ctx: SelectstmtContext) => Result; + visitLockType?: (ctx: LockTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_with_parens`. + * Visit a parse tree produced by `PostgreSqlParser.optionalNowait`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_with_parens?: (ctx: Select_with_parensContext) => Result; + visitOptionalNowait?: (ctx: OptionalNowaitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_no_parens`. + * Visit a parse tree produced by `PostgreSqlParser.optionalNowaitOrSkip`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_no_parens?: (ctx: Select_no_parensContext) => Result; + visitOptionalNowaitOrSkip?: (ctx: OptionalNowaitOrSkipContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_clause`. + * Visit a parse tree produced by `PostgreSqlParser.updateStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_clause?: (ctx: Select_clauseContext) => Result; + visitUpdateStatement?: (ctx: UpdateStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.simple_select_intersect`. + * Visit a parse tree produced by `PostgreSqlParser.setClauseList`. * @param ctx the parse tree * @return the visitor result */ - visitSimple_select_intersect?: (ctx: Simple_select_intersectContext) => Result; + visitSetClauseList?: (ctx: SetClauseListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.simple_select_start`. + * Visit a parse tree produced by `PostgreSqlParser.setClause`. * @param ctx the parse tree * @return the visitor result */ - visitSimple_select_start?: (ctx: Simple_select_startContext) => Result; + visitSetClause?: (ctx: SetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.simple_select_pramary`. + * Visit a parse tree produced by `PostgreSqlParser.setTarget`. * @param ctx the parse tree * @return the visitor result */ - visitSimple_select_pramary?: (ctx: Simple_select_pramaryContext) => Result; + visitSetTarget?: (ctx: SetTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.with_clause`. + * Visit a parse tree produced by `PostgreSqlParser.declareCursorStatement`. * @param ctx the parse tree * @return the visitor result */ - visitWith_clause?: (ctx: With_clauseContext) => Result; + visitDeclareCursorStatement?: (ctx: DeclareCursorStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cte_list`. + * Visit a parse tree produced by `PostgreSqlParser.cursorName`. * @param ctx the parse tree * @return the visitor result */ - visitCte_list?: (ctx: Cte_listContext) => Result; + visitCursorName?: (ctx: CursorNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.common_table_expr`. + * Visit a parse tree produced by `PostgreSqlParser.optionalHold`. * @param ctx the parse tree * @return the visitor result */ - visitCommon_table_expr?: (ctx: Common_table_exprContext) => Result; + visitOptionalHold?: (ctx: OptionalHoldContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_materialized`. + * Visit a parse tree produced by `PostgreSqlParser.selectStatement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_materialized?: (ctx: Opt_materializedContext) => Result; + visitSelectStatement?: (ctx: SelectStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.into_clause`. + * Visit a parse tree produced by `PostgreSqlParser.selectWithParenthesis`. * @param ctx the parse tree * @return the visitor result */ - visitInto_clause?: (ctx: Into_clauseContext) => Result; + visitSelectWithParenthesis?: (ctx: SelectWithParenthesisContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_strict`. + * Visit a parse tree produced by `PostgreSqlParser.selectWithoutParenthesis`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_strict?: (ctx: Opt_strictContext) => Result; + visitSelectWithoutParenthesis?: (ctx: SelectWithoutParenthesisContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttempTableName`. + * Visit a parse tree produced by `PostgreSqlParser.selectClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpttempTableName?: (ctx: OpttempTableNameContext) => Result; + visitSelectClause?: (ctx: SelectClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_table`. + * Visit a parse tree produced by `PostgreSqlParser.simpleSelectIntersect`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_table?: (ctx: Opt_tableContext) => Result; + visitSimpleSelectIntersect?: (ctx: SimpleSelectIntersectContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.all_or_distinct`. + * Visit a parse tree produced by `PostgreSqlParser.simpleSelectStart`. * @param ctx the parse tree * @return the visitor result */ - visitAll_or_distinct?: (ctx: All_or_distinctContext) => Result; + visitSimpleSelectStart?: (ctx: SimpleSelectStartContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.distinct_clause`. + * Visit a parse tree produced by `PostgreSqlParser.simpleSelectPramary`. * @param ctx the parse tree * @return the visitor result */ - visitDistinct_clause?: (ctx: Distinct_clauseContext) => Result; + visitSimpleSelectPramary?: (ctx: SimpleSelectPramaryContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.all_clause`. + * Visit a parse tree produced by `PostgreSqlParser.withClause`. * @param ctx the parse tree * @return the visitor result */ - visitAll_clause?: (ctx: All_clauseContext) => Result; + visitWithClause?: (ctx: WithClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_sort_clause`. + * Visit a parse tree produced by `PostgreSqlParser.commonTableExpression`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_sort_clause?: (ctx: Opt_sort_clauseContext) => Result; + visitCommonTableExpression?: (ctx: CommonTableExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.sort_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalMaterialized`. * @param ctx the parse tree * @return the visitor result */ - visitSort_clause?: (ctx: Sort_clauseContext) => Result; + visitOptionalMaterialized?: (ctx: OptionalMaterializedContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.sortby_list`. + * Visit a parse tree produced by `PostgreSqlParser.intoClause`. * @param ctx the parse tree * @return the visitor result */ - visitSortby_list?: (ctx: Sortby_listContext) => Result; + visitIntoClause?: (ctx: IntoClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.sortby`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTemporaryTableName`. * @param ctx the parse tree * @return the visitor result */ - visitSortby?: (ctx: SortbyContext) => Result; + visitOptionalTemporaryTableName?: (ctx: OptionalTemporaryTableNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_limit`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTable`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_limit?: (ctx: Select_limitContext) => Result; + visitOptionalTable?: (ctx: OptionalTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_select_limit`. + * Visit a parse tree produced by `PostgreSqlParser.allOrDistinct`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_select_limit?: (ctx: Opt_select_limitContext) => Result; + visitAllOrDistinct?: (ctx: AllOrDistinctContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.limit_clause`. + * Visit a parse tree produced by `PostgreSqlParser.distinctClause`. * @param ctx the parse tree * @return the visitor result */ - visitLimit_clause?: (ctx: Limit_clauseContext) => Result; + visitDistinctClause?: (ctx: DistinctClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.offset_clause`. + * Visit a parse tree produced by `PostgreSqlParser.allClause`. * @param ctx the parse tree * @return the visitor result */ - visitOffset_clause?: (ctx: Offset_clauseContext) => Result; + visitAllClause?: (ctx: AllClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_limit_value`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSortClause`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_limit_value?: (ctx: Select_limit_valueContext) => Result; + visitOptionalSortClause?: (ctx: OptionalSortClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_offset_value`. + * Visit a parse tree produced by `PostgreSqlParser.sortClause`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_offset_value?: (ctx: Select_offset_valueContext) => Result; + visitSortClause?: (ctx: SortClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.select_fetch_first_value`. + * Visit a parse tree produced by `PostgreSqlParser.sortByList`. * @param ctx the parse tree * @return the visitor result */ - visitSelect_fetch_first_value?: (ctx: Select_fetch_first_valueContext) => Result; + visitSortByList?: (ctx: SortByListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.i_or_f_const`. + * Visit a parse tree produced by `PostgreSqlParser.sortBy`. * @param ctx the parse tree * @return the visitor result */ - visitI_or_f_const?: (ctx: I_or_f_constContext) => Result; + visitSortBy?: (ctx: SortByContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.row_or_rows`. + * Visit a parse tree produced by `PostgreSqlParser.selectLimit`. * @param ctx the parse tree * @return the visitor result */ - visitRow_or_rows?: (ctx: Row_or_rowsContext) => Result; + visitSelectLimit?: (ctx: SelectLimitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.first_or_next`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSelectLimit`. * @param ctx the parse tree * @return the visitor result */ - visitFirst_or_next?: (ctx: First_or_nextContext) => Result; + visitOptionalSelectLimit?: (ctx: OptionalSelectLimitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.group_clause`. + * Visit a parse tree produced by `PostgreSqlParser.limitClause`. * @param ctx the parse tree * @return the visitor result */ - visitGroup_clause?: (ctx: Group_clauseContext) => Result; + visitLimitClause?: (ctx: LimitClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.group_by_list`. + * Visit a parse tree produced by `PostgreSqlParser.offsetClause`. * @param ctx the parse tree * @return the visitor result */ - visitGroup_by_list?: (ctx: Group_by_listContext) => Result; + visitOffsetClause?: (ctx: OffsetClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.group_by_item`. + * Visit a parse tree produced by `PostgreSqlParser.selectLimitValue`. * @param ctx the parse tree * @return the visitor result */ - visitGroup_by_item?: (ctx: Group_by_itemContext) => Result; + visitSelectLimitValue?: (ctx: SelectLimitValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.empty_grouping_set`. + * Visit a parse tree produced by `PostgreSqlParser.selectOffsetValue`. * @param ctx the parse tree * @return the visitor result */ - visitEmpty_grouping_set?: (ctx: Empty_grouping_setContext) => Result; + visitSelectOffsetValue?: (ctx: SelectOffsetValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rollup_clause`. + * Visit a parse tree produced by `PostgreSqlParser.selectFetchFirstValue`. * @param ctx the parse tree * @return the visitor result */ - visitRollup_clause?: (ctx: Rollup_clauseContext) => Result; + visitSelectFetchFirstValue?: (ctx: SelectFetchFirstValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cube_clause`. + * Visit a parse tree produced by `PostgreSqlParser.anyConst`. * @param ctx the parse tree * @return the visitor result */ - visitCube_clause?: (ctx: Cube_clauseContext) => Result; + visitAnyConst?: (ctx: AnyConstContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.grouping_sets_clause`. + * Visit a parse tree produced by `PostgreSqlParser.rowOrRows`. * @param ctx the parse tree * @return the visitor result */ - visitGrouping_sets_clause?: (ctx: Grouping_sets_clauseContext) => Result; + visitRowOrRows?: (ctx: RowOrRowsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.having_clause`. + * Visit a parse tree produced by `PostgreSqlParser.firstOrNext`. * @param ctx the parse tree * @return the visitor result */ - visitHaving_clause?: (ctx: Having_clauseContext) => Result; + visitFirstOrNext?: (ctx: FirstOrNextContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_locking_clause`. + * Visit a parse tree produced by `PostgreSqlParser.groupClause`. * @param ctx the parse tree * @return the visitor result */ - visitFor_locking_clause?: (ctx: For_locking_clauseContext) => Result; + visitGroupClause?: (ctx: GroupClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_for_locking_clause`. + * Visit a parse tree produced by `PostgreSqlParser.groupByList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_for_locking_clause?: (ctx: Opt_for_locking_clauseContext) => Result; + visitGroupByList?: (ctx: GroupByListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_locking_items`. + * Visit a parse tree produced by `PostgreSqlParser.groupByItem`. * @param ctx the parse tree * @return the visitor result */ - visitFor_locking_items?: (ctx: For_locking_itemsContext) => Result; + visitGroupByItem?: (ctx: GroupByItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_locking_item`. + * Visit a parse tree produced by `PostgreSqlParser.havingClause`. * @param ctx the parse tree * @return the visitor result */ - visitFor_locking_item?: (ctx: For_locking_itemContext) => Result; + visitHavingClause?: (ctx: HavingClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_locking_strength`. + * Visit a parse tree produced by `PostgreSqlParser.forLockingClause`. * @param ctx the parse tree * @return the visitor result */ - visitFor_locking_strength?: (ctx: For_locking_strengthContext) => Result; + visitForLockingClause?: (ctx: ForLockingClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.locked_rels_list`. + * Visit a parse tree produced by `PostgreSqlParser.forLockingItem`. * @param ctx the parse tree * @return the visitor result */ - visitLocked_rels_list?: (ctx: Locked_rels_listContext) => Result; + visitForLockingItem?: (ctx: ForLockingItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.values_clause`. + * Visit a parse tree produced by `PostgreSqlParser.forLockingStrength`. * @param ctx the parse tree * @return the visitor result */ - visitValues_clause?: (ctx: Values_clauseContext) => Result; + visitForLockingStrength?: (ctx: ForLockingStrengthContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.from_clause`. + * Visit a parse tree produced by `PostgreSqlParser.lockedRelationsList`. * @param ctx the parse tree * @return the visitor result */ - visitFrom_clause?: (ctx: From_clauseContext) => Result; + visitLockedRelationsList?: (ctx: LockedRelationsListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.from_list`. + * Visit a parse tree produced by `PostgreSqlParser.valuesClause`. * @param ctx the parse tree * @return the visitor result */ - visitFrom_list?: (ctx: From_listContext) => Result; + visitValuesClause?: (ctx: ValuesClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.non_ansi_join`. + * Visit a parse tree produced by `PostgreSqlParser.fromClause`. * @param ctx the parse tree * @return the visitor result */ - visitNon_ansi_join?: (ctx: Non_ansi_joinContext) => Result; + visitFromClause?: (ctx: FromClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_ref`. + * Visit a parse tree produced by `PostgreSqlParser.fromList`. * @param ctx the parse tree * @return the visitor result */ - visitTable_ref?: (ctx: Table_refContext) => Result; + visitFromList?: (ctx: FromListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.alias_clause`. + * Visit a parse tree produced by `PostgreSqlParser.nonAnsiJoin`. * @param ctx the parse tree * @return the visitor result */ - visitAlias_clause?: (ctx: Alias_clauseContext) => Result; + visitNonAnsiJoin?: (ctx: NonAnsiJoinContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_alias_clause`. + * Visit a parse tree produced by `PostgreSqlParser.tableReference`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_alias_clause?: (ctx: Opt_alias_clauseContext) => Result; + visitTableReference?: (ctx: TableReferenceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_alias_clause`. + * Visit a parse tree produced by `PostgreSqlParser.aliasClause`. * @param ctx the parse tree * @return the visitor result */ - visitTable_alias_clause?: (ctx: Table_alias_clauseContext) => Result; + visitAliasClause?: (ctx: AliasClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_alias_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalAliasClause`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_alias_clause?: (ctx: Func_alias_clauseContext) => Result; + visitOptionalAliasClause?: (ctx: OptionalAliasClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.join_type`. + * Visit a parse tree produced by `PostgreSqlParser.tableAliasClause`. * @param ctx the parse tree * @return the visitor result */ - visitJoin_type?: (ctx: Join_typeContext) => Result; + visitTableAliasClause?: (ctx: TableAliasClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.join_qual`. + * Visit a parse tree produced by `PostgreSqlParser.functionAliasClause`. * @param ctx the parse tree * @return the visitor result */ - visitJoin_qual?: (ctx: Join_qualContext) => Result; + visitFunctionAliasClause?: (ctx: FunctionAliasClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.relation_expr`. + * Visit a parse tree produced by `PostgreSqlParser.joinType`. * @param ctx the parse tree * @return the visitor result */ - visitRelation_expr?: (ctx: Relation_exprContext) => Result; + visitJoinType?: (ctx: JoinTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.relation_expr_list`. + * Visit a parse tree produced by `PostgreSqlParser.joinQualifier`. * @param ctx the parse tree * @return the visitor result */ - visitRelation_expr_list?: (ctx: Relation_expr_listContext) => Result; + visitJoinQualifier?: (ctx: JoinQualifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.relation_expr_opt_alias`. + * Visit a parse tree produced by `PostgreSqlParser.relationExpression`. * @param ctx the parse tree * @return the visitor result */ - visitRelation_expr_opt_alias?: (ctx: Relation_expr_opt_aliasContext) => Result; + visitRelationExpression?: (ctx: RelationExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.tablesample_clause`. + * Visit a parse tree produced by `PostgreSqlParser.relationExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitTablesample_clause?: (ctx: Tablesample_clauseContext) => Result; + visitRelationExpressionList?: (ctx: RelationExpressionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_repeatable_clause`. + * Visit a parse tree produced by `PostgreSqlParser.relationExpressionOptionalAlias`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_repeatable_clause?: (ctx: Opt_repeatable_clauseContext) => Result; + visitRelationExpressionOptionalAlias?: (ctx: RelationExpressionOptionalAliasContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_table`. + * Visit a parse tree produced by `PostgreSqlParser.tableSampleClause`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_table?: (ctx: Func_tableContext) => Result; + visitTableSampleClause?: (ctx: TableSampleClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsfrom_item`. + * Visit a parse tree produced by `PostgreSqlParser.functionTable`. * @param ctx the parse tree * @return the visitor result */ - visitRowsfrom_item?: (ctx: Rowsfrom_itemContext) => Result; + visitFunctionTable?: (ctx: FunctionTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rowsfrom_list`. + * Visit a parse tree produced by `PostgreSqlParser.rowsFromItem`. * @param ctx the parse tree * @return the visitor result */ - visitRowsfrom_list?: (ctx: Rowsfrom_listContext) => Result; + visitRowsFromItem?: (ctx: RowsFromItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_col_def_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalColumnDefinitionList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_col_def_list?: (ctx: Opt_col_def_listContext) => Result; + visitOptionalColumnDefinitionList?: (ctx: OptionalColumnDefinitionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_ordinality`. + * Visit a parse tree produced by `PostgreSqlParser.optionalOrdinality`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_ordinality?: (ctx: Opt_ordinalityContext) => Result; + visitOptionalOrdinality?: (ctx: OptionalOrdinalityContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.where_clause`. + * Visit a parse tree produced by `PostgreSqlParser.whereClause`. * @param ctx the parse tree * @return the visitor result */ - visitWhere_clause?: (ctx: Where_clauseContext) => Result; + visitWhereClause?: (ctx: WhereClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.where_or_current_clause`. + * Visit a parse tree produced by `PostgreSqlParser.whereOrCurrentClause`. * @param ctx the parse tree * @return the visitor result */ - visitWhere_or_current_clause?: (ctx: Where_or_current_clauseContext) => Result; + visitWhereOrCurrentClause?: (ctx: WhereOrCurrentClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opttablefuncelementlist`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTableFunctionElementList`. * @param ctx the parse tree * @return the visitor result */ - visitOpttablefuncelementlist?: (ctx: OpttablefuncelementlistContext) => Result; + visitOptionalTableFunctionElementList?: (ctx: OptionalTableFunctionElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.tablefuncelementlist`. + * Visit a parse tree produced by `PostgreSqlParser.tableFunctionElementList`. * @param ctx the parse tree * @return the visitor result */ - visitTablefuncelementlist?: (ctx: TablefuncelementlistContext) => Result; + visitTableFunctionElementList?: (ctx: TableFunctionElementListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.tablefuncelement`. + * Visit a parse tree produced by `PostgreSqlParser.tableFunctionElement`. * @param ctx the parse tree * @return the visitor result */ - visitTablefuncelement?: (ctx: TablefuncelementContext) => Result; + visitTableFunctionElement?: (ctx: TableFunctionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmltable`. + * Visit a parse tree produced by `PostgreSqlParser.xmlTable`. * @param ctx the parse tree * @return the visitor result */ - visitXmltable?: (ctx: XmltableContext) => Result; + visitXmlTable?: (ctx: XmlTableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmltable_column_list`. + * Visit a parse tree produced by `PostgreSqlParser.xmlTableColumnElement`. * @param ctx the parse tree * @return the visitor result */ - visitXmltable_column_list?: (ctx: Xmltable_column_listContext) => Result; + visitXmlTableColumnElement?: (ctx: XmlTableColumnElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmltable_column_el`. + * Visit a parse tree produced by `PostgreSqlParser.xmlTableColumnOptionList`. * @param ctx the parse tree * @return the visitor result */ - visitXmltable_column_el?: (ctx: Xmltable_column_elContext) => Result; + visitXmlTableColumnOptionList?: (ctx: XmlTableColumnOptionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmltable_column_option_list`. + * Visit a parse tree produced by `PostgreSqlParser.xmlTableColumnOptionElement`. * @param ctx the parse tree * @return the visitor result */ - visitXmltable_column_option_list?: (ctx: Xmltable_column_option_listContext) => Result; + visitXmlTableColumnOptionElement?: (ctx: XmlTableColumnOptionElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmltable_column_option_el`. + * Visit a parse tree produced by `PostgreSqlParser.xmlNamespaceList`. * @param ctx the parse tree * @return the visitor result */ - visitXmltable_column_option_el?: (ctx: Xmltable_column_option_elContext) => Result; + visitXmlNamespaceList?: (ctx: XmlNamespaceListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_namespace_list`. + * Visit a parse tree produced by `PostgreSqlParser.xmlNamespaceElement`. * @param ctx the parse tree * @return the visitor result */ - visitXml_namespace_list?: (ctx: Xml_namespace_listContext) => Result; + visitXmlNamespaceElement?: (ctx: XmlNamespaceElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_namespace_el`. + * Visit a parse tree produced by `PostgreSqlParser.typeName`. * @param ctx the parse tree * @return the visitor result */ - visitXml_namespace_el?: (ctx: Xml_namespace_elContext) => Result; + visitTypeName?: (ctx: TypeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.typename`. + * Visit a parse tree produced by `PostgreSqlParser.simpleTypeName`. * @param ctx the parse tree * @return the visitor result */ - visitTypename?: (ctx: TypenameContext) => Result; + visitSimpleTypeName?: (ctx: SimpleTypeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_array_bounds`. + * Visit a parse tree produced by `PostgreSqlParser.constTypeName`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_array_bounds?: (ctx: Opt_array_boundsContext) => Result; + visitConstTypeName?: (ctx: ConstTypeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.simpletypename`. + * Visit a parse tree produced by `PostgreSqlParser.genericType`. * @param ctx the parse tree * @return the visitor result */ - visitSimpletypename?: (ctx: SimpletypenameContext) => Result; + visitGenericType?: (ctx: GenericTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.consttypename`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTypeModifiers`. * @param ctx the parse tree * @return the visitor result */ - visitConsttypename?: (ctx: ConsttypenameContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.generictype`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGenerictype?: (ctx: GenerictypeContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_type_modifiers`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_type_modifiers?: (ctx: Opt_type_modifiersContext) => Result; + visitOptionalTypeModifiers?: (ctx: OptionalTypeModifiersContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.numeric`. * @param ctx the parse tree @@ -4230,11 +3825,11 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_float`. + * Visit a parse tree produced by `PostgreSqlParser.optionalFloat`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_float?: (ctx: Opt_floatContext) => Result; + visitOptionalFloat?: (ctx: OptionalFloatContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.bit`. * @param ctx the parse tree @@ -4242,23 +3837,23 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constbit`. + * Visit a parse tree produced by `PostgreSqlParser.constBit`. * @param ctx the parse tree * @return the visitor result */ - visitConstbit?: (ctx: ConstbitContext) => Result; + visitConstBit?: (ctx: ConstBitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.bitwithlength`. + * Visit a parse tree produced by `PostgreSqlParser.bitWithLength`. * @param ctx the parse tree * @return the visitor result */ - visitBitwithlength?: (ctx: BitwithlengthContext) => Result; + visitBitWithLength?: (ctx: BitWithLengthContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.bitwithoutlength`. + * Visit a parse tree produced by `PostgreSqlParser.bitWithoutLength`. * @param ctx the parse tree * @return the visitor result */ - visitBitwithoutlength?: (ctx: BitwithoutlengthContext) => Result; + visitBitWithoutLength?: (ctx: BitWithoutLengthContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.character`. * @param ctx the parse tree @@ -4266,374 +3861,374 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constcharacter`. + * Visit a parse tree produced by `PostgreSqlParser.constCharacter`. * @param ctx the parse tree * @return the visitor result */ - visitConstcharacter?: (ctx: ConstcharacterContext) => Result; + visitConstCharacter?: (ctx: ConstCharacterContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.character_c`. + * Visit a parse tree produced by `PostgreSqlParser.characterChar`. * @param ctx the parse tree * @return the visitor result */ - visitCharacter_c?: (ctx: Character_cContext) => Result; + visitCharacterChar?: (ctx: CharacterCharContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_varying`. + * Visit a parse tree produced by `PostgreSqlParser.optionalVarying`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_varying?: (ctx: Opt_varyingContext) => Result; + visitOptionalVarying?: (ctx: OptionalVaryingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constdatetime`. + * Visit a parse tree produced by `PostgreSqlParser.constDateTime`. * @param ctx the parse tree * @return the visitor result */ - visitConstdatetime?: (ctx: ConstdatetimeContext) => Result; + visitConstDateTime?: (ctx: ConstDateTimeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.constinterval`. + * Visit a parse tree produced by `PostgreSqlParser.constInterval`. * @param ctx the parse tree * @return the visitor result */ - visitConstinterval?: (ctx: ConstintervalContext) => Result; + visitConstInterval?: (ctx: ConstIntervalContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_timezone`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTimezone`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_timezone?: (ctx: Opt_timezoneContext) => Result; + visitOptionalTimezone?: (ctx: OptionalTimezoneContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_interval`. + * Visit a parse tree produced by `PostgreSqlParser.optionalInterval`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_interval?: (ctx: Opt_intervalContext) => Result; + visitOptionalInterval?: (ctx: OptionalIntervalContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.interval_second`. + * Visit a parse tree produced by `PostgreSqlParser.intervalSecond`. * @param ctx the parse tree * @return the visitor result */ - visitInterval_second?: (ctx: Interval_secondContext) => Result; + visitIntervalSecond?: (ctx: IntervalSecondContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_escape`. + * Visit a parse tree produced by `PostgreSqlParser.optionalEscape`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_escape?: (ctx: Opt_escapeContext) => Result; + visitOptionalEscape?: (ctx: OptionalEscapeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr`. + * Visit a parse tree produced by `PostgreSqlParser.expression1`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr?: (ctx: A_exprContext) => Result; + visitExpression1?: (ctx: Expression1Context) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_qual`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Qualifier`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_qual?: (ctx: A_expr_qualContext) => Result; + visitExpression1Qualifier?: (ctx: Expression1QualifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_lessless`. + * Visit a parse tree produced by `PostgreSqlParser.expression1LessLess`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_lessless?: (ctx: A_expr_lesslessContext) => Result; + visitExpression1LessLess?: (ctx: Expression1LessLessContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_or`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Or`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_or?: (ctx: A_expr_orContext) => Result; + visitExpression1Or?: (ctx: Expression1OrContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_and`. + * Visit a parse tree produced by `PostgreSqlParser.expression1And`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_and?: (ctx: A_expr_andContext) => Result; + visitExpression1And?: (ctx: Expression1AndContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_between`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Between`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_between?: (ctx: A_expr_betweenContext) => Result; + visitExpression1Between?: (ctx: Expression1BetweenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_in`. + * Visit a parse tree produced by `PostgreSqlParser.expression1In`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_in?: (ctx: A_expr_inContext) => Result; + visitExpression1In?: (ctx: Expression1InContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_unary_not`. + * Visit a parse tree produced by `PostgreSqlParser.expression1UnaryNot`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_unary_not?: (ctx: A_expr_unary_notContext) => Result; + visitExpression1UnaryNot?: (ctx: Expression1UnaryNotContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_isnull`. + * Visit a parse tree produced by `PostgreSqlParser.expression1IsNull`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_isnull?: (ctx: A_expr_isnullContext) => Result; + visitExpression1IsNull?: (ctx: Expression1IsNullContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_is_not`. + * Visit a parse tree produced by `PostgreSqlParser.expression1IsNot`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_is_not?: (ctx: A_expr_is_notContext) => Result; + visitExpression1IsNot?: (ctx: Expression1IsNotContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_compare`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Compare`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_compare?: (ctx: A_expr_compareContext) => Result; + visitExpression1Compare?: (ctx: Expression1CompareContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_like`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Like`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_like?: (ctx: A_expr_likeContext) => Result; + visitExpression1Like?: (ctx: Expression1LikeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_qual_op`. + * Visit a parse tree produced by `PostgreSqlParser.expression1qualifierOperator`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_qual_op?: (ctx: A_expr_qual_opContext) => Result; + visitExpression1qualifierOperator?: (ctx: Expression1qualifierOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_unary_qualop`. + * Visit a parse tree produced by `PostgreSqlParser.expression1UnaryQualifierOperator`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_unary_qualop?: (ctx: A_expr_unary_qualopContext) => Result; + visitExpression1UnaryQualifierOperator?: (ctx: Expression1UnaryQualifierOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_add`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Add`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_add?: (ctx: A_expr_addContext) => Result; + visitExpression1Add?: (ctx: Expression1AddContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_mul`. + * Visit a parse tree produced by `PostgreSqlParser.expressionMultiply`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_mul?: (ctx: A_expr_mulContext) => Result; + visitExpressionMultiply?: (ctx: ExpressionMultiplyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_caret`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Caret`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_caret?: (ctx: A_expr_caretContext) => Result; + visitExpression1Caret?: (ctx: Expression1CaretContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_unary_sign`. + * Visit a parse tree produced by `PostgreSqlParser.expression1UnarySign`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_unary_sign?: (ctx: A_expr_unary_signContext) => Result; + visitExpression1UnarySign?: (ctx: Expression1UnarySignContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_at_time_zone`. + * Visit a parse tree produced by `PostgreSqlParser.expression1AtTimeZone`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_at_time_zone?: (ctx: A_expr_at_time_zoneContext) => Result; + visitExpression1AtTimeZone?: (ctx: Expression1AtTimeZoneContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_collate`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Collate`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_collate?: (ctx: A_expr_collateContext) => Result; + visitExpression1Collate?: (ctx: Expression1CollateContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.a_expr_typecast`. + * Visit a parse tree produced by `PostgreSqlParser.expression1Typecast`. * @param ctx the parse tree * @return the visitor result */ - visitA_expr_typecast?: (ctx: A_expr_typecastContext) => Result; + visitExpression1Typecast?: (ctx: Expression1TypecastContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.b_expr`. + * Visit a parse tree produced by `PostgreSqlParser.expression2`. * @param ctx the parse tree * @return the visitor result */ - visitB_expr?: (ctx: B_exprContext) => Result; + visitExpression2?: (ctx: Expression2Context) => Result; /** * Visit a parse tree produced by the `c_expr_exists` - * labeled alternative in `PostgreSqlParser.c_expr`. + * labeled alternative in `PostgreSqlParser.expression3`. * @param ctx the parse tree * @return the visitor result */ visitC_expr_exists?: (ctx: C_expr_existsContext) => Result; /** * Visit a parse tree produced by the `c_expr_expr` - * labeled alternative in `PostgreSqlParser.c_expr`. + * labeled alternative in `PostgreSqlParser.expression3`. * @param ctx the parse tree * @return the visitor result */ visitC_expr_expr?: (ctx: C_expr_exprContext) => Result; /** * Visit a parse tree produced by the `c_expr_case` - * labeled alternative in `PostgreSqlParser.c_expr`. + * labeled alternative in `PostgreSqlParser.expression3`. * @param ctx the parse tree * @return the visitor result */ visitC_expr_case?: (ctx: C_expr_caseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsqlvariablename`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlVariableName`. * @param ctx the parse tree * @return the visitor result */ - visitPlsqlvariablename?: (ctx: PlsqlvariablenameContext) => Result; + visitPlsqlVariableName?: (ctx: PlsqlVariableNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_application`. + * Visit a parse tree produced by `PostgreSqlParser.functionApplication`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_application?: (ctx: Func_applicationContext) => Result; + visitFunctionApplication?: (ctx: FunctionApplicationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_expr`. + * Visit a parse tree produced by `PostgreSqlParser.functionExpression`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_expr?: (ctx: Func_exprContext) => Result; + visitFunctionExpression?: (ctx: FunctionExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_expr_windowless`. + * Visit a parse tree produced by `PostgreSqlParser.functionExpressionWindowless`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_expr_windowless?: (ctx: Func_expr_windowlessContext) => Result; + visitFunctionExpressionWindowless?: (ctx: FunctionExpressionWindowlessContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_expr_common_subexpr`. + * Visit a parse tree produced by `PostgreSqlParser.functionExpressionCommonSubexpr`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_expr_common_subexpr?: (ctx: Func_expr_common_subexprContext) => Result; + visitFunctionExpressionCommonSubexpr?: (ctx: FunctionExpressionCommonSubexprContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_root_version`. + * Visit a parse tree produced by `PostgreSqlParser.xmlRootVersion`. * @param ctx the parse tree * @return the visitor result */ - visitXml_root_version?: (ctx: Xml_root_versionContext) => Result; + visitXmlRootVersion?: (ctx: XmlRootVersionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_xml_root_standalone`. + * Visit a parse tree produced by `PostgreSqlParser.optionalXmlRootStandalone`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_xml_root_standalone?: (ctx: Opt_xml_root_standaloneContext) => Result; + visitOptionalXmlRootStandalone?: (ctx: OptionalXmlRootStandaloneContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_attributes`. + * Visit a parse tree produced by `PostgreSqlParser.xmlAttributes`. * @param ctx the parse tree * @return the visitor result */ - visitXml_attributes?: (ctx: Xml_attributesContext) => Result; + visitXmlAttributes?: (ctx: XmlAttributesContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_attribute_list`. + * Visit a parse tree produced by `PostgreSqlParser.xmlAttributeList`. * @param ctx the parse tree * @return the visitor result */ - visitXml_attribute_list?: (ctx: Xml_attribute_listContext) => Result; + visitXmlAttributeList?: (ctx: XmlAttributeListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_attribute_el`. + * Visit a parse tree produced by `PostgreSqlParser.xmlAttributeElement`. * @param ctx the parse tree * @return the visitor result */ - visitXml_attribute_el?: (ctx: Xml_attribute_elContext) => Result; + visitXmlAttributeElement?: (ctx: XmlAttributeElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.document_or_content`. + * Visit a parse tree produced by `PostgreSqlParser.documentOrContent`. * @param ctx the parse tree * @return the visitor result */ - visitDocument_or_content?: (ctx: Document_or_contentContext) => Result; + visitDocumentOrContent?: (ctx: DocumentOrContentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_whitespace_option`. + * Visit a parse tree produced by `PostgreSqlParser.xmlWhitespaceOption`. * @param ctx the parse tree * @return the visitor result */ - visitXml_whitespace_option?: (ctx: Xml_whitespace_optionContext) => Result; + visitXmlWhitespaceOption?: (ctx: XmlWhitespaceOptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xmlexists_argument`. + * Visit a parse tree produced by `PostgreSqlParser.xmlExistsArgument`. * @param ctx the parse tree * @return the visitor result */ - visitXmlexists_argument?: (ctx: Xmlexists_argumentContext) => Result; + visitXmlExistsArgument?: (ctx: XmlExistsArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.xml_passing_mech`. + * Visit a parse tree produced by `PostgreSqlParser.xmlPassingMech`. * @param ctx the parse tree * @return the visitor result */ - visitXml_passing_mech?: (ctx: Xml_passing_mechContext) => Result; + visitXmlPassingMech?: (ctx: XmlPassingMechContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.within_group_clause`. + * Visit a parse tree produced by `PostgreSqlParser.withinGroupClause`. * @param ctx the parse tree * @return the visitor result */ - visitWithin_group_clause?: (ctx: Within_group_clauseContext) => Result; + visitWithinGroupClause?: (ctx: WithinGroupClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.filter_clause`. + * Visit a parse tree produced by `PostgreSqlParser.filterClause`. * @param ctx the parse tree * @return the visitor result */ - visitFilter_clause?: (ctx: Filter_clauseContext) => Result; + visitFilterClause?: (ctx: FilterClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.window_clause`. + * Visit a parse tree produced by `PostgreSqlParser.windowClause`. * @param ctx the parse tree * @return the visitor result */ - visitWindow_clause?: (ctx: Window_clauseContext) => Result; + visitWindowClause?: (ctx: WindowClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.window_definition_list`. + * Visit a parse tree produced by `PostgreSqlParser.windowDefinitionList`. * @param ctx the parse tree * @return the visitor result */ - visitWindow_definition_list?: (ctx: Window_definition_listContext) => Result; + visitWindowDefinitionList?: (ctx: WindowDefinitionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.window_definition`. + * Visit a parse tree produced by `PostgreSqlParser.windowDefinition`. * @param ctx the parse tree * @return the visitor result */ - visitWindow_definition?: (ctx: Window_definitionContext) => Result; + visitWindowDefinition?: (ctx: WindowDefinitionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.over_clause`. + * Visit a parse tree produced by `PostgreSqlParser.overClause`. * @param ctx the parse tree * @return the visitor result */ - visitOver_clause?: (ctx: Over_clauseContext) => Result; + visitOverClause?: (ctx: OverClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.window_specification`. + * Visit a parse tree produced by `PostgreSqlParser.windowSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitWindow_specification?: (ctx: Window_specificationContext) => Result; + visitWindowSpecification?: (ctx: WindowSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_existing_window_name`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExistingWindowName`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_existing_window_name?: (ctx: Opt_existing_window_nameContext) => Result; + visitOptionalExistingWindowName?: (ctx: OptionalExistingWindowNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_partition_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalPartitionClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_partition_clause?: (ctx: Opt_partition_clauseContext) => Result; + visitOptionalPartitionClause?: (ctx: OptionalPartitionClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_frame_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalFrameClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_frame_clause?: (ctx: Opt_frame_clauseContext) => Result; + visitOptionalFrameClause?: (ctx: OptionalFrameClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.frame_extent`. + * Visit a parse tree produced by `PostgreSqlParser.frameExtent`. * @param ctx the parse tree * @return the visitor result */ - visitFrame_extent?: (ctx: Frame_extentContext) => Result; + visitFrameExtent?: (ctx: FrameExtentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.frame_bound`. + * Visit a parse tree produced by `PostgreSqlParser.frameBound`. * @param ctx the parse tree * @return the visitor result */ - visitFrame_bound?: (ctx: Frame_boundContext) => Result; + visitFrameBound?: (ctx: FrameBoundContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_window_exclusion_clause`. + * Visit a parse tree produced by `PostgreSqlParser.optionalWindowExclusionClause`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_window_exclusion_clause?: (ctx: Opt_window_exclusion_clauseContext) => Result; + visitOptionalWindowExclusionClause?: (ctx: OptionalWindowExclusionClauseContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.row`. * @param ctx the parse tree @@ -4641,193 +4236,187 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.explicit_row`. + * Visit a parse tree produced by `PostgreSqlParser.explicitRow`. * @param ctx the parse tree * @return the visitor result */ - visitExplicit_row?: (ctx: Explicit_rowContext) => Result; + visitExplicitRow?: (ctx: ExplicitRowContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.implicit_row`. + * Visit a parse tree produced by `PostgreSqlParser.implicitRow`. * @param ctx the parse tree * @return the visitor result */ - visitImplicit_row?: (ctx: Implicit_rowContext) => Result; + visitImplicitRow?: (ctx: ImplicitRowContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.sub_type`. + * Visit a parse tree produced by `PostgreSqlParser.subType`. * @param ctx the parse tree * @return the visitor result */ - visitSub_type?: (ctx: Sub_typeContext) => Result; + visitSubType?: (ctx: SubTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.all_op`. + * Visit a parse tree produced by `PostgreSqlParser.allOperator`. * @param ctx the parse tree * @return the visitor result */ - visitAll_op?: (ctx: All_opContext) => Result; + visitAllOperator?: (ctx: AllOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.mathop`. + * Visit a parse tree produced by `PostgreSqlParser.mathOperator`. * @param ctx the parse tree * @return the visitor result */ - visitMathop?: (ctx: MathopContext) => Result; + visitMathOperator?: (ctx: MathOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.qual_op`. + * Visit a parse tree produced by `PostgreSqlParser.operatorQualifier`. * @param ctx the parse tree * @return the visitor result */ - visitQual_op?: (ctx: Qual_opContext) => Result; + visitOperatorQualifier?: (ctx: OperatorQualifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.qual_all_op`. + * Visit a parse tree produced by `PostgreSqlParser.allOperatorQualifier`. * @param ctx the parse tree * @return the visitor result */ - visitQual_all_op?: (ctx: Qual_all_opContext) => Result; + visitAllOperatorQualifier?: (ctx: AllOperatorQualifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.subquery_Op`. + * Visit a parse tree produced by `PostgreSqlParser.subqueryOperator`. * @param ctx the parse tree * @return the visitor result */ - visitSubquery_Op?: (ctx: Subquery_OpContext) => Result; + visitSubqueryOperator?: (ctx: SubqueryOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.expr_list`. + * Visit a parse tree produced by `PostgreSqlParser.expressionList`. * @param ctx the parse tree * @return the visitor result */ - visitExpr_list?: (ctx: Expr_listContext) => Result; + visitExpressionList?: (ctx: ExpressionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_arg_list`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgumentList`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_arg_list?: (ctx: Func_arg_listContext) => Result; + visitFunctionArgumentList?: (ctx: FunctionArgumentListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_arg_expr`. + * Visit a parse tree produced by `PostgreSqlParser.functionArgumentExpression`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_arg_expr?: (ctx: Func_arg_exprContext) => Result; + visitFunctionArgumentExpression?: (ctx: FunctionArgumentExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.type_list`. + * Visit a parse tree produced by `PostgreSqlParser.typeList`. * @param ctx the parse tree * @return the visitor result */ - visitType_list?: (ctx: Type_listContext) => Result; + visitTypeList?: (ctx: TypeListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.array_expr`. + * Visit a parse tree produced by `PostgreSqlParser.arrayExpression`. * @param ctx the parse tree * @return the visitor result */ - visitArray_expr?: (ctx: Array_exprContext) => Result; + visitArrayExpression?: (ctx: ArrayExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.array_expr_list`. + * Visit a parse tree produced by `PostgreSqlParser.arrayExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitArray_expr_list?: (ctx: Array_expr_listContext) => Result; + visitArrayExpressionList?: (ctx: ArrayExpressionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.extract_list`. + * Visit a parse tree produced by `PostgreSqlParser.extractList`. * @param ctx the parse tree * @return the visitor result */ - visitExtract_list?: (ctx: Extract_listContext) => Result; + visitExtractList?: (ctx: ExtractListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.extract_arg`. + * Visit a parse tree produced by `PostgreSqlParser.extractArgument`. * @param ctx the parse tree * @return the visitor result */ - visitExtract_arg?: (ctx: Extract_argContext) => Result; + visitExtractArgument?: (ctx: ExtractArgumentContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.unicode_normal_form`. + * Visit a parse tree produced by `PostgreSqlParser.unicodeNormalForm`. * @param ctx the parse tree * @return the visitor result */ - visitUnicode_normal_form?: (ctx: Unicode_normal_formContext) => Result; + visitUnicodeNormalForm?: (ctx: UnicodeNormalFormContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.overlay_list`. + * Visit a parse tree produced by `PostgreSqlParser.overlayList`. * @param ctx the parse tree * @return the visitor result */ - visitOverlay_list?: (ctx: Overlay_listContext) => Result; + visitOverlayList?: (ctx: OverlayListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.position_list`. + * Visit a parse tree produced by `PostgreSqlParser.positionList`. * @param ctx the parse tree * @return the visitor result */ - visitPosition_list?: (ctx: Position_listContext) => Result; + visitPositionList?: (ctx: PositionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.substr_list`. + * Visit a parse tree produced by `PostgreSqlParser.substrList`. * @param ctx the parse tree * @return the visitor result */ - visitSubstr_list?: (ctx: Substr_listContext) => Result; + visitSubstrList?: (ctx: SubstrListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.trim_list`. + * Visit a parse tree produced by `PostgreSqlParser.trimList`. * @param ctx the parse tree * @return the visitor result */ - visitTrim_list?: (ctx: Trim_listContext) => Result; + visitTrimList?: (ctx: TrimListContext) => Result; /** * Visit a parse tree produced by the `in_expr_select` - * labeled alternative in `PostgreSqlParser.in_expr`. + * labeled alternative in `PostgreSqlParser.inExpression`. * @param ctx the parse tree * @return the visitor result */ visitIn_expr_select?: (ctx: In_expr_selectContext) => Result; /** * Visit a parse tree produced by the `in_expr_list` - * labeled alternative in `PostgreSqlParser.in_expr`. + * labeled alternative in `PostgreSqlParser.inExpression`. * @param ctx the parse tree * @return the visitor result */ visitIn_expr_list?: (ctx: In_expr_listContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.case_expr`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCase_expr?: (ctx: Case_exprContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.when_clause_list`. + * Visit a parse tree produced by `PostgreSqlParser.caseExpression`. * @param ctx the parse tree * @return the visitor result */ - visitWhen_clause_list?: (ctx: When_clause_listContext) => Result; + visitCaseExpression?: (ctx: CaseExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.when_clause`. + * Visit a parse tree produced by `PostgreSqlParser.whenClauseList`. * @param ctx the parse tree * @return the visitor result */ - visitWhen_clause?: (ctx: When_clauseContext) => Result; + visitWhenClauseList?: (ctx: WhenClauseListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.case_default`. + * Visit a parse tree produced by `PostgreSqlParser.whenClause`. * @param ctx the parse tree * @return the visitor result */ - visitCase_default?: (ctx: Case_defaultContext) => Result; + visitWhenClause?: (ctx: WhenClauseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.case_arg`. + * Visit a parse tree produced by `PostgreSqlParser.caseDefault`. * @param ctx the parse tree * @return the visitor result */ - visitCase_arg?: (ctx: Case_argContext) => Result; + visitCaseDefault?: (ctx: CaseDefaultContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.columnref`. + * Visit a parse tree produced by `PostgreSqlParser.caseArg`. * @param ctx the parse tree * @return the visitor result */ - visitColumnref?: (ctx: ColumnrefContext) => Result; + visitCaseArg?: (ctx: CaseArgContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.indirection_el`. + * Visit a parse tree produced by `PostgreSqlParser.columnReference`. * @param ctx the parse tree * @return the visitor result */ - visitIndirection_el?: (ctx: Indirection_elContext) => Result; + visitColumnReference?: (ctx: ColumnReferenceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_slice_bound`. + * Visit a parse tree produced by `PostgreSqlParser.indirectionElement`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_slice_bound?: (ctx: Opt_slice_boundContext) => Result; + visitIndirectionElement?: (ctx: IndirectionElementContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.indirection`. * @param ctx the parse tree @@ -4835,55 +4424,55 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_indirection`. + * Visit a parse tree produced by `PostgreSqlParser.optionalIndirection`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_indirection?: (ctx: Opt_indirectionContext) => Result; + visitOptionalIndirection?: (ctx: OptionalIndirectionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_target_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalTargetList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_target_list?: (ctx: Opt_target_listContext) => Result; + visitOptionalTargetList?: (ctx: OptionalTargetListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.target_list`. + * Visit a parse tree produced by `PostgreSqlParser.targetList`. * @param ctx the parse tree * @return the visitor result */ - visitTarget_list?: (ctx: Target_listContext) => Result; + visitTargetList?: (ctx: TargetListContext) => Result; /** * Visit a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.target_el`. + * labeled alternative in `PostgreSqlParser.targetElement`. * @param ctx the parse tree * @return the visitor result */ visitTarget_star?: (ctx: Target_starContext) => Result; /** * Visit a parse tree produced by the `target_label` - * labeled alternative in `PostgreSqlParser.target_el`. + * labeled alternative in `PostgreSqlParser.targetElement`. * @param ctx the parse tree * @return the visitor result */ visitTarget_label?: (ctx: Target_labelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.qualified_name_list`. + * Visit a parse tree produced by `PostgreSqlParser.qualifiedNameList`. * @param ctx the parse tree * @return the visitor result */ - visitQualified_name_list?: (ctx: Qualified_name_listContext) => Result; + visitQualifiedNameList?: (ctx: QualifiedNameListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.qualified_name`. + * Visit a parse tree produced by `PostgreSqlParser.qualifiedName`. * @param ctx the parse tree * @return the visitor result */ - visitQualified_name?: (ctx: Qualified_nameContext) => Result; + visitQualifiedName?: (ctx: QualifiedNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.name_list`. + * Visit a parse tree produced by `PostgreSqlParser.nameList`. * @param ctx the parse tree * @return the visitor result */ - visitName_list?: (ctx: Name_listContext) => Result; + visitNameList?: (ctx: NameListContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.name`. * @param ctx the parse tree @@ -4891,29 +4480,29 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.attr_name`. + * Visit a parse tree produced by `PostgreSqlParser.attributeName`. * @param ctx the parse tree * @return the visitor result */ - visitAttr_name?: (ctx: Attr_nameContext) => Result; + visitAttributeName?: (ctx: AttributeNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.file_name`. + * Visit a parse tree produced by `PostgreSqlParser.fileName`. * @param ctx the parse tree * @return the visitor result */ - visitFile_name?: (ctx: File_nameContext) => Result; + visitFileName?: (ctx: FileNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.func_name`. + * Visit a parse tree produced by `PostgreSqlParser.functionName`. * @param ctx the parse tree * @return the visitor result */ - visitFunc_name?: (ctx: Func_nameContext) => Result; + visitFunctionName?: (ctx: FunctionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.aexprconst`. + * Visit a parse tree produced by `PostgreSqlParser.aExpressionConst`. * @param ctx the parse tree * @return the visitor result */ - visitAexprconst?: (ctx: AexprconstContext) => Result; + visitAExpressionConst?: (ctx: AExpressionConstContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.xconst`. * @param ctx the parse tree @@ -4945,71 +4534,71 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.anysconst`. + * Visit a parse tree produced by `PostgreSqlParser.anySconst`. * @param ctx the parse tree * @return the visitor result */ - visitAnysconst?: (ctx: AnysconstContext) => Result; + visitAnySconst?: (ctx: AnySconstContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_uescape`. + * Visit a parse tree produced by `PostgreSqlParser.optionalUescape`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_uescape?: (ctx: Opt_uescapeContext) => Result; + visitOptionalUescape?: (ctx: OptionalUescapeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.signediconst`. + * Visit a parse tree produced by `PostgreSqlParser.signedIconst`. * @param ctx the parse tree * @return the visitor result */ - visitSignediconst?: (ctx: SignediconstContext) => Result; + visitSignedIconst?: (ctx: SignedIconstContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.roleid`. + * Visit a parse tree produced by `PostgreSqlParser.roleId`. * @param ctx the parse tree * @return the visitor result */ - visitRoleid?: (ctx: RoleidContext) => Result; + visitRoleId?: (ctx: RoleIdContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.rolespec`. + * Visit a parse tree produced by `PostgreSqlParser.roleSpecification`. * @param ctx the parse tree * @return the visitor result */ - visitRolespec?: (ctx: RolespecContext) => Result; + visitRoleSpecification?: (ctx: RoleSpecificationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.role_list`. + * Visit a parse tree produced by `PostgreSqlParser.roleList`. * @param ctx the parse tree * @return the visitor result */ - visitRole_list?: (ctx: Role_listContext) => Result; + visitRoleList?: (ctx: RoleListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.colid`. + * Visit a parse tree produced by `PostgreSqlParser.columnId`. * @param ctx the parse tree * @return the visitor result */ - visitColid?: (ctx: ColidContext) => Result; + visitColumnId?: (ctx: ColumnIdContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.table_alias`. + * Visit a parse tree produced by `PostgreSqlParser.tableAlias`. * @param ctx the parse tree * @return the visitor result */ - visitTable_alias?: (ctx: Table_aliasContext) => Result; + visitTableAlias?: (ctx: TableAliasContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.type_function_name`. + * Visit a parse tree produced by `PostgreSqlParser.typeFunctionName`. * @param ctx the parse tree * @return the visitor result */ - visitType_function_name?: (ctx: Type_function_nameContext) => Result; + visitTypeFunctionName?: (ctx: TypeFunctionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.nonreservedword`. + * Visit a parse tree produced by `PostgreSqlParser.nonReservedWord`. * @param ctx the parse tree * @return the visitor result */ - visitNonreservedword?: (ctx: NonreservedwordContext) => Result; + visitNonReservedWord?: (ctx: NonReservedWordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.collabel`. + * Visit a parse tree produced by `PostgreSqlParser.columnLabel`. * @param ctx the parse tree * @return the visitor result */ - visitCollabel?: (ctx: CollabelContext) => Result; + visitColumnLabel?: (ctx: ColumnLabelContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.identifier`. * @param ctx the parse tree @@ -5017,59 +4606,59 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsqlidentifier`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitPlsqlidentifier?: (ctx: PlsqlidentifierContext) => Result; + visitPlsqlIdentifier?: (ctx: PlsqlIdentifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.unreserved_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.unreservedKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitUnreserved_keyword?: (ctx: Unreserved_keywordContext) => Result; + visitUnreservedKeyword?: (ctx: UnreservedKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.col_name_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.columnNameKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitCol_name_keyword?: (ctx: Col_name_keywordContext) => Result; + visitColumnNameKeyword?: (ctx: ColumnNameKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.type_func_name_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.typeFunctionNameKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitType_func_name_keyword?: (ctx: Type_func_name_keywordContext) => Result; + visitTypeFunctionNameKeyword?: (ctx: TypeFunctionNameKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.reserved_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.reservedKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitReserved_keyword?: (ctx: Reserved_keywordContext) => Result; + visitReservedKeyword?: (ctx: ReservedKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.builtin_function_name`. + * Visit a parse tree produced by `PostgreSqlParser.builtinFunctionName`. * @param ctx the parse tree * @return the visitor result */ - visitBuiltin_function_name?: (ctx: Builtin_function_nameContext) => Result; + visitBuiltinFunctionName?: (ctx: BuiltinFunctionNameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.pl_function`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlFunction`. * @param ctx the parse tree * @return the visitor result */ - visitPl_function?: (ctx: Pl_functionContext) => Result; + visitPlsqlFunction?: (ctx: PlsqlFunctionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.comp_options`. + * Visit a parse tree produced by `PostgreSqlParser.computeOptions`. * @param ctx the parse tree * @return the visitor result */ - visitComp_options?: (ctx: Comp_optionsContext) => Result; + visitComputeOptions?: (ctx: ComputeOptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.comp_option`. + * Visit a parse tree produced by `PostgreSqlParser.computeOption`. * @param ctx the parse tree * @return the visitor result */ - visitComp_option?: (ctx: Comp_optionContext) => Result; + visitComputeOption?: (ctx: ComputeOptionContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.sharp`. * @param ctx the parse tree @@ -5077,663 +4666,633 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.option_value`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOption_value?: (ctx: Option_valueContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.opt_semi`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_semi?: (ctx: Opt_semiContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.pl_block`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPl_block?: (ctx: Pl_blockContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.decl_sect`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecl_sect?: (ctx: Decl_sectContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.decl_start`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecl_start?: (ctx: Decl_startContext) => Result; - /** - * Visit a parse tree produced by `PostgreSqlParser.decl_stmts`. + * Visit a parse tree produced by `PostgreSqlParser.optionValue`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_stmts?: (ctx: Decl_stmtsContext) => Result; + visitOptionValue?: (ctx: OptionValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.label_decl`. + * Visit a parse tree produced by `PostgreSqlParser.optionalSemi`. * @param ctx the parse tree * @return the visitor result */ - visitLabel_decl?: (ctx: Label_declContext) => Result; + visitOptionalSemi?: (ctx: OptionalSemiContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_stmt`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlBlock`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_stmt?: (ctx: Decl_stmtContext) => Result; + visitPlsqlBlock?: (ctx: PlsqlBlockContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_statement`. + * Visit a parse tree produced by `PostgreSqlParser.declareSection`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_statement?: (ctx: Decl_statementContext) => Result; + visitDeclareSection?: (ctx: DeclareSectionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_scrollable`. + * Visit a parse tree produced by `PostgreSqlParser.declareStart`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_scrollable?: (ctx: Opt_scrollableContext) => Result; + visitDeclareStart?: (ctx: DeclareStartContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_cursor_query`. + * Visit a parse tree produced by `PostgreSqlParser.declareStatements`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_cursor_query?: (ctx: Decl_cursor_queryContext) => Result; + visitDeclareStatements?: (ctx: DeclareStatementsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_cursor_args`. + * Visit a parse tree produced by `PostgreSqlParser.labelDeclaration`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_cursor_args?: (ctx: Decl_cursor_argsContext) => Result; + visitLabelDeclaration?: (ctx: LabelDeclarationContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_cursor_arglist`. + * Visit a parse tree produced by `PostgreSqlParser.declareStatement`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_cursor_arglist?: (ctx: Decl_cursor_arglistContext) => Result; + visitDeclareStatement?: (ctx: DeclareStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_cursor_arg`. + * Visit a parse tree produced by `PostgreSqlParser.declareStatement2`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_cursor_arg?: (ctx: Decl_cursor_argContext) => Result; + visitDeclareStatement2?: (ctx: DeclareStatement2Context) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_is_for`. + * Visit a parse tree produced by `PostgreSqlParser.optionalScrollable`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_is_for?: (ctx: Decl_is_forContext) => Result; + visitOptionalScrollable?: (ctx: OptionalScrollableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_aliasitem`. + * Visit a parse tree produced by `PostgreSqlParser.declareCursorQuery`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_aliasitem?: (ctx: Decl_aliasitemContext) => Result; + visitDeclareCursorQuery?: (ctx: DeclareCursorQueryContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_varname`. + * Visit a parse tree produced by `PostgreSqlParser.declareCursorArgs`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_varname?: (ctx: Decl_varnameContext) => Result; + visitDeclareCursorArgs?: (ctx: DeclareCursorArgsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_const`. + * Visit a parse tree produced by `PostgreSqlParser.declareCursorArglist`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_const?: (ctx: Decl_constContext) => Result; + visitDeclareCursorArglist?: (ctx: DeclareCursorArglistContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_datatype`. + * Visit a parse tree produced by `PostgreSqlParser.declareCursorArg`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_datatype?: (ctx: Decl_datatypeContext) => Result; + visitDeclareCursorArg?: (ctx: DeclareCursorArgContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_collate`. + * Visit a parse tree produced by `PostgreSqlParser.declareIsOrFor`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_collate?: (ctx: Decl_collateContext) => Result; + visitDeclareIsOrFor?: (ctx: DeclareIsOrForContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_notnull`. + * Visit a parse tree produced by `PostgreSqlParser.declareAliasItem`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_notnull?: (ctx: Decl_notnullContext) => Result; + visitDeclareAliasItem?: (ctx: DeclareAliasItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_defval`. + * Visit a parse tree produced by `PostgreSqlParser.declareVarname`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_defval?: (ctx: Decl_defvalContext) => Result; + visitDeclareVarname?: (ctx: DeclareVarnameContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.decl_defkey`. + * Visit a parse tree produced by `PostgreSqlParser.declareConst`. * @param ctx the parse tree * @return the visitor result */ - visitDecl_defkey?: (ctx: Decl_defkeyContext) => Result; + visitDeclareConst?: (ctx: DeclareConstContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.assign_operator`. + * Visit a parse tree produced by `PostgreSqlParser.declareDatatype`. * @param ctx the parse tree * @return the visitor result */ - visitAssign_operator?: (ctx: Assign_operatorContext) => Result; + visitDeclareDatatype?: (ctx: DeclareDatatypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_sect`. + * Visit a parse tree produced by `PostgreSqlParser.declareCollate`. * @param ctx the parse tree * @return the visitor result */ - visitProc_sect?: (ctx: Proc_sectContext) => Result; + visitDeclareCollate?: (ctx: DeclareCollateContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_stmt`. + * Visit a parse tree produced by `PostgreSqlParser.declareNotNull`. * @param ctx the parse tree * @return the visitor result */ - visitProc_stmt?: (ctx: Proc_stmtContext) => Result; + visitDeclareNotNull?: (ctx: DeclareNotNullContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_perform`. + * Visit a parse tree produced by `PostgreSqlParser.declareDefaultValue`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_perform?: (ctx: Stmt_performContext) => Result; + visitDeclareDefaultValue?: (ctx: DeclareDefaultValueContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_call`. + * Visit a parse tree produced by `PostgreSqlParser.declareDefaultKey`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_call?: (ctx: Stmt_callContext) => Result; + visitDeclareDefaultKey?: (ctx: DeclareDefaultKeyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_expr_list`. + * Visit a parse tree produced by `PostgreSqlParser.assignOperator`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_expr_list?: (ctx: Opt_expr_listContext) => Result; + visitAssignOperator?: (ctx: AssignOperatorContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_assign`. + * Visit a parse tree produced by `PostgreSqlParser.procedureSection`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_assign?: (ctx: Stmt_assignContext) => Result; + visitProcedureSection?: (ctx: ProcedureSectionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_getdiag`. + * Visit a parse tree produced by `PostgreSqlParser.proceduralStatement`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_getdiag?: (ctx: Stmt_getdiagContext) => Result; + visitProceduralStatement?: (ctx: ProceduralStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.getdiag_area_opt`. + * Visit a parse tree produced by `PostgreSqlParser.statementPerform`. * @param ctx the parse tree * @return the visitor result */ - visitGetdiag_area_opt?: (ctx: Getdiag_area_optContext) => Result; + visitStatementPerform?: (ctx: StatementPerformContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.getdiag_list`. + * Visit a parse tree produced by `PostgreSqlParser.statementCall`. * @param ctx the parse tree * @return the visitor result */ - visitGetdiag_list?: (ctx: Getdiag_listContext) => Result; + visitStatementCall?: (ctx: StatementCallContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.getdiag_list_item`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExpressionList`. * @param ctx the parse tree * @return the visitor result */ - visitGetdiag_list_item?: (ctx: Getdiag_list_itemContext) => Result; + visitOptionalExpressionList?: (ctx: OptionalExpressionListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.getdiag_item`. + * Visit a parse tree produced by `PostgreSqlParser.statementAssign`. * @param ctx the parse tree * @return the visitor result */ - visitGetdiag_item?: (ctx: Getdiag_itemContext) => Result; + visitStatementAssign?: (ctx: StatementAssignContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.getdiag_target`. + * Visit a parse tree produced by `PostgreSqlParser.statementGetDiagram`. * @param ctx the parse tree * @return the visitor result */ - visitGetdiag_target?: (ctx: Getdiag_targetContext) => Result; + visitStatementGetDiagram?: (ctx: StatementGetDiagramContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.assign_var`. + * Visit a parse tree produced by `PostgreSqlParser.optionalGetDiagramArea`. * @param ctx the parse tree * @return the visitor result */ - visitAssign_var?: (ctx: Assign_varContext) => Result; + visitOptionalGetDiagramArea?: (ctx: OptionalGetDiagramAreaContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_if`. + * Visit a parse tree produced by `PostgreSqlParser.getDiagramList`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_if?: (ctx: Stmt_ifContext) => Result; + visitGetDiagramList?: (ctx: GetDiagramListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_elsifs`. + * Visit a parse tree produced by `PostgreSqlParser.getDiagramListItem`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_elsifs?: (ctx: Stmt_elsifsContext) => Result; + visitGetDiagramListItem?: (ctx: GetDiagramListItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_else`. + * Visit a parse tree produced by `PostgreSqlParser.getDiagramItem`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_else?: (ctx: Stmt_elseContext) => Result; + visitGetDiagramItem?: (ctx: GetDiagramItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_case`. + * Visit a parse tree produced by `PostgreSqlParser.getDiagramTarget`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_case?: (ctx: Stmt_caseContext) => Result; + visitGetDiagramTarget?: (ctx: GetDiagramTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_expr_until_when`. + * Visit a parse tree produced by `PostgreSqlParser.assignVariable`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_expr_until_when?: (ctx: Opt_expr_until_whenContext) => Result; + visitAssignVariable?: (ctx: AssignVariableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.case_when_list`. + * Visit a parse tree produced by `PostgreSqlParser.statementIf`. * @param ctx the parse tree * @return the visitor result */ - visitCase_when_list?: (ctx: Case_when_listContext) => Result; + visitStatementIf?: (ctx: StatementIfContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.case_when`. + * Visit a parse tree produced by `PostgreSqlParser.statementElsifs`. * @param ctx the parse tree * @return the visitor result */ - visitCase_when?: (ctx: Case_whenContext) => Result; + visitStatementElsifs?: (ctx: StatementElsifsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_case_else`. + * Visit a parse tree produced by `PostgreSqlParser.statementElse`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_case_else?: (ctx: Opt_case_elseContext) => Result; + visitStatementElse?: (ctx: StatementElseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_loop`. + * Visit a parse tree produced by `PostgreSqlParser.statementCase`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_loop?: (ctx: Stmt_loopContext) => Result; + visitStatementCase?: (ctx: StatementCaseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_while`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExpressionUntilWhen`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_while?: (ctx: Stmt_whileContext) => Result; + visitOptionalExpressionUntilWhen?: (ctx: OptionalExpressionUntilWhenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_for`. + * Visit a parse tree produced by `PostgreSqlParser.caseWhenList`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_for?: (ctx: Stmt_forContext) => Result; + visitCaseWhenList?: (ctx: CaseWhenListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_control`. + * Visit a parse tree produced by `PostgreSqlParser.caseWhen`. * @param ctx the parse tree * @return the visitor result */ - visitFor_control?: (ctx: For_controlContext) => Result; + visitCaseWhen?: (ctx: CaseWhenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_for_using_expression`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCaseElse`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_for_using_expression?: (ctx: Opt_for_using_expressionContext) => Result; + visitOptionalCaseElse?: (ctx: OptionalCaseElseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_cursor_parameters`. + * Visit a parse tree produced by `PostgreSqlParser.statementLoop`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_cursor_parameters?: (ctx: Opt_cursor_parametersContext) => Result; + visitStatementLoop?: (ctx: StatementLoopContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_reverse`. + * Visit a parse tree produced by `PostgreSqlParser.statementWhile`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_reverse?: (ctx: Opt_reverseContext) => Result; + visitStatementWhile?: (ctx: StatementWhileContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_by_expression`. + * Visit a parse tree produced by `PostgreSqlParser.statementFor`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_by_expression?: (ctx: Opt_by_expressionContext) => Result; + visitStatementFor?: (ctx: StatementForContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.for_variable`. + * Visit a parse tree produced by `PostgreSqlParser.forControl`. * @param ctx the parse tree * @return the visitor result */ - visitFor_variable?: (ctx: For_variableContext) => Result; + visitForControl?: (ctx: ForControlContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_foreach_a`. + * Visit a parse tree produced by `PostgreSqlParser.optionalForUsingExpression`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_foreach_a?: (ctx: Stmt_foreach_aContext) => Result; + visitOptionalForUsingExpression?: (ctx: OptionalForUsingExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.foreach_slice`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCursorParameters`. * @param ctx the parse tree * @return the visitor result */ - visitForeach_slice?: (ctx: Foreach_sliceContext) => Result; + visitOptionalCursorParameters?: (ctx: OptionalCursorParametersContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_exit`. + * Visit a parse tree produced by `PostgreSqlParser.optionalReverse`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_exit?: (ctx: Stmt_exitContext) => Result; + visitOptionalReverse?: (ctx: OptionalReverseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.exit_type`. + * Visit a parse tree produced by `PostgreSqlParser.optionalByExpression`. * @param ctx the parse tree * @return the visitor result */ - visitExit_type?: (ctx: Exit_typeContext) => Result; + visitOptionalByExpression?: (ctx: OptionalByExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_return`. + * Visit a parse tree produced by `PostgreSqlParser.forVariable`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_return?: (ctx: Stmt_returnContext) => Result; + visitForVariable?: (ctx: ForVariableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_return_result`. + * Visit a parse tree produced by `PostgreSqlParser.statementForeachA`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_return_result?: (ctx: Opt_return_resultContext) => Result; + visitStatementForeachA?: (ctx: StatementForeachAContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_raise`. + * Visit a parse tree produced by `PostgreSqlParser.foreachSlice`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_raise?: (ctx: Stmt_raiseContext) => Result; + visitForeachSlice?: (ctx: ForeachSliceContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_stmt_raise_level`. + * Visit a parse tree produced by `PostgreSqlParser.statementExit`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_stmt_raise_level?: (ctx: Opt_stmt_raise_levelContext) => Result; + visitStatementExit?: (ctx: StatementExitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_raise_list`. + * Visit a parse tree produced by `PostgreSqlParser.exitType`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_raise_list?: (ctx: Opt_raise_listContext) => Result; + visitExitType?: (ctx: ExitTypeContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_raise_using`. + * Visit a parse tree produced by `PostgreSqlParser.statementReturn`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_raise_using?: (ctx: Opt_raise_usingContext) => Result; + visitStatementReturn?: (ctx: StatementReturnContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_raise_using_elem`. + * Visit a parse tree produced by `PostgreSqlParser.optionalReturnResult`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_raise_using_elem?: (ctx: Opt_raise_using_elemContext) => Result; + visitOptionalReturnResult?: (ctx: OptionalReturnResultContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_raise_using_elem_list`. + * Visit a parse tree produced by `PostgreSqlParser.statementRaise`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_raise_using_elem_list?: (ctx: Opt_raise_using_elem_listContext) => Result; + visitStatementRaise?: (ctx: StatementRaiseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_assert`. + * Visit a parse tree produced by `PostgreSqlParser.optionalStatementRaiseLevel`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_assert?: (ctx: Stmt_assertContext) => Result; + visitOptionalStatementRaiseLevel?: (ctx: OptionalStatementRaiseLevelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_stmt_assert_message`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRaiseList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_stmt_assert_message?: (ctx: Opt_stmt_assert_messageContext) => Result; + visitOptionalRaiseList?: (ctx: OptionalRaiseListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.loop_body`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRaiseUsing`. * @param ctx the parse tree * @return the visitor result */ - visitLoop_body?: (ctx: Loop_bodyContext) => Result; + visitOptionalRaiseUsing?: (ctx: OptionalRaiseUsingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_execsql`. + * Visit a parse tree produced by `PostgreSqlParser.optionalRaiseUsingElement`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_execsql?: (ctx: Stmt_execsqlContext) => Result; + visitOptionalRaiseUsingElement?: (ctx: OptionalRaiseUsingElementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_dynexecute`. + * Visit a parse tree produced by `PostgreSqlParser.statementAssert`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_dynexecute?: (ctx: Stmt_dynexecuteContext) => Result; + visitStatementAssert?: (ctx: StatementAssertContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_execute_using`. + * Visit a parse tree produced by `PostgreSqlParser.optionalStatementAssertMessage`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_execute_using?: (ctx: Opt_execute_usingContext) => Result; + visitOptionalStatementAssertMessage?: (ctx: OptionalStatementAssertMessageContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_execute_using_list`. + * Visit a parse tree produced by `PostgreSqlParser.loopBody`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_execute_using_list?: (ctx: Opt_execute_using_listContext) => Result; + visitLoopBody?: (ctx: LoopBodyContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_execute_into`. + * Visit a parse tree produced by `PostgreSqlParser.statementExecSql`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_execute_into?: (ctx: Opt_execute_intoContext) => Result; + visitStatementExecSql?: (ctx: StatementExecSqlContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_open`. + * Visit a parse tree produced by `PostgreSqlParser.statementDynExecute`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_open?: (ctx: Stmt_openContext) => Result; + visitStatementDynExecute?: (ctx: StatementDynExecuteContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_open_bound_list_item`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExecuteUsing`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_open_bound_list_item?: (ctx: Opt_open_bound_list_itemContext) => Result; + visitOptionalExecuteUsing?: (ctx: OptionalExecuteUsingContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_open_bound_list`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExecuteUsingList`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_open_bound_list?: (ctx: Opt_open_bound_listContext) => Result; + visitOptionalExecuteUsingList?: (ctx: OptionalExecuteUsingListContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_open_using`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExecuteInto`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_open_using?: (ctx: Opt_open_usingContext) => Result; + visitOptionalExecuteInto?: (ctx: OptionalExecuteIntoContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_scroll_option`. + * Visit a parse tree produced by `PostgreSqlParser.statementOpen`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_scroll_option?: (ctx: Opt_scroll_optionContext) => Result; + visitStatementOpen?: (ctx: StatementOpenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_scroll_option_no`. + * Visit a parse tree produced by `PostgreSqlParser.optionalOpenBoundListItem`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_scroll_option_no?: (ctx: Opt_scroll_option_noContext) => Result; + visitOptionalOpenBoundListItem?: (ctx: OptionalOpenBoundListItemContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_fetch`. + * Visit a parse tree produced by `PostgreSqlParser.statementFetch`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_fetch?: (ctx: Stmt_fetchContext) => Result; + visitStatementFetch?: (ctx: StatementFetchContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.into_target`. + * Visit a parse tree produced by `PostgreSqlParser.intoTarget`. * @param ctx the parse tree * @return the visitor result */ - visitInto_target?: (ctx: Into_targetContext) => Result; + visitIntoTarget?: (ctx: IntoTargetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_cursor_from`. + * Visit a parse tree produced by `PostgreSqlParser.optionalCursorFrom`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_cursor_from?: (ctx: Opt_cursor_fromContext) => Result; + visitOptionalCursorFrom?: (ctx: OptionalCursorFromContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_fetch_direction`. + * Visit a parse tree produced by `PostgreSqlParser.optionalFetchDirection`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_fetch_direction?: (ctx: Opt_fetch_directionContext) => Result; + visitOptionalFetchDirection?: (ctx: OptionalFetchDirectionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_move`. + * Visit a parse tree produced by `PostgreSqlParser.statementMove`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_move?: (ctx: Stmt_moveContext) => Result; + visitStatementMove?: (ctx: StatementMoveContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_close`. + * Visit a parse tree produced by `PostgreSqlParser.statementClose`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_close?: (ctx: Stmt_closeContext) => Result; + visitStatementClose?: (ctx: StatementCloseContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_null`. + * Visit a parse tree produced by `PostgreSqlParser.statementNull`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_null?: (ctx: Stmt_nullContext) => Result; + visitStatementNull?: (ctx: StatementNullContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_commit`. + * Visit a parse tree produced by `PostgreSqlParser.statementCommit`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_commit?: (ctx: Stmt_commitContext) => Result; + visitStatementCommit?: (ctx: StatementCommitContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_rollback`. + * Visit a parse tree produced by `PostgreSqlParser.statementRollback`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_rollback?: (ctx: Stmt_rollbackContext) => Result; + visitStatementRollback?: (ctx: StatementRollbackContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsql_opt_transaction_chain`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlOptionalTransactionChain`. * @param ctx the parse tree * @return the visitor result */ - visitPlsql_opt_transaction_chain?: (ctx: Plsql_opt_transaction_chainContext) => Result; + visitPlsqlOptionalTransactionChain?: (ctx: PlsqlOptionalTransactionChainContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.stmt_set`. + * Visit a parse tree produced by `PostgreSqlParser.statementSet`. * @param ctx the parse tree * @return the visitor result */ - visitStmt_set?: (ctx: Stmt_setContext) => Result; + visitStatementSet?: (ctx: StatementSetContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.cursor_variable`. + * Visit a parse tree produced by `PostgreSqlParser.cursorVariable`. * @param ctx the parse tree * @return the visitor result */ - visitCursor_variable?: (ctx: Cursor_variableContext) => Result; + visitCursorVariable?: (ctx: CursorVariableContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.exception_sect`. + * Visit a parse tree produced by `PostgreSqlParser.exceptionSection`. * @param ctx the parse tree * @return the visitor result */ - visitException_sect?: (ctx: Exception_sectContext) => Result; + visitExceptionSection?: (ctx: ExceptionSectionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_exceptions`. + * Visit a parse tree produced by `PostgreSqlParser.procedureExceptions`. * @param ctx the parse tree * @return the visitor result */ - visitProc_exceptions?: (ctx: Proc_exceptionsContext) => Result; + visitProcedureExceptions?: (ctx: ProcedureExceptionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_exception`. + * Visit a parse tree produced by `PostgreSqlParser.procedureException`. * @param ctx the parse tree * @return the visitor result */ - visitProc_exception?: (ctx: Proc_exceptionContext) => Result; + visitProcedureException?: (ctx: ProcedureExceptionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_conditions`. + * Visit a parse tree produced by `PostgreSqlParser.procedureConditions`. * @param ctx the parse tree * @return the visitor result */ - visitProc_conditions?: (ctx: Proc_conditionsContext) => Result; + visitProcedureConditions?: (ctx: ProcedureConditionsContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.proc_condition`. + * Visit a parse tree produced by `PostgreSqlParser.procedureCondition`. * @param ctx the parse tree * @return the visitor result */ - visitProc_condition?: (ctx: Proc_conditionContext) => Result; + visitProcedureCondition?: (ctx: ProcedureConditionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_block_label`. + * Visit a parse tree produced by `PostgreSqlParser.optionalBlockLabel`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_block_label?: (ctx: Opt_block_labelContext) => Result; + visitOptionalBlockLabel?: (ctx: OptionalBlockLabelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_loop_label`. + * Visit a parse tree produced by `PostgreSqlParser.optionalLoopLabel`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_loop_label?: (ctx: Opt_loop_labelContext) => Result; + visitOptionalLoopLabel?: (ctx: OptionalLoopLabelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_label`. + * Visit a parse tree produced by `PostgreSqlParser.optionalLabel`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_label?: (ctx: Opt_labelContext) => Result; + visitOptionalLabel?: (ctx: OptionalLabelContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_exitcond`. + * Visit a parse tree produced by `PostgreSqlParser.optionalExitCondition`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_exitcond?: (ctx: Opt_exitcondContext) => Result; + visitOptionalExitCondition?: (ctx: OptionalExitConditionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.any_identifier`. + * Visit a parse tree produced by `PostgreSqlParser.anyIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitAny_identifier?: (ctx: Any_identifierContext) => Result; + visitAnyIdentifier?: (ctx: AnyIdentifierContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.plsql_unreserved_keyword`. + * Visit a parse tree produced by `PostgreSqlParser.plsqlUnreservedKeyword`. * @param ctx the parse tree * @return the visitor result */ - visitPlsql_unreserved_keyword?: (ctx: Plsql_unreserved_keywordContext) => Result; + visitPlsqlUnreservedKeyword?: (ctx: PlsqlUnreservedKeywordContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.sql_expression`. + * Visit a parse tree produced by `PostgreSqlParser.sqlExpression`. * @param ctx the parse tree * @return the visitor result */ - visitSql_expression?: (ctx: Sql_expressionContext) => Result; + visitSqlExpression?: (ctx: SqlExpressionContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.expr_until_then`. + * Visit a parse tree produced by `PostgreSqlParser.expressionUntilThen`. * @param ctx the parse tree * @return the visitor result */ - visitExpr_until_then?: (ctx: Expr_until_thenContext) => Result; + visitExpressionUntilThen?: (ctx: ExpressionUntilThenContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.expr_until_semi`. + * Visit a parse tree produced by `PostgreSqlParser.expressionUntilSemi`. * @param ctx the parse tree * @return the visitor result */ - visitExpr_until_semi?: (ctx: Expr_until_semiContext) => Result; + visitExpressionUntilSemi?: (ctx: ExpressionUntilSemiContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.expr_until_rightbracket`. + * Visit a parse tree produced by `PostgreSqlParser.expressionUntilRightbracket`. * @param ctx the parse tree * @return the visitor result */ - visitExpr_until_rightbracket?: (ctx: Expr_until_rightbracketContext) => Result; + visitExpressionUntilRightbracket?: (ctx: ExpressionUntilRightbracketContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.expr_until_loop`. + * Visit a parse tree produced by `PostgreSqlParser.expressionUntilLoop`. * @param ctx the parse tree * @return the visitor result */ - visitExpr_until_loop?: (ctx: Expr_until_loopContext) => Result; + visitExpressionUntilLoop?: (ctx: ExpressionUntilLoopContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.make_execsql_stmt`. + * Visit a parse tree produced by `PostgreSqlParser.makeExecuteSqlStatement`. * @param ctx the parse tree * @return the visitor result */ - visitMake_execsql_stmt?: (ctx: Make_execsql_stmtContext) => Result; + visitMakeExecuteSqlStatement?: (ctx: MakeExecuteSqlStatementContext) => Result; /** - * Visit a parse tree produced by `PostgreSqlParser.opt_returning_clause_into`. + * Visit a parse tree produced by `PostgreSqlParser.optionalReturningClauseInto`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_returning_clause_into?: (ctx: Opt_returning_clause_intoContext) => Result; + visitOptionalReturningClauseInto?: (ctx: OptionalReturningClauseIntoContext) => Result; } diff --git a/src/autocomplete/postgresql/grammar/PostgreSqlParser.g4 b/src/autocomplete/postgresql/grammar/PostgreSqlParser.g4 index bdfe46f1..3c53a3be 100644 --- a/src/autocomplete/postgresql/grammar/PostgreSqlParser.g4 +++ b/src/autocomplete/postgresql/grammar/PostgreSqlParser.g4 @@ -31,425 +31,425 @@ options { } root - : stmtmulti? EOF - ; - -plsqlroot - : pl_function - ; - -stmtmulti - : stmt SEMI? - | stmt SEMI stmtmulti - ; - -stmt - : altereventtrigstmt - | altercollationstmt - | alterdatabasestmt - | alterdatabasesetstmt - | alterdefaultprivilegesstmt - | alterdomainstmt - | alterenumstmt - | alterextensionstmt - | alterextensioncontentsstmt - | alterfdwstmt - | alterforeignserverstmt - | alterfunctionstmt - | altergroupstmt - | alterobjectdependsstmt - | alterobjectschemastmt - | alterownerstmt - | alteroperatorstmt - | altertypestmt - | alterpolicystmt - | alterseqstmt - | altersystemstmt - | altertablestmt - | altertblspcstmt - | altercompositetypestmt - | alterpublicationstmt - | alterrolesetstmt - | alterrolestmt - | altersubscriptionstmt - | alterstatsstmt - | altertsconfigurationstmt - | altertsdictionarystmt - | alterusermappingstmt - | analyzestmt - | callstmt - | checkpointstmt - | closeportalstmt - | clusterstmt - | commentstmt - | constraintssetstmt - | copystmt - | createamstmt - | createasstmt - | createassertionstmt - | createcaststmt - | createconversionstmt - | createdomainstmt - | createextensionstmt - | createfdwstmt - | createforeignserverstmt - | createforeigntablestmt - | createfunctionstmt - | creategroupstmt - | creatematviewstmt - | createopclassstmt - | createopfamilystmt - | createpublicationstmt - | alteropfamilystmt - | createpolicystmt - | createplangstmt - | createschemastmt - | createseqstmt - | createstmt - | createsubscriptionstmt - | createstatsstmt - | createtablespacestmt - | createtransformstmt - | createtrigstmt - | createeventtrigstmt - | createrolestmt - | createuserstmt - | createusermappingstmt - | createdbstmt - | deallocatestmt - | declarecursorstmt - | definestmt - | deletestmt - | discardstmt - | dostmt - | dropcaststmt - | dropopclassstmt - | dropopfamilystmt - | dropownedstmt - | dropstmt - | dropsubscriptionstmt - | droptablespacestmt - | droptransformstmt - | droprolestmt - | dropusermappingstmt - | dropdbstmt - | executestmt - | explainstmt - | fetchstmt - | grantstmt - | grantrolestmt - | importforeignschemastmt - | indexstmt - | insertstmt - | mergestmt - | listenstmt - | refreshmatviewstmt - | loadstmt - | lockstmt - | notifystmt - | preparestmt - | reassignownedstmt - | reindexstmt - | removeaggrstmt - | removefuncstmt - | removeoperstmt - | renamestmt - | revokestmt - | revokerolestmt - | rulestmt - | seclabelstmt - | selectstmt - | transactionstmt - | truncatestmt - | unlistenstmt - | updatestmt - | vacuumstmt - | variableresetstmt - | variablesetstmt - | variableshowstmt - | viewstmt - | plsqlconsolecommand - ; - -plsqlconsolecommand + : statements? EOF + ; + +plsqlRoot + : plsqlFunction + ; + +statements + : statement SEMI? + | statement SEMI statements + ; + +statement + : alterEventTriggerStatement + | alterCollationStatement + | alterDatabaseStatement + | alterDatabaseSetStatement + | alterDefaultPrivilegesStatement + | alterDomainStatement + | alterEnumStatement + | alterExtensionStatement + | alterExtensionContentsStatement + | alterForeignDataWrapperStatement + | alterForeignServerStatement + | alterFunctionStatement + | alterGroupStatement + | alterObjectDependsStatement + | alterObjectSchemaStatement + | alterOwnerStatement + | alterOperatorStatement + | alterTypeStatement + | alterPolicyStatement + | alterSequenceStatement + | alterSystemStatement + | alterTableStatement + | alterTablespaceStatement + | alterCompositeTypeStatement + | alterPublicationStatement + | alterRoleSetStatement + | alterRoleStatement + | alterSubscriptionStatement + | alterStatsStatement + | altertsConfigurationStatement + | altertsDictionaryStatement + | alterUserMappingStatement + | analyzeStatement + | callStatement + | checkpointStatement + | closePortalStatement + | clusterStatement + | commentStatement + | setConstraintsStatement + | copyStatement + | createAccessMethodStatement + | createAsStatement + | createAssertionStatement + | createCastStatement + | createConversionStatement + | createDomainStatement + | createExtensionStatement + | createForeignDataWrapperStatement + | createForeignServerStatement + | createForeignTableStatement + | createFunctionStatement + | createGroupStatement + | createMaterializedViewStatement + | createOperatorClassStatement + | createOperatorFamilyStatement + | createPublicationStatement + | alterOperatorFamilyStatement + | createPolicyStatement + | createProcedureLangStatement + | createSchemaStatement + | createSequenceStatement + | createStatement + | createSubscriptionStatement + | createStatsStatement + | createTablespaceStatement + | createTransformStatement + | createTriggerStatement + | createEventTriggerStatement + | createRoleStatement + | createUserStatement + | createUserMappingStatement + | createDatabaseStatement + | deallocateStatement + | declareCursorStatement + | defineStatement + | deleteStatement + | discardStatement + | doStatement + | dropCastStatement + | dropOperatorClassStatement + | dropOperatorFamilyStatement + | dropOwnedStatement + | dropStatement + | dropSubscriptionStatement + | dropTablespaceStatement + | dropTransformStatement + | dropRoleStatement + | dropUserMappingStatement + | dropDatabaseStatement + | executeStatement + | explainStatement + | fetchStatement + | grantStatement + | grantRoleStatement + | importForeignSchemaStatement + | indexStatement + | insertStatement + | mergeStatement + | listenStatement + | refreshMaterializedViewStatement + | loadStatement + | lockStatement + | notifyStatement + | prepareStatement + | reassignOwnedStatement + | reindexStatement + | removeAggregateStatement + | removeFunctionStatement + | removeOperatorStatement + | renameStatement + | revokeStatement + | revokeRoleStatement + | ruleStatement + | securityLabelStatement + | selectStatement + | transactionStatement + | truncateStatement + | unlistenStatement + | updateStatement + | vacuumStatement + | variableResetStatement + | variableSetStatement + | variableShowStatement + | viewStatement + | plsqlConsoleCommand + ; + +plsqlConsoleCommand : MetaCommand EndMetaCommand? ; -callstmt - : CALL func_application +callStatement + : CALL functionApplication ; -createrolestmt - : CREATE ROLE roleid opt_with optrolelist +createRoleStatement + : CREATE ROLE roleId optionalWith optionalRoleList ; -opt_with +optionalWith : WITH //| WITH_LA | ; -optrolelist - : createoptroleelem* +optionalRoleList + : createRoleElement* ; -alteroptrolelist - : alteroptroleelem* +alterOptionalRoleList + : alterRoleElemement* ; -alteroptroleelem +alterRoleElemement : PASSWORD (sconst | NULL_P) | (ENCRYPTED | UNENCRYPTED) PASSWORD sconst | INHERIT - | CONNECTION LIMIT signediconst + | CONNECTION LIMIT signedIconst | VALID UNTIL sconst - | USER role_list + | USER roleList | identifier ; -createoptroleelem - : alteroptroleelem +createRoleElement + : alterRoleElemement | SYSID iconst - | ADMIN role_list - | ROLE role_list - | IN_P (ROLE | GROUP_P) role_list + | ADMIN roleList + | ROLE roleList + | IN_P (ROLE | GROUP_P) roleList ; -createuserstmt - : CREATE USER roleid opt_with optrolelist +createUserStatement + : CREATE USER roleId optionalWith optionalRoleList ; -alterrolestmt - : ALTER (ROLE | USER) rolespec opt_with alteroptrolelist +alterRoleStatement + : ALTER (ROLE | USER) roleSpecification optionalWith alterOptionalRoleList ; -opt_in_database +optionalInDatabase : | IN_P DATABASE name ; -alterrolesetstmt - : ALTER (ROLE | USER) ALL? rolespec opt_in_database setresetclause +alterRoleSetStatement + : ALTER (ROLE | USER) ALL? roleSpecification optionalInDatabase setResetClause ; -droprolestmt - : DROP (ROLE | USER | GROUP_P) (IF_P EXISTS)? role_list +dropRoleStatement + : DROP (ROLE | USER | GROUP_P) (IF_P EXISTS)? roleList ; -creategroupstmt - : CREATE GROUP_P roleid opt_with optrolelist +createGroupStatement + : CREATE GROUP_P roleId optionalWith optionalRoleList ; -altergroupstmt - : ALTER GROUP_P rolespec add_drop USER role_list +alterGroupStatement + : ALTER GROUP_P roleSpecification addOrDrop USER roleList ; -add_drop +addOrDrop : ADD_P | DROP ; -createschemastmt - : CREATE SCHEMA (IF_P NOT EXISTS)? (optschemaname AUTHORIZATION rolespec | colid) optschemaeltlist +createSchemaStatement + : CREATE SCHEMA (IF_P NOT EXISTS)? (optionalSchemaName AUTHORIZATION roleSpecification | columnId) optionalSchemaList ; -optschemaname - : colid +optionalSchemaName + : columnId | ; -optschemaeltlist - : schema_stmt* +optionalSchemaList + : schemaStatement* ; -schema_stmt - : createstmt - | indexstmt - | createseqstmt - | createtrigstmt - | grantstmt - | viewstmt +schemaStatement + : createStatement + | indexStatement + | createSequenceStatement + | createTriggerStatement + | grantStatement + | viewStatement ; -variablesetstmt - : SET (LOCAL | SESSION)? set_rest +variableSetStatement + : SET (LOCAL | SESSION)? setStatementEnding ; -set_rest - : TRANSACTION transaction_mode_list - | SESSION CHARACTERISTICS AS TRANSACTION transaction_mode_list - | set_rest_more +setStatementEnding + : TRANSACTION transactionModeList + | SESSION CHARACTERISTICS AS TRANSACTION transactionModeList + | setStatementMore ; -generic_set - : var_name (TO | EQUAL) var_list +genericSetClause + : variableName (TO | EQUAL) variableList ; -set_rest_more - : generic_set - | var_name FROM CURRENT_P - | TIME ZONE zone_value +setStatementMore + : genericSetClause + | variableName FROM CURRENT_P + | TIME ZONE zoneValue | CATALOG sconst | SCHEMA sconst - | NAMES opt_encoding - | ROLE nonreservedword_or_sconst - | SESSION AUTHORIZATION nonreservedword_or_sconst - | XML_P OPTION document_or_content + | NAMES optionalEncoding + | ROLE nonReservedWordOrSconst + | SESSION AUTHORIZATION nonReservedWordOrSconst + | XML_P OPTION documentOrContent | TRANSACTION SNAPSHOT sconst ; -var_name - : colid (DOT colid)* +variableName + : columnId (DOT columnId)* ; -var_list - : var_value (COMMA var_value)* +variableList + : variableValue (COMMA variableValue)* ; -var_value - : opt_boolean_or_string - | numericonly +variableValue + : booleanOrString + | numericOnly ; -iso_level +isoLevel : READ (UNCOMMITTED | COMMITTED) | REPEATABLE READ | SERIALIZABLE ; -opt_boolean_or_string +booleanOrString : TRUE_P | FALSE_P | ON - | nonreservedword_or_sconst + | nonReservedWordOrSconst ; -zone_value +zoneValue : sconst | identifier - | constinterval sconst opt_interval - | constinterval OPEN_PAREN iconst CLOSE_PAREN sconst - | numericonly + | constInterval sconst optionalInterval + | constInterval OPEN_PAREN iconst CLOSE_PAREN sconst + | numericOnly | DEFAULT | LOCAL ; -opt_encoding +optionalEncoding : sconst | DEFAULT | ; -nonreservedword_or_sconst - : nonreservedword +nonReservedWordOrSconst + : nonReservedWord | sconst ; -variableresetstmt - : RESET reset_rest +variableResetStatement + : RESET resetClauseRest ; -reset_rest - : generic_reset +resetClauseRest + : genericResetClause | TIME ZONE | TRANSACTION ISOLATION LEVEL | SESSION AUTHORIZATION ; -generic_reset - : var_name +genericResetClause + : variableName | ALL ; -setresetclause - : SET set_rest - | variableresetstmt +setResetClause + : SET setStatementEnding + | variableResetStatement ; -functionsetresetclause - : SET set_rest_more - | variableresetstmt +functionSetResetClause + : SET setStatementMore + | variableResetStatement ; -variableshowstmt - : SHOW (var_name | TIME ZONE | TRANSACTION ISOLATION LEVEL | SESSION AUTHORIZATION | ALL) +variableShowStatement + : SHOW (variableName | TIME ZONE | TRANSACTION ISOLATION LEVEL | SESSION AUTHORIZATION | ALL) ; -constraintssetstmt - : SET CONSTRAINTS constraints_set_list constraints_set_mode +setConstraintsStatement + : SET CONSTRAINTS constraintsSetList constraintsSetMode ; -constraints_set_list +constraintsSetList : ALL - | qualified_name_list + | qualifiedNameList ; -constraints_set_mode +constraintsSetMode : DEFERRED | IMMEDIATE ; -checkpointstmt +checkpointStatement : CHECKPOINT ; -discardstmt +discardStatement : DISCARD (ALL | TEMP | TEMPORARY | PLANS | SEQUENCES) ; -altertablestmt - : ALTER TABLE (IF_P EXISTS)? relation_expr (alter_table_cmds | partition_cmd) - | ALTER TABLE ALL IN_P TABLESPACE name (OWNED BY role_list)? SET TABLESPACE name opt_nowait - | ALTER INDEX (IF_P EXISTS)? qualified_name (alter_table_cmds | index_partition_cmd) - | ALTER INDEX ALL IN_P TABLESPACE name (OWNED BY role_list)? SET TABLESPACE name opt_nowait - | ALTER SEQUENCE (IF_P EXISTS)? qualified_name alter_table_cmds - | ALTER VIEW (IF_P EXISTS)? qualified_name alter_table_cmds - | ALTER MATERIALIZED VIEW (IF_P EXISTS)? qualified_name alter_table_cmds - | ALTER MATERIALIZED VIEW ALL IN_P TABLESPACE name (OWNED BY role_list)? SET TABLESPACE name opt_nowait - | ALTER FOREIGN TABLE (IF_P EXISTS)? relation_expr alter_table_cmds - ; - -alter_table_cmds - : alter_table_cmd (COMMA alter_table_cmd)* - ; - -partition_cmd - : ATTACH PARTITION qualified_name partitionboundspec - | DETACH PARTITION qualified_name - ; - -index_partition_cmd - : ATTACH PARTITION qualified_name - ; - -alter_table_cmd - : ADD_P columnDef - | ADD_P IF_P NOT EXISTS columnDef - | ADD_P COLUMN columnDef - | ADD_P COLUMN IF_P NOT EXISTS columnDef - | ALTER opt_column colid alter_column_default - | ALTER opt_column colid DROP NOT NULL_P - | ALTER opt_column colid SET NOT NULL_P - | ALTER opt_column colid DROP EXPRESSION - | ALTER opt_column colid DROP EXPRESSION IF_P EXISTS - | ALTER opt_column colid SET STATISTICS signediconst - | ALTER opt_column iconst SET STATISTICS signediconst - | ALTER opt_column colid SET reloptions - | ALTER opt_column colid RESET reloptions - | ALTER opt_column colid SET STORAGE colid - | ALTER opt_column colid ADD_P GENERATED generated_when AS IDENTITY_P optparenthesizedseqoptlist - | ALTER opt_column colid alter_identity_column_option_list - | ALTER opt_column colid DROP IDENTITY_P - | ALTER opt_column colid DROP IDENTITY_P IF_P EXISTS - | DROP opt_column IF_P EXISTS colid opt_drop_behavior - | DROP opt_column colid opt_drop_behavior - | ALTER opt_column colid opt_set_data TYPE_P typename opt_collate_clause alter_using - | ALTER opt_column colid alter_generic_options - | ADD_P tableconstraint - | ALTER CONSTRAINT name constraintattributespec +alterTableStatement + : ALTER TABLE (IF_P EXISTS)? relationExpression (alterTableCommands | partitionCommand) + | ALTER TABLE ALL IN_P TABLESPACE name (OWNED BY roleList)? SET TABLESPACE name optionalNowait + | ALTER INDEX (IF_P EXISTS)? qualifiedName (alterTableCommands | indexPartitionCommand) + | ALTER INDEX ALL IN_P TABLESPACE name (OWNED BY roleList)? SET TABLESPACE name optionalNowait + | ALTER SEQUENCE (IF_P EXISTS)? qualifiedName alterTableCommands + | ALTER VIEW (IF_P EXISTS)? qualifiedName alterTableCommands + | ALTER MATERIALIZED VIEW (IF_P EXISTS)? qualifiedName alterTableCommands + | ALTER MATERIALIZED VIEW ALL IN_P TABLESPACE name (OWNED BY roleList)? SET TABLESPACE name optionalNowait + | ALTER FOREIGN TABLE (IF_P EXISTS)? relationExpression alterTableCommands + ; + +alterTableCommands + : alterTableCommand (COMMA alterTableCommand)* + ; + +partitionCommand + : ATTACH PARTITION qualifiedName partitionBoundSpecification + | DETACH PARTITION qualifiedName + ; + +indexPartitionCommand + : ATTACH PARTITION qualifiedName + ; + +alterTableCommand + : ADD_P columnDefinition + | ADD_P IF_P NOT EXISTS columnDefinition + | ADD_P COLUMN columnDefinition + | ADD_P COLUMN IF_P NOT EXISTS columnDefinition + | ALTER optionalColumn columnId alterColumnDefault + | ALTER optionalColumn columnId DROP NOT NULL_P + | ALTER optionalColumn columnId SET NOT NULL_P + | ALTER optionalColumn columnId DROP EXPRESSION + | ALTER optionalColumn columnId DROP EXPRESSION IF_P EXISTS + | ALTER optionalColumn columnId SET STATISTICS signedIconst + | ALTER optionalColumn iconst SET STATISTICS signedIconst + | ALTER optionalColumn columnId SET relOptions + | ALTER optionalColumn columnId RESET relOptions + | ALTER optionalColumn columnId SET STORAGE columnId + | ALTER optionalColumn columnId ADD_P GENERATED generatedWhen AS IDENTITY_P optionalParenthesizedSeqOptionsList + | ALTER optionalColumn columnId alterIdentityColumnOptionList + | ALTER optionalColumn columnId DROP IDENTITY_P + | ALTER optionalColumn columnId DROP IDENTITY_P IF_P EXISTS + | DROP optionalColumn IF_P EXISTS columnId optionalDropBehavior + | DROP optionalColumn columnId optionalDropBehavior + | ALTER optionalColumn columnId optionalSetData TYPE_P typeName optionalCollateClause alterUsing + | ALTER optionalColumn columnId alterGenericOptions + | ADD_P tableConstraint + | ALTER CONSTRAINT name constraintAttributeSpecification | VALIDATE CONSTRAINT name - | DROP CONSTRAINT IF_P EXISTS name opt_drop_behavior - | DROP CONSTRAINT name opt_drop_behavior + | DROP CONSTRAINT IF_P EXISTS name optionalDropBehavior + | DROP CONSTRAINT name optionalDropBehavior | SET WITHOUT OIDS | CLUSTER ON name | SET WITHOUT CLUSTER @@ -467,203 +467,176 @@ alter_table_cmd | ENABLE_P ALWAYS RULE name | ENABLE_P REPLICA RULE name | DISABLE_P RULE name - | INHERIT qualified_name - | NO INHERIT qualified_name - | OF any_name + | INHERIT qualifiedName + | NO INHERIT qualifiedName + | OF anyName | NOT OF - | OWNER TO rolespec + | OWNER TO roleSpecification | SET TABLESPACE name - | SET reloptions - | RESET reloptions - | REPLICA IDENTITY_P replica_identity + | SET relOptions + | RESET relOptions + | REPLICA IDENTITY_P replicaIdentity | ENABLE_P ROW LEVEL SECURITY | DISABLE_P ROW LEVEL SECURITY | FORCE ROW LEVEL SECURITY | NO FORCE ROW LEVEL SECURITY - | alter_generic_options + | alterGenericOptions ; -alter_column_default - : SET DEFAULT a_expr +alterColumnDefault + : SET DEFAULT expression1 | DROP DEFAULT ; -opt_drop_behavior +optionalDropBehavior : CASCADE | RESTRICT | ; -opt_collate_clause - : COLLATE any_name +optionalCollateClause + : COLLATE anyName | ; -alter_using - : USING a_expr +alterUsing + : USING expression1 | ; -replica_identity +replicaIdentity : NOTHING | FULL | DEFAULT | USING INDEX name ; -reloptions - : OPEN_PAREN reloption_list CLOSE_PAREN +relOptions + : OPEN_PAREN relOptionList CLOSE_PAREN ; -opt_reloptions - : WITH reloptions +optionalRelOptions + : WITH relOptions | ; -reloption_list - : reloption_elem (COMMA reloption_elem)* +relOptionList + : relOptionElem (COMMA relOptionElem)* ; -reloption_elem - : collabel (EQUAL def_arg | DOT collabel (EQUAL def_arg)?)? +relOptionElem + : columnLabel (EQUAL definitionArgument | DOT columnLabel (EQUAL definitionArgument)?)? ; -alter_identity_column_option_list - : alter_identity_column_option+ +alterIdentityColumnOptionList + : alterIdentityColumnOption+ ; -alter_identity_column_option - : RESTART (opt_with numericonly)? - | SET (seqoptelem | GENERATED generated_when) +alterIdentityColumnOption + : RESTART (optionalWith numericOnly)? + | SET (sequenceOptionItem | GENERATED generatedWhen) ; -partitionboundspec - : FOR VALUES WITH OPEN_PAREN hash_partbound CLOSE_PAREN - | FOR VALUES IN_P OPEN_PAREN expr_list CLOSE_PAREN - | FOR VALUES FROM OPEN_PAREN expr_list CLOSE_PAREN TO OPEN_PAREN expr_list CLOSE_PAREN +partitionBoundSpecification + : FOR VALUES WITH OPEN_PAREN hashPartitionBound CLOSE_PAREN + | FOR VALUES IN_P OPEN_PAREN expressionList CLOSE_PAREN + | FOR VALUES FROM OPEN_PAREN expressionList CLOSE_PAREN TO OPEN_PAREN expressionList CLOSE_PAREN | DEFAULT ; -hash_partbound_elem - : nonreservedword iconst +hashPartitionBoundElement + : nonReservedWord iconst ; -hash_partbound - : hash_partbound_elem (COMMA hash_partbound_elem)* +hashPartitionBound + : hashPartitionBoundElement (COMMA hashPartitionBoundElement)* ; -altercompositetypestmt - : ALTER TYPE_P any_name alter_type_cmds +alterCompositeTypeStatement + : ALTER TYPE_P anyName alterTypeCommands ; -alter_type_cmds - : alter_type_cmd (COMMA alter_type_cmd)* +alterTypeCommands + : alterTypeCommand (COMMA alterTypeCommand)* ; -alter_type_cmd - : ADD_P ATTRIBUTE tablefuncelement opt_drop_behavior - | DROP ATTRIBUTE (IF_P EXISTS)? colid opt_drop_behavior - | ALTER ATTRIBUTE colid opt_set_data TYPE_P typename opt_collate_clause opt_drop_behavior +alterTypeCommand + : ADD_P ATTRIBUTE tableFunctionElement optionalDropBehavior + | DROP ATTRIBUTE (IF_P EXISTS)? columnId optionalDropBehavior + | ALTER ATTRIBUTE columnId optionalSetData TYPE_P typeName optionalCollateClause optionalDropBehavior ; -closeportalstmt - : CLOSE (cursor_name | ALL) +closePortalStatement + : CLOSE (cursorName | ALL) ; -copystmt - : COPY opt_binary qualified_name opt_column_list copy_from opt_program copy_file_name copy_delimiter opt_with copy_options where_clause - | COPY OPEN_PAREN preparablestmt CLOSE_PAREN TO opt_program copy_file_name opt_with copy_options +copyStatement + : COPY BINARY? qualifiedName columnListWithParentheses fromOrTo PROGRAM? copyFileName copyDelimiter optionalWith copyOptions whereClause + | COPY OPEN_PAREN preparableStatement CLOSE_PAREN TO PROGRAM? copyFileName optionalWith copyOptions ; -copy_from +fromOrTo : FROM | TO ; -opt_program - : PROGRAM - | - ; - -copy_file_name +copyFileName : sconst | STDIN | STDOUT ; -copy_options - : copy_opt_list - | OPEN_PAREN copy_generic_opt_list CLOSE_PAREN +copyOptions + : copyOptionsItem* + | OPEN_PAREN copyGenericOptionList CLOSE_PAREN ; -copy_opt_list - : copy_opt_item* - ; - -copy_opt_item +copyOptionsItem : BINARY | FREEZE - | DELIMITER opt_as sconst - | NULL_P opt_as sconst + | DELIMITER optionalAs sconst + | NULL_P optionalAs sconst | CSV | HEADER_P - | QUOTE opt_as sconst - | ESCAPE opt_as sconst - | FORCE QUOTE columnlist + | QUOTE optionalAs sconst + | ESCAPE optionalAs sconst + | FORCE QUOTE columnList | FORCE QUOTE STAR - | FORCE NOT NULL_P columnlist - | FORCE NULL_P columnlist + | FORCE NOT NULL_P columnList + | FORCE NULL_P columnList | ENCODING sconst ; -opt_binary - : BINARY +copyDelimiter + : USING? DELIMITERS sconst | ; -copy_delimiter - : opt_using DELIMITERS sconst - | +copyGenericOptionList + : copyGenericOptionElem (COMMA copyGenericOptionElem)* ; -opt_using - : USING - | +copyGenericOptionElem + : columnLabel copyGenericOptionArgument ; -copy_generic_opt_list - : copy_generic_opt_elem (COMMA copy_generic_opt_elem)* - ; - -copy_generic_opt_elem - : collabel copy_generic_opt_arg - ; - -copy_generic_opt_arg - : opt_boolean_or_string - | numericonly +copyGenericOptionArgument + : booleanOrString + | numericOnly | STAR - | OPEN_PAREN copy_generic_opt_arg_list CLOSE_PAREN + | OPEN_PAREN booleanOrString (COMMA booleanOrString)* CLOSE_PAREN | ; -copy_generic_opt_arg_list - : copy_generic_opt_arg_list_item (COMMA copy_generic_opt_arg_list_item)* - ; - -copy_generic_opt_arg_list_item - : opt_boolean_or_string - ; - -createstmt - : CREATE opttemp TABLE (IF_P NOT EXISTS)? qualified_name ( - OPEN_PAREN opttableelementlist CLOSE_PAREN optinherit optpartitionspec table_access_method_clause optwith oncommitoption opttablespace - | OF any_name opttypedtableelementlist optpartitionspec table_access_method_clause optwith oncommitoption opttablespace - | PARTITION OF qualified_name opttypedtableelementlist partitionboundspec optpartitionspec table_access_method_clause optwith oncommitoption opttablespace +createStatement + : CREATE temporaryOption TABLE (IF_P NOT EXISTS)? qualifiedName ( + OPEN_PAREN optionalTableElementList CLOSE_PAREN inheritClause optionalPartitionSpecification optionalTableAccessMethodClause with onCommitOption optionalTablespace + | OF anyName optionalTypedTableElementList optionalPartitionSpecification optionalTableAccessMethodClause with onCommitOption optionalTablespace + | PARTITION OF qualifiedName optionalTypedTableElementList partitionBoundSpecification optionalPartitionSpecification optionalTableAccessMethodClause with onCommitOption optionalTablespace ) ; -opttemp +temporaryOption : TEMPORARY | TEMP | LOCAL (TEMPORARY | TEMP) @@ -672,85 +645,85 @@ opttemp | ; -opttableelementlist - : tableelementlist +optionalTableElementList + : tableElementList | ; -opttypedtableelementlist - : OPEN_PAREN typedtableelementlist CLOSE_PAREN +optionalTypedTableElementList + : OPEN_PAREN typedTableElementList CLOSE_PAREN | ; -tableelementlist - : tableelement (COMMA tableelement)* +tableElementList + : tableElement (COMMA tableElement)* ; -typedtableelementlist - : typedtableelement (COMMA typedtableelement)* +typedTableElementList + : typedTableElement (COMMA typedTableElement)* ; -tableelement - : tableconstraint - | tablelikeclause - | columnDef +tableElement + : tableConstraint + | tableLikeClause + | columnDefinition ; -typedtableelement +typedTableElement : columnOptions - | tableconstraint + | tableConstraint ; -columnDef - : colid typename create_generic_options colquallist +columnDefinition + : columnId typeName createGenericOptions columnQualifierList ; columnOptions - : colid (WITH OPTIONS)? colquallist + : columnId (WITH OPTIONS)? columnQualifierList ; -colquallist - : colconstraint* +columnQualifierList + : columnConstraint* ; -colconstraint - : CONSTRAINT name colconstraintelem - | colconstraintelem - | constraintattr - | COLLATE any_name +columnConstraint + : CONSTRAINT name columnConstraintElement + | columnConstraintElement + | constraintAttribute + | COLLATE anyName ; -colconstraintelem +columnConstraintElement : NOT NULL_P | NULL_P - | UNIQUE opt_definition optconstablespace - | PRIMARY KEY opt_definition optconstablespace - | CHECK OPEN_PAREN a_expr CLOSE_PAREN opt_no_inherit - | DEFAULT b_expr - | GENERATED generated_when AS ( IDENTITY_P optparenthesizedseqoptlist | OPEN_PAREN a_expr CLOSE_PAREN STORED) - | REFERENCES qualified_name opt_column_list key_match key_actions + | UNIQUE optionalDefinition usingIndexTablespace + | PRIMARY KEY optionalDefinition usingIndexTablespace + | CHECK OPEN_PAREN expression1 CLOSE_PAREN (NO INHERIT)? + | DEFAULT expression2 + | GENERATED generatedWhen AS ( IDENTITY_P optionalParenthesizedSeqOptionsList | OPEN_PAREN expression1 CLOSE_PAREN STORED) + | REFERENCES qualifiedName columnListWithParentheses matchClause keyActions ; -generated_when +generatedWhen : ALWAYS | BY DEFAULT ; -constraintattr +constraintAttribute : DEFERRABLE | NOT DEFERRABLE | INITIALLY (DEFERRED | IMMEDIATE) ; -tablelikeclause - : LIKE qualified_name tablelikeoptionlist +tableLikeClause + : LIKE qualifiedName tableLikeOptionList ; -tablelikeoptionlist - : ((INCLUDING | EXCLUDING) tablelikeoption)* +tableLikeOptionList + : ((INCLUDING | EXCLUDING) tableLikeOption)* ; -tablelikeoption +tableLikeOption : COMMENTS | CONSTRAINTS | DEFAULTS @@ -762,479 +735,431 @@ tablelikeoption | ALL ; -tableconstraint - : CONSTRAINT name constraintelem - | constraintelem +tableConstraint + : CONSTRAINT name constraintElement + | constraintElement ; -constraintelem - : CHECK OPEN_PAREN a_expr CLOSE_PAREN constraintattributespec - | UNIQUE ( OPEN_PAREN columnlist CLOSE_PAREN opt_c_include opt_definition optconstablespace constraintattributespec | existingindex constraintattributespec) - | PRIMARY KEY ( OPEN_PAREN columnlist CLOSE_PAREN opt_c_include opt_definition optconstablespace constraintattributespec | existingindex constraintattributespec) - | EXCLUDE access_method_clause OPEN_PAREN exclusionconstraintlist CLOSE_PAREN opt_c_include opt_definition optconstablespace exclusionwhereclause constraintattributespec - | FOREIGN KEY OPEN_PAREN columnlist CLOSE_PAREN REFERENCES qualified_name opt_column_list key_match key_actions constraintattributespec +constraintElement + : CHECK OPEN_PAREN expression1 CLOSE_PAREN constraintAttributeSpecification + | UNIQUE ( OPEN_PAREN columnList CLOSE_PAREN optionalColumnListInclude optionalDefinition usingIndexTablespace constraintAttributeSpecification | existingIndex constraintAttributeSpecification) + | PRIMARY KEY ( OPEN_PAREN columnList CLOSE_PAREN optionalColumnListInclude optionalDefinition usingIndexTablespace constraintAttributeSpecification | existingIndex constraintAttributeSpecification) + | EXCLUDE optionalAccessMethodClause OPEN_PAREN exclusionConstraintList CLOSE_PAREN optionalColumnListInclude optionalDefinition usingIndexTablespace exclusionWhereClause constraintAttributeSpecification + | FOREIGN KEY OPEN_PAREN columnList CLOSE_PAREN REFERENCES qualifiedName columnListWithParentheses matchClause keyActions constraintAttributeSpecification ; -opt_no_inherit - : NO INHERIT +columnListWithParentheses + : OPEN_PAREN columnList CLOSE_PAREN | ; -opt_column_list - : OPEN_PAREN columnlist CLOSE_PAREN - | - ; - -columnlist - : columnElem (COMMA columnElem)* +columnList + : columnElement (COMMA columnElement)* ; -columnElem - : colid +columnElement + : columnId ; -opt_c_include - : INCLUDE OPEN_PAREN columnlist CLOSE_PAREN +optionalColumnListInclude + : INCLUDE OPEN_PAREN columnList CLOSE_PAREN | ; -key_match +matchClause : MATCH (FULL | PARTIAL | SIMPLE) | ; -exclusionconstraintlist - : exclusionconstraintelem (COMMA exclusionconstraintelem)* +exclusionConstraintList + : exclusionConstraintElement (COMMA exclusionConstraintElement)* ; -exclusionconstraintelem - : index_elem WITH (any_operator | OPERATOR OPEN_PAREN any_operator CLOSE_PAREN) +exclusionConstraintElement + : indexElement WITH (anyOperator | OPERATOR OPEN_PAREN anyOperator CLOSE_PAREN) ; -exclusionwhereclause - : WHERE OPEN_PAREN a_expr CLOSE_PAREN +exclusionWhereClause + : WHERE OPEN_PAREN expression1 CLOSE_PAREN | ; -key_actions - : key_update - | key_delete - | key_update key_delete - | key_delete key_update +keyActions + : onKeyUpdateClause + | onKeyDeleteClause + | onKeyUpdateClause onKeyDeleteClause + | onKeyDeleteClause onKeyUpdateClause | ; -key_update - : ON UPDATE key_action +onKeyUpdateClause + : ON UPDATE keyAction ; -key_delete - : ON DELETE_P key_action +onKeyDeleteClause + : ON DELETE_P keyAction ; -key_action +keyAction : NO ACTION | RESTRICT | CASCADE | SET (NULL_P | DEFAULT) ; -optinherit - : INHERITS OPEN_PAREN qualified_name_list CLOSE_PAREN +inheritClause + : INHERITS OPEN_PAREN qualifiedNameList CLOSE_PAREN | ; -optpartitionspec - : partitionspec +optionalPartitionSpecification + : partitionSpecification | ; -partitionspec - : PARTITION BY colid OPEN_PAREN part_params CLOSE_PAREN +partitionSpecification + : PARTITION BY columnId OPEN_PAREN partitionElements CLOSE_PAREN ; -part_params - : part_elem (COMMA part_elem)* +partitionElements + : partitionElement (COMMA partitionElement)* ; -part_elem - : colid opt_collate opt_class - | func_expr_windowless opt_collate opt_class - | OPEN_PAREN a_expr CLOSE_PAREN opt_collate opt_class +partitionElement + : columnId optionalCollate optionalClass + | functionExpressionWindowless optionalCollate optionalClass + | OPEN_PAREN expression1 CLOSE_PAREN optionalCollate optionalClass ; -table_access_method_clause +optionalTableAccessMethodClause : USING name | ; -optwith - : WITH reloptions +with + : WITH relOptions | WITHOUT OIDS | ; -oncommitoption +onCommitOption : ON COMMIT (DROP | DELETE_P ROWS | PRESERVE ROWS) | ; -opttablespace +optionalTablespace : TABLESPACE name | ; -optconstablespace +usingIndexTablespace : USING INDEX TABLESPACE name | ; -existingindex +existingIndex : USING INDEX name ; -createstatsstmt - : CREATE STATISTICS (IF_P NOT EXISTS)? any_name opt_name_list ON expr_list FROM from_list +createStatsStatement + : CREATE STATISTICS (IF_P NOT EXISTS)? anyName optionalNameList ON expressionList FROM fromList ; -alterstatsstmt - : ALTER STATISTICS (IF_P EXISTS)? any_name SET STATISTICS signediconst +alterStatsStatement + : ALTER STATISTICS (IF_P EXISTS)? anyName SET STATISTICS signedIconst ; -createasstmt - : CREATE opttemp TABLE (IF_P NOT EXISTS)? create_as_target AS selectstmt opt_with_data +createAsStatement + : CREATE temporaryOption TABLE (IF_P NOT EXISTS)? createAsTarget AS selectStatement withData ; -create_as_target - : qualified_name opt_column_list table_access_method_clause optwith oncommitoption opttablespace +createAsTarget + : qualifiedName columnListWithParentheses optionalTableAccessMethodClause with onCommitOption optionalTablespace ; -opt_with_data +withData : WITH (DATA_P | NO DATA_P) | ; -creatematviewstmt - : CREATE optnolog MATERIALIZED VIEW (IF_P NOT EXISTS)? create_mv_target AS selectstmt opt_with_data +createMaterializedViewStatement + : CREATE UNLOGGED? MATERIALIZED VIEW (IF_P NOT EXISTS)? createMaterializedViewTarget AS selectStatement withData ; -create_mv_target - : qualified_name opt_column_list table_access_method_clause opt_reloptions opttablespace +createMaterializedViewTarget + : qualifiedName columnListWithParentheses optionalTableAccessMethodClause optionalRelOptions optionalTablespace ; -optnolog - : UNLOGGED - | +refreshMaterializedViewStatement + : REFRESH MATERIALIZED VIEW optionalConcurrently qualifiedName withData ; -refreshmatviewstmt - : REFRESH MATERIALIZED VIEW opt_concurrently qualified_name opt_with_data +createSequenceStatement + : CREATE temporaryOption SEQUENCE (IF_P NOT EXISTS)? qualifiedName sequenceOptionList? ; -createseqstmt - : CREATE opttemp SEQUENCE (IF_P NOT EXISTS)? qualified_name optseqoptlist +alterSequenceStatement + : ALTER SEQUENCE (IF_P EXISTS)? qualifiedName sequenceOptionList ; -alterseqstmt - : ALTER SEQUENCE (IF_P EXISTS)? qualified_name seqoptlist - ; - -optseqoptlist - : seqoptlist +optionalParenthesizedSeqOptionsList + : OPEN_PAREN sequenceOptionList CLOSE_PAREN | ; -optparenthesizedseqoptlist - : OPEN_PAREN seqoptlist CLOSE_PAREN - | +sequenceOptionList + : sequenceOptionItem+ ; -seqoptlist - : seqoptelem+ - ; - -seqoptelem - : AS simpletypename - | CACHE numericonly +sequenceOptionItem + : AS simpleTypeName + | CACHE numericOnly | CYCLE - | INCREMENT opt_by numericonly - | MAXVALUE numericonly - | MINVALUE numericonly + | INCREMENT BY? numericOnly + | MAXVALUE numericOnly + | MINVALUE numericOnly | NO (MAXVALUE | MINVALUE | CYCLE) - | OWNED BY any_name - | SEQUENCE NAME_P any_name - | START opt_with numericonly - | RESTART opt_with numericonly? - ; - -opt_by - : BY - | + | OWNED BY anyName + | SEQUENCE NAME_P anyName + | START optionalWith numericOnly + | RESTART optionalWith numericOnly? ; -numericonly +numericOnly : fconst | PLUS fconst | MINUS fconst - | signediconst + | signedIconst ; -numericonly_list - : numericonly (COMMA numericonly)* +numericOnlyList + : numericOnly (COMMA numericOnly)* ; -createplangstmt - : CREATE opt_or_replace opt_trusted opt_procedural LANGUAGE name (HANDLER handler_name opt_inline_handler opt_validator)? - ; - -opt_trusted - : TRUSTED - | +createProcedureLangStatement + : CREATE optionalOrReplace TRUSTED? optionalProcedural LANGUAGE name (HANDLER handlerName optionalInlineHandler validatorClause?)? ; -handler_name - : name attrs? +handlerName + : name attributes? ; -opt_inline_handler - : INLINE_P handler_name +optionalInlineHandler + : INLINE_P handlerName | ; -validator_clause - : VALIDATOR handler_name +validatorClause + : VALIDATOR handlerName | NO VALIDATOR ; -opt_validator - : validator_clause - | - ; - -opt_procedural +optionalProcedural : PROCEDURAL | ; -createtablespacestmt - : CREATE TABLESPACE name opttablespaceowner LOCATION sconst opt_reloptions +createTablespaceStatement + : CREATE TABLESPACE name optionalTablespaceOwner LOCATION sconst optionalRelOptions ; -opttablespaceowner - : OWNER rolespec +optionalTablespaceOwner + : OWNER roleSpecification | ; -droptablespacestmt +dropTablespaceStatement : DROP TABLESPACE (IF_P EXISTS)? name ; -createextensionstmt - : CREATE EXTENSION (IF_P NOT EXISTS)? name opt_with create_extension_opt_list - ; - -create_extension_opt_list - : create_extension_opt_item* +createExtensionStatement + : CREATE EXTENSION (IF_P NOT EXISTS)? name optionalWith createExtensionOptionItem* ; -create_extension_opt_item +createExtensionOptionItem : SCHEMA name - | VERSION_P nonreservedword_or_sconst - | FROM nonreservedword_or_sconst + | VERSION_P nonReservedWordOrSconst + | FROM nonReservedWordOrSconst | CASCADE ; -alterextensionstmt - : ALTER EXTENSION name UPDATE alter_extension_opt_list +alterExtensionStatement + : ALTER EXTENSION name UPDATE alterExtensionOptionItem* ; -alter_extension_opt_list - : alter_extension_opt_item* +alterExtensionOptionItem + : TO nonReservedWordOrSconst ; -alter_extension_opt_item - : TO nonreservedword_or_sconst +alterExtensionContentsStatement + : ALTER EXTENSION name addOrDrop objectTypeName name + | ALTER EXTENSION name addOrDrop objectTypeAnyName anyName + | ALTER EXTENSION name addOrDrop AGGREGATE aggregateWithArgumentTypes + | ALTER EXTENSION name addOrDrop CAST OPEN_PAREN typeName AS typeName CLOSE_PAREN + | ALTER EXTENSION name addOrDrop DOMAIN_P typeName + | ALTER EXTENSION name addOrDrop FUNCTION functionWithArgumentTypes + | ALTER EXTENSION name addOrDrop OPERATOR operatorWithArgumentTypes + | ALTER EXTENSION name addOrDrop OPERATOR CLASS anyName USING name + | ALTER EXTENSION name addOrDrop OPERATOR FAMILY anyName USING name + | ALTER EXTENSION name addOrDrop PROCEDURE functionWithArgumentTypes + | ALTER EXTENSION name addOrDrop ROUTINE functionWithArgumentTypes + | ALTER EXTENSION name addOrDrop TRANSFORM FOR typeName LANGUAGE name + | ALTER EXTENSION name addOrDrop TYPE_P typeName ; -alterextensioncontentsstmt - : ALTER EXTENSION name add_drop object_type_name name - | ALTER EXTENSION name add_drop object_type_any_name any_name - | ALTER EXTENSION name add_drop AGGREGATE aggregate_with_argtypes - | ALTER EXTENSION name add_drop CAST OPEN_PAREN typename AS typename CLOSE_PAREN - | ALTER EXTENSION name add_drop DOMAIN_P typename - | ALTER EXTENSION name add_drop FUNCTION function_with_argtypes - | ALTER EXTENSION name add_drop OPERATOR operator_with_argtypes - | ALTER EXTENSION name add_drop OPERATOR CLASS any_name USING name - | ALTER EXTENSION name add_drop OPERATOR FAMILY any_name USING name - | ALTER EXTENSION name add_drop PROCEDURE function_with_argtypes - | ALTER EXTENSION name add_drop ROUTINE function_with_argtypes - | ALTER EXTENSION name add_drop TRANSFORM FOR typename LANGUAGE name - | ALTER EXTENSION name add_drop TYPE_P typename +createForeignDataWrapperStatement + : CREATE FOREIGN DATA_P WRAPPER name forwardOptions? createGenericOptions ; -createfdwstmt - : CREATE FOREIGN DATA_P WRAPPER name opt_fdw_options create_generic_options - ; - -fdw_option - : HANDLER handler_name +forwardOption + : HANDLER handlerName | NO HANDLER - | VALIDATOR handler_name + | VALIDATOR handlerName | NO VALIDATOR ; -fdw_options - : fdw_option+ - ; - -opt_fdw_options - : fdw_options - | +forwardOptions + : forwardOption+ ; -alterfdwstmt - : ALTER FOREIGN DATA_P WRAPPER name opt_fdw_options alter_generic_options - | ALTER FOREIGN DATA_P WRAPPER name fdw_options +alterForeignDataWrapperStatement + : ALTER FOREIGN DATA_P WRAPPER name forwardOptions? alterGenericOptions + | ALTER FOREIGN DATA_P WRAPPER name forwardOptions ; -create_generic_options - : OPTIONS OPEN_PAREN generic_option_list CLOSE_PAREN +createGenericOptions + : OPTIONS OPEN_PAREN genericOptionList CLOSE_PAREN | ; -generic_option_list - : generic_option_elem (COMMA generic_option_elem)* +genericOptionList + : genericOptionElement (COMMA genericOptionElement)* ; -alter_generic_options - : OPTIONS OPEN_PAREN alter_generic_option_list CLOSE_PAREN +alterGenericOptions + : OPTIONS OPEN_PAREN alterGenericOptionList CLOSE_PAREN ; -alter_generic_option_list - : alter_generic_option_elem (COMMA alter_generic_option_elem)* +alterGenericOptionList + : alterGenericOptionElem (COMMA alterGenericOptionElem)* ; -alter_generic_option_elem - : generic_option_elem - | SET generic_option_elem - | ADD_P generic_option_elem - | DROP generic_option_name +alterGenericOptionElem + : genericOptionElement + | SET genericOptionElement + | ADD_P genericOptionElement + | DROP genericOptionName ; -generic_option_elem - : generic_option_name generic_option_arg +genericOptionElement + : genericOptionName genericOptionArgument ; -generic_option_name - : collabel +genericOptionName + : columnLabel ; -generic_option_arg +genericOptionArgument : sconst ; -createforeignserverstmt - : CREATE SERVER name opt_type opt_foreign_server_version FOREIGN DATA_P WRAPPER name create_generic_options - | CREATE SERVER IF_P NOT EXISTS name opt_type opt_foreign_server_version FOREIGN DATA_P WRAPPER name create_generic_options +createForeignServerStatement + : CREATE SERVER name optionalType foreignServerVersion? FOREIGN DATA_P WRAPPER name createGenericOptions + | CREATE SERVER IF_P NOT EXISTS name optionalType foreignServerVersion? FOREIGN DATA_P WRAPPER name createGenericOptions ; -opt_type +optionalType : TYPE_P sconst | ; -foreign_server_version +foreignServerVersion : VERSION_P (sconst | NULL_P) ; -opt_foreign_server_version - : foreign_server_version - | - ; - -alterforeignserverstmt - : ALTER SERVER name (alter_generic_options | foreign_server_version alter_generic_options?) +alterForeignServerStatement + : ALTER SERVER name (alterGenericOptions | foreignServerVersion alterGenericOptions?) ; -createforeigntablestmt - : CREATE FOREIGN TABLE qualified_name OPEN_PAREN opttableelementlist CLOSE_PAREN optinherit SERVER name create_generic_options - | CREATE FOREIGN TABLE IF_P NOT EXISTS qualified_name OPEN_PAREN opttableelementlist CLOSE_PAREN optinherit SERVER name create_generic_options - | CREATE FOREIGN TABLE qualified_name PARTITION OF qualified_name opttypedtableelementlist partitionboundspec SERVER name create_generic_options - | CREATE FOREIGN TABLE IF_P NOT EXISTS qualified_name PARTITION OF qualified_name opttypedtableelementlist partitionboundspec SERVER name create_generic_options +createForeignTableStatement + : CREATE FOREIGN TABLE qualifiedName OPEN_PAREN optionalTableElementList CLOSE_PAREN inheritClause SERVER name createGenericOptions + | CREATE FOREIGN TABLE IF_P NOT EXISTS qualifiedName OPEN_PAREN optionalTableElementList CLOSE_PAREN inheritClause SERVER name createGenericOptions + | CREATE FOREIGN TABLE qualifiedName PARTITION OF qualifiedName optionalTypedTableElementList partitionBoundSpecification SERVER name createGenericOptions + | CREATE FOREIGN TABLE IF_P NOT EXISTS qualifiedName PARTITION OF qualifiedName optionalTypedTableElementList partitionBoundSpecification SERVER name createGenericOptions ; -importforeignschemastmt - : IMPORT_P FOREIGN SCHEMA name import_qualification FROM SERVER name INTO name create_generic_options +importForeignSchemaStatement + : IMPORT_P FOREIGN SCHEMA name importQualification FROM SERVER name INTO name createGenericOptions ; -import_qualification_type +importQualificationType : LIMIT TO | EXCEPT ; -import_qualification - : import_qualification_type OPEN_PAREN relation_expr_list CLOSE_PAREN +importQualification + : importQualificationType OPEN_PAREN relationExpressionList CLOSE_PAREN | ; -createusermappingstmt - : CREATE USER MAPPING FOR auth_ident SERVER name create_generic_options - | CREATE USER MAPPING IF_P NOT EXISTS FOR auth_ident SERVER name create_generic_options +createUserMappingStatement + : CREATE USER MAPPING FOR authIdentifier SERVER name createGenericOptions + | CREATE USER MAPPING IF_P NOT EXISTS FOR authIdentifier SERVER name createGenericOptions ; -auth_ident - : rolespec +authIdentifier + : roleSpecification | USER ; -dropusermappingstmt - : DROP USER MAPPING FOR auth_ident SERVER name - | DROP USER MAPPING IF_P EXISTS FOR auth_ident SERVER name +dropUserMappingStatement + : DROP USER MAPPING FOR authIdentifier SERVER name + | DROP USER MAPPING IF_P EXISTS FOR authIdentifier SERVER name ; -alterusermappingstmt - : ALTER USER MAPPING FOR auth_ident SERVER name alter_generic_options +alterUserMappingStatement + : ALTER USER MAPPING FOR authIdentifier SERVER name alterGenericOptions ; -createpolicystmt - : CREATE POLICY name ON qualified_name rowsecuritydefaultpermissive rowsecuritydefaultforcmd rowsecuritydefaulttorole rowsecurityoptionalexpr rowsecurityoptionalwithcheck +createPolicyStatement + : CREATE POLICY name ON qualifiedName rowSecurityDefaultPermissive rowSecurityDefaultForCmd rowSecurityDefaultToRole rowSecurityOptionalExpression rowSecurityOptionalWithCheck ; -alterpolicystmt - : ALTER POLICY name ON qualified_name rowsecurityoptionaltorole rowsecurityoptionalexpr rowsecurityoptionalwithcheck +alterPolicyStatement + : ALTER POLICY name ON qualifiedName rowSecurityOptionalToRole rowSecurityOptionalExpression rowSecurityOptionalWithCheck ; -rowsecurityoptionalexpr - : USING OPEN_PAREN a_expr CLOSE_PAREN +rowSecurityOptionalExpression + : USING OPEN_PAREN expression1 CLOSE_PAREN | ; -rowsecurityoptionalwithcheck - : WITH CHECK OPEN_PAREN a_expr CLOSE_PAREN +rowSecurityOptionalWithCheck + : WITH CHECK OPEN_PAREN expression1 CLOSE_PAREN | ; -rowsecuritydefaulttorole - : TO role_list +rowSecurityDefaultToRole + : TO roleList | ; -rowsecurityoptionaltorole - : TO role_list +rowSecurityOptionalToRole + : TO roleList | ; -rowsecuritydefaultpermissive +rowSecurityDefaultPermissive : AS identifier | ; -rowsecuritydefaultforcmd - : FOR row_security_cmd +rowSecurityDefaultForCmd + : FOR rowSecurityCommand | ; -row_security_cmd +rowSecurityCommand : ALL | SELECT | INSERT @@ -1242,111 +1167,106 @@ row_security_cmd | DELETE_P ; -createamstmt - : CREATE ACCESS METHOD name TYPE_P am_type HANDLER handler_name +createAccessMethodStatement + : CREATE ACCESS METHOD name TYPE_P accessMethodType HANDLER handlerName ; -am_type +accessMethodType : INDEX | TABLE ; -createtrigstmt - : CREATE TRIGGER name triggeractiontime triggerevents ON qualified_name triggerreferencing triggerforspec triggerwhen EXECUTE function_or_procedure func_name OPEN_PAREN triggerfuncargs CLOSE_PAREN - | CREATE CONSTRAINT TRIGGER name AFTER triggerevents ON qualified_name optconstrfromtable constraintattributespec FOR EACH ROW triggerwhen EXECUTE function_or_procedure func_name OPEN_PAREN triggerfuncargs CLOSE_PAREN +createTriggerStatement + : CREATE TRIGGER name triggerActionTime triggerEvents ON qualifiedName triggerReferencing triggerForSpec triggerWhen EXECUTE functionOrProcedure functionName OPEN_PAREN triggerFunctionArguments CLOSE_PAREN + | CREATE CONSTRAINT TRIGGER name AFTER triggerEvents ON qualifiedName optionalConstraintFromTable constraintAttributeSpecification FOR EACH ROW triggerWhen EXECUTE functionOrProcedure functionName OPEN_PAREN triggerFunctionArguments CLOSE_PAREN ; -triggeractiontime +triggerActionTime : BEFORE | AFTER | INSTEAD OF ; -triggerevents - : triggeroneevent (OR triggeroneevent)* +triggerEvents + : triggerOneEvent (OR triggerOneEvent)* ; -triggeroneevent +triggerOneEvent : INSERT | DELETE_P | UPDATE - | UPDATE OF columnlist + | UPDATE OF columnList | TRUNCATE ; -triggerreferencing - : REFERENCING triggertransitions +triggerReferencing + : REFERENCING triggerTransitions | ; -triggertransitions - : triggertransition+ +triggerTransitions + : triggerTransition+ ; -triggertransition - : transitionoldornew transitionrowortable opt_as transitionrelname +triggerTransition + : transitionOldOrNew transitionRowOrTable optionalAs transitionRelName ; -transitionoldornew +transitionOldOrNew : NEW | OLD ; -transitionrowortable +transitionRowOrTable : TABLE | ROW ; -transitionrelname - : colid - ; - -triggerforspec - : FOR triggerforopteach triggerfortype - | +transitionRelName + : columnId ; -triggerforopteach - : EACH +triggerForSpec + : FOR EACH? triggerForType | ; -triggerfortype +triggerForType : ROW | STATEMENT ; -triggerwhen - : WHEN OPEN_PAREN a_expr CLOSE_PAREN +triggerWhen + : WHEN OPEN_PAREN expression1 CLOSE_PAREN | ; -function_or_procedure +functionOrProcedure : FUNCTION | PROCEDURE ; -triggerfuncargs - : (triggerfuncarg |) (COMMA triggerfuncarg)* +triggerFunctionArguments + : (triggerFunctionArgument |) (COMMA triggerFunctionArgument)* ; -triggerfuncarg +triggerFunctionArgument : iconst | fconst | sconst - | collabel + | columnLabel ; -optconstrfromtable - : FROM qualified_name +optionalConstraintFromTable + : FROM qualifiedName | ; -constraintattributespec - : constraintattributeElem* +constraintAttributeSpecification + : constraintAttributeElement* ; -constraintattributeElem +constraintAttributeElement : NOT DEFERRABLE | DEFERRABLE | INITIALLY IMMEDIATE @@ -1355,200 +1275,177 @@ constraintattributeElem | NO INHERIT ; -createeventtrigstmt - : CREATE EVENT TRIGGER name ON collabel EXECUTE function_or_procedure func_name OPEN_PAREN CLOSE_PAREN - | CREATE EVENT TRIGGER name ON collabel WHEN event_trigger_when_list EXECUTE function_or_procedure func_name OPEN_PAREN CLOSE_PAREN +createEventTriggerStatement + : CREATE EVENT TRIGGER name ON columnLabel EXECUTE functionOrProcedure functionName OPEN_PAREN CLOSE_PAREN + | CREATE EVENT TRIGGER name ON columnLabel WHEN eventTriggerWhenList EXECUTE functionOrProcedure functionName OPEN_PAREN CLOSE_PAREN ; -event_trigger_when_list - : event_trigger_when_item (AND event_trigger_when_item)* +eventTriggerWhenList + : eventTriggerWhenItem (AND eventTriggerWhenItem)* ; -event_trigger_when_item - : colid IN_P OPEN_PAREN event_trigger_value_list CLOSE_PAREN +eventTriggerWhenItem + : columnId IN_P OPEN_PAREN eventTriggerValueList CLOSE_PAREN ; -event_trigger_value_list +eventTriggerValueList : sconst (COMMA sconst)* ; -altereventtrigstmt - : ALTER EVENT TRIGGER name enable_trigger +alterEventTriggerStatement + : ALTER EVENT TRIGGER name enableTrigger ; -enable_trigger +enableTrigger : ENABLE_P | ENABLE_P REPLICA | ENABLE_P ALWAYS | DISABLE_P ; -createassertionstmt - : CREATE ASSERTION any_name CHECK OPEN_PAREN a_expr CLOSE_PAREN constraintattributespec +createAssertionStatement + : CREATE ASSERTION anyName CHECK OPEN_PAREN expression1 CLOSE_PAREN constraintAttributeSpecification ; -definestmt - : CREATE opt_or_replace AGGREGATE func_name aggr_args definition - | CREATE opt_or_replace AGGREGATE func_name old_aggr_definition - | CREATE OPERATOR any_operator definition - | CREATE TYPE_P any_name definition - | CREATE TYPE_P any_name - | CREATE TYPE_P any_name AS OPEN_PAREN opttablefuncelementlist CLOSE_PAREN - | CREATE TYPE_P any_name AS ENUM_P OPEN_PAREN opt_enum_val_list CLOSE_PAREN - | CREATE TYPE_P any_name AS RANGE definition - | CREATE TEXT_P SEARCH PARSER any_name definition - | CREATE TEXT_P SEARCH DICTIONARY any_name definition - | CREATE TEXT_P SEARCH TEMPLATE any_name definition - | CREATE TEXT_P SEARCH CONFIGURATION any_name definition - | CREATE COLLATION any_name definition - | CREATE COLLATION IF_P NOT EXISTS any_name definition - | CREATE COLLATION any_name FROM any_name - | CREATE COLLATION IF_P NOT EXISTS any_name FROM any_name +defineStatement + : CREATE optionalOrReplace AGGREGATE functionName aggregateArguments definition + | CREATE optionalOrReplace AGGREGATE functionName oldAggregateDefinition + | CREATE OPERATOR anyOperator definition + | CREATE TYPE_P anyName definition + | CREATE TYPE_P anyName + | CREATE TYPE_P anyName AS OPEN_PAREN optionalTableFunctionElementList CLOSE_PAREN + | CREATE TYPE_P anyName AS ENUM_P OPEN_PAREN enumValueList? CLOSE_PAREN + | CREATE TYPE_P anyName AS RANGE definition + | CREATE TEXT_P SEARCH PARSER anyName definition + | CREATE TEXT_P SEARCH DICTIONARY anyName definition + | CREATE TEXT_P SEARCH TEMPLATE anyName definition + | CREATE TEXT_P SEARCH CONFIGURATION anyName definition + | CREATE COLLATION anyName definition + | CREATE COLLATION IF_P NOT EXISTS anyName definition + | CREATE COLLATION anyName FROM anyName + | CREATE COLLATION IF_P NOT EXISTS anyName FROM anyName ; definition - : OPEN_PAREN def_list CLOSE_PAREN + : OPEN_PAREN definitionElement (COMMA definitionElement)* CLOSE_PAREN ; -def_list - : def_elem (COMMA def_elem)* +definitionElement + : columnLabel (EQUAL definitionArgument)? ; -def_elem - : collabel (EQUAL def_arg)? - ; - -def_arg - : func_type - | reserved_keyword - | qual_all_op - | numericonly +definitionArgument + : functionType + | reservedKeyword + | allOperatorQualifier + | numericOnly | sconst | NONE ; -old_aggr_definition - : OPEN_PAREN old_aggr_list CLOSE_PAREN +oldAggregateDefinition + : OPEN_PAREN oldAggregateElement (COMMA oldAggregateElement)* CLOSE_PAREN ; -old_aggr_list - : old_aggr_elem (COMMA old_aggr_elem)* +oldAggregateElement + : identifier EQUAL definitionArgument ; -old_aggr_elem - : identifier EQUAL def_arg - ; - -opt_enum_val_list - : enum_val_list - | - ; - -enum_val_list +enumValueList : sconst (COMMA sconst)* ; -alterenumstmt - : ALTER TYPE_P any_name ADD_P VALUE_P opt_if_not_exists sconst - | ALTER TYPE_P any_name ADD_P VALUE_P opt_if_not_exists sconst BEFORE sconst - | ALTER TYPE_P any_name ADD_P VALUE_P opt_if_not_exists sconst AFTER sconst - | ALTER TYPE_P any_name RENAME VALUE_P sconst TO sconst +alterEnumStatement + : ALTER TYPE_P anyName ADD_P VALUE_P optionalIfNotExists sconst + | ALTER TYPE_P anyName ADD_P VALUE_P optionalIfNotExists sconst BEFORE sconst + | ALTER TYPE_P anyName ADD_P VALUE_P optionalIfNotExists sconst AFTER sconst + | ALTER TYPE_P anyName RENAME VALUE_P sconst TO sconst ; -opt_if_not_exists +optionalIfNotExists : IF_P NOT EXISTS | ; -createopclassstmt - : CREATE OPERATOR CLASS any_name opt_default FOR TYPE_P typename USING name opt_opfamily AS opclass_item_list +createOperatorClassStatement + : CREATE OPERATOR CLASS anyName DEFAULT? FOR TYPE_P typeName USING name optionalOperatorFamily AS operatorClassItemList ; -opclass_item_list - : opclass_item (COMMA opclass_item)* +operatorClassItemList + : operatorClassItem (COMMA operatorClassItem)* ; -opclass_item - : OPERATOR iconst any_operator opclass_purpose opt_recheck - | OPERATOR iconst operator_with_argtypes opclass_purpose opt_recheck - | FUNCTION iconst function_with_argtypes - | FUNCTION iconst OPEN_PAREN type_list CLOSE_PAREN function_with_argtypes - | STORAGE typename - ; - -opt_default - : DEFAULT - | +operatorClassItem + : OPERATOR iconst anyOperator operatorClassPurpose RECHECK? + | OPERATOR iconst operatorWithArgumentTypes operatorClassPurpose RECHECK? + | FUNCTION iconst functionWithArgumentTypes + | FUNCTION iconst OPEN_PAREN typeList CLOSE_PAREN functionWithArgumentTypes + | STORAGE typeName ; -opt_opfamily - : FAMILY any_name +optionalOperatorFamily + : FAMILY anyName | ; -opclass_purpose +operatorClassPurpose : FOR SEARCH - | FOR ORDER BY any_name + | FOR ORDER BY anyName | ; -opt_recheck - : RECHECK - | - ; - -createopfamilystmt - : CREATE OPERATOR FAMILY any_name USING name +createOperatorFamilyStatement + : CREATE OPERATOR FAMILY anyName USING name ; -alteropfamilystmt - : ALTER OPERATOR FAMILY any_name USING name ADD_P opclass_item_list - | ALTER OPERATOR FAMILY any_name USING name DROP opclass_drop_list +alterOperatorFamilyStatement + : ALTER OPERATOR FAMILY anyName USING name ADD_P operatorClassItemList + | ALTER OPERATOR FAMILY anyName USING name DROP operatorClassDropList ; -opclass_drop_list - : opclass_drop (COMMA opclass_drop)* +operatorClassDropList + : operatorClassDrop (COMMA operatorClassDrop)* ; -opclass_drop - : OPERATOR iconst OPEN_PAREN type_list CLOSE_PAREN - | FUNCTION iconst OPEN_PAREN type_list CLOSE_PAREN +operatorClassDrop + : OPERATOR iconst OPEN_PAREN typeList CLOSE_PAREN + | FUNCTION iconst OPEN_PAREN typeList CLOSE_PAREN ; -dropopclassstmt - : DROP OPERATOR CLASS any_name USING name opt_drop_behavior - | DROP OPERATOR CLASS IF_P EXISTS any_name USING name opt_drop_behavior +dropOperatorClassStatement + : DROP OPERATOR CLASS anyName USING name optionalDropBehavior + | DROP OPERATOR CLASS IF_P EXISTS anyName USING name optionalDropBehavior ; -dropopfamilystmt - : DROP OPERATOR FAMILY any_name USING name opt_drop_behavior - | DROP OPERATOR FAMILY IF_P EXISTS any_name USING name opt_drop_behavior +dropOperatorFamilyStatement + : DROP OPERATOR FAMILY anyName USING name optionalDropBehavior + | DROP OPERATOR FAMILY IF_P EXISTS anyName USING name optionalDropBehavior ; -dropownedstmt - : DROP OWNED BY role_list opt_drop_behavior +dropOwnedStatement + : DROP OWNED BY roleList optionalDropBehavior ; -reassignownedstmt - : REASSIGN OWNED BY role_list TO rolespec +reassignOwnedStatement + : REASSIGN OWNED BY roleList TO roleSpecification ; -dropstmt - : DROP object_type_any_name IF_P EXISTS any_name_list opt_drop_behavior - | DROP object_type_any_name any_name_list opt_drop_behavior - | DROP drop_type_name IF_P EXISTS name_list opt_drop_behavior - | DROP drop_type_name name_list opt_drop_behavior - | DROP object_type_name_on_any_name name ON any_name opt_drop_behavior - | DROP object_type_name_on_any_name IF_P EXISTS name ON any_name opt_drop_behavior - | DROP TYPE_P type_name_list opt_drop_behavior - | DROP TYPE_P IF_P EXISTS type_name_list opt_drop_behavior - | DROP DOMAIN_P type_name_list opt_drop_behavior - | DROP DOMAIN_P IF_P EXISTS type_name_list opt_drop_behavior - | DROP INDEX CONCURRENTLY any_name_list opt_drop_behavior - | DROP INDEX CONCURRENTLY IF_P EXISTS any_name_list opt_drop_behavior +dropStatement + : DROP objectTypeAnyName IF_P EXISTS anyNameList optionalDropBehavior + | DROP objectTypeAnyName anyNameList optionalDropBehavior + | DROP dropTypeName IF_P EXISTS nameList optionalDropBehavior + | DROP dropTypeName nameList optionalDropBehavior + | DROP objectTypeNameOnAnyName name ON anyName optionalDropBehavior + | DROP objectTypeNameOnAnyName IF_P EXISTS name ON anyName optionalDropBehavior + | DROP TYPE_P typeNameList optionalDropBehavior + | DROP TYPE_P IF_P EXISTS typeNameList optionalDropBehavior + | DROP DOMAIN_P typeNameList optionalDropBehavior + | DROP DOMAIN_P IF_P EXISTS typeNameList optionalDropBehavior + | DROP INDEX CONCURRENTLY anyNameList optionalDropBehavior + | DROP INDEX CONCURRENTLY IF_P EXISTS anyNameList optionalDropBehavior ; -object_type_any_name +objectTypeAnyName : TABLE | SEQUENCE | VIEW @@ -1564,245 +1461,241 @@ object_type_any_name | TEXT_P SEARCH CONFIGURATION ; -object_type_name - : drop_type_name +objectTypeName + : dropTypeName | DATABASE | ROLE | SUBSCRIPTION | TABLESPACE ; -drop_type_name +dropTypeName : ACCESS METHOD | EVENT TRIGGER | EXTENSION | FOREIGN DATA_P WRAPPER - | opt_procedural LANGUAGE + | optionalProcedural LANGUAGE | PUBLICATION | SCHEMA | SERVER ; -object_type_name_on_any_name +objectTypeNameOnAnyName : POLICY | RULE | TRIGGER ; -any_name_list - : any_name (COMMA any_name)* +anyNameList + : anyName (COMMA anyName)* ; -any_name - : colid attrs? +anyName + : columnId attributes? ; -attrs - : (DOT attr_name)+ +attributes + : (DOT attributeName)+ ; -type_name_list - : typename (COMMA typename)* +typeNameList + : typeName (COMMA typeName)* ; -truncatestmt - : TRUNCATE opt_table relation_expr_list opt_restart_seqs opt_drop_behavior +truncateStatement + : TRUNCATE optionalTable relationExpressionList optionalRestartSequences optionalDropBehavior ; -opt_restart_seqs +optionalRestartSequences : CONTINUE_P IDENTITY_P | RESTART IDENTITY_P | ; -commentstmt - : COMMENT ON object_type_any_name any_name IS comment_text - | COMMENT ON COLUMN any_name IS comment_text - | COMMENT ON object_type_name name IS comment_text - | COMMENT ON TYPE_P typename IS comment_text - | COMMENT ON DOMAIN_P typename IS comment_text - | COMMENT ON AGGREGATE aggregate_with_argtypes IS comment_text - | COMMENT ON FUNCTION function_with_argtypes IS comment_text - | COMMENT ON OPERATOR operator_with_argtypes IS comment_text - | COMMENT ON CONSTRAINT name ON any_name IS comment_text - | COMMENT ON CONSTRAINT name ON DOMAIN_P any_name IS comment_text - | COMMENT ON object_type_name_on_any_name name ON any_name IS comment_text - | COMMENT ON PROCEDURE function_with_argtypes IS comment_text - | COMMENT ON ROUTINE function_with_argtypes IS comment_text - | COMMENT ON TRANSFORM FOR typename LANGUAGE name IS comment_text - | COMMENT ON OPERATOR CLASS any_name USING name IS comment_text - | COMMENT ON OPERATOR FAMILY any_name USING name IS comment_text - | COMMENT ON LARGE_P OBJECT_P numericonly IS comment_text - | COMMENT ON CAST OPEN_PAREN typename AS typename CLOSE_PAREN IS comment_text - ; - -comment_text +commentStatement + : COMMENT ON objectTypeAnyName anyName IS commentText + | COMMENT ON COLUMN anyName IS commentText + | COMMENT ON objectTypeName name IS commentText + | COMMENT ON TYPE_P typeName IS commentText + | COMMENT ON DOMAIN_P typeName IS commentText + | COMMENT ON AGGREGATE aggregateWithArgumentTypes IS commentText + | COMMENT ON FUNCTION functionWithArgumentTypes IS commentText + | COMMENT ON OPERATOR operatorWithArgumentTypes IS commentText + | COMMENT ON CONSTRAINT name ON anyName IS commentText + | COMMENT ON CONSTRAINT name ON DOMAIN_P anyName IS commentText + | COMMENT ON objectTypeNameOnAnyName name ON anyName IS commentText + | COMMENT ON PROCEDURE functionWithArgumentTypes IS commentText + | COMMENT ON ROUTINE functionWithArgumentTypes IS commentText + | COMMENT ON TRANSFORM FOR typeName LANGUAGE name IS commentText + | COMMENT ON OPERATOR CLASS anyName USING name IS commentText + | COMMENT ON OPERATOR FAMILY anyName USING name IS commentText + | COMMENT ON LARGE_P OBJECT_P numericOnly IS commentText + | COMMENT ON CAST OPEN_PAREN typeName AS typeName CLOSE_PAREN IS commentText + ; + +commentText : sconst | NULL_P ; -seclabelstmt - : SECURITY LABEL opt_provider ON object_type_any_name any_name IS security_label - | SECURITY LABEL opt_provider ON COLUMN any_name IS security_label - | SECURITY LABEL opt_provider ON object_type_name name IS security_label - | SECURITY LABEL opt_provider ON TYPE_P typename IS security_label - | SECURITY LABEL opt_provider ON DOMAIN_P typename IS security_label - | SECURITY LABEL opt_provider ON AGGREGATE aggregate_with_argtypes IS security_label - | SECURITY LABEL opt_provider ON FUNCTION function_with_argtypes IS security_label - | SECURITY LABEL opt_provider ON LARGE_P OBJECT_P numericonly IS security_label - | SECURITY LABEL opt_provider ON PROCEDURE function_with_argtypes IS security_label - | SECURITY LABEL opt_provider ON ROUTINE function_with_argtypes IS security_label +securityLabelStatement + : SECURITY LABEL optionalProvider ON objectTypeAnyName anyName IS securityLabel + | SECURITY LABEL optionalProvider ON COLUMN anyName IS securityLabel + | SECURITY LABEL optionalProvider ON objectTypeName name IS securityLabel + | SECURITY LABEL optionalProvider ON TYPE_P typeName IS securityLabel + | SECURITY LABEL optionalProvider ON DOMAIN_P typeName IS securityLabel + | SECURITY LABEL optionalProvider ON AGGREGATE aggregateWithArgumentTypes IS securityLabel + | SECURITY LABEL optionalProvider ON FUNCTION functionWithArgumentTypes IS securityLabel + | SECURITY LABEL optionalProvider ON LARGE_P OBJECT_P numericOnly IS securityLabel + | SECURITY LABEL optionalProvider ON PROCEDURE functionWithArgumentTypes IS securityLabel + | SECURITY LABEL optionalProvider ON ROUTINE functionWithArgumentTypes IS securityLabel ; -opt_provider - : FOR nonreservedword_or_sconst +optionalProvider + : FOR nonReservedWordOrSconst | ; -security_label +securityLabel : sconst | NULL_P ; -fetchstmt - : FETCH fetch_args - | MOVE fetch_args +fetchStatement + : FETCH fetchArguments + | MOVE fetchArguments ; -fetch_args - : cursor_name - | from_in cursor_name - | NEXT opt_from_in cursor_name - | PRIOR opt_from_in cursor_name - | FIRST_P opt_from_in cursor_name - | LAST_P opt_from_in cursor_name - | ABSOLUTE_P signediconst opt_from_in cursor_name - | RELATIVE_P signediconst opt_from_in cursor_name - | signediconst opt_from_in cursor_name - | ALL opt_from_in cursor_name - | FORWARD opt_from_in cursor_name - | FORWARD signediconst opt_from_in cursor_name - | FORWARD ALL opt_from_in cursor_name - | BACKWARD opt_from_in cursor_name - | BACKWARD signediconst opt_from_in cursor_name - | BACKWARD ALL opt_from_in cursor_name +fetchArguments + : cursorName + | fromOrIn cursorName + | NEXT optionalFromOrIn cursorName + | PRIOR optionalFromOrIn cursorName + | FIRST_P optionalFromOrIn cursorName + | LAST_P optionalFromOrIn cursorName + | ABSOLUTE_P signedIconst optionalFromOrIn cursorName + | RELATIVE_P signedIconst optionalFromOrIn cursorName + | signedIconst optionalFromOrIn cursorName + | ALL optionalFromOrIn cursorName + | FORWARD optionalFromOrIn cursorName + | FORWARD signedIconst optionalFromOrIn cursorName + | FORWARD ALL optionalFromOrIn cursorName + | BACKWARD optionalFromOrIn cursorName + | BACKWARD signedIconst optionalFromOrIn cursorName + | BACKWARD ALL optionalFromOrIn cursorName ; -from_in +fromOrIn : FROM | IN_P ; -opt_from_in - : from_in +optionalFromOrIn + : fromOrIn | ; -grantstmt - : GRANT privileges ON privilege_target TO grantee_list opt_grant_grant_option +grantStatement + : GRANT privileges ON privilegeTarget TO granteeList optionalWithGrantOption ; -revokestmt - : REVOKE privileges ON privilege_target FROM grantee_list opt_drop_behavior - | REVOKE GRANT OPTION FOR privileges ON privilege_target FROM grantee_list opt_drop_behavior +revokeStatement + : REVOKE privileges ON privilegeTarget FROM granteeList optionalDropBehavior + | REVOKE GRANT OPTION FOR privileges ON privilegeTarget FROM granteeList optionalDropBehavior ; privileges - : privilege_list + : privilegeList | ALL | ALL PRIVILEGES - | ALL OPEN_PAREN columnlist CLOSE_PAREN - | ALL PRIVILEGES OPEN_PAREN columnlist CLOSE_PAREN + | ALL OPEN_PAREN columnList CLOSE_PAREN + | ALL PRIVILEGES OPEN_PAREN columnList CLOSE_PAREN ; -privilege_list +privilegeList : privilege (COMMA privilege)* ; privilege - : SELECT opt_column_list - | REFERENCES opt_column_list - | CREATE opt_column_list - | colid opt_column_list - ; - -privilege_target - : qualified_name_list - | TABLE qualified_name_list - | SEQUENCE qualified_name_list - | FOREIGN DATA_P WRAPPER name_list - | FOREIGN SERVER name_list - | FUNCTION function_with_argtypes_list - | PROCEDURE function_with_argtypes_list - | ROUTINE function_with_argtypes_list - | DATABASE name_list - | DOMAIN_P any_name_list - | LANGUAGE name_list - | LARGE_P OBJECT_P numericonly_list - | SCHEMA name_list - | TABLESPACE name_list - | TYPE_P any_name_list - | ALL TABLES IN_P SCHEMA name_list - | ALL SEQUENCES IN_P SCHEMA name_list - | ALL FUNCTIONS IN_P SCHEMA name_list - | ALL PROCEDURES IN_P SCHEMA name_list - | ALL ROUTINES IN_P SCHEMA name_list - ; - -grantee_list + : SELECT columnListWithParentheses + | REFERENCES columnListWithParentheses + | CREATE columnListWithParentheses + | columnId columnListWithParentheses + ; + +privilegeTarget + : qualifiedNameList + | TABLE qualifiedNameList + | SEQUENCE qualifiedNameList + | FOREIGN DATA_P WRAPPER nameList + | FOREIGN SERVER nameList + | FUNCTION functionWithArgumentTypesList + | PROCEDURE functionWithArgumentTypesList + | ROUTINE functionWithArgumentTypesList + | DATABASE nameList + | DOMAIN_P anyNameList + | LANGUAGE nameList + | LARGE_P OBJECT_P numericOnlyList + | SCHEMA nameList + | TABLESPACE nameList + | TYPE_P anyNameList + | ALL TABLES IN_P SCHEMA nameList + | ALL SEQUENCES IN_P SCHEMA nameList + | ALL FUNCTIONS IN_P SCHEMA nameList + | ALL PROCEDURES IN_P SCHEMA nameList + | ALL ROUTINES IN_P SCHEMA nameList + ; + +granteeList : grantee (COMMA grantee)* ; grantee - : rolespec - | GROUP_P rolespec + : roleSpecification + | GROUP_P roleSpecification ; -opt_grant_grant_option +optionalWithGrantOption : WITH GRANT OPTION | ; -grantrolestmt - : GRANT privilege_list TO role_list opt_grant_admin_option opt_granted_by +grantRoleStatement + : GRANT privilegeList TO roleList optionalGrantAdminOption optionalGrantedBy ; -revokerolestmt - : REVOKE privilege_list FROM role_list opt_granted_by opt_drop_behavior - | REVOKE ADMIN OPTION FOR privilege_list FROM role_list opt_granted_by opt_drop_behavior +revokeRoleStatement + : REVOKE privilegeList FROM roleList optionalGrantedBy optionalDropBehavior + | REVOKE ADMIN OPTION FOR privilegeList FROM roleList optionalGrantedBy optionalDropBehavior ; -opt_grant_admin_option +optionalGrantAdminOption : WITH ADMIN OPTION | ; -opt_granted_by - : GRANTED BY rolespec +optionalGrantedBy + : GRANTED BY roleSpecification | ; -alterdefaultprivilegesstmt - : ALTER DEFAULT PRIVILEGES defacloptionlist defaclaction - ; - -defacloptionlist - : defacloption* +alterDefaultPrivilegesStatement + : ALTER DEFAULT PRIVILEGES defultPrivilegeOption* defaultPrivelegeAction ; -defacloption - : IN_P SCHEMA name_list - | FOR ROLE role_list - | FOR USER role_list +defultPrivilegeOption + : IN_P SCHEMA nameList + | FOR ROLE roleList + | FOR USER roleList ; -defaclaction - : GRANT privileges ON defacl_privilege_target TO grantee_list opt_grant_grant_option - | REVOKE privileges ON defacl_privilege_target FROM grantee_list opt_drop_behavior - | REVOKE GRANT OPTION FOR privileges ON defacl_privilege_target FROM grantee_list opt_drop_behavior +defaultPrivelegeAction + : GRANT privileges ON defultPrivilegeTarget TO granteeList optionalWithGrantOption + | REVOKE privileges ON defultPrivilegeTarget FROM granteeList optionalDropBehavior + | REVOKE GRANT OPTION FOR privileges ON defultPrivilegeTarget FROM granteeList optionalDropBehavior ; -defacl_privilege_target +defultPrivilegeTarget : TABLES | FUNCTIONS | ROUTINES @@ -1813,66 +1706,52 @@ defacl_privilege_target //create index -indexstmt - : CREATE opt_unique INDEX opt_concurrently opt_index_name ON relation_expr access_method_clause OPEN_PAREN index_params CLOSE_PAREN opt_include opt_reloptions opttablespace where_clause - | CREATE opt_unique INDEX opt_concurrently IF_P NOT EXISTS name ON relation_expr access_method_clause OPEN_PAREN index_params CLOSE_PAREN opt_include opt_reloptions opttablespace where_clause +indexStatement + : CREATE UNIQUE? INDEX optionalConcurrently name? ON relationExpression optionalAccessMethodClause OPEN_PAREN indexParameters CLOSE_PAREN optionalInclude optionalRelOptions optionalTablespace whereClause + | CREATE UNIQUE? INDEX optionalConcurrently IF_P NOT EXISTS name ON relationExpression optionalAccessMethodClause OPEN_PAREN indexParameters CLOSE_PAREN optionalInclude optionalRelOptions optionalTablespace whereClause ; -opt_unique - : UNIQUE - | - ; - -opt_concurrently +optionalConcurrently : CONCURRENTLY | ; -opt_index_name - : name - | - ; - -access_method_clause +optionalAccessMethodClause : USING name | ; -index_params - : index_elem (COMMA index_elem)* +indexParameters + : indexElement (COMMA indexElement)* ; -index_elem_options - : opt_collate opt_class opt_asc_desc opt_nulls_order - | opt_collate any_name reloptions opt_asc_desc opt_nulls_order +indexElemOptions + : optionalCollate optionalClass optionalAscOrDesc optionalNullsOrder + | optionalCollate anyName relOptions optionalAscOrDesc optionalNullsOrder ; -index_elem - : colid index_elem_options - | func_expr_windowless index_elem_options - | OPEN_PAREN a_expr CLOSE_PAREN index_elem_options +indexElement + : columnId indexElemOptions + | functionExpressionWindowless indexElemOptions + | OPEN_PAREN expression1 CLOSE_PAREN indexElemOptions ; -opt_include - : INCLUDE OPEN_PAREN index_including_params CLOSE_PAREN +optionalInclude + : INCLUDE OPEN_PAREN indexElement (COMMA indexElement)* CLOSE_PAREN | ; -index_including_params - : index_elem (COMMA index_elem)* - ; - -opt_collate - : COLLATE any_name +optionalCollate + : COLLATE anyName | ; -opt_class - : any_name +optionalClass + : anyName | ; -opt_asc_desc +optionalAscOrDesc : ASC | DESC | @@ -1880,108 +1759,96 @@ opt_asc_desc //TOD NULLS_LA was used -opt_nulls_order +optionalNullsOrder : NULLS_P FIRST_P | NULLS_P LAST_P | ; -createfunctionstmt - : CREATE opt_or_replace (FUNCTION | PROCEDURE) func_name func_args_with_defaults (RETURNS (func_return | TABLE OPEN_PAREN table_func_column_list CLOSE_PAREN))? createfunc_opt_list +createFunctionStatement + : CREATE optionalOrReplace (FUNCTION | PROCEDURE) functionName OPEN_PAREN functionArgumentsWithDefaultsList? CLOSE_PAREN (RETURNS (functionReturn | TABLE OPEN_PAREN tableFunctionColumnList CLOSE_PAREN))? createFunctionOptionList ; -opt_or_replace +optionalOrReplace : OR REPLACE | ; -func_args - : OPEN_PAREN func_args_list? CLOSE_PAREN - ; - -func_args_list - : func_arg (COMMA func_arg)* +functionArgumentsList + : functionArgument (COMMA functionArgument)* ; -function_with_argtypes_list - : function_with_argtypes (COMMA function_with_argtypes)* +functionWithArgumentTypesList + : functionWithArgumentTypes (COMMA functionWithArgumentTypes)* ; -function_with_argtypes - : func_name func_args - | type_func_name_keyword - | colid indirection? +functionWithArgumentTypes + : functionName OPEN_PAREN functionArgumentsList? CLOSE_PAREN + | typeFunctionNameKeyword + | columnId indirection? ; -func_args_with_defaults - : OPEN_PAREN func_args_with_defaults_list? CLOSE_PAREN +functionArgumentsWithDefaultsList + : functionArgumentWithDefault (COMMA functionArgumentWithDefault)* ; -func_args_with_defaults_list - : func_arg_with_default (COMMA func_arg_with_default)* +functionArgumentWithDefault + : functionArgument ((DEFAULT | EQUAL) expression1)? ; -func_arg - : arg_class param_name? func_type - | param_name arg_class? func_type - | func_type +functionArgument + : argumentClass parameterName? functionType + | parameterName argumentClass? functionType + | functionType ; -arg_class +argumentClass : IN_P OUT_P? | OUT_P | INOUT | VARIADIC ; -param_name - : type_function_name - | builtin_function_name +parameterName + : typeFunctionName + | builtinFunctionName | LEFT | RIGHT ; -func_return - : func_type - ; - -func_type - : typename - | SETOF? (builtin_function_name | type_function_name | LEFT | RIGHT) attrs PERCENT TYPE_P - ; - -func_arg_with_default - : func_arg ((DEFAULT | EQUAL) a_expr)? +functionReturn + : functionType ; -aggr_arg - : func_arg +functionType + : typeName + | SETOF? (builtinFunctionName | typeFunctionName | LEFT | RIGHT) attributes PERCENT TYPE_P ; -aggr_args - : OPEN_PAREN (STAR | aggr_args_list | ORDER BY aggr_args_list | aggr_args_list ORDER BY aggr_args_list) CLOSE_PAREN +aggregateArguments + : OPEN_PAREN (STAR | aggregateArgumentsList | ORDER BY aggregateArgumentsList | aggregateArgumentsList ORDER BY aggregateArgumentsList) CLOSE_PAREN ; -aggr_args_list - : aggr_arg (COMMA aggr_arg)* +aggregateArgumentsList + : functionArgument (COMMA functionArgument)* ; -aggregate_with_argtypes - : func_name aggr_args +aggregateWithArgumentTypes + : functionName aggregateArguments ; -aggregate_with_argtypes_list - : aggregate_with_argtypes (COMMA aggregate_with_argtypes)* +aggregateWithArgumentTypesList + : aggregateWithArgumentTypes (COMMA aggregateWithArgumentTypes)* ; -createfunc_opt_list - : createfunc_opt_item+ { +createFunctionOptionList + : createFunctionOptionItem+ { this.ParseRoutineBody(_localctx); } // | createfunc_opt_list createfunc_opt_item ; -common_func_opt_item +commonFunctionOptionItem : CALLED ON NULL_P INPUT_P | RETURNS NULL_P ON NULL_P INPUT_P | STRICT_P @@ -1994,19 +1861,19 @@ common_func_opt_item | SECURITY INVOKER | LEAKPROOF | NOT LEAKPROOF - | COST numericonly - | ROWS numericonly - | SUPPORT any_name - | functionsetresetclause - | PARALLEL colid + | COST numericOnly + | ROWS numericOnly + | SUPPORT anyName + | functionSetResetClause + | PARALLEL columnId ; -createfunc_opt_item - : AS func_as - | LANGUAGE nonreservedword_or_sconst - | TRANSFORM transform_type_list +createFunctionOptionItem + : AS functionAs + | LANGUAGE nonReservedWordOrSconst + | TRANSFORM transformTypeList | WINDOW - | common_func_opt_item + | commonFunctionOptionItem ; //https://www.postgresql.org/docs/9.1/sql-createfunction.html @@ -2015,7 +1882,7 @@ createfunc_opt_item // | AS 'obj_file', 'link_symbol' -func_as +functionAs locals[ParserRuleContext Definition] : /* |AS 'definition'*/ def = sconst @@ -2023,131 +1890,122 @@ func_as | sconst COMMA sconst ; -transform_type_list - : FOR TYPE_P typename (COMMA FOR TYPE_P typename)* +transformTypeList + : FOR TYPE_P typeName (COMMA FOR TYPE_P typeName)* ; -opt_definition +optionalDefinition : WITH definition | ; -table_func_column - : param_name func_type +tableFunctionColumn + : parameterName functionType ; -table_func_column_list - : table_func_column (COMMA table_func_column)* +tableFunctionColumnList + : tableFunctionColumn (COMMA tableFunctionColumn)* ; -alterfunctionstmt - : ALTER (FUNCTION | PROCEDURE | ROUTINE) function_with_argtypes alterfunc_opt_list opt_restrict - ; - -alterfunc_opt_list - : common_func_opt_item+ - ; - -opt_restrict - : RESTRICT - | +alterFunctionStatement + : ALTER (FUNCTION | PROCEDURE | ROUTINE) functionWithArgumentTypes commonFunctionOptionItem+ RESTRICT? ; -removefuncstmt - : DROP FUNCTION function_with_argtypes_list opt_drop_behavior - | DROP FUNCTION IF_P EXISTS function_with_argtypes_list opt_drop_behavior - | DROP PROCEDURE function_with_argtypes_list opt_drop_behavior - | DROP PROCEDURE IF_P EXISTS function_with_argtypes_list opt_drop_behavior - | DROP ROUTINE function_with_argtypes_list opt_drop_behavior - | DROP ROUTINE IF_P EXISTS function_with_argtypes_list opt_drop_behavior +removeFunctionStatement + : DROP FUNCTION functionWithArgumentTypesList optionalDropBehavior + | DROP FUNCTION IF_P EXISTS functionWithArgumentTypesList optionalDropBehavior + | DROP PROCEDURE functionWithArgumentTypesList optionalDropBehavior + | DROP PROCEDURE IF_P EXISTS functionWithArgumentTypesList optionalDropBehavior + | DROP ROUTINE functionWithArgumentTypesList optionalDropBehavior + | DROP ROUTINE IF_P EXISTS functionWithArgumentTypesList optionalDropBehavior ; -removeaggrstmt - : DROP AGGREGATE aggregate_with_argtypes_list opt_drop_behavior - | DROP AGGREGATE IF_P EXISTS aggregate_with_argtypes_list opt_drop_behavior +removeAggregateStatement + : DROP AGGREGATE aggregateWithArgumentTypesList optionalDropBehavior + | DROP AGGREGATE IF_P EXISTS aggregateWithArgumentTypesList optionalDropBehavior ; -removeoperstmt - : DROP OPERATOR operator_with_argtypes_list opt_drop_behavior - | DROP OPERATOR IF_P EXISTS operator_with_argtypes_list opt_drop_behavior +removeOperatorStatement + : DROP OPERATOR operatorWithArgumentTypesList optionalDropBehavior + | DROP OPERATOR IF_P EXISTS operatorWithArgumentTypesList optionalDropBehavior ; -oper_argtypes - : OPEN_PAREN typename CLOSE_PAREN - | OPEN_PAREN typename COMMA typename CLOSE_PAREN - | OPEN_PAREN NONE COMMA typename CLOSE_PAREN - | OPEN_PAREN typename COMMA NONE CLOSE_PAREN +operatorArgumentTypes + : OPEN_PAREN typeName CLOSE_PAREN + | OPEN_PAREN typeName COMMA typeName CLOSE_PAREN + | OPEN_PAREN NONE COMMA typeName CLOSE_PAREN + | OPEN_PAREN typeName COMMA NONE CLOSE_PAREN ; -any_operator - : (colid DOT)* all_op +anyOperator + : (columnId DOT)* allOperator ; -operator_with_argtypes_list - : operator_with_argtypes (COMMA operator_with_argtypes)* +operatorWithArgumentTypesList + : operatorWithArgumentTypes (COMMA operatorWithArgumentTypes)* ; -operator_with_argtypes - : any_operator oper_argtypes +operatorWithArgumentTypes + : anyOperator operatorArgumentTypes ; -dostmt - : DO dostmt_opt_list +doStatement + : DO doStatementOptionsList ; -dostmt_opt_list - : dostmt_opt_item+ +doStatementOptionsList + : doStatementOptionItem+ ; -dostmt_opt_item +doStatementOptionItem : sconst - | LANGUAGE nonreservedword_or_sconst + | LANGUAGE nonReservedWordOrSconst ; -createcaststmt - : CREATE CAST OPEN_PAREN typename AS typename CLOSE_PAREN WITH FUNCTION function_with_argtypes cast_context - | CREATE CAST OPEN_PAREN typename AS typename CLOSE_PAREN WITHOUT FUNCTION cast_context - | CREATE CAST OPEN_PAREN typename AS typename CLOSE_PAREN WITH INOUT cast_context +createCastStatement + : CREATE CAST OPEN_PAREN typeName AS typeName CLOSE_PAREN WITH FUNCTION functionWithArgumentTypes castContext + | CREATE CAST OPEN_PAREN typeName AS typeName CLOSE_PAREN WITHOUT FUNCTION castContext + | CREATE CAST OPEN_PAREN typeName AS typeName CLOSE_PAREN WITH INOUT castContext ; -cast_context +castContext : AS IMPLICIT_P | AS ASSIGNMENT | ; -dropcaststmt - : DROP CAST opt_if_exists OPEN_PAREN typename AS typename CLOSE_PAREN opt_drop_behavior +dropCastStatement + : DROP CAST optionalIfExists OPEN_PAREN typeName AS typeName CLOSE_PAREN optionalDropBehavior ; -opt_if_exists +optionalIfExists : IF_P EXISTS | ; -createtransformstmt - : CREATE opt_or_replace TRANSFORM FOR typename LANGUAGE name OPEN_PAREN transform_element_list CLOSE_PAREN +createTransformStatement + : CREATE optionalOrReplace TRANSFORM FOR typeName LANGUAGE name OPEN_PAREN transformElementList CLOSE_PAREN ; -transform_element_list - : FROM SQL_P WITH FUNCTION function_with_argtypes COMMA TO SQL_P WITH FUNCTION function_with_argtypes - | TO SQL_P WITH FUNCTION function_with_argtypes COMMA FROM SQL_P WITH FUNCTION function_with_argtypes - | FROM SQL_P WITH FUNCTION function_with_argtypes - | TO SQL_P WITH FUNCTION function_with_argtypes +transformElementList + : FROM SQL_P WITH FUNCTION functionWithArgumentTypes COMMA TO SQL_P WITH FUNCTION functionWithArgumentTypes + | TO SQL_P WITH FUNCTION functionWithArgumentTypes COMMA FROM SQL_P WITH FUNCTION functionWithArgumentTypes + | FROM SQL_P WITH FUNCTION functionWithArgumentTypes + | TO SQL_P WITH FUNCTION functionWithArgumentTypes ; -droptransformstmt - : DROP TRANSFORM opt_if_exists FOR typename LANGUAGE name opt_drop_behavior +dropTransformStatement + : DROP TRANSFORM optionalIfExists FOR typeName LANGUAGE name optionalDropBehavior ; -reindexstmt - : REINDEX reindex_target_type opt_concurrently qualified_name - | REINDEX reindex_target_multitable opt_concurrently name - | REINDEX OPEN_PAREN reindex_option_list CLOSE_PAREN reindex_target_type opt_concurrently qualified_name - | REINDEX OPEN_PAREN reindex_option_list CLOSE_PAREN reindex_target_multitable opt_concurrently name +reindexStatement + : REINDEX reindexTargetType optionalConcurrently qualifiedName + | REINDEX reindexTargetMultiTable optionalConcurrently name + | REINDEX OPEN_PAREN reindexOptionList CLOSE_PAREN reindexTargetType optionalConcurrently qualifiedName + | REINDEX OPEN_PAREN reindexOptionList CLOSE_PAREN reindexTargetMultiTable optionalConcurrently name ; -reindex_target_type +reindexTargetType : INDEX | TABLE | SCHEMA @@ -2155,262 +2013,257 @@ reindex_target_type | SYSTEM_P ; -reindex_target_multitable +reindexTargetMultiTable : SCHEMA | SYSTEM_P | DATABASE ; -reindex_option_list - : reindex_option_elem (COMMA reindex_option_elem)* +reindexOptionList + : reindexOptionElement (COMMA reindexOptionElement)* ; -reindex_option_elem +reindexOptionElement : VERBOSE | TABLESPACE | CONCURRENTLY ; -altertblspcstmt - : ALTER TABLESPACE name SET reloptions - | ALTER TABLESPACE name RESET reloptions +alterTablespaceStatement + : ALTER TABLESPACE name SET relOptions + | ALTER TABLESPACE name RESET relOptions ; -renamestmt - : ALTER AGGREGATE aggregate_with_argtypes RENAME TO name - | ALTER COLLATION any_name RENAME TO name - | ALTER CONVERSION_P any_name RENAME TO name +renameStatement + : ALTER AGGREGATE aggregateWithArgumentTypes RENAME TO name + | ALTER COLLATION anyName RENAME TO name + | ALTER CONVERSION_P anyName RENAME TO name | ALTER DATABASE name RENAME TO name - | ALTER DOMAIN_P any_name RENAME TO name - | ALTER DOMAIN_P any_name RENAME CONSTRAINT name TO name + | ALTER DOMAIN_P anyName RENAME TO name + | ALTER DOMAIN_P anyName RENAME CONSTRAINT name TO name | ALTER FOREIGN DATA_P WRAPPER name RENAME TO name - | ALTER FUNCTION function_with_argtypes RENAME TO name - | ALTER GROUP_P roleid RENAME TO roleid - | ALTER opt_procedural LANGUAGE name RENAME TO name - | ALTER OPERATOR CLASS any_name USING name RENAME TO name - | ALTER OPERATOR FAMILY any_name USING name RENAME TO name - | ALTER POLICY name ON qualified_name RENAME TO name - | ALTER POLICY IF_P EXISTS name ON qualified_name RENAME TO name - | ALTER PROCEDURE function_with_argtypes RENAME TO name + | ALTER FUNCTION functionWithArgumentTypes RENAME TO name + | ALTER GROUP_P roleId RENAME TO roleId + | ALTER optionalProcedural LANGUAGE name RENAME TO name + | ALTER OPERATOR CLASS anyName USING name RENAME TO name + | ALTER OPERATOR FAMILY anyName USING name RENAME TO name + | ALTER POLICY name ON qualifiedName RENAME TO name + | ALTER POLICY IF_P EXISTS name ON qualifiedName RENAME TO name + | ALTER PROCEDURE functionWithArgumentTypes RENAME TO name | ALTER PUBLICATION name RENAME TO name - | ALTER ROUTINE function_with_argtypes RENAME TO name + | ALTER ROUTINE functionWithArgumentTypes RENAME TO name | ALTER SCHEMA name RENAME TO name | ALTER SERVER name RENAME TO name | ALTER SUBSCRIPTION name RENAME TO name - | ALTER TABLE relation_expr RENAME TO name - | ALTER TABLE IF_P EXISTS relation_expr RENAME TO name - | ALTER SEQUENCE qualified_name RENAME TO name - | ALTER SEQUENCE IF_P EXISTS qualified_name RENAME TO name - | ALTER VIEW qualified_name RENAME TO name - | ALTER VIEW IF_P EXISTS qualified_name RENAME TO name - | ALTER MATERIALIZED VIEW qualified_name RENAME TO name - | ALTER MATERIALIZED VIEW IF_P EXISTS qualified_name RENAME TO name - | ALTER INDEX qualified_name RENAME TO name - | ALTER INDEX IF_P EXISTS qualified_name RENAME TO name - | ALTER FOREIGN TABLE relation_expr RENAME TO name - | ALTER FOREIGN TABLE IF_P EXISTS relation_expr RENAME TO name - | ALTER TABLE relation_expr RENAME opt_column name TO name - | ALTER TABLE IF_P EXISTS relation_expr RENAME opt_column name TO name - | ALTER VIEW qualified_name RENAME opt_column name TO name - | ALTER VIEW IF_P EXISTS qualified_name RENAME opt_column name TO name - | ALTER MATERIALIZED VIEW qualified_name RENAME opt_column name TO name - | ALTER MATERIALIZED VIEW IF_P EXISTS qualified_name RENAME opt_column name TO name - | ALTER TABLE relation_expr RENAME CONSTRAINT name TO name - | ALTER TABLE IF_P EXISTS relation_expr RENAME CONSTRAINT name TO name - | ALTER FOREIGN TABLE relation_expr RENAME opt_column name TO name - | ALTER FOREIGN TABLE IF_P EXISTS relation_expr RENAME opt_column name TO name - | ALTER RULE name ON qualified_name RENAME TO name - | ALTER TRIGGER name ON qualified_name RENAME TO name + | ALTER TABLE relationExpression RENAME TO name + | ALTER TABLE IF_P EXISTS relationExpression RENAME TO name + | ALTER SEQUENCE qualifiedName RENAME TO name + | ALTER SEQUENCE IF_P EXISTS qualifiedName RENAME TO name + | ALTER VIEW qualifiedName RENAME TO name + | ALTER VIEW IF_P EXISTS qualifiedName RENAME TO name + | ALTER MATERIALIZED VIEW qualifiedName RENAME TO name + | ALTER MATERIALIZED VIEW IF_P EXISTS qualifiedName RENAME TO name + | ALTER INDEX qualifiedName RENAME TO name + | ALTER INDEX IF_P EXISTS qualifiedName RENAME TO name + | ALTER FOREIGN TABLE relationExpression RENAME TO name + | ALTER FOREIGN TABLE IF_P EXISTS relationExpression RENAME TO name + | ALTER TABLE relationExpression RENAME optionalColumn name TO name + | ALTER TABLE IF_P EXISTS relationExpression RENAME optionalColumn name TO name + | ALTER VIEW qualifiedName RENAME optionalColumn name TO name + | ALTER VIEW IF_P EXISTS qualifiedName RENAME optionalColumn name TO name + | ALTER MATERIALIZED VIEW qualifiedName RENAME optionalColumn name TO name + | ALTER MATERIALIZED VIEW IF_P EXISTS qualifiedName RENAME optionalColumn name TO name + | ALTER TABLE relationExpression RENAME CONSTRAINT name TO name + | ALTER TABLE IF_P EXISTS relationExpression RENAME CONSTRAINT name TO name + | ALTER FOREIGN TABLE relationExpression RENAME optionalColumn name TO name + | ALTER FOREIGN TABLE IF_P EXISTS relationExpression RENAME optionalColumn name TO name + | ALTER RULE name ON qualifiedName RENAME TO name + | ALTER TRIGGER name ON qualifiedName RENAME TO name | ALTER EVENT TRIGGER name RENAME TO name - | ALTER ROLE roleid RENAME TO roleid - | ALTER USER roleid RENAME TO roleid + | ALTER ROLE roleId RENAME TO roleId + | ALTER USER roleId RENAME TO roleId | ALTER TABLESPACE name RENAME TO name - | ALTER STATISTICS any_name RENAME TO name - | ALTER TEXT_P SEARCH PARSER any_name RENAME TO name - | ALTER TEXT_P SEARCH DICTIONARY any_name RENAME TO name - | ALTER TEXT_P SEARCH TEMPLATE any_name RENAME TO name - | ALTER TEXT_P SEARCH CONFIGURATION any_name RENAME TO name - | ALTER TYPE_P any_name RENAME TO name - | ALTER TYPE_P any_name RENAME ATTRIBUTE name TO name opt_drop_behavior + | ALTER STATISTICS anyName RENAME TO name + | ALTER TEXT_P SEARCH PARSER anyName RENAME TO name + | ALTER TEXT_P SEARCH DICTIONARY anyName RENAME TO name + | ALTER TEXT_P SEARCH TEMPLATE anyName RENAME TO name + | ALTER TEXT_P SEARCH CONFIGURATION anyName RENAME TO name + | ALTER TYPE_P anyName RENAME TO name + | ALTER TYPE_P anyName RENAME ATTRIBUTE name TO name optionalDropBehavior ; -opt_column +optionalColumn : COLUMN | ; -opt_set_data +optionalSetData : SET DATA_P | ; -alterobjectdependsstmt - : ALTER FUNCTION function_with_argtypes opt_no DEPENDS ON EXTENSION name - | ALTER PROCEDURE function_with_argtypes opt_no DEPENDS ON EXTENSION name - | ALTER ROUTINE function_with_argtypes opt_no DEPENDS ON EXTENSION name - | ALTER TRIGGER name ON qualified_name opt_no DEPENDS ON EXTENSION name - | ALTER MATERIALIZED VIEW qualified_name opt_no DEPENDS ON EXTENSION name - | ALTER INDEX qualified_name opt_no DEPENDS ON EXTENSION name +alterObjectDependsStatement + : ALTER FUNCTION functionWithArgumentTypes NO? DEPENDS ON EXTENSION name + | ALTER PROCEDURE functionWithArgumentTypes NO? DEPENDS ON EXTENSION name + | ALTER ROUTINE functionWithArgumentTypes NO? DEPENDS ON EXTENSION name + | ALTER TRIGGER name ON qualifiedName NO? DEPENDS ON EXTENSION name + | ALTER MATERIALIZED VIEW qualifiedName NO? DEPENDS ON EXTENSION name + | ALTER INDEX qualifiedName NO? DEPENDS ON EXTENSION name ; -opt_no - : NO - | - ; - -alterobjectschemastmt - : ALTER AGGREGATE aggregate_with_argtypes SET SCHEMA name - | ALTER COLLATION any_name SET SCHEMA name - | ALTER CONVERSION_P any_name SET SCHEMA name - | ALTER DOMAIN_P any_name SET SCHEMA name +alterObjectSchemaStatement + : ALTER AGGREGATE aggregateWithArgumentTypes SET SCHEMA name + | ALTER COLLATION anyName SET SCHEMA name + | ALTER CONVERSION_P anyName SET SCHEMA name + | ALTER DOMAIN_P anyName SET SCHEMA name | ALTER EXTENSION name SET SCHEMA name - | ALTER FUNCTION function_with_argtypes SET SCHEMA name - | ALTER OPERATOR operator_with_argtypes SET SCHEMA name - | ALTER OPERATOR CLASS any_name USING name SET SCHEMA name - | ALTER OPERATOR FAMILY any_name USING name SET SCHEMA name - | ALTER PROCEDURE function_with_argtypes SET SCHEMA name - | ALTER ROUTINE function_with_argtypes SET SCHEMA name - | ALTER TABLE relation_expr SET SCHEMA name - | ALTER TABLE IF_P EXISTS relation_expr SET SCHEMA name - | ALTER STATISTICS any_name SET SCHEMA name - | ALTER TEXT_P SEARCH PARSER any_name SET SCHEMA name - | ALTER TEXT_P SEARCH DICTIONARY any_name SET SCHEMA name - | ALTER TEXT_P SEARCH TEMPLATE any_name SET SCHEMA name - | ALTER TEXT_P SEARCH CONFIGURATION any_name SET SCHEMA name - | ALTER SEQUENCE qualified_name SET SCHEMA name - | ALTER SEQUENCE IF_P EXISTS qualified_name SET SCHEMA name - | ALTER VIEW qualified_name SET SCHEMA name - | ALTER VIEW IF_P EXISTS qualified_name SET SCHEMA name - | ALTER MATERIALIZED VIEW qualified_name SET SCHEMA name - | ALTER MATERIALIZED VIEW IF_P EXISTS qualified_name SET SCHEMA name - | ALTER FOREIGN TABLE relation_expr SET SCHEMA name - | ALTER FOREIGN TABLE IF_P EXISTS relation_expr SET SCHEMA name - | ALTER TYPE_P any_name SET SCHEMA name - ; - -alteroperatorstmt - : ALTER OPERATOR operator_with_argtypes SET OPEN_PAREN operator_def_list CLOSE_PAREN - ; - -operator_def_list - : operator_def_elem (COMMA operator_def_elem)* - ; - -operator_def_elem - : collabel EQUAL NONE - | collabel EQUAL operator_def_arg - ; - -operator_def_arg - : func_type - | reserved_keyword - | qual_all_op - | numericonly + | ALTER FUNCTION functionWithArgumentTypes SET SCHEMA name + | ALTER OPERATOR operatorWithArgumentTypes SET SCHEMA name + | ALTER OPERATOR CLASS anyName USING name SET SCHEMA name + | ALTER OPERATOR FAMILY anyName USING name SET SCHEMA name + | ALTER PROCEDURE functionWithArgumentTypes SET SCHEMA name + | ALTER ROUTINE functionWithArgumentTypes SET SCHEMA name + | ALTER TABLE relationExpression SET SCHEMA name + | ALTER TABLE IF_P EXISTS relationExpression SET SCHEMA name + | ALTER STATISTICS anyName SET SCHEMA name + | ALTER TEXT_P SEARCH PARSER anyName SET SCHEMA name + | ALTER TEXT_P SEARCH DICTIONARY anyName SET SCHEMA name + | ALTER TEXT_P SEARCH TEMPLATE anyName SET SCHEMA name + | ALTER TEXT_P SEARCH CONFIGURATION anyName SET SCHEMA name + | ALTER SEQUENCE qualifiedName SET SCHEMA name + | ALTER SEQUENCE IF_P EXISTS qualifiedName SET SCHEMA name + | ALTER VIEW qualifiedName SET SCHEMA name + | ALTER VIEW IF_P EXISTS qualifiedName SET SCHEMA name + | ALTER MATERIALIZED VIEW qualifiedName SET SCHEMA name + | ALTER MATERIALIZED VIEW IF_P EXISTS qualifiedName SET SCHEMA name + | ALTER FOREIGN TABLE relationExpression SET SCHEMA name + | ALTER FOREIGN TABLE IF_P EXISTS relationExpression SET SCHEMA name + | ALTER TYPE_P anyName SET SCHEMA name + ; + +alterOperatorStatement + : ALTER OPERATOR operatorWithArgumentTypes SET OPEN_PAREN operatorDefinitionList CLOSE_PAREN + ; + +operatorDefinitionList + : operatorDefinitionElement (COMMA operatorDefinitionElement)* + ; + +operatorDefinitionElement + : columnLabel EQUAL NONE + | columnLabel EQUAL operatorDefinitionArgument + ; + +operatorDefinitionArgument + : functionType + | reservedKeyword + | allOperatorQualifier + | numericOnly | sconst ; -altertypestmt - : ALTER TYPE_P any_name SET OPEN_PAREN operator_def_list CLOSE_PAREN +alterTypeStatement + : ALTER TYPE_P anyName SET OPEN_PAREN operatorDefinitionList CLOSE_PAREN ; -alterownerstmt - : ALTER AGGREGATE aggregate_with_argtypes OWNER TO rolespec - | ALTER COLLATION any_name OWNER TO rolespec - | ALTER CONVERSION_P any_name OWNER TO rolespec - | ALTER DATABASE name OWNER TO rolespec - | ALTER DOMAIN_P any_name OWNER TO rolespec - | ALTER FUNCTION function_with_argtypes OWNER TO rolespec - | ALTER opt_procedural LANGUAGE name OWNER TO rolespec - | ALTER LARGE_P OBJECT_P numericonly OWNER TO rolespec - | ALTER OPERATOR operator_with_argtypes OWNER TO rolespec - | ALTER OPERATOR CLASS any_name USING name OWNER TO rolespec - | ALTER OPERATOR FAMILY any_name USING name OWNER TO rolespec - | ALTER PROCEDURE function_with_argtypes OWNER TO rolespec - | ALTER ROUTINE function_with_argtypes OWNER TO rolespec - | ALTER SCHEMA name OWNER TO rolespec - | ALTER TYPE_P any_name OWNER TO rolespec - | ALTER TABLESPACE name OWNER TO rolespec - | ALTER STATISTICS any_name OWNER TO rolespec - | ALTER TEXT_P SEARCH DICTIONARY any_name OWNER TO rolespec - | ALTER TEXT_P SEARCH CONFIGURATION any_name OWNER TO rolespec - | ALTER FOREIGN DATA_P WRAPPER name OWNER TO rolespec - | ALTER SERVER name OWNER TO rolespec - | ALTER EVENT TRIGGER name OWNER TO rolespec - | ALTER PUBLICATION name OWNER TO rolespec - | ALTER SUBSCRIPTION name OWNER TO rolespec +alterOwnerStatement + : ALTER AGGREGATE aggregateWithArgumentTypes OWNER TO roleSpecification + | ALTER COLLATION anyName OWNER TO roleSpecification + | ALTER CONVERSION_P anyName OWNER TO roleSpecification + | ALTER DATABASE name OWNER TO roleSpecification + | ALTER DOMAIN_P anyName OWNER TO roleSpecification + | ALTER FUNCTION functionWithArgumentTypes OWNER TO roleSpecification + | ALTER optionalProcedural LANGUAGE name OWNER TO roleSpecification + | ALTER LARGE_P OBJECT_P numericOnly OWNER TO roleSpecification + | ALTER OPERATOR operatorWithArgumentTypes OWNER TO roleSpecification + | ALTER OPERATOR CLASS anyName USING name OWNER TO roleSpecification + | ALTER OPERATOR FAMILY anyName USING name OWNER TO roleSpecification + | ALTER PROCEDURE functionWithArgumentTypes OWNER TO roleSpecification + | ALTER ROUTINE functionWithArgumentTypes OWNER TO roleSpecification + | ALTER SCHEMA name OWNER TO roleSpecification + | ALTER TYPE_P anyName OWNER TO roleSpecification + | ALTER TABLESPACE name OWNER TO roleSpecification + | ALTER STATISTICS anyName OWNER TO roleSpecification + | ALTER TEXT_P SEARCH DICTIONARY anyName OWNER TO roleSpecification + | ALTER TEXT_P SEARCH CONFIGURATION anyName OWNER TO roleSpecification + | ALTER FOREIGN DATA_P WRAPPER name OWNER TO roleSpecification + | ALTER SERVER name OWNER TO roleSpecification + | ALTER EVENT TRIGGER name OWNER TO roleSpecification + | ALTER PUBLICATION name OWNER TO roleSpecification + | ALTER SUBSCRIPTION name OWNER TO roleSpecification ; -createpublicationstmt - : CREATE PUBLICATION name opt_publication_for_tables opt_definition +createPublicationStatement + : CREATE PUBLICATION name optionalPublicationForTables optionalDefinition ; -opt_publication_for_tables - : publication_for_tables +optionalPublicationForTables + : publicationForTables | ; -publication_for_tables - : FOR TABLE relation_expr_list +publicationForTables + : FOR TABLE relationExpressionList | FOR ALL TABLES ; -alterpublicationstmt +alterPublicationStatement : ALTER PUBLICATION name SET definition - | ALTER PUBLICATION name ADD_P TABLE relation_expr_list - | ALTER PUBLICATION name SET TABLE relation_expr_list - | ALTER PUBLICATION name DROP TABLE relation_expr_list + | ALTER PUBLICATION name ADD_P TABLE relationExpressionList + | ALTER PUBLICATION name SET TABLE relationExpressionList + | ALTER PUBLICATION name DROP TABLE relationExpressionList ; -createsubscriptionstmt - : CREATE SUBSCRIPTION name CONNECTION sconst PUBLICATION publication_name_list opt_definition +createSubscriptionStatement + : CREATE SUBSCRIPTION name CONNECTION sconst PUBLICATION publicationNameList optionalDefinition ; -publication_name_list - : publication_name_item (COMMA publication_name_item)* +publicationNameList + : publicationNameItem (COMMA publicationNameItem)* ; -publication_name_item - : collabel +publicationNameItem + : columnLabel ; -altersubscriptionstmt +alterSubscriptionStatement : ALTER SUBSCRIPTION name SET definition | ALTER SUBSCRIPTION name CONNECTION sconst - | ALTER SUBSCRIPTION name REFRESH PUBLICATION opt_definition - | ALTER SUBSCRIPTION name SET PUBLICATION publication_name_list opt_definition + | ALTER SUBSCRIPTION name REFRESH PUBLICATION optionalDefinition + | ALTER SUBSCRIPTION name SET PUBLICATION publicationNameList optionalDefinition | ALTER SUBSCRIPTION name ENABLE_P | ALTER SUBSCRIPTION name DISABLE_P ; -dropsubscriptionstmt - : DROP SUBSCRIPTION name opt_drop_behavior - | DROP SUBSCRIPTION IF_P EXISTS name opt_drop_behavior +dropSubscriptionStatement + : DROP SUBSCRIPTION name optionalDropBehavior + | DROP SUBSCRIPTION IF_P EXISTS name optionalDropBehavior ; -rulestmt - : CREATE opt_or_replace RULE name AS ON event TO qualified_name where_clause DO opt_instead ruleactionlist +ruleStatement + : CREATE optionalOrReplace RULE name AS ON event TO qualifiedName whereClause DO optionalInstead ruleActionList ; -ruleactionlist +ruleActionList : NOTHING - | ruleactionstmt - | OPEN_PAREN ruleactionmulti CLOSE_PAREN + | ruleActionStatement + | OPEN_PAREN ruleActionMulti CLOSE_PAREN ; -ruleactionmulti - : ruleactionstmtOrEmpty (SEMI ruleactionstmtOrEmpty)* +ruleActionMulti + : ruleActionStatementOrEmpty (SEMI ruleActionStatementOrEmpty)* ; -ruleactionstmt - : selectstmt - | insertstmt - | updatestmt - | deletestmt - | notifystmt +ruleActionStatement + : selectStatement + | insertStatement + | updateStatement + | deleteStatement + | notifyStatement ; -ruleactionstmtOrEmpty - : ruleactionstmt +ruleActionStatementOrEmpty + : ruleActionStatement | ; @@ -2421,106 +2274,97 @@ event | INSERT ; -opt_instead +optionalInstead : INSTEAD | ALSO | ; -notifystmt - : NOTIFY colid notify_payload +notifyStatement + : NOTIFY columnId notifyPayload ; -notify_payload +notifyPayload : COMMA sconst | ; -listenstmt - : LISTEN colid +listenStatement + : LISTEN columnId ; -unlistenstmt - : UNLISTEN colid +unlistenStatement + : UNLISTEN columnId | UNLISTEN STAR ; -transactionstmt - : ABORT_P opt_transaction opt_transaction_chain - | BEGIN_P opt_transaction transaction_mode_list_or_empty - | START TRANSACTION transaction_mode_list_or_empty - | COMMIT opt_transaction opt_transaction_chain - | END_P opt_transaction opt_transaction_chain - | ROLLBACK opt_transaction opt_transaction_chain - | SAVEPOINT colid - | RELEASE SAVEPOINT colid - | RELEASE colid - | ROLLBACK opt_transaction TO SAVEPOINT colid - | ROLLBACK opt_transaction TO colid +transactionStatement + : ABORT_P optionalTransaction optionalTransactionChain + | BEGIN_P optionalTransaction transactionModeList? + | START TRANSACTION transactionModeList? + | COMMIT optionalTransaction optionalTransactionChain + | END_P optionalTransaction optionalTransactionChain + | ROLLBACK optionalTransaction optionalTransactionChain + | SAVEPOINT columnId + | RELEASE SAVEPOINT columnId + | RELEASE columnId + | ROLLBACK optionalTransaction TO SAVEPOINT columnId + | ROLLBACK optionalTransaction TO columnId | PREPARE TRANSACTION sconst | COMMIT PREPARED sconst | ROLLBACK PREPARED sconst ; -opt_transaction +optionalTransaction : WORK | TRANSACTION | ; -transaction_mode_item - : ISOLATION LEVEL iso_level +transactionModeItem + : ISOLATION LEVEL isoLevel | READ ONLY | READ WRITE | DEFERRABLE | NOT DEFERRABLE ; -transaction_mode_list - : transaction_mode_item (COMMA? transaction_mode_item)* - ; - -transaction_mode_list_or_empty - : transaction_mode_list - | +transactionModeList + : transactionModeItem (COMMA? transactionModeItem)* ; -opt_transaction_chain +optionalTransactionChain : AND NO? CHAIN | ; -viewstmt - : CREATE (OR REPLACE)? opttemp (VIEW qualified_name opt_column_list opt_reloptions | RECURSIVE VIEW qualified_name OPEN_PAREN columnlist CLOSE_PAREN opt_reloptions) AS selectstmt opt_check_option +viewStatement + : CREATE (OR REPLACE)? temporaryOption (VIEW qualifiedName columnListWithParentheses optionalRelOptions | RECURSIVE VIEW qualifiedName OPEN_PAREN columnList CLOSE_PAREN optionalRelOptions) AS selectStatement optionalCheckOption ; -opt_check_option +optionalCheckOption : WITH (CASCADED | LOCAL)? CHECK OPTION | ; -loadstmt - : LOAD file_name +loadStatement + : LOAD fileName ; -createdbstmt - : CREATE DATABASE name opt_with createdb_opt_list +createDatabaseStatement + : CREATE DATABASE name optionalWith createDatabaseOptionList ; -createdb_opt_list - : createdb_opt_items +createDatabaseOptionList + : createDatabaseOptionItem+ | ; -createdb_opt_items - : createdb_opt_item+ +createDatabaseOptionItem + : createDatabaseOptionName EQUAL? (signedIconst | booleanOrString | DEFAULT) ; -createdb_opt_item - : createdb_opt_name opt_equal (signediconst | opt_boolean_or_string | DEFAULT) - ; - -createdb_opt_name +createDatabaseOptionName : identifier | CONNECTION LIMIT | ENCODING @@ -2530,362 +2374,311 @@ createdb_opt_name | TEMPLATE ; -opt_equal - : EQUAL - | +alterDatabaseStatement + : ALTER DATABASE name (WITH createDatabaseOptionList | createDatabaseOptionList | SET TABLESPACE name) ; -alterdatabasestmt - : ALTER DATABASE name (WITH createdb_opt_list | createdb_opt_list | SET TABLESPACE name) +alterDatabaseSetStatement + : ALTER DATABASE name setResetClause ; -alterdatabasesetstmt - : ALTER DATABASE name setresetclause +dropDatabaseStatement + : DROP DATABASE (IF_P EXISTS)? name (optionalWith OPEN_PAREN FORCE (COMMA FORCE)* CLOSE_PAREN)? ; -dropdbstmt - : DROP DATABASE (IF_P EXISTS)? name (opt_with OPEN_PAREN drop_option_list CLOSE_PAREN)? +alterCollationStatement + : ALTER COLLATION anyName REFRESH VERSION_P ; -drop_option_list - : drop_option (COMMA drop_option)* +alterSystemStatement + : ALTER SYSTEM_P (SET | RESET) genericSetClause ; -drop_option - : FORCE +createDomainStatement + : CREATE DOMAIN_P anyName optionalAs typeName columnQualifierList ; -altercollationstmt - : ALTER COLLATION any_name REFRESH VERSION_P +alterDomainStatement + : ALTER DOMAIN_P anyName (alterColumnDefault | DROP NOT NULL_P | SET NOT NULL_P | ADD_P tableConstraint | DROP CONSTRAINT (IF_P EXISTS)? name optionalDropBehavior | VALIDATE CONSTRAINT name) ; -altersystemstmt - : ALTER SYSTEM_P (SET | RESET) generic_set - ; - -createdomainstmt - : CREATE DOMAIN_P any_name opt_as typename colquallist - ; - -alterdomainstmt - : ALTER DOMAIN_P any_name (alter_column_default | DROP NOT NULL_P | SET NOT NULL_P | ADD_P tableconstraint | DROP CONSTRAINT (IF_P EXISTS)? name opt_drop_behavior | VALIDATE CONSTRAINT name) - ; - -opt_as +optionalAs : AS | ; -altertsdictionarystmt - : ALTER TEXT_P SEARCH DICTIONARY any_name definition +altertsDictionaryStatement + : ALTER TEXT_P SEARCH DICTIONARY anyName definition ; -altertsconfigurationstmt - : ALTER TEXT_P SEARCH CONFIGURATION any_name ADD_P MAPPING FOR name_list any_with any_name_list - | ALTER TEXT_P SEARCH CONFIGURATION any_name ALTER MAPPING FOR name_list any_with any_name_list - | ALTER TEXT_P SEARCH CONFIGURATION any_name ALTER MAPPING REPLACE any_name any_with any_name - | ALTER TEXT_P SEARCH CONFIGURATION any_name ALTER MAPPING FOR name_list REPLACE any_name any_with any_name - | ALTER TEXT_P SEARCH CONFIGURATION any_name DROP MAPPING FOR name_list - | ALTER TEXT_P SEARCH CONFIGURATION any_name DROP MAPPING IF_P EXISTS FOR name_list +altertsConfigurationStatement + : ALTER TEXT_P SEARCH CONFIGURATION anyName ADD_P MAPPING FOR nameList WITH anyNameList + | ALTER TEXT_P SEARCH CONFIGURATION anyName ALTER MAPPING FOR nameList WITH anyNameList + | ALTER TEXT_P SEARCH CONFIGURATION anyName ALTER MAPPING REPLACE anyName WITH anyName + | ALTER TEXT_P SEARCH CONFIGURATION anyName ALTER MAPPING FOR nameList REPLACE anyName WITH anyName + | ALTER TEXT_P SEARCH CONFIGURATION anyName DROP MAPPING FOR nameList + | ALTER TEXT_P SEARCH CONFIGURATION anyName DROP MAPPING IF_P EXISTS FOR nameList ; -any_with - : WITH - //TODO - - // | WITH_LA +createConversionStatement + : CREATE DEFAULT? CONVERSION_P anyName FOR sconst TO sconst FROM anyName ; -createconversionstmt - : CREATE opt_default CONVERSION_P any_name FOR sconst TO sconst FROM any_name +clusterStatement + : CLUSTER optionalVerbose qualifiedName clusterIndexSpecification + | CLUSTER optionalVerbose + | CLUSTER optionalVerbose name ON qualifiedName ; -clusterstmt - : CLUSTER opt_verbose qualified_name cluster_index_specification - | CLUSTER opt_verbose - | CLUSTER opt_verbose name ON qualified_name - ; - -cluster_index_specification +clusterIndexSpecification : USING name | ; -vacuumstmt - : VACUUM opt_full opt_freeze opt_verbose opt_analyze opt_vacuum_relation_list - | VACUUM OPEN_PAREN vac_analyze_option_list CLOSE_PAREN opt_vacuum_relation_list +vacuumStatement + : VACUUM FULL? FREEZE? optionalVerbose analyzeKeyword? optionalVacuumRelationList + | VACUUM OPEN_PAREN vacuumAnalyzeOptionList CLOSE_PAREN optionalVacuumRelationList ; -analyzestmt - : analyze_keyword opt_verbose opt_vacuum_relation_list - | analyze_keyword OPEN_PAREN vac_analyze_option_list CLOSE_PAREN opt_vacuum_relation_list +analyzeStatement + : analyzeKeyword optionalVerbose optionalVacuumRelationList + | analyzeKeyword OPEN_PAREN vacuumAnalyzeOptionList CLOSE_PAREN optionalVacuumRelationList ; -vac_analyze_option_list - : vac_analyze_option_elem (COMMA vac_analyze_option_elem)* +vacuumAnalyzeOptionList + : vacuumAnalyzeOptionElement (COMMA vacuumAnalyzeOptionElement)* ; -analyze_keyword +analyzeKeyword : ANALYZE | ANALYSE ; -vac_analyze_option_elem - : vac_analyze_option_name vac_analyze_option_arg +vacuumAnalyzeOptionElement + : vacuumAnalyzeOptionName vacuumAnalyzeOptionArgument ; -vac_analyze_option_name - : nonreservedword - | analyze_keyword +vacuumAnalyzeOptionName + : nonReservedWord + | analyzeKeyword ; -vac_analyze_option_arg - : opt_boolean_or_string - | numericonly +vacuumAnalyzeOptionArgument + : booleanOrString + | numericOnly | ; -opt_analyze - : analyze_keyword - | - ; - -opt_verbose +optionalVerbose : VERBOSE | ; -opt_full - : FULL - | - ; - -opt_freeze - : FREEZE +optionalNameList + : OPEN_PAREN nameList CLOSE_PAREN | ; -opt_name_list - : OPEN_PAREN name_list CLOSE_PAREN - | - ; - -vacuum_relation - : qualified_name opt_name_list - ; - -vacuum_relation_list - : vacuum_relation (COMMA vacuum_relation)* +vacuumRelation + : qualifiedName optionalNameList ; -opt_vacuum_relation_list - : vacuum_relation_list +optionalVacuumRelationList + : vacuumRelation (COMMA vacuumRelation)* | ; -explainstmt - : EXPLAIN explainablestmt - | EXPLAIN analyze_keyword opt_verbose explainablestmt - | EXPLAIN VERBOSE explainablestmt - | EXPLAIN OPEN_PAREN explain_option_list CLOSE_PAREN explainablestmt +explainStatement + : EXPLAIN explainableStatement + | EXPLAIN analyzeKeyword optionalVerbose explainableStatement + | EXPLAIN VERBOSE explainableStatement + | EXPLAIN OPEN_PAREN explainOptionElement (COMMA explainOptionElement)* CLOSE_PAREN explainableStatement ; -explainablestmt - : selectstmt - | insertstmt - | updatestmt - | deletestmt - | declarecursorstmt - | createasstmt - | creatematviewstmt - | refreshmatviewstmt - | executestmt +explainableStatement + : selectStatement + | insertStatement + | updateStatement + | deleteStatement + | declareCursorStatement + | createAsStatement + | createMaterializedViewStatement + | refreshMaterializedViewStatement + | executeStatement ; -explain_option_list - : explain_option_elem (COMMA explain_option_elem)* +explainOptionElement + : explainOptionName explainOptionArgument ; -explain_option_elem - : explain_option_name explain_option_arg +explainOptionName + : nonReservedWord + | analyzeKeyword ; -explain_option_name - : nonreservedword - | analyze_keyword - ; - -explain_option_arg - : opt_boolean_or_string - | numericonly +explainOptionArgument + : booleanOrString + | numericOnly | ; -preparestmt - : PREPARE name prep_type_clause AS preparablestmt +prepareStatement + : PREPARE name prepareTypeClause AS preparableStatement ; -prep_type_clause - : OPEN_PAREN type_list CLOSE_PAREN +prepareTypeClause + : OPEN_PAREN typeList CLOSE_PAREN | ; -preparablestmt - : selectstmt - | insertstmt - | updatestmt - | deletestmt +preparableStatement + : selectStatement + | insertStatement + | updateStatement + | deleteStatement ; -executestmt - : EXECUTE name execute_param_clause - | CREATE opttemp TABLE create_as_target AS EXECUTE name execute_param_clause opt_with_data - | CREATE opttemp TABLE IF_P NOT EXISTS create_as_target AS EXECUTE name execute_param_clause opt_with_data +executeStatement + : EXECUTE name executeParameterClause + | CREATE temporaryOption TABLE createAsTarget AS EXECUTE name executeParameterClause withData + | CREATE temporaryOption TABLE IF_P NOT EXISTS createAsTarget AS EXECUTE name executeParameterClause withData ; -execute_param_clause - : OPEN_PAREN expr_list CLOSE_PAREN +executeParameterClause + : OPEN_PAREN expressionList CLOSE_PAREN | ; -deallocatestmt +deallocateStatement : DEALLOCATE name | DEALLOCATE PREPARE name | DEALLOCATE ALL | DEALLOCATE PREPARE ALL ; -insertstmt - : with_clause? INSERT INTO insert_target insert_rest opt_on_conflict returning_clause +insertStatement + : withClause? INSERT INTO insertTarget insertRest optionalOnConflict returningClause ; -insert_target - : qualified_name (AS colid)? +insertTarget + : qualifiedName (AS columnId)? ; -insert_rest - : selectstmt - | OVERRIDING override_kind VALUE_P selectstmt - | OPEN_PAREN insert_column_list CLOSE_PAREN (OVERRIDING override_kind VALUE_P)? selectstmt +insertRest + : selectStatement + | OVERRIDING overrideKind VALUE_P selectStatement + | OPEN_PAREN insertColumnList CLOSE_PAREN (OVERRIDING overrideKind VALUE_P)? selectStatement | DEFAULT VALUES ; -override_kind +overrideKind : USER | SYSTEM_P ; -insert_column_list - : insert_column_item (COMMA insert_column_item)* +insertColumnList + : insertColumnItem (COMMA insertColumnItem)* ; -insert_column_item - : colid opt_indirection +insertColumnItem + : columnId optionalIndirection ; -opt_on_conflict - : ON CONFLICT opt_conf_expr DO (UPDATE SET set_clause_list where_clause | NOTHING) +optionalOnConflict + : ON CONFLICT optionalConflictExpr DO (UPDATE SET setClauseList whereClause | NOTHING) | ; -opt_conf_expr - : OPEN_PAREN index_params CLOSE_PAREN where_clause +optionalConflictExpr + : OPEN_PAREN indexParameters CLOSE_PAREN whereClause | ON CONSTRAINT name | ; -returning_clause - : RETURNING target_list +returningClause + : RETURNING targetList | ; // https://www.postgresql.org/docs/current/sql-merge.html -mergestmt - : MERGE INTO? qualified_name alias_clause? USING (select_with_parens | qualified_name) alias_clause? ON a_expr (merge_insert_clause merge_update_clause? | merge_update_clause merge_insert_clause?) merge_delete_clause? +mergeStatement + : MERGE INTO? qualifiedName aliasClause? USING (selectWithParenthesis | qualifiedName) aliasClause? ON expression1 (mergeInsertClause mergeUpdateClause? | mergeUpdateClause mergeInsertClause?) mergeDeleteClause? ; -merge_insert_clause - : WHEN NOT MATCHED (AND a_expr)? THEN? INSERT (OPEN_PAREN insert_column_list CLOSE_PAREN)? values_clause +mergeInsertClause + : WHEN NOT MATCHED (AND expression1)? THEN? INSERT (OPEN_PAREN insertColumnList CLOSE_PAREN)? valuesClause ; -merge_update_clause - : WHEN MATCHED (AND a_expr)? THEN? UPDATE SET set_clause_list +mergeUpdateClause + : WHEN MATCHED (AND expression1)? THEN? UPDATE SET setClauseList ; -merge_delete_clause +mergeDeleteClause : WHEN MATCHED THEN? DELETE_P ; -deletestmt - : with_clause? DELETE_P FROM relation_expr_opt_alias using_clause where_or_current_clause returning_clause +deleteStatement + : withClause? DELETE_P FROM relationExpressionOptionalAlias usingClause whereOrCurrentClause returningClause ; -using_clause - : USING from_list +usingClause + : USING fromList | ; -lockstmt - : LOCK_P opt_table relation_expr_list opt_lock opt_nowait +lockStatement + : LOCK_P optionalTable relationExpressionList optionalLock optionalNowait ; -opt_lock - : IN_P lock_type MODE +optionalLock + : IN_P lockType MODE | ; -lock_type +lockType : ACCESS (SHARE | EXCLUSIVE) | ROW (SHARE | EXCLUSIVE) | SHARE (UPDATE EXCLUSIVE | ROW EXCLUSIVE)? | EXCLUSIVE ; -opt_nowait +optionalNowait : NOWAIT | ; -opt_nowait_or_skip +optionalNowaitOrSkip : NOWAIT | SKIP_P LOCKED | ; -updatestmt - : with_clause? UPDATE relation_expr_opt_alias SET set_clause_list from_clause where_or_current_clause returning_clause +updateStatement + : withClause? UPDATE relationExpressionOptionalAlias SET setClauseList fromClause whereOrCurrentClause returningClause ; -set_clause_list - : set_clause (COMMA set_clause)* +setClauseList + : setClause (COMMA setClause)* ; -set_clause - : set_target EQUAL a_expr - | OPEN_PAREN set_target_list CLOSE_PAREN EQUAL a_expr +setClause + : setTarget EQUAL expression1 + | OPEN_PAREN setTarget (COMMA setTarget)* CLOSE_PAREN EQUAL expression1 ; -set_target - : colid opt_indirection +setTarget + : columnId optionalIndirection ; -set_target_list - : set_target (COMMA set_target)* +declareCursorStatement + : DECLARE cursorName (NO SCROLL | SCROLL | BINARY | INSENSITIVE)* CURSOR optionalHold FOR selectStatement ; -declarecursorstmt - : DECLARE cursor_name cursor_options CURSOR opt_hold FOR selectstmt - ; - -cursor_name +cursorName : name ; -cursor_options - : (NO SCROLL | SCROLL | BINARY | INSENSITIVE)* - ; - -opt_hold +optionalHold : | WITH HOLD | WITHOUT HOLD @@ -2893,424 +2686,373 @@ opt_hold /* TODO: why select_with_parens alternative is needed at all? -i guess it because original byson grammar can choose selectstmt(2)->select_with_parens on only OPEN_PARENT/SELECT kewords at the begining of statement; +i guess it because original byson grammar can choose selectStatement(2)->select_with_parens on only OPEN_PARENT/SELECT kewords at the begining of statement; (select * from tab); -parse can go through selectstmt( )->select_no_parens(1)->select_clause(2)->select_with_parens(1)->select_no_parens(1)->select_clause(1)->simple_select -instead of selectstmt(1)->select_no_parens(1)->select_clause(2)->select_with_parens(1)->select_no_parens(1)->select_clause(1)->simple_select +parse can go through selectStatement( )->select_no_parens(1)->select_clause(2)->select_with_parens(1)->select_no_parens(1)->select_clause(1)->simple_select +instead of selectStatement(1)->select_no_parens(1)->select_clause(2)->select_with_parens(1)->select_no_parens(1)->select_clause(1)->simple_select all standard tests passed on both variants */ -selectstmt - : select_no_parens - | select_with_parens - ; - -select_with_parens - : OPEN_PAREN select_no_parens CLOSE_PAREN - | OPEN_PAREN select_with_parens CLOSE_PAREN +selectStatement + : selectWithoutParenthesis + | selectWithParenthesis ; -select_no_parens - : select_clause opt_sort_clause (for_locking_clause opt_select_limit | select_limit opt_for_locking_clause)? - | with_clause select_clause opt_sort_clause ( for_locking_clause opt_select_limit | select_limit opt_for_locking_clause)? +selectWithParenthesis + : OPEN_PAREN selectWithoutParenthesis CLOSE_PAREN + | OPEN_PAREN selectWithParenthesis CLOSE_PAREN ; -select_clause - : simple_select_intersect ((UNION | EXCEPT) all_or_distinct simple_select_intersect)* +selectWithoutParenthesis + : selectClause optionalSortClause (forLockingClause optionalSelectLimit | selectLimit forLockingClause?)? + | withClause selectClause optionalSortClause ( forLockingClause optionalSelectLimit | selectLimit forLockingClause?)? ; -simple_select_intersect - : simple_select_pramary (INTERSECT all_or_distinct simple_select_pramary)* +selectClause + : simpleSelectIntersect ((UNION | EXCEPT) allOrDistinct simpleSelectIntersect)* ; -simple_select_start - : target_list into_clause? - | all_clause opt_target_list into_clause? - | distinct_clause target_list into_clause? - | into_clause +simpleSelectIntersect + : simpleSelectPramary (INTERSECT allOrDistinct simpleSelectPramary)* ; -simple_select_pramary - : SELECT simple_select_start from_clause where_clause group_clause having_clause window_clause - | values_clause - | TABLE relation_expr - | select_with_parens +simpleSelectStart + : targetList intoClause? + | allClause optionalTargetList intoClause? + | distinctClause targetList intoClause? + | intoClause ; -with_clause - : WITH RECURSIVE? cte_list +simpleSelectPramary + : SELECT simpleSelectStart fromClause whereClause groupClause havingClause windowClause + | valuesClause + | TABLE relationExpression + | selectWithParenthesis ; -cte_list - : common_table_expr (COMMA common_table_expr)* +withClause + : WITH RECURSIVE? commonTableExpression (COMMA commonTableExpression)* ; -common_table_expr - : name opt_name_list AS opt_materialized OPEN_PAREN preparablestmt CLOSE_PAREN +commonTableExpression + : name optionalNameList AS optionalMaterialized OPEN_PAREN preparableStatement CLOSE_PAREN ; -opt_materialized +optionalMaterialized : MATERIALIZED | NOT MATERIALIZED | ; -into_clause - : INTO (opt_strict opttempTableName | into_target) - ; - -opt_strict - : - | STRICT_P +intoClause + : INTO (STRICT_P? optionalTemporaryTableName | intoTarget) ; -opttempTableName - : (LOCAL | GLOBAL)? (TEMPORARY | TEMP) opt_table qualified_name - | UNLOGGED opt_table qualified_name - | TABLE qualified_name - | qualified_name +optionalTemporaryTableName + : (LOCAL | GLOBAL)? (TEMPORARY | TEMP) optionalTable qualifiedName + | UNLOGGED optionalTable qualifiedName + | TABLE qualifiedName + | qualifiedName ; -opt_table +optionalTable : TABLE | ; -all_or_distinct +allOrDistinct : ALL | DISTINCT | ; -distinct_clause - : DISTINCT (ON OPEN_PAREN expr_list CLOSE_PAREN)? +distinctClause + : DISTINCT (ON OPEN_PAREN expressionList CLOSE_PAREN)? ; -all_clause +allClause : ALL ; -opt_sort_clause - : sort_clause +optionalSortClause + : sortClause | ; -sort_clause - : ORDER BY sortby_list +sortClause + : ORDER BY sortByList ; -sortby_list - : sortby (COMMA sortby)* +sortByList + : sortBy (COMMA sortBy)* ; -sortby - : a_expr (USING qual_all_op | opt_asc_desc) opt_nulls_order +sortBy + : expression1 (USING allOperatorQualifier | optionalAscOrDesc) optionalNullsOrder ; -select_limit - : limit_clause offset_clause? - | offset_clause limit_clause? +selectLimit + : limitClause offsetClause? + | offsetClause limitClause? ; -opt_select_limit - : select_limit +optionalSelectLimit + : selectLimit | ; -limit_clause - : LIMIT select_limit_value (COMMA select_offset_value)? - | FETCH first_or_next ( select_fetch_first_value row_or_rows (ONLY | WITH TIES) | row_or_rows (ONLY | WITH TIES)) +limitClause + : LIMIT selectLimitValue (COMMA selectOffsetValue)? + | FETCH firstOrNext ( selectFetchFirstValue rowOrRows (ONLY | WITH TIES) | rowOrRows (ONLY | WITH TIES)) ; -offset_clause - : OFFSET (select_offset_value | select_fetch_first_value row_or_rows) +offsetClause + : OFFSET (selectOffsetValue | selectFetchFirstValue rowOrRows) ; -select_limit_value - : a_expr +selectLimitValue + : expression1 | ALL ; -select_offset_value - : a_expr +selectOffsetValue + : expression1 ; -select_fetch_first_value - : c_expr - | PLUS i_or_f_const - | MINUS i_or_f_const +selectFetchFirstValue + : expression3 + | PLUS anyConst + | MINUS anyConst ; -i_or_f_const +anyConst : iconst | fconst ; -row_or_rows +rowOrRows : ROW | ROWS ; -first_or_next +firstOrNext : FIRST_P | NEXT ; -group_clause - : GROUP_P BY group_by_list +groupClause + : GROUP_P BY groupByList | ; -group_by_list - : group_by_item (COMMA group_by_item)* - ; - -group_by_item - : a_expr - | empty_grouping_set - | cube_clause - | rollup_clause - | grouping_sets_clause - ; - -empty_grouping_set - : OPEN_PAREN CLOSE_PAREN +groupByList + : groupByItem (COMMA groupByItem)* ; -rollup_clause - : ROLLUP OPEN_PAREN expr_list CLOSE_PAREN +groupByItem + : expression1 + | OPEN_PAREN CLOSE_PAREN + | CUBE OPEN_PAREN expressionList CLOSE_PAREN + | ROLLUP OPEN_PAREN expressionList CLOSE_PAREN + | GROUPING SETS OPEN_PAREN groupByList CLOSE_PAREN ; -cube_clause - : CUBE OPEN_PAREN expr_list CLOSE_PAREN - ; - -grouping_sets_clause - : GROUPING SETS OPEN_PAREN group_by_list CLOSE_PAREN - ; - -having_clause - : HAVING a_expr +havingClause + : HAVING expression1 | ; -for_locking_clause - : for_locking_items +forLockingClause + : forLockingItem+ | FOR READ ONLY ; -opt_for_locking_clause - : for_locking_clause - | +forLockingItem + : forLockingStrength lockedRelationsList optionalNowaitOrSkip ; -for_locking_items - : for_locking_item+ - ; - -for_locking_item - : for_locking_strength locked_rels_list opt_nowait_or_skip - ; - -for_locking_strength +forLockingStrength : FOR ((NO KEY)? UPDATE | KEY? SHARE) ; -locked_rels_list - : OF qualified_name_list +lockedRelationsList + : OF qualifiedNameList | ; -values_clause - : VALUES OPEN_PAREN expr_list CLOSE_PAREN (COMMA OPEN_PAREN expr_list CLOSE_PAREN)* +valuesClause + : VALUES OPEN_PAREN expressionList CLOSE_PAREN (COMMA OPEN_PAREN expressionList CLOSE_PAREN)* ; -from_clause - : FROM from_list +fromClause + : FROM fromList | ; -from_list - : non_ansi_join - | table_ref (COMMA table_ref)* +fromList + : nonAnsiJoin + | tableReference (COMMA tableReference)* ; -non_ansi_join - : table_ref (COMMA table_ref)+ +nonAnsiJoin + : tableReference (COMMA tableReference)+ ; -table_ref +tableReference : ( - relation_expr opt_alias_clause tablesample_clause? - | func_table func_alias_clause - | xmltable opt_alias_clause - | select_with_parens opt_alias_clause - | LATERAL_P ( xmltable opt_alias_clause | func_table func_alias_clause | select_with_parens opt_alias_clause) - | OPEN_PAREN table_ref ( CROSS JOIN table_ref | NATURAL join_type? JOIN table_ref | join_type? JOIN table_ref join_qual)? CLOSE_PAREN opt_alias_clause - ) (CROSS JOIN table_ref | NATURAL join_type? JOIN table_ref | join_type? JOIN table_ref join_qual)* + relationExpression optionalAliasClause tableSampleClause? + | functionTable functionAliasClause + | xmlTable optionalAliasClause + | selectWithParenthesis optionalAliasClause + | LATERAL_P ( xmlTable optionalAliasClause | functionTable functionAliasClause | selectWithParenthesis optionalAliasClause) + | OPEN_PAREN tableReference ( CROSS JOIN tableReference | NATURAL joinType? JOIN tableReference | joinType? JOIN tableReference joinQualifier)? CLOSE_PAREN optionalAliasClause + ) (CROSS JOIN tableReference | NATURAL joinType? JOIN tableReference | joinType? JOIN tableReference joinQualifier)* ; -alias_clause - : AS? colid (OPEN_PAREN name_list CLOSE_PAREN)? +aliasClause + : AS? columnId (OPEN_PAREN nameList CLOSE_PAREN)? ; -opt_alias_clause - : table_alias_clause +optionalAliasClause + : tableAliasClause | ; -table_alias_clause - : AS? table_alias (OPEN_PAREN name_list CLOSE_PAREN)? +tableAliasClause + : AS? tableAlias (OPEN_PAREN nameList CLOSE_PAREN)? ; -func_alias_clause - : alias_clause - | (AS colid? | colid) OPEN_PAREN tablefuncelementlist CLOSE_PAREN +functionAliasClause + : aliasClause + | (AS columnId? | columnId) OPEN_PAREN tableFunctionElementList CLOSE_PAREN | ; -join_type +joinType : (FULL | LEFT | RIGHT | INNER_P) OUTER_P? ; -join_qual - : USING OPEN_PAREN name_list CLOSE_PAREN - | ON a_expr - ; - -relation_expr - : qualified_name STAR? - | ONLY (qualified_name | OPEN_PAREN qualified_name CLOSE_PAREN) +joinQualifier + : USING OPEN_PAREN nameList CLOSE_PAREN + | ON expression1 ; -relation_expr_list - : relation_expr (COMMA relation_expr)* +relationExpression + : qualifiedName STAR? + | ONLY (qualifiedName | OPEN_PAREN qualifiedName CLOSE_PAREN) ; -relation_expr_opt_alias - : relation_expr (AS? colid)? +relationExpressionList + : relationExpression (COMMA relationExpression)* ; -tablesample_clause - : TABLESAMPLE func_name OPEN_PAREN expr_list CLOSE_PAREN opt_repeatable_clause +relationExpressionOptionalAlias + : relationExpression (AS? columnId)? ; -opt_repeatable_clause - : REPEATABLE OPEN_PAREN a_expr CLOSE_PAREN - | +tableSampleClause + : TABLESAMPLE functionName OPEN_PAREN expressionList CLOSE_PAREN REPEATABLE OPEN_PAREN expression1 CLOSE_PAREN ; -func_table - : func_expr_windowless opt_ordinality - | ROWS FROM OPEN_PAREN rowsfrom_list CLOSE_PAREN opt_ordinality +functionTable + : functionExpressionWindowless optionalOrdinality + | ROWS FROM OPEN_PAREN rowsFromItem (COMMA rowsFromItem)* CLOSE_PAREN optionalOrdinality ; -rowsfrom_item - : func_expr_windowless opt_col_def_list +rowsFromItem + : functionExpressionWindowless optionalColumnDefinitionList ; -rowsfrom_list - : rowsfrom_item (COMMA rowsfrom_item)* - ; - -opt_col_def_list - : AS OPEN_PAREN tablefuncelementlist CLOSE_PAREN +optionalColumnDefinitionList + : AS OPEN_PAREN tableFunctionElementList CLOSE_PAREN | ; //TODO WITH_LA was used -opt_ordinality +optionalOrdinality : WITH ORDINALITY | ; -where_clause - : WHERE a_expr +whereClause + : WHERE expression1 | ; -where_or_current_clause - : WHERE (CURRENT_P OF cursor_name | a_expr) +whereOrCurrentClause + : WHERE (CURRENT_P OF cursorName | expression1) | ; -opttablefuncelementlist - : tablefuncelementlist +optionalTableFunctionElementList + : tableFunctionElementList | ; -tablefuncelementlist - : tablefuncelement (COMMA tablefuncelement)* +tableFunctionElementList + : tableFunctionElement (COMMA tableFunctionElement)* ; -tablefuncelement - : colid typename opt_collate_clause +tableFunctionElement + : columnId typeName optionalCollateClause ; -xmltable - : XMLTABLE OPEN_PAREN (c_expr xmlexists_argument COLUMNS xmltable_column_list | XMLNAMESPACES OPEN_PAREN xml_namespace_list CLOSE_PAREN COMMA c_expr xmlexists_argument COLUMNS xmltable_column_list) CLOSE_PAREN +xmlTable + : XMLTABLE OPEN_PAREN (expression3 xmlExistsArgument COLUMNS xmlTableColumnElement (COMMA xmlTableColumnElement)* | XMLNAMESPACES OPEN_PAREN xmlNamespaceList CLOSE_PAREN COMMA expression3 xmlExistsArgument COLUMNS xmlTableColumnElement (COMMA xmlTableColumnElement)*) CLOSE_PAREN ; -xmltable_column_list - : xmltable_column_el (COMMA xmltable_column_el)* +xmlTableColumnElement + : columnId (typeName xmlTableColumnOptionList? | FOR ORDINALITY) ; -xmltable_column_el - : colid (typename xmltable_column_option_list? | FOR ORDINALITY) +xmlTableColumnOptionList + : xmlTableColumnOptionElement+ ; -xmltable_column_option_list - : xmltable_column_option_el+ - ; - -xmltable_column_option_el - : DEFAULT a_expr - | identifier a_expr +xmlTableColumnOptionElement + : DEFAULT expression1 + | identifier expression1 | NOT NULL_P | NULL_P ; -xml_namespace_list - : xml_namespace_el (COMMA xml_namespace_el)* - ; - -xml_namespace_el - : b_expr AS collabel - | DEFAULT b_expr +xmlNamespaceList + : xmlNamespaceElement (COMMA xmlNamespaceElement)* ; -typename - : SETOF? simpletypename (opt_array_bounds | ARRAY (OPEN_BRACKET iconst CLOSE_BRACKET)?) - | qualified_name PERCENT (ROWTYPE | TYPE_P) +xmlNamespaceElement + : expression2 AS columnLabel + | DEFAULT expression2 ; -opt_array_bounds - : (OPEN_BRACKET iconst? CLOSE_BRACKET)* +typeName + : SETOF? simpleTypeName ((OPEN_BRACKET iconst? CLOSE_BRACKET)* | ARRAY (OPEN_BRACKET iconst CLOSE_BRACKET)?) + | qualifiedName PERCENT (ROWTYPE | TYPE_P) ; -simpletypename - : generictype +simpleTypeName + : genericType | numeric | bit | character - | constdatetime - | constinterval (opt_interval | OPEN_PAREN iconst CLOSE_PAREN) + | constDateTime + | constInterval (optionalInterval | OPEN_PAREN iconst CLOSE_PAREN) ; -consttypename +constTypeName : numeric - | constbit - | constcharacter - | constdatetime + | constBit + | constCharacter + | constDateTime ; -generictype - : (builtin_function_name | type_function_name | LEFT | RIGHT) attrs? opt_type_modifiers +genericType + : (builtinFunctionName | typeFunctionName | LEFT | RIGHT) attributes? optionalTypeModifiers ; -opt_type_modifiers - : OPEN_PAREN expr_list CLOSE_PAREN +optionalTypeModifiers + : OPEN_PAREN expressionList CLOSE_PAREN | ; @@ -3320,15 +3062,15 @@ numeric | SMALLINT | BIGINT | REAL - | FLOAT_P opt_float + | FLOAT_P optionalFloat | DOUBLE_P PRECISION - | DECIMAL_P opt_type_modifiers - | DEC opt_type_modifiers - | NUMERIC opt_type_modifiers + | DECIMAL_P optionalTypeModifiers + | DEC optionalTypeModifiers + | NUMERIC optionalTypeModifiers | BOOLEAN_P ; -opt_float +optionalFloat : OPEN_PAREN iconst CLOSE_PAREN | ; @@ -3336,78 +3078,78 @@ opt_float //todo: merge alts bit - : bitwithlength - | bitwithoutlength + : bitWithLength + | bitWithoutLength ; -constbit - : bitwithlength - | bitwithoutlength +constBit + : bitWithLength + | bitWithoutLength ; -bitwithlength - : BIT opt_varying OPEN_PAREN expr_list CLOSE_PAREN +bitWithLength + : BIT optionalVarying OPEN_PAREN expressionList CLOSE_PAREN ; -bitwithoutlength - : BIT opt_varying +bitWithoutLength + : BIT optionalVarying ; character - : character_c (OPEN_PAREN iconst CLOSE_PAREN)? + : characterChar (OPEN_PAREN iconst CLOSE_PAREN)? ; -constcharacter - : character_c (OPEN_PAREN iconst CLOSE_PAREN)? +constCharacter + : characterChar (OPEN_PAREN iconst CLOSE_PAREN)? ; -character_c - : (CHARACTER | CHAR_P | NCHAR) opt_varying +characterChar + : (CHARACTER | CHAR_P | NCHAR) optionalVarying | VARCHAR - | NATIONAL (CHARACTER | CHAR_P) opt_varying + | NATIONAL (CHARACTER | CHAR_P) optionalVarying ; -opt_varying +optionalVarying : VARYING | ; -constdatetime - : (TIMESTAMP | TIME) (OPEN_PAREN iconst CLOSE_PAREN)? opt_timezone +constDateTime + : (TIMESTAMP | TIME) (OPEN_PAREN iconst CLOSE_PAREN)? optionalTimezone ; -constinterval +constInterval : INTERVAL ; //TODO with_la was used -opt_timezone +optionalTimezone : WITH TIME ZONE | WITHOUT TIME ZONE | ; -opt_interval +optionalInterval : YEAR_P | MONTH_P | DAY_P | HOUR_P | MINUTE_P - | interval_second + | intervalSecond | YEAR_P TO MONTH_P - | DAY_P TO (HOUR_P | MINUTE_P | interval_second) - | HOUR_P TO (MINUTE_P | interval_second) - | MINUTE_P TO interval_second + | DAY_P TO (HOUR_P | MINUTE_P | intervalSecond) + | HOUR_P TO (MINUTE_P | intervalSecond) + | MINUTE_P TO intervalSecond | ; -interval_second +intervalSecond : SECOND_P (OPEN_PAREN iconst CLOSE_PAREN)? ; -opt_escape - : ESCAPE a_expr +optionalEscape + : ESCAPE expression1 | ; @@ -3466,8 +3208,8 @@ original version of a_expr, for info ; */ -a_expr - : a_expr_qual +expression1 + : expression1Qualifier ; /*23*/ @@ -3480,44 +3222,44 @@ a_expr /*19*/ -a_expr_qual - : a_expr_lessless qual_op? +expression1Qualifier + : expression1LessLess operatorQualifier? ; /*18*/ -a_expr_lessless - : a_expr_or ((LESS_LESS | GREATER_GREATER) a_expr_or)* +expression1LessLess + : expression1Or ((LESS_LESS | GREATER_GREATER) expression1Or)* ; /*17*/ -a_expr_or - : a_expr_and (OR a_expr_and)* +expression1Or + : expression1And (OR expression1And)* ; /*16*/ -a_expr_and - : a_expr_between (AND a_expr_between)* +expression1And + : expression1Between (AND expression1Between)* ; /*21*/ -a_expr_between - : a_expr_in (NOT? BETWEEN SYMMETRIC? a_expr_in AND a_expr_in)? +expression1Between + : expression1In (NOT? BETWEEN SYMMETRIC? expression1In AND expression1In)? ; /*20*/ -a_expr_in - : a_expr_unary_not (NOT? IN_P in_expr)? +expression1In + : expression1UnaryNot (NOT? IN_P inExpression)? ; /*15*/ -a_expr_unary_not - : NOT? a_expr_isnull +expression1UnaryNot + : NOT? expression1IsNull ; /*14*/ @@ -3526,141 +3268,141 @@ a_expr_unary_not /*13*/ -a_expr_isnull - : a_expr_is_not (ISNULL | NOTNULL)? +expression1IsNull + : expression1IsNot (ISNULL | NOTNULL)? ; /*12*/ -a_expr_is_not - : a_expr_compare (IS NOT? ( NULL_P | TRUE_P | FALSE_P | UNKNOWN | DISTINCT FROM a_expr | OF OPEN_PAREN type_list CLOSE_PAREN | DOCUMENT_P | unicode_normal_form? NORMALIZED))? +expression1IsNot + : expression1Compare (IS NOT? ( NULL_P | TRUE_P | FALSE_P | UNKNOWN | DISTINCT FROM expression1 | OF OPEN_PAREN typeList CLOSE_PAREN | DOCUMENT_P | unicodeNormalForm? NORMALIZED))? ; /*11*/ -a_expr_compare - : a_expr_like ((LT | GT | EQUAL | LESS_EQUALS | GREATER_EQUALS | NOT_EQUALS) a_expr_like | subquery_Op sub_type (select_with_parens | OPEN_PAREN a_expr CLOSE_PAREN) /*21*/)? +expression1Compare + : expression1Like ((LT | GT | EQUAL | LESS_EQUALS | GREATER_EQUALS | NOT_EQUALS) expression1Like | subqueryOperator subType (selectWithParenthesis | OPEN_PAREN expression1 CLOSE_PAREN) /*21*/)? ; /*10*/ -a_expr_like - : a_expr_qual_op (NOT? (LIKE | ILIKE | SIMILAR TO) a_expr_qual_op opt_escape)? +expression1Like + : expression1qualifierOperator (NOT? (LIKE | ILIKE | SIMILAR TO) expression1qualifierOperator optionalEscape)? ; /* 8*/ -a_expr_qual_op - : a_expr_unary_qualop (qual_op a_expr_unary_qualop)* +expression1qualifierOperator + : expression1UnaryQualifierOperator (operatorQualifier expression1UnaryQualifierOperator)* ; /* 9*/ -a_expr_unary_qualop - : qual_op? a_expr_add +expression1UnaryQualifierOperator + : operatorQualifier? expression1Add ; /* 7*/ -a_expr_add - : a_expr_mul ((MINUS | PLUS) a_expr_mul)* +expression1Add + : expressionMultiply ((MINUS | PLUS) expressionMultiply)* ; /* 6*/ -a_expr_mul - : a_expr_caret ((STAR | SLASH | PERCENT) a_expr_caret)* +expressionMultiply + : expression1Caret ((STAR | SLASH | PERCENT) expression1Caret)* ; /* 5*/ -a_expr_caret - : a_expr_unary_sign (CARET a_expr)? +expression1Caret + : expression1UnarySign (CARET expression1)? ; /* 4*/ -a_expr_unary_sign - : (MINUS | PLUS)? a_expr_at_time_zone /* */ +expression1UnarySign + : (MINUS | PLUS)? expression1AtTimeZone /* */ ; /* 3*/ -a_expr_at_time_zone - : a_expr_collate (AT TIME ZONE a_expr)? +expression1AtTimeZone + : expression1Collate (AT TIME ZONE expression1)? ; /* 2*/ -a_expr_collate - : a_expr_typecast (COLLATE any_name)? +expression1Collate + : expression1Typecast (COLLATE anyName)? ; /* 1*/ -a_expr_typecast - : c_expr (TYPECAST typename)* +expression1Typecast + : expression3 (TYPECAST typeName)* ; -b_expr - : c_expr - | b_expr TYPECAST typename +expression2 + : expression3 + | expression2 TYPECAST typeName //right unary plus, unary minus - | (PLUS | MINUS) b_expr + | (PLUS | MINUS) expression2 //^ left exponentiation - | b_expr CARET b_expr + | expression2 CARET expression2 //* / % left multiplication, division, modulo - | b_expr (STAR | SLASH | PERCENT) b_expr + | expression2 (STAR | SLASH | PERCENT) expression2 //+ - left addition, subtraction - | b_expr (PLUS | MINUS) b_expr + | expression2 (PLUS | MINUS) expression2 //(any other operator) left all other native and user-defined operators - | b_expr qual_op b_expr + | expression2 operatorQualifier expression2 //< > = <= >= <> comparison operators - | b_expr (LT | GT | EQUAL | LESS_EQUALS | GREATER_EQUALS | NOT_EQUALS) b_expr - | qual_op b_expr - | b_expr qual_op + | expression2 (LT | GT | EQUAL | LESS_EQUALS | GREATER_EQUALS | NOT_EQUALS) expression2 + | operatorQualifier expression2 + | expression2 operatorQualifier //S ISNULL NOTNULL IS TRUE, IS FALSE, IS NULL, IS DISTINCT FROM, etc - | b_expr IS NOT? (DISTINCT FROM b_expr | OF OPEN_PAREN type_list CLOSE_PAREN | DOCUMENT_P) - ; - -c_expr - : EXISTS select_with_parens # c_expr_exists - | ARRAY (select_with_parens | array_expr) # c_expr_expr - | PARAM opt_indirection # c_expr_expr - | GROUPING OPEN_PAREN expr_list CLOSE_PAREN # c_expr_expr - | /*22*/ UNIQUE select_with_parens # c_expr_expr - | columnref # c_expr_expr - | aexprconst # c_expr_expr - | plsqlvariablename # c_expr_expr - | OPEN_PAREN a_expr_in_parens = a_expr CLOSE_PAREN opt_indirection # c_expr_expr - | case_expr # c_expr_case - | func_expr # c_expr_expr - | select_with_parens indirection? # c_expr_expr - | explicit_row # c_expr_expr - | implicit_row # c_expr_expr - | row OVERLAPS row /* 14*/ # c_expr_expr - ; - -plsqlvariablename + | expression2 IS NOT? (DISTINCT FROM expression2 | OF OPEN_PAREN typeList CLOSE_PAREN | DOCUMENT_P) + ; + +expression3 + : EXISTS selectWithParenthesis # c_expr_exists + | ARRAY (selectWithParenthesis | arrayExpression) # c_expr_expr + | PARAM optionalIndirection # c_expr_expr + | GROUPING OPEN_PAREN expressionList CLOSE_PAREN # c_expr_expr + | /*22*/ UNIQUE selectWithParenthesis # c_expr_expr + | columnReference # c_expr_expr + | aExpressionConst # c_expr_expr + | plsqlVariableName # c_expr_expr + | OPEN_PAREN a_expr_in_parens = expression1 CLOSE_PAREN optionalIndirection # c_expr_expr + | caseExpression # c_expr_case + | functionExpression # c_expr_expr + | selectWithParenthesis indirection? # c_expr_expr + | explicitRow # c_expr_expr + | implicitRow # c_expr_expr + | row OVERLAPS row /* 14*/ # c_expr_expr + ; + +plsqlVariableName : PLSQLVARIABLENAME ; -func_application - : func_name OPEN_PAREN (func_arg_list (COMMA VARIADIC func_arg_expr)? opt_sort_clause | VARIADIC func_arg_expr opt_sort_clause | (ALL | DISTINCT) func_arg_list opt_sort_clause | STAR |) CLOSE_PAREN +functionApplication + : functionName OPEN_PAREN (functionArgumentList (COMMA VARIADIC functionArgumentExpression)? optionalSortClause | VARIADIC functionArgumentExpression optionalSortClause | (ALL | DISTINCT) functionArgumentList optionalSortClause | STAR |) CLOSE_PAREN ; -func_expr - : func_application within_group_clause filter_clause over_clause - | func_expr_common_subexpr +functionExpression + : functionApplication withinGroupClause filterClause overClause + | functionExpressionCommonSubexpr ; -func_expr_windowless - : func_application - | func_expr_common_subexpr +functionExpressionWindowless + : functionApplication + | functionExpressionCommonSubexpr ; -func_expr_common_subexpr - : COLLATION FOR OPEN_PAREN a_expr CLOSE_PAREN +functionExpressionCommonSubexpr + : COLLATION FOR OPEN_PAREN expression1 CLOSE_PAREN | CURRENT_DATE | CURRENT_TIME (OPEN_PAREN iconst CLOSE_PAREN)? | CURRENT_TIMESTAMP (OPEN_PAREN iconst CLOSE_PAREN)? @@ -3672,146 +3414,146 @@ func_expr_common_subexpr | USER | CURRENT_CATALOG | CURRENT_SCHEMA - | CAST OPEN_PAREN a_expr AS typename CLOSE_PAREN - | EXTRACT OPEN_PAREN extract_list CLOSE_PAREN - | NORMALIZE OPEN_PAREN a_expr (COMMA unicode_normal_form)? CLOSE_PAREN - | OVERLAY OPEN_PAREN overlay_list CLOSE_PAREN - | POSITION OPEN_PAREN position_list CLOSE_PAREN - | SUBSTRING OPEN_PAREN substr_list CLOSE_PAREN - | TREAT OPEN_PAREN a_expr AS typename CLOSE_PAREN - | TRIM OPEN_PAREN (BOTH | LEADING | TRAILING)? trim_list CLOSE_PAREN - | NULLIF OPEN_PAREN a_expr COMMA a_expr CLOSE_PAREN - | COALESCE OPEN_PAREN expr_list CLOSE_PAREN - | GREATEST OPEN_PAREN expr_list CLOSE_PAREN - | LEAST OPEN_PAREN expr_list CLOSE_PAREN - | XMLCONCAT OPEN_PAREN expr_list CLOSE_PAREN - | XMLELEMENT OPEN_PAREN NAME_P collabel (COMMA (xml_attributes | expr_list))? CLOSE_PAREN - | XMLEXISTS OPEN_PAREN c_expr xmlexists_argument CLOSE_PAREN - | XMLFOREST OPEN_PAREN xml_attribute_list CLOSE_PAREN - | XMLPARSE OPEN_PAREN document_or_content a_expr xml_whitespace_option CLOSE_PAREN - | XMLPI OPEN_PAREN NAME_P collabel (COMMA a_expr)? CLOSE_PAREN - | XMLROOT OPEN_PAREN XML_P a_expr COMMA xml_root_version opt_xml_root_standalone CLOSE_PAREN - | XMLSERIALIZE OPEN_PAREN document_or_content a_expr AS simpletypename CLOSE_PAREN - ; - -xml_root_version - : VERSION_P a_expr + | CAST OPEN_PAREN expression1 AS typeName CLOSE_PAREN + | EXTRACT OPEN_PAREN extractList CLOSE_PAREN + | NORMALIZE OPEN_PAREN expression1 (COMMA unicodeNormalForm)? CLOSE_PAREN + | OVERLAY OPEN_PAREN overlayList CLOSE_PAREN + | POSITION OPEN_PAREN positionList CLOSE_PAREN + | SUBSTRING OPEN_PAREN substrList CLOSE_PAREN + | TREAT OPEN_PAREN expression1 AS typeName CLOSE_PAREN + | TRIM OPEN_PAREN (BOTH | LEADING | TRAILING)? trimList CLOSE_PAREN + | NULLIF OPEN_PAREN expression1 COMMA expression1 CLOSE_PAREN + | COALESCE OPEN_PAREN expressionList CLOSE_PAREN + | GREATEST OPEN_PAREN expressionList CLOSE_PAREN + | LEAST OPEN_PAREN expressionList CLOSE_PAREN + | XMLCONCAT OPEN_PAREN expressionList CLOSE_PAREN + | XMLELEMENT OPEN_PAREN NAME_P columnLabel (COMMA (xmlAttributes | expressionList))? CLOSE_PAREN + | XMLEXISTS OPEN_PAREN expression3 xmlExistsArgument CLOSE_PAREN + | XMLFOREST OPEN_PAREN xmlAttributeList CLOSE_PAREN + | XMLPARSE OPEN_PAREN documentOrContent expression1 xmlWhitespaceOption CLOSE_PAREN + | XMLPI OPEN_PAREN NAME_P columnLabel (COMMA expression1)? CLOSE_PAREN + | XMLROOT OPEN_PAREN XML_P expression1 COMMA xmlRootVersion optionalXmlRootStandalone CLOSE_PAREN + | XMLSERIALIZE OPEN_PAREN documentOrContent expression1 AS simpleTypeName CLOSE_PAREN + ; + +xmlRootVersion + : VERSION_P expression1 | VERSION_P NO VALUE_P ; -opt_xml_root_standalone +optionalXmlRootStandalone : COMMA STANDALONE_P YES_P | COMMA STANDALONE_P NO | COMMA STANDALONE_P NO VALUE_P | ; -xml_attributes - : XMLATTRIBUTES OPEN_PAREN xml_attribute_list CLOSE_PAREN +xmlAttributes + : XMLATTRIBUTES OPEN_PAREN xmlAttributeList CLOSE_PAREN ; -xml_attribute_list - : xml_attribute_el (COMMA xml_attribute_el)* +xmlAttributeList + : xmlAttributeElement (COMMA xmlAttributeElement)* ; -xml_attribute_el - : a_expr (AS collabel)? +xmlAttributeElement + : expression1 (AS columnLabel)? ; -document_or_content +documentOrContent : DOCUMENT_P | CONTENT_P ; -xml_whitespace_option +xmlWhitespaceOption : PRESERVE WHITESPACE_P | STRIP_P WHITESPACE_P | ; -xmlexists_argument - : PASSING c_expr - | PASSING c_expr xml_passing_mech - | PASSING xml_passing_mech c_expr - | PASSING xml_passing_mech c_expr xml_passing_mech +xmlExistsArgument + : PASSING expression3 + | PASSING expression3 xmlPassingMech + | PASSING xmlPassingMech expression3 + | PASSING xmlPassingMech expression3 xmlPassingMech ; -xml_passing_mech +xmlPassingMech : BY (REF | VALUE_P) ; -within_group_clause - : WITHIN GROUP_P OPEN_PAREN sort_clause CLOSE_PAREN +withinGroupClause + : WITHIN GROUP_P OPEN_PAREN sortClause CLOSE_PAREN | ; -filter_clause - : FILTER OPEN_PAREN WHERE a_expr CLOSE_PAREN +filterClause + : FILTER OPEN_PAREN WHERE expression1 CLOSE_PAREN | ; -window_clause - : WINDOW window_definition_list +windowClause + : WINDOW windowDefinitionList | ; -window_definition_list - : window_definition (COMMA window_definition)* +windowDefinitionList + : windowDefinition (COMMA windowDefinition)* ; -window_definition - : colid AS window_specification +windowDefinition + : columnId AS windowSpecification ; -over_clause - : OVER (window_specification | colid) +overClause + : OVER (windowSpecification | columnId) | ; -window_specification - : OPEN_PAREN opt_existing_window_name opt_partition_clause opt_sort_clause opt_frame_clause CLOSE_PAREN +windowSpecification + : OPEN_PAREN optionalExistingWindowName optionalPartitionClause optionalSortClause optionalFrameClause CLOSE_PAREN ; -opt_existing_window_name - : colid +optionalExistingWindowName + : columnId | ; -opt_partition_clause - : PARTITION BY expr_list +optionalPartitionClause + : PARTITION BY expressionList | ; -opt_frame_clause - : RANGE frame_extent opt_window_exclusion_clause - | ROWS frame_extent opt_window_exclusion_clause - | GROUPS frame_extent opt_window_exclusion_clause +optionalFrameClause + : RANGE frameExtent optionalWindowExclusionClause + | ROWS frameExtent optionalWindowExclusionClause + | GROUPS frameExtent optionalWindowExclusionClause | ; -frame_extent - : frame_bound - | BETWEEN frame_bound AND frame_bound +frameExtent + : frameBound + | BETWEEN frameBound AND frameBound ; -frame_bound +frameBound : UNBOUNDED (PRECEDING | FOLLOWING) | CURRENT_P ROW - | a_expr (PRECEDING | FOLLOWING) + | expression1 (PRECEDING | FOLLOWING) ; -opt_window_exclusion_clause +optionalWindowExclusionClause : EXCLUDE (CURRENT_P ROW | GROUP_P | TIES | NO OTHERS) | ; row - : ROW OPEN_PAREN expr_list? CLOSE_PAREN - | OPEN_PAREN expr_list COMMA a_expr CLOSE_PAREN + : ROW OPEN_PAREN expressionList? CLOSE_PAREN + | OPEN_PAREN expressionList COMMA expression1 CLOSE_PAREN ; -explicit_row - : ROW OPEN_PAREN expr_list? CLOSE_PAREN +explicitRow + : ROW OPEN_PAREN expressionList? CLOSE_PAREN ; /* @@ -3824,22 +3566,22 @@ while looks like they are almost the same, except v2 requieres at least 2 items while v1 allows single item in list */ -implicit_row - : OPEN_PAREN expr_list COMMA a_expr CLOSE_PAREN +implicitRow + : OPEN_PAREN expressionList COMMA expression1 CLOSE_PAREN ; -sub_type +subType : ANY | SOME | ALL ; -all_op +allOperator : Operator - | mathop + | mathOperator ; -mathop +mathOperator : PLUS | MINUS | STAR @@ -3854,56 +3596,56 @@ mathop | NOT_EQUALS ; -qual_op +operatorQualifier : Operator - | OPERATOR OPEN_PAREN any_operator CLOSE_PAREN + | OPERATOR OPEN_PAREN anyOperator CLOSE_PAREN ; -qual_all_op - : all_op - | OPERATOR OPEN_PAREN any_operator CLOSE_PAREN +allOperatorQualifier + : allOperator + | OPERATOR OPEN_PAREN anyOperator CLOSE_PAREN ; -subquery_Op - : all_op - | OPERATOR OPEN_PAREN any_operator CLOSE_PAREN +subqueryOperator + : allOperator + | OPERATOR OPEN_PAREN anyOperator CLOSE_PAREN | LIKE | NOT LIKE | ILIKE | NOT ILIKE ; -expr_list - : a_expr (COMMA a_expr)* +expressionList + : expression1 (COMMA expression1)* ; -func_arg_list - : func_arg_expr (COMMA func_arg_expr)* +functionArgumentList + : functionArgumentExpression (COMMA functionArgumentExpression)* ; -func_arg_expr - : a_expr - | param_name (COLON_EQUALS | EQUALS_GREATER) a_expr +functionArgumentExpression + : expression1 + | parameterName (COLON_EQUALS | EQUALS_GREATER) expression1 ; -type_list - : typename (COMMA typename)* +typeList + : typeName (COMMA typeName)* ; -array_expr - : OPEN_BRACKET (expr_list | array_expr_list)? CLOSE_BRACKET +arrayExpression + : OPEN_BRACKET (expressionList | arrayExpressionList)? CLOSE_BRACKET ; -array_expr_list - : array_expr (COMMA array_expr)* +arrayExpressionList + : arrayExpression (COMMA arrayExpression)* ; -extract_list - : extract_arg FROM a_expr +extractList + : extractArgument FROM expression1 | ; -extract_arg +extractArgument : identifier | YEAR_P | MONTH_P @@ -3914,141 +3656,136 @@ extract_arg | sconst ; -unicode_normal_form +unicodeNormalForm : NFC | NFD | NFKC | NFKD ; -overlay_list - : a_expr PLACING a_expr FROM a_expr (FOR a_expr)? +overlayList + : expression1 PLACING expression1 FROM expression1 (FOR expression1)? ; -position_list - : b_expr IN_P b_expr +positionList + : expression2 IN_P expression2 | ; -substr_list - : a_expr FROM a_expr FOR a_expr - | a_expr FOR a_expr FROM a_expr - | a_expr FROM a_expr - | a_expr FOR a_expr - | a_expr SIMILAR a_expr ESCAPE a_expr - | expr_list +substrList + : expression1 FROM expression1 FOR expression1 + | expression1 FOR expression1 FROM expression1 + | expression1 FROM expression1 + | expression1 FOR expression1 + | expression1 SIMILAR expression1 ESCAPE expression1 + | expressionList ; -trim_list - : a_expr FROM expr_list - | FROM expr_list - | expr_list +trimList + : expression1 FROM expressionList + | FROM expressionList + | expressionList ; -in_expr - : select_with_parens # in_expr_select - | OPEN_PAREN expr_list CLOSE_PAREN # in_expr_list +inExpression + : selectWithParenthesis # in_expr_select + | OPEN_PAREN expressionList CLOSE_PAREN # in_expr_list ; -case_expr - : CASE case_arg when_clause_list case_default END_P +caseExpression + : CASE caseArg whenClauseList caseDefault END_P ; -when_clause_list - : when_clause+ +whenClauseList + : whenClause+ ; -when_clause - : WHEN a_expr THEN a_expr +whenClause + : WHEN expression1 THEN expression1 ; -case_default - : ELSE a_expr +caseDefault + : ELSE expression1 | ; -case_arg - : a_expr +caseArg + : expression1 | ; -columnref - : colid indirection? - ; - -indirection_el - : DOT (attr_name | STAR) - | OPEN_BRACKET (a_expr | opt_slice_bound COLON opt_slice_bound) CLOSE_BRACKET +columnReference + : columnId indirection? ; -opt_slice_bound - : a_expr - | +indirectionElement + : DOT (attributeName | STAR) + | OPEN_BRACKET (expression1 | expression1? COLON expression1?) CLOSE_BRACKET ; indirection - : indirection_el+ + : indirectionElement+ ; -opt_indirection - : indirection_el* +optionalIndirection + : indirectionElement* ; -opt_target_list - : target_list +optionalTargetList + : targetList | ; -target_list - : target_el (COMMA target_el)* +targetList + : targetElement (COMMA targetElement)* ; -target_el - : STAR # target_star - | a_expr (AS collabel | identifier |) # target_label +targetElement + : STAR # target_star + | expression1 (AS columnLabel | identifier |) # target_label ; -qualified_name_list - : qualified_name (COMMA qualified_name)* +qualifiedNameList + : qualifiedName (COMMA qualifiedName)* ; -qualified_name - : colid indirection? +qualifiedName + : columnId indirection? ; -name_list +nameList : name (COMMA name)* ; name - : colid + : columnId ; -attr_name - : collabel +attributeName + : columnLabel ; -file_name +fileName : sconst ; -func_name - : builtin_function_name - | type_function_name - | colid indirection +functionName + : builtinFunctionName + | typeFunctionName + | columnId indirection | LEFT | RIGHT ; -aexprconst +aExpressionConst : iconst | fconst | sconst | bconst | xconst - | func_name (sconst | OPEN_PAREN func_arg_list opt_sort_clause CLOSE_PAREN sconst) - | consttypename sconst - | constinterval (sconst opt_interval | OPEN_PAREN iconst CLOSE_PAREN sconst) + | functionName (sconst | OPEN_PAREN functionArgumentList optionalSortClause CLOSE_PAREN sconst) + | constTypeName sconst + | constInterval (sconst optionalInterval | OPEN_PAREN iconst CLOSE_PAREN sconst) | TRUE_P | FALSE_P | NULL_P @@ -4071,94 +3808,94 @@ iconst ; sconst - : anysconst opt_uescape + : anySconst optionalUescape ; -anysconst +anySconst : StringConstant | UnicodeEscapeStringConstant | BeginDollarStringConstant DollarText* EndDollarStringConstant | EscapeStringConstant ; -opt_uescape - : UESCAPE anysconst +optionalUescape + : UESCAPE anySconst | ; -signediconst +signedIconst : iconst | PLUS iconst | MINUS iconst ; -roleid - : rolespec +roleId + : roleSpecification ; -rolespec - : nonreservedword +roleSpecification + : nonReservedWord | CURRENT_USER | SESSION_USER ; -role_list - : rolespec (COMMA rolespec)* +roleList + : roleSpecification (COMMA roleSpecification)* ; -colid +columnId : identifier - | unreserved_keyword - | col_name_keyword - | plsql_unreserved_keyword + | unreservedKeyword + | columnNameKeyword + | plsqlUnreservedKeyword | LEFT | RIGHT ; -table_alias +tableAlias : identifier - | unreserved_keyword - | col_name_keyword - | plsql_unreserved_keyword + | unreservedKeyword + | columnNameKeyword + | plsqlUnreservedKeyword ; -type_function_name +typeFunctionName : identifier - | unreserved_keyword - | plsql_unreserved_keyword - | type_func_name_keyword + | unreservedKeyword + | plsqlUnreservedKeyword + | typeFunctionNameKeyword ; -nonreservedword +nonReservedWord : identifier - | unreserved_keyword - | col_name_keyword - | type_func_name_keyword + | unreservedKeyword + | columnNameKeyword + | typeFunctionNameKeyword ; -collabel +columnLabel : identifier - | plsql_unreserved_keyword - | unreserved_keyword - | col_name_keyword - | type_func_name_keyword - | reserved_keyword + | plsqlUnreservedKeyword + | unreservedKeyword + | columnNameKeyword + | typeFunctionNameKeyword + | reservedKeyword ; identifier - : Identifier opt_uescape + : Identifier optionalUescape | QuotedIdentifier | UnicodeQuotedIdentifier - | plsqlvariablename - | plsqlidentifier - | plsql_unreserved_keyword + | plsqlVariableName + | plsqlIdentifier + | plsqlUnreservedKeyword ; -plsqlidentifier +plsqlIdentifier : PLSQLIDENTIFIER ; -unreserved_keyword +unreservedKeyword : ABORT_P | ABSOLUTE_P | ACCESS @@ -4459,7 +4196,7 @@ unreserved_keyword | ZONE ; -col_name_keyword +columnNameKeyword : BETWEEN | BIGINT | bit @@ -4511,10 +4248,10 @@ col_name_keyword | XMLROOT | XMLSERIALIZE | XMLTABLE - | builtin_function_name + | builtinFunctionName ; -type_func_name_keyword +typeFunctionNameKeyword : AUTHORIZATION | BINARY | COLLATION @@ -4538,7 +4275,7 @@ type_func_name_keyword | VERBOSE ; -reserved_keyword +reservedKeyword : ALL | ANALYSE | ANALYZE @@ -4624,7 +4361,7 @@ from pl_gram.y, line ~2982 | WITH ; -builtin_function_name +builtinFunctionName : XMLCOMMENT | XML_IS_WELL_FORMED | XML_IS_WELL_FORMED_DOCUMENT @@ -4761,17 +4498,17 @@ builtin_function_name /*PLSQL grammar */ /************************************************************************************************************************************************************/ -pl_function - : comp_options pl_block opt_semi +plsqlFunction + : computeOptions plsqlBlock optionalSemi ; -comp_options - : comp_option* +computeOptions + : computeOption* ; -comp_option +computeOption : sharp OPTION DUMP - | sharp PRINT_STRICT_PARAMS option_value + | sharp PRINT_STRICT_PARAMS optionValue | sharp VARIABLE_CONFLICT ERROR | sharp VARIABLE_CONFLICT USE_VARIABLE | sharp VARIABLE_CONFLICT USE_COLUMN @@ -4781,305 +4518,305 @@ sharp : Operator ; -option_value +optionValue : sconst - | reserved_keyword - | plsql_unreserved_keyword - | unreserved_keyword + | reservedKeyword + | plsqlUnreservedKeyword + | unreservedKeyword ; -opt_semi +optionalSemi : | SEMI ; // exception_sect means opt_exception_sect in original grammar, don't be confused! -pl_block - : decl_sect BEGIN_P proc_sect exception_sect END_P opt_label +plsqlBlock + : declareSection BEGIN_P procedureSection exceptionSection END_P optionalLabel ; -decl_sect - : opt_block_label (decl_start decl_stmts?)? +declareSection + : optionalBlockLabel (declareStart declareStatements?)? ; -decl_start +declareStart : DECLARE ; -decl_stmts - : decl_stmt+ +declareStatements + : declareStatement+ ; -label_decl - : LESS_LESS any_identifier GREATER_GREATER +labelDeclaration + : LESS_LESS anyIdentifier GREATER_GREATER ; -decl_stmt - : decl_statement +declareStatement + : declareStatement2 | DECLARE - | label_decl + | labelDeclaration ; -decl_statement - : decl_varname (ALIAS FOR decl_aliasitem | decl_const decl_datatype decl_collate decl_notnull decl_defval | opt_scrollable CURSOR decl_cursor_args decl_is_for decl_cursor_query) SEMI +declareStatement2 + : declareVarname (ALIAS FOR declareAliasItem | declareConst declareDatatype declareCollate declareNotNull declareDefaultValue | optionalScrollable CURSOR declareCursorArgs declareIsOrFor declareCursorQuery) SEMI ; -opt_scrollable +optionalScrollable : | NO SCROLL | SCROLL ; -decl_cursor_query - : selectstmt +declareCursorQuery + : selectStatement ; -decl_cursor_args +declareCursorArgs : - | OPEN_PAREN decl_cursor_arglist CLOSE_PAREN + | OPEN_PAREN declareCursorArglist CLOSE_PAREN ; -decl_cursor_arglist - : decl_cursor_arg (COMMA decl_cursor_arg)* +declareCursorArglist + : declareCursorArg (COMMA declareCursorArg)* ; -decl_cursor_arg - : decl_varname decl_datatype +declareCursorArg + : declareVarname declareDatatype ; -decl_is_for +declareIsOrFor : IS | FOR ; -decl_aliasitem +declareAliasItem : PARAM - | colid + | columnId ; -decl_varname - : any_identifier +declareVarname + : anyIdentifier ; -decl_const +declareConst : | CONSTANT ; -decl_datatype - : typename +declareDatatype + : typeName ; //TODO: $$ = read_datatype(yychar); -decl_collate +declareCollate : - | COLLATE any_name + | COLLATE anyName ; -decl_notnull +declareNotNull : | NOT NULL_P ; -decl_defval +declareDefaultValue : - | decl_defkey sql_expression + | declareDefaultKey sqlExpression ; -decl_defkey - : assign_operator +declareDefaultKey + : assignOperator | DEFAULT ; -assign_operator +assignOperator : EQUAL | COLON_EQUALS ; -proc_sect - : proc_stmt* - ; - -proc_stmt - : pl_block SEMI - | stmt_return - | stmt_raise - | stmt_assign - | stmt_if - | stmt_case - | stmt_loop - | stmt_while - | stmt_for - | stmt_foreach_a - | stmt_exit - | stmt_assert - | stmt_execsql - | stmt_dynexecute - | stmt_perform - | stmt_call - | stmt_getdiag - | stmt_open - | stmt_fetch - | stmt_move - | stmt_close - | stmt_null - | stmt_commit - | stmt_rollback - | stmt_set - ; - -stmt_perform - : PERFORM expr_until_semi SEMI - ; - -stmt_call - : CALL any_identifier OPEN_PAREN opt_expr_list CLOSE_PAREN SEMI - | DO any_identifier OPEN_PAREN opt_expr_list CLOSE_PAREN SEMI - ; - -opt_expr_list +procedureSection + : proceduralStatement* + ; + +proceduralStatement + : plsqlBlock SEMI + | statementReturn + | statementRaise + | statementAssign + | statementIf + | statementCase + | statementLoop + | statementWhile + | statementFor + | statementForeachA + | statementExit + | statementAssert + | statementExecSql + | statementDynExecute + | statementPerform + | statementCall + | statementGetDiagram + | statementOpen + | statementFetch + | statementMove + | statementClose + | statementNull + | statementCommit + | statementRollback + | statementSet + ; + +statementPerform + : PERFORM expressionUntilSemi SEMI + ; + +statementCall + : CALL anyIdentifier OPEN_PAREN optionalExpressionList CLOSE_PAREN SEMI + | DO anyIdentifier OPEN_PAREN optionalExpressionList CLOSE_PAREN SEMI + ; + +optionalExpressionList : - | expr_list + | expressionList ; -stmt_assign - : assign_var assign_operator sql_expression SEMI +statementAssign + : assignVariable assignOperator sqlExpression SEMI ; -stmt_getdiag - : GET getdiag_area_opt DIAGNOSTICS getdiag_list SEMI +statementGetDiagram + : GET optionalGetDiagramArea DIAGNOSTICS getDiagramList SEMI ; -getdiag_area_opt +optionalGetDiagramArea : | CURRENT_P | STACKED ; -getdiag_list - : getdiag_list_item (COMMA getdiag_list_item)* +getDiagramList + : getDiagramListItem (COMMA getDiagramListItem)* ; -getdiag_list_item - : getdiag_target assign_operator getdiag_item +getDiagramListItem + : getDiagramTarget assignOperator getDiagramItem ; -getdiag_item - : colid +getDiagramItem + : columnId ; -getdiag_target - : assign_var +getDiagramTarget + : assignVariable ; -assign_var - : (any_name | PARAM) (OPEN_BRACKET expr_until_rightbracket CLOSE_BRACKET)* +assignVariable + : (anyName | PARAM) (OPEN_BRACKET expressionUntilRightbracket CLOSE_BRACKET)* ; -stmt_if - : IF_P expr_until_then THEN proc_sect stmt_elsifs stmt_else END_P IF_P SEMI +statementIf + : IF_P expressionUntilThen THEN procedureSection statementElsifs statementElse END_P IF_P SEMI ; -stmt_elsifs - : (ELSIF a_expr THEN proc_sect)* +statementElsifs + : (ELSIF expression1 THEN procedureSection)* ; -stmt_else +statementElse : - | ELSE proc_sect + | ELSE procedureSection ; -stmt_case - : CASE opt_expr_until_when case_when_list opt_case_else END_P CASE SEMI +statementCase + : CASE optionalExpressionUntilWhen caseWhenList optionalCaseElse END_P CASE SEMI ; -opt_expr_until_when +optionalExpressionUntilWhen : - | sql_expression + | sqlExpression ; -case_when_list - : case_when+ +caseWhenList + : caseWhen+ ; -case_when - : WHEN expr_list THEN proc_sect +caseWhen + : WHEN expressionList THEN procedureSection ; -opt_case_else +optionalCaseElse : - | ELSE proc_sect + | ELSE procedureSection ; -stmt_loop - : opt_loop_label loop_body +statementLoop + : optionalLoopLabel loopBody ; -stmt_while - : opt_loop_label WHILE expr_until_loop loop_body +statementWhile + : optionalLoopLabel WHILE expressionUntilLoop loopBody ; -stmt_for - : opt_loop_label FOR for_control loop_body +statementFor + : optionalLoopLabel FOR forControl loopBody ; //TODO: rewrite using read_sql_expression logic? -for_control - : for_variable IN_P (cursor_name opt_cursor_parameters | selectstmt | explainstmt | EXECUTE a_expr opt_for_using_expression | opt_reverse a_expr DOT_DOT a_expr opt_by_expression) +forControl + : forVariable IN_P (cursorName optionalCursorParameters | selectStatement | explainStatement | EXECUTE expression1 optionalForUsingExpression | optionalReverse expression1 DOT_DOT expression1 optionalByExpression) ; -opt_for_using_expression +optionalForUsingExpression : - | USING expr_list + | USING expressionList ; -opt_cursor_parameters +optionalCursorParameters : - | OPEN_PAREN a_expr (COMMA a_expr)* CLOSE_PAREN + | OPEN_PAREN expression1 (COMMA expression1)* CLOSE_PAREN ; -opt_reverse +optionalReverse : | REVERSE ; -opt_by_expression +optionalByExpression : - | BY a_expr + | BY expression1 ; -for_variable - : any_name_list +forVariable + : anyNameList ; -stmt_foreach_a - : opt_loop_label FOREACH for_variable foreach_slice IN_P ARRAY a_expr loop_body +statementForeachA + : optionalLoopLabel FOREACH forVariable foreachSlice IN_P ARRAY expression1 loopBody ; -foreach_slice +foreachSlice : | SLICE iconst ; -stmt_exit - : exit_type opt_label opt_exitcond SEMI +statementExit + : exitType optionalLabel optionalExitCondition SEMI ; -exit_type +exitType : EXIT | CONTINUE_P ; //todo implement RETURN statement according to initial grammar line 1754 -stmt_return - : RETURN (NEXT sql_expression | QUERY (EXECUTE a_expr opt_for_using_expression | selectstmt) | opt_return_result) SEMI +statementReturn + : RETURN (NEXT sqlExpression | QUERY (EXECUTE expression1 optionalForUsingExpression | selectStatement) | optionalReturnResult) SEMI ; -opt_return_result +optionalReturnResult : - | sql_expression + | sqlExpression ; //https://www.postgresql.org/docs/current/plpgsql-errors-and-messages.html @@ -5094,15 +4831,15 @@ opt_return_result //RAISE ; -stmt_raise - : RAISE opt_stmt_raise_level sconst opt_raise_list opt_raise_using SEMI - | RAISE opt_stmt_raise_level identifier opt_raise_using SEMI - | RAISE opt_stmt_raise_level SQLSTATE sconst opt_raise_using SEMI - | RAISE opt_stmt_raise_level opt_raise_using SEMI +statementRaise + : RAISE optionalStatementRaiseLevel sconst optionalRaiseList optionalRaiseUsing SEMI + | RAISE optionalStatementRaiseLevel identifier optionalRaiseUsing SEMI + | RAISE optionalStatementRaiseLevel SQLSTATE sconst optionalRaiseUsing SEMI + | RAISE optionalStatementRaiseLevel optionalRaiseUsing SEMI | RAISE ; -opt_stmt_raise_level +optionalStatementRaiseLevel : | | DEBUG @@ -5113,45 +4850,41 @@ opt_stmt_raise_level | EXCEPTION ; -opt_raise_list +optionalRaiseList : - | (COMMA a_expr)+ + | (COMMA expression1)+ ; -opt_raise_using +optionalRaiseUsing : - | USING opt_raise_using_elem_list - ; - -opt_raise_using_elem - : identifier EQUAL a_expr + | USING optionalRaiseUsingElement (COMMA optionalRaiseUsingElement)* ; -opt_raise_using_elem_list - : opt_raise_using_elem (COMMA opt_raise_using_elem)* +optionalRaiseUsingElement + : identifier EQUAL expression1 ; //todo imnplement -stmt_assert - : ASSERT sql_expression opt_stmt_assert_message SEMI +statementAssert + : ASSERT sqlExpression optionalStatementAssertMessage SEMI ; -opt_stmt_assert_message +optionalStatementAssertMessage : - | COMMA sql_expression + | COMMA sqlExpression ; -loop_body - : LOOP proc_sect END_P LOOP opt_label SEMI +loopBody + : LOOP procedureSection END_P LOOP optionalLabel SEMI ; //TODO: looks like all other statements like INSERT/SELECT/UPDATE/DELETE are handled here; //pls take a look at original grammar -stmt_execsql - : make_execsql_stmt SEMI +statementExecSql + : makeExecuteSqlStatement SEMI /*K_IMPORT | K_INSERT | t_word @@ -5163,23 +4896,23 @@ stmt_execsql //EXECUTE command-string [ INTO [STRICT] target ] [ USING expression [, ... ] ]; -stmt_dynexecute - : EXECUTE a_expr ( -/*this is silly, but i have to time to find nice way to code */ opt_execute_into opt_execute_using | opt_execute_using opt_execute_into |) SEMI +statementDynExecute + : EXECUTE expression1 ( +/*this is silly, but i have to time to find nice way to code */ optionalExecuteInto optionalExecuteUsing | optionalExecuteUsing optionalExecuteInto |) SEMI ; -opt_execute_using +optionalExecuteUsing : - | USING opt_execute_using_list + | USING optionalExecuteUsingList ; -opt_execute_using_list - : a_expr (COMMA a_expr)* +optionalExecuteUsingList + : expression1 (COMMA expression1)* ; -opt_execute_into +optionalExecuteInto : - | INTO STRICT_P? into_target + | INTO STRICT_P? intoTarget ; //https://www.postgresql.org/docs/current/plpgsql-cursors.html#PLPGSQL-CURSOR-OPENING @@ -5192,124 +4925,105 @@ opt_execute_into //OPEN bound_cursorvar [ ( [ argument_name := ] argument_value [, ...] ) ]; -stmt_open - : OPEN (cursor_variable opt_scroll_option FOR (selectstmt | EXECUTE sql_expression opt_open_using) | colid (OPEN_PAREN opt_open_bound_list CLOSE_PAREN)?) SEMI - ; - -opt_open_bound_list_item - : colid COLON_EQUALS a_expr - | a_expr +statementOpen + : OPEN (cursorVariable NO? SCROLL FOR (selectStatement | EXECUTE sqlExpression USING expressionList) | columnId (OPEN_PAREN optionalOpenBoundListItem (COMMA optionalOpenBoundListItem)* CLOSE_PAREN)?) SEMI ; -opt_open_bound_list - : opt_open_bound_list_item (COMMA opt_open_bound_list_item)* - ; - -opt_open_using - : - | USING expr_list - ; - -opt_scroll_option - : - | opt_scroll_option_no SCROLL - ; - -opt_scroll_option_no - : - | NO +optionalOpenBoundListItem + : columnId COLON_EQUALS expression1 + | expression1 ; //https://www.postgresql.org/docs/current/plpgsql-cursors.html#PLPGSQL-CURSOR-OPENING //FETCH [ direction { FROM | IN } ] cursor INTO target; -stmt_fetch - : FETCH direction = opt_fetch_direction opt_cursor_from cursor_variable INTO into_target SEMI +statementFetch + : FETCH direction = optionalFetchDirection optionalCursorFrom cursorVariable INTO intoTarget SEMI ; -into_target - : expr_list +intoTarget + : expressionList ; -opt_cursor_from +optionalCursorFrom : | FROM | IN_P ; -opt_fetch_direction +optionalFetchDirection : | | NEXT | PRIOR | FIRST_P | LAST_P - | ABSOLUTE_P a_expr - | RELATIVE_P a_expr - | a_expr + | ABSOLUTE_P expression1 + | RELATIVE_P expression1 + | expression1 | ALL - | (FORWARD | BACKWARD) (a_expr | ALL)? + | (FORWARD | BACKWARD) (expression1 | ALL)? ; //https://www.postgresql.org/docs/current/plpgsql-cursors.html#PLPGSQL-CURSOR-OPENING //MOVE [ direction { FROM | IN } ] cursor; -stmt_move - : MOVE opt_fetch_direction cursor_variable SEMI +statementMove + : MOVE optionalFetchDirection cursorVariable SEMI ; -stmt_close - : CLOSE cursor_variable SEMI +statementClose + : CLOSE cursorVariable SEMI ; -stmt_null +statementNull : NULL_P SEMI ; -stmt_commit - : COMMIT plsql_opt_transaction_chain SEMI +statementCommit + : COMMIT plsqlOptionalTransactionChain SEMI ; -stmt_rollback - : ROLLBACK plsql_opt_transaction_chain SEMI +statementRollback + : ROLLBACK plsqlOptionalTransactionChain SEMI ; -plsql_opt_transaction_chain +plsqlOptionalTransactionChain : AND NO? CHAIN | ; -stmt_set - : SET any_name TO DEFAULT SEMI - | RESET (any_name | ALL) SEMI +statementSet + : SET anyName TO DEFAULT SEMI + | RESET (anyName | ALL) SEMI ; -cursor_variable - : colid +cursorVariable + : columnId | PARAM ; -exception_sect +exceptionSection : - | EXCEPTION proc_exceptions + | EXCEPTION procedureExceptions ; -proc_exceptions - : proc_exception+ +procedureExceptions + : procedureException+ ; -proc_exception - : WHEN proc_conditions THEN proc_sect +procedureException + : WHEN procedureConditions THEN procedureSection ; -proc_conditions - : proc_condition (OR proc_condition)* +procedureConditions + : procedureCondition (OR procedureCondition)* ; -proc_condition - : any_identifier +procedureCondition + : anyIdentifier | SQLSTATE sconst ; @@ -5325,32 +5039,32 @@ proc_condition //; -opt_block_label +optionalBlockLabel : - | label_decl + | labelDeclaration ; -opt_loop_label +optionalLoopLabel : - | label_decl + | labelDeclaration ; -opt_label +optionalLabel : - | any_identifier + | anyIdentifier ; -opt_exitcond - : WHEN expr_until_semi +optionalExitCondition + : WHEN expressionUntilSemi | ; -any_identifier - : colid - | plsql_unreserved_keyword +anyIdentifier + : columnId + | plsqlUnreservedKeyword ; -plsql_unreserved_keyword +plsqlUnreservedKeyword : ABSOLUTE_P | ALIAS | AND @@ -5440,31 +5154,31 @@ plsql_unreserved_keyword | OUTER_P ; -sql_expression - : opt_target_list into_clause? from_clause where_clause group_clause having_clause window_clause +sqlExpression + : optionalTargetList intoClause? fromClause whereClause groupClause havingClause windowClause ; -expr_until_then - : sql_expression +expressionUntilThen + : sqlExpression ; -expr_until_semi - : sql_expression +expressionUntilSemi + : sqlExpression ; -expr_until_rightbracket - : a_expr +expressionUntilRightbracket + : expression1 ; -expr_until_loop - : a_expr +expressionUntilLoop + : expression1 ; -make_execsql_stmt - : stmt opt_returning_clause_into +makeExecuteSqlStatement + : statement optionalReturningClauseInto ; -opt_returning_clause_into - : INTO opt_strict into_target +optionalReturningClauseInto + : INTO STRICT_P? intoTarget | ; \ No newline at end of file diff --git a/src/autocomplete/postgresql/grammar/PostgreSqlParserBase.ts b/src/autocomplete/postgresql/grammar/PostgreSqlParserBase.ts index 3da7c1e2..6e900226 100644 --- a/src/autocomplete/postgresql/grammar/PostgreSqlParserBase.ts +++ b/src/autocomplete/postgresql/grammar/PostgreSqlParserBase.ts @@ -1,33 +1,33 @@ import {CharStreams, CommonTokenStream, Parser} from 'antlr4ng'; import { - Createfunc_opt_listContext, + CreateFunctionOptionListContext, PostgreSqlParser, SconstContext, } from '../generated/PostgreSqlParser.js'; import {PostgreSqlLexer} from '../generated/PostgreSqlLexer.js'; abstract class PostgreSqlParserBase extends Parser { - ParseRoutineBody(_localctx: Createfunc_opt_listContext): void { + ParseRoutineBody(_localctx: CreateFunctionOptionListContext): void { let lang = null; - for (const coi of _localctx.createfunc_opt_item()) { + for (const coi of _localctx.createFunctionOptionItem()) { if (coi.LANGUAGE() !== null) { - if (coi.nonreservedword_or_sconst() !== null) - if (coi.nonreservedword_or_sconst()?.nonreservedword() !== null) + if (coi.nonReservedWordOrSconst() !== null) + if (coi.nonReservedWordOrSconst()?.nonReservedWord() !== null) if ( - coi.nonreservedword_or_sconst()?.nonreservedword()?.identifier() !== + coi.nonReservedWordOrSconst()?.nonReservedWord()?.identifier() !== null ) if ( coi - .nonreservedword_or_sconst() - ?.nonreservedword() + .nonReservedWordOrSconst() + ?.nonReservedWord() ?.identifier() ?.Identifier() !== null ) { lang = coi - .nonreservedword_or_sconst() - ?.nonreservedword() + .nonReservedWordOrSconst() + ?.nonReservedWord() ?.identifier() ?.Identifier() ?.getText(); @@ -37,8 +37,8 @@ abstract class PostgreSqlParserBase extends Parser { } if (null === lang) return; let func_as = null; - for (const a of _localctx.createfunc_opt_item()) { - if (a.func_as() !== null) { + for (const a of _localctx.createFunctionOptionItem()) { + if (a.functionAs() !== null) { func_as = a; break; } @@ -74,7 +74,7 @@ abstract class PostgreSqlParserBase extends Parser { } private GetRoutineBodyString(rule: SconstContext): string { - const anysconst = rule.anysconst(); + const anysconst = rule.anySconst(); const StringConstant = anysconst.StringConstant(); if (null !== StringConstant) return this.unquote(this.TrimQuotes(StringConstant.getText())); const UnicodeEscapeStringConstant = anysconst.UnicodeEscapeStringConstant(); diff --git a/src/autocomplete/postgresql/postgreSqlAutocomplete.ts b/src/autocomplete/postgresql/postgreSqlAutocomplete.ts index 2963b1f0..91e130aa 100644 --- a/src/autocomplete/postgresql/postgreSqlAutocomplete.ts +++ b/src/autocomplete/postgresql/postgreSqlAutocomplete.ts @@ -10,10 +10,10 @@ import { } from '../../types.js'; import {PostgreSqlLexer} from './generated/PostgreSqlLexer.js'; import { - Insert_targetContext, + InsertTargetContext, PostgreSqlParser, - Relation_exprContext, - Table_refContext, + RelationExpressionContext, + TableReferenceContext, } from './generated/PostgreSqlParser.js'; import {PostgreSqlParserVisitor} from './generated/PostgreSqlParserVisitor.js'; import {TableQueryPosition, TokenDictionary, hasPreviousToken} from '../../lib/tables.js'; @@ -58,19 +58,19 @@ function getIgnoredTokens(): number[] { const ignoredTokens = new Set(getIgnoredTokens()); const preferredRules = new Set([ - PostgreSqlParser.RULE_colid, - PostgreSqlParser.RULE_func_name, - PostgreSqlParser.RULE_func_expr_common_subexpr, + PostgreSqlParser.RULE_columnId, + PostgreSqlParser.RULE_functionName, + PostgreSqlParser.RULE_functionExpressionCommonSubexpr, // All of these are identifier names, we don't want to suggest them PostgreSqlParser.RULE_identifier, - PostgreSqlParser.RULE_plsqlvariablename, - PostgreSqlParser.RULE_consttypename, - PostgreSqlParser.RULE_col_name_keyword, - PostgreSqlParser.RULE_unreserved_keyword, - PostgreSqlParser.RULE_plsql_unreserved_keyword, - PostgreSqlParser.RULE_type_func_name_keyword, - PostgreSqlParser.RULE_reserved_keyword, + PostgreSqlParser.RULE_plsqlVariableName, + PostgreSqlParser.RULE_constTypeName, + PostgreSqlParser.RULE_columnNameKeyword, + PostgreSqlParser.RULE_unreservedKeyword, + PostgreSqlParser.RULE_plsqlUnreservedKeyword, + PostgreSqlParser.RULE_typeFunctionNameKeyword, + PostgreSqlParser.RULE_reservedKeyword, ]); class PostgreSqlSymbolTableVisitor @@ -86,12 +86,12 @@ class PostgreSqlSymbolTableVisitor this.scope = this.symbolTable.addNewSymbolOfType(c3.ScopedSymbol, undefined); } - visitRelation_expr = (context: Relation_exprContext): {} => { + visitRelationExpression = (context: RelationExpressionContext): {} => { try { this.symbolTable.addNewSymbolOfType( TableSymbol, this.scope, - context.qualified_name()?.getText() || '', + context.qualifiedName()?.getText() || '', ); } catch (error) { if (!(error instanceof c3.DuplicateSymbolError)) { @@ -102,13 +102,13 @@ class PostgreSqlSymbolTableVisitor return this.visitChildren(context) as {}; }; - visitTable_ref = (context: Table_refContext): {} => { + visitTableReference = (context: TableReferenceContext): {} => { try { this.symbolTable.addNewSymbolOfType( TableSymbol, this.scope, - context.relation_expr()?.qualified_name()?.getText() || '', - context.opt_alias_clause()?.table_alias_clause()?.table_alias()?.getText(), + context.relationExpression()?.qualifiedName()?.getText() || '', + context.optionalAliasClause()?.tableAliasClause()?.tableAlias()?.getText(), ); } catch (error) { if (!(error instanceof c3.DuplicateSymbolError)) { @@ -119,13 +119,13 @@ class PostgreSqlSymbolTableVisitor return this.visitChildren(context) as {}; }; - visitInsert_target = (context: Insert_targetContext): {} => { + visitInsertTarget = (context: InsertTargetContext): {} => { try { this.symbolTable.addNewSymbolOfType( TableSymbol, this.scope, - context.qualified_name()?.getText() || '', - context.colid()?.getText(), + context.qualifiedName()?.getText() || '', + context.columnId()?.getText(), ); } catch (error) { if (!(error instanceof c3.DuplicateSymbolError)) { @@ -149,8 +149,8 @@ function generateSuggestionsFromRules( for (const [ruleId, ruleData] of rules) { switch (ruleId) { - case PostgreSqlParser.RULE_func_expr_common_subexpr: - case PostgreSqlParser.RULE_func_name: { + case PostgreSqlParser.RULE_functionExpressionCommonSubexpr: + case PostgreSqlParser.RULE_functionName: { if (cursorTokenIndex === ruleData.startTokenIndex) { suggestFunctions = true; // TODO Not sure yet how to specifically find aggregate functions @@ -158,15 +158,15 @@ function generateSuggestionsFromRules( } break; } - case PostgreSqlParser.RULE_colid: { + case PostgreSqlParser.RULE_columnId: { const isInsideQualifiedName = - ruleData.ruleList.includes(PostgreSqlParser.RULE_qualified_name) && - (ruleData.ruleList.includes(PostgreSqlParser.RULE_insert_target) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_relation_expr)); + ruleData.ruleList.includes(PostgreSqlParser.RULE_qualifiedName) && + (ruleData.ruleList.includes(PostgreSqlParser.RULE_insertTarget) || + ruleData.ruleList.includes(PostgreSqlParser.RULE_relationExpression)); const canSuggestTables = - !ruleData.ruleList.includes(PostgreSqlParser.RULE_createstmt) && + !ruleData.ruleList.includes(PostgreSqlParser.RULE_createStatement) && (isInsideQualifiedName || - ruleData.ruleList.includes(PostgreSqlParser.RULE_func_table)); + ruleData.ruleList.includes(PostgreSqlParser.RULE_functionTable)); // We need to check cursorTokenIndex here, because colid -> identifier might have multiple tokens if (cursorTokenIndex !== ruleData.startTokenIndex) { @@ -188,12 +188,18 @@ function generateSuggestionsFromRules( cursorTokenIndex, PostgreSqlParser.Identifier, ) && - (ruleData.ruleList.includes(PostgreSqlParser.RULE_altertablestmt) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_refreshmatviewstmt) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_renamestmt) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_alterobjectdependsstmt) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_alterobjectschemastmt) || - ruleData.ruleList.includes(PostgreSqlParser.RULE_dropstmt)) + (ruleData.ruleList.includes(PostgreSqlParser.RULE_alterTableStatement) || + ruleData.ruleList.includes( + PostgreSqlParser.RULE_refreshMaterializedViewStatement, + ) || + ruleData.ruleList.includes(PostgreSqlParser.RULE_renameStatement) || + ruleData.ruleList.includes( + PostgreSqlParser.RULE_alterObjectDependsStatement, + ) || + ruleData.ruleList.includes( + PostgreSqlParser.RULE_alterObjectSchemaStatement, + ) || + ruleData.ruleList.includes(PostgreSqlParser.RULE_dropStatement)) ) { suggestViewsOrTables = TableOrViewSuggestion.VIEWS; } else if ( @@ -203,14 +209,15 @@ function generateSuggestionsFromRules( cursorTokenIndex, PostgreSqlParser.TABLE, ) && - (ruleData.ruleList.includes(PostgreSqlParser.RULE_dropstmt) || canSuggestTables) + (ruleData.ruleList.includes(PostgreSqlParser.RULE_dropStatement) || + canSuggestTables) ) { suggestViewsOrTables = TableOrViewSuggestion.TABLES; } else if (canSuggestTables) { suggestViewsOrTables = TableOrViewSuggestion.ALL; } else if ( - !ruleData.ruleList.includes(PostgreSqlParser.RULE_select_limit_value) && - !ruleData.ruleList.includes(PostgreSqlParser.RULE_select_offset_value) + !ruleData.ruleList.includes(PostgreSqlParser.RULE_selectLimitValue) && + !ruleData.ruleList.includes(PostgreSqlParser.RULE_selectOffsetValue) ) { suggestColumns = true; } @@ -229,13 +236,13 @@ function getParseTree(parser: PostgreSqlParser, type?: TableQueryPosition['type' switch (type) { case 'from': - return parser.non_ansi_join(); + return parser.nonAnsiJoin(); case 'alter': - return parser.altertablestmt(); + return parser.alterTableStatement(); case 'insert': - return parser.insertstmt(); + return parser.insertStatement(); case 'update': - return parser.updatestmt(); + return parser.updateStatement(); } } diff --git a/src/tests/postgresql/create/create.test.ts b/src/tests/postgresql/create/create.test.ts index b4950d73..9756fcd5 100644 --- a/src/tests/postgresql/create/create.test.ts +++ b/src/tests/postgresql/create/create.test.ts @@ -14,8 +14,8 @@ test('should suggest properly after CREATE', () => { {value: 'VIEW'}, {value: 'OR'}, {value: 'RULE'}, - {value: 'UNIQUE'}, {value: 'INDEX'}, + {value: 'UNIQUE'}, {value: 'TABLE'}, {value: 'COLLATION'}, {value: 'TEXT'}, @@ -34,9 +34,9 @@ test('should suggest properly after CREATE', () => { {value: 'SUBSCRIPTION'}, {value: 'SEQUENCE'}, {value: 'SCHEMA'}, - {value: 'TRUSTED'}, {value: 'PROCEDURAL'}, {value: 'LANGUAGE'}, + {value: 'TRUSTED'}, {value: 'POLICY'}, {value: 'PUBLICATION'}, {value: 'MATERIALIZED'}, @@ -47,8 +47,8 @@ test('should suggest properly after CREATE', () => { {value: 'SERVER'}, {value: 'EXTENSION'}, {value: 'DOMAIN'}, - {value: 'DEFAULT'}, {value: 'CONVERSION'}, + {value: 'DEFAULT'}, {value: 'CAST'}, {value: 'ASSERTION'}, {value: 'ACCESS'},